WIP FPC-III support
[linux/fpc-iii.git] / arch / powerpc / platforms / 512x / mpc512x_generic.c
blob303bc308b2e61786ea36e54d0e0f982e19760928
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright (C) 2007,2008 Freescale Semiconductor, Inc. All rights reserved.
5 * Author: John Rigby, <jrigby@freescale.com>
7 * Description:
8 * MPC512x SoC setup
9 */
11 #include <linux/kernel.h>
12 #include <linux/of_platform.h>
14 #include <asm/machdep.h>
15 #include <asm/ipic.h>
16 #include <asm/prom.h>
17 #include <asm/time.h>
19 #include "mpc512x.h"
22 * list of supported boards
24 static const char * const board[] __initconst = {
25 "prt,prtlvt",
26 "fsl,mpc5125ads",
27 "ifm,ac14xx",
28 NULL
32 * Called very early, MMU is off, device-tree isn't unflattened
34 static int __init mpc512x_generic_probe(void)
36 if (!of_device_compatible_match(of_root, board))
37 return 0;
39 mpc512x_init_early();
41 return 1;
44 define_machine(mpc512x_generic) {
45 .name = "MPC512x generic",
46 .probe = mpc512x_generic_probe,
47 .init = mpc512x_init,
48 .setup_arch = mpc512x_setup_arch,
49 .init_IRQ = mpc512x_init_IRQ,
50 .get_irq = ipic_get_irq,
51 .calibrate_decr = generic_calibrate_decr,
52 .restart = mpc512x_restart,