Re: [PATCH 1/2 v4] powerpc/85xx: Add p1025rdb platform support

2012-03-16 Thread Kumar Gala

On Feb 16, 2012, at 3:07 PM, Tabi Timur-B04825 wrote:

 On Tue, Feb 14, 2012 at 2:06 AM, Zhicheng Fan b32...@freescale.com wrote:
 From: Zhicheng Fan b32...@freescale.com
 
 Signed-off-by: Zhicheng Fan b32...@freescale.com
 ---
 
 Acked-by: Timur Tabi ti...@freescale.com
 
 -- 

applied

- k
___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


Re: [PATCH 1/2 v4] powerpc/85xx: Add p1025rdb platform support

2012-02-16 Thread Tabi Timur-B04825
On Tue, Feb 14, 2012 at 2:06 AM, Zhicheng Fan b32...@freescale.com wrote:
 From: Zhicheng Fan b32...@freescale.com

 Signed-off-by: Zhicheng Fan b32...@freescale.com
 ---

Acked-by: Timur Tabi ti...@freescale.com

-- 
Timur Tabi
Linux kernel developer at Freescale
___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


[PATCH 1/2 v4] powerpc/85xx: Add p1025rdb platform support

2012-02-14 Thread Zhicheng Fan
From: Zhicheng Fan b32...@freescale.com

Signed-off-by: Zhicheng Fan b32...@freescale.com
---
 arch/powerpc/platforms/85xx/mpc85xx_rdb.c |   22 ++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/arch/powerpc/platforms/85xx/mpc85xx_rdb.c 
b/arch/powerpc/platforms/85xx/mpc85xx_rdb.c
index d54772e..e95aef7 100644
--- a/arch/powerpc/platforms/85xx/mpc85xx_rdb.c
+++ b/arch/powerpc/platforms/85xx/mpc85xx_rdb.c
@@ -91,6 +91,7 @@ static void __init mpc85xx_rdb_setup_arch(void)
 machine_device_initcall(p2020_rdb, mpc85xx_common_publish_devices);
 machine_device_initcall(p1020_rdb, mpc85xx_common_publish_devices);
 machine_device_initcall(p1020_rdb_pc, mpc85xx_common_publish_devices);
+machine_device_initcall(p1025_rdb, mpc85xx_common_publish_devices);
 
 /*
  * Called very early, device-tree isn't unflattened
@@ -120,6 +121,13 @@ static int __init p1020_rdb_probe(void)
return 0;
 }
 
+static int __init p1025_rdb_probe(void)
+{
+   unsigned long root = of_get_flat_dt_root();
+
+   return of_flat_dt_is_compatible(root, fsl,P1025RDB);
+}
+
 define_machine(p2020_rdb) {
.name   = P2020 RDB,
.probe  = p2020_rdb_probe,
@@ -161,3 +169,17 @@ define_machine(p1020_rdb_pc) {
.calibrate_decr = generic_calibrate_decr,
.progress   = udbg_progress,
 };
+
+define_machine(p1025_rdb) {
+   .name   = P1025 RDB,
+   .probe  = p1025_rdb_probe,
+   .setup_arch = mpc85xx_rdb_setup_arch,
+   .init_IRQ   = mpc85xx_rdb_pic_init,
+#ifdef CONFIG_PCI
+   .pcibios_fixup_bus  = fsl_pcibios_fixup_bus,
+#endif
+   .get_irq= mpic_get_irq,
+   .restart= fsl_rstcr_restart,
+   .calibrate_decr = generic_calibrate_decr,
+   .progress   = udbg_progress,
+};
-- 
1.7.0.4


___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev