diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-12-15 23:26:24 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-01-05 12:08:54 -0500 |
commit | dc0b2fb4a76315fd1df720e11782ead832434e68 (patch) | |
tree | 31211fa31d4867d8791e254570af35c3cd367e12 /arch | |
parent | b3a2bbe1a4ed3db48c0d54c5ca5c8024c36dc070 (diff) | |
download | u-boot-dc0b2fb4a76315fd1df720e11782ead832434e68.zip u-boot-dc0b2fb4a76315fd1df720e11782ead832434e68.tar.gz u-boot-dc0b2fb4a76315fd1df720e11782ead832434e68.tar.bz2 |
mpc8260: remove PM825, PM826, PM828 board support
These boards are still non-generic boards.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc8260/Kconfig | 8 | ||||
-rw-r--r-- | arch/powerpc/cpu/mpc8260/pci.c | 11 |
2 files changed, 0 insertions, 19 deletions
diff --git a/arch/powerpc/cpu/mpc8260/Kconfig b/arch/powerpc/cpu/mpc8260/Kconfig index d9dba83..cb81cdc 100644 --- a/arch/powerpc/cpu/mpc8260/Kconfig +++ b/arch/powerpc/cpu/mpc8260/Kconfig @@ -28,12 +28,6 @@ config TARGET_IPHASE4539 config TARGET_MUAS3001 bool "Support muas3001" -config TARGET_PM826 - bool "Support PM826" - -config TARGET_PM828 - bool "Support PM828" - config TARGET_KM82XX bool "Support km82xx" @@ -47,7 +41,5 @@ source "board/gw8260/Kconfig" source "board/iphase4539/Kconfig" source "board/keymile/km82xx/Kconfig" source "board/muas3001/Kconfig" -source "board/pm826/Kconfig" -source "board/pm828/Kconfig" endmenu diff --git a/arch/powerpc/cpu/mpc8260/pci.c b/arch/powerpc/cpu/mpc8260/pci.c index 079b6e6..56f290c 100644 --- a/arch/powerpc/cpu/mpc8260/pci.c +++ b/arch/powerpc/cpu/mpc8260/pci.c @@ -22,10 +22,6 @@ #include <fdt_support.h> #endif -#if defined CONFIG_PM826 -DECLARE_GLOBAL_DATA_PTR; -#endif - /* * Local->PCI map (from CPU) controlled by * MPC826x master window @@ -342,17 +338,10 @@ void pci_mpc8250_init (struct pci_controller *hose) hose->last_busno = 0xff; /* System memory space */ -#if defined CONFIG_PM826 - pci_set_region (hose->regions + 0, - PCI_SLV_MEM_BUS, - PCI_SLV_MEM_LOCAL, - gd->ram_size, PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); -#else pci_set_region (hose->regions + 0, CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_SDRAM_BASE, 0x4000000, PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); -#endif /* PCI memory space */ pci_set_region (hose->regions + 1, |