]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
powerpc: mpc85xx: Move CONFIG_FSL_LAW to Kconfig
authorYork Sun <york.sun@nxp.com>
Fri, 2 Dec 2016 18:44:34 +0000 (10:44 -0800)
committerYork Sun <york.sun@nxp.com>
Fri, 2 Dec 2016 20:38:42 +0000 (12:38 -0800)
Some header files have this macro defined conditionally and
redefined unconditionally. Remove all existing definitions.

Signed-off-by: York Sun <york.sun@nxp.com>
40 files changed:
arch/powerpc/cpu/mpc85xx/Kconfig
include/configs/B4860QDS.h
include/configs/BSC9131RDB.h
include/configs/BSC9132QDS.h
include/configs/C29XPCIE.h
include/configs/MPC8536DS.h
include/configs/MPC8540ADS.h
include/configs/MPC8541CDS.h
include/configs/MPC8544DS.h
include/configs/MPC8548CDS.h
include/configs/MPC8555CDS.h
include/configs/MPC8560ADS.h
include/configs/MPC8568MDS.h
include/configs/MPC8569MDS.h
include/configs/MPC8572DS.h
include/configs/P1010RDB.h
include/configs/P1022DS.h
include/configs/P1023RDB.h
include/configs/P2041RDB.h
include/configs/T102xQDS.h
include/configs/T102xRDB.h
include/configs/T1040QDS.h
include/configs/T104xRDB.h
include/configs/T208xQDS.h
include/configs/T208xRDB.h
include/configs/T4240QDS.h
include/configs/T4240RDB.h
include/configs/UCP1020.h
include/configs/controlcenterd.h
include/configs/corenet_ds.h
include/configs/cyrus.h
include/configs/km/kmp204x-common.h
include/configs/p1_p2_rdb_pc.h
include/configs/p1_twr.h
include/configs/sbc8548.h
include/configs/socrates.h
include/configs/t4qds.h
include/configs/xpedite520x.h
include/configs/xpedite537x.h
include/configs/xpedite550x.h

index f7826952749f5accbff94031d7066576d00ac462..ec58cd12fcddd6012a8f29885e16274a1c659b8a 100644 (file)
@@ -323,117 +323,159 @@ endchoice
 
 config ARCH_B4420
        bool
+       select FSL_LAW
 
 config ARCH_B4860
        bool
+       select FSL_LAW
 
 config ARCH_BSC9131
        bool
+       select FSL_LAW
 
 config ARCH_BSC9132
        bool
+       select FSL_LAW
 
 config ARCH_C29X
        bool
+       select FSL_LAW
 
 config ARCH_MPC8536
        bool
+       select FSL_LAW
 
 config ARCH_MPC8540
        bool
+       select FSL_LAW
 
 config ARCH_MPC8541
        bool
+       select FSL_LAW
 
 config ARCH_MPC8544
        bool
+       select FSL_LAW
 
 config ARCH_MPC8548
        bool
+       select FSL_LAW
 
 config ARCH_MPC8555
        bool
+       select FSL_LAW
 
 config ARCH_MPC8560
        bool
+       select FSL_LAW
 
 config ARCH_MPC8568
        bool
+       select FSL_LAW
 
 config ARCH_MPC8569
        bool
+       select FSL_LAW
 
 config ARCH_MPC8572
        bool
+       select FSL_LAW
 
 config ARCH_P1010
        bool
+       select FSL_LAW
 
 config ARCH_P1011
        bool
+       select FSL_LAW
 
 config ARCH_P1020
        bool
+       select FSL_LAW
 
 config ARCH_P1021
        bool
+       select FSL_LAW
 
 config ARCH_P1022
        bool
+       select FSL_LAW
 
 config ARCH_P1023
        bool
+       select FSL_LAW
 
 config ARCH_P1024
        bool
+       select FSL_LAW
 
 config ARCH_P1025
        bool
+       select FSL_LAW
 
 config ARCH_P2020
        bool
+       select FSL_LAW
 
 config ARCH_P2041
        bool
+       select FSL_LAW
 
 config ARCH_P3041
        bool
+       select FSL_LAW
 
 config ARCH_P4080
        bool
+       select FSL_LAW
 
 config ARCH_P5020
        bool
+       select FSL_LAW
 
 config ARCH_P5040
        bool
+       select FSL_LAW
 
 config ARCH_QEMU_E500
        bool
 
 config ARCH_T1023
        bool
+       select FSL_LAW
 
 config ARCH_T1024
        bool
+       select FSL_LAW
 
 config ARCH_T1040
        bool
+       select FSL_LAW
 
 config ARCH_T1042
        bool
+       select FSL_LAW
 
 config ARCH_T2080
        bool
+       select FSL_LAW
 
 config ARCH_T2081
        bool
+       select FSL_LAW
 
 config ARCH_T4160
        bool
+       select FSL_LAW
 
 config ARCH_T4240
        bool
+       select FSL_LAW
+
+config FSL_LAW
+       bool
+       help
+               Use Freescale common code for Local Access Window
 
 config SECURE_BOOT
        bool    "Secure Boot"
index cd4333f2f149bd4db78bf20d8dadf7d3a6e26a7c..7d3ebf33c75bd81a689cc5a378b6a71f05a38bea 100644 (file)
@@ -19,7 +19,6 @@
 #else
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x00201000
 #define CONFIG_SPL_TEXT_BASE           0xFFFD8000
 #define CONFIG_SPL_PAD_TO              0x40000
@@ -80,8 +79,6 @@
 #define CONFIG_SRIO_PCIE_BOOT_MASTER
 #endif
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 /* I2C bus multiplexer */
 #define I2C_MUX_PCA_ADDR                0x77
 
index aaf710641668c6c54eb8d4599f71a29d265ec2e3..eecbd7572e2944b4fad057533dc10404a3a8a5fc 100644 (file)
@@ -51,7 +51,6 @@
 #define CONFIG_FSL_IFC                 /* Enable IFC Support */
 #define CONFIG_FSL_CAAM                        /* Enable SEC/CAAM */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_TSEC_ENET
 #define CONFIG_ENV_OVERWRITE
 
index 8eee7384ccc2e15493ed516c010a0c4e9659ca89..5cfdbb26cb874a62215834e7044a33e32b78ea6b 100644 (file)
 #define CONFIG_DOS_PARTITION
 #endif
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_ENV_OVERWRITE
 #define CONFIG_TSEC_ENET /* ethernet */
 
index 39eefb441cff6e3f7cb74ea7b72a53e284833ec7..79cf09e1a28f8303e9dae1f1083e12e38a82c17a 100644 (file)
 #define CONFIG_DOS_PARTITION
 #endif
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_TSEC_ENET
 #define CONFIG_ENV_OVERWRITE
 
index 446303d18b94b77a0f82ba8909d8bc5301a11e53..d8f7961ded99ba31d7d75ad4821ec2671f667b46 100644 (file)
@@ -51,7 +51,6 @@
 #define CONFIG_FSL_PCIE_RESET  1       /* need PCIe reset errata */
 #define CONFIG_SYS_PCI_64BIT   1       /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 
 #define CONFIG_TSEC_ENET               /* tsec ethernet support */
 #define CONFIG_ENV_OVERWRITE
index 54932fd6221bb22b03eb46bd95d7fe1269f946d3..9fd710946024f85afcab606e396d2b25182f59d3 100644 (file)
@@ -36,7 +36,6 @@
 #define CONFIG_SYS_PCI_64BIT   1       /* enable 64-bit PCI resources */
 #define CONFIG_TSEC_ENET               /* tsec ethernet support */
 #define CONFIG_ENV_OVERWRITE
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 
 /*
  * sysclk for MPC85xx
index 29bca4c1f6d1cb6d6b3eb5ceb412834e1f51625e..2dad1887e004a705f8e28e572b69964dbc80c5f3 100644 (file)
@@ -25,8 +25,6 @@
 #define CONFIG_TSEC_ENET               /* tsec ethernet support */
 #define CONFIG_ENV_OVERWRITE
 
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
-
 #define CONFIG_FSL_VIA
 
 #ifndef __ASSEMBLY__
index 6c17a3be5c5bc1ae9a2ca02d4df990e203ba6d94..4bab8938006014f36c34fe56afef724d8f36fbae 100644 (file)
@@ -28,8 +28,6 @@
 #define CONFIG_FSL_PCIE_RESET  1       /* need PCIe reset errata */
 #define CONFIG_SYS_PCI_64BIT   1       /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
-
 #define CONFIG_TSEC_ENET               /* tsec ethernet support */
 #define CONFIG_ENV_OVERWRITE
 #define CONFIG_INTERRUPTS              /* enable pci, srio, ddr interrupts */
index 310c070e50f210b22b9d5c305a3bd9825e40fef6..41ba9e7e7acedb10461f68b99b907c8307f0b0cb 100644 (file)
@@ -35,7 +35,6 @@
 #define CONFIG_TSEC_ENET               /* tsec ethernet support */
 #define CONFIG_ENV_OVERWRITE
 #define CONFIG_INTERRUPTS              /* enable pci, srio, ddr interrupts */
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 
 #define CONFIG_FSL_VIA
 
index 3cf8d97b418a0cc74ff1754d53077c6cae80e27c..0f035ddb95eda0d0c020f8208a565d12d1353641 100644 (file)
@@ -24,7 +24,6 @@
 #define CONFIG_SYS_PCI_64BIT   1       /* enable 64-bit PCI resources */
 #define CONFIG_TSEC_ENET               /* tsec ethernet support */
 #define CONFIG_ENV_OVERWRITE
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 
 #define CONFIG_FSL_VIA
 
index 641521cf6a799bde496a7cb2eb823558c03ef8d9..343287efeaa638579cb3d16411590f8e78a2c9e4 100644 (file)
@@ -34,7 +34,6 @@
 #define CONFIG_TSEC_ENET               /* tsec ethernet support */
 #undef CONFIG_ETHER_ON_FCC             /* cpm FCC ethernet support */
 #define CONFIG_ENV_OVERWRITE
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 #define CONFIG_RESET_PHY_R     1       /* Call reset_phy() */
 
 /*
index e7adb17956d82530609e15b0ea4366611d063ae6..3cddb5fb83a7f92da53e2b5f61e8c018e124b1d7 100644 (file)
@@ -28,7 +28,6 @@
 #define CONFIG_TSEC_ENET               /* tsec ethernet support */
 #define CONFIG_QE                      /* Enable QE */
 #define CONFIG_ENV_OVERWRITE
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 
 #ifndef __ASSEMBLY__
 extern unsigned long get_clock_freq(void);
index 91f0104f96f1d6d5d76ccc386647530fda4c0a33..bd520543ef519c4816457ca73823faa20bb3248b 100644 (file)
@@ -26,7 +26,6 @@
 #define CONFIG_SYS_PCI_64BIT   1       /* enable 64-bit PCI resources */
 #define CONFIG_QE                      /* Enable QE */
 #define CONFIG_ENV_OVERWRITE
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 
 #ifndef __ASSEMBLY__
 extern unsigned long get_clock_freq(void);
index e1345609782854c5f230b11cccf29b12c62179fa..bffcad162ccdd09e17809cd5927f12dbe4ba92b6 100644 (file)
@@ -39,8 +39,6 @@
 #define CONFIG_FSL_PCIE_RESET  1       /* need PCIe reset errata */
 #define CONFIG_SYS_PCI_64BIT   1       /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
-
 #define CONFIG_TSEC_ENET               /* tsec ethernet support */
 #define CONFIG_ENV_OVERWRITE
 
index 3ced88d415e5ec0671e865d68d18e228b3501081..78e006492da3f250df083b7db9fe393fa23fea9e 100644 (file)
@@ -19,7 +19,6 @@
 #define CONFIG_SPL_MMC_MINIMAL
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x11001000
 #define CONFIG_SPL_TEXT_BASE           0xD0001000
 #define CONFIG_SPL_PAD_TO              0x18000
@@ -45,7 +44,6 @@
 #define CONFIG_SPL_SPI_FLASH_MINIMAL
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW         /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE                   0x11001000
 #define CONFIG_SPL_TEXT_BASE                   0xD0001000
 #define CONFIG_SPL_PAD_TO                      0x18000
 #define CONFIG_DOS_PARTITION
 #endif
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_TSEC_ENET
 #define CONFIG_ENV_OVERWRITE
 
index 6f07080a87847a407d6be192d7fc7a6708688d19..81e8c29c2895062ff66711793fa12ab9ff8856cc 100644 (file)
@@ -15,7 +15,6 @@
 #define CONFIG_SPL_MMC_MINIMAL
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x11001000
 #define CONFIG_SPL_TEXT_BASE           0xf8f81000
 #define CONFIG_SPL_PAD_TO              0x20000
@@ -36,7 +35,6 @@
 #define CONFIG_SPL_SPI_FLASH_MINIMAL
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW         /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x11001000
 #define CONFIG_SPL_TEXT_BASE           0xf8f81000
 #define CONFIG_SPL_PAD_TO              0x20000
 #define CONFIG_SYS_NUM_ADDR_MAP                16      /* number of TLB1 entries */
 #endif
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 #define CONFIG_SYS_CLK_FREQ    get_board_sys_clk()
 #define CONFIG_DDR_CLK_FREQ    get_board_ddr_clk()
 #define CONFIG_ICS307_REFCLK_HZ        33333000  /* ICS307 clock chip ref freq */
index 5061286c3fffb86e2c9f54ddf20863ce6e117105..d5728a1d90af9a0b74068de99860a9664812373c 100644 (file)
@@ -35,7 +35,6 @@
 #define CONFIG_FSL_PCI_INIT    /* Use common FSL init code */
 #define CONFIG_FSL_PCIE_RESET  /* need PCIe reset errata */
 #define CONFIG_SYS_PCI_64BIT   /* enable 64-bit PCI resources */
-#define CONFIG_FSL_LAW         /* Use common FSL init code */
 
 #ifndef __ASSEMBLY__
 extern unsigned long get_clock_freq(void);
index 417bfd36b1981e972f000c9737e4a8eb22d962df..91e5f8b9016d3c89899b57d64992f1f2f972e6bf 100644 (file)
@@ -58,8 +58,6 @@
 #define CONFIG_SRIO_PCIE_BOOT_MASTER
 #define CONFIG_SYS_DPAA_RMAN           /* RMan */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 #define CONFIG_ENV_OVERWRITE
 
 #ifdef CONFIG_SYS_NO_FLASH
index 3c0a0c95a7fd88d0d1206fff36cf966b3261759d..fda83d2c2006a89ce60cd68194f8695863d58b15 100644 (file)
@@ -28,7 +28,6 @@
 #define CONFIG_SYS_NUM_CPC             CONFIG_NUM_DDR_CONTROLLERS
 #define CONFIG_FSL_IFC                 /* Enable IFC Support */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_ENV_OVERWRITE
 
 #define CONFIG_DEEP_SLEEP
@@ -42,7 +41,6 @@
 #define CONFIG_SYS_FSL_PBL_PBI board/freescale/t102xqds/t1024_pbi.cfg
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x00201000
 #define CONFIG_SPL_TEXT_BASE           0xFFFD8000
 #define CONFIG_SPL_PAD_TO              0x40000
index e2aea8bf9e3df8d19c40444eb7797270a05e7dd2..054b323663c31edbe2ea82ccd5b28a2e66411ccb 100644 (file)
@@ -28,7 +28,6 @@
 #define CONFIG_SYS_NUM_CPC             CONFIG_NUM_DDR_CONTROLLERS
 #define CONFIG_FSL_IFC                 /* Enable IFC Support */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_ENV_OVERWRITE
 
 #define CONFIG_FSL_CAAM                        /* Enable SEC/CAAM */
@@ -45,7 +44,6 @@
 #define CONFIG_SYS_FSL_PBL_PBI board/freescale/t102xrdb/t1024_pbi.cfg
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x30001000
 #define CONFIG_SPL_TEXT_BASE           0xFFFD8000
 #define CONFIG_SPL_PAD_TO              0x40000
index ba1c38bf366957efa8dc3c9eb6c3c3eecfaa79eb..00676ddf5059e8c5819b1a3e2340460cab0b741f 100644 (file)
@@ -69,8 +69,6 @@
 #define CONFIG_FSL_PCI_INIT            /* Use common FSL init code */
 #define CONFIG_SYS_PCI_64BIT           /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 #define CONFIG_ENV_OVERWRITE
 
 #ifdef CONFIG_SYS_NO_FLASH
index ed568f3377041aba434b81a5b5fb7de809bc6914..7521dd02f8df606b0557ebe160376ad2e19dafbb 100644 (file)
@@ -24,7 +24,6 @@
 
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x30001000
 #define CONFIG_SPL_TEXT_BASE           0xFFFD8000
 #define CONFIG_SPL_PAD_TO              0x40000
@@ -180,8 +179,6 @@ $(SRCTREE)/board/freescale/t104xrdb/t1042d4_sd_rcw.cfg
 #define CONFIG_FSL_PCI_INIT            /* Use common FSL init code */
 #define CONFIG_SYS_PCI_64BIT           /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 #define CONFIG_ENV_OVERWRITE
 
 #ifndef CONFIG_SYS_NO_FLASH
index 17176f46c528ec5809338374b3882fbe43cfab4d..b984fcd96e678fe6a16a412316f91472def29bfd 100644 (file)
@@ -41,7 +41,6 @@
 #define CONFIG_SYS_NUM_CPC     CONFIG_NUM_DDR_CONTROLLERS
 #define CONFIG_FSL_IFC         /* Enable IFC Support */
 #define CONFIG_FSL_CAAM                /* Enable SEC/CAAM */
-#define CONFIG_FSL_LAW         /* Use common FSL init code */
 #define CONFIG_ENV_OVERWRITE
 
 #ifdef CONFIG_RAMBOOT_PBL
@@ -49,7 +48,6 @@
 
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x00201000
 #define CONFIG_SPL_TEXT_BASE           0xFFFD8000
 #define CONFIG_SPL_PAD_TO              0x40000
index bca6a5b95cd3c02724f965b8623eb2cfa37fa787..e013e725a8ddae2d09772121643398f3854b5c9f 100644 (file)
@@ -34,7 +34,6 @@
 #define CONFIG_SYS_NUM_CPC     CONFIG_NUM_DDR_CONTROLLERS
 #define CONFIG_FSL_IFC         /* Enable IFC Support */
 #define CONFIG_FSL_CAAM                /* Enable SEC/CAAM */
-#define CONFIG_FSL_LAW         /* Use common FSL init code */
 #define CONFIG_ENV_OVERWRITE
 
 #ifdef CONFIG_RAMBOOT_PBL
@@ -42,7 +41,6 @@
 
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x00201000
 #define CONFIG_SPL_TEXT_BASE           0xFFFD8000
 #define CONFIG_SPL_PAD_TO              0x40000
index 1d18316a4129dc51387c10cf925dbd9aa2f62ab6..d90fb35ab704e89cdcf34b9f81a82fd1f246a414 100644 (file)
@@ -24,7 +24,6 @@
 #else
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x00201000
 #define CONFIG_SPL_TEXT_BASE           0xFFFD8000
 #define CONFIG_SPL_PAD_TO              0x40000
index 6c743e3ccc59c47a0606f93fad1af1c5058be225..fd5dbc54a415753e243e047c890c8afa3f73325e 100644 (file)
@@ -23,7 +23,6 @@
 #else
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x00201000
 #define CONFIG_SPL_TEXT_BASE           0xFFFD8000
 #define CONFIG_SPL_PAD_TO              0x40000
@@ -85,8 +84,6 @@
 #define CONFIG_FSL_PCI_INIT            /* Use common FSL init code */
 #define CONFIG_SYS_PCI_64BIT           /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 #define CONFIG_ENV_OVERWRITE
 
 /*
index 1163b0dbd294b34a045313aa121b247c5744087e..c194ec7815d4cc47ffb742992aadf125d7938eaf 100644 (file)
 
 #define CONFIG_MP
 
-#define CONFIG_FSL_LAW
-
 #define CONFIG_ENV_OVERWRITE
 
 #define CONFIG_CMD_SATA
index b824e3bd2348e87c23cdf825fb49952c9f92594f..971549e2e7a0ea8224a29c449123609cc4441db7 100644 (file)
@@ -42,7 +42,6 @@
 
 #define CONFIG_SYS_NO_FLASH
 #define CONFIG_ENABLE_36BIT_PHYS
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 
 #ifdef CONFIG_PHYS_64BIT
 #define CONFIG_ADDR_MAP
index 67a503482ded810b56ca116067dd3afdba524068..c4d172d127f400a6f393310db2b55fc0fd39eb39 100644 (file)
@@ -69,8 +69,6 @@
 #define CONFIG_FSL_PCI_INIT            /* Use common FSL init code */
 #define CONFIG_SYS_PCI_64BIT           /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 #define CONFIG_ENV_OVERWRITE
 
 #ifdef CONFIG_SYS_NO_FLASH
index 13e4690bc9b61141c1ec2580e4b8ae5c0ae293f9..45caf9f4d73ccb6de21a42fad6a29082284d986e 100644 (file)
@@ -59,8 +59,6 @@
 #define CONFIG_FSL_PCI_INIT            /* Use common FSL init code */
 #define CONFIG_SYS_PCI_64BIT           /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 #define CONFIG_ENV_OVERWRITE
 
 #define CONFIG_SYS_NO_FLASH
index fad886535319b9e290a88fdb95cd58646da75d4d..affcb4886849d38e1dc1e7212669a016ef1c802c 100644 (file)
@@ -46,8 +46,6 @@
 
 #define CONFIG_SYS_DPAA_RMAN           /* RMan */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 /* Environment in SPI Flash */
 #define CONFIG_SYS_EXTRA_ENV_RELOC
 #define CONFIG_ENV_IS_IN_SPI_FLASH
index 77f3d8159374afb309191ff07c7404e3ce729b02..c20ef5e33915a1da6eb4f5f1822004c96f363d8e 100644 (file)
 #define CONFIG_SPL_MMC_MINIMAL
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x11001000
 #define CONFIG_SPL_TEXT_BASE           0xf8f81000
 #define CONFIG_SPL_PAD_TO              0x20000
 #define CONFIG_SPL_SPI_FLASH_MINIMAL
 #define CONFIG_SPL_FLUSH_IMAGE
 #define CONFIG_SPL_TARGET              "u-boot-with-spl.bin"
-#define CONFIG_FSL_LAW         /* Use common FSL init code */
 #define CONFIG_SYS_TEXT_BASE           0x11001000
 #define CONFIG_SPL_TEXT_BASE           0xf8f81000
 #define CONFIG_SPL_PAD_TO              0x20000
 #define CONFIG_FSL_PCIE_RESET  /* need PCIe reset errata */
 #define CONFIG_SYS_PCI_64BIT   /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW
 #define CONFIG_TSEC_ENET       /* tsec ethernet support */
 #define CONFIG_ENV_OVERWRITE
 
index c122f8e0d8982ca45a94601e9b9e1d68a6c6048a..5ff2e35036e1c306de4f43ef7e9c4ec0820842fe 100644 (file)
@@ -52,7 +52,6 @@
 #define CONFIG_FSL_PCIE_RESET  /* need PCIe reset errata */
 #define CONFIG_SYS_PCI_64BIT   /* enable 64-bit PCI resources */
 
-#define CONFIG_FSL_LAW
 #define CONFIG_TSEC_ENET       /* tsec ethernet support */
 #define CONFIG_ENV_OVERWRITE
 
index 008781ee3524d58cf8da542572dbdd8a637a5729..617be273ec20906633c56045f0480bd0c386c489 100644 (file)
@@ -69,8 +69,6 @@
 
 #define CONFIG_INTERRUPTS              /* enable pci, srio, ddr interrupts */
 
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
-
 /*
  * Below assumes that CCB:SYSCLK remains unchanged at 6:1 via SW2:[1-4]
  */
index c697f63162adcb5320f8dab8fbabb3abc2580fe8..81afed06b9180df84e1dfdfced12984b833fd405 100644 (file)
@@ -31,8 +31,6 @@
 #define CONFIG_MISC_INIT_R     1       /* Call misc_init_r             */
 #define CONFIG_BOARD_EARLY_INIT_R 1    /* Call board_early_init_r      */
 
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
-
 /*
  * Only possible on E500 Version 2 or newer cores.
  */
index 0aba18b749e0338054e7d5832117a0ebe2524aae..e2b117150d737b27dedc8bf7a4735918e8ac0df5 100644 (file)
@@ -40,8 +40,6 @@
 #define CONFIG_SRIO1                   /* SRIO port 1 */
 #define CONFIG_SRIO2                   /* SRIO port 2 */
 
-#define CONFIG_FSL_LAW                 /* Use common FSL init code */
-
 #define CONFIG_ENV_OVERWRITE
 
 /*
index 7f6927bcb891a305f0be2e5ffa62d1cdced43f41..fee8c34d2cc080b56e612cbf6f3b039b8bd0429b 100644 (file)
@@ -30,7 +30,6 @@
 #define CONFIG_FSL_PCI_INIT    1       /* Use common FSL init code */
 #define CONFIG_PCI_INDIRECT_BRIDGE 1   /* indirect PCI bridge support */
 #define CONFIG_SYS_PCI_64BIT   1       /* enable 64-bit PCI resources */
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 
 /*
  * DDR config
index a6bdffc58290287d10a68cde214b451f0f0ed609..7e811d50e97e6afe52b2730da64b1e493a954640 100644 (file)
@@ -31,7 +31,6 @@
 #define CONFIG_PCI_INDIRECT_BRIDGE 1   /* indirect PCI bridge support */
 #define CONFIG_SYS_PCI_64BIT   1       /* enable 64-bit PCI resources */
 #define CONFIG_FSL_PCIE_RESET  1       /* need PCIe reset errata */
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 #define CONFIG_FSL_ELBC                1
 
 /*
index f12f8fe1d0642027c6fb2076a5fcdc00b8030c5e..4dfb79d7ceb190bf4ab3b7f774aa5183e4f72b5c 100644 (file)
@@ -32,7 +32,6 @@
 #define CONFIG_PCI_INDIRECT_BRIDGE 1   /* indirect PCI bridge support */
 #define CONFIG_SYS_PCI_64BIT   1       /* enable 64-bit PCI resources */
 #define CONFIG_FSL_PCIE_RESET  1       /* need PCIe reset errata */
-#define CONFIG_FSL_LAW         1       /* Use common FSL init code */
 #define CONFIG_FSL_ELBC                1
 
 /*