mpc512x_generic.c 1.22 KB
Newer Older
1 2 3 4 5 6
/*
 * Copyright (C) 2007,2008 Freescale Semiconductor, Inc. All rights reserved.
 *
 * Author: John Rigby, <jrigby@freescale.com>
 *
 * Description:
7
 * MPC512x SoC setup
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 */

#include <linux/kernel.h>
#include <linux/of_platform.h>

#include <asm/machdep.h>
#include <asm/ipic.h>
#include <asm/prom.h>
#include <asm/time.h>

#include "mpc512x.h"

/*
 * list of supported boards
 */
29
static const char * const board[] __initconst = {
30
	"prt,prtlvt",
31
	"fsl,mpc5125ads",
32
	"ifm,ac14xx",
33 34 35 36 37 38
	NULL
};

/*
 * Called very early, MMU is off, device-tree isn't unflattened
 */
39
static int __init mpc512x_generic_probe(void)
40
{
41
	return of_device_compatible_match(of_root, board);
42 43
}

44 45 46
define_machine(mpc512x_generic) {
	.name			= "MPC512x generic",
	.probe			= mpc512x_generic_probe,
47
	.init			= mpc512x_init,
48 49
	.init_early		= mpc512x_init_early,
	.setup_arch		= mpc512x_setup_arch,
50 51 52
	.init_IRQ		= mpc512x_init_IRQ,
	.get_irq		= ipic_get_irq,
	.calibrate_decr		= generic_calibrate_decr,
53
	.restart		= mpc512x_restart,
54
};