aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorXu Jiucheng <B37781@freescale.com>2012-01-17 03:01:30 -0500
committerKumar Gala <galak@kernel.crashing.org>2012-03-16 10:44:59 -0400
commitb73bdf48faf32fa9ac8e8b442bc58c6f7b17cce9 (patch)
tree0028fe9bb012f476543077db890e128002e3bc94 /arch/powerpc
parent490bdb77b64376ead1ba0f4b011f5abea360bbc5 (diff)
powerpc/85xx: Added P1021RDB-PC Platform support
Signed-off-by: Xu Jiucheng <B37781@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/platforms/85xx/mpc85xx_rdb.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_rdb.c b/arch/powerpc/platforms/85xx/mpc85xx_rdb.c
index 407c7391e360..75c9eed67063 100644
--- a/arch/powerpc/platforms/85xx/mpc85xx_rdb.c
+++ b/arch/powerpc/platforms/85xx/mpc85xx_rdb.c
@@ -89,6 +89,7 @@ static void __init mpc85xx_rdb_setup_arch(void)
89 89
90machine_device_initcall(p2020_rdb, mpc85xx_common_publish_devices); 90machine_device_initcall(p2020_rdb, mpc85xx_common_publish_devices);
91machine_device_initcall(p1020_rdb, mpc85xx_common_publish_devices); 91machine_device_initcall(p1020_rdb, mpc85xx_common_publish_devices);
92machine_device_initcall(p1021_rdb_pc, mpc85xx_common_publish_devices);
92 93
93/* 94/*
94 * Called very early, device-tree isn't unflattened 95 * Called very early, device-tree isn't unflattened
@@ -111,6 +112,15 @@ static int __init p1020_rdb_probe(void)
111 return 0; 112 return 0;
112} 113}
113 114
115static int __init p1021_rdb_pc_probe(void)
116{
117 unsigned long root = of_get_flat_dt_root();
118
119 if (of_flat_dt_is_compatible(root, "fsl,P1021RDB-PC"))
120 return 1;
121 return 0;
122}
123
114define_machine(p2020_rdb) { 124define_machine(p2020_rdb) {
115 .name = "P2020 RDB", 125 .name = "P2020 RDB",
116 .probe = p2020_rdb_probe, 126 .probe = p2020_rdb_probe,
@@ -138,3 +148,17 @@ define_machine(p1020_rdb) {
138 .calibrate_decr = generic_calibrate_decr, 148 .calibrate_decr = generic_calibrate_decr,
139 .progress = udbg_progress, 149 .progress = udbg_progress,
140}; 150};
151
152define_machine(p1021_rdb_pc) {
153 .name = "P1021 RDB-PC",
154 .probe = p1021_rdb_pc_probe,
155 .setup_arch = mpc85xx_rdb_setup_arch,
156 .init_IRQ = mpc85xx_rdb_pic_init,
157#ifdef CONFIG_PCI
158 .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
159#endif
160 .get_irq = mpic_get_irq,
161 .restart = fsl_rstcr_restart,
162 .calibrate_decr = generic_calibrate_decr,
163 .progress = udbg_progress,
164};