diff options
author | John Rigby <jrigby@freescale.com> | 2008-10-07 17:13:18 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-10-13 12:09:58 -0400 |
commit | 35225802e2e7019392fbff9227662d456eef4e24 (patch) | |
tree | 974c6516098b4dcefab7ceed155b6945ba85bcd4 /arch/powerpc/platforms/512x | |
parent | 5b70a097052fff3831d8b94541452e7c29426777 (diff) |
powerpc/5121: Add PCI support.
Uses mpc83xx_add_bridge in fsl_pci.c
Adds second register tuple to pci node register property
as done for 83xx device trees in a previous patch.
Signed-off-by: John Rigby <jrigby@freescale.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/512x')
-rw-r--r-- | arch/powerpc/platforms/512x/Kconfig | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/512x/mpc5121_ads.c | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/512x/Kconfig b/arch/powerpc/platforms/512x/Kconfig index c62f893ede19..326852c78b8f 100644 --- a/arch/powerpc/platforms/512x/Kconfig +++ b/arch/powerpc/platforms/512x/Kconfig | |||
@@ -3,6 +3,8 @@ config PPC_MPC512x | |||
3 | select FSL_SOC | 3 | select FSL_SOC |
4 | select IPIC | 4 | select IPIC |
5 | select PPC_CLOCK | 5 | select PPC_CLOCK |
6 | select PPC_PCI_CHOICE | ||
7 | select FSL_PCI if PCI | ||
6 | 8 | ||
7 | config PPC_MPC5121 | 9 | config PPC_MPC5121 |
8 | bool | 10 | bool |
diff --git a/arch/powerpc/platforms/512x/mpc5121_ads.c b/arch/powerpc/platforms/512x/mpc5121_ads.c index 5ebf6939a697..441abc488851 100644 --- a/arch/powerpc/platforms/512x/mpc5121_ads.c +++ b/arch/powerpc/platforms/512x/mpc5121_ads.c | |||
@@ -22,16 +22,26 @@ | |||
22 | #include <asm/prom.h> | 22 | #include <asm/prom.h> |
23 | #include <asm/time.h> | 23 | #include <asm/time.h> |
24 | 24 | ||
25 | #include <sysdev/fsl_pci.h> | ||
26 | |||
25 | #include "mpc512x.h" | 27 | #include "mpc512x.h" |
26 | #include "mpc5121_ads.h" | 28 | #include "mpc5121_ads.h" |
27 | 29 | ||
28 | static void __init mpc5121_ads_setup_arch(void) | 30 | static void __init mpc5121_ads_setup_arch(void) |
29 | { | 31 | { |
32 | #ifdef CONFIG_PCI | ||
33 | struct device_node *np; | ||
34 | #endif | ||
30 | printk(KERN_INFO "MPC5121 ADS board from Freescale Semiconductor\n"); | 35 | printk(KERN_INFO "MPC5121 ADS board from Freescale Semiconductor\n"); |
31 | /* | 36 | /* |
32 | * cpld regs are needed early | 37 | * cpld regs are needed early |
33 | */ | 38 | */ |
34 | mpc5121_ads_cpld_map(); | 39 | mpc5121_ads_cpld_map(); |
40 | |||
41 | #ifdef CONFIG_PCI | ||
42 | for_each_compatible_node(np, "pci", "fsl,mpc5121-pci") | ||
43 | mpc83xx_add_bridge(np); | ||
44 | #endif | ||
35 | } | 45 | } |
36 | 46 | ||
37 | static void __init mpc5121_ads_init_IRQ(void) | 47 | static void __init mpc5121_ads_init_IRQ(void) |