Commit 6f62d7c4f7a2242a76e19b09dccca6f68776e788

Authored by Simon Glass
Committed by Tom Rini
1 parent 7f6665554a

Kconfig: Drop CONFIG_CMD_PORTIO and associated command

This command is not used by any board. It also looks quite similar to the
'iod' and 'iow' commands which use the correct I/O macros.

Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

Showing 6 changed files with 4 additions and 154 deletions Inline Diff

1 # 1 #
2 # (C) Copyright 2000 - 2013 2 # (C) Copyright 2000 - 2013
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 # 4 #
5 # SPDX-License-Identifier: GPL-2.0+ 5 # SPDX-License-Identifier: GPL-2.0+
6 # 6 #
7 7
8 Summary: 8 Summary:
9 ======== 9 ========
10 10
11 This directory contains the source code for U-Boot, a boot loader for 11 This directory contains the source code for U-Boot, a boot loader for
12 Embedded boards based on PowerPC, ARM, MIPS and several other 12 Embedded boards based on PowerPC, ARM, MIPS and several other
13 processors, which can be installed in a boot ROM and used to 13 processors, which can be installed in a boot ROM and used to
14 initialize and test the hardware or to download and run application 14 initialize and test the hardware or to download and run application
15 code. 15 code.
16 16
17 The development of U-Boot is closely related to Linux: some parts of 17 The development of U-Boot is closely related to Linux: some parts of
18 the source code originate in the Linux source tree, we have some 18 the source code originate in the Linux source tree, we have some
19 header files in common, and special provision has been made to 19 header files in common, and special provision has been made to
20 support booting of Linux images. 20 support booting of Linux images.
21 21
22 Some attention has been paid to make this software easily 22 Some attention has been paid to make this software easily
23 configurable and extendable. For instance, all monitor commands are 23 configurable and extendable. For instance, all monitor commands are
24 implemented with the same call interface, so that it's very easy to 24 implemented with the same call interface, so that it's very easy to
25 add new commands. Also, instead of permanently adding rarely used 25 add new commands. Also, instead of permanently adding rarely used
26 code (for instance hardware test utilities) to the monitor, you can 26 code (for instance hardware test utilities) to the monitor, you can
27 load and run it dynamically. 27 load and run it dynamically.
28 28
29 29
30 Status: 30 Status:
31 ======= 31 =======
32 32
33 In general, all boards for which a configuration option exists in the 33 In general, all boards for which a configuration option exists in the
34 Makefile have been tested to some extent and can be considered 34 Makefile have been tested to some extent and can be considered
35 "working". In fact, many of them are used in production systems. 35 "working". In fact, many of them are used in production systems.
36 36
37 In case of problems see the CHANGELOG file to find out who contributed 37 In case of problems see the CHANGELOG file to find out who contributed
38 the specific port. In addition, there are various MAINTAINERS files 38 the specific port. In addition, there are various MAINTAINERS files
39 scattered throughout the U-Boot source identifying the people or 39 scattered throughout the U-Boot source identifying the people or
40 companies responsible for various boards and subsystems. 40 companies responsible for various boards and subsystems.
41 41
42 Note: As of August, 2010, there is no longer a CHANGELOG file in the 42 Note: As of August, 2010, there is no longer a CHANGELOG file in the
43 actual U-Boot source tree; however, it can be created dynamically 43 actual U-Boot source tree; however, it can be created dynamically
44 from the Git log using: 44 from the Git log using:
45 45
46 make CHANGELOG 46 make CHANGELOG
47 47
48 48
49 Where to get help: 49 Where to get help:
50 ================== 50 ==================
51 51
52 In case you have questions about, problems with or contributions for 52 In case you have questions about, problems with or contributions for
53 U-Boot, you should send a message to the U-Boot mailing list at 53 U-Boot, you should send a message to the U-Boot mailing list at
54 <u-boot@lists.denx.de>. There is also an archive of previous traffic 54 <u-boot@lists.denx.de>. There is also an archive of previous traffic
55 on the mailing list - please search the archive before asking FAQ's. 55 on the mailing list - please search the archive before asking FAQ's.
56 Please see http://lists.denx.de/pipermail/u-boot and 56 Please see http://lists.denx.de/pipermail/u-boot and
57 http://dir.gmane.org/gmane.comp.boot-loaders.u-boot 57 http://dir.gmane.org/gmane.comp.boot-loaders.u-boot
58 58
59 59
60 Where to get source code: 60 Where to get source code:
61 ========================= 61 =========================
62 62
63 The U-Boot source code is maintained in the Git repository at 63 The U-Boot source code is maintained in the Git repository at
64 git://www.denx.de/git/u-boot.git ; you can browse it online at 64 git://www.denx.de/git/u-boot.git ; you can browse it online at
65 http://www.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=summary 65 http://www.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=summary
66 66
67 The "snapshot" links on this page allow you to download tarballs of 67 The "snapshot" links on this page allow you to download tarballs of
68 any version you might be interested in. Official releases are also 68 any version you might be interested in. Official releases are also
69 available for FTP download from the ftp://ftp.denx.de/pub/u-boot/ 69 available for FTP download from the ftp://ftp.denx.de/pub/u-boot/
70 directory. 70 directory.
71 71
72 Pre-built (and tested) images are available from 72 Pre-built (and tested) images are available from
73 ftp://ftp.denx.de/pub/u-boot/images/ 73 ftp://ftp.denx.de/pub/u-boot/images/
74 74
75 75
76 Where we come from: 76 Where we come from:
77 =================== 77 ===================
78 78
79 - start from 8xxrom sources 79 - start from 8xxrom sources
80 - create PPCBoot project (http://sourceforge.net/projects/ppcboot) 80 - create PPCBoot project (http://sourceforge.net/projects/ppcboot)
81 - clean up code 81 - clean up code
82 - make it easier to add custom boards 82 - make it easier to add custom boards
83 - make it possible to add other [PowerPC] CPUs 83 - make it possible to add other [PowerPC] CPUs
84 - extend functions, especially: 84 - extend functions, especially:
85 * Provide extended interface to Linux boot loader 85 * Provide extended interface to Linux boot loader
86 * S-Record download 86 * S-Record download
87 * network boot 87 * network boot
88 * PCMCIA / CompactFlash / ATA disk / SCSI ... boot 88 * PCMCIA / CompactFlash / ATA disk / SCSI ... boot
89 - create ARMBoot project (http://sourceforge.net/projects/armboot) 89 - create ARMBoot project (http://sourceforge.net/projects/armboot)
90 - add other CPU families (starting with ARM) 90 - add other CPU families (starting with ARM)
91 - create U-Boot project (http://sourceforge.net/projects/u-boot) 91 - create U-Boot project (http://sourceforge.net/projects/u-boot)
92 - current project page: see http://www.denx.de/wiki/U-Boot 92 - current project page: see http://www.denx.de/wiki/U-Boot
93 93
94 94
95 Names and Spelling: 95 Names and Spelling:
96 =================== 96 ===================
97 97
98 The "official" name of this project is "Das U-Boot". The spelling 98 The "official" name of this project is "Das U-Boot". The spelling
99 "U-Boot" shall be used in all written text (documentation, comments 99 "U-Boot" shall be used in all written text (documentation, comments
100 in source files etc.). Example: 100 in source files etc.). Example:
101 101
102 This is the README file for the U-Boot project. 102 This is the README file for the U-Boot project.
103 103
104 File names etc. shall be based on the string "u-boot". Examples: 104 File names etc. shall be based on the string "u-boot". Examples:
105 105
106 include/asm-ppc/u-boot.h 106 include/asm-ppc/u-boot.h
107 107
108 #include <asm/u-boot.h> 108 #include <asm/u-boot.h>
109 109
110 Variable names, preprocessor constants etc. shall be either based on 110 Variable names, preprocessor constants etc. shall be either based on
111 the string "u_boot" or on "U_BOOT". Example: 111 the string "u_boot" or on "U_BOOT". Example:
112 112
113 U_BOOT_VERSION u_boot_logo 113 U_BOOT_VERSION u_boot_logo
114 IH_OS_U_BOOT u_boot_hush_start 114 IH_OS_U_BOOT u_boot_hush_start
115 115
116 116
117 Versioning: 117 Versioning:
118 =========== 118 ===========
119 119
120 Starting with the release in October 2008, the names of the releases 120 Starting with the release in October 2008, the names of the releases
121 were changed from numerical release numbers without deeper meaning 121 were changed from numerical release numbers without deeper meaning
122 into a time stamp based numbering. Regular releases are identified by 122 into a time stamp based numbering. Regular releases are identified by
123 names consisting of the calendar year and month of the release date. 123 names consisting of the calendar year and month of the release date.
124 Additional fields (if present) indicate release candidates or bug fix 124 Additional fields (if present) indicate release candidates or bug fix
125 releases in "stable" maintenance trees. 125 releases in "stable" maintenance trees.
126 126
127 Examples: 127 Examples:
128 U-Boot v2009.11 - Release November 2009 128 U-Boot v2009.11 - Release November 2009
129 U-Boot v2009.11.1 - Release 1 in version November 2009 stable tree 129 U-Boot v2009.11.1 - Release 1 in version November 2009 stable tree
130 U-Boot v2010.09-rc1 - Release candidate 1 for September 2010 release 130 U-Boot v2010.09-rc1 - Release candidate 1 for September 2010 release
131 131
132 132
133 Directory Hierarchy: 133 Directory Hierarchy:
134 ==================== 134 ====================
135 135
136 /arch Architecture specific files 136 /arch Architecture specific files
137 /arc Files generic to ARC architecture 137 /arc Files generic to ARC architecture
138 /arm Files generic to ARM architecture 138 /arm Files generic to ARM architecture
139 /m68k Files generic to m68k architecture 139 /m68k Files generic to m68k architecture
140 /microblaze Files generic to microblaze architecture 140 /microblaze Files generic to microblaze architecture
141 /mips Files generic to MIPS architecture 141 /mips Files generic to MIPS architecture
142 /nds32 Files generic to NDS32 architecture 142 /nds32 Files generic to NDS32 architecture
143 /nios2 Files generic to Altera NIOS2 architecture 143 /nios2 Files generic to Altera NIOS2 architecture
144 /openrisc Files generic to OpenRISC architecture 144 /openrisc Files generic to OpenRISC architecture
145 /powerpc Files generic to PowerPC architecture 145 /powerpc Files generic to PowerPC architecture
146 /sandbox Files generic to HW-independent "sandbox" 146 /sandbox Files generic to HW-independent "sandbox"
147 /sh Files generic to SH architecture 147 /sh Files generic to SH architecture
148 /x86 Files generic to x86 architecture 148 /x86 Files generic to x86 architecture
149 /api Machine/arch independent API for external apps 149 /api Machine/arch independent API for external apps
150 /board Board dependent files 150 /board Board dependent files
151 /cmd U-Boot commands functions 151 /cmd U-Boot commands functions
152 /common Misc architecture independent functions 152 /common Misc architecture independent functions
153 /configs Board default configuration files 153 /configs Board default configuration files
154 /disk Code for disk drive partition handling 154 /disk Code for disk drive partition handling
155 /doc Documentation (don't expect too much) 155 /doc Documentation (don't expect too much)
156 /drivers Commonly used device drivers 156 /drivers Commonly used device drivers
157 /dts Contains Makefile for building internal U-Boot fdt. 157 /dts Contains Makefile for building internal U-Boot fdt.
158 /examples Example code for standalone applications, etc. 158 /examples Example code for standalone applications, etc.
159 /fs Filesystem code (cramfs, ext2, jffs2, etc.) 159 /fs Filesystem code (cramfs, ext2, jffs2, etc.)
160 /include Header Files 160 /include Header Files
161 /lib Library routines generic to all architectures 161 /lib Library routines generic to all architectures
162 /Licenses Various license files 162 /Licenses Various license files
163 /net Networking code 163 /net Networking code
164 /post Power On Self Test 164 /post Power On Self Test
165 /scripts Various build scripts and Makefiles 165 /scripts Various build scripts and Makefiles
166 /test Various unit test files 166 /test Various unit test files
167 /tools Tools to build S-Record or U-Boot images, etc. 167 /tools Tools to build S-Record or U-Boot images, etc.
168 168
169 Software Configuration: 169 Software Configuration:
170 ======================= 170 =======================
171 171
172 Configuration is usually done using C preprocessor defines; the 172 Configuration is usually done using C preprocessor defines; the
173 rationale behind that is to avoid dead code whenever possible. 173 rationale behind that is to avoid dead code whenever possible.
174 174
175 There are two classes of configuration variables: 175 There are two classes of configuration variables:
176 176
177 * Configuration _OPTIONS_: 177 * Configuration _OPTIONS_:
178 These are selectable by the user and have names beginning with 178 These are selectable by the user and have names beginning with
179 "CONFIG_". 179 "CONFIG_".
180 180
181 * Configuration _SETTINGS_: 181 * Configuration _SETTINGS_:
182 These depend on the hardware etc. and should not be meddled with if 182 These depend on the hardware etc. and should not be meddled with if
183 you don't know what you're doing; they have names beginning with 183 you don't know what you're doing; they have names beginning with
184 "CONFIG_SYS_". 184 "CONFIG_SYS_".
185 185
186 Previously, all configuration was done by hand, which involved creating 186 Previously, all configuration was done by hand, which involved creating
187 symbolic links and editing configuration files manually. More recently, 187 symbolic links and editing configuration files manually. More recently,
188 U-Boot has added the Kbuild infrastructure used by the Linux kernel, 188 U-Boot has added the Kbuild infrastructure used by the Linux kernel,
189 allowing you to use the "make menuconfig" command to configure your 189 allowing you to use the "make menuconfig" command to configure your
190 build. 190 build.
191 191
192 192
193 Selection of Processor Architecture and Board Type: 193 Selection of Processor Architecture and Board Type:
194 --------------------------------------------------- 194 ---------------------------------------------------
195 195
196 For all supported boards there are ready-to-use default 196 For all supported boards there are ready-to-use default
197 configurations available; just type "make <board_name>_defconfig". 197 configurations available; just type "make <board_name>_defconfig".
198 198
199 Example: For a TQM823L module type: 199 Example: For a TQM823L module type:
200 200
201 cd u-boot 201 cd u-boot
202 make TQM823L_defconfig 202 make TQM823L_defconfig
203 203
204 Note: If you're looking for the default configuration file for a board 204 Note: If you're looking for the default configuration file for a board
205 you're sure used to be there but is now missing, check the file 205 you're sure used to be there but is now missing, check the file
206 doc/README.scrapyard for a list of no longer supported boards. 206 doc/README.scrapyard for a list of no longer supported boards.
207 207
208 Sandbox Environment: 208 Sandbox Environment:
209 -------------------- 209 --------------------
210 210
211 U-Boot can be built natively to run on a Linux host using the 'sandbox' 211 U-Boot can be built natively to run on a Linux host using the 'sandbox'
212 board. This allows feature development which is not board- or architecture- 212 board. This allows feature development which is not board- or architecture-
213 specific to be undertaken on a native platform. The sandbox is also used to 213 specific to be undertaken on a native platform. The sandbox is also used to
214 run some of U-Boot's tests. 214 run some of U-Boot's tests.
215 215
216 See board/sandbox/README.sandbox for more details. 216 See board/sandbox/README.sandbox for more details.
217 217
218 218
219 Board Initialisation Flow: 219 Board Initialisation Flow:
220 -------------------------- 220 --------------------------
221 221
222 This is the intended start-up flow for boards. This should apply for both 222 This is the intended start-up flow for boards. This should apply for both
223 SPL and U-Boot proper (i.e. they both follow the same rules). 223 SPL and U-Boot proper (i.e. they both follow the same rules).
224 224
225 Note: "SPL" stands for "Secondary Program Loader," which is explained in 225 Note: "SPL" stands for "Secondary Program Loader," which is explained in
226 more detail later in this file. 226 more detail later in this file.
227 227
228 At present, SPL mostly uses a separate code path, but the function names 228 At present, SPL mostly uses a separate code path, but the function names
229 and roles of each function are the same. Some boards or architectures 229 and roles of each function are the same. Some boards or architectures
230 may not conform to this. At least most ARM boards which use 230 may not conform to this. At least most ARM boards which use
231 CONFIG_SPL_FRAMEWORK conform to this. 231 CONFIG_SPL_FRAMEWORK conform to this.
232 232
233 Execution typically starts with an architecture-specific (and possibly 233 Execution typically starts with an architecture-specific (and possibly
234 CPU-specific) start.S file, such as: 234 CPU-specific) start.S file, such as:
235 235
236 - arch/arm/cpu/armv7/start.S 236 - arch/arm/cpu/armv7/start.S
237 - arch/powerpc/cpu/mpc83xx/start.S 237 - arch/powerpc/cpu/mpc83xx/start.S
238 - arch/mips/cpu/start.S 238 - arch/mips/cpu/start.S
239 239
240 and so on. From there, three functions are called; the purpose and 240 and so on. From there, three functions are called; the purpose and
241 limitations of each of these functions are described below. 241 limitations of each of these functions are described below.
242 242
243 lowlevel_init(): 243 lowlevel_init():
244 - purpose: essential init to permit execution to reach board_init_f() 244 - purpose: essential init to permit execution to reach board_init_f()
245 - no global_data or BSS 245 - no global_data or BSS
246 - there is no stack (ARMv7 may have one but it will soon be removed) 246 - there is no stack (ARMv7 may have one but it will soon be removed)
247 - must not set up SDRAM or use console 247 - must not set up SDRAM or use console
248 - must only do the bare minimum to allow execution to continue to 248 - must only do the bare minimum to allow execution to continue to
249 board_init_f() 249 board_init_f()
250 - this is almost never needed 250 - this is almost never needed
251 - return normally from this function 251 - return normally from this function
252 252
253 board_init_f(): 253 board_init_f():
254 - purpose: set up the machine ready for running board_init_r(): 254 - purpose: set up the machine ready for running board_init_r():
255 i.e. SDRAM and serial UART 255 i.e. SDRAM and serial UART
256 - global_data is available 256 - global_data is available
257 - stack is in SRAM 257 - stack is in SRAM
258 - BSS is not available, so you cannot use global/static variables, 258 - BSS is not available, so you cannot use global/static variables,
259 only stack variables and global_data 259 only stack variables and global_data
260 260
261 Non-SPL-specific notes: 261 Non-SPL-specific notes:
262 - dram_init() is called to set up DRAM. If already done in SPL this 262 - dram_init() is called to set up DRAM. If already done in SPL this
263 can do nothing 263 can do nothing
264 264
265 SPL-specific notes: 265 SPL-specific notes:
266 - you can override the entire board_init_f() function with your own 266 - you can override the entire board_init_f() function with your own
267 version as needed. 267 version as needed.
268 - preloader_console_init() can be called here in extremis 268 - preloader_console_init() can be called here in extremis
269 - should set up SDRAM, and anything needed to make the UART work 269 - should set up SDRAM, and anything needed to make the UART work
270 - these is no need to clear BSS, it will be done by crt0.S 270 - these is no need to clear BSS, it will be done by crt0.S
271 - must return normally from this function (don't call board_init_r() 271 - must return normally from this function (don't call board_init_r()
272 directly) 272 directly)
273 273
274 Here the BSS is cleared. For SPL, if CONFIG_SPL_STACK_R is defined, then at 274 Here the BSS is cleared. For SPL, if CONFIG_SPL_STACK_R is defined, then at
275 this point the stack and global_data are relocated to below 275 this point the stack and global_data are relocated to below
276 CONFIG_SPL_STACK_R_ADDR. For non-SPL, U-Boot is relocated to run at the top of 276 CONFIG_SPL_STACK_R_ADDR. For non-SPL, U-Boot is relocated to run at the top of
277 memory. 277 memory.
278 278
279 board_init_r(): 279 board_init_r():
280 - purpose: main execution, common code 280 - purpose: main execution, common code
281 - global_data is available 281 - global_data is available
282 - SDRAM is available 282 - SDRAM is available
283 - BSS is available, all static/global variables can be used 283 - BSS is available, all static/global variables can be used
284 - execution eventually continues to main_loop() 284 - execution eventually continues to main_loop()
285 285
286 Non-SPL-specific notes: 286 Non-SPL-specific notes:
287 - U-Boot is relocated to the top of memory and is now running from 287 - U-Boot is relocated to the top of memory and is now running from
288 there. 288 there.
289 289
290 SPL-specific notes: 290 SPL-specific notes:
291 - stack is optionally in SDRAM, if CONFIG_SPL_STACK_R is defined and 291 - stack is optionally in SDRAM, if CONFIG_SPL_STACK_R is defined and
292 CONFIG_SPL_STACK_R_ADDR points into SDRAM 292 CONFIG_SPL_STACK_R_ADDR points into SDRAM
293 - preloader_console_init() can be called here - typically this is 293 - preloader_console_init() can be called here - typically this is
294 done by selecting CONFIG_SPL_BOARD_INIT and then supplying a 294 done by selecting CONFIG_SPL_BOARD_INIT and then supplying a
295 spl_board_init() function containing this call 295 spl_board_init() function containing this call
296 - loads U-Boot or (in falcon mode) Linux 296 - loads U-Boot or (in falcon mode) Linux
297 297
298 298
299 299
300 Configuration Options: 300 Configuration Options:
301 ---------------------- 301 ----------------------
302 302
303 Configuration depends on the combination of board and CPU type; all 303 Configuration depends on the combination of board and CPU type; all
304 such information is kept in a configuration file 304 such information is kept in a configuration file
305 "include/configs/<board_name>.h". 305 "include/configs/<board_name>.h".
306 306
307 Example: For a TQM823L module, all configuration settings are in 307 Example: For a TQM823L module, all configuration settings are in
308 "include/configs/TQM823L.h". 308 "include/configs/TQM823L.h".
309 309
310 310
311 Many of the options are named exactly as the corresponding Linux 311 Many of the options are named exactly as the corresponding Linux
312 kernel configuration options. The intention is to make it easier to 312 kernel configuration options. The intention is to make it easier to
313 build a config tool - later. 313 build a config tool - later.
314 314
315 315
316 The following options need to be configured: 316 The following options need to be configured:
317 317
318 - CPU Type: Define exactly one, e.g. CONFIG_MPC85XX. 318 - CPU Type: Define exactly one, e.g. CONFIG_MPC85XX.
319 319
320 - Board Type: Define exactly one, e.g. CONFIG_MPC8540ADS. 320 - Board Type: Define exactly one, e.g. CONFIG_MPC8540ADS.
321 321
322 - Marvell Family Member 322 - Marvell Family Member
323 CONFIG_SYS_MVFS - define it if you want to enable 323 CONFIG_SYS_MVFS - define it if you want to enable
324 multiple fs option at one time 324 multiple fs option at one time
325 for marvell soc family 325 for marvell soc family
326 326
327 - 85xx CPU Options: 327 - 85xx CPU Options:
328 CONFIG_SYS_PPC64 328 CONFIG_SYS_PPC64
329 329
330 Specifies that the core is a 64-bit PowerPC implementation (implements 330 Specifies that the core is a 64-bit PowerPC implementation (implements
331 the "64" category of the Power ISA). This is necessary for ePAPR 331 the "64" category of the Power ISA). This is necessary for ePAPR
332 compliance, among other possible reasons. 332 compliance, among other possible reasons.
333 333
334 CONFIG_SYS_FSL_TBCLK_DIV 334 CONFIG_SYS_FSL_TBCLK_DIV
335 335
336 Defines the core time base clock divider ratio compared to the 336 Defines the core time base clock divider ratio compared to the
337 system clock. On most PQ3 devices this is 8, on newer QorIQ 337 system clock. On most PQ3 devices this is 8, on newer QorIQ
338 devices it can be 16 or 32. The ratio varies from SoC to Soc. 338 devices it can be 16 or 32. The ratio varies from SoC to Soc.
339 339
340 CONFIG_SYS_FSL_PCIE_COMPAT 340 CONFIG_SYS_FSL_PCIE_COMPAT
341 341
342 Defines the string to utilize when trying to match PCIe device 342 Defines the string to utilize when trying to match PCIe device
343 tree nodes for the given platform. 343 tree nodes for the given platform.
344 344
345 CONFIG_SYS_FSL_ERRATUM_A004510 345 CONFIG_SYS_FSL_ERRATUM_A004510
346 346
347 Enables a workaround for erratum A004510. If set, 347 Enables a workaround for erratum A004510. If set,
348 then CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV and 348 then CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV and
349 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY must be set. 349 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY must be set.
350 350
351 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV 351 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV
352 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2 (optional) 352 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2 (optional)
353 353
354 Defines one or two SoC revisions (low 8 bits of SVR) 354 Defines one or two SoC revisions (low 8 bits of SVR)
355 for which the A004510 workaround should be applied. 355 for which the A004510 workaround should be applied.
356 356
357 The rest of SVR is either not relevant to the decision 357 The rest of SVR is either not relevant to the decision
358 of whether the erratum is present (e.g. p2040 versus 358 of whether the erratum is present (e.g. p2040 versus
359 p2041) or is implied by the build target, which controls 359 p2041) or is implied by the build target, which controls
360 whether CONFIG_SYS_FSL_ERRATUM_A004510 is set. 360 whether CONFIG_SYS_FSL_ERRATUM_A004510 is set.
361 361
362 See Freescale App Note 4493 for more information about 362 See Freescale App Note 4493 for more information about
363 this erratum. 363 this erratum.
364 364
365 CONFIG_A003399_NOR_WORKAROUND 365 CONFIG_A003399_NOR_WORKAROUND
366 Enables a workaround for IFC erratum A003399. It is only 366 Enables a workaround for IFC erratum A003399. It is only
367 required during NOR boot. 367 required during NOR boot.
368 368
369 CONFIG_A008044_WORKAROUND 369 CONFIG_A008044_WORKAROUND
370 Enables a workaround for T1040/T1042 erratum A008044. It is only 370 Enables a workaround for T1040/T1042 erratum A008044. It is only
371 required during NAND boot and valid for Rev 1.0 SoC revision 371 required during NAND boot and valid for Rev 1.0 SoC revision
372 372
373 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY 373 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY
374 374
375 This is the value to write into CCSR offset 0x18600 375 This is the value to write into CCSR offset 0x18600
376 according to the A004510 workaround. 376 according to the A004510 workaround.
377 377
378 CONFIG_SYS_FSL_DSP_DDR_ADDR 378 CONFIG_SYS_FSL_DSP_DDR_ADDR
379 This value denotes start offset of DDR memory which is 379 This value denotes start offset of DDR memory which is
380 connected exclusively to the DSP cores. 380 connected exclusively to the DSP cores.
381 381
382 CONFIG_SYS_FSL_DSP_M2_RAM_ADDR 382 CONFIG_SYS_FSL_DSP_M2_RAM_ADDR
383 This value denotes start offset of M2 memory 383 This value denotes start offset of M2 memory
384 which is directly connected to the DSP core. 384 which is directly connected to the DSP core.
385 385
386 CONFIG_SYS_FSL_DSP_M3_RAM_ADDR 386 CONFIG_SYS_FSL_DSP_M3_RAM_ADDR
387 This value denotes start offset of M3 memory which is directly 387 This value denotes start offset of M3 memory which is directly
388 connected to the DSP core. 388 connected to the DSP core.
389 389
390 CONFIG_SYS_FSL_DSP_CCSRBAR_DEFAULT 390 CONFIG_SYS_FSL_DSP_CCSRBAR_DEFAULT
391 This value denotes start offset of DSP CCSR space. 391 This value denotes start offset of DSP CCSR space.
392 392
393 CONFIG_SYS_FSL_SINGLE_SOURCE_CLK 393 CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
394 Single Source Clock is clocking mode present in some of FSL SoC's. 394 Single Source Clock is clocking mode present in some of FSL SoC's.
395 In this mode, a single differential clock is used to supply 395 In this mode, a single differential clock is used to supply
396 clocks to the sysclock, ddrclock and usbclock. 396 clocks to the sysclock, ddrclock and usbclock.
397 397
398 CONFIG_SYS_CPC_REINIT_F 398 CONFIG_SYS_CPC_REINIT_F
399 This CONFIG is defined when the CPC is configured as SRAM at the 399 This CONFIG is defined when the CPC is configured as SRAM at the
400 time of U-Boot entry and is required to be re-initialized. 400 time of U-Boot entry and is required to be re-initialized.
401 401
402 CONFIG_DEEP_SLEEP 402 CONFIG_DEEP_SLEEP
403 Indicates this SoC supports deep sleep feature. If deep sleep is 403 Indicates this SoC supports deep sleep feature. If deep sleep is
404 supported, core will start to execute uboot when wakes up. 404 supported, core will start to execute uboot when wakes up.
405 405
406 - Generic CPU options: 406 - Generic CPU options:
407 CONFIG_SYS_GENERIC_GLOBAL_DATA 407 CONFIG_SYS_GENERIC_GLOBAL_DATA
408 Defines global data is initialized in generic board board_init_f(). 408 Defines global data is initialized in generic board board_init_f().
409 If this macro is defined, global data is created and cleared in 409 If this macro is defined, global data is created and cleared in
410 generic board board_init_f(). Without this macro, architecture/board 410 generic board board_init_f(). Without this macro, architecture/board
411 should initialize global data before calling board_init_f(). 411 should initialize global data before calling board_init_f().
412 412
413 CONFIG_SYS_BIG_ENDIAN, CONFIG_SYS_LITTLE_ENDIAN 413 CONFIG_SYS_BIG_ENDIAN, CONFIG_SYS_LITTLE_ENDIAN
414 414
415 Defines the endianess of the CPU. Implementation of those 415 Defines the endianess of the CPU. Implementation of those
416 values is arch specific. 416 values is arch specific.
417 417
418 CONFIG_SYS_FSL_DDR 418 CONFIG_SYS_FSL_DDR
419 Freescale DDR driver in use. This type of DDR controller is 419 Freescale DDR driver in use. This type of DDR controller is
420 found in mpc83xx, mpc85xx, mpc86xx as well as some ARM core 420 found in mpc83xx, mpc85xx, mpc86xx as well as some ARM core
421 SoCs. 421 SoCs.
422 422
423 CONFIG_SYS_FSL_DDR_ADDR 423 CONFIG_SYS_FSL_DDR_ADDR
424 Freescale DDR memory-mapped register base. 424 Freescale DDR memory-mapped register base.
425 425
426 CONFIG_SYS_FSL_DDR_EMU 426 CONFIG_SYS_FSL_DDR_EMU
427 Specify emulator support for DDR. Some DDR features such as 427 Specify emulator support for DDR. Some DDR features such as
428 deskew training are not available. 428 deskew training are not available.
429 429
430 CONFIG_SYS_FSL_DDRC_GEN1 430 CONFIG_SYS_FSL_DDRC_GEN1
431 Freescale DDR1 controller. 431 Freescale DDR1 controller.
432 432
433 CONFIG_SYS_FSL_DDRC_GEN2 433 CONFIG_SYS_FSL_DDRC_GEN2
434 Freescale DDR2 controller. 434 Freescale DDR2 controller.
435 435
436 CONFIG_SYS_FSL_DDRC_GEN3 436 CONFIG_SYS_FSL_DDRC_GEN3
437 Freescale DDR3 controller. 437 Freescale DDR3 controller.
438 438
439 CONFIG_SYS_FSL_DDRC_GEN4 439 CONFIG_SYS_FSL_DDRC_GEN4
440 Freescale DDR4 controller. 440 Freescale DDR4 controller.
441 441
442 CONFIG_SYS_FSL_DDRC_ARM_GEN3 442 CONFIG_SYS_FSL_DDRC_ARM_GEN3
443 Freescale DDR3 controller for ARM-based SoCs. 443 Freescale DDR3 controller for ARM-based SoCs.
444 444
445 CONFIG_SYS_FSL_DDR1 445 CONFIG_SYS_FSL_DDR1
446 Board config to use DDR1. It can be enabled for SoCs with 446 Board config to use DDR1. It can be enabled for SoCs with
447 Freescale DDR1 or DDR2 controllers, depending on the board 447 Freescale DDR1 or DDR2 controllers, depending on the board
448 implemetation. 448 implemetation.
449 449
450 CONFIG_SYS_FSL_DDR2 450 CONFIG_SYS_FSL_DDR2
451 Board config to use DDR2. It can be enabled for SoCs with 451 Board config to use DDR2. It can be enabled for SoCs with
452 Freescale DDR2 or DDR3 controllers, depending on the board 452 Freescale DDR2 or DDR3 controllers, depending on the board
453 implementation. 453 implementation.
454 454
455 CONFIG_SYS_FSL_DDR3 455 CONFIG_SYS_FSL_DDR3
456 Board config to use DDR3. It can be enabled for SoCs with 456 Board config to use DDR3. It can be enabled for SoCs with
457 Freescale DDR3 or DDR3L controllers. 457 Freescale DDR3 or DDR3L controllers.
458 458
459 CONFIG_SYS_FSL_DDR3L 459 CONFIG_SYS_FSL_DDR3L
460 Board config to use DDR3L. It can be enabled for SoCs with 460 Board config to use DDR3L. It can be enabled for SoCs with
461 DDR3L controllers. 461 DDR3L controllers.
462 462
463 CONFIG_SYS_FSL_DDR4 463 CONFIG_SYS_FSL_DDR4
464 Board config to use DDR4. It can be enabled for SoCs with 464 Board config to use DDR4. It can be enabled for SoCs with
465 DDR4 controllers. 465 DDR4 controllers.
466 466
467 CONFIG_SYS_FSL_IFC_BE 467 CONFIG_SYS_FSL_IFC_BE
468 Defines the IFC controller register space as Big Endian 468 Defines the IFC controller register space as Big Endian
469 469
470 CONFIG_SYS_FSL_IFC_LE 470 CONFIG_SYS_FSL_IFC_LE
471 Defines the IFC controller register space as Little Endian 471 Defines the IFC controller register space as Little Endian
472 472
473 CONFIG_SYS_FSL_IFC_CLK_DIV 473 CONFIG_SYS_FSL_IFC_CLK_DIV
474 Defines divider of platform clock(clock input to IFC controller). 474 Defines divider of platform clock(clock input to IFC controller).
475 475
476 CONFIG_SYS_FSL_LBC_CLK_DIV 476 CONFIG_SYS_FSL_LBC_CLK_DIV
477 Defines divider of platform clock(clock input to eLBC controller). 477 Defines divider of platform clock(clock input to eLBC controller).
478 478
479 CONFIG_SYS_FSL_PBL_PBI 479 CONFIG_SYS_FSL_PBL_PBI
480 It enables addition of RCW (Power on reset configuration) in built image. 480 It enables addition of RCW (Power on reset configuration) in built image.
481 Please refer doc/README.pblimage for more details 481 Please refer doc/README.pblimage for more details
482 482
483 CONFIG_SYS_FSL_PBL_RCW 483 CONFIG_SYS_FSL_PBL_RCW
484 It adds PBI(pre-boot instructions) commands in u-boot build image. 484 It adds PBI(pre-boot instructions) commands in u-boot build image.
485 PBI commands can be used to configure SoC before it starts the execution. 485 PBI commands can be used to configure SoC before it starts the execution.
486 Please refer doc/README.pblimage for more details 486 Please refer doc/README.pblimage for more details
487 487
488 CONFIG_SPL_FSL_PBL 488 CONFIG_SPL_FSL_PBL
489 It adds a target to create boot binary having SPL binary in PBI format 489 It adds a target to create boot binary having SPL binary in PBI format
490 concatenated with u-boot binary. 490 concatenated with u-boot binary.
491 491
492 CONFIG_SYS_FSL_DDR_BE 492 CONFIG_SYS_FSL_DDR_BE
493 Defines the DDR controller register space as Big Endian 493 Defines the DDR controller register space as Big Endian
494 494
495 CONFIG_SYS_FSL_DDR_LE 495 CONFIG_SYS_FSL_DDR_LE
496 Defines the DDR controller register space as Little Endian 496 Defines the DDR controller register space as Little Endian
497 497
498 CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 498 CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY
499 Physical address from the view of DDR controllers. It is the 499 Physical address from the view of DDR controllers. It is the
500 same as CONFIG_SYS_DDR_SDRAM_BASE for all Power SoCs. But 500 same as CONFIG_SYS_DDR_SDRAM_BASE for all Power SoCs. But
501 it could be different for ARM SoCs. 501 it could be different for ARM SoCs.
502 502
503 CONFIG_SYS_FSL_DDR_INTLV_256B 503 CONFIG_SYS_FSL_DDR_INTLV_256B
504 DDR controller interleaving on 256-byte. This is a special 504 DDR controller interleaving on 256-byte. This is a special
505 interleaving mode, handled by Dickens for Freescale layerscape 505 interleaving mode, handled by Dickens for Freescale layerscape
506 SoCs with ARM core. 506 SoCs with ARM core.
507 507
508 CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS 508 CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS
509 Number of controllers used as main memory. 509 Number of controllers used as main memory.
510 510
511 CONFIG_SYS_FSL_OTHER_DDR_NUM_CTRLS 511 CONFIG_SYS_FSL_OTHER_DDR_NUM_CTRLS
512 Number of controllers used for other than main memory. 512 Number of controllers used for other than main memory.
513 513
514 CONFIG_SYS_FSL_HAS_DP_DDR 514 CONFIG_SYS_FSL_HAS_DP_DDR
515 Defines the SoC has DP-DDR used for DPAA. 515 Defines the SoC has DP-DDR used for DPAA.
516 516
517 CONFIG_SYS_FSL_SEC_BE 517 CONFIG_SYS_FSL_SEC_BE
518 Defines the SEC controller register space as Big Endian 518 Defines the SEC controller register space as Big Endian
519 519
520 CONFIG_SYS_FSL_SEC_LE 520 CONFIG_SYS_FSL_SEC_LE
521 Defines the SEC controller register space as Little Endian 521 Defines the SEC controller register space as Little Endian
522 522
523 - MIPS CPU options: 523 - MIPS CPU options:
524 CONFIG_SYS_INIT_SP_OFFSET 524 CONFIG_SYS_INIT_SP_OFFSET
525 525
526 Offset relative to CONFIG_SYS_SDRAM_BASE for initial stack 526 Offset relative to CONFIG_SYS_SDRAM_BASE for initial stack
527 pointer. This is needed for the temporary stack before 527 pointer. This is needed for the temporary stack before
528 relocation. 528 relocation.
529 529
530 CONFIG_SYS_MIPS_CACHE_MODE 530 CONFIG_SYS_MIPS_CACHE_MODE
531 531
532 Cache operation mode for the MIPS CPU. 532 Cache operation mode for the MIPS CPU.
533 See also arch/mips/include/asm/mipsregs.h. 533 See also arch/mips/include/asm/mipsregs.h.
534 Possible values are: 534 Possible values are:
535 CONF_CM_CACHABLE_NO_WA 535 CONF_CM_CACHABLE_NO_WA
536 CONF_CM_CACHABLE_WA 536 CONF_CM_CACHABLE_WA
537 CONF_CM_UNCACHED 537 CONF_CM_UNCACHED
538 CONF_CM_CACHABLE_NONCOHERENT 538 CONF_CM_CACHABLE_NONCOHERENT
539 CONF_CM_CACHABLE_CE 539 CONF_CM_CACHABLE_CE
540 CONF_CM_CACHABLE_COW 540 CONF_CM_CACHABLE_COW
541 CONF_CM_CACHABLE_CUW 541 CONF_CM_CACHABLE_CUW
542 CONF_CM_CACHABLE_ACCELERATED 542 CONF_CM_CACHABLE_ACCELERATED
543 543
544 CONFIG_SYS_XWAY_EBU_BOOTCFG 544 CONFIG_SYS_XWAY_EBU_BOOTCFG
545 545
546 Special option for Lantiq XWAY SoCs for booting from NOR flash. 546 Special option for Lantiq XWAY SoCs for booting from NOR flash.
547 See also arch/mips/cpu/mips32/start.S. 547 See also arch/mips/cpu/mips32/start.S.
548 548
549 CONFIG_XWAY_SWAP_BYTES 549 CONFIG_XWAY_SWAP_BYTES
550 550
551 Enable compilation of tools/xway-swap-bytes needed for Lantiq 551 Enable compilation of tools/xway-swap-bytes needed for Lantiq
552 XWAY SoCs for booting from NOR flash. The U-Boot image needs to 552 XWAY SoCs for booting from NOR flash. The U-Boot image needs to
553 be swapped if a flash programmer is used. 553 be swapped if a flash programmer is used.
554 554
555 - ARM options: 555 - ARM options:
556 CONFIG_SYS_EXCEPTION_VECTORS_HIGH 556 CONFIG_SYS_EXCEPTION_VECTORS_HIGH
557 557
558 Select high exception vectors of the ARM core, e.g., do not 558 Select high exception vectors of the ARM core, e.g., do not
559 clear the V bit of the c1 register of CP15. 559 clear the V bit of the c1 register of CP15.
560 560
561 COUNTER_FREQUENCY 561 COUNTER_FREQUENCY
562 Generic timer clock source frequency. 562 Generic timer clock source frequency.
563 563
564 COUNTER_FREQUENCY_REAL 564 COUNTER_FREQUENCY_REAL
565 Generic timer clock source frequency if the real clock is 565 Generic timer clock source frequency if the real clock is
566 different from COUNTER_FREQUENCY, and can only be determined 566 different from COUNTER_FREQUENCY, and can only be determined
567 at run time. 567 at run time.
568 568
569 - Tegra SoC options: 569 - Tegra SoC options:
570 CONFIG_TEGRA_SUPPORT_NON_SECURE 570 CONFIG_TEGRA_SUPPORT_NON_SECURE
571 571
572 Support executing U-Boot in non-secure (NS) mode. Certain 572 Support executing U-Boot in non-secure (NS) mode. Certain
573 impossible actions will be skipped if the CPU is in NS mode, 573 impossible actions will be skipped if the CPU is in NS mode,
574 such as ARM architectural timer initialization. 574 such as ARM architectural timer initialization.
575 575
576 - Linux Kernel Interface: 576 - Linux Kernel Interface:
577 CONFIG_CLOCKS_IN_MHZ 577 CONFIG_CLOCKS_IN_MHZ
578 578
579 U-Boot stores all clock information in Hz 579 U-Boot stores all clock information in Hz
580 internally. For binary compatibility with older Linux 580 internally. For binary compatibility with older Linux
581 kernels (which expect the clocks passed in the 581 kernels (which expect the clocks passed in the
582 bd_info data to be in MHz) the environment variable 582 bd_info data to be in MHz) the environment variable
583 "clocks_in_mhz" can be defined so that U-Boot 583 "clocks_in_mhz" can be defined so that U-Boot
584 converts clock data to MHZ before passing it to the 584 converts clock data to MHZ before passing it to the
585 Linux kernel. 585 Linux kernel.
586 When CONFIG_CLOCKS_IN_MHZ is defined, a definition of 586 When CONFIG_CLOCKS_IN_MHZ is defined, a definition of
587 "clocks_in_mhz=1" is automatically included in the 587 "clocks_in_mhz=1" is automatically included in the
588 default environment. 588 default environment.
589 589
590 CONFIG_MEMSIZE_IN_BYTES [relevant for MIPS only] 590 CONFIG_MEMSIZE_IN_BYTES [relevant for MIPS only]
591 591
592 When transferring memsize parameter to Linux, some versions 592 When transferring memsize parameter to Linux, some versions
593 expect it to be in bytes, others in MB. 593 expect it to be in bytes, others in MB.
594 Define CONFIG_MEMSIZE_IN_BYTES to make it in bytes. 594 Define CONFIG_MEMSIZE_IN_BYTES to make it in bytes.
595 595
596 CONFIG_OF_LIBFDT 596 CONFIG_OF_LIBFDT
597 597
598 New kernel versions are expecting firmware settings to be 598 New kernel versions are expecting firmware settings to be
599 passed using flattened device trees (based on open firmware 599 passed using flattened device trees (based on open firmware
600 concepts). 600 concepts).
601 601
602 CONFIG_OF_LIBFDT 602 CONFIG_OF_LIBFDT
603 * New libfdt-based support 603 * New libfdt-based support
604 * Adds the "fdt" command 604 * Adds the "fdt" command
605 * The bootm command automatically updates the fdt 605 * The bootm command automatically updates the fdt
606 606
607 OF_TBCLK - The timebase frequency. 607 OF_TBCLK - The timebase frequency.
608 OF_STDOUT_PATH - The path to the console device 608 OF_STDOUT_PATH - The path to the console device
609 609
610 boards with QUICC Engines require OF_QE to set UCC MAC 610 boards with QUICC Engines require OF_QE to set UCC MAC
611 addresses 611 addresses
612 612
613 CONFIG_OF_BOARD_SETUP 613 CONFIG_OF_BOARD_SETUP
614 614
615 Board code has addition modification that it wants to make 615 Board code has addition modification that it wants to make
616 to the flat device tree before handing it off to the kernel 616 to the flat device tree before handing it off to the kernel
617 617
618 CONFIG_OF_SYSTEM_SETUP 618 CONFIG_OF_SYSTEM_SETUP
619 619
620 Other code has addition modification that it wants to make 620 Other code has addition modification that it wants to make
621 to the flat device tree before handing it off to the kernel. 621 to the flat device tree before handing it off to the kernel.
622 This causes ft_system_setup() to be called before booting 622 This causes ft_system_setup() to be called before booting
623 the kernel. 623 the kernel.
624 624
625 CONFIG_OF_IDE_FIXUP 625 CONFIG_OF_IDE_FIXUP
626 626
627 U-Boot can detect if an IDE device is present or not. 627 U-Boot can detect if an IDE device is present or not.
628 If not, and this new config option is activated, U-Boot 628 If not, and this new config option is activated, U-Boot
629 removes the ATA node from the DTS before booting Linux, 629 removes the ATA node from the DTS before booting Linux,
630 so the Linux IDE driver does not probe the device and 630 so the Linux IDE driver does not probe the device and
631 crash. This is needed for buggy hardware (uc101) where 631 crash. This is needed for buggy hardware (uc101) where
632 no pull down resistor is connected to the signal IDE5V_DD7. 632 no pull down resistor is connected to the signal IDE5V_DD7.
633 633
634 CONFIG_MACH_TYPE [relevant for ARM only][mandatory] 634 CONFIG_MACH_TYPE [relevant for ARM only][mandatory]
635 635
636 This setting is mandatory for all boards that have only one 636 This setting is mandatory for all boards that have only one
637 machine type and must be used to specify the machine type 637 machine type and must be used to specify the machine type
638 number as it appears in the ARM machine registry 638 number as it appears in the ARM machine registry
639 (see http://www.arm.linux.org.uk/developer/machines/). 639 (see http://www.arm.linux.org.uk/developer/machines/).
640 Only boards that have multiple machine types supported 640 Only boards that have multiple machine types supported
641 in a single configuration file and the machine type is 641 in a single configuration file and the machine type is
642 runtime discoverable, do not have to use this setting. 642 runtime discoverable, do not have to use this setting.
643 643
644 - vxWorks boot parameters: 644 - vxWorks boot parameters:
645 645
646 bootvx constructs a valid bootline using the following 646 bootvx constructs a valid bootline using the following
647 environments variables: bootdev, bootfile, ipaddr, netmask, 647 environments variables: bootdev, bootfile, ipaddr, netmask,
648 serverip, gatewayip, hostname, othbootargs. 648 serverip, gatewayip, hostname, othbootargs.
649 It loads the vxWorks image pointed bootfile. 649 It loads the vxWorks image pointed bootfile.
650 650
651 Note: If a "bootargs" environment is defined, it will overwride 651 Note: If a "bootargs" environment is defined, it will overwride
652 the defaults discussed just above. 652 the defaults discussed just above.
653 653
654 - Cache Configuration: 654 - Cache Configuration:
655 CONFIG_SYS_ICACHE_OFF - Do not enable instruction cache in U-Boot 655 CONFIG_SYS_ICACHE_OFF - Do not enable instruction cache in U-Boot
656 CONFIG_SYS_DCACHE_OFF - Do not enable data cache in U-Boot 656 CONFIG_SYS_DCACHE_OFF - Do not enable data cache in U-Boot
657 CONFIG_SYS_L2CACHE_OFF- Do not enable L2 cache in U-Boot 657 CONFIG_SYS_L2CACHE_OFF- Do not enable L2 cache in U-Boot
658 658
659 - Cache Configuration for ARM: 659 - Cache Configuration for ARM:
660 CONFIG_SYS_L2_PL310 - Enable support for ARM PL310 L2 cache 660 CONFIG_SYS_L2_PL310 - Enable support for ARM PL310 L2 cache
661 controller 661 controller
662 CONFIG_SYS_PL310_BASE - Physical base address of PL310 662 CONFIG_SYS_PL310_BASE - Physical base address of PL310
663 controller register space 663 controller register space
664 664
665 - Serial Ports: 665 - Serial Ports:
666 CONFIG_PL010_SERIAL 666 CONFIG_PL010_SERIAL
667 667
668 Define this if you want support for Amba PrimeCell PL010 UARTs. 668 Define this if you want support for Amba PrimeCell PL010 UARTs.
669 669
670 CONFIG_PL011_SERIAL 670 CONFIG_PL011_SERIAL
671 671
672 Define this if you want support for Amba PrimeCell PL011 UARTs. 672 Define this if you want support for Amba PrimeCell PL011 UARTs.
673 673
674 CONFIG_PL011_CLOCK 674 CONFIG_PL011_CLOCK
675 675
676 If you have Amba PrimeCell PL011 UARTs, set this variable to 676 If you have Amba PrimeCell PL011 UARTs, set this variable to
677 the clock speed of the UARTs. 677 the clock speed of the UARTs.
678 678
679 CONFIG_PL01x_PORTS 679 CONFIG_PL01x_PORTS
680 680
681 If you have Amba PrimeCell PL010 or PL011 UARTs on your board, 681 If you have Amba PrimeCell PL010 or PL011 UARTs on your board,
682 define this to a list of base addresses for each (supported) 682 define this to a list of base addresses for each (supported)
683 port. See e.g. include/configs/versatile.h 683 port. See e.g. include/configs/versatile.h
684 684
685 CONFIG_SERIAL_HW_FLOW_CONTROL 685 CONFIG_SERIAL_HW_FLOW_CONTROL
686 686
687 Define this variable to enable hw flow control in serial driver. 687 Define this variable to enable hw flow control in serial driver.
688 Current user of this option is drivers/serial/nsl16550.c driver 688 Current user of this option is drivers/serial/nsl16550.c driver
689 689
690 - Console Baudrate: 690 - Console Baudrate:
691 CONFIG_BAUDRATE - in bps 691 CONFIG_BAUDRATE - in bps
692 Select one of the baudrates listed in 692 Select one of the baudrates listed in
693 CONFIG_SYS_BAUDRATE_TABLE, see below. 693 CONFIG_SYS_BAUDRATE_TABLE, see below.
694 694
695 - Autoboot Command: 695 - Autoboot Command:
696 CONFIG_BOOTCOMMAND 696 CONFIG_BOOTCOMMAND
697 Only needed when CONFIG_BOOTDELAY is enabled; 697 Only needed when CONFIG_BOOTDELAY is enabled;
698 define a command string that is automatically executed 698 define a command string that is automatically executed
699 when no character is read on the console interface 699 when no character is read on the console interface
700 within "Boot Delay" after reset. 700 within "Boot Delay" after reset.
701 701
702 CONFIG_BOOTARGS 702 CONFIG_BOOTARGS
703 This can be used to pass arguments to the bootm 703 This can be used to pass arguments to the bootm
704 command. The value of CONFIG_BOOTARGS goes into the 704 command. The value of CONFIG_BOOTARGS goes into the
705 environment value "bootargs". 705 environment value "bootargs".
706 706
707 CONFIG_RAMBOOT and CONFIG_NFSBOOT 707 CONFIG_RAMBOOT and CONFIG_NFSBOOT
708 The value of these goes into the environment as 708 The value of these goes into the environment as
709 "ramboot" and "nfsboot" respectively, and can be used 709 "ramboot" and "nfsboot" respectively, and can be used
710 as a convenience, when switching between booting from 710 as a convenience, when switching between booting from
711 RAM and NFS. 711 RAM and NFS.
712 712
713 - Bootcount: 713 - Bootcount:
714 CONFIG_BOOTCOUNT_LIMIT 714 CONFIG_BOOTCOUNT_LIMIT
715 Implements a mechanism for detecting a repeating reboot 715 Implements a mechanism for detecting a repeating reboot
716 cycle, see: 716 cycle, see:
717 http://www.denx.de/wiki/view/DULG/UBootBootCountLimit 717 http://www.denx.de/wiki/view/DULG/UBootBootCountLimit
718 718
719 CONFIG_BOOTCOUNT_ENV 719 CONFIG_BOOTCOUNT_ENV
720 If no softreset save registers are found on the hardware 720 If no softreset save registers are found on the hardware
721 "bootcount" is stored in the environment. To prevent a 721 "bootcount" is stored in the environment. To prevent a
722 saveenv on all reboots, the environment variable 722 saveenv on all reboots, the environment variable
723 "upgrade_available" is used. If "upgrade_available" is 723 "upgrade_available" is used. If "upgrade_available" is
724 0, "bootcount" is always 0, if "upgrade_available" is 724 0, "bootcount" is always 0, if "upgrade_available" is
725 1 "bootcount" is incremented in the environment. 725 1 "bootcount" is incremented in the environment.
726 So the Userspace Applikation must set the "upgrade_available" 726 So the Userspace Applikation must set the "upgrade_available"
727 and "bootcount" variable to 0, if a boot was successfully. 727 and "bootcount" variable to 0, if a boot was successfully.
728 728
729 - Pre-Boot Commands: 729 - Pre-Boot Commands:
730 CONFIG_PREBOOT 730 CONFIG_PREBOOT
731 731
732 When this option is #defined, the existence of the 732 When this option is #defined, the existence of the
733 environment variable "preboot" will be checked 733 environment variable "preboot" will be checked
734 immediately before starting the CONFIG_BOOTDELAY 734 immediately before starting the CONFIG_BOOTDELAY
735 countdown and/or running the auto-boot command resp. 735 countdown and/or running the auto-boot command resp.
736 entering interactive mode. 736 entering interactive mode.
737 737
738 This feature is especially useful when "preboot" is 738 This feature is especially useful when "preboot" is
739 automatically generated or modified. For an example 739 automatically generated or modified. For an example
740 see the LWMON board specific code: here "preboot" is 740 see the LWMON board specific code: here "preboot" is
741 modified when the user holds down a certain 741 modified when the user holds down a certain
742 combination of keys on the (special) keyboard when 742 combination of keys on the (special) keyboard when
743 booting the systems 743 booting the systems
744 744
745 - Serial Download Echo Mode: 745 - Serial Download Echo Mode:
746 CONFIG_LOADS_ECHO 746 CONFIG_LOADS_ECHO
747 If defined to 1, all characters received during a 747 If defined to 1, all characters received during a
748 serial download (using the "loads" command) are 748 serial download (using the "loads" command) are
749 echoed back. This might be needed by some terminal 749 echoed back. This might be needed by some terminal
750 emulations (like "cu"), but may as well just take 750 emulations (like "cu"), but may as well just take
751 time on others. This setting #define's the initial 751 time on others. This setting #define's the initial
752 value of the "loads_echo" environment variable. 752 value of the "loads_echo" environment variable.
753 753
754 - Kgdb Serial Baudrate: (if CONFIG_CMD_KGDB is defined) 754 - Kgdb Serial Baudrate: (if CONFIG_CMD_KGDB is defined)
755 CONFIG_KGDB_BAUDRATE 755 CONFIG_KGDB_BAUDRATE
756 Select one of the baudrates listed in 756 Select one of the baudrates listed in
757 CONFIG_SYS_BAUDRATE_TABLE, see below. 757 CONFIG_SYS_BAUDRATE_TABLE, see below.
758 758
759 - Monitor Functions: 759 - Monitor Functions:
760 Monitor commands can be included or excluded 760 Monitor commands can be included or excluded
761 from the build by using the #include files 761 from the build by using the #include files
762 <config_cmd_all.h> and #undef'ing unwanted 762 <config_cmd_all.h> and #undef'ing unwanted
763 commands, or adding #define's for wanted commands. 763 commands, or adding #define's for wanted commands.
764 764
765 The default command configuration includes all commands 765 The default command configuration includes all commands
766 except those marked below with a "*". 766 except those marked below with a "*".
767 767
768 CONFIG_CMD_AES AES 128 CBC encrypt/decrypt 768 CONFIG_CMD_AES AES 128 CBC encrypt/decrypt
769 CONFIG_CMD_ASKENV * ask for env variable 769 CONFIG_CMD_ASKENV * ask for env variable
770 CONFIG_CMD_BDI bdinfo 770 CONFIG_CMD_BDI bdinfo
771 CONFIG_CMD_BOOTD bootd 771 CONFIG_CMD_BOOTD bootd
772 CONFIG_CMD_BOOTI * ARM64 Linux kernel Image support 772 CONFIG_CMD_BOOTI * ARM64 Linux kernel Image support
773 CONFIG_CMD_CACHE * icache, dcache 773 CONFIG_CMD_CACHE * icache, dcache
774 CONFIG_CMD_CONSOLE coninfo 774 CONFIG_CMD_CONSOLE coninfo
775 CONFIG_CMD_DHCP * DHCP support 775 CONFIG_CMD_DHCP * DHCP support
776 CONFIG_CMD_DIAG * Diagnostics 776 CONFIG_CMD_DIAG * Diagnostics
777 CONFIG_CMD_ECHO echo arguments 777 CONFIG_CMD_ECHO echo arguments
778 CONFIG_CMD_EDITENV edit env variable 778 CONFIG_CMD_EDITENV edit env variable
779 CONFIG_CMD_ELF * bootelf, bootvx 779 CONFIG_CMD_ELF * bootelf, bootvx
780 CONFIG_CMD_ENV_EXISTS * check existence of env variable 780 CONFIG_CMD_ENV_EXISTS * check existence of env variable
781 CONFIG_CMD_EXPORTENV * export the environment 781 CONFIG_CMD_EXPORTENV * export the environment
782 CONFIG_CMD_EXT2 * ext2 command support 782 CONFIG_CMD_EXT2 * ext2 command support
783 CONFIG_CMD_EXT4 * ext4 command support 783 CONFIG_CMD_EXT4 * ext4 command support
784 CONFIG_CMD_FS_GENERIC * filesystem commands (e.g. load, ls) 784 CONFIG_CMD_FS_GENERIC * filesystem commands (e.g. load, ls)
785 that work for multiple fs types 785 that work for multiple fs types
786 CONFIG_CMD_FS_UUID * Look up a filesystem UUID 786 CONFIG_CMD_FS_UUID * Look up a filesystem UUID
787 CONFIG_CMD_SAVEENV saveenv 787 CONFIG_CMD_SAVEENV saveenv
788 CONFIG_CMD_FLASH flinfo, erase, protect 788 CONFIG_CMD_FLASH flinfo, erase, protect
789 CONFIG_CMD_FPGA FPGA device initialization support 789 CONFIG_CMD_FPGA FPGA device initialization support
790 CONFIG_CMD_GO * the 'go' command (exec code) 790 CONFIG_CMD_GO * the 'go' command (exec code)
791 CONFIG_CMD_GREPENV * search environment 791 CONFIG_CMD_GREPENV * search environment
792 CONFIG_CMD_I2C * I2C serial bus support 792 CONFIG_CMD_I2C * I2C serial bus support
793 CONFIG_CMD_IMI iminfo 793 CONFIG_CMD_IMI iminfo
794 CONFIG_CMD_IMLS List all images found in NOR flash 794 CONFIG_CMD_IMLS List all images found in NOR flash
795 CONFIG_CMD_IMLS_NAND * List all images found in NAND flash 795 CONFIG_CMD_IMLS_NAND * List all images found in NAND flash
796 CONFIG_CMD_IMPORTENV * import an environment 796 CONFIG_CMD_IMPORTENV * import an environment
797 CONFIG_CMD_INI * import data from an ini file into the env 797 CONFIG_CMD_INI * import data from an ini file into the env
798 CONFIG_CMD_ITEST Integer/string test of 2 values 798 CONFIG_CMD_ITEST Integer/string test of 2 values
799 CONFIG_CMD_LDRINFO * ldrinfo (display Blackfin loader) 799 CONFIG_CMD_LDRINFO * ldrinfo (display Blackfin loader)
800 CONFIG_CMD_LINK_LOCAL * link-local IP address auto-configuration 800 CONFIG_CMD_LINK_LOCAL * link-local IP address auto-configuration
801 (169.254.*.*) 801 (169.254.*.*)
802 CONFIG_CMD_LOADB loadb 802 CONFIG_CMD_LOADB loadb
803 CONFIG_CMD_LOADS loads 803 CONFIG_CMD_LOADS loads
804 CONFIG_CMD_MD5SUM * print md5 message digest 804 CONFIG_CMD_MD5SUM * print md5 message digest
805 (requires CONFIG_CMD_MEMORY and CONFIG_MD5) 805 (requires CONFIG_CMD_MEMORY and CONFIG_MD5)
806 CONFIG_CMD_MEMINFO * Display detailed memory information 806 CONFIG_CMD_MEMINFO * Display detailed memory information
807 CONFIG_CMD_MEMORY md, mm, nm, mw, cp, cmp, crc, base, 807 CONFIG_CMD_MEMORY md, mm, nm, mw, cp, cmp, crc, base,
808 loop, loopw 808 loop, loopw
809 CONFIG_CMD_MEMTEST * mtest 809 CONFIG_CMD_MEMTEST * mtest
810 CONFIG_CMD_MISC Misc functions like sleep etc 810 CONFIG_CMD_MISC Misc functions like sleep etc
811 CONFIG_CMD_MMC * MMC memory mapped support 811 CONFIG_CMD_MMC * MMC memory mapped support
812 CONFIG_CMD_MII * MII utility commands 812 CONFIG_CMD_MII * MII utility commands
813 CONFIG_CMD_NET bootp, tftpboot, rarpboot 813 CONFIG_CMD_NET bootp, tftpboot, rarpboot
814 CONFIG_CMD_NFS NFS support 814 CONFIG_CMD_NFS NFS support
815 CONFIG_CMD_PING * send ICMP ECHO_REQUEST to network 815 CONFIG_CMD_PING * send ICMP ECHO_REQUEST to network
816 host 816 host
817 CONFIG_CMD_PORTIO * Port I/O
818 CONFIG_CMD_READ * Read raw data from partition 817 CONFIG_CMD_READ * Read raw data from partition
819 CONFIG_CMD_REGINFO * Register dump 818 CONFIG_CMD_REGINFO * Register dump
820 CONFIG_CMD_RUN run command in env variable 819 CONFIG_CMD_RUN run command in env variable
821 CONFIG_CMD_SANDBOX * sb command to access sandbox features 820 CONFIG_CMD_SANDBOX * sb command to access sandbox features
822 CONFIG_CMD_SAVES * save S record dump 821 CONFIG_CMD_SAVES * save S record dump
823 CONFIG_CMD_SDRAM * print SDRAM configuration information 822 CONFIG_CMD_SDRAM * print SDRAM configuration information
824 (requires CONFIG_CMD_I2C) 823 (requires CONFIG_CMD_I2C)
825 CONFIG_CMD_SF * Read/write/erase SPI NOR flash 824 CONFIG_CMD_SF * Read/write/erase SPI NOR flash
826 CONFIG_CMD_SOFTSWITCH * Soft switch setting command for BF60x 825 CONFIG_CMD_SOFTSWITCH * Soft switch setting command for BF60x
827 CONFIG_CMD_SOURCE "source" command Support 826 CONFIG_CMD_SOURCE "source" command Support
828 CONFIG_CMD_SPI * SPI serial bus support 827 CONFIG_CMD_SPI * SPI serial bus support
829 CONFIG_CMD_TFTPSRV * TFTP transfer in server mode 828 CONFIG_CMD_TFTPSRV * TFTP transfer in server mode
830 CONFIG_CMD_TFTPPUT * TFTP put command (upload) 829 CONFIG_CMD_TFTPPUT * TFTP put command (upload)
831 CONFIG_CMD_TIME * run command and report execution time (ARM specific) 830 CONFIG_CMD_TIME * run command and report execution time (ARM specific)
832 CONFIG_CMD_TIMER * access to the system tick timer 831 CONFIG_CMD_TIMER * access to the system tick timer
833 CONFIG_CMD_USB * USB support 832 CONFIG_CMD_USB * USB support
834 CONFIG_CMD_CDP * Cisco Discover Protocol support 833 CONFIG_CMD_CDP * Cisco Discover Protocol support
835 CONFIG_CMD_XIMG Load part of Multi Image 834 CONFIG_CMD_XIMG Load part of Multi Image
836 CONFIG_CMD_UUID * Generate random UUID or GUID string 835 CONFIG_CMD_UUID * Generate random UUID or GUID string
837 836
838 EXAMPLE: If you want all functions except of network 837 EXAMPLE: If you want all functions except of network
839 support you can write: 838 support you can write:
840 839
841 #include "config_cmd_all.h" 840 #include "config_cmd_all.h"
842 #undef CONFIG_CMD_NET 841 #undef CONFIG_CMD_NET
843 842
844 Other Commands: 843 Other Commands:
845 fdt (flattened device tree) command: CONFIG_OF_LIBFDT 844 fdt (flattened device tree) command: CONFIG_OF_LIBFDT
846 845
847 Note: Don't enable the "icache" and "dcache" commands 846 Note: Don't enable the "icache" and "dcache" commands
848 (configuration option CONFIG_CMD_CACHE) unless you know 847 (configuration option CONFIG_CMD_CACHE) unless you know
849 what you (and your U-Boot users) are doing. Data 848 what you (and your U-Boot users) are doing. Data
850 cache cannot be enabled on systems like the 849 cache cannot be enabled on systems like the
851 8xx (where accesses to the IMMR region must be 850 8xx (where accesses to the IMMR region must be
852 uncached), and it cannot be disabled on all other 851 uncached), and it cannot be disabled on all other
853 systems where we (mis-) use the data cache to hold an 852 systems where we (mis-) use the data cache to hold an
854 initial stack and some data. 853 initial stack and some data.
855 854
856 855
857 XXX - this list needs to get updated! 856 XXX - this list needs to get updated!
858 857
859 - Removal of commands 858 - Removal of commands
860 If no commands are needed to boot, you can disable 859 If no commands are needed to boot, you can disable
861 CONFIG_CMDLINE to remove them. In this case, the command line 860 CONFIG_CMDLINE to remove them. In this case, the command line
862 will not be available, and when U-Boot wants to execute the 861 will not be available, and when U-Boot wants to execute the
863 boot command (on start-up) it will call board_run_command() 862 boot command (on start-up) it will call board_run_command()
864 instead. This can reduce image size significantly for very 863 instead. This can reduce image size significantly for very
865 simple boot procedures. 864 simple boot procedures.
866 865
867 - Regular expression support: 866 - Regular expression support:
868 CONFIG_REGEX 867 CONFIG_REGEX
869 If this variable is defined, U-Boot is linked against 868 If this variable is defined, U-Boot is linked against
870 the SLRE (Super Light Regular Expression) library, 869 the SLRE (Super Light Regular Expression) library,
871 which adds regex support to some commands, as for 870 which adds regex support to some commands, as for
872 example "env grep" and "setexpr". 871 example "env grep" and "setexpr".
873 872
874 - Device tree: 873 - Device tree:
875 CONFIG_OF_CONTROL 874 CONFIG_OF_CONTROL
876 If this variable is defined, U-Boot will use a device tree 875 If this variable is defined, U-Boot will use a device tree
877 to configure its devices, instead of relying on statically 876 to configure its devices, instead of relying on statically
878 compiled #defines in the board file. This option is 877 compiled #defines in the board file. This option is
879 experimental and only available on a few boards. The device 878 experimental and only available on a few boards. The device
880 tree is available in the global data as gd->fdt_blob. 879 tree is available in the global data as gd->fdt_blob.
881 880
882 U-Boot needs to get its device tree from somewhere. This can 881 U-Boot needs to get its device tree from somewhere. This can
883 be done using one of the three options below: 882 be done using one of the three options below:
884 883
885 CONFIG_OF_EMBED 884 CONFIG_OF_EMBED
886 If this variable is defined, U-Boot will embed a device tree 885 If this variable is defined, U-Boot will embed a device tree
887 binary in its image. This device tree file should be in the 886 binary in its image. This device tree file should be in the
888 board directory and called <soc>-<board>.dts. The binary file 887 board directory and called <soc>-<board>.dts. The binary file
889 is then picked up in board_init_f() and made available through 888 is then picked up in board_init_f() and made available through
890 the global data structure as gd->blob. 889 the global data structure as gd->blob.
891 890
892 CONFIG_OF_SEPARATE 891 CONFIG_OF_SEPARATE
893 If this variable is defined, U-Boot will build a device tree 892 If this variable is defined, U-Boot will build a device tree
894 binary. It will be called u-boot.dtb. Architecture-specific 893 binary. It will be called u-boot.dtb. Architecture-specific
895 code will locate it at run-time. Generally this works by: 894 code will locate it at run-time. Generally this works by:
896 895
897 cat u-boot.bin u-boot.dtb >image.bin 896 cat u-boot.bin u-boot.dtb >image.bin
898 897
899 and in fact, U-Boot does this for you, creating a file called 898 and in fact, U-Boot does this for you, creating a file called
900 u-boot-dtb.bin which is useful in the common case. You can 899 u-boot-dtb.bin which is useful in the common case. You can
901 still use the individual files if you need something more 900 still use the individual files if you need something more
902 exotic. 901 exotic.
903 902
904 CONFIG_OF_BOARD 903 CONFIG_OF_BOARD
905 If this variable is defined, U-Boot will use the device tree 904 If this variable is defined, U-Boot will use the device tree
906 provided by the board at runtime instead of embedding one with 905 provided by the board at runtime instead of embedding one with
907 the image. Only boards defining board_fdt_blob_setup() support 906 the image. Only boards defining board_fdt_blob_setup() support
908 this option (see include/fdtdec.h file). 907 this option (see include/fdtdec.h file).
909 908
910 - Watchdog: 909 - Watchdog:
911 CONFIG_WATCHDOG 910 CONFIG_WATCHDOG
912 If this variable is defined, it enables watchdog 911 If this variable is defined, it enables watchdog
913 support for the SoC. There must be support in the SoC 912 support for the SoC. There must be support in the SoC
914 specific code for a watchdog. For the 8xx 913 specific code for a watchdog. For the 8xx
915 CPUs, the SIU Watchdog feature is enabled in the SYPCR 914 CPUs, the SIU Watchdog feature is enabled in the SYPCR
916 register. When supported for a specific SoC is 915 register. When supported for a specific SoC is
917 available, then no further board specific code should 916 available, then no further board specific code should
918 be needed to use it. 917 be needed to use it.
919 918
920 CONFIG_HW_WATCHDOG 919 CONFIG_HW_WATCHDOG
921 When using a watchdog circuitry external to the used 920 When using a watchdog circuitry external to the used
922 SoC, then define this variable and provide board 921 SoC, then define this variable and provide board
923 specific code for the "hw_watchdog_reset" function. 922 specific code for the "hw_watchdog_reset" function.
924 923
925 CONFIG_AT91_HW_WDT_TIMEOUT 924 CONFIG_AT91_HW_WDT_TIMEOUT
926 specify the timeout in seconds. default 2 seconds. 925 specify the timeout in seconds. default 2 seconds.
927 926
928 - U-Boot Version: 927 - U-Boot Version:
929 CONFIG_VERSION_VARIABLE 928 CONFIG_VERSION_VARIABLE
930 If this variable is defined, an environment variable 929 If this variable is defined, an environment variable
931 named "ver" is created by U-Boot showing the U-Boot 930 named "ver" is created by U-Boot showing the U-Boot
932 version as printed by the "version" command. 931 version as printed by the "version" command.
933 Any change to this variable will be reverted at the 932 Any change to this variable will be reverted at the
934 next reset. 933 next reset.
935 934
936 - Real-Time Clock: 935 - Real-Time Clock:
937 936
938 When CONFIG_CMD_DATE is selected, the type of the RTC 937 When CONFIG_CMD_DATE is selected, the type of the RTC
939 has to be selected, too. Define exactly one of the 938 has to be selected, too. Define exactly one of the
940 following options: 939 following options:
941 940
942 CONFIG_RTC_PCF8563 - use Philips PCF8563 RTC 941 CONFIG_RTC_PCF8563 - use Philips PCF8563 RTC
943 CONFIG_RTC_MC13XXX - use MC13783 or MC13892 RTC 942 CONFIG_RTC_MC13XXX - use MC13783 or MC13892 RTC
944 CONFIG_RTC_MC146818 - use MC146818 RTC 943 CONFIG_RTC_MC146818 - use MC146818 RTC
945 CONFIG_RTC_DS1307 - use Maxim, Inc. DS1307 RTC 944 CONFIG_RTC_DS1307 - use Maxim, Inc. DS1307 RTC
946 CONFIG_RTC_DS1337 - use Maxim, Inc. DS1337 RTC 945 CONFIG_RTC_DS1337 - use Maxim, Inc. DS1337 RTC
947 CONFIG_RTC_DS1338 - use Maxim, Inc. DS1338 RTC 946 CONFIG_RTC_DS1338 - use Maxim, Inc. DS1338 RTC
948 CONFIG_RTC_DS1339 - use Maxim, Inc. DS1339 RTC 947 CONFIG_RTC_DS1339 - use Maxim, Inc. DS1339 RTC
949 CONFIG_RTC_DS164x - use Dallas DS164x RTC 948 CONFIG_RTC_DS164x - use Dallas DS164x RTC
950 CONFIG_RTC_ISL1208 - use Intersil ISL1208 RTC 949 CONFIG_RTC_ISL1208 - use Intersil ISL1208 RTC
951 CONFIG_RTC_MAX6900 - use Maxim, Inc. MAX6900 RTC 950 CONFIG_RTC_MAX6900 - use Maxim, Inc. MAX6900 RTC
952 CONFIG_RTC_DS1337_NOOSC - Turn off the OSC output for DS1337 951 CONFIG_RTC_DS1337_NOOSC - Turn off the OSC output for DS1337
953 CONFIG_SYS_RV3029_TCR - enable trickle charger on 952 CONFIG_SYS_RV3029_TCR - enable trickle charger on
954 RV3029 RTC. 953 RV3029 RTC.
955 954
956 Note that if the RTC uses I2C, then the I2C interface 955 Note that if the RTC uses I2C, then the I2C interface
957 must also be configured. See I2C Support, below. 956 must also be configured. See I2C Support, below.
958 957
959 - GPIO Support: 958 - GPIO Support:
960 CONFIG_PCA953X - use NXP's PCA953X series I2C GPIO 959 CONFIG_PCA953X - use NXP's PCA953X series I2C GPIO
961 960
962 The CONFIG_SYS_I2C_PCA953X_WIDTH option specifies a list of 961 The CONFIG_SYS_I2C_PCA953X_WIDTH option specifies a list of
963 chip-ngpio pairs that tell the PCA953X driver the number of 962 chip-ngpio pairs that tell the PCA953X driver the number of
964 pins supported by a particular chip. 963 pins supported by a particular chip.
965 964
966 Note that if the GPIO device uses I2C, then the I2C interface 965 Note that if the GPIO device uses I2C, then the I2C interface
967 must also be configured. See I2C Support, below. 966 must also be configured. See I2C Support, below.
968 967
969 - I/O tracing: 968 - I/O tracing:
970 When CONFIG_IO_TRACE is selected, U-Boot intercepts all I/O 969 When CONFIG_IO_TRACE is selected, U-Boot intercepts all I/O
971 accesses and can checksum them or write a list of them out 970 accesses and can checksum them or write a list of them out
972 to memory. See the 'iotrace' command for details. This is 971 to memory. See the 'iotrace' command for details. This is
973 useful for testing device drivers since it can confirm that 972 useful for testing device drivers since it can confirm that
974 the driver behaves the same way before and after a code 973 the driver behaves the same way before and after a code
975 change. Currently this is supported on sandbox and arm. To 974 change. Currently this is supported on sandbox and arm. To
976 add support for your architecture, add '#include <iotrace.h>' 975 add support for your architecture, add '#include <iotrace.h>'
977 to the bottom of arch/<arch>/include/asm/io.h and test. 976 to the bottom of arch/<arch>/include/asm/io.h and test.
978 977
979 Example output from the 'iotrace stats' command is below. 978 Example output from the 'iotrace stats' command is below.
980 Note that if the trace buffer is exhausted, the checksum will 979 Note that if the trace buffer is exhausted, the checksum will
981 still continue to operate. 980 still continue to operate.
982 981
983 iotrace is enabled 982 iotrace is enabled
984 Start: 10000000 (buffer start address) 983 Start: 10000000 (buffer start address)
985 Size: 00010000 (buffer size) 984 Size: 00010000 (buffer size)
986 Offset: 00000120 (current buffer offset) 985 Offset: 00000120 (current buffer offset)
987 Output: 10000120 (start + offset) 986 Output: 10000120 (start + offset)
988 Count: 00000018 (number of trace records) 987 Count: 00000018 (number of trace records)
989 CRC32: 9526fb66 (CRC32 of all trace records) 988 CRC32: 9526fb66 (CRC32 of all trace records)
990 989
991 - Timestamp Support: 990 - Timestamp Support:
992 991
993 When CONFIG_TIMESTAMP is selected, the timestamp 992 When CONFIG_TIMESTAMP is selected, the timestamp
994 (date and time) of an image is printed by image 993 (date and time) of an image is printed by image
995 commands like bootm or iminfo. This option is 994 commands like bootm or iminfo. This option is
996 automatically enabled when you select CONFIG_CMD_DATE . 995 automatically enabled when you select CONFIG_CMD_DATE .
997 996
998 - Partition Labels (disklabels) Supported: 997 - Partition Labels (disklabels) Supported:
999 Zero or more of the following: 998 Zero or more of the following:
1000 CONFIG_MAC_PARTITION Apple's MacOS partition table. 999 CONFIG_MAC_PARTITION Apple's MacOS partition table.
1001 CONFIG_ISO_PARTITION ISO partition table, used on CDROM etc. 1000 CONFIG_ISO_PARTITION ISO partition table, used on CDROM etc.
1002 CONFIG_EFI_PARTITION GPT partition table, common when EFI is the 1001 CONFIG_EFI_PARTITION GPT partition table, common when EFI is the
1003 bootloader. Note 2TB partition limit; see 1002 bootloader. Note 2TB partition limit; see
1004 disk/part_efi.c 1003 disk/part_efi.c
1005 CONFIG_MTD_PARTITIONS Memory Technology Device partition table. 1004 CONFIG_MTD_PARTITIONS Memory Technology Device partition table.
1006 1005
1007 If IDE or SCSI support is enabled (CONFIG_IDE or 1006 If IDE or SCSI support is enabled (CONFIG_IDE or
1008 CONFIG_SCSI) you must configure support for at 1007 CONFIG_SCSI) you must configure support for at
1009 least one non-MTD partition type as well. 1008 least one non-MTD partition type as well.
1010 1009
1011 - IDE Reset method: 1010 - IDE Reset method:
1012 CONFIG_IDE_RESET_ROUTINE - this is defined in several 1011 CONFIG_IDE_RESET_ROUTINE - this is defined in several
1013 board configurations files but used nowhere! 1012 board configurations files but used nowhere!
1014 1013
1015 CONFIG_IDE_RESET - is this is defined, IDE Reset will 1014 CONFIG_IDE_RESET - is this is defined, IDE Reset will
1016 be performed by calling the function 1015 be performed by calling the function
1017 ide_set_reset(int reset) 1016 ide_set_reset(int reset)
1018 which has to be defined in a board specific file 1017 which has to be defined in a board specific file
1019 1018
1020 - ATAPI Support: 1019 - ATAPI Support:
1021 CONFIG_ATAPI 1020 CONFIG_ATAPI
1022 1021
1023 Set this to enable ATAPI support. 1022 Set this to enable ATAPI support.
1024 1023
1025 - LBA48 Support 1024 - LBA48 Support
1026 CONFIG_LBA48 1025 CONFIG_LBA48
1027 1026
1028 Set this to enable support for disks larger than 137GB 1027 Set this to enable support for disks larger than 137GB
1029 Also look at CONFIG_SYS_64BIT_LBA. 1028 Also look at CONFIG_SYS_64BIT_LBA.
1030 Whithout these , LBA48 support uses 32bit variables and will 'only' 1029 Whithout these , LBA48 support uses 32bit variables and will 'only'
1031 support disks up to 2.1TB. 1030 support disks up to 2.1TB.
1032 1031
1033 CONFIG_SYS_64BIT_LBA: 1032 CONFIG_SYS_64BIT_LBA:
1034 When enabled, makes the IDE subsystem use 64bit sector addresses. 1033 When enabled, makes the IDE subsystem use 64bit sector addresses.
1035 Default is 32bit. 1034 Default is 32bit.
1036 1035
1037 - SCSI Support: 1036 - SCSI Support:
1038 CONFIG_SYS_SCSI_MAX_LUN [8], CONFIG_SYS_SCSI_MAX_SCSI_ID [7] and 1037 CONFIG_SYS_SCSI_MAX_LUN [8], CONFIG_SYS_SCSI_MAX_SCSI_ID [7] and
1039 CONFIG_SYS_SCSI_MAX_DEVICE [CONFIG_SYS_SCSI_MAX_SCSI_ID * 1038 CONFIG_SYS_SCSI_MAX_DEVICE [CONFIG_SYS_SCSI_MAX_SCSI_ID *
1040 CONFIG_SYS_SCSI_MAX_LUN] can be adjusted to define the 1039 CONFIG_SYS_SCSI_MAX_LUN] can be adjusted to define the
1041 maximum numbers of LUNs, SCSI ID's and target 1040 maximum numbers of LUNs, SCSI ID's and target
1042 devices. 1041 devices.
1043 1042
1044 The environment variable 'scsidevs' is set to the number of 1043 The environment variable 'scsidevs' is set to the number of
1045 SCSI devices found during the last scan. 1044 SCSI devices found during the last scan.
1046 1045
1047 - NETWORK Support (PCI): 1046 - NETWORK Support (PCI):
1048 CONFIG_E1000 1047 CONFIG_E1000
1049 Support for Intel 8254x/8257x gigabit chips. 1048 Support for Intel 8254x/8257x gigabit chips.
1050 1049
1051 CONFIG_E1000_SPI 1050 CONFIG_E1000_SPI
1052 Utility code for direct access to the SPI bus on Intel 8257x. 1051 Utility code for direct access to the SPI bus on Intel 8257x.
1053 This does not do anything useful unless you set at least one 1052 This does not do anything useful unless you set at least one
1054 of CONFIG_CMD_E1000 or CONFIG_E1000_SPI_GENERIC. 1053 of CONFIG_CMD_E1000 or CONFIG_E1000_SPI_GENERIC.
1055 1054
1056 CONFIG_E1000_SPI_GENERIC 1055 CONFIG_E1000_SPI_GENERIC
1057 Allow generic access to the SPI bus on the Intel 8257x, for 1056 Allow generic access to the SPI bus on the Intel 8257x, for
1058 example with the "sspi" command. 1057 example with the "sspi" command.
1059 1058
1060 CONFIG_CMD_E1000 1059 CONFIG_CMD_E1000
1061 Management command for E1000 devices. When used on devices 1060 Management command for E1000 devices. When used on devices
1062 with SPI support you can reprogram the EEPROM from U-Boot. 1061 with SPI support you can reprogram the EEPROM from U-Boot.
1063 1062
1064 CONFIG_EEPRO100 1063 CONFIG_EEPRO100
1065 Support for Intel 82557/82559/82559ER chips. 1064 Support for Intel 82557/82559/82559ER chips.
1066 Optional CONFIG_EEPRO100_SROM_WRITE enables EEPROM 1065 Optional CONFIG_EEPRO100_SROM_WRITE enables EEPROM
1067 write routine for first time initialisation. 1066 write routine for first time initialisation.
1068 1067
1069 CONFIG_TULIP 1068 CONFIG_TULIP
1070 Support for Digital 2114x chips. 1069 Support for Digital 2114x chips.
1071 Optional CONFIG_TULIP_SELECT_MEDIA for board specific 1070 Optional CONFIG_TULIP_SELECT_MEDIA for board specific
1072 modem chip initialisation (KS8761/QS6611). 1071 modem chip initialisation (KS8761/QS6611).
1073 1072
1074 CONFIG_NATSEMI 1073 CONFIG_NATSEMI
1075 Support for National dp83815 chips. 1074 Support for National dp83815 chips.
1076 1075
1077 CONFIG_NS8382X 1076 CONFIG_NS8382X
1078 Support for National dp8382[01] gigabit chips. 1077 Support for National dp8382[01] gigabit chips.
1079 1078
1080 - NETWORK Support (other): 1079 - NETWORK Support (other):
1081 1080
1082 CONFIG_DRIVER_AT91EMAC 1081 CONFIG_DRIVER_AT91EMAC
1083 Support for AT91RM9200 EMAC. 1082 Support for AT91RM9200 EMAC.
1084 1083
1085 CONFIG_RMII 1084 CONFIG_RMII
1086 Define this to use reduced MII inteface 1085 Define this to use reduced MII inteface
1087 1086
1088 CONFIG_DRIVER_AT91EMAC_QUIET 1087 CONFIG_DRIVER_AT91EMAC_QUIET
1089 If this defined, the driver is quiet. 1088 If this defined, the driver is quiet.
1090 The driver doen't show link status messages. 1089 The driver doen't show link status messages.
1091 1090
1092 CONFIG_CALXEDA_XGMAC 1091 CONFIG_CALXEDA_XGMAC
1093 Support for the Calxeda XGMAC device 1092 Support for the Calxeda XGMAC device
1094 1093
1095 CONFIG_LAN91C96 1094 CONFIG_LAN91C96
1096 Support for SMSC's LAN91C96 chips. 1095 Support for SMSC's LAN91C96 chips.
1097 1096
1098 CONFIG_LAN91C96_USE_32_BIT 1097 CONFIG_LAN91C96_USE_32_BIT
1099 Define this to enable 32 bit addressing 1098 Define this to enable 32 bit addressing
1100 1099
1101 CONFIG_SMC91111 1100 CONFIG_SMC91111
1102 Support for SMSC's LAN91C111 chip 1101 Support for SMSC's LAN91C111 chip
1103 1102
1104 CONFIG_SMC91111_BASE 1103 CONFIG_SMC91111_BASE
1105 Define this to hold the physical address 1104 Define this to hold the physical address
1106 of the device (I/O space) 1105 of the device (I/O space)
1107 1106
1108 CONFIG_SMC_USE_32_BIT 1107 CONFIG_SMC_USE_32_BIT
1109 Define this if data bus is 32 bits 1108 Define this if data bus is 32 bits
1110 1109
1111 CONFIG_SMC_USE_IOFUNCS 1110 CONFIG_SMC_USE_IOFUNCS
1112 Define this to use i/o functions instead of macros 1111 Define this to use i/o functions instead of macros
1113 (some hardware wont work with macros) 1112 (some hardware wont work with macros)
1114 1113
1115 CONFIG_DRIVER_TI_EMAC 1114 CONFIG_DRIVER_TI_EMAC
1116 Support for davinci emac 1115 Support for davinci emac
1117 1116
1118 CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT 1117 CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT
1119 Define this if you have more then 3 PHYs. 1118 Define this if you have more then 3 PHYs.
1120 1119
1121 CONFIG_FTGMAC100 1120 CONFIG_FTGMAC100
1122 Support for Faraday's FTGMAC100 Gigabit SoC Ethernet 1121 Support for Faraday's FTGMAC100 Gigabit SoC Ethernet
1123 1122
1124 CONFIG_FTGMAC100_EGIGA 1123 CONFIG_FTGMAC100_EGIGA
1125 Define this to use GE link update with gigabit PHY. 1124 Define this to use GE link update with gigabit PHY.
1126 Define this if FTGMAC100 is connected to gigabit PHY. 1125 Define this if FTGMAC100 is connected to gigabit PHY.
1127 If your system has 10/100 PHY only, it might not occur 1126 If your system has 10/100 PHY only, it might not occur
1128 wrong behavior. Because PHY usually return timeout or 1127 wrong behavior. Because PHY usually return timeout or
1129 useless data when polling gigabit status and gigabit 1128 useless data when polling gigabit status and gigabit
1130 control registers. This behavior won't affect the 1129 control registers. This behavior won't affect the
1131 correctnessof 10/100 link speed update. 1130 correctnessof 10/100 link speed update.
1132 1131
1133 CONFIG_SMC911X 1132 CONFIG_SMC911X
1134 Support for SMSC's LAN911x and LAN921x chips 1133 Support for SMSC's LAN911x and LAN921x chips
1135 1134
1136 CONFIG_SMC911X_BASE 1135 CONFIG_SMC911X_BASE
1137 Define this to hold the physical address 1136 Define this to hold the physical address
1138 of the device (I/O space) 1137 of the device (I/O space)
1139 1138
1140 CONFIG_SMC911X_32_BIT 1139 CONFIG_SMC911X_32_BIT
1141 Define this if data bus is 32 bits 1140 Define this if data bus is 32 bits
1142 1141
1143 CONFIG_SMC911X_16_BIT 1142 CONFIG_SMC911X_16_BIT
1144 Define this if data bus is 16 bits. If your processor 1143 Define this if data bus is 16 bits. If your processor
1145 automatically converts one 32 bit word to two 16 bit 1144 automatically converts one 32 bit word to two 16 bit
1146 words you may also try CONFIG_SMC911X_32_BIT. 1145 words you may also try CONFIG_SMC911X_32_BIT.
1147 1146
1148 CONFIG_SH_ETHER 1147 CONFIG_SH_ETHER
1149 Support for Renesas on-chip Ethernet controller 1148 Support for Renesas on-chip Ethernet controller
1150 1149
1151 CONFIG_SH_ETHER_USE_PORT 1150 CONFIG_SH_ETHER_USE_PORT
1152 Define the number of ports to be used 1151 Define the number of ports to be used
1153 1152
1154 CONFIG_SH_ETHER_PHY_ADDR 1153 CONFIG_SH_ETHER_PHY_ADDR
1155 Define the ETH PHY's address 1154 Define the ETH PHY's address
1156 1155
1157 CONFIG_SH_ETHER_CACHE_WRITEBACK 1156 CONFIG_SH_ETHER_CACHE_WRITEBACK
1158 If this option is set, the driver enables cache flush. 1157 If this option is set, the driver enables cache flush.
1159 1158
1160 - PWM Support: 1159 - PWM Support:
1161 CONFIG_PWM_IMX 1160 CONFIG_PWM_IMX
1162 Support for PWM module on the imx6. 1161 Support for PWM module on the imx6.
1163 1162
1164 - TPM Support: 1163 - TPM Support:
1165 CONFIG_TPM 1164 CONFIG_TPM
1166 Support TPM devices. 1165 Support TPM devices.
1167 1166
1168 CONFIG_TPM_TIS_INFINEON 1167 CONFIG_TPM_TIS_INFINEON
1169 Support for Infineon i2c bus TPM devices. Only one device 1168 Support for Infineon i2c bus TPM devices. Only one device
1170 per system is supported at this time. 1169 per system is supported at this time.
1171 1170
1172 CONFIG_TPM_TIS_I2C_BURST_LIMITATION 1171 CONFIG_TPM_TIS_I2C_BURST_LIMITATION
1173 Define the burst count bytes upper limit 1172 Define the burst count bytes upper limit
1174 1173
1175 CONFIG_TPM_ST33ZP24 1174 CONFIG_TPM_ST33ZP24
1176 Support for STMicroelectronics TPM devices. Requires DM_TPM support. 1175 Support for STMicroelectronics TPM devices. Requires DM_TPM support.
1177 1176
1178 CONFIG_TPM_ST33ZP24_I2C 1177 CONFIG_TPM_ST33ZP24_I2C
1179 Support for STMicroelectronics ST33ZP24 I2C devices. 1178 Support for STMicroelectronics ST33ZP24 I2C devices.
1180 Requires TPM_ST33ZP24 and I2C. 1179 Requires TPM_ST33ZP24 and I2C.
1181 1180
1182 CONFIG_TPM_ST33ZP24_SPI 1181 CONFIG_TPM_ST33ZP24_SPI
1183 Support for STMicroelectronics ST33ZP24 SPI devices. 1182 Support for STMicroelectronics ST33ZP24 SPI devices.
1184 Requires TPM_ST33ZP24 and SPI. 1183 Requires TPM_ST33ZP24 and SPI.
1185 1184
1186 CONFIG_TPM_ATMEL_TWI 1185 CONFIG_TPM_ATMEL_TWI
1187 Support for Atmel TWI TPM device. Requires I2C support. 1186 Support for Atmel TWI TPM device. Requires I2C support.
1188 1187
1189 CONFIG_TPM_TIS_LPC 1188 CONFIG_TPM_TIS_LPC
1190 Support for generic parallel port TPM devices. Only one device 1189 Support for generic parallel port TPM devices. Only one device
1191 per system is supported at this time. 1190 per system is supported at this time.
1192 1191
1193 CONFIG_TPM_TIS_BASE_ADDRESS 1192 CONFIG_TPM_TIS_BASE_ADDRESS
1194 Base address where the generic TPM device is mapped 1193 Base address where the generic TPM device is mapped
1195 to. Contemporary x86 systems usually map it at 1194 to. Contemporary x86 systems usually map it at
1196 0xfed40000. 1195 0xfed40000.
1197 1196
1198 CONFIG_CMD_TPM 1197 CONFIG_CMD_TPM
1199 Add tpm monitor functions. 1198 Add tpm monitor functions.
1200 Requires CONFIG_TPM. If CONFIG_TPM_AUTH_SESSIONS is set, also 1199 Requires CONFIG_TPM. If CONFIG_TPM_AUTH_SESSIONS is set, also
1201 provides monitor access to authorized functions. 1200 provides monitor access to authorized functions.
1202 1201
1203 CONFIG_TPM 1202 CONFIG_TPM
1204 Define this to enable the TPM support library which provides 1203 Define this to enable the TPM support library which provides
1205 functional interfaces to some TPM commands. 1204 functional interfaces to some TPM commands.
1206 Requires support for a TPM device. 1205 Requires support for a TPM device.
1207 1206
1208 CONFIG_TPM_AUTH_SESSIONS 1207 CONFIG_TPM_AUTH_SESSIONS
1209 Define this to enable authorized functions in the TPM library. 1208 Define this to enable authorized functions in the TPM library.
1210 Requires CONFIG_TPM and CONFIG_SHA1. 1209 Requires CONFIG_TPM and CONFIG_SHA1.
1211 1210
1212 - USB Support: 1211 - USB Support:
1213 At the moment only the UHCI host controller is 1212 At the moment only the UHCI host controller is
1214 supported (PIP405, MIP405); define 1213 supported (PIP405, MIP405); define
1215 CONFIG_USB_UHCI to enable it. 1214 CONFIG_USB_UHCI to enable it.
1216 define CONFIG_USB_KEYBOARD to enable the USB Keyboard 1215 define CONFIG_USB_KEYBOARD to enable the USB Keyboard
1217 and define CONFIG_USB_STORAGE to enable the USB 1216 and define CONFIG_USB_STORAGE to enable the USB
1218 storage devices. 1217 storage devices.
1219 Note: 1218 Note:
1220 Supported are USB Keyboards and USB Floppy drives 1219 Supported are USB Keyboards and USB Floppy drives
1221 (TEAC FD-05PUB). 1220 (TEAC FD-05PUB).
1222 1221
1223 CONFIG_USB_EHCI_TXFIFO_THRESH enables setting of the 1222 CONFIG_USB_EHCI_TXFIFO_THRESH enables setting of the
1224 txfilltuning field in the EHCI controller on reset. 1223 txfilltuning field in the EHCI controller on reset.
1225 1224
1226 CONFIG_USB_DWC2_REG_ADDR the physical CPU address of the DWC2 1225 CONFIG_USB_DWC2_REG_ADDR the physical CPU address of the DWC2
1227 HW module registers. 1226 HW module registers.
1228 1227
1229 - USB Device: 1228 - USB Device:
1230 Define the below if you wish to use the USB console. 1229 Define the below if you wish to use the USB console.
1231 Once firmware is rebuilt from a serial console issue the 1230 Once firmware is rebuilt from a serial console issue the
1232 command "setenv stdin usbtty; setenv stdout usbtty" and 1231 command "setenv stdin usbtty; setenv stdout usbtty" and
1233 attach your USB cable. The Unix command "dmesg" should print 1232 attach your USB cable. The Unix command "dmesg" should print
1234 it has found a new device. The environment variable usbtty 1233 it has found a new device. The environment variable usbtty
1235 can be set to gserial or cdc_acm to enable your device to 1234 can be set to gserial or cdc_acm to enable your device to
1236 appear to a USB host as a Linux gserial device or a 1235 appear to a USB host as a Linux gserial device or a
1237 Common Device Class Abstract Control Model serial device. 1236 Common Device Class Abstract Control Model serial device.
1238 If you select usbtty = gserial you should be able to enumerate 1237 If you select usbtty = gserial you should be able to enumerate
1239 a Linux host by 1238 a Linux host by
1240 # modprobe usbserial vendor=0xVendorID product=0xProductID 1239 # modprobe usbserial vendor=0xVendorID product=0xProductID
1241 else if using cdc_acm, simply setting the environment 1240 else if using cdc_acm, simply setting the environment
1242 variable usbtty to be cdc_acm should suffice. The following 1241 variable usbtty to be cdc_acm should suffice. The following
1243 might be defined in YourBoardName.h 1242 might be defined in YourBoardName.h
1244 1243
1245 CONFIG_USB_DEVICE 1244 CONFIG_USB_DEVICE
1246 Define this to build a UDC device 1245 Define this to build a UDC device
1247 1246
1248 CONFIG_USB_TTY 1247 CONFIG_USB_TTY
1249 Define this to have a tty type of device available to 1248 Define this to have a tty type of device available to
1250 talk to the UDC device 1249 talk to the UDC device
1251 1250
1252 CONFIG_USBD_HS 1251 CONFIG_USBD_HS
1253 Define this to enable the high speed support for usb 1252 Define this to enable the high speed support for usb
1254 device and usbtty. If this feature is enabled, a routine 1253 device and usbtty. If this feature is enabled, a routine
1255 int is_usbd_high_speed(void) 1254 int is_usbd_high_speed(void)
1256 also needs to be defined by the driver to dynamically poll 1255 also needs to be defined by the driver to dynamically poll
1257 whether the enumeration has succeded at high speed or full 1256 whether the enumeration has succeded at high speed or full
1258 speed. 1257 speed.
1259 1258
1260 CONFIG_SYS_CONSOLE_IS_IN_ENV 1259 CONFIG_SYS_CONSOLE_IS_IN_ENV
1261 Define this if you want stdin, stdout &/or stderr to 1260 Define this if you want stdin, stdout &/or stderr to
1262 be set to usbtty. 1261 be set to usbtty.
1263 1262
1264 If you have a USB-IF assigned VendorID then you may wish to 1263 If you have a USB-IF assigned VendorID then you may wish to
1265 define your own vendor specific values either in BoardName.h 1264 define your own vendor specific values either in BoardName.h
1266 or directly in usbd_vendor_info.h. If you don't define 1265 or directly in usbd_vendor_info.h. If you don't define
1267 CONFIG_USBD_MANUFACTURER, CONFIG_USBD_PRODUCT_NAME, 1266 CONFIG_USBD_MANUFACTURER, CONFIG_USBD_PRODUCT_NAME,
1268 CONFIG_USBD_VENDORID and CONFIG_USBD_PRODUCTID, then U-Boot 1267 CONFIG_USBD_VENDORID and CONFIG_USBD_PRODUCTID, then U-Boot
1269 should pretend to be a Linux device to it's target host. 1268 should pretend to be a Linux device to it's target host.
1270 1269
1271 CONFIG_USBD_MANUFACTURER 1270 CONFIG_USBD_MANUFACTURER
1272 Define this string as the name of your company for 1271 Define this string as the name of your company for
1273 - CONFIG_USBD_MANUFACTURER "my company" 1272 - CONFIG_USBD_MANUFACTURER "my company"
1274 1273
1275 CONFIG_USBD_PRODUCT_NAME 1274 CONFIG_USBD_PRODUCT_NAME
1276 Define this string as the name of your product 1275 Define this string as the name of your product
1277 - CONFIG_USBD_PRODUCT_NAME "acme usb device" 1276 - CONFIG_USBD_PRODUCT_NAME "acme usb device"
1278 1277
1279 CONFIG_USBD_VENDORID 1278 CONFIG_USBD_VENDORID
1280 Define this as your assigned Vendor ID from the USB 1279 Define this as your assigned Vendor ID from the USB
1281 Implementors Forum. This *must* be a genuine Vendor ID 1280 Implementors Forum. This *must* be a genuine Vendor ID
1282 to avoid polluting the USB namespace. 1281 to avoid polluting the USB namespace.
1283 - CONFIG_USBD_VENDORID 0xFFFF 1282 - CONFIG_USBD_VENDORID 0xFFFF
1284 1283
1285 CONFIG_USBD_PRODUCTID 1284 CONFIG_USBD_PRODUCTID
1286 Define this as the unique Product ID 1285 Define this as the unique Product ID
1287 for your device 1286 for your device
1288 - CONFIG_USBD_PRODUCTID 0xFFFF 1287 - CONFIG_USBD_PRODUCTID 0xFFFF
1289 1288
1290 - ULPI Layer Support: 1289 - ULPI Layer Support:
1291 The ULPI (UTMI Low Pin (count) Interface) PHYs are supported via 1290 The ULPI (UTMI Low Pin (count) Interface) PHYs are supported via
1292 the generic ULPI layer. The generic layer accesses the ULPI PHY 1291 the generic ULPI layer. The generic layer accesses the ULPI PHY
1293 via the platform viewport, so you need both the genric layer and 1292 via the platform viewport, so you need both the genric layer and
1294 the viewport enabled. Currently only Chipidea/ARC based 1293 the viewport enabled. Currently only Chipidea/ARC based
1295 viewport is supported. 1294 viewport is supported.
1296 To enable the ULPI layer support, define CONFIG_USB_ULPI and 1295 To enable the ULPI layer support, define CONFIG_USB_ULPI and
1297 CONFIG_USB_ULPI_VIEWPORT in your board configuration file. 1296 CONFIG_USB_ULPI_VIEWPORT in your board configuration file.
1298 If your ULPI phy needs a different reference clock than the 1297 If your ULPI phy needs a different reference clock than the
1299 standard 24 MHz then you have to define CONFIG_ULPI_REF_CLK to 1298 standard 24 MHz then you have to define CONFIG_ULPI_REF_CLK to
1300 the appropriate value in Hz. 1299 the appropriate value in Hz.
1301 1300
1302 - MMC Support: 1301 - MMC Support:
1303 The MMC controller on the Intel PXA is supported. To 1302 The MMC controller on the Intel PXA is supported. To
1304 enable this define CONFIG_MMC. The MMC can be 1303 enable this define CONFIG_MMC. The MMC can be
1305 accessed from the boot prompt by mapping the device 1304 accessed from the boot prompt by mapping the device
1306 to physical memory similar to flash. Command line is 1305 to physical memory similar to flash. Command line is
1307 enabled with CONFIG_CMD_MMC. The MMC driver also works with 1306 enabled with CONFIG_CMD_MMC. The MMC driver also works with
1308 the FAT fs. This is enabled with CONFIG_CMD_FAT. 1307 the FAT fs. This is enabled with CONFIG_CMD_FAT.
1309 1308
1310 CONFIG_SH_MMCIF 1309 CONFIG_SH_MMCIF
1311 Support for Renesas on-chip MMCIF controller 1310 Support for Renesas on-chip MMCIF controller
1312 1311
1313 CONFIG_SH_MMCIF_ADDR 1312 CONFIG_SH_MMCIF_ADDR
1314 Define the base address of MMCIF registers 1313 Define the base address of MMCIF registers
1315 1314
1316 CONFIG_SH_MMCIF_CLK 1315 CONFIG_SH_MMCIF_CLK
1317 Define the clock frequency for MMCIF 1316 Define the clock frequency for MMCIF
1318 1317
1319 CONFIG_SUPPORT_EMMC_BOOT 1318 CONFIG_SUPPORT_EMMC_BOOT
1320 Enable some additional features of the eMMC boot partitions. 1319 Enable some additional features of the eMMC boot partitions.
1321 1320
1322 CONFIG_SUPPORT_EMMC_RPMB 1321 CONFIG_SUPPORT_EMMC_RPMB
1323 Enable the commands for reading, writing and programming the 1322 Enable the commands for reading, writing and programming the
1324 key for the Replay Protection Memory Block partition in eMMC. 1323 key for the Replay Protection Memory Block partition in eMMC.
1325 1324
1326 - USB Device Firmware Update (DFU) class support: 1325 - USB Device Firmware Update (DFU) class support:
1327 CONFIG_USB_FUNCTION_DFU 1326 CONFIG_USB_FUNCTION_DFU
1328 This enables the USB portion of the DFU USB class 1327 This enables the USB portion of the DFU USB class
1329 1328
1330 CONFIG_CMD_DFU 1329 CONFIG_CMD_DFU
1331 This enables the command "dfu" which is used to have 1330 This enables the command "dfu" which is used to have
1332 U-Boot create a DFU class device via USB. This command 1331 U-Boot create a DFU class device via USB. This command
1333 requires that the "dfu_alt_info" environment variable be 1332 requires that the "dfu_alt_info" environment variable be
1334 set and define the alt settings to expose to the host. 1333 set and define the alt settings to expose to the host.
1335 1334
1336 CONFIG_DFU_MMC 1335 CONFIG_DFU_MMC
1337 This enables support for exposing (e)MMC devices via DFU. 1336 This enables support for exposing (e)MMC devices via DFU.
1338 1337
1339 CONFIG_DFU_NAND 1338 CONFIG_DFU_NAND
1340 This enables support for exposing NAND devices via DFU. 1339 This enables support for exposing NAND devices via DFU.
1341 1340
1342 CONFIG_DFU_RAM 1341 CONFIG_DFU_RAM
1343 This enables support for exposing RAM via DFU. 1342 This enables support for exposing RAM via DFU.
1344 Note: DFU spec refer to non-volatile memory usage, but 1343 Note: DFU spec refer to non-volatile memory usage, but
1345 allow usages beyond the scope of spec - here RAM usage, 1344 allow usages beyond the scope of spec - here RAM usage,
1346 one that would help mostly the developer. 1345 one that would help mostly the developer.
1347 1346
1348 CONFIG_SYS_DFU_DATA_BUF_SIZE 1347 CONFIG_SYS_DFU_DATA_BUF_SIZE
1349 Dfu transfer uses a buffer before writing data to the 1348 Dfu transfer uses a buffer before writing data to the
1350 raw storage device. Make the size (in bytes) of this buffer 1349 raw storage device. Make the size (in bytes) of this buffer
1351 configurable. The size of this buffer is also configurable 1350 configurable. The size of this buffer is also configurable
1352 through the "dfu_bufsiz" environment variable. 1351 through the "dfu_bufsiz" environment variable.
1353 1352
1354 CONFIG_SYS_DFU_MAX_FILE_SIZE 1353 CONFIG_SYS_DFU_MAX_FILE_SIZE
1355 When updating files rather than the raw storage device, 1354 When updating files rather than the raw storage device,
1356 we use a static buffer to copy the file into and then write 1355 we use a static buffer to copy the file into and then write
1357 the buffer once we've been given the whole file. Define 1356 the buffer once we've been given the whole file. Define
1358 this to the maximum filesize (in bytes) for the buffer. 1357 this to the maximum filesize (in bytes) for the buffer.
1359 Default is 4 MiB if undefined. 1358 Default is 4 MiB if undefined.
1360 1359
1361 DFU_DEFAULT_POLL_TIMEOUT 1360 DFU_DEFAULT_POLL_TIMEOUT
1362 Poll timeout [ms], is the timeout a device can send to the 1361 Poll timeout [ms], is the timeout a device can send to the
1363 host. The host must wait for this timeout before sending 1362 host. The host must wait for this timeout before sending
1364 a subsequent DFU_GET_STATUS request to the device. 1363 a subsequent DFU_GET_STATUS request to the device.
1365 1364
1366 DFU_MANIFEST_POLL_TIMEOUT 1365 DFU_MANIFEST_POLL_TIMEOUT
1367 Poll timeout [ms], which the device sends to the host when 1366 Poll timeout [ms], which the device sends to the host when
1368 entering dfuMANIFEST state. Host waits this timeout, before 1367 entering dfuMANIFEST state. Host waits this timeout, before
1369 sending again an USB request to the device. 1368 sending again an USB request to the device.
1370 1369
1371 - USB Device Android Fastboot support: 1370 - USB Device Android Fastboot support:
1372 CONFIG_USB_FUNCTION_FASTBOOT 1371 CONFIG_USB_FUNCTION_FASTBOOT
1373 This enables the USB part of the fastboot gadget 1372 This enables the USB part of the fastboot gadget
1374 1373
1375 CONFIG_CMD_FASTBOOT 1374 CONFIG_CMD_FASTBOOT
1376 This enables the command "fastboot" which enables the Android 1375 This enables the command "fastboot" which enables the Android
1377 fastboot mode for the platform's USB device. Fastboot is a USB 1376 fastboot mode for the platform's USB device. Fastboot is a USB
1378 protocol for downloading images, flashing and device control 1377 protocol for downloading images, flashing and device control
1379 used on Android devices. 1378 used on Android devices.
1380 See doc/README.android-fastboot for more information. 1379 See doc/README.android-fastboot for more information.
1381 1380
1382 CONFIG_ANDROID_BOOT_IMAGE 1381 CONFIG_ANDROID_BOOT_IMAGE
1383 This enables support for booting images which use the Android 1382 This enables support for booting images which use the Android
1384 image format header. 1383 image format header.
1385 1384
1386 CONFIG_FASTBOOT_BUF_ADDR 1385 CONFIG_FASTBOOT_BUF_ADDR
1387 The fastboot protocol requires a large memory buffer for 1386 The fastboot protocol requires a large memory buffer for
1388 downloads. Define this to the starting RAM address to use for 1387 downloads. Define this to the starting RAM address to use for
1389 downloaded images. 1388 downloaded images.
1390 1389
1391 CONFIG_FASTBOOT_BUF_SIZE 1390 CONFIG_FASTBOOT_BUF_SIZE
1392 The fastboot protocol requires a large memory buffer for 1391 The fastboot protocol requires a large memory buffer for
1393 downloads. This buffer should be as large as possible for a 1392 downloads. This buffer should be as large as possible for a
1394 platform. Define this to the size available RAM for fastboot. 1393 platform. Define this to the size available RAM for fastboot.
1395 1394
1396 CONFIG_FASTBOOT_FLASH 1395 CONFIG_FASTBOOT_FLASH
1397 The fastboot protocol includes a "flash" command for writing 1396 The fastboot protocol includes a "flash" command for writing
1398 the downloaded image to a non-volatile storage device. Define 1397 the downloaded image to a non-volatile storage device. Define
1399 this to enable the "fastboot flash" command. 1398 this to enable the "fastboot flash" command.
1400 1399
1401 CONFIG_FASTBOOT_FLASH_MMC_DEV 1400 CONFIG_FASTBOOT_FLASH_MMC_DEV
1402 The fastboot "flash" command requires additional information 1401 The fastboot "flash" command requires additional information
1403 regarding the non-volatile storage device. Define this to 1402 regarding the non-volatile storage device. Define this to
1404 the eMMC device that fastboot should use to store the image. 1403 the eMMC device that fastboot should use to store the image.
1405 1404
1406 CONFIG_FASTBOOT_GPT_NAME 1405 CONFIG_FASTBOOT_GPT_NAME
1407 The fastboot "flash" command supports writing the downloaded 1406 The fastboot "flash" command supports writing the downloaded
1408 image to the Protective MBR and the Primary GUID Partition 1407 image to the Protective MBR and the Primary GUID Partition
1409 Table. (Additionally, this downloaded image is post-processed 1408 Table. (Additionally, this downloaded image is post-processed
1410 to generate and write the Backup GUID Partition Table.) 1409 to generate and write the Backup GUID Partition Table.)
1411 This occurs when the specified "partition name" on the 1410 This occurs when the specified "partition name" on the
1412 "fastboot flash" command line matches this value. 1411 "fastboot flash" command line matches this value.
1413 The default is "gpt" if undefined. 1412 The default is "gpt" if undefined.
1414 1413
1415 CONFIG_FASTBOOT_MBR_NAME 1414 CONFIG_FASTBOOT_MBR_NAME
1416 The fastboot "flash" command supports writing the downloaded 1415 The fastboot "flash" command supports writing the downloaded
1417 image to DOS MBR. 1416 image to DOS MBR.
1418 This occurs when the "partition name" specified on the 1417 This occurs when the "partition name" specified on the
1419 "fastboot flash" command line matches this value. 1418 "fastboot flash" command line matches this value.
1420 If not defined the default value "mbr" is used. 1419 If not defined the default value "mbr" is used.
1421 1420
1422 - Journaling Flash filesystem support: 1421 - Journaling Flash filesystem support:
1423 CONFIG_JFFS2_NAND 1422 CONFIG_JFFS2_NAND
1424 Define these for a default partition on a NAND device 1423 Define these for a default partition on a NAND device
1425 1424
1426 CONFIG_SYS_JFFS2_FIRST_SECTOR, 1425 CONFIG_SYS_JFFS2_FIRST_SECTOR,
1427 CONFIG_SYS_JFFS2_FIRST_BANK, CONFIG_SYS_JFFS2_NUM_BANKS 1426 CONFIG_SYS_JFFS2_FIRST_BANK, CONFIG_SYS_JFFS2_NUM_BANKS
1428 Define these for a default partition on a NOR device 1427 Define these for a default partition on a NOR device
1429 1428
1430 - Keyboard Support: 1429 - Keyboard Support:
1431 See Kconfig help for available keyboard drivers. 1430 See Kconfig help for available keyboard drivers.
1432 1431
1433 CONFIG_KEYBOARD 1432 CONFIG_KEYBOARD
1434 1433
1435 Define this to enable a custom keyboard support. 1434 Define this to enable a custom keyboard support.
1436 This simply calls drv_keyboard_init() which must be 1435 This simply calls drv_keyboard_init() which must be
1437 defined in your board-specific files. This option is deprecated 1436 defined in your board-specific files. This option is deprecated
1438 and is only used by novena. For new boards, use driver model 1437 and is only used by novena. For new boards, use driver model
1439 instead. 1438 instead.
1440 1439
1441 - Video support: 1440 - Video support:
1442 CONFIG_FSL_DIU_FB 1441 CONFIG_FSL_DIU_FB
1443 Enable the Freescale DIU video driver. Reference boards for 1442 Enable the Freescale DIU video driver. Reference boards for
1444 SOCs that have a DIU should define this macro to enable DIU 1443 SOCs that have a DIU should define this macro to enable DIU
1445 support, and should also define these other macros: 1444 support, and should also define these other macros:
1446 1445
1447 CONFIG_SYS_DIU_ADDR 1446 CONFIG_SYS_DIU_ADDR
1448 CONFIG_VIDEO 1447 CONFIG_VIDEO
1449 CONFIG_CFB_CONSOLE 1448 CONFIG_CFB_CONSOLE
1450 CONFIG_VIDEO_SW_CURSOR 1449 CONFIG_VIDEO_SW_CURSOR
1451 CONFIG_VGA_AS_SINGLE_DEVICE 1450 CONFIG_VGA_AS_SINGLE_DEVICE
1452 CONFIG_VIDEO_LOGO 1451 CONFIG_VIDEO_LOGO
1453 CONFIG_VIDEO_BMP_LOGO 1452 CONFIG_VIDEO_BMP_LOGO
1454 1453
1455 The DIU driver will look for the 'video-mode' environment 1454 The DIU driver will look for the 'video-mode' environment
1456 variable, and if defined, enable the DIU as a console during 1455 variable, and if defined, enable the DIU as a console during
1457 boot. See the documentation file doc/README.video for a 1456 boot. See the documentation file doc/README.video for a
1458 description of this variable. 1457 description of this variable.
1459 1458
1460 - LCD Support: CONFIG_LCD 1459 - LCD Support: CONFIG_LCD
1461 1460
1462 Define this to enable LCD support (for output to LCD 1461 Define this to enable LCD support (for output to LCD
1463 display); also select one of the supported displays 1462 display); also select one of the supported displays
1464 by defining one of these: 1463 by defining one of these:
1465 1464
1466 CONFIG_ATMEL_LCD: 1465 CONFIG_ATMEL_LCD:
1467 1466
1468 HITACHI TX09D70VM1CCA, 3.5", 240x320. 1467 HITACHI TX09D70VM1CCA, 3.5", 240x320.
1469 1468
1470 CONFIG_NEC_NL6448AC33: 1469 CONFIG_NEC_NL6448AC33:
1471 1470
1472 NEC NL6448AC33-18. Active, color, single scan. 1471 NEC NL6448AC33-18. Active, color, single scan.
1473 1472
1474 CONFIG_NEC_NL6448BC20 1473 CONFIG_NEC_NL6448BC20
1475 1474
1476 NEC NL6448BC20-08. 6.5", 640x480. 1475 NEC NL6448BC20-08. 6.5", 640x480.
1477 Active, color, single scan. 1476 Active, color, single scan.
1478 1477
1479 CONFIG_NEC_NL6448BC33_54 1478 CONFIG_NEC_NL6448BC33_54
1480 1479
1481 NEC NL6448BC33-54. 10.4", 640x480. 1480 NEC NL6448BC33-54. 10.4", 640x480.
1482 Active, color, single scan. 1481 Active, color, single scan.
1483 1482
1484 CONFIG_SHARP_16x9 1483 CONFIG_SHARP_16x9
1485 1484
1486 Sharp 320x240. Active, color, single scan. 1485 Sharp 320x240. Active, color, single scan.
1487 It isn't 16x9, and I am not sure what it is. 1486 It isn't 16x9, and I am not sure what it is.
1488 1487
1489 CONFIG_SHARP_LQ64D341 1488 CONFIG_SHARP_LQ64D341
1490 1489
1491 Sharp LQ64D341 display, 640x480. 1490 Sharp LQ64D341 display, 640x480.
1492 Active, color, single scan. 1491 Active, color, single scan.
1493 1492
1494 CONFIG_HLD1045 1493 CONFIG_HLD1045
1495 1494
1496 HLD1045 display, 640x480. 1495 HLD1045 display, 640x480.
1497 Active, color, single scan. 1496 Active, color, single scan.
1498 1497
1499 CONFIG_OPTREX_BW 1498 CONFIG_OPTREX_BW
1500 1499
1501 Optrex CBL50840-2 NF-FW 99 22 M5 1500 Optrex CBL50840-2 NF-FW 99 22 M5
1502 or 1501 or
1503 Hitachi LMG6912RPFC-00T 1502 Hitachi LMG6912RPFC-00T
1504 or 1503 or
1505 Hitachi SP14Q002 1504 Hitachi SP14Q002
1506 1505
1507 320x240. Black & white. 1506 320x240. Black & white.
1508 1507
1509 CONFIG_LCD_ALIGNMENT 1508 CONFIG_LCD_ALIGNMENT
1510 1509
1511 Normally the LCD is page-aligned (typically 4KB). If this is 1510 Normally the LCD is page-aligned (typically 4KB). If this is
1512 defined then the LCD will be aligned to this value instead. 1511 defined then the LCD will be aligned to this value instead.
1513 For ARM it is sometimes useful to use MMU_SECTION_SIZE 1512 For ARM it is sometimes useful to use MMU_SECTION_SIZE
1514 here, since it is cheaper to change data cache settings on 1513 here, since it is cheaper to change data cache settings on
1515 a per-section basis. 1514 a per-section basis.
1516 1515
1517 1516
1518 CONFIG_LCD_ROTATION 1517 CONFIG_LCD_ROTATION
1519 1518
1520 Sometimes, for example if the display is mounted in portrait 1519 Sometimes, for example if the display is mounted in portrait
1521 mode or even if it's mounted landscape but rotated by 180degree, 1520 mode or even if it's mounted landscape but rotated by 180degree,
1522 we need to rotate our content of the display relative to the 1521 we need to rotate our content of the display relative to the
1523 framebuffer, so that user can read the messages which are 1522 framebuffer, so that user can read the messages which are
1524 printed out. 1523 printed out.
1525 Once CONFIG_LCD_ROTATION is defined, the lcd_console will be 1524 Once CONFIG_LCD_ROTATION is defined, the lcd_console will be
1526 initialized with a given rotation from "vl_rot" out of 1525 initialized with a given rotation from "vl_rot" out of
1527 "vidinfo_t" which is provided by the board specific code. 1526 "vidinfo_t" which is provided by the board specific code.
1528 The value for vl_rot is coded as following (matching to 1527 The value for vl_rot is coded as following (matching to
1529 fbcon=rotate:<n> linux-kernel commandline): 1528 fbcon=rotate:<n> linux-kernel commandline):
1530 0 = no rotation respectively 0 degree 1529 0 = no rotation respectively 0 degree
1531 1 = 90 degree rotation 1530 1 = 90 degree rotation
1532 2 = 180 degree rotation 1531 2 = 180 degree rotation
1533 3 = 270 degree rotation 1532 3 = 270 degree rotation
1534 1533
1535 If CONFIG_LCD_ROTATION is not defined, the console will be 1534 If CONFIG_LCD_ROTATION is not defined, the console will be
1536 initialized with 0degree rotation. 1535 initialized with 0degree rotation.
1537 1536
1538 CONFIG_LCD_BMP_RLE8 1537 CONFIG_LCD_BMP_RLE8
1539 1538
1540 Support drawing of RLE8-compressed bitmaps on the LCD. 1539 Support drawing of RLE8-compressed bitmaps on the LCD.
1541 1540
1542 CONFIG_I2C_EDID 1541 CONFIG_I2C_EDID
1543 1542
1544 Enables an 'i2c edid' command which can read EDID 1543 Enables an 'i2c edid' command which can read EDID
1545 information over I2C from an attached LCD display. 1544 information over I2C from an attached LCD display.
1546 1545
1547 - Splash Screen Support: CONFIG_SPLASH_SCREEN 1546 - Splash Screen Support: CONFIG_SPLASH_SCREEN
1548 1547
1549 If this option is set, the environment is checked for 1548 If this option is set, the environment is checked for
1550 a variable "splashimage". If found, the usual display 1549 a variable "splashimage". If found, the usual display
1551 of logo, copyright and system information on the LCD 1550 of logo, copyright and system information on the LCD
1552 is suppressed and the BMP image at the address 1551 is suppressed and the BMP image at the address
1553 specified in "splashimage" is loaded instead. The 1552 specified in "splashimage" is loaded instead. The
1554 console is redirected to the "nulldev", too. This 1553 console is redirected to the "nulldev", too. This
1555 allows for a "silent" boot where a splash screen is 1554 allows for a "silent" boot where a splash screen is
1556 loaded very quickly after power-on. 1555 loaded very quickly after power-on.
1557 1556
1558 CONFIG_SPLASHIMAGE_GUARD 1557 CONFIG_SPLASHIMAGE_GUARD
1559 1558
1560 If this option is set, then U-Boot will prevent the environment 1559 If this option is set, then U-Boot will prevent the environment
1561 variable "splashimage" from being set to a problematic address 1560 variable "splashimage" from being set to a problematic address
1562 (see doc/README.displaying-bmps). 1561 (see doc/README.displaying-bmps).
1563 This option is useful for targets where, due to alignment 1562 This option is useful for targets where, due to alignment
1564 restrictions, an improperly aligned BMP image will cause a data 1563 restrictions, an improperly aligned BMP image will cause a data
1565 abort. If you think you will not have problems with unaligned 1564 abort. If you think you will not have problems with unaligned
1566 accesses (for example because your toolchain prevents them) 1565 accesses (for example because your toolchain prevents them)
1567 there is no need to set this option. 1566 there is no need to set this option.
1568 1567
1569 CONFIG_SPLASH_SCREEN_ALIGN 1568 CONFIG_SPLASH_SCREEN_ALIGN
1570 1569
1571 If this option is set the splash image can be freely positioned 1570 If this option is set the splash image can be freely positioned
1572 on the screen. Environment variable "splashpos" specifies the 1571 on the screen. Environment variable "splashpos" specifies the
1573 position as "x,y". If a positive number is given it is used as 1572 position as "x,y". If a positive number is given it is used as
1574 number of pixel from left/top. If a negative number is given it 1573 number of pixel from left/top. If a negative number is given it
1575 is used as number of pixel from right/bottom. You can also 1574 is used as number of pixel from right/bottom. You can also
1576 specify 'm' for centering the image. 1575 specify 'm' for centering the image.
1577 1576
1578 Example: 1577 Example:
1579 setenv splashpos m,m 1578 setenv splashpos m,m
1580 => image at center of screen 1579 => image at center of screen
1581 1580
1582 setenv splashpos 30,20 1581 setenv splashpos 30,20
1583 => image at x = 30 and y = 20 1582 => image at x = 30 and y = 20
1584 1583
1585 setenv splashpos -10,m 1584 setenv splashpos -10,m
1586 => vertically centered image 1585 => vertically centered image
1587 at x = dspWidth - bmpWidth - 9 1586 at x = dspWidth - bmpWidth - 9
1588 1587
1589 - Gzip compressed BMP image support: CONFIG_VIDEO_BMP_GZIP 1588 - Gzip compressed BMP image support: CONFIG_VIDEO_BMP_GZIP
1590 1589
1591 If this option is set, additionally to standard BMP 1590 If this option is set, additionally to standard BMP
1592 images, gzipped BMP images can be displayed via the 1591 images, gzipped BMP images can be displayed via the
1593 splashscreen support or the bmp command. 1592 splashscreen support or the bmp command.
1594 1593
1595 - Run length encoded BMP image (RLE8) support: CONFIG_VIDEO_BMP_RLE8 1594 - Run length encoded BMP image (RLE8) support: CONFIG_VIDEO_BMP_RLE8
1596 1595
1597 If this option is set, 8-bit RLE compressed BMP images 1596 If this option is set, 8-bit RLE compressed BMP images
1598 can be displayed via the splashscreen support or the 1597 can be displayed via the splashscreen support or the
1599 bmp command. 1598 bmp command.
1600 1599
1601 - Compression support: 1600 - Compression support:
1602 CONFIG_GZIP 1601 CONFIG_GZIP
1603 1602
1604 Enabled by default to support gzip compressed images. 1603 Enabled by default to support gzip compressed images.
1605 1604
1606 CONFIG_BZIP2 1605 CONFIG_BZIP2
1607 1606
1608 If this option is set, support for bzip2 compressed 1607 If this option is set, support for bzip2 compressed
1609 images is included. If not, only uncompressed and gzip 1608 images is included. If not, only uncompressed and gzip
1610 compressed images are supported. 1609 compressed images are supported.
1611 1610
1612 NOTE: the bzip2 algorithm requires a lot of RAM, so 1611 NOTE: the bzip2 algorithm requires a lot of RAM, so
1613 the malloc area (as defined by CONFIG_SYS_MALLOC_LEN) should 1612 the malloc area (as defined by CONFIG_SYS_MALLOC_LEN) should
1614 be at least 4MB. 1613 be at least 4MB.
1615 1614
1616 - MII/PHY support: 1615 - MII/PHY support:
1617 CONFIG_PHY_ADDR 1616 CONFIG_PHY_ADDR
1618 1617
1619 The address of PHY on MII bus. 1618 The address of PHY on MII bus.
1620 1619
1621 CONFIG_PHY_CLOCK_FREQ (ppc4xx) 1620 CONFIG_PHY_CLOCK_FREQ (ppc4xx)
1622 1621
1623 The clock frequency of the MII bus 1622 The clock frequency of the MII bus
1624 1623
1625 CONFIG_PHY_RESET_DELAY 1624 CONFIG_PHY_RESET_DELAY
1626 1625
1627 Some PHY like Intel LXT971A need extra delay after 1626 Some PHY like Intel LXT971A need extra delay after
1628 reset before any MII register access is possible. 1627 reset before any MII register access is possible.
1629 For such PHY, set this option to the usec delay 1628 For such PHY, set this option to the usec delay
1630 required. (minimum 300usec for LXT971A) 1629 required. (minimum 300usec for LXT971A)
1631 1630
1632 CONFIG_PHY_CMD_DELAY (ppc4xx) 1631 CONFIG_PHY_CMD_DELAY (ppc4xx)
1633 1632
1634 Some PHY like Intel LXT971A need extra delay after 1633 Some PHY like Intel LXT971A need extra delay after
1635 command issued before MII status register can be read 1634 command issued before MII status register can be read
1636 1635
1637 - IP address: 1636 - IP address:
1638 CONFIG_IPADDR 1637 CONFIG_IPADDR
1639 1638
1640 Define a default value for the IP address to use for 1639 Define a default value for the IP address to use for
1641 the default Ethernet interface, in case this is not 1640 the default Ethernet interface, in case this is not
1642 determined through e.g. bootp. 1641 determined through e.g. bootp.
1643 (Environment variable "ipaddr") 1642 (Environment variable "ipaddr")
1644 1643
1645 - Server IP address: 1644 - Server IP address:
1646 CONFIG_SERVERIP 1645 CONFIG_SERVERIP
1647 1646
1648 Defines a default value for the IP address of a TFTP 1647 Defines a default value for the IP address of a TFTP
1649 server to contact when using the "tftboot" command. 1648 server to contact when using the "tftboot" command.
1650 (Environment variable "serverip") 1649 (Environment variable "serverip")
1651 1650
1652 CONFIG_KEEP_SERVERADDR 1651 CONFIG_KEEP_SERVERADDR
1653 1652
1654 Keeps the server's MAC address, in the env 'serveraddr' 1653 Keeps the server's MAC address, in the env 'serveraddr'
1655 for passing to bootargs (like Linux's netconsole option) 1654 for passing to bootargs (like Linux's netconsole option)
1656 1655
1657 - Gateway IP address: 1656 - Gateway IP address:
1658 CONFIG_GATEWAYIP 1657 CONFIG_GATEWAYIP
1659 1658
1660 Defines a default value for the IP address of the 1659 Defines a default value for the IP address of the
1661 default router where packets to other networks are 1660 default router where packets to other networks are
1662 sent to. 1661 sent to.
1663 (Environment variable "gatewayip") 1662 (Environment variable "gatewayip")
1664 1663
1665 - Subnet mask: 1664 - Subnet mask:
1666 CONFIG_NETMASK 1665 CONFIG_NETMASK
1667 1666
1668 Defines a default value for the subnet mask (or 1667 Defines a default value for the subnet mask (or
1669 routing prefix) which is used to determine if an IP 1668 routing prefix) which is used to determine if an IP
1670 address belongs to the local subnet or needs to be 1669 address belongs to the local subnet or needs to be
1671 forwarded through a router. 1670 forwarded through a router.
1672 (Environment variable "netmask") 1671 (Environment variable "netmask")
1673 1672
1674 - Multicast TFTP Mode: 1673 - Multicast TFTP Mode:
1675 CONFIG_MCAST_TFTP 1674 CONFIG_MCAST_TFTP
1676 1675
1677 Defines whether you want to support multicast TFTP as per 1676 Defines whether you want to support multicast TFTP as per
1678 rfc-2090; for example to work with atftp. Lets lots of targets 1677 rfc-2090; for example to work with atftp. Lets lots of targets
1679 tftp down the same boot image concurrently. Note: the Ethernet 1678 tftp down the same boot image concurrently. Note: the Ethernet
1680 driver in use must provide a function: mcast() to join/leave a 1679 driver in use must provide a function: mcast() to join/leave a
1681 multicast group. 1680 multicast group.
1682 1681
1683 - BOOTP Recovery Mode: 1682 - BOOTP Recovery Mode:
1684 CONFIG_BOOTP_RANDOM_DELAY 1683 CONFIG_BOOTP_RANDOM_DELAY
1685 1684
1686 If you have many targets in a network that try to 1685 If you have many targets in a network that try to
1687 boot using BOOTP, you may want to avoid that all 1686 boot using BOOTP, you may want to avoid that all
1688 systems send out BOOTP requests at precisely the same 1687 systems send out BOOTP requests at precisely the same
1689 moment (which would happen for instance at recovery 1688 moment (which would happen for instance at recovery
1690 from a power failure, when all systems will try to 1689 from a power failure, when all systems will try to
1691 boot, thus flooding the BOOTP server. Defining 1690 boot, thus flooding the BOOTP server. Defining
1692 CONFIG_BOOTP_RANDOM_DELAY causes a random delay to be 1691 CONFIG_BOOTP_RANDOM_DELAY causes a random delay to be
1693 inserted before sending out BOOTP requests. The 1692 inserted before sending out BOOTP requests. The
1694 following delays are inserted then: 1693 following delays are inserted then:
1695 1694
1696 1st BOOTP request: delay 0 ... 1 sec 1695 1st BOOTP request: delay 0 ... 1 sec
1697 2nd BOOTP request: delay 0 ... 2 sec 1696 2nd BOOTP request: delay 0 ... 2 sec
1698 3rd BOOTP request: delay 0 ... 4 sec 1697 3rd BOOTP request: delay 0 ... 4 sec
1699 4th and following 1698 4th and following
1700 BOOTP requests: delay 0 ... 8 sec 1699 BOOTP requests: delay 0 ... 8 sec
1701 1700
1702 CONFIG_BOOTP_ID_CACHE_SIZE 1701 CONFIG_BOOTP_ID_CACHE_SIZE
1703 1702
1704 BOOTP packets are uniquely identified using a 32-bit ID. The 1703 BOOTP packets are uniquely identified using a 32-bit ID. The
1705 server will copy the ID from client requests to responses and 1704 server will copy the ID from client requests to responses and
1706 U-Boot will use this to determine if it is the destination of 1705 U-Boot will use this to determine if it is the destination of
1707 an incoming response. Some servers will check that addresses 1706 an incoming response. Some servers will check that addresses
1708 aren't in use before handing them out (usually using an ARP 1707 aren't in use before handing them out (usually using an ARP
1709 ping) and therefore take up to a few hundred milliseconds to 1708 ping) and therefore take up to a few hundred milliseconds to
1710 respond. Network congestion may also influence the time it 1709 respond. Network congestion may also influence the time it
1711 takes for a response to make it back to the client. If that 1710 takes for a response to make it back to the client. If that
1712 time is too long, U-Boot will retransmit requests. In order 1711 time is too long, U-Boot will retransmit requests. In order
1713 to allow earlier responses to still be accepted after these 1712 to allow earlier responses to still be accepted after these
1714 retransmissions, U-Boot's BOOTP client keeps a small cache of 1713 retransmissions, U-Boot's BOOTP client keeps a small cache of
1715 IDs. The CONFIG_BOOTP_ID_CACHE_SIZE controls the size of this 1714 IDs. The CONFIG_BOOTP_ID_CACHE_SIZE controls the size of this
1716 cache. The default is to keep IDs for up to four outstanding 1715 cache. The default is to keep IDs for up to four outstanding
1717 requests. Increasing this will allow U-Boot to accept offers 1716 requests. Increasing this will allow U-Boot to accept offers
1718 from a BOOTP client in networks with unusually high latency. 1717 from a BOOTP client in networks with unusually high latency.
1719 1718
1720 - DHCP Advanced Options: 1719 - DHCP Advanced Options:
1721 You can fine tune the DHCP functionality by defining 1720 You can fine tune the DHCP functionality by defining
1722 CONFIG_BOOTP_* symbols: 1721 CONFIG_BOOTP_* symbols:
1723 1722
1724 CONFIG_BOOTP_SUBNETMASK 1723 CONFIG_BOOTP_SUBNETMASK
1725 CONFIG_BOOTP_GATEWAY 1724 CONFIG_BOOTP_GATEWAY
1726 CONFIG_BOOTP_HOSTNAME 1725 CONFIG_BOOTP_HOSTNAME
1727 CONFIG_BOOTP_NISDOMAIN 1726 CONFIG_BOOTP_NISDOMAIN
1728 CONFIG_BOOTP_BOOTPATH 1727 CONFIG_BOOTP_BOOTPATH
1729 CONFIG_BOOTP_BOOTFILESIZE 1728 CONFIG_BOOTP_BOOTFILESIZE
1730 CONFIG_BOOTP_DNS 1729 CONFIG_BOOTP_DNS
1731 CONFIG_BOOTP_DNS2 1730 CONFIG_BOOTP_DNS2
1732 CONFIG_BOOTP_SEND_HOSTNAME 1731 CONFIG_BOOTP_SEND_HOSTNAME
1733 CONFIG_BOOTP_NTPSERVER 1732 CONFIG_BOOTP_NTPSERVER
1734 CONFIG_BOOTP_TIMEOFFSET 1733 CONFIG_BOOTP_TIMEOFFSET
1735 CONFIG_BOOTP_VENDOREX 1734 CONFIG_BOOTP_VENDOREX
1736 CONFIG_BOOTP_MAY_FAIL 1735 CONFIG_BOOTP_MAY_FAIL
1737 1736
1738 CONFIG_BOOTP_SERVERIP - TFTP server will be the serverip 1737 CONFIG_BOOTP_SERVERIP - TFTP server will be the serverip
1739 environment variable, not the BOOTP server. 1738 environment variable, not the BOOTP server.
1740 1739
1741 CONFIG_BOOTP_MAY_FAIL - If the DHCP server is not found 1740 CONFIG_BOOTP_MAY_FAIL - If the DHCP server is not found
1742 after the configured retry count, the call will fail 1741 after the configured retry count, the call will fail
1743 instead of starting over. This can be used to fail over 1742 instead of starting over. This can be used to fail over
1744 to Link-local IP address configuration if the DHCP server 1743 to Link-local IP address configuration if the DHCP server
1745 is not available. 1744 is not available.
1746 1745
1747 CONFIG_BOOTP_DNS2 - If a DHCP client requests the DNS 1746 CONFIG_BOOTP_DNS2 - If a DHCP client requests the DNS
1748 serverip from a DHCP server, it is possible that more 1747 serverip from a DHCP server, it is possible that more
1749 than one DNS serverip is offered to the client. 1748 than one DNS serverip is offered to the client.
1750 If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS 1749 If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1751 serverip will be stored in the additional environment 1750 serverip will be stored in the additional environment
1752 variable "dnsip2". The first DNS serverip is always 1751 variable "dnsip2". The first DNS serverip is always
1753 stored in the variable "dnsip", when CONFIG_BOOTP_DNS 1752 stored in the variable "dnsip", when CONFIG_BOOTP_DNS
1754 is defined. 1753 is defined.
1755 1754
1756 CONFIG_BOOTP_SEND_HOSTNAME - Some DHCP servers are capable 1755 CONFIG_BOOTP_SEND_HOSTNAME - Some DHCP servers are capable
1757 to do a dynamic update of a DNS server. To do this, they 1756 to do a dynamic update of a DNS server. To do this, they
1758 need the hostname of the DHCP requester. 1757 need the hostname of the DHCP requester.
1759 If CONFIG_BOOTP_SEND_HOSTNAME is defined, the content 1758 If CONFIG_BOOTP_SEND_HOSTNAME is defined, the content
1760 of the "hostname" environment variable is passed as 1759 of the "hostname" environment variable is passed as
1761 option 12 to the DHCP server. 1760 option 12 to the DHCP server.
1762 1761
1763 CONFIG_BOOTP_DHCP_REQUEST_DELAY 1762 CONFIG_BOOTP_DHCP_REQUEST_DELAY
1764 1763
1765 A 32bit value in microseconds for a delay between 1764 A 32bit value in microseconds for a delay between
1766 receiving a "DHCP Offer" and sending the "DHCP Request". 1765 receiving a "DHCP Offer" and sending the "DHCP Request".
1767 This fixes a problem with certain DHCP servers that don't 1766 This fixes a problem with certain DHCP servers that don't
1768 respond 100% of the time to a "DHCP request". E.g. On an 1767 respond 100% of the time to a "DHCP request". E.g. On an
1769 AT91RM9200 processor running at 180MHz, this delay needed 1768 AT91RM9200 processor running at 180MHz, this delay needed
1770 to be *at least* 15,000 usec before a Windows Server 2003 1769 to be *at least* 15,000 usec before a Windows Server 2003
1771 DHCP server would reply 100% of the time. I recommend at 1770 DHCP server would reply 100% of the time. I recommend at
1772 least 50,000 usec to be safe. The alternative is to hope 1771 least 50,000 usec to be safe. The alternative is to hope
1773 that one of the retries will be successful but note that 1772 that one of the retries will be successful but note that
1774 the DHCP timeout and retry process takes a longer than 1773 the DHCP timeout and retry process takes a longer than
1775 this delay. 1774 this delay.
1776 1775
1777 - Link-local IP address negotiation: 1776 - Link-local IP address negotiation:
1778 Negotiate with other link-local clients on the local network 1777 Negotiate with other link-local clients on the local network
1779 for an address that doesn't require explicit configuration. 1778 for an address that doesn't require explicit configuration.
1780 This is especially useful if a DHCP server cannot be guaranteed 1779 This is especially useful if a DHCP server cannot be guaranteed
1781 to exist in all environments that the device must operate. 1780 to exist in all environments that the device must operate.
1782 1781
1783 See doc/README.link-local for more information. 1782 See doc/README.link-local for more information.
1784 1783
1785 - CDP Options: 1784 - CDP Options:
1786 CONFIG_CDP_DEVICE_ID 1785 CONFIG_CDP_DEVICE_ID
1787 1786
1788 The device id used in CDP trigger frames. 1787 The device id used in CDP trigger frames.
1789 1788
1790 CONFIG_CDP_DEVICE_ID_PREFIX 1789 CONFIG_CDP_DEVICE_ID_PREFIX
1791 1790
1792 A two character string which is prefixed to the MAC address 1791 A two character string which is prefixed to the MAC address
1793 of the device. 1792 of the device.
1794 1793
1795 CONFIG_CDP_PORT_ID 1794 CONFIG_CDP_PORT_ID
1796 1795
1797 A printf format string which contains the ascii name of 1796 A printf format string which contains the ascii name of
1798 the port. Normally is set to "eth%d" which sets 1797 the port. Normally is set to "eth%d" which sets
1799 eth0 for the first Ethernet, eth1 for the second etc. 1798 eth0 for the first Ethernet, eth1 for the second etc.
1800 1799
1801 CONFIG_CDP_CAPABILITIES 1800 CONFIG_CDP_CAPABILITIES
1802 1801
1803 A 32bit integer which indicates the device capabilities; 1802 A 32bit integer which indicates the device capabilities;
1804 0x00000010 for a normal host which does not forwards. 1803 0x00000010 for a normal host which does not forwards.
1805 1804
1806 CONFIG_CDP_VERSION 1805 CONFIG_CDP_VERSION
1807 1806
1808 An ascii string containing the version of the software. 1807 An ascii string containing the version of the software.
1809 1808
1810 CONFIG_CDP_PLATFORM 1809 CONFIG_CDP_PLATFORM
1811 1810
1812 An ascii string containing the name of the platform. 1811 An ascii string containing the name of the platform.
1813 1812
1814 CONFIG_CDP_TRIGGER 1813 CONFIG_CDP_TRIGGER
1815 1814
1816 A 32bit integer sent on the trigger. 1815 A 32bit integer sent on the trigger.
1817 1816
1818 CONFIG_CDP_POWER_CONSUMPTION 1817 CONFIG_CDP_POWER_CONSUMPTION
1819 1818
1820 A 16bit integer containing the power consumption of the 1819 A 16bit integer containing the power consumption of the
1821 device in .1 of milliwatts. 1820 device in .1 of milliwatts.
1822 1821
1823 CONFIG_CDP_APPLIANCE_VLAN_TYPE 1822 CONFIG_CDP_APPLIANCE_VLAN_TYPE
1824 1823
1825 A byte containing the id of the VLAN. 1824 A byte containing the id of the VLAN.
1826 1825
1827 - Status LED: CONFIG_LED_STATUS 1826 - Status LED: CONFIG_LED_STATUS
1828 1827
1829 Several configurations allow to display the current 1828 Several configurations allow to display the current
1830 status using a LED. For instance, the LED will blink 1829 status using a LED. For instance, the LED will blink
1831 fast while running U-Boot code, stop blinking as 1830 fast while running U-Boot code, stop blinking as
1832 soon as a reply to a BOOTP request was received, and 1831 soon as a reply to a BOOTP request was received, and
1833 start blinking slow once the Linux kernel is running 1832 start blinking slow once the Linux kernel is running
1834 (supported by a status LED driver in the Linux 1833 (supported by a status LED driver in the Linux
1835 kernel). Defining CONFIG_LED_STATUS enables this 1834 kernel). Defining CONFIG_LED_STATUS enables this
1836 feature in U-Boot. 1835 feature in U-Boot.
1837 1836
1838 Additional options: 1837 Additional options:
1839 1838
1840 CONFIG_LED_STATUS_GPIO 1839 CONFIG_LED_STATUS_GPIO
1841 The status LED can be connected to a GPIO pin. 1840 The status LED can be connected to a GPIO pin.
1842 In such cases, the gpio_led driver can be used as a 1841 In such cases, the gpio_led driver can be used as a
1843 status LED backend implementation. Define CONFIG_LED_STATUS_GPIO 1842 status LED backend implementation. Define CONFIG_LED_STATUS_GPIO
1844 to include the gpio_led driver in the U-Boot binary. 1843 to include the gpio_led driver in the U-Boot binary.
1845 1844
1846 CONFIG_GPIO_LED_INVERTED_TABLE 1845 CONFIG_GPIO_LED_INVERTED_TABLE
1847 Some GPIO connected LEDs may have inverted polarity in which 1846 Some GPIO connected LEDs may have inverted polarity in which
1848 case the GPIO high value corresponds to LED off state and 1847 case the GPIO high value corresponds to LED off state and
1849 GPIO low value corresponds to LED on state. 1848 GPIO low value corresponds to LED on state.
1850 In such cases CONFIG_GPIO_LED_INVERTED_TABLE may be defined 1849 In such cases CONFIG_GPIO_LED_INVERTED_TABLE may be defined
1851 with a list of GPIO LEDs that have inverted polarity. 1850 with a list of GPIO LEDs that have inverted polarity.
1852 1851
1853 - I2C Support: CONFIG_SYS_I2C 1852 - I2C Support: CONFIG_SYS_I2C
1854 1853
1855 This enable the NEW i2c subsystem, and will allow you to use 1854 This enable the NEW i2c subsystem, and will allow you to use
1856 i2c commands at the u-boot command line (as long as you set 1855 i2c commands at the u-boot command line (as long as you set
1857 CONFIG_CMD_I2C in CONFIG_COMMANDS) and communicate with i2c 1856 CONFIG_CMD_I2C in CONFIG_COMMANDS) and communicate with i2c
1858 based realtime clock chips or other i2c devices. See 1857 based realtime clock chips or other i2c devices. See
1859 common/cmd_i2c.c for a description of the command line 1858 common/cmd_i2c.c for a description of the command line
1860 interface. 1859 interface.
1861 1860
1862 ported i2c driver to the new framework: 1861 ported i2c driver to the new framework:
1863 - drivers/i2c/soft_i2c.c: 1862 - drivers/i2c/soft_i2c.c:
1864 - activate first bus with CONFIG_SYS_I2C_SOFT define 1863 - activate first bus with CONFIG_SYS_I2C_SOFT define
1865 CONFIG_SYS_I2C_SOFT_SPEED and CONFIG_SYS_I2C_SOFT_SLAVE 1864 CONFIG_SYS_I2C_SOFT_SPEED and CONFIG_SYS_I2C_SOFT_SLAVE
1866 for defining speed and slave address 1865 for defining speed and slave address
1867 - activate second bus with I2C_SOFT_DECLARATIONS2 define 1866 - activate second bus with I2C_SOFT_DECLARATIONS2 define
1868 CONFIG_SYS_I2C_SOFT_SPEED_2 and CONFIG_SYS_I2C_SOFT_SLAVE_2 1867 CONFIG_SYS_I2C_SOFT_SPEED_2 and CONFIG_SYS_I2C_SOFT_SLAVE_2
1869 for defining speed and slave address 1868 for defining speed and slave address
1870 - activate third bus with I2C_SOFT_DECLARATIONS3 define 1869 - activate third bus with I2C_SOFT_DECLARATIONS3 define
1871 CONFIG_SYS_I2C_SOFT_SPEED_3 and CONFIG_SYS_I2C_SOFT_SLAVE_3 1870 CONFIG_SYS_I2C_SOFT_SPEED_3 and CONFIG_SYS_I2C_SOFT_SLAVE_3
1872 for defining speed and slave address 1871 for defining speed and slave address
1873 - activate fourth bus with I2C_SOFT_DECLARATIONS4 define 1872 - activate fourth bus with I2C_SOFT_DECLARATIONS4 define
1874 CONFIG_SYS_I2C_SOFT_SPEED_4 and CONFIG_SYS_I2C_SOFT_SLAVE_4 1873 CONFIG_SYS_I2C_SOFT_SPEED_4 and CONFIG_SYS_I2C_SOFT_SLAVE_4
1875 for defining speed and slave address 1874 for defining speed and slave address
1876 1875
1877 - drivers/i2c/fsl_i2c.c: 1876 - drivers/i2c/fsl_i2c.c:
1878 - activate i2c driver with CONFIG_SYS_I2C_FSL 1877 - activate i2c driver with CONFIG_SYS_I2C_FSL
1879 define CONFIG_SYS_FSL_I2C_OFFSET for setting the register 1878 define CONFIG_SYS_FSL_I2C_OFFSET for setting the register
1880 offset CONFIG_SYS_FSL_I2C_SPEED for the i2c speed and 1879 offset CONFIG_SYS_FSL_I2C_SPEED for the i2c speed and
1881 CONFIG_SYS_FSL_I2C_SLAVE for the slave addr of the first 1880 CONFIG_SYS_FSL_I2C_SLAVE for the slave addr of the first
1882 bus. 1881 bus.
1883 - If your board supports a second fsl i2c bus, define 1882 - If your board supports a second fsl i2c bus, define
1884 CONFIG_SYS_FSL_I2C2_OFFSET for the register offset 1883 CONFIG_SYS_FSL_I2C2_OFFSET for the register offset
1885 CONFIG_SYS_FSL_I2C2_SPEED for the speed and 1884 CONFIG_SYS_FSL_I2C2_SPEED for the speed and
1886 CONFIG_SYS_FSL_I2C2_SLAVE for the slave address of the 1885 CONFIG_SYS_FSL_I2C2_SLAVE for the slave address of the
1887 second bus. 1886 second bus.
1888 1887
1889 - drivers/i2c/tegra_i2c.c: 1888 - drivers/i2c/tegra_i2c.c:
1890 - activate this driver with CONFIG_SYS_I2C_TEGRA 1889 - activate this driver with CONFIG_SYS_I2C_TEGRA
1891 - This driver adds 4 i2c buses with a fix speed from 1890 - This driver adds 4 i2c buses with a fix speed from
1892 100000 and the slave addr 0! 1891 100000 and the slave addr 0!
1893 1892
1894 - drivers/i2c/ppc4xx_i2c.c 1893 - drivers/i2c/ppc4xx_i2c.c
1895 - activate this driver with CONFIG_SYS_I2C_PPC4XX 1894 - activate this driver with CONFIG_SYS_I2C_PPC4XX
1896 - CONFIG_SYS_I2C_PPC4XX_CH0 activate hardware channel 0 1895 - CONFIG_SYS_I2C_PPC4XX_CH0 activate hardware channel 0
1897 - CONFIG_SYS_I2C_PPC4XX_CH1 activate hardware channel 1 1896 - CONFIG_SYS_I2C_PPC4XX_CH1 activate hardware channel 1
1898 1897
1899 - drivers/i2c/i2c_mxc.c 1898 - drivers/i2c/i2c_mxc.c
1900 - activate this driver with CONFIG_SYS_I2C_MXC 1899 - activate this driver with CONFIG_SYS_I2C_MXC
1901 - enable bus 1 with CONFIG_SYS_I2C_MXC_I2C1 1900 - enable bus 1 with CONFIG_SYS_I2C_MXC_I2C1
1902 - enable bus 2 with CONFIG_SYS_I2C_MXC_I2C2 1901 - enable bus 2 with CONFIG_SYS_I2C_MXC_I2C2
1903 - enable bus 3 with CONFIG_SYS_I2C_MXC_I2C3 1902 - enable bus 3 with CONFIG_SYS_I2C_MXC_I2C3
1904 - enable bus 4 with CONFIG_SYS_I2C_MXC_I2C4 1903 - enable bus 4 with CONFIG_SYS_I2C_MXC_I2C4
1905 - define speed for bus 1 with CONFIG_SYS_MXC_I2C1_SPEED 1904 - define speed for bus 1 with CONFIG_SYS_MXC_I2C1_SPEED
1906 - define slave for bus 1 with CONFIG_SYS_MXC_I2C1_SLAVE 1905 - define slave for bus 1 with CONFIG_SYS_MXC_I2C1_SLAVE
1907 - define speed for bus 2 with CONFIG_SYS_MXC_I2C2_SPEED 1906 - define speed for bus 2 with CONFIG_SYS_MXC_I2C2_SPEED
1908 - define slave for bus 2 with CONFIG_SYS_MXC_I2C2_SLAVE 1907 - define slave for bus 2 with CONFIG_SYS_MXC_I2C2_SLAVE
1909 - define speed for bus 3 with CONFIG_SYS_MXC_I2C3_SPEED 1908 - define speed for bus 3 with CONFIG_SYS_MXC_I2C3_SPEED
1910 - define slave for bus 3 with CONFIG_SYS_MXC_I2C3_SLAVE 1909 - define slave for bus 3 with CONFIG_SYS_MXC_I2C3_SLAVE
1911 - define speed for bus 4 with CONFIG_SYS_MXC_I2C4_SPEED 1910 - define speed for bus 4 with CONFIG_SYS_MXC_I2C4_SPEED
1912 - define slave for bus 4 with CONFIG_SYS_MXC_I2C4_SLAVE 1911 - define slave for bus 4 with CONFIG_SYS_MXC_I2C4_SLAVE
1913 If those defines are not set, default value is 100000 1912 If those defines are not set, default value is 100000
1914 for speed, and 0 for slave. 1913 for speed, and 0 for slave.
1915 1914
1916 - drivers/i2c/rcar_i2c.c: 1915 - drivers/i2c/rcar_i2c.c:
1917 - activate this driver with CONFIG_SYS_I2C_RCAR 1916 - activate this driver with CONFIG_SYS_I2C_RCAR
1918 - This driver adds 4 i2c buses 1917 - This driver adds 4 i2c buses
1919 1918
1920 - CONFIG_SYS_RCAR_I2C0_BASE for setting the register channel 0 1919 - CONFIG_SYS_RCAR_I2C0_BASE for setting the register channel 0
1921 - CONFIG_SYS_RCAR_I2C0_SPEED for for the speed channel 0 1920 - CONFIG_SYS_RCAR_I2C0_SPEED for for the speed channel 0
1922 - CONFIG_SYS_RCAR_I2C1_BASE for setting the register channel 1 1921 - CONFIG_SYS_RCAR_I2C1_BASE for setting the register channel 1
1923 - CONFIG_SYS_RCAR_I2C1_SPEED for for the speed channel 1 1922 - CONFIG_SYS_RCAR_I2C1_SPEED for for the speed channel 1
1924 - CONFIG_SYS_RCAR_I2C2_BASE for setting the register channel 2 1923 - CONFIG_SYS_RCAR_I2C2_BASE for setting the register channel 2
1925 - CONFIG_SYS_RCAR_I2C2_SPEED for for the speed channel 2 1924 - CONFIG_SYS_RCAR_I2C2_SPEED for for the speed channel 2
1926 - CONFIG_SYS_RCAR_I2C3_BASE for setting the register channel 3 1925 - CONFIG_SYS_RCAR_I2C3_BASE for setting the register channel 3
1927 - CONFIG_SYS_RCAR_I2C3_SPEED for for the speed channel 3 1926 - CONFIG_SYS_RCAR_I2C3_SPEED for for the speed channel 3
1928 - CONFIF_SYS_RCAR_I2C_NUM_CONTROLLERS for number of i2c buses 1927 - CONFIF_SYS_RCAR_I2C_NUM_CONTROLLERS for number of i2c buses
1929 1928
1930 - drivers/i2c/sh_i2c.c: 1929 - drivers/i2c/sh_i2c.c:
1931 - activate this driver with CONFIG_SYS_I2C_SH 1930 - activate this driver with CONFIG_SYS_I2C_SH
1932 - This driver adds from 2 to 5 i2c buses 1931 - This driver adds from 2 to 5 i2c buses
1933 1932
1934 - CONFIG_SYS_I2C_SH_BASE0 for setting the register channel 0 1933 - CONFIG_SYS_I2C_SH_BASE0 for setting the register channel 0
1935 - CONFIG_SYS_I2C_SH_SPEED0 for for the speed channel 0 1934 - CONFIG_SYS_I2C_SH_SPEED0 for for the speed channel 0
1936 - CONFIG_SYS_I2C_SH_BASE1 for setting the register channel 1 1935 - CONFIG_SYS_I2C_SH_BASE1 for setting the register channel 1
1937 - CONFIG_SYS_I2C_SH_SPEED1 for for the speed channel 1 1936 - CONFIG_SYS_I2C_SH_SPEED1 for for the speed channel 1
1938 - CONFIG_SYS_I2C_SH_BASE2 for setting the register channel 2 1937 - CONFIG_SYS_I2C_SH_BASE2 for setting the register channel 2
1939 - CONFIG_SYS_I2C_SH_SPEED2 for for the speed channel 2 1938 - CONFIG_SYS_I2C_SH_SPEED2 for for the speed channel 2
1940 - CONFIG_SYS_I2C_SH_BASE3 for setting the register channel 3 1939 - CONFIG_SYS_I2C_SH_BASE3 for setting the register channel 3
1941 - CONFIG_SYS_I2C_SH_SPEED3 for for the speed channel 3 1940 - CONFIG_SYS_I2C_SH_SPEED3 for for the speed channel 3
1942 - CONFIG_SYS_I2C_SH_BASE4 for setting the register channel 4 1941 - CONFIG_SYS_I2C_SH_BASE4 for setting the register channel 4
1943 - CONFIG_SYS_I2C_SH_SPEED4 for for the speed channel 4 1942 - CONFIG_SYS_I2C_SH_SPEED4 for for the speed channel 4
1944 - CONFIG_SYS_I2C_SH_NUM_CONTROLLERS for number of i2c buses 1943 - CONFIG_SYS_I2C_SH_NUM_CONTROLLERS for number of i2c buses
1945 1944
1946 - drivers/i2c/omap24xx_i2c.c 1945 - drivers/i2c/omap24xx_i2c.c
1947 - activate this driver with CONFIG_SYS_I2C_OMAP24XX 1946 - activate this driver with CONFIG_SYS_I2C_OMAP24XX
1948 - CONFIG_SYS_OMAP24_I2C_SPEED speed channel 0 1947 - CONFIG_SYS_OMAP24_I2C_SPEED speed channel 0
1949 - CONFIG_SYS_OMAP24_I2C_SLAVE slave addr channel 0 1948 - CONFIG_SYS_OMAP24_I2C_SLAVE slave addr channel 0
1950 - CONFIG_SYS_OMAP24_I2C_SPEED1 speed channel 1 1949 - CONFIG_SYS_OMAP24_I2C_SPEED1 speed channel 1
1951 - CONFIG_SYS_OMAP24_I2C_SLAVE1 slave addr channel 1 1950 - CONFIG_SYS_OMAP24_I2C_SLAVE1 slave addr channel 1
1952 - CONFIG_SYS_OMAP24_I2C_SPEED2 speed channel 2 1951 - CONFIG_SYS_OMAP24_I2C_SPEED2 speed channel 2
1953 - CONFIG_SYS_OMAP24_I2C_SLAVE2 slave addr channel 2 1952 - CONFIG_SYS_OMAP24_I2C_SLAVE2 slave addr channel 2
1954 - CONFIG_SYS_OMAP24_I2C_SPEED3 speed channel 3 1953 - CONFIG_SYS_OMAP24_I2C_SPEED3 speed channel 3
1955 - CONFIG_SYS_OMAP24_I2C_SLAVE3 slave addr channel 3 1954 - CONFIG_SYS_OMAP24_I2C_SLAVE3 slave addr channel 3
1956 - CONFIG_SYS_OMAP24_I2C_SPEED4 speed channel 4 1955 - CONFIG_SYS_OMAP24_I2C_SPEED4 speed channel 4
1957 - CONFIG_SYS_OMAP24_I2C_SLAVE4 slave addr channel 4 1956 - CONFIG_SYS_OMAP24_I2C_SLAVE4 slave addr channel 4
1958 1957
1959 - drivers/i2c/zynq_i2c.c 1958 - drivers/i2c/zynq_i2c.c
1960 - activate this driver with CONFIG_SYS_I2C_ZYNQ 1959 - activate this driver with CONFIG_SYS_I2C_ZYNQ
1961 - set CONFIG_SYS_I2C_ZYNQ_SPEED for speed setting 1960 - set CONFIG_SYS_I2C_ZYNQ_SPEED for speed setting
1962 - set CONFIG_SYS_I2C_ZYNQ_SLAVE for slave addr 1961 - set CONFIG_SYS_I2C_ZYNQ_SLAVE for slave addr
1963 1962
1964 - drivers/i2c/s3c24x0_i2c.c: 1963 - drivers/i2c/s3c24x0_i2c.c:
1965 - activate this driver with CONFIG_SYS_I2C_S3C24X0 1964 - activate this driver with CONFIG_SYS_I2C_S3C24X0
1966 - This driver adds i2c buses (11 for Exynos5250, Exynos5420 1965 - This driver adds i2c buses (11 for Exynos5250, Exynos5420
1967 9 i2c buses for Exynos4 and 1 for S3C24X0 SoCs from Samsung) 1966 9 i2c buses for Exynos4 and 1 for S3C24X0 SoCs from Samsung)
1968 with a fix speed from 100000 and the slave addr 0! 1967 with a fix speed from 100000 and the slave addr 0!
1969 1968
1970 - drivers/i2c/ihs_i2c.c 1969 - drivers/i2c/ihs_i2c.c
1971 - activate this driver with CONFIG_SYS_I2C_IHS 1970 - activate this driver with CONFIG_SYS_I2C_IHS
1972 - CONFIG_SYS_I2C_IHS_CH0 activate hardware channel 0 1971 - CONFIG_SYS_I2C_IHS_CH0 activate hardware channel 0
1973 - CONFIG_SYS_I2C_IHS_SPEED_0 speed channel 0 1972 - CONFIG_SYS_I2C_IHS_SPEED_0 speed channel 0
1974 - CONFIG_SYS_I2C_IHS_SLAVE_0 slave addr channel 0 1973 - CONFIG_SYS_I2C_IHS_SLAVE_0 slave addr channel 0
1975 - CONFIG_SYS_I2C_IHS_CH1 activate hardware channel 1 1974 - CONFIG_SYS_I2C_IHS_CH1 activate hardware channel 1
1976 - CONFIG_SYS_I2C_IHS_SPEED_1 speed channel 1 1975 - CONFIG_SYS_I2C_IHS_SPEED_1 speed channel 1
1977 - CONFIG_SYS_I2C_IHS_SLAVE_1 slave addr channel 1 1976 - CONFIG_SYS_I2C_IHS_SLAVE_1 slave addr channel 1
1978 - CONFIG_SYS_I2C_IHS_CH2 activate hardware channel 2 1977 - CONFIG_SYS_I2C_IHS_CH2 activate hardware channel 2
1979 - CONFIG_SYS_I2C_IHS_SPEED_2 speed channel 2 1978 - CONFIG_SYS_I2C_IHS_SPEED_2 speed channel 2
1980 - CONFIG_SYS_I2C_IHS_SLAVE_2 slave addr channel 2 1979 - CONFIG_SYS_I2C_IHS_SLAVE_2 slave addr channel 2
1981 - CONFIG_SYS_I2C_IHS_CH3 activate hardware channel 3 1980 - CONFIG_SYS_I2C_IHS_CH3 activate hardware channel 3
1982 - CONFIG_SYS_I2C_IHS_SPEED_3 speed channel 3 1981 - CONFIG_SYS_I2C_IHS_SPEED_3 speed channel 3
1983 - CONFIG_SYS_I2C_IHS_SLAVE_3 slave addr channel 3 1982 - CONFIG_SYS_I2C_IHS_SLAVE_3 slave addr channel 3
1984 - activate dual channel with CONFIG_SYS_I2C_IHS_DUAL 1983 - activate dual channel with CONFIG_SYS_I2C_IHS_DUAL
1985 - CONFIG_SYS_I2C_IHS_SPEED_0_1 speed channel 0_1 1984 - CONFIG_SYS_I2C_IHS_SPEED_0_1 speed channel 0_1
1986 - CONFIG_SYS_I2C_IHS_SLAVE_0_1 slave addr channel 0_1 1985 - CONFIG_SYS_I2C_IHS_SLAVE_0_1 slave addr channel 0_1
1987 - CONFIG_SYS_I2C_IHS_SPEED_1_1 speed channel 1_1 1986 - CONFIG_SYS_I2C_IHS_SPEED_1_1 speed channel 1_1
1988 - CONFIG_SYS_I2C_IHS_SLAVE_1_1 slave addr channel 1_1 1987 - CONFIG_SYS_I2C_IHS_SLAVE_1_1 slave addr channel 1_1
1989 - CONFIG_SYS_I2C_IHS_SPEED_2_1 speed channel 2_1 1988 - CONFIG_SYS_I2C_IHS_SPEED_2_1 speed channel 2_1
1990 - CONFIG_SYS_I2C_IHS_SLAVE_2_1 slave addr channel 2_1 1989 - CONFIG_SYS_I2C_IHS_SLAVE_2_1 slave addr channel 2_1
1991 - CONFIG_SYS_I2C_IHS_SPEED_3_1 speed channel 3_1 1990 - CONFIG_SYS_I2C_IHS_SPEED_3_1 speed channel 3_1
1992 - CONFIG_SYS_I2C_IHS_SLAVE_3_1 slave addr channel 3_1 1991 - CONFIG_SYS_I2C_IHS_SLAVE_3_1 slave addr channel 3_1
1993 1992
1994 additional defines: 1993 additional defines:
1995 1994
1996 CONFIG_SYS_NUM_I2C_BUSES 1995 CONFIG_SYS_NUM_I2C_BUSES
1997 Hold the number of i2c buses you want to use. 1996 Hold the number of i2c buses you want to use.
1998 1997
1999 CONFIG_SYS_I2C_DIRECT_BUS 1998 CONFIG_SYS_I2C_DIRECT_BUS
2000 define this, if you don't use i2c muxes on your hardware. 1999 define this, if you don't use i2c muxes on your hardware.
2001 if CONFIG_SYS_I2C_MAX_HOPS is not defined or == 0 you can 2000 if CONFIG_SYS_I2C_MAX_HOPS is not defined or == 0 you can
2002 omit this define. 2001 omit this define.
2003 2002
2004 CONFIG_SYS_I2C_MAX_HOPS 2003 CONFIG_SYS_I2C_MAX_HOPS
2005 define how many muxes are maximal consecutively connected 2004 define how many muxes are maximal consecutively connected
2006 on one i2c bus. If you not use i2c muxes, omit this 2005 on one i2c bus. If you not use i2c muxes, omit this
2007 define. 2006 define.
2008 2007
2009 CONFIG_SYS_I2C_BUSES 2008 CONFIG_SYS_I2C_BUSES
2010 hold a list of buses you want to use, only used if 2009 hold a list of buses you want to use, only used if
2011 CONFIG_SYS_I2C_DIRECT_BUS is not defined, for example 2010 CONFIG_SYS_I2C_DIRECT_BUS is not defined, for example
2012 a board with CONFIG_SYS_I2C_MAX_HOPS = 1 and 2011 a board with CONFIG_SYS_I2C_MAX_HOPS = 1 and
2013 CONFIG_SYS_NUM_I2C_BUSES = 9: 2012 CONFIG_SYS_NUM_I2C_BUSES = 9:
2014 2013
2015 CONFIG_SYS_I2C_BUSES {{0, {I2C_NULL_HOP}}, \ 2014 CONFIG_SYS_I2C_BUSES {{0, {I2C_NULL_HOP}}, \
2016 {0, {{I2C_MUX_PCA9547, 0x70, 1}}}, \ 2015 {0, {{I2C_MUX_PCA9547, 0x70, 1}}}, \
2017 {0, {{I2C_MUX_PCA9547, 0x70, 2}}}, \ 2016 {0, {{I2C_MUX_PCA9547, 0x70, 2}}}, \
2018 {0, {{I2C_MUX_PCA9547, 0x70, 3}}}, \ 2017 {0, {{I2C_MUX_PCA9547, 0x70, 3}}}, \
2019 {0, {{I2C_MUX_PCA9547, 0x70, 4}}}, \ 2018 {0, {{I2C_MUX_PCA9547, 0x70, 4}}}, \
2020 {0, {{I2C_MUX_PCA9547, 0x70, 5}}}, \ 2019 {0, {{I2C_MUX_PCA9547, 0x70, 5}}}, \
2021 {1, {I2C_NULL_HOP}}, \ 2020 {1, {I2C_NULL_HOP}}, \
2022 {1, {{I2C_MUX_PCA9544, 0x72, 1}}}, \ 2021 {1, {{I2C_MUX_PCA9544, 0x72, 1}}}, \
2023 {1, {{I2C_MUX_PCA9544, 0x72, 2}}}, \ 2022 {1, {{I2C_MUX_PCA9544, 0x72, 2}}}, \
2024 } 2023 }
2025 2024
2026 which defines 2025 which defines
2027 bus 0 on adapter 0 without a mux 2026 bus 0 on adapter 0 without a mux
2028 bus 1 on adapter 0 with a PCA9547 on address 0x70 port 1 2027 bus 1 on adapter 0 with a PCA9547 on address 0x70 port 1
2029 bus 2 on adapter 0 with a PCA9547 on address 0x70 port 2 2028 bus 2 on adapter 0 with a PCA9547 on address 0x70 port 2
2030 bus 3 on adapter 0 with a PCA9547 on address 0x70 port 3 2029 bus 3 on adapter 0 with a PCA9547 on address 0x70 port 3
2031 bus 4 on adapter 0 with a PCA9547 on address 0x70 port 4 2030 bus 4 on adapter 0 with a PCA9547 on address 0x70 port 4
2032 bus 5 on adapter 0 with a PCA9547 on address 0x70 port 5 2031 bus 5 on adapter 0 with a PCA9547 on address 0x70 port 5
2033 bus 6 on adapter 1 without a mux 2032 bus 6 on adapter 1 without a mux
2034 bus 7 on adapter 1 with a PCA9544 on address 0x72 port 1 2033 bus 7 on adapter 1 with a PCA9544 on address 0x72 port 1
2035 bus 8 on adapter 1 with a PCA9544 on address 0x72 port 2 2034 bus 8 on adapter 1 with a PCA9544 on address 0x72 port 2
2036 2035
2037 If you do not have i2c muxes on your board, omit this define. 2036 If you do not have i2c muxes on your board, omit this define.
2038 2037
2039 - Legacy I2C Support: 2038 - Legacy I2C Support:
2040 If you use the software i2c interface (CONFIG_SYS_I2C_SOFT) 2039 If you use the software i2c interface (CONFIG_SYS_I2C_SOFT)
2041 then the following macros need to be defined (examples are 2040 then the following macros need to be defined (examples are
2042 from include/configs/lwmon.h): 2041 from include/configs/lwmon.h):
2043 2042
2044 I2C_INIT 2043 I2C_INIT
2045 2044
2046 (Optional). Any commands necessary to enable the I2C 2045 (Optional). Any commands necessary to enable the I2C
2047 controller or configure ports. 2046 controller or configure ports.
2048 2047
2049 eg: #define I2C_INIT (immr->im_cpm.cp_pbdir |= PB_SCL) 2048 eg: #define I2C_INIT (immr->im_cpm.cp_pbdir |= PB_SCL)
2050 2049
2051 I2C_ACTIVE 2050 I2C_ACTIVE
2052 2051
2053 The code necessary to make the I2C data line active 2052 The code necessary to make the I2C data line active
2054 (driven). If the data line is open collector, this 2053 (driven). If the data line is open collector, this
2055 define can be null. 2054 define can be null.
2056 2055
2057 eg: #define I2C_ACTIVE (immr->im_cpm.cp_pbdir |= PB_SDA) 2056 eg: #define I2C_ACTIVE (immr->im_cpm.cp_pbdir |= PB_SDA)
2058 2057
2059 I2C_TRISTATE 2058 I2C_TRISTATE
2060 2059
2061 The code necessary to make the I2C data line tri-stated 2060 The code necessary to make the I2C data line tri-stated
2062 (inactive). If the data line is open collector, this 2061 (inactive). If the data line is open collector, this
2063 define can be null. 2062 define can be null.
2064 2063
2065 eg: #define I2C_TRISTATE (immr->im_cpm.cp_pbdir &= ~PB_SDA) 2064 eg: #define I2C_TRISTATE (immr->im_cpm.cp_pbdir &= ~PB_SDA)
2066 2065
2067 I2C_READ 2066 I2C_READ
2068 2067
2069 Code that returns true if the I2C data line is high, 2068 Code that returns true if the I2C data line is high,
2070 false if it is low. 2069 false if it is low.
2071 2070
2072 eg: #define I2C_READ ((immr->im_cpm.cp_pbdat & PB_SDA) != 0) 2071 eg: #define I2C_READ ((immr->im_cpm.cp_pbdat & PB_SDA) != 0)
2073 2072
2074 I2C_SDA(bit) 2073 I2C_SDA(bit)
2075 2074
2076 If <bit> is true, sets the I2C data line high. If it 2075 If <bit> is true, sets the I2C data line high. If it
2077 is false, it clears it (low). 2076 is false, it clears it (low).
2078 2077
2079 eg: #define I2C_SDA(bit) \ 2078 eg: #define I2C_SDA(bit) \
2080 if(bit) immr->im_cpm.cp_pbdat |= PB_SDA; \ 2079 if(bit) immr->im_cpm.cp_pbdat |= PB_SDA; \
2081 else immr->im_cpm.cp_pbdat &= ~PB_SDA 2080 else immr->im_cpm.cp_pbdat &= ~PB_SDA
2082 2081
2083 I2C_SCL(bit) 2082 I2C_SCL(bit)
2084 2083
2085 If <bit> is true, sets the I2C clock line high. If it 2084 If <bit> is true, sets the I2C clock line high. If it
2086 is false, it clears it (low). 2085 is false, it clears it (low).
2087 2086
2088 eg: #define I2C_SCL(bit) \ 2087 eg: #define I2C_SCL(bit) \
2089 if(bit) immr->im_cpm.cp_pbdat |= PB_SCL; \ 2088 if(bit) immr->im_cpm.cp_pbdat |= PB_SCL; \
2090 else immr->im_cpm.cp_pbdat &= ~PB_SCL 2089 else immr->im_cpm.cp_pbdat &= ~PB_SCL
2091 2090
2092 I2C_DELAY 2091 I2C_DELAY
2093 2092
2094 This delay is invoked four times per clock cycle so this 2093 This delay is invoked four times per clock cycle so this
2095 controls the rate of data transfer. The data rate thus 2094 controls the rate of data transfer. The data rate thus
2096 is 1 / (I2C_DELAY * 4). Often defined to be something 2095 is 1 / (I2C_DELAY * 4). Often defined to be something
2097 like: 2096 like:
2098 2097
2099 #define I2C_DELAY udelay(2) 2098 #define I2C_DELAY udelay(2)
2100 2099
2101 CONFIG_SOFT_I2C_GPIO_SCL / CONFIG_SOFT_I2C_GPIO_SDA 2100 CONFIG_SOFT_I2C_GPIO_SCL / CONFIG_SOFT_I2C_GPIO_SDA
2102 2101
2103 If your arch supports the generic GPIO framework (asm/gpio.h), 2102 If your arch supports the generic GPIO framework (asm/gpio.h),
2104 then you may alternatively define the two GPIOs that are to be 2103 then you may alternatively define the two GPIOs that are to be
2105 used as SCL / SDA. Any of the previous I2C_xxx macros will 2104 used as SCL / SDA. Any of the previous I2C_xxx macros will
2106 have GPIO-based defaults assigned to them as appropriate. 2105 have GPIO-based defaults assigned to them as appropriate.
2107 2106
2108 You should define these to the GPIO value as given directly to 2107 You should define these to the GPIO value as given directly to
2109 the generic GPIO functions. 2108 the generic GPIO functions.
2110 2109
2111 CONFIG_SYS_I2C_INIT_BOARD 2110 CONFIG_SYS_I2C_INIT_BOARD
2112 2111
2113 When a board is reset during an i2c bus transfer 2112 When a board is reset during an i2c bus transfer
2114 chips might think that the current transfer is still 2113 chips might think that the current transfer is still
2115 in progress. On some boards it is possible to access 2114 in progress. On some boards it is possible to access
2116 the i2c SCLK line directly, either by using the 2115 the i2c SCLK line directly, either by using the
2117 processor pin as a GPIO or by having a second pin 2116 processor pin as a GPIO or by having a second pin
2118 connected to the bus. If this option is defined a 2117 connected to the bus. If this option is defined a
2119 custom i2c_init_board() routine in boards/xxx/board.c 2118 custom i2c_init_board() routine in boards/xxx/board.c
2120 is run early in the boot sequence. 2119 is run early in the boot sequence.
2121 2120
2122 CONFIG_I2C_MULTI_BUS 2121 CONFIG_I2C_MULTI_BUS
2123 2122
2124 This option allows the use of multiple I2C buses, each of which 2123 This option allows the use of multiple I2C buses, each of which
2125 must have a controller. At any point in time, only one bus is 2124 must have a controller. At any point in time, only one bus is
2126 active. To switch to a different bus, use the 'i2c dev' command. 2125 active. To switch to a different bus, use the 'i2c dev' command.
2127 Note that bus numbering is zero-based. 2126 Note that bus numbering is zero-based.
2128 2127
2129 CONFIG_SYS_I2C_NOPROBES 2128 CONFIG_SYS_I2C_NOPROBES
2130 2129
2131 This option specifies a list of I2C devices that will be skipped 2130 This option specifies a list of I2C devices that will be skipped
2132 when the 'i2c probe' command is issued. If CONFIG_I2C_MULTI_BUS 2131 when the 'i2c probe' command is issued. If CONFIG_I2C_MULTI_BUS
2133 is set, specify a list of bus-device pairs. Otherwise, specify 2132 is set, specify a list of bus-device pairs. Otherwise, specify
2134 a 1D array of device addresses 2133 a 1D array of device addresses
2135 2134
2136 e.g. 2135 e.g.
2137 #undef CONFIG_I2C_MULTI_BUS 2136 #undef CONFIG_I2C_MULTI_BUS
2138 #define CONFIG_SYS_I2C_NOPROBES {0x50,0x68} 2137 #define CONFIG_SYS_I2C_NOPROBES {0x50,0x68}
2139 2138
2140 will skip addresses 0x50 and 0x68 on a board with one I2C bus 2139 will skip addresses 0x50 and 0x68 on a board with one I2C bus
2141 2140
2142 #define CONFIG_I2C_MULTI_BUS 2141 #define CONFIG_I2C_MULTI_BUS
2143 #define CONFIG_SYS_I2C_NOPROBES {{0,0x50},{0,0x68},{1,0x54}} 2142 #define CONFIG_SYS_I2C_NOPROBES {{0,0x50},{0,0x68},{1,0x54}}
2144 2143
2145 will skip addresses 0x50 and 0x68 on bus 0 and address 0x54 on bus 1 2144 will skip addresses 0x50 and 0x68 on bus 0 and address 0x54 on bus 1
2146 2145
2147 CONFIG_SYS_SPD_BUS_NUM 2146 CONFIG_SYS_SPD_BUS_NUM
2148 2147
2149 If defined, then this indicates the I2C bus number for DDR SPD. 2148 If defined, then this indicates the I2C bus number for DDR SPD.
2150 If not defined, then U-Boot assumes that SPD is on I2C bus 0. 2149 If not defined, then U-Boot assumes that SPD is on I2C bus 0.
2151 2150
2152 CONFIG_SYS_RTC_BUS_NUM 2151 CONFIG_SYS_RTC_BUS_NUM
2153 2152
2154 If defined, then this indicates the I2C bus number for the RTC. 2153 If defined, then this indicates the I2C bus number for the RTC.
2155 If not defined, then U-Boot assumes that RTC is on I2C bus 0. 2154 If not defined, then U-Boot assumes that RTC is on I2C bus 0.
2156 2155
2157 CONFIG_SOFT_I2C_READ_REPEATED_START 2156 CONFIG_SOFT_I2C_READ_REPEATED_START
2158 2157
2159 defining this will force the i2c_read() function in 2158 defining this will force the i2c_read() function in
2160 the soft_i2c driver to perform an I2C repeated start 2159 the soft_i2c driver to perform an I2C repeated start
2161 between writing the address pointer and reading the 2160 between writing the address pointer and reading the
2162 data. If this define is omitted the default behaviour 2161 data. If this define is omitted the default behaviour
2163 of doing a stop-start sequence will be used. Most I2C 2162 of doing a stop-start sequence will be used. Most I2C
2164 devices can use either method, but some require one or 2163 devices can use either method, but some require one or
2165 the other. 2164 the other.
2166 2165
2167 - SPI Support: CONFIG_SPI 2166 - SPI Support: CONFIG_SPI
2168 2167
2169 Enables SPI driver (so far only tested with 2168 Enables SPI driver (so far only tested with
2170 SPI EEPROM, also an instance works with Crystal A/D and 2169 SPI EEPROM, also an instance works with Crystal A/D and
2171 D/As on the SACSng board) 2170 D/As on the SACSng board)
2172 2171
2173 CONFIG_SH_SPI 2172 CONFIG_SH_SPI
2174 2173
2175 Enables the driver for SPI controller on SuperH. Currently 2174 Enables the driver for SPI controller on SuperH. Currently
2176 only SH7757 is supported. 2175 only SH7757 is supported.
2177 2176
2178 CONFIG_SOFT_SPI 2177 CONFIG_SOFT_SPI
2179 2178
2180 Enables a software (bit-bang) SPI driver rather than 2179 Enables a software (bit-bang) SPI driver rather than
2181 using hardware support. This is a general purpose 2180 using hardware support. This is a general purpose
2182 driver that only requires three general I/O port pins 2181 driver that only requires three general I/O port pins
2183 (two outputs, one input) to function. If this is 2182 (two outputs, one input) to function. If this is
2184 defined, the board configuration must define several 2183 defined, the board configuration must define several
2185 SPI configuration items (port pins to use, etc). For 2184 SPI configuration items (port pins to use, etc). For
2186 an example, see include/configs/sacsng.h. 2185 an example, see include/configs/sacsng.h.
2187 2186
2188 CONFIG_HARD_SPI 2187 CONFIG_HARD_SPI
2189 2188
2190 Enables a hardware SPI driver for general-purpose reads 2189 Enables a hardware SPI driver for general-purpose reads
2191 and writes. As with CONFIG_SOFT_SPI, the board configuration 2190 and writes. As with CONFIG_SOFT_SPI, the board configuration
2192 must define a list of chip-select function pointers. 2191 must define a list of chip-select function pointers.
2193 Currently supported on some MPC8xxx processors. For an 2192 Currently supported on some MPC8xxx processors. For an
2194 example, see include/configs/mpc8349emds.h. 2193 example, see include/configs/mpc8349emds.h.
2195 2194
2196 CONFIG_MXC_SPI 2195 CONFIG_MXC_SPI
2197 2196
2198 Enables the driver for the SPI controllers on i.MX and MXC 2197 Enables the driver for the SPI controllers on i.MX and MXC
2199 SoCs. Currently i.MX31/35/51 are supported. 2198 SoCs. Currently i.MX31/35/51 are supported.
2200 2199
2201 CONFIG_SYS_SPI_MXC_WAIT 2200 CONFIG_SYS_SPI_MXC_WAIT
2202 Timeout for waiting until spi transfer completed. 2201 Timeout for waiting until spi transfer completed.
2203 default: (CONFIG_SYS_HZ/100) /* 10 ms */ 2202 default: (CONFIG_SYS_HZ/100) /* 10 ms */
2204 2203
2205 - FPGA Support: CONFIG_FPGA 2204 - FPGA Support: CONFIG_FPGA
2206 2205
2207 Enables FPGA subsystem. 2206 Enables FPGA subsystem.
2208 2207
2209 CONFIG_FPGA_<vendor> 2208 CONFIG_FPGA_<vendor>
2210 2209
2211 Enables support for specific chip vendors. 2210 Enables support for specific chip vendors.
2212 (ALTERA, XILINX) 2211 (ALTERA, XILINX)
2213 2212
2214 CONFIG_FPGA_<family> 2213 CONFIG_FPGA_<family>
2215 2214
2216 Enables support for FPGA family. 2215 Enables support for FPGA family.
2217 (SPARTAN2, SPARTAN3, VIRTEX2, CYCLONE2, ACEX1K, ACEX) 2216 (SPARTAN2, SPARTAN3, VIRTEX2, CYCLONE2, ACEX1K, ACEX)
2218 2217
2219 CONFIG_FPGA_COUNT 2218 CONFIG_FPGA_COUNT
2220 2219
2221 Specify the number of FPGA devices to support. 2220 Specify the number of FPGA devices to support.
2222 2221
2223 CONFIG_SYS_FPGA_PROG_FEEDBACK 2222 CONFIG_SYS_FPGA_PROG_FEEDBACK
2224 2223
2225 Enable printing of hash marks during FPGA configuration. 2224 Enable printing of hash marks during FPGA configuration.
2226 2225
2227 CONFIG_SYS_FPGA_CHECK_BUSY 2226 CONFIG_SYS_FPGA_CHECK_BUSY
2228 2227
2229 Enable checks on FPGA configuration interface busy 2228 Enable checks on FPGA configuration interface busy
2230 status by the configuration function. This option 2229 status by the configuration function. This option
2231 will require a board or device specific function to 2230 will require a board or device specific function to
2232 be written. 2231 be written.
2233 2232
2234 CONFIG_FPGA_DELAY 2233 CONFIG_FPGA_DELAY
2235 2234
2236 If defined, a function that provides delays in the FPGA 2235 If defined, a function that provides delays in the FPGA
2237 configuration driver. 2236 configuration driver.
2238 2237
2239 CONFIG_SYS_FPGA_CHECK_CTRLC 2238 CONFIG_SYS_FPGA_CHECK_CTRLC
2240 Allow Control-C to interrupt FPGA configuration 2239 Allow Control-C to interrupt FPGA configuration
2241 2240
2242 CONFIG_SYS_FPGA_CHECK_ERROR 2241 CONFIG_SYS_FPGA_CHECK_ERROR
2243 2242
2244 Check for configuration errors during FPGA bitfile 2243 Check for configuration errors during FPGA bitfile
2245 loading. For example, abort during Virtex II 2244 loading. For example, abort during Virtex II
2246 configuration if the INIT_B line goes low (which 2245 configuration if the INIT_B line goes low (which
2247 indicated a CRC error). 2246 indicated a CRC error).
2248 2247
2249 CONFIG_SYS_FPGA_WAIT_INIT 2248 CONFIG_SYS_FPGA_WAIT_INIT
2250 2249
2251 Maximum time to wait for the INIT_B line to de-assert 2250 Maximum time to wait for the INIT_B line to de-assert
2252 after PROB_B has been de-asserted during a Virtex II 2251 after PROB_B has been de-asserted during a Virtex II
2253 FPGA configuration sequence. The default time is 500 2252 FPGA configuration sequence. The default time is 500
2254 ms. 2253 ms.
2255 2254
2256 CONFIG_SYS_FPGA_WAIT_BUSY 2255 CONFIG_SYS_FPGA_WAIT_BUSY
2257 2256
2258 Maximum time to wait for BUSY to de-assert during 2257 Maximum time to wait for BUSY to de-assert during
2259 Virtex II FPGA configuration. The default is 5 ms. 2258 Virtex II FPGA configuration. The default is 5 ms.
2260 2259
2261 CONFIG_SYS_FPGA_WAIT_CONFIG 2260 CONFIG_SYS_FPGA_WAIT_CONFIG
2262 2261
2263 Time to wait after FPGA configuration. The default is 2262 Time to wait after FPGA configuration. The default is
2264 200 ms. 2263 200 ms.
2265 2264
2266 - Configuration Management: 2265 - Configuration Management:
2267 CONFIG_BUILD_TARGET 2266 CONFIG_BUILD_TARGET
2268 2267
2269 Some SoCs need special image types (e.g. U-Boot binary 2268 Some SoCs need special image types (e.g. U-Boot binary
2270 with a special header) as build targets. By defining 2269 with a special header) as build targets. By defining
2271 CONFIG_BUILD_TARGET in the SoC / board header, this 2270 CONFIG_BUILD_TARGET in the SoC / board header, this
2272 special image will be automatically built upon calling 2271 special image will be automatically built upon calling
2273 make / buildman. 2272 make / buildman.
2274 2273
2275 CONFIG_IDENT_STRING 2274 CONFIG_IDENT_STRING
2276 2275
2277 If defined, this string will be added to the U-Boot 2276 If defined, this string will be added to the U-Boot
2278 version information (U_BOOT_VERSION) 2277 version information (U_BOOT_VERSION)
2279 2278
2280 - Vendor Parameter Protection: 2279 - Vendor Parameter Protection:
2281 2280
2282 U-Boot considers the values of the environment 2281 U-Boot considers the values of the environment
2283 variables "serial#" (Board Serial Number) and 2282 variables "serial#" (Board Serial Number) and
2284 "ethaddr" (Ethernet Address) to be parameters that 2283 "ethaddr" (Ethernet Address) to be parameters that
2285 are set once by the board vendor / manufacturer, and 2284 are set once by the board vendor / manufacturer, and
2286 protects these variables from casual modification by 2285 protects these variables from casual modification by
2287 the user. Once set, these variables are read-only, 2286 the user. Once set, these variables are read-only,
2288 and write or delete attempts are rejected. You can 2287 and write or delete attempts are rejected. You can
2289 change this behaviour: 2288 change this behaviour:
2290 2289
2291 If CONFIG_ENV_OVERWRITE is #defined in your config 2290 If CONFIG_ENV_OVERWRITE is #defined in your config
2292 file, the write protection for vendor parameters is 2291 file, the write protection for vendor parameters is
2293 completely disabled. Anybody can change or delete 2292 completely disabled. Anybody can change or delete
2294 these parameters. 2293 these parameters.
2295 2294
2296 Alternatively, if you define _both_ an ethaddr in the 2295 Alternatively, if you define _both_ an ethaddr in the
2297 default env _and_ CONFIG_OVERWRITE_ETHADDR_ONCE, a default 2296 default env _and_ CONFIG_OVERWRITE_ETHADDR_ONCE, a default
2298 Ethernet address is installed in the environment, 2297 Ethernet address is installed in the environment,
2299 which can be changed exactly ONCE by the user. [The 2298 which can be changed exactly ONCE by the user. [The
2300 serial# is unaffected by this, i. e. it remains 2299 serial# is unaffected by this, i. e. it remains
2301 read-only.] 2300 read-only.]
2302 2301
2303 The same can be accomplished in a more flexible way 2302 The same can be accomplished in a more flexible way
2304 for any variable by configuring the type of access 2303 for any variable by configuring the type of access
2305 to allow for those variables in the ".flags" variable 2304 to allow for those variables in the ".flags" variable
2306 or define CONFIG_ENV_FLAGS_LIST_STATIC. 2305 or define CONFIG_ENV_FLAGS_LIST_STATIC.
2307 2306
2308 - Protected RAM: 2307 - Protected RAM:
2309 CONFIG_PRAM 2308 CONFIG_PRAM
2310 2309
2311 Define this variable to enable the reservation of 2310 Define this variable to enable the reservation of
2312 "protected RAM", i. e. RAM which is not overwritten 2311 "protected RAM", i. e. RAM which is not overwritten
2313 by U-Boot. Define CONFIG_PRAM to hold the number of 2312 by U-Boot. Define CONFIG_PRAM to hold the number of
2314 kB you want to reserve for pRAM. You can overwrite 2313 kB you want to reserve for pRAM. You can overwrite
2315 this default value by defining an environment 2314 this default value by defining an environment
2316 variable "pram" to the number of kB you want to 2315 variable "pram" to the number of kB you want to
2317 reserve. Note that the board info structure will 2316 reserve. Note that the board info structure will
2318 still show the full amount of RAM. If pRAM is 2317 still show the full amount of RAM. If pRAM is
2319 reserved, a new environment variable "mem" will 2318 reserved, a new environment variable "mem" will
2320 automatically be defined to hold the amount of 2319 automatically be defined to hold the amount of
2321 remaining RAM in a form that can be passed as boot 2320 remaining RAM in a form that can be passed as boot
2322 argument to Linux, for instance like that: 2321 argument to Linux, for instance like that:
2323 2322
2324 setenv bootargs ... mem=\${mem} 2323 setenv bootargs ... mem=\${mem}
2325 saveenv 2324 saveenv
2326 2325
2327 This way you can tell Linux not to use this memory, 2326 This way you can tell Linux not to use this memory,
2328 either, which results in a memory region that will 2327 either, which results in a memory region that will
2329 not be affected by reboots. 2328 not be affected by reboots.
2330 2329
2331 *WARNING* If your board configuration uses automatic 2330 *WARNING* If your board configuration uses automatic
2332 detection of the RAM size, you must make sure that 2331 detection of the RAM size, you must make sure that
2333 this memory test is non-destructive. So far, the 2332 this memory test is non-destructive. So far, the
2334 following board configurations are known to be 2333 following board configurations are known to be
2335 "pRAM-clean": 2334 "pRAM-clean":
2336 2335
2337 IVMS8, IVML24, SPD8xx, 2336 IVMS8, IVML24, SPD8xx,
2338 HERMES, IP860, RPXlite, LWMON, 2337 HERMES, IP860, RPXlite, LWMON,
2339 FLAGADM 2338 FLAGADM
2340 2339
2341 - Access to physical memory region (> 4GB) 2340 - Access to physical memory region (> 4GB)
2342 Some basic support is provided for operations on memory not 2341 Some basic support is provided for operations on memory not
2343 normally accessible to U-Boot - e.g. some architectures 2342 normally accessible to U-Boot - e.g. some architectures
2344 support access to more than 4GB of memory on 32-bit 2343 support access to more than 4GB of memory on 32-bit
2345 machines using physical address extension or similar. 2344 machines using physical address extension or similar.
2346 Define CONFIG_PHYSMEM to access this basic support, which 2345 Define CONFIG_PHYSMEM to access this basic support, which
2347 currently only supports clearing the memory. 2346 currently only supports clearing the memory.
2348 2347
2349 - Error Recovery: 2348 - Error Recovery:
2350 CONFIG_PANIC_HANG 2349 CONFIG_PANIC_HANG
2351 2350
2352 Define this variable to stop the system in case of a 2351 Define this variable to stop the system in case of a
2353 fatal error, so that you have to reset it manually. 2352 fatal error, so that you have to reset it manually.
2354 This is probably NOT a good idea for an embedded 2353 This is probably NOT a good idea for an embedded
2355 system where you want the system to reboot 2354 system where you want the system to reboot
2356 automatically as fast as possible, but it may be 2355 automatically as fast as possible, but it may be
2357 useful during development since you can try to debug 2356 useful during development since you can try to debug
2358 the conditions that lead to the situation. 2357 the conditions that lead to the situation.
2359 2358
2360 CONFIG_NET_RETRY_COUNT 2359 CONFIG_NET_RETRY_COUNT
2361 2360
2362 This variable defines the number of retries for 2361 This variable defines the number of retries for
2363 network operations like ARP, RARP, TFTP, or BOOTP 2362 network operations like ARP, RARP, TFTP, or BOOTP
2364 before giving up the operation. If not defined, a 2363 before giving up the operation. If not defined, a
2365 default value of 5 is used. 2364 default value of 5 is used.
2366 2365
2367 CONFIG_ARP_TIMEOUT 2366 CONFIG_ARP_TIMEOUT
2368 2367
2369 Timeout waiting for an ARP reply in milliseconds. 2368 Timeout waiting for an ARP reply in milliseconds.
2370 2369
2371 CONFIG_NFS_TIMEOUT 2370 CONFIG_NFS_TIMEOUT
2372 2371
2373 Timeout in milliseconds used in NFS protocol. 2372 Timeout in milliseconds used in NFS protocol.
2374 If you encounter "ERROR: Cannot umount" in nfs command, 2373 If you encounter "ERROR: Cannot umount" in nfs command,
2375 try longer timeout such as 2374 try longer timeout such as
2376 #define CONFIG_NFS_TIMEOUT 10000UL 2375 #define CONFIG_NFS_TIMEOUT 10000UL
2377 2376
2378 - Command Interpreter: 2377 - Command Interpreter:
2379 CONFIG_AUTO_COMPLETE 2378 CONFIG_AUTO_COMPLETE
2380 2379
2381 Enable auto completion of commands using TAB. 2380 Enable auto completion of commands using TAB.
2382 2381
2383 CONFIG_SYS_PROMPT_HUSH_PS2 2382 CONFIG_SYS_PROMPT_HUSH_PS2
2384 2383
2385 This defines the secondary prompt string, which is 2384 This defines the secondary prompt string, which is
2386 printed when the command interpreter needs more input 2385 printed when the command interpreter needs more input
2387 to complete a command. Usually "> ". 2386 to complete a command. Usually "> ".
2388 2387
2389 Note: 2388 Note:
2390 2389
2391 In the current implementation, the local variables 2390 In the current implementation, the local variables
2392 space and global environment variables space are 2391 space and global environment variables space are
2393 separated. Local variables are those you define by 2392 separated. Local variables are those you define by
2394 simply typing `name=value'. To access a local 2393 simply typing `name=value'. To access a local
2395 variable later on, you have write `$name' or 2394 variable later on, you have write `$name' or
2396 `${name}'; to execute the contents of a variable 2395 `${name}'; to execute the contents of a variable
2397 directly type `$name' at the command prompt. 2396 directly type `$name' at the command prompt.
2398 2397
2399 Global environment variables are those you use 2398 Global environment variables are those you use
2400 setenv/printenv to work with. To run a command stored 2399 setenv/printenv to work with. To run a command stored
2401 in such a variable, you need to use the run command, 2400 in such a variable, you need to use the run command,
2402 and you must not use the '$' sign to access them. 2401 and you must not use the '$' sign to access them.
2403 2402
2404 To store commands and special characters in a 2403 To store commands and special characters in a
2405 variable, please use double quotation marks 2404 variable, please use double quotation marks
2406 surrounding the whole text of the variable, instead 2405 surrounding the whole text of the variable, instead
2407 of the backslashes before semicolons and special 2406 of the backslashes before semicolons and special
2408 symbols. 2407 symbols.
2409 2408
2410 - Command Line Editing and History: 2409 - Command Line Editing and History:
2411 CONFIG_CMDLINE_EDITING 2410 CONFIG_CMDLINE_EDITING
2412 2411
2413 Enable editing and History functions for interactive 2412 Enable editing and History functions for interactive
2414 command line input operations 2413 command line input operations
2415 2414
2416 - Command Line PS1/PS2 support: 2415 - Command Line PS1/PS2 support:
2417 CONFIG_CMDLINE_PS_SUPPORT 2416 CONFIG_CMDLINE_PS_SUPPORT
2418 2417
2419 Enable support for changing the command prompt string 2418 Enable support for changing the command prompt string
2420 at run-time. Only static string is supported so far. 2419 at run-time. Only static string is supported so far.
2421 The string is obtained from environment variables PS1 2420 The string is obtained from environment variables PS1
2422 and PS2. 2421 and PS2.
2423 2422
2424 - Default Environment: 2423 - Default Environment:
2425 CONFIG_EXTRA_ENV_SETTINGS 2424 CONFIG_EXTRA_ENV_SETTINGS
2426 2425
2427 Define this to contain any number of null terminated 2426 Define this to contain any number of null terminated
2428 strings (variable = value pairs) that will be part of 2427 strings (variable = value pairs) that will be part of
2429 the default environment compiled into the boot image. 2428 the default environment compiled into the boot image.
2430 2429
2431 For example, place something like this in your 2430 For example, place something like this in your
2432 board's config file: 2431 board's config file:
2433 2432
2434 #define CONFIG_EXTRA_ENV_SETTINGS \ 2433 #define CONFIG_EXTRA_ENV_SETTINGS \
2435 "myvar1=value1\0" \ 2434 "myvar1=value1\0" \
2436 "myvar2=value2\0" 2435 "myvar2=value2\0"
2437 2436
2438 Warning: This method is based on knowledge about the 2437 Warning: This method is based on knowledge about the
2439 internal format how the environment is stored by the 2438 internal format how the environment is stored by the
2440 U-Boot code. This is NOT an official, exported 2439 U-Boot code. This is NOT an official, exported
2441 interface! Although it is unlikely that this format 2440 interface! Although it is unlikely that this format
2442 will change soon, there is no guarantee either. 2441 will change soon, there is no guarantee either.
2443 You better know what you are doing here. 2442 You better know what you are doing here.
2444 2443
2445 Note: overly (ab)use of the default environment is 2444 Note: overly (ab)use of the default environment is
2446 discouraged. Make sure to check other ways to preset 2445 discouraged. Make sure to check other ways to preset
2447 the environment like the "source" command or the 2446 the environment like the "source" command or the
2448 boot command first. 2447 boot command first.
2449 2448
2450 CONFIG_ENV_VARS_UBOOT_CONFIG 2449 CONFIG_ENV_VARS_UBOOT_CONFIG
2451 2450
2452 Define this in order to add variables describing the 2451 Define this in order to add variables describing the
2453 U-Boot build configuration to the default environment. 2452 U-Boot build configuration to the default environment.
2454 These will be named arch, cpu, board, vendor, and soc. 2453 These will be named arch, cpu, board, vendor, and soc.
2455 2454
2456 Enabling this option will cause the following to be defined: 2455 Enabling this option will cause the following to be defined:
2457 2456
2458 - CONFIG_SYS_ARCH 2457 - CONFIG_SYS_ARCH
2459 - CONFIG_SYS_CPU 2458 - CONFIG_SYS_CPU
2460 - CONFIG_SYS_BOARD 2459 - CONFIG_SYS_BOARD
2461 - CONFIG_SYS_VENDOR 2460 - CONFIG_SYS_VENDOR
2462 - CONFIG_SYS_SOC 2461 - CONFIG_SYS_SOC
2463 2462
2464 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG 2463 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
2465 2464
2466 Define this in order to add variables describing certain 2465 Define this in order to add variables describing certain
2467 run-time determined information about the hardware to the 2466 run-time determined information about the hardware to the
2468 environment. These will be named board_name, board_rev. 2467 environment. These will be named board_name, board_rev.
2469 2468
2470 CONFIG_DELAY_ENVIRONMENT 2469 CONFIG_DELAY_ENVIRONMENT
2471 2470
2472 Normally the environment is loaded when the board is 2471 Normally the environment is loaded when the board is
2473 initialised so that it is available to U-Boot. This inhibits 2472 initialised so that it is available to U-Boot. This inhibits
2474 that so that the environment is not available until 2473 that so that the environment is not available until
2475 explicitly loaded later by U-Boot code. With CONFIG_OF_CONTROL 2474 explicitly loaded later by U-Boot code. With CONFIG_OF_CONTROL
2476 this is instead controlled by the value of 2475 this is instead controlled by the value of
2477 /config/load-environment. 2476 /config/load-environment.
2478 2477
2479 - DataFlash Support: 2478 - DataFlash Support:
2480 CONFIG_HAS_DATAFLASH 2479 CONFIG_HAS_DATAFLASH
2481 2480
2482 Defining this option enables DataFlash features and 2481 Defining this option enables DataFlash features and
2483 allows to read/write in Dataflash via the standard 2482 allows to read/write in Dataflash via the standard
2484 commands cp, md... 2483 commands cp, md...
2485 2484
2486 - Serial Flash support 2485 - Serial Flash support
2487 CONFIG_CMD_SF 2486 CONFIG_CMD_SF
2488 2487
2489 Defining this option enables SPI flash commands 2488 Defining this option enables SPI flash commands
2490 'sf probe/read/write/erase/update'. 2489 'sf probe/read/write/erase/update'.
2491 2490
2492 Usage requires an initial 'probe' to define the serial 2491 Usage requires an initial 'probe' to define the serial
2493 flash parameters, followed by read/write/erase/update 2492 flash parameters, followed by read/write/erase/update
2494 commands. 2493 commands.
2495 2494
2496 The following defaults may be provided by the platform 2495 The following defaults may be provided by the platform
2497 to handle the common case when only a single serial 2496 to handle the common case when only a single serial
2498 flash is present on the system. 2497 flash is present on the system.
2499 2498
2500 CONFIG_SF_DEFAULT_BUS Bus identifier 2499 CONFIG_SF_DEFAULT_BUS Bus identifier
2501 CONFIG_SF_DEFAULT_CS Chip-select 2500 CONFIG_SF_DEFAULT_CS Chip-select
2502 CONFIG_SF_DEFAULT_MODE (see include/spi.h) 2501 CONFIG_SF_DEFAULT_MODE (see include/spi.h)
2503 CONFIG_SF_DEFAULT_SPEED in Hz 2502 CONFIG_SF_DEFAULT_SPEED in Hz
2504 2503
2505 CONFIG_CMD_SF_TEST 2504 CONFIG_CMD_SF_TEST
2506 2505
2507 Define this option to include a destructive SPI flash 2506 Define this option to include a destructive SPI flash
2508 test ('sf test'). 2507 test ('sf test').
2509 2508
2510 - SystemACE Support: 2509 - SystemACE Support:
2511 CONFIG_SYSTEMACE 2510 CONFIG_SYSTEMACE
2512 2511
2513 Adding this option adds support for Xilinx SystemACE 2512 Adding this option adds support for Xilinx SystemACE
2514 chips attached via some sort of local bus. The address 2513 chips attached via some sort of local bus. The address
2515 of the chip must also be defined in the 2514 of the chip must also be defined in the
2516 CONFIG_SYS_SYSTEMACE_BASE macro. For example: 2515 CONFIG_SYS_SYSTEMACE_BASE macro. For example:
2517 2516
2518 #define CONFIG_SYSTEMACE 2517 #define CONFIG_SYSTEMACE
2519 #define CONFIG_SYS_SYSTEMACE_BASE 0xf0000000 2518 #define CONFIG_SYS_SYSTEMACE_BASE 0xf0000000
2520 2519
2521 When SystemACE support is added, the "ace" device type 2520 When SystemACE support is added, the "ace" device type
2522 becomes available to the fat commands, i.e. fatls. 2521 becomes available to the fat commands, i.e. fatls.
2523 2522
2524 - TFTP Fixed UDP Port: 2523 - TFTP Fixed UDP Port:
2525 CONFIG_TFTP_PORT 2524 CONFIG_TFTP_PORT
2526 2525
2527 If this is defined, the environment variable tftpsrcp 2526 If this is defined, the environment variable tftpsrcp
2528 is used to supply the TFTP UDP source port value. 2527 is used to supply the TFTP UDP source port value.
2529 If tftpsrcp isn't defined, the normal pseudo-random port 2528 If tftpsrcp isn't defined, the normal pseudo-random port
2530 number generator is used. 2529 number generator is used.
2531 2530
2532 Also, the environment variable tftpdstp is used to supply 2531 Also, the environment variable tftpdstp is used to supply
2533 the TFTP UDP destination port value. If tftpdstp isn't 2532 the TFTP UDP destination port value. If tftpdstp isn't
2534 defined, the normal port 69 is used. 2533 defined, the normal port 69 is used.
2535 2534
2536 The purpose for tftpsrcp is to allow a TFTP server to 2535 The purpose for tftpsrcp is to allow a TFTP server to
2537 blindly start the TFTP transfer using the pre-configured 2536 blindly start the TFTP transfer using the pre-configured
2538 target IP address and UDP port. This has the effect of 2537 target IP address and UDP port. This has the effect of
2539 "punching through" the (Windows XP) firewall, allowing 2538 "punching through" the (Windows XP) firewall, allowing
2540 the remainder of the TFTP transfer to proceed normally. 2539 the remainder of the TFTP transfer to proceed normally.
2541 A better solution is to properly configure the firewall, 2540 A better solution is to properly configure the firewall,
2542 but sometimes that is not allowed. 2541 but sometimes that is not allowed.
2543 2542
2544 - bootcount support: 2543 - bootcount support:
2545 CONFIG_BOOTCOUNT_LIMIT 2544 CONFIG_BOOTCOUNT_LIMIT
2546 2545
2547 This enables the bootcounter support, see: 2546 This enables the bootcounter support, see:
2548 http://www.denx.de/wiki/DULG/UBootBootCountLimit 2547 http://www.denx.de/wiki/DULG/UBootBootCountLimit
2549 2548
2550 CONFIG_AT91SAM9XE 2549 CONFIG_AT91SAM9XE
2551 enable special bootcounter support on at91sam9xe based boards. 2550 enable special bootcounter support on at91sam9xe based boards.
2552 CONFIG_SOC_DA8XX 2551 CONFIG_SOC_DA8XX
2553 enable special bootcounter support on da850 based boards. 2552 enable special bootcounter support on da850 based boards.
2554 CONFIG_BOOTCOUNT_RAM 2553 CONFIG_BOOTCOUNT_RAM
2555 enable support for the bootcounter in RAM 2554 enable support for the bootcounter in RAM
2556 CONFIG_BOOTCOUNT_I2C 2555 CONFIG_BOOTCOUNT_I2C
2557 enable support for the bootcounter on an i2c (like RTC) device. 2556 enable support for the bootcounter on an i2c (like RTC) device.
2558 CONFIG_SYS_I2C_RTC_ADDR = i2c chip address 2557 CONFIG_SYS_I2C_RTC_ADDR = i2c chip address
2559 CONFIG_SYS_BOOTCOUNT_ADDR = i2c addr which is used for 2558 CONFIG_SYS_BOOTCOUNT_ADDR = i2c addr which is used for
2560 the bootcounter. 2559 the bootcounter.
2561 CONFIG_BOOTCOUNT_ALEN = address len 2560 CONFIG_BOOTCOUNT_ALEN = address len
2562 2561
2563 - Show boot progress: 2562 - Show boot progress:
2564 CONFIG_SHOW_BOOT_PROGRESS 2563 CONFIG_SHOW_BOOT_PROGRESS
2565 2564
2566 Defining this option allows to add some board- 2565 Defining this option allows to add some board-
2567 specific code (calling a user-provided function 2566 specific code (calling a user-provided function
2568 "show_boot_progress(int)") that enables you to show 2567 "show_boot_progress(int)") that enables you to show
2569 the system's boot progress on some display (for 2568 the system's boot progress on some display (for
2570 example, some LED's) on your board. At the moment, 2569 example, some LED's) on your board. At the moment,
2571 the following checkpoints are implemented: 2570 the following checkpoints are implemented:
2572 2571
2573 2572
2574 Legacy uImage format: 2573 Legacy uImage format:
2575 2574
2576 Arg Where When 2575 Arg Where When
2577 1 common/cmd_bootm.c before attempting to boot an image 2576 1 common/cmd_bootm.c before attempting to boot an image
2578 -1 common/cmd_bootm.c Image header has bad magic number 2577 -1 common/cmd_bootm.c Image header has bad magic number
2579 2 common/cmd_bootm.c Image header has correct magic number 2578 2 common/cmd_bootm.c Image header has correct magic number
2580 -2 common/cmd_bootm.c Image header has bad checksum 2579 -2 common/cmd_bootm.c Image header has bad checksum
2581 3 common/cmd_bootm.c Image header has correct checksum 2580 3 common/cmd_bootm.c Image header has correct checksum
2582 -3 common/cmd_bootm.c Image data has bad checksum 2581 -3 common/cmd_bootm.c Image data has bad checksum
2583 4 common/cmd_bootm.c Image data has correct checksum 2582 4 common/cmd_bootm.c Image data has correct checksum
2584 -4 common/cmd_bootm.c Image is for unsupported architecture 2583 -4 common/cmd_bootm.c Image is for unsupported architecture
2585 5 common/cmd_bootm.c Architecture check OK 2584 5 common/cmd_bootm.c Architecture check OK
2586 -5 common/cmd_bootm.c Wrong Image Type (not kernel, multi) 2585 -5 common/cmd_bootm.c Wrong Image Type (not kernel, multi)
2587 6 common/cmd_bootm.c Image Type check OK 2586 6 common/cmd_bootm.c Image Type check OK
2588 -6 common/cmd_bootm.c gunzip uncompression error 2587 -6 common/cmd_bootm.c gunzip uncompression error
2589 -7 common/cmd_bootm.c Unimplemented compression type 2588 -7 common/cmd_bootm.c Unimplemented compression type
2590 7 common/cmd_bootm.c Uncompression OK 2589 7 common/cmd_bootm.c Uncompression OK
2591 8 common/cmd_bootm.c No uncompress/copy overwrite error 2590 8 common/cmd_bootm.c No uncompress/copy overwrite error
2592 -9 common/cmd_bootm.c Unsupported OS (not Linux, BSD, VxWorks, QNX) 2591 -9 common/cmd_bootm.c Unsupported OS (not Linux, BSD, VxWorks, QNX)
2593 2592
2594 9 common/image.c Start initial ramdisk verification 2593 9 common/image.c Start initial ramdisk verification
2595 -10 common/image.c Ramdisk header has bad magic number 2594 -10 common/image.c Ramdisk header has bad magic number
2596 -11 common/image.c Ramdisk header has bad checksum 2595 -11 common/image.c Ramdisk header has bad checksum
2597 10 common/image.c Ramdisk header is OK 2596 10 common/image.c Ramdisk header is OK
2598 -12 common/image.c Ramdisk data has bad checksum 2597 -12 common/image.c Ramdisk data has bad checksum
2599 11 common/image.c Ramdisk data has correct checksum 2598 11 common/image.c Ramdisk data has correct checksum
2600 12 common/image.c Ramdisk verification complete, start loading 2599 12 common/image.c Ramdisk verification complete, start loading
2601 -13 common/image.c Wrong Image Type (not PPC Linux ramdisk) 2600 -13 common/image.c Wrong Image Type (not PPC Linux ramdisk)
2602 13 common/image.c Start multifile image verification 2601 13 common/image.c Start multifile image verification
2603 14 common/image.c No initial ramdisk, no multifile, continue. 2602 14 common/image.c No initial ramdisk, no multifile, continue.
2604 2603
2605 15 arch/<arch>/lib/bootm.c All preparation done, transferring control to OS 2604 15 arch/<arch>/lib/bootm.c All preparation done, transferring control to OS
2606 2605
2607 -30 arch/powerpc/lib/board.c Fatal error, hang the system 2606 -30 arch/powerpc/lib/board.c Fatal error, hang the system
2608 -31 post/post.c POST test failed, detected by post_output_backlog() 2607 -31 post/post.c POST test failed, detected by post_output_backlog()
2609 -32 post/post.c POST test failed, detected by post_run_single() 2608 -32 post/post.c POST test failed, detected by post_run_single()
2610 2609
2611 34 common/cmd_doc.c before loading a Image from a DOC device 2610 34 common/cmd_doc.c before loading a Image from a DOC device
2612 -35 common/cmd_doc.c Bad usage of "doc" command 2611 -35 common/cmd_doc.c Bad usage of "doc" command
2613 35 common/cmd_doc.c correct usage of "doc" command 2612 35 common/cmd_doc.c correct usage of "doc" command
2614 -36 common/cmd_doc.c No boot device 2613 -36 common/cmd_doc.c No boot device
2615 36 common/cmd_doc.c correct boot device 2614 36 common/cmd_doc.c correct boot device
2616 -37 common/cmd_doc.c Unknown Chip ID on boot device 2615 -37 common/cmd_doc.c Unknown Chip ID on boot device
2617 37 common/cmd_doc.c correct chip ID found, device available 2616 37 common/cmd_doc.c correct chip ID found, device available
2618 -38 common/cmd_doc.c Read Error on boot device 2617 -38 common/cmd_doc.c Read Error on boot device
2619 38 common/cmd_doc.c reading Image header from DOC device OK 2618 38 common/cmd_doc.c reading Image header from DOC device OK
2620 -39 common/cmd_doc.c Image header has bad magic number 2619 -39 common/cmd_doc.c Image header has bad magic number
2621 39 common/cmd_doc.c Image header has correct magic number 2620 39 common/cmd_doc.c Image header has correct magic number
2622 -40 common/cmd_doc.c Error reading Image from DOC device 2621 -40 common/cmd_doc.c Error reading Image from DOC device
2623 40 common/cmd_doc.c Image header has correct magic number 2622 40 common/cmd_doc.c Image header has correct magic number
2624 41 common/cmd_ide.c before loading a Image from a IDE device 2623 41 common/cmd_ide.c before loading a Image from a IDE device
2625 -42 common/cmd_ide.c Bad usage of "ide" command 2624 -42 common/cmd_ide.c Bad usage of "ide" command
2626 42 common/cmd_ide.c correct usage of "ide" command 2625 42 common/cmd_ide.c correct usage of "ide" command
2627 -43 common/cmd_ide.c No boot device 2626 -43 common/cmd_ide.c No boot device
2628 43 common/cmd_ide.c boot device found 2627 43 common/cmd_ide.c boot device found
2629 -44 common/cmd_ide.c Device not available 2628 -44 common/cmd_ide.c Device not available
2630 44 common/cmd_ide.c Device available 2629 44 common/cmd_ide.c Device available
2631 -45 common/cmd_ide.c wrong partition selected 2630 -45 common/cmd_ide.c wrong partition selected
2632 45 common/cmd_ide.c partition selected 2631 45 common/cmd_ide.c partition selected
2633 -46 common/cmd_ide.c Unknown partition table 2632 -46 common/cmd_ide.c Unknown partition table
2634 46 common/cmd_ide.c valid partition table found 2633 46 common/cmd_ide.c valid partition table found
2635 -47 common/cmd_ide.c Invalid partition type 2634 -47 common/cmd_ide.c Invalid partition type
2636 47 common/cmd_ide.c correct partition type 2635 47 common/cmd_ide.c correct partition type
2637 -48 common/cmd_ide.c Error reading Image Header on boot device 2636 -48 common/cmd_ide.c Error reading Image Header on boot device
2638 48 common/cmd_ide.c reading Image Header from IDE device OK 2637 48 common/cmd_ide.c reading Image Header from IDE device OK
2639 -49 common/cmd_ide.c Image header has bad magic number 2638 -49 common/cmd_ide.c Image header has bad magic number
2640 49 common/cmd_ide.c Image header has correct magic number 2639 49 common/cmd_ide.c Image header has correct magic number
2641 -50 common/cmd_ide.c Image header has bad checksum 2640 -50 common/cmd_ide.c Image header has bad checksum
2642 50 common/cmd_ide.c Image header has correct checksum 2641 50 common/cmd_ide.c Image header has correct checksum
2643 -51 common/cmd_ide.c Error reading Image from IDE device 2642 -51 common/cmd_ide.c Error reading Image from IDE device
2644 51 common/cmd_ide.c reading Image from IDE device OK 2643 51 common/cmd_ide.c reading Image from IDE device OK
2645 52 common/cmd_nand.c before loading a Image from a NAND device 2644 52 common/cmd_nand.c before loading a Image from a NAND device
2646 -53 common/cmd_nand.c Bad usage of "nand" command 2645 -53 common/cmd_nand.c Bad usage of "nand" command
2647 53 common/cmd_nand.c correct usage of "nand" command 2646 53 common/cmd_nand.c correct usage of "nand" command
2648 -54 common/cmd_nand.c No boot device 2647 -54 common/cmd_nand.c No boot device
2649 54 common/cmd_nand.c boot device found 2648 54 common/cmd_nand.c boot device found
2650 -55 common/cmd_nand.c Unknown Chip ID on boot device 2649 -55 common/cmd_nand.c Unknown Chip ID on boot device
2651 55 common/cmd_nand.c correct chip ID found, device available 2650 55 common/cmd_nand.c correct chip ID found, device available
2652 -56 common/cmd_nand.c Error reading Image Header on boot device 2651 -56 common/cmd_nand.c Error reading Image Header on boot device
2653 56 common/cmd_nand.c reading Image Header from NAND device OK 2652 56 common/cmd_nand.c reading Image Header from NAND device OK
2654 -57 common/cmd_nand.c Image header has bad magic number 2653 -57 common/cmd_nand.c Image header has bad magic number
2655 57 common/cmd_nand.c Image header has correct magic number 2654 57 common/cmd_nand.c Image header has correct magic number
2656 -58 common/cmd_nand.c Error reading Image from NAND device 2655 -58 common/cmd_nand.c Error reading Image from NAND device
2657 58 common/cmd_nand.c reading Image from NAND device OK 2656 58 common/cmd_nand.c reading Image from NAND device OK
2658 2657
2659 -60 common/env_common.c Environment has a bad CRC, using default 2658 -60 common/env_common.c Environment has a bad CRC, using default
2660 2659
2661 64 net/eth.c starting with Ethernet configuration. 2660 64 net/eth.c starting with Ethernet configuration.
2662 -64 net/eth.c no Ethernet found. 2661 -64 net/eth.c no Ethernet found.
2663 65 net/eth.c Ethernet found. 2662 65 net/eth.c Ethernet found.
2664 2663
2665 -80 common/cmd_net.c usage wrong 2664 -80 common/cmd_net.c usage wrong
2666 80 common/cmd_net.c before calling net_loop() 2665 80 common/cmd_net.c before calling net_loop()
2667 -81 common/cmd_net.c some error in net_loop() occurred 2666 -81 common/cmd_net.c some error in net_loop() occurred
2668 81 common/cmd_net.c net_loop() back without error 2667 81 common/cmd_net.c net_loop() back without error
2669 -82 common/cmd_net.c size == 0 (File with size 0 loaded) 2668 -82 common/cmd_net.c size == 0 (File with size 0 loaded)
2670 82 common/cmd_net.c trying automatic boot 2669 82 common/cmd_net.c trying automatic boot
2671 83 common/cmd_net.c running "source" command 2670 83 common/cmd_net.c running "source" command
2672 -83 common/cmd_net.c some error in automatic boot or "source" command 2671 -83 common/cmd_net.c some error in automatic boot or "source" command
2673 84 common/cmd_net.c end without errors 2672 84 common/cmd_net.c end without errors
2674 2673
2675 FIT uImage format: 2674 FIT uImage format:
2676 2675
2677 Arg Where When 2676 Arg Where When
2678 100 common/cmd_bootm.c Kernel FIT Image has correct format 2677 100 common/cmd_bootm.c Kernel FIT Image has correct format
2679 -100 common/cmd_bootm.c Kernel FIT Image has incorrect format 2678 -100 common/cmd_bootm.c Kernel FIT Image has incorrect format
2680 101 common/cmd_bootm.c No Kernel subimage unit name, using configuration 2679 101 common/cmd_bootm.c No Kernel subimage unit name, using configuration
2681 -101 common/cmd_bootm.c Can't get configuration for kernel subimage 2680 -101 common/cmd_bootm.c Can't get configuration for kernel subimage
2682 102 common/cmd_bootm.c Kernel unit name specified 2681 102 common/cmd_bootm.c Kernel unit name specified
2683 -103 common/cmd_bootm.c Can't get kernel subimage node offset 2682 -103 common/cmd_bootm.c Can't get kernel subimage node offset
2684 103 common/cmd_bootm.c Found configuration node 2683 103 common/cmd_bootm.c Found configuration node
2685 104 common/cmd_bootm.c Got kernel subimage node offset 2684 104 common/cmd_bootm.c Got kernel subimage node offset
2686 -104 common/cmd_bootm.c Kernel subimage hash verification failed 2685 -104 common/cmd_bootm.c Kernel subimage hash verification failed
2687 105 common/cmd_bootm.c Kernel subimage hash verification OK 2686 105 common/cmd_bootm.c Kernel subimage hash verification OK
2688 -105 common/cmd_bootm.c Kernel subimage is for unsupported architecture 2687 -105 common/cmd_bootm.c Kernel subimage is for unsupported architecture
2689 106 common/cmd_bootm.c Architecture check OK 2688 106 common/cmd_bootm.c Architecture check OK
2690 -106 common/cmd_bootm.c Kernel subimage has wrong type 2689 -106 common/cmd_bootm.c Kernel subimage has wrong type
2691 107 common/cmd_bootm.c Kernel subimage type OK 2690 107 common/cmd_bootm.c Kernel subimage type OK
2692 -107 common/cmd_bootm.c Can't get kernel subimage data/size 2691 -107 common/cmd_bootm.c Can't get kernel subimage data/size
2693 108 common/cmd_bootm.c Got kernel subimage data/size 2692 108 common/cmd_bootm.c Got kernel subimage data/size
2694 -108 common/cmd_bootm.c Wrong image type (not legacy, FIT) 2693 -108 common/cmd_bootm.c Wrong image type (not legacy, FIT)
2695 -109 common/cmd_bootm.c Can't get kernel subimage type 2694 -109 common/cmd_bootm.c Can't get kernel subimage type
2696 -110 common/cmd_bootm.c Can't get kernel subimage comp 2695 -110 common/cmd_bootm.c Can't get kernel subimage comp
2697 -111 common/cmd_bootm.c Can't get kernel subimage os 2696 -111 common/cmd_bootm.c Can't get kernel subimage os
2698 -112 common/cmd_bootm.c Can't get kernel subimage load address 2697 -112 common/cmd_bootm.c Can't get kernel subimage load address
2699 -113 common/cmd_bootm.c Image uncompress/copy overwrite error 2698 -113 common/cmd_bootm.c Image uncompress/copy overwrite error
2700 2699
2701 120 common/image.c Start initial ramdisk verification 2700 120 common/image.c Start initial ramdisk verification
2702 -120 common/image.c Ramdisk FIT image has incorrect format 2701 -120 common/image.c Ramdisk FIT image has incorrect format
2703 121 common/image.c Ramdisk FIT image has correct format 2702 121 common/image.c Ramdisk FIT image has correct format
2704 122 common/image.c No ramdisk subimage unit name, using configuration 2703 122 common/image.c No ramdisk subimage unit name, using configuration
2705 -122 common/image.c Can't get configuration for ramdisk subimage 2704 -122 common/image.c Can't get configuration for ramdisk subimage
2706 123 common/image.c Ramdisk unit name specified 2705 123 common/image.c Ramdisk unit name specified
2707 -124 common/image.c Can't get ramdisk subimage node offset 2706 -124 common/image.c Can't get ramdisk subimage node offset
2708 125 common/image.c Got ramdisk subimage node offset 2707 125 common/image.c Got ramdisk subimage node offset
2709 -125 common/image.c Ramdisk subimage hash verification failed 2708 -125 common/image.c Ramdisk subimage hash verification failed
2710 126 common/image.c Ramdisk subimage hash verification OK 2709 126 common/image.c Ramdisk subimage hash verification OK
2711 -126 common/image.c Ramdisk subimage for unsupported architecture 2710 -126 common/image.c Ramdisk subimage for unsupported architecture
2712 127 common/image.c Architecture check OK 2711 127 common/image.c Architecture check OK
2713 -127 common/image.c Can't get ramdisk subimage data/size 2712 -127 common/image.c Can't get ramdisk subimage data/size
2714 128 common/image.c Got ramdisk subimage data/size 2713 128 common/image.c Got ramdisk subimage data/size
2715 129 common/image.c Can't get ramdisk load address 2714 129 common/image.c Can't get ramdisk load address
2716 -129 common/image.c Got ramdisk load address 2715 -129 common/image.c Got ramdisk load address
2717 2716
2718 -130 common/cmd_doc.c Incorrect FIT image format 2717 -130 common/cmd_doc.c Incorrect FIT image format
2719 131 common/cmd_doc.c FIT image format OK 2718 131 common/cmd_doc.c FIT image format OK
2720 2719
2721 -140 common/cmd_ide.c Incorrect FIT image format 2720 -140 common/cmd_ide.c Incorrect FIT image format
2722 141 common/cmd_ide.c FIT image format OK 2721 141 common/cmd_ide.c FIT image format OK
2723 2722
2724 -150 common/cmd_nand.c Incorrect FIT image format 2723 -150 common/cmd_nand.c Incorrect FIT image format
2725 151 common/cmd_nand.c FIT image format OK 2724 151 common/cmd_nand.c FIT image format OK
2726 2725
2727 - legacy image format: 2726 - legacy image format:
2728 CONFIG_IMAGE_FORMAT_LEGACY 2727 CONFIG_IMAGE_FORMAT_LEGACY
2729 enables the legacy image format support in U-Boot. 2728 enables the legacy image format support in U-Boot.
2730 2729
2731 Default: 2730 Default:
2732 enabled if CONFIG_FIT_SIGNATURE is not defined. 2731 enabled if CONFIG_FIT_SIGNATURE is not defined.
2733 2732
2734 CONFIG_DISABLE_IMAGE_LEGACY 2733 CONFIG_DISABLE_IMAGE_LEGACY
2735 disable the legacy image format 2734 disable the legacy image format
2736 2735
2737 This define is introduced, as the legacy image format is 2736 This define is introduced, as the legacy image format is
2738 enabled per default for backward compatibility. 2737 enabled per default for backward compatibility.
2739 2738
2740 - Standalone program support: 2739 - Standalone program support:
2741 CONFIG_STANDALONE_LOAD_ADDR 2740 CONFIG_STANDALONE_LOAD_ADDR
2742 2741
2743 This option defines a board specific value for the 2742 This option defines a board specific value for the
2744 address where standalone program gets loaded, thus 2743 address where standalone program gets loaded, thus
2745 overwriting the architecture dependent default 2744 overwriting the architecture dependent default
2746 settings. 2745 settings.
2747 2746
2748 - Frame Buffer Address: 2747 - Frame Buffer Address:
2749 CONFIG_FB_ADDR 2748 CONFIG_FB_ADDR
2750 2749
2751 Define CONFIG_FB_ADDR if you want to use specific 2750 Define CONFIG_FB_ADDR if you want to use specific
2752 address for frame buffer. This is typically the case 2751 address for frame buffer. This is typically the case
2753 when using a graphics controller has separate video 2752 when using a graphics controller has separate video
2754 memory. U-Boot will then place the frame buffer at 2753 memory. U-Boot will then place the frame buffer at
2755 the given address instead of dynamically reserving it 2754 the given address instead of dynamically reserving it
2756 in system RAM by calling lcd_setmem(), which grabs 2755 in system RAM by calling lcd_setmem(), which grabs
2757 the memory for the frame buffer depending on the 2756 the memory for the frame buffer depending on the
2758 configured panel size. 2757 configured panel size.
2759 2758
2760 Please see board_init_f function. 2759 Please see board_init_f function.
2761 2760
2762 - Automatic software updates via TFTP server 2761 - Automatic software updates via TFTP server
2763 CONFIG_UPDATE_TFTP 2762 CONFIG_UPDATE_TFTP
2764 CONFIG_UPDATE_TFTP_CNT_MAX 2763 CONFIG_UPDATE_TFTP_CNT_MAX
2765 CONFIG_UPDATE_TFTP_MSEC_MAX 2764 CONFIG_UPDATE_TFTP_MSEC_MAX
2766 2765
2767 These options enable and control the auto-update feature; 2766 These options enable and control the auto-update feature;
2768 for a more detailed description refer to doc/README.update. 2767 for a more detailed description refer to doc/README.update.
2769 2768
2770 - MTD Support (mtdparts command, UBI support) 2769 - MTD Support (mtdparts command, UBI support)
2771 CONFIG_MTD_DEVICE 2770 CONFIG_MTD_DEVICE
2772 2771
2773 Adds the MTD device infrastructure from the Linux kernel. 2772 Adds the MTD device infrastructure from the Linux kernel.
2774 Needed for mtdparts command support. 2773 Needed for mtdparts command support.
2775 2774
2776 CONFIG_MTD_PARTITIONS 2775 CONFIG_MTD_PARTITIONS
2777 2776
2778 Adds the MTD partitioning infrastructure from the Linux 2777 Adds the MTD partitioning infrastructure from the Linux
2779 kernel. Needed for UBI support. 2778 kernel. Needed for UBI support.
2780 2779
2781 - UBI support 2780 - UBI support
2782 CONFIG_UBI_SILENCE_MSG 2781 CONFIG_UBI_SILENCE_MSG
2783 2782
2784 Make the verbose messages from UBI stop printing. This leaves 2783 Make the verbose messages from UBI stop printing. This leaves
2785 warnings and errors enabled. 2784 warnings and errors enabled.
2786 2785
2787 2786
2788 CONFIG_MTD_UBI_WL_THRESHOLD 2787 CONFIG_MTD_UBI_WL_THRESHOLD
2789 This parameter defines the maximum difference between the highest 2788 This parameter defines the maximum difference between the highest
2790 erase counter value and the lowest erase counter value of eraseblocks 2789 erase counter value and the lowest erase counter value of eraseblocks
2791 of UBI devices. When this threshold is exceeded, UBI starts performing 2790 of UBI devices. When this threshold is exceeded, UBI starts performing
2792 wear leveling by means of moving data from eraseblock with low erase 2791 wear leveling by means of moving data from eraseblock with low erase
2793 counter to eraseblocks with high erase counter. 2792 counter to eraseblocks with high erase counter.
2794 2793
2795 The default value should be OK for SLC NAND flashes, NOR flashes and 2794 The default value should be OK for SLC NAND flashes, NOR flashes and
2796 other flashes which have eraseblock life-cycle 100000 or more. 2795 other flashes which have eraseblock life-cycle 100000 or more.
2797 However, in case of MLC NAND flashes which typically have eraseblock 2796 However, in case of MLC NAND flashes which typically have eraseblock
2798 life-cycle less than 10000, the threshold should be lessened (e.g., 2797 life-cycle less than 10000, the threshold should be lessened (e.g.,
2799 to 128 or 256, although it does not have to be power of 2). 2798 to 128 or 256, although it does not have to be power of 2).
2800 2799
2801 default: 4096 2800 default: 4096
2802 2801
2803 CONFIG_MTD_UBI_BEB_LIMIT 2802 CONFIG_MTD_UBI_BEB_LIMIT
2804 This option specifies the maximum bad physical eraseblocks UBI 2803 This option specifies the maximum bad physical eraseblocks UBI
2805 expects on the MTD device (per 1024 eraseblocks). If the 2804 expects on the MTD device (per 1024 eraseblocks). If the
2806 underlying flash does not admit of bad eraseblocks (e.g. NOR 2805 underlying flash does not admit of bad eraseblocks (e.g. NOR
2807 flash), this value is ignored. 2806 flash), this value is ignored.
2808 2807
2809 NAND datasheets often specify the minimum and maximum NVM 2808 NAND datasheets often specify the minimum and maximum NVM
2810 (Number of Valid Blocks) for the flashes' endurance lifetime. 2809 (Number of Valid Blocks) for the flashes' endurance lifetime.
2811 The maximum expected bad eraseblocks per 1024 eraseblocks 2810 The maximum expected bad eraseblocks per 1024 eraseblocks
2812 then can be calculated as "1024 * (1 - MinNVB / MaxNVB)", 2811 then can be calculated as "1024 * (1 - MinNVB / MaxNVB)",
2813 which gives 20 for most NANDs (MaxNVB is basically the total 2812 which gives 20 for most NANDs (MaxNVB is basically the total
2814 count of eraseblocks on the chip). 2813 count of eraseblocks on the chip).
2815 2814
2816 To put it differently, if this value is 20, UBI will try to 2815 To put it differently, if this value is 20, UBI will try to
2817 reserve about 1.9% of physical eraseblocks for bad blocks 2816 reserve about 1.9% of physical eraseblocks for bad blocks
2818 handling. And that will be 1.9% of eraseblocks on the entire 2817 handling. And that will be 1.9% of eraseblocks on the entire
2819 NAND chip, not just the MTD partition UBI attaches. This means 2818 NAND chip, not just the MTD partition UBI attaches. This means
2820 that if you have, say, a NAND flash chip admits maximum 40 bad 2819 that if you have, say, a NAND flash chip admits maximum 40 bad
2821 eraseblocks, and it is split on two MTD partitions of the same 2820 eraseblocks, and it is split on two MTD partitions of the same
2822 size, UBI will reserve 40 eraseblocks when attaching a 2821 size, UBI will reserve 40 eraseblocks when attaching a
2823 partition. 2822 partition.
2824 2823
2825 default: 20 2824 default: 20
2826 2825
2827 CONFIG_MTD_UBI_FASTMAP 2826 CONFIG_MTD_UBI_FASTMAP
2828 Fastmap is a mechanism which allows attaching an UBI device 2827 Fastmap is a mechanism which allows attaching an UBI device
2829 in nearly constant time. Instead of scanning the whole MTD device it 2828 in nearly constant time. Instead of scanning the whole MTD device it
2830 only has to locate a checkpoint (called fastmap) on the device. 2829 only has to locate a checkpoint (called fastmap) on the device.
2831 The on-flash fastmap contains all information needed to attach 2830 The on-flash fastmap contains all information needed to attach
2832 the device. Using fastmap makes only sense on large devices where 2831 the device. Using fastmap makes only sense on large devices where
2833 attaching by scanning takes long. UBI will not automatically install 2832 attaching by scanning takes long. UBI will not automatically install
2834 a fastmap on old images, but you can set the UBI parameter 2833 a fastmap on old images, but you can set the UBI parameter
2835 CONFIG_MTD_UBI_FASTMAP_AUTOCONVERT to 1 if you want so. Please note 2834 CONFIG_MTD_UBI_FASTMAP_AUTOCONVERT to 1 if you want so. Please note
2836 that fastmap-enabled images are still usable with UBI implementations 2835 that fastmap-enabled images are still usable with UBI implementations
2837 without fastmap support. On typical flash devices the whole fastmap 2836 without fastmap support. On typical flash devices the whole fastmap
2838 fits into one PEB. UBI will reserve PEBs to hold two fastmaps. 2837 fits into one PEB. UBI will reserve PEBs to hold two fastmaps.
2839 2838
2840 CONFIG_MTD_UBI_FASTMAP_AUTOCONVERT 2839 CONFIG_MTD_UBI_FASTMAP_AUTOCONVERT
2841 Set this parameter to enable fastmap automatically on images 2840 Set this parameter to enable fastmap automatically on images
2842 without a fastmap. 2841 without a fastmap.
2843 default: 0 2842 default: 0
2844 2843
2845 CONFIG_MTD_UBI_FM_DEBUG 2844 CONFIG_MTD_UBI_FM_DEBUG
2846 Enable UBI fastmap debug 2845 Enable UBI fastmap debug
2847 default: 0 2846 default: 0
2848 2847
2849 - UBIFS support 2848 - UBIFS support
2850 CONFIG_UBIFS_SILENCE_MSG 2849 CONFIG_UBIFS_SILENCE_MSG
2851 2850
2852 Make the verbose messages from UBIFS stop printing. This leaves 2851 Make the verbose messages from UBIFS stop printing. This leaves
2853 warnings and errors enabled. 2852 warnings and errors enabled.
2854 2853
2855 - SPL framework 2854 - SPL framework
2856 CONFIG_SPL 2855 CONFIG_SPL
2857 Enable building of SPL globally. 2856 Enable building of SPL globally.
2858 2857
2859 CONFIG_SPL_LDSCRIPT 2858 CONFIG_SPL_LDSCRIPT
2860 LDSCRIPT for linking the SPL binary. 2859 LDSCRIPT for linking the SPL binary.
2861 2860
2862 CONFIG_SPL_MAX_FOOTPRINT 2861 CONFIG_SPL_MAX_FOOTPRINT
2863 Maximum size in memory allocated to the SPL, BSS included. 2862 Maximum size in memory allocated to the SPL, BSS included.
2864 When defined, the linker checks that the actual memory 2863 When defined, the linker checks that the actual memory
2865 used by SPL from _start to __bss_end does not exceed it. 2864 used by SPL from _start to __bss_end does not exceed it.
2866 CONFIG_SPL_MAX_FOOTPRINT and CONFIG_SPL_BSS_MAX_SIZE 2865 CONFIG_SPL_MAX_FOOTPRINT and CONFIG_SPL_BSS_MAX_SIZE
2867 must not be both defined at the same time. 2866 must not be both defined at the same time.
2868 2867
2869 CONFIG_SPL_MAX_SIZE 2868 CONFIG_SPL_MAX_SIZE
2870 Maximum size of the SPL image (text, data, rodata, and 2869 Maximum size of the SPL image (text, data, rodata, and
2871 linker lists sections), BSS excluded. 2870 linker lists sections), BSS excluded.
2872 When defined, the linker checks that the actual size does 2871 When defined, the linker checks that the actual size does
2873 not exceed it. 2872 not exceed it.
2874 2873
2875 CONFIG_SPL_TEXT_BASE 2874 CONFIG_SPL_TEXT_BASE
2876 TEXT_BASE for linking the SPL binary. 2875 TEXT_BASE for linking the SPL binary.
2877 2876
2878 CONFIG_SPL_RELOC_TEXT_BASE 2877 CONFIG_SPL_RELOC_TEXT_BASE
2879 Address to relocate to. If unspecified, this is equal to 2878 Address to relocate to. If unspecified, this is equal to
2880 CONFIG_SPL_TEXT_BASE (i.e. no relocation is done). 2879 CONFIG_SPL_TEXT_BASE (i.e. no relocation is done).
2881 2880
2882 CONFIG_SPL_BSS_START_ADDR 2881 CONFIG_SPL_BSS_START_ADDR
2883 Link address for the BSS within the SPL binary. 2882 Link address for the BSS within the SPL binary.
2884 2883
2885 CONFIG_SPL_BSS_MAX_SIZE 2884 CONFIG_SPL_BSS_MAX_SIZE
2886 Maximum size in memory allocated to the SPL BSS. 2885 Maximum size in memory allocated to the SPL BSS.
2887 When defined, the linker checks that the actual memory used 2886 When defined, the linker checks that the actual memory used
2888 by SPL from __bss_start to __bss_end does not exceed it. 2887 by SPL from __bss_start to __bss_end does not exceed it.
2889 CONFIG_SPL_MAX_FOOTPRINT and CONFIG_SPL_BSS_MAX_SIZE 2888 CONFIG_SPL_MAX_FOOTPRINT and CONFIG_SPL_BSS_MAX_SIZE
2890 must not be both defined at the same time. 2889 must not be both defined at the same time.
2891 2890
2892 CONFIG_SPL_STACK 2891 CONFIG_SPL_STACK
2893 Adress of the start of the stack SPL will use 2892 Adress of the start of the stack SPL will use
2894 2893
2895 CONFIG_SPL_PANIC_ON_RAW_IMAGE 2894 CONFIG_SPL_PANIC_ON_RAW_IMAGE
2896 When defined, SPL will panic() if the image it has 2895 When defined, SPL will panic() if the image it has
2897 loaded does not have a signature. 2896 loaded does not have a signature.
2898 Defining this is useful when code which loads images 2897 Defining this is useful when code which loads images
2899 in SPL cannot guarantee that absolutely all read errors 2898 in SPL cannot guarantee that absolutely all read errors
2900 will be caught. 2899 will be caught.
2901 An example is the LPC32XX MLC NAND driver, which will 2900 An example is the LPC32XX MLC NAND driver, which will
2902 consider that a completely unreadable NAND block is bad, 2901 consider that a completely unreadable NAND block is bad,
2903 and thus should be skipped silently. 2902 and thus should be skipped silently.
2904 2903
2905 CONFIG_SPL_RELOC_STACK 2904 CONFIG_SPL_RELOC_STACK
2906 Adress of the start of the stack SPL will use after 2905 Adress of the start of the stack SPL will use after
2907 relocation. If unspecified, this is equal to 2906 relocation. If unspecified, this is equal to
2908 CONFIG_SPL_STACK. 2907 CONFIG_SPL_STACK.
2909 2908
2910 CONFIG_SYS_SPL_MALLOC_START 2909 CONFIG_SYS_SPL_MALLOC_START
2911 Starting address of the malloc pool used in SPL. 2910 Starting address of the malloc pool used in SPL.
2912 When this option is set the full malloc is used in SPL and 2911 When this option is set the full malloc is used in SPL and
2913 it is set up by spl_init() and before that, the simple malloc() 2912 it is set up by spl_init() and before that, the simple malloc()
2914 can be used if CONFIG_SYS_MALLOC_F is defined. 2913 can be used if CONFIG_SYS_MALLOC_F is defined.
2915 2914
2916 CONFIG_SYS_SPL_MALLOC_SIZE 2915 CONFIG_SYS_SPL_MALLOC_SIZE
2917 The size of the malloc pool used in SPL. 2916 The size of the malloc pool used in SPL.
2918 2917
2919 CONFIG_SPL_FRAMEWORK 2918 CONFIG_SPL_FRAMEWORK
2920 Enable the SPL framework under common/. This framework 2919 Enable the SPL framework under common/. This framework
2921 supports MMC, NAND and YMODEM loading of U-Boot and NAND 2920 supports MMC, NAND and YMODEM loading of U-Boot and NAND
2922 NAND loading of the Linux Kernel. 2921 NAND loading of the Linux Kernel.
2923 2922
2924 CONFIG_SPL_OS_BOOT 2923 CONFIG_SPL_OS_BOOT
2925 Enable booting directly to an OS from SPL. 2924 Enable booting directly to an OS from SPL.
2926 See also: doc/README.falcon 2925 See also: doc/README.falcon
2927 2926
2928 CONFIG_SPL_DISPLAY_PRINT 2927 CONFIG_SPL_DISPLAY_PRINT
2929 For ARM, enable an optional function to print more information 2928 For ARM, enable an optional function to print more information
2930 about the running system. 2929 about the running system.
2931 2930
2932 CONFIG_SPL_INIT_MINIMAL 2931 CONFIG_SPL_INIT_MINIMAL
2933 Arch init code should be built for a very small image 2932 Arch init code should be built for a very small image
2934 2933
2935 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION 2934 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
2936 Partition on the MMC to load U-Boot from when the MMC is being 2935 Partition on the MMC to load U-Boot from when the MMC is being
2937 used in raw mode 2936 used in raw mode
2938 2937
2939 CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 2938 CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
2940 Sector to load kernel uImage from when MMC is being 2939 Sector to load kernel uImage from when MMC is being
2941 used in raw mode (for Falcon mode) 2940 used in raw mode (for Falcon mode)
2942 2941
2943 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR, 2942 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR,
2944 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 2943 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS
2945 Sector and number of sectors to load kernel argument 2944 Sector and number of sectors to load kernel argument
2946 parameters from when MMC is being used in raw mode 2945 parameters from when MMC is being used in raw mode
2947 (for falcon mode) 2946 (for falcon mode)
2948 2947
2949 CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 2948 CONFIG_SYS_MMCSD_FS_BOOT_PARTITION
2950 Partition on the MMC to load U-Boot from when the MMC is being 2949 Partition on the MMC to load U-Boot from when the MMC is being
2951 used in fs mode 2950 used in fs mode
2952 2951
2953 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME 2952 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME
2954 Filename to read to load U-Boot when reading from filesystem 2953 Filename to read to load U-Boot when reading from filesystem
2955 2954
2956 CONFIG_SPL_FS_LOAD_KERNEL_NAME 2955 CONFIG_SPL_FS_LOAD_KERNEL_NAME
2957 Filename to read to load kernel uImage when reading 2956 Filename to read to load kernel uImage when reading
2958 from filesystem (for Falcon mode) 2957 from filesystem (for Falcon mode)
2959 2958
2960 CONFIG_SPL_FS_LOAD_ARGS_NAME 2959 CONFIG_SPL_FS_LOAD_ARGS_NAME
2961 Filename to read to load kernel argument parameters 2960 Filename to read to load kernel argument parameters
2962 when reading from filesystem (for Falcon mode) 2961 when reading from filesystem (for Falcon mode)
2963 2962
2964 CONFIG_SPL_MPC83XX_WAIT_FOR_NAND 2963 CONFIG_SPL_MPC83XX_WAIT_FOR_NAND
2965 Set this for NAND SPL on PPC mpc83xx targets, so that 2964 Set this for NAND SPL on PPC mpc83xx targets, so that
2966 start.S waits for the rest of the SPL to load before 2965 start.S waits for the rest of the SPL to load before
2967 continuing (the hardware starts execution after just 2966 continuing (the hardware starts execution after just
2968 loading the first page rather than the full 4K). 2967 loading the first page rather than the full 4K).
2969 2968
2970 CONFIG_SPL_SKIP_RELOCATE 2969 CONFIG_SPL_SKIP_RELOCATE
2971 Avoid SPL relocation 2970 Avoid SPL relocation
2972 2971
2973 CONFIG_SPL_NAND_BASE 2972 CONFIG_SPL_NAND_BASE
2974 Include nand_base.c in the SPL. Requires 2973 Include nand_base.c in the SPL. Requires
2975 CONFIG_SPL_NAND_DRIVERS. 2974 CONFIG_SPL_NAND_DRIVERS.
2976 2975
2977 CONFIG_SPL_NAND_DRIVERS 2976 CONFIG_SPL_NAND_DRIVERS
2978 SPL uses normal NAND drivers, not minimal drivers. 2977 SPL uses normal NAND drivers, not minimal drivers.
2979 2978
2980 CONFIG_SPL_NAND_ECC 2979 CONFIG_SPL_NAND_ECC
2981 Include standard software ECC in the SPL 2980 Include standard software ECC in the SPL
2982 2981
2983 CONFIG_SPL_NAND_SIMPLE 2982 CONFIG_SPL_NAND_SIMPLE
2984 Support for NAND boot using simple NAND drivers that 2983 Support for NAND boot using simple NAND drivers that
2985 expose the cmd_ctrl() interface. 2984 expose the cmd_ctrl() interface.
2986 2985
2987 CONFIG_SPL_UBI 2986 CONFIG_SPL_UBI
2988 Support for a lightweight UBI (fastmap) scanner and 2987 Support for a lightweight UBI (fastmap) scanner and
2989 loader 2988 loader
2990 2989
2991 CONFIG_SPL_NAND_RAW_ONLY 2990 CONFIG_SPL_NAND_RAW_ONLY
2992 Support to boot only raw u-boot.bin images. Use this only 2991 Support to boot only raw u-boot.bin images. Use this only
2993 if you need to save space. 2992 if you need to save space.
2994 2993
2995 CONFIG_SPL_COMMON_INIT_DDR 2994 CONFIG_SPL_COMMON_INIT_DDR
2996 Set for common ddr init with serial presence detect in 2995 Set for common ddr init with serial presence detect in
2997 SPL binary. 2996 SPL binary.
2998 2997
2999 CONFIG_SYS_NAND_5_ADDR_CYCLE, CONFIG_SYS_NAND_PAGE_COUNT, 2998 CONFIG_SYS_NAND_5_ADDR_CYCLE, CONFIG_SYS_NAND_PAGE_COUNT,
3000 CONFIG_SYS_NAND_PAGE_SIZE, CONFIG_SYS_NAND_OOBSIZE, 2999 CONFIG_SYS_NAND_PAGE_SIZE, CONFIG_SYS_NAND_OOBSIZE,
3001 CONFIG_SYS_NAND_BLOCK_SIZE, CONFIG_SYS_NAND_BAD_BLOCK_POS, 3000 CONFIG_SYS_NAND_BLOCK_SIZE, CONFIG_SYS_NAND_BAD_BLOCK_POS,
3002 CONFIG_SYS_NAND_ECCPOS, CONFIG_SYS_NAND_ECCSIZE, 3001 CONFIG_SYS_NAND_ECCPOS, CONFIG_SYS_NAND_ECCSIZE,
3003 CONFIG_SYS_NAND_ECCBYTES 3002 CONFIG_SYS_NAND_ECCBYTES
3004 Defines the size and behavior of the NAND that SPL uses 3003 Defines the size and behavior of the NAND that SPL uses
3005 to read U-Boot 3004 to read U-Boot
3006 3005
3007 CONFIG_SPL_NAND_BOOT 3006 CONFIG_SPL_NAND_BOOT
3008 Add support NAND boot 3007 Add support NAND boot
3009 3008
3010 CONFIG_SYS_NAND_U_BOOT_OFFS 3009 CONFIG_SYS_NAND_U_BOOT_OFFS
3011 Location in NAND to read U-Boot from 3010 Location in NAND to read U-Boot from
3012 3011
3013 CONFIG_SYS_NAND_U_BOOT_DST 3012 CONFIG_SYS_NAND_U_BOOT_DST
3014 Location in memory to load U-Boot to 3013 Location in memory to load U-Boot to
3015 3014
3016 CONFIG_SYS_NAND_U_BOOT_SIZE 3015 CONFIG_SYS_NAND_U_BOOT_SIZE
3017 Size of image to load 3016 Size of image to load
3018 3017
3019 CONFIG_SYS_NAND_U_BOOT_START 3018 CONFIG_SYS_NAND_U_BOOT_START
3020 Entry point in loaded image to jump to 3019 Entry point in loaded image to jump to
3021 3020
3022 CONFIG_SYS_NAND_HW_ECC_OOBFIRST 3021 CONFIG_SYS_NAND_HW_ECC_OOBFIRST
3023 Define this if you need to first read the OOB and then the 3022 Define this if you need to first read the OOB and then the
3024 data. This is used, for example, on davinci platforms. 3023 data. This is used, for example, on davinci platforms.
3025 3024
3026 CONFIG_SPL_OMAP3_ID_NAND 3025 CONFIG_SPL_OMAP3_ID_NAND
3027 Support for an OMAP3-specific set of functions to return the 3026 Support for an OMAP3-specific set of functions to return the
3028 ID and MFR of the first attached NAND chip, if present. 3027 ID and MFR of the first attached NAND chip, if present.
3029 3028
3030 CONFIG_SPL_RAM_DEVICE 3029 CONFIG_SPL_RAM_DEVICE
3031 Support for running image already present in ram, in SPL binary 3030 Support for running image already present in ram, in SPL binary
3032 3031
3033 CONFIG_SPL_PAD_TO 3032 CONFIG_SPL_PAD_TO
3034 Image offset to which the SPL should be padded before appending 3033 Image offset to which the SPL should be padded before appending
3035 the SPL payload. By default, this is defined as 3034 the SPL payload. By default, this is defined as
3036 CONFIG_SPL_MAX_SIZE, or 0 if CONFIG_SPL_MAX_SIZE is undefined. 3035 CONFIG_SPL_MAX_SIZE, or 0 if CONFIG_SPL_MAX_SIZE is undefined.
3037 CONFIG_SPL_PAD_TO must be either 0, meaning to append the SPL 3036 CONFIG_SPL_PAD_TO must be either 0, meaning to append the SPL
3038 payload without any padding, or >= CONFIG_SPL_MAX_SIZE. 3037 payload without any padding, or >= CONFIG_SPL_MAX_SIZE.
3039 3038
3040 CONFIG_SPL_TARGET 3039 CONFIG_SPL_TARGET
3041 Final target image containing SPL and payload. Some SPLs 3040 Final target image containing SPL and payload. Some SPLs
3042 use an arch-specific makefile fragment instead, for 3041 use an arch-specific makefile fragment instead, for
3043 example if more than one image needs to be produced. 3042 example if more than one image needs to be produced.
3044 3043
3045 CONFIG_FIT_SPL_PRINT 3044 CONFIG_FIT_SPL_PRINT
3046 Printing information about a FIT image adds quite a bit of 3045 Printing information about a FIT image adds quite a bit of
3047 code to SPL. So this is normally disabled in SPL. Use this 3046 code to SPL. So this is normally disabled in SPL. Use this
3048 option to re-enable it. This will affect the output of the 3047 option to re-enable it. This will affect the output of the
3049 bootm command when booting a FIT image. 3048 bootm command when booting a FIT image.
3050 3049
3051 - TPL framework 3050 - TPL framework
3052 CONFIG_TPL 3051 CONFIG_TPL
3053 Enable building of TPL globally. 3052 Enable building of TPL globally.
3054 3053
3055 CONFIG_TPL_PAD_TO 3054 CONFIG_TPL_PAD_TO
3056 Image offset to which the TPL should be padded before appending 3055 Image offset to which the TPL should be padded before appending
3057 the TPL payload. By default, this is defined as 3056 the TPL payload. By default, this is defined as
3058 CONFIG_SPL_MAX_SIZE, or 0 if CONFIG_SPL_MAX_SIZE is undefined. 3057 CONFIG_SPL_MAX_SIZE, or 0 if CONFIG_SPL_MAX_SIZE is undefined.
3059 CONFIG_SPL_PAD_TO must be either 0, meaning to append the SPL 3058 CONFIG_SPL_PAD_TO must be either 0, meaning to append the SPL
3060 payload without any padding, or >= CONFIG_SPL_MAX_SIZE. 3059 payload without any padding, or >= CONFIG_SPL_MAX_SIZE.
3061 3060
3062 - Interrupt support (PPC): 3061 - Interrupt support (PPC):
3063 3062
3064 There are common interrupt_init() and timer_interrupt() 3063 There are common interrupt_init() and timer_interrupt()
3065 for all PPC archs. interrupt_init() calls interrupt_init_cpu() 3064 for all PPC archs. interrupt_init() calls interrupt_init_cpu()
3066 for CPU specific initialization. interrupt_init_cpu() 3065 for CPU specific initialization. interrupt_init_cpu()
3067 should set decrementer_count to appropriate value. If 3066 should set decrementer_count to appropriate value. If
3068 CPU resets decrementer automatically after interrupt 3067 CPU resets decrementer automatically after interrupt
3069 (ppc4xx) it should set decrementer_count to zero. 3068 (ppc4xx) it should set decrementer_count to zero.
3070 timer_interrupt() calls timer_interrupt_cpu() for CPU 3069 timer_interrupt() calls timer_interrupt_cpu() for CPU
3071 specific handling. If board has watchdog / status_led 3070 specific handling. If board has watchdog / status_led
3072 / other_activity_monitor it works automatically from 3071 / other_activity_monitor it works automatically from
3073 general timer_interrupt(). 3072 general timer_interrupt().
3074 3073
3075 3074
3076 Board initialization settings: 3075 Board initialization settings:
3077 ------------------------------ 3076 ------------------------------
3078 3077
3079 During Initialization u-boot calls a number of board specific functions 3078 During Initialization u-boot calls a number of board specific functions
3080 to allow the preparation of board specific prerequisites, e.g. pin setup 3079 to allow the preparation of board specific prerequisites, e.g. pin setup
3081 before drivers are initialized. To enable these callbacks the 3080 before drivers are initialized. To enable these callbacks the
3082 following configuration macros have to be defined. Currently this is 3081 following configuration macros have to be defined. Currently this is
3083 architecture specific, so please check arch/your_architecture/lib/board.c 3082 architecture specific, so please check arch/your_architecture/lib/board.c
3084 typically in board_init_f() and board_init_r(). 3083 typically in board_init_f() and board_init_r().
3085 3084
3086 - CONFIG_BOARD_EARLY_INIT_F: Call board_early_init_f() 3085 - CONFIG_BOARD_EARLY_INIT_F: Call board_early_init_f()
3087 - CONFIG_BOARD_EARLY_INIT_R: Call board_early_init_r() 3086 - CONFIG_BOARD_EARLY_INIT_R: Call board_early_init_r()
3088 - CONFIG_BOARD_LATE_INIT: Call board_late_init() 3087 - CONFIG_BOARD_LATE_INIT: Call board_late_init()
3089 - CONFIG_BOARD_POSTCLK_INIT: Call board_postclk_init() 3088 - CONFIG_BOARD_POSTCLK_INIT: Call board_postclk_init()
3090 3089
3091 Configuration Settings: 3090 Configuration Settings:
3092 ----------------------- 3091 -----------------------
3093 3092
3094 - CONFIG_SYS_SUPPORT_64BIT_DATA: Defined automatically if compiled as 64-bit. 3093 - CONFIG_SYS_SUPPORT_64BIT_DATA: Defined automatically if compiled as 64-bit.
3095 Optionally it can be defined to support 64-bit memory commands. 3094 Optionally it can be defined to support 64-bit memory commands.
3096 3095
3097 - CONFIG_SYS_LONGHELP: Defined when you want long help messages included; 3096 - CONFIG_SYS_LONGHELP: Defined when you want long help messages included;
3098 undefine this when you're short of memory. 3097 undefine this when you're short of memory.
3099 3098
3100 - CONFIG_SYS_HELP_CMD_WIDTH: Defined when you want to override the default 3099 - CONFIG_SYS_HELP_CMD_WIDTH: Defined when you want to override the default
3101 width of the commands listed in the 'help' command output. 3100 width of the commands listed in the 'help' command output.
3102 3101
3103 - CONFIG_SYS_PROMPT: This is what U-Boot prints on the console to 3102 - CONFIG_SYS_PROMPT: This is what U-Boot prints on the console to
3104 prompt for user input. 3103 prompt for user input.
3105 3104
3106 - CONFIG_SYS_CBSIZE: Buffer size for input from the Console 3105 - CONFIG_SYS_CBSIZE: Buffer size for input from the Console
3107 3106
3108 - CONFIG_SYS_PBSIZE: Buffer size for Console output 3107 - CONFIG_SYS_PBSIZE: Buffer size for Console output
3109 3108
3110 - CONFIG_SYS_MAXARGS: max. Number of arguments accepted for monitor commands 3109 - CONFIG_SYS_MAXARGS: max. Number of arguments accepted for monitor commands
3111 3110
3112 - CONFIG_SYS_BARGSIZE: Buffer size for Boot Arguments which are passed to 3111 - CONFIG_SYS_BARGSIZE: Buffer size for Boot Arguments which are passed to
3113 the application (usually a Linux kernel) when it is 3112 the application (usually a Linux kernel) when it is
3114 booted 3113 booted
3115 3114
3116 - CONFIG_SYS_BAUDRATE_TABLE: 3115 - CONFIG_SYS_BAUDRATE_TABLE:
3117 List of legal baudrate settings for this board. 3116 List of legal baudrate settings for this board.
3118 3117
3119 - CONFIG_SYS_MEMTEST_START, CONFIG_SYS_MEMTEST_END: 3118 - CONFIG_SYS_MEMTEST_START, CONFIG_SYS_MEMTEST_END:
3120 Begin and End addresses of the area used by the 3119 Begin and End addresses of the area used by the
3121 simple memory test. 3120 simple memory test.
3122 3121
3123 - CONFIG_SYS_ALT_MEMTEST: 3122 - CONFIG_SYS_ALT_MEMTEST:
3124 Enable an alternate, more extensive memory test. 3123 Enable an alternate, more extensive memory test.
3125 3124
3126 - CONFIG_SYS_MEMTEST_SCRATCH: 3125 - CONFIG_SYS_MEMTEST_SCRATCH:
3127 Scratch address used by the alternate memory test 3126 Scratch address used by the alternate memory test
3128 You only need to set this if address zero isn't writeable 3127 You only need to set this if address zero isn't writeable
3129 3128
3130 - CONFIG_SYS_MEM_RESERVE_SECURE 3129 - CONFIG_SYS_MEM_RESERVE_SECURE
3131 Only implemented for ARMv8 for now. 3130 Only implemented for ARMv8 for now.
3132 If defined, the size of CONFIG_SYS_MEM_RESERVE_SECURE memory 3131 If defined, the size of CONFIG_SYS_MEM_RESERVE_SECURE memory
3133 is substracted from total RAM and won't be reported to OS. 3132 is substracted from total RAM and won't be reported to OS.
3134 This memory can be used as secure memory. A variable 3133 This memory can be used as secure memory. A variable
3135 gd->arch.secure_ram is used to track the location. In systems 3134 gd->arch.secure_ram is used to track the location. In systems
3136 the RAM base is not zero, or RAM is divided into banks, 3135 the RAM base is not zero, or RAM is divided into banks,
3137 this variable needs to be recalcuated to get the address. 3136 this variable needs to be recalcuated to get the address.
3138 3137
3139 - CONFIG_SYS_MEM_TOP_HIDE: 3138 - CONFIG_SYS_MEM_TOP_HIDE:
3140 If CONFIG_SYS_MEM_TOP_HIDE is defined in the board config header, 3139 If CONFIG_SYS_MEM_TOP_HIDE is defined in the board config header,
3141 this specified memory area will get subtracted from the top 3140 this specified memory area will get subtracted from the top
3142 (end) of RAM and won't get "touched" at all by U-Boot. By 3141 (end) of RAM and won't get "touched" at all by U-Boot. By
3143 fixing up gd->ram_size the Linux kernel should gets passed 3142 fixing up gd->ram_size the Linux kernel should gets passed
3144 the now "corrected" memory size and won't touch it either. 3143 the now "corrected" memory size and won't touch it either.
3145 This should work for arch/ppc and arch/powerpc. Only Linux 3144 This should work for arch/ppc and arch/powerpc. Only Linux
3146 board ports in arch/powerpc with bootwrapper support that 3145 board ports in arch/powerpc with bootwrapper support that
3147 recalculate the memory size from the SDRAM controller setup 3146 recalculate the memory size from the SDRAM controller setup
3148 will have to get fixed in Linux additionally. 3147 will have to get fixed in Linux additionally.
3149 3148
3150 This option can be used as a workaround for the 440EPx/GRx 3149 This option can be used as a workaround for the 440EPx/GRx
3151 CHIP 11 errata where the last 256 bytes in SDRAM shouldn't 3150 CHIP 11 errata where the last 256 bytes in SDRAM shouldn't
3152 be touched. 3151 be touched.
3153 3152
3154 WARNING: Please make sure that this value is a multiple of 3153 WARNING: Please make sure that this value is a multiple of
3155 the Linux page size (normally 4k). If this is not the case, 3154 the Linux page size (normally 4k). If this is not the case,
3156 then the end address of the Linux memory will be located at a 3155 then the end address of the Linux memory will be located at a
3157 non page size aligned address and this could cause major 3156 non page size aligned address and this could cause major
3158 problems. 3157 problems.
3159 3158
3160 - CONFIG_SYS_LOADS_BAUD_CHANGE: 3159 - CONFIG_SYS_LOADS_BAUD_CHANGE:
3161 Enable temporary baudrate change while serial download 3160 Enable temporary baudrate change while serial download
3162 3161
3163 - CONFIG_SYS_SDRAM_BASE: 3162 - CONFIG_SYS_SDRAM_BASE:
3164 Physical start address of SDRAM. _Must_ be 0 here. 3163 Physical start address of SDRAM. _Must_ be 0 here.
3165 3164
3166 - CONFIG_SYS_FLASH_BASE: 3165 - CONFIG_SYS_FLASH_BASE:
3167 Physical start address of Flash memory. 3166 Physical start address of Flash memory.
3168 3167
3169 - CONFIG_SYS_MONITOR_BASE: 3168 - CONFIG_SYS_MONITOR_BASE:
3170 Physical start address of boot monitor code (set by 3169 Physical start address of boot monitor code (set by
3171 make config files to be same as the text base address 3170 make config files to be same as the text base address
3172 (CONFIG_SYS_TEXT_BASE) used when linking) - same as 3171 (CONFIG_SYS_TEXT_BASE) used when linking) - same as
3173 CONFIG_SYS_FLASH_BASE when booting from flash. 3172 CONFIG_SYS_FLASH_BASE when booting from flash.
3174 3173
3175 - CONFIG_SYS_MONITOR_LEN: 3174 - CONFIG_SYS_MONITOR_LEN:
3176 Size of memory reserved for monitor code, used to 3175 Size of memory reserved for monitor code, used to
3177 determine _at_compile_time_ (!) if the environment is 3176 determine _at_compile_time_ (!) if the environment is
3178 embedded within the U-Boot image, or in a separate 3177 embedded within the U-Boot image, or in a separate
3179 flash sector. 3178 flash sector.
3180 3179
3181 - CONFIG_SYS_MALLOC_LEN: 3180 - CONFIG_SYS_MALLOC_LEN:
3182 Size of DRAM reserved for malloc() use. 3181 Size of DRAM reserved for malloc() use.
3183 3182
3184 - CONFIG_SYS_MALLOC_F_LEN 3183 - CONFIG_SYS_MALLOC_F_LEN
3185 Size of the malloc() pool for use before relocation. If 3184 Size of the malloc() pool for use before relocation. If
3186 this is defined, then a very simple malloc() implementation 3185 this is defined, then a very simple malloc() implementation
3187 will become available before relocation. The address is just 3186 will become available before relocation. The address is just
3188 below the global data, and the stack is moved down to make 3187 below the global data, and the stack is moved down to make
3189 space. 3188 space.
3190 3189
3191 This feature allocates regions with increasing addresses 3190 This feature allocates regions with increasing addresses
3192 within the region. calloc() is supported, but realloc() 3191 within the region. calloc() is supported, but realloc()
3193 is not available. free() is supported but does nothing. 3192 is not available. free() is supported but does nothing.
3194 The memory will be freed (or in fact just forgotten) when 3193 The memory will be freed (or in fact just forgotten) when
3195 U-Boot relocates itself. 3194 U-Boot relocates itself.
3196 3195
3197 - CONFIG_SYS_MALLOC_SIMPLE 3196 - CONFIG_SYS_MALLOC_SIMPLE
3198 Provides a simple and small malloc() and calloc() for those 3197 Provides a simple and small malloc() and calloc() for those
3199 boards which do not use the full malloc in SPL (which is 3198 boards which do not use the full malloc in SPL (which is
3200 enabled with CONFIG_SYS_SPL_MALLOC_START). 3199 enabled with CONFIG_SYS_SPL_MALLOC_START).
3201 3200
3202 - CONFIG_SYS_NONCACHED_MEMORY: 3201 - CONFIG_SYS_NONCACHED_MEMORY:
3203 Size of non-cached memory area. This area of memory will be 3202 Size of non-cached memory area. This area of memory will be
3204 typically located right below the malloc() area and mapped 3203 typically located right below the malloc() area and mapped
3205 uncached in the MMU. This is useful for drivers that would 3204 uncached in the MMU. This is useful for drivers that would
3206 otherwise require a lot of explicit cache maintenance. For 3205 otherwise require a lot of explicit cache maintenance. For
3207 some drivers it's also impossible to properly maintain the 3206 some drivers it's also impossible to properly maintain the
3208 cache. For example if the regions that need to be flushed 3207 cache. For example if the regions that need to be flushed
3209 are not a multiple of the cache-line size, *and* padding 3208 are not a multiple of the cache-line size, *and* padding
3210 cannot be allocated between the regions to align them (i.e. 3209 cannot be allocated between the regions to align them (i.e.
3211 if the HW requires a contiguous array of regions, and the 3210 if the HW requires a contiguous array of regions, and the
3212 size of each region is not cache-aligned), then a flush of 3211 size of each region is not cache-aligned), then a flush of
3213 one region may result in overwriting data that hardware has 3212 one region may result in overwriting data that hardware has
3214 written to another region in the same cache-line. This can 3213 written to another region in the same cache-line. This can
3215 happen for example in network drivers where descriptors for 3214 happen for example in network drivers where descriptors for
3216 buffers are typically smaller than the CPU cache-line (e.g. 3215 buffers are typically smaller than the CPU cache-line (e.g.
3217 16 bytes vs. 32 or 64 bytes). 3216 16 bytes vs. 32 or 64 bytes).
3218 3217
3219 Non-cached memory is only supported on 32-bit ARM at present. 3218 Non-cached memory is only supported on 32-bit ARM at present.
3220 3219
3221 - CONFIG_SYS_BOOTM_LEN: 3220 - CONFIG_SYS_BOOTM_LEN:
3222 Normally compressed uImages are limited to an 3221 Normally compressed uImages are limited to an
3223 uncompressed size of 8 MBytes. If this is not enough, 3222 uncompressed size of 8 MBytes. If this is not enough,
3224 you can define CONFIG_SYS_BOOTM_LEN in your board config file 3223 you can define CONFIG_SYS_BOOTM_LEN in your board config file
3225 to adjust this setting to your needs. 3224 to adjust this setting to your needs.
3226 3225
3227 - CONFIG_SYS_BOOTMAPSZ: 3226 - CONFIG_SYS_BOOTMAPSZ:
3228 Maximum size of memory mapped by the startup code of 3227 Maximum size of memory mapped by the startup code of
3229 the Linux kernel; all data that must be processed by 3228 the Linux kernel; all data that must be processed by
3230 the Linux kernel (bd_info, boot arguments, FDT blob if 3229 the Linux kernel (bd_info, boot arguments, FDT blob if
3231 used) must be put below this limit, unless "bootm_low" 3230 used) must be put below this limit, unless "bootm_low"
3232 environment variable is defined and non-zero. In such case 3231 environment variable is defined and non-zero. In such case
3233 all data for the Linux kernel must be between "bootm_low" 3232 all data for the Linux kernel must be between "bootm_low"
3234 and "bootm_low" + CONFIG_SYS_BOOTMAPSZ. The environment 3233 and "bootm_low" + CONFIG_SYS_BOOTMAPSZ. The environment
3235 variable "bootm_mapsize" will override the value of 3234 variable "bootm_mapsize" will override the value of
3236 CONFIG_SYS_BOOTMAPSZ. If CONFIG_SYS_BOOTMAPSZ is undefined, 3235 CONFIG_SYS_BOOTMAPSZ. If CONFIG_SYS_BOOTMAPSZ is undefined,
3237 then the value in "bootm_size" will be used instead. 3236 then the value in "bootm_size" will be used instead.
3238 3237
3239 - CONFIG_SYS_BOOT_RAMDISK_HIGH: 3238 - CONFIG_SYS_BOOT_RAMDISK_HIGH:
3240 Enable initrd_high functionality. If defined then the 3239 Enable initrd_high functionality. If defined then the
3241 initrd_high feature is enabled and the bootm ramdisk subcommand 3240 initrd_high feature is enabled and the bootm ramdisk subcommand
3242 is enabled. 3241 is enabled.
3243 3242
3244 - CONFIG_SYS_BOOT_GET_CMDLINE: 3243 - CONFIG_SYS_BOOT_GET_CMDLINE:
3245 Enables allocating and saving kernel cmdline in space between 3244 Enables allocating and saving kernel cmdline in space between
3246 "bootm_low" and "bootm_low" + BOOTMAPSZ. 3245 "bootm_low" and "bootm_low" + BOOTMAPSZ.
3247 3246
3248 - CONFIG_SYS_BOOT_GET_KBD: 3247 - CONFIG_SYS_BOOT_GET_KBD:
3249 Enables allocating and saving a kernel copy of the bd_info in 3248 Enables allocating and saving a kernel copy of the bd_info in
3250 space between "bootm_low" and "bootm_low" + BOOTMAPSZ. 3249 space between "bootm_low" and "bootm_low" + BOOTMAPSZ.
3251 3250
3252 - CONFIG_SYS_MAX_FLASH_BANKS: 3251 - CONFIG_SYS_MAX_FLASH_BANKS:
3253 Max number of Flash memory banks 3252 Max number of Flash memory banks
3254 3253
3255 - CONFIG_SYS_MAX_FLASH_SECT: 3254 - CONFIG_SYS_MAX_FLASH_SECT:
3256 Max number of sectors on a Flash chip 3255 Max number of sectors on a Flash chip
3257 3256
3258 - CONFIG_SYS_FLASH_ERASE_TOUT: 3257 - CONFIG_SYS_FLASH_ERASE_TOUT:
3259 Timeout for Flash erase operations (in ms) 3258 Timeout for Flash erase operations (in ms)
3260 3259
3261 - CONFIG_SYS_FLASH_WRITE_TOUT: 3260 - CONFIG_SYS_FLASH_WRITE_TOUT:
3262 Timeout for Flash write operations (in ms) 3261 Timeout for Flash write operations (in ms)
3263 3262
3264 - CONFIG_SYS_FLASH_LOCK_TOUT 3263 - CONFIG_SYS_FLASH_LOCK_TOUT
3265 Timeout for Flash set sector lock bit operation (in ms) 3264 Timeout for Flash set sector lock bit operation (in ms)
3266 3265
3267 - CONFIG_SYS_FLASH_UNLOCK_TOUT 3266 - CONFIG_SYS_FLASH_UNLOCK_TOUT
3268 Timeout for Flash clear lock bits operation (in ms) 3267 Timeout for Flash clear lock bits operation (in ms)
3269 3268
3270 - CONFIG_SYS_FLASH_PROTECTION 3269 - CONFIG_SYS_FLASH_PROTECTION
3271 If defined, hardware flash sectors protection is used 3270 If defined, hardware flash sectors protection is used
3272 instead of U-Boot software protection. 3271 instead of U-Boot software protection.
3273 3272
3274 - CONFIG_SYS_DIRECT_FLASH_TFTP: 3273 - CONFIG_SYS_DIRECT_FLASH_TFTP:
3275 3274
3276 Enable TFTP transfers directly to flash memory; 3275 Enable TFTP transfers directly to flash memory;
3277 without this option such a download has to be 3276 without this option such a download has to be
3278 performed in two steps: (1) download to RAM, and (2) 3277 performed in two steps: (1) download to RAM, and (2)
3279 copy from RAM to flash. 3278 copy from RAM to flash.
3280 3279
3281 The two-step approach is usually more reliable, since 3280 The two-step approach is usually more reliable, since
3282 you can check if the download worked before you erase 3281 you can check if the download worked before you erase
3283 the flash, but in some situations (when system RAM is 3282 the flash, but in some situations (when system RAM is
3284 too limited to allow for a temporary copy of the 3283 too limited to allow for a temporary copy of the
3285 downloaded image) this option may be very useful. 3284 downloaded image) this option may be very useful.
3286 3285
3287 - CONFIG_SYS_FLASH_CFI: 3286 - CONFIG_SYS_FLASH_CFI:
3288 Define if the flash driver uses extra elements in the 3287 Define if the flash driver uses extra elements in the
3289 common flash structure for storing flash geometry. 3288 common flash structure for storing flash geometry.
3290 3289
3291 - CONFIG_FLASH_CFI_DRIVER 3290 - CONFIG_FLASH_CFI_DRIVER
3292 This option also enables the building of the cfi_flash driver 3291 This option also enables the building of the cfi_flash driver
3293 in the drivers directory 3292 in the drivers directory
3294 3293
3295 - CONFIG_FLASH_CFI_MTD 3294 - CONFIG_FLASH_CFI_MTD
3296 This option enables the building of the cfi_mtd driver 3295 This option enables the building of the cfi_mtd driver
3297 in the drivers directory. The driver exports CFI flash 3296 in the drivers directory. The driver exports CFI flash
3298 to the MTD layer. 3297 to the MTD layer.
3299 3298
3300 - CONFIG_SYS_FLASH_USE_BUFFER_WRITE 3299 - CONFIG_SYS_FLASH_USE_BUFFER_WRITE
3301 Use buffered writes to flash. 3300 Use buffered writes to flash.
3302 3301
3303 - CONFIG_FLASH_SPANSION_S29WS_N 3302 - CONFIG_FLASH_SPANSION_S29WS_N
3304 s29ws-n MirrorBit flash has non-standard addresses for buffered 3303 s29ws-n MirrorBit flash has non-standard addresses for buffered
3305 write commands. 3304 write commands.
3306 3305
3307 - CONFIG_SYS_FLASH_QUIET_TEST 3306 - CONFIG_SYS_FLASH_QUIET_TEST
3308 If this option is defined, the common CFI flash doesn't 3307 If this option is defined, the common CFI flash doesn't
3309 print it's warning upon not recognized FLASH banks. This 3308 print it's warning upon not recognized FLASH banks. This
3310 is useful, if some of the configured banks are only 3309 is useful, if some of the configured banks are only
3311 optionally available. 3310 optionally available.
3312 3311
3313 - CONFIG_FLASH_SHOW_PROGRESS 3312 - CONFIG_FLASH_SHOW_PROGRESS
3314 If defined (must be an integer), print out countdown 3313 If defined (must be an integer), print out countdown
3315 digits and dots. Recommended value: 45 (9..1) for 80 3314 digits and dots. Recommended value: 45 (9..1) for 80
3316 column displays, 15 (3..1) for 40 column displays. 3315 column displays, 15 (3..1) for 40 column displays.
3317 3316
3318 - CONFIG_FLASH_VERIFY 3317 - CONFIG_FLASH_VERIFY
3319 If defined, the content of the flash (destination) is compared 3318 If defined, the content of the flash (destination) is compared
3320 against the source after the write operation. An error message 3319 against the source after the write operation. An error message
3321 will be printed when the contents are not identical. 3320 will be printed when the contents are not identical.
3322 Please note that this option is useless in nearly all cases, 3321 Please note that this option is useless in nearly all cases,
3323 since such flash programming errors usually are detected earlier 3322 since such flash programming errors usually are detected earlier
3324 while unprotecting/erasing/programming. Please only enable 3323 while unprotecting/erasing/programming. Please only enable
3325 this option if you really know what you are doing. 3324 this option if you really know what you are doing.
3326 3325
3327 - CONFIG_SYS_RX_ETH_BUFFER: 3326 - CONFIG_SYS_RX_ETH_BUFFER:
3328 Defines the number of Ethernet receive buffers. On some 3327 Defines the number of Ethernet receive buffers. On some
3329 Ethernet controllers it is recommended to set this value 3328 Ethernet controllers it is recommended to set this value
3330 to 8 or even higher (EEPRO100 or 405 EMAC), since all 3329 to 8 or even higher (EEPRO100 or 405 EMAC), since all
3331 buffers can be full shortly after enabling the interface 3330 buffers can be full shortly after enabling the interface
3332 on high Ethernet traffic. 3331 on high Ethernet traffic.
3333 Defaults to 4 if not defined. 3332 Defaults to 4 if not defined.
3334 3333
3335 - CONFIG_ENV_MAX_ENTRIES 3334 - CONFIG_ENV_MAX_ENTRIES
3336 3335
3337 Maximum number of entries in the hash table that is used 3336 Maximum number of entries in the hash table that is used
3338 internally to store the environment settings. The default 3337 internally to store the environment settings. The default
3339 setting is supposed to be generous and should work in most 3338 setting is supposed to be generous and should work in most
3340 cases. This setting can be used to tune behaviour; see 3339 cases. This setting can be used to tune behaviour; see
3341 lib/hashtable.c for details. 3340 lib/hashtable.c for details.
3342 3341
3343 - CONFIG_ENV_FLAGS_LIST_DEFAULT 3342 - CONFIG_ENV_FLAGS_LIST_DEFAULT
3344 - CONFIG_ENV_FLAGS_LIST_STATIC 3343 - CONFIG_ENV_FLAGS_LIST_STATIC
3345 Enable validation of the values given to environment variables when 3344 Enable validation of the values given to environment variables when
3346 calling env set. Variables can be restricted to only decimal, 3345 calling env set. Variables can be restricted to only decimal,
3347 hexadecimal, or boolean. If CONFIG_CMD_NET is also defined, 3346 hexadecimal, or boolean. If CONFIG_CMD_NET is also defined,
3348 the variables can also be restricted to IP address or MAC address. 3347 the variables can also be restricted to IP address or MAC address.
3349 3348
3350 The format of the list is: 3349 The format of the list is:
3351 type_attribute = [s|d|x|b|i|m] 3350 type_attribute = [s|d|x|b|i|m]
3352 access_attribute = [a|r|o|c] 3351 access_attribute = [a|r|o|c]
3353 attributes = type_attribute[access_attribute] 3352 attributes = type_attribute[access_attribute]
3354 entry = variable_name[:attributes] 3353 entry = variable_name[:attributes]
3355 list = entry[,list] 3354 list = entry[,list]
3356 3355
3357 The type attributes are: 3356 The type attributes are:
3358 s - String (default) 3357 s - String (default)
3359 d - Decimal 3358 d - Decimal
3360 x - Hexadecimal 3359 x - Hexadecimal
3361 b - Boolean ([1yYtT|0nNfF]) 3360 b - Boolean ([1yYtT|0nNfF])
3362 i - IP address 3361 i - IP address
3363 m - MAC address 3362 m - MAC address
3364 3363
3365 The access attributes are: 3364 The access attributes are:
3366 a - Any (default) 3365 a - Any (default)
3367 r - Read-only 3366 r - Read-only
3368 o - Write-once 3367 o - Write-once
3369 c - Change-default 3368 c - Change-default
3370 3369
3371 - CONFIG_ENV_FLAGS_LIST_DEFAULT 3370 - CONFIG_ENV_FLAGS_LIST_DEFAULT
3372 Define this to a list (string) to define the ".flags" 3371 Define this to a list (string) to define the ".flags"
3373 environment variable in the default or embedded environment. 3372 environment variable in the default or embedded environment.
3374 3373
3375 - CONFIG_ENV_FLAGS_LIST_STATIC 3374 - CONFIG_ENV_FLAGS_LIST_STATIC
3376 Define this to a list (string) to define validation that 3375 Define this to a list (string) to define validation that
3377 should be done if an entry is not found in the ".flags" 3376 should be done if an entry is not found in the ".flags"
3378 environment variable. To override a setting in the static 3377 environment variable. To override a setting in the static
3379 list, simply add an entry for the same variable name to the 3378 list, simply add an entry for the same variable name to the
3380 ".flags" variable. 3379 ".flags" variable.
3381 3380
3382 If CONFIG_REGEX is defined, the variable_name above is evaluated as a 3381 If CONFIG_REGEX is defined, the variable_name above is evaluated as a
3383 regular expression. This allows multiple variables to define the same 3382 regular expression. This allows multiple variables to define the same
3384 flags without explicitly listing them for each variable. 3383 flags without explicitly listing them for each variable.
3385 3384
3386 - CONFIG_ENV_ACCESS_IGNORE_FORCE 3385 - CONFIG_ENV_ACCESS_IGNORE_FORCE
3387 If defined, don't allow the -f switch to env set override variable 3386 If defined, don't allow the -f switch to env set override variable
3388 access flags. 3387 access flags.
3389 3388
3390 - CONFIG_USE_STDINT 3389 - CONFIG_USE_STDINT
3391 If stdint.h is available with your toolchain you can define this 3390 If stdint.h is available with your toolchain you can define this
3392 option to enable it. You can provide option 'USE_STDINT=1' when 3391 option to enable it. You can provide option 'USE_STDINT=1' when
3393 building U-Boot to enable this. 3392 building U-Boot to enable this.
3394 3393
3395 The following definitions that deal with the placement and management 3394 The following definitions that deal with the placement and management
3396 of environment data (variable area); in general, we support the 3395 of environment data (variable area); in general, we support the
3397 following configurations: 3396 following configurations:
3398 3397
3399 - CONFIG_BUILD_ENVCRC: 3398 - CONFIG_BUILD_ENVCRC:
3400 3399
3401 Builds up envcrc with the target environment so that external utils 3400 Builds up envcrc with the target environment so that external utils
3402 may easily extract it and embed it in final U-Boot images. 3401 may easily extract it and embed it in final U-Boot images.
3403 3402
3404 BE CAREFUL! The first access to the environment happens quite early 3403 BE CAREFUL! The first access to the environment happens quite early
3405 in U-Boot initialization (when we try to get the setting of for the 3404 in U-Boot initialization (when we try to get the setting of for the
3406 console baudrate). You *MUST* have mapped your NVRAM area then, or 3405 console baudrate). You *MUST* have mapped your NVRAM area then, or
3407 U-Boot will hang. 3406 U-Boot will hang.
3408 3407
3409 Please note that even with NVRAM we still use a copy of the 3408 Please note that even with NVRAM we still use a copy of the
3410 environment in RAM: we could work on NVRAM directly, but we want to 3409 environment in RAM: we could work on NVRAM directly, but we want to
3411 keep settings there always unmodified except somebody uses "saveenv" 3410 keep settings there always unmodified except somebody uses "saveenv"
3412 to save the current settings. 3411 to save the current settings.
3413 3412
3414 BE CAREFUL! For some special cases, the local device can not use 3413 BE CAREFUL! For some special cases, the local device can not use
3415 "saveenv" command. For example, the local device will get the 3414 "saveenv" command. For example, the local device will get the
3416 environment stored in a remote NOR flash by SRIO or PCIE link, 3415 environment stored in a remote NOR flash by SRIO or PCIE link,
3417 but it can not erase, write this NOR flash by SRIO or PCIE interface. 3416 but it can not erase, write this NOR flash by SRIO or PCIE interface.
3418 3417
3419 - CONFIG_NAND_ENV_DST 3418 - CONFIG_NAND_ENV_DST
3420 3419
3421 Defines address in RAM to which the nand_spl code should copy the 3420 Defines address in RAM to which the nand_spl code should copy the
3422 environment. If redundant environment is used, it will be copied to 3421 environment. If redundant environment is used, it will be copied to
3423 CONFIG_NAND_ENV_DST + CONFIG_ENV_SIZE. 3422 CONFIG_NAND_ENV_DST + CONFIG_ENV_SIZE.
3424 3423
3425 Please note that the environment is read-only until the monitor 3424 Please note that the environment is read-only until the monitor
3426 has been relocated to RAM and a RAM copy of the environment has been 3425 has been relocated to RAM and a RAM copy of the environment has been
3427 created; also, when using EEPROM you will have to use getenv_f() 3426 created; also, when using EEPROM you will have to use getenv_f()
3428 until then to read environment variables. 3427 until then to read environment variables.
3429 3428
3430 The environment is protected by a CRC32 checksum. Before the monitor 3429 The environment is protected by a CRC32 checksum. Before the monitor
3431 is relocated into RAM, as a result of a bad CRC you will be working 3430 is relocated into RAM, as a result of a bad CRC you will be working
3432 with the compiled-in default environment - *silently*!!! [This is 3431 with the compiled-in default environment - *silently*!!! [This is
3433 necessary, because the first environment variable we need is the 3432 necessary, because the first environment variable we need is the
3434 "baudrate" setting for the console - if we have a bad CRC, we don't 3433 "baudrate" setting for the console - if we have a bad CRC, we don't
3435 have any device yet where we could complain.] 3434 have any device yet where we could complain.]
3436 3435
3437 Note: once the monitor has been relocated, then it will complain if 3436 Note: once the monitor has been relocated, then it will complain if
3438 the default environment is used; a new CRC is computed as soon as you 3437 the default environment is used; a new CRC is computed as soon as you
3439 use the "saveenv" command to store a valid environment. 3438 use the "saveenv" command to store a valid environment.
3440 3439
3441 - CONFIG_SYS_FAULT_ECHO_LINK_DOWN: 3440 - CONFIG_SYS_FAULT_ECHO_LINK_DOWN:
3442 Echo the inverted Ethernet link state to the fault LED. 3441 Echo the inverted Ethernet link state to the fault LED.
3443 3442
3444 Note: If this option is active, then CONFIG_SYS_FAULT_MII_ADDR 3443 Note: If this option is active, then CONFIG_SYS_FAULT_MII_ADDR
3445 also needs to be defined. 3444 also needs to be defined.
3446 3445
3447 - CONFIG_SYS_FAULT_MII_ADDR: 3446 - CONFIG_SYS_FAULT_MII_ADDR:
3448 MII address of the PHY to check for the Ethernet link state. 3447 MII address of the PHY to check for the Ethernet link state.
3449 3448
3450 - CONFIG_NS16550_MIN_FUNCTIONS: 3449 - CONFIG_NS16550_MIN_FUNCTIONS:
3451 Define this if you desire to only have use of the NS16550_init 3450 Define this if you desire to only have use of the NS16550_init
3452 and NS16550_putc functions for the serial driver located at 3451 and NS16550_putc functions for the serial driver located at
3453 drivers/serial/ns16550.c. This option is useful for saving 3452 drivers/serial/ns16550.c. This option is useful for saving
3454 space for already greatly restricted images, including but not 3453 space for already greatly restricted images, including but not
3455 limited to NAND_SPL configurations. 3454 limited to NAND_SPL configurations.
3456 3455
3457 - CONFIG_DISPLAY_BOARDINFO 3456 - CONFIG_DISPLAY_BOARDINFO
3458 Display information about the board that U-Boot is running on 3457 Display information about the board that U-Boot is running on
3459 when U-Boot starts up. The board function checkboard() is called 3458 when U-Boot starts up. The board function checkboard() is called
3460 to do this. 3459 to do this.
3461 3460
3462 - CONFIG_DISPLAY_BOARDINFO_LATE 3461 - CONFIG_DISPLAY_BOARDINFO_LATE
3463 Similar to the previous option, but display this information 3462 Similar to the previous option, but display this information
3464 later, once stdio is running and output goes to the LCD, if 3463 later, once stdio is running and output goes to the LCD, if
3465 present. 3464 present.
3466 3465
3467 - CONFIG_BOARD_SIZE_LIMIT: 3466 - CONFIG_BOARD_SIZE_LIMIT:
3468 Maximum size of the U-Boot image. When defined, the 3467 Maximum size of the U-Boot image. When defined, the
3469 build system checks that the actual size does not 3468 build system checks that the actual size does not
3470 exceed it. 3469 exceed it.
3471 3470
3472 Low Level (hardware related) configuration options: 3471 Low Level (hardware related) configuration options:
3473 --------------------------------------------------- 3472 ---------------------------------------------------
3474 3473
3475 - CONFIG_SYS_CACHELINE_SIZE: 3474 - CONFIG_SYS_CACHELINE_SIZE:
3476 Cache Line Size of the CPU. 3475 Cache Line Size of the CPU.
3477 3476
3478 - CONFIG_SYS_CCSRBAR_DEFAULT: 3477 - CONFIG_SYS_CCSRBAR_DEFAULT:
3479 Default (power-on reset) physical address of CCSR on Freescale 3478 Default (power-on reset) physical address of CCSR on Freescale
3480 PowerPC SOCs. 3479 PowerPC SOCs.
3481 3480
3482 - CONFIG_SYS_CCSRBAR: 3481 - CONFIG_SYS_CCSRBAR:
3483 Virtual address of CCSR. On a 32-bit build, this is typically 3482 Virtual address of CCSR. On a 32-bit build, this is typically
3484 the same value as CONFIG_SYS_CCSRBAR_DEFAULT. 3483 the same value as CONFIG_SYS_CCSRBAR_DEFAULT.
3485 3484
3486 - CONFIG_SYS_CCSRBAR_PHYS: 3485 - CONFIG_SYS_CCSRBAR_PHYS:
3487 Physical address of CCSR. CCSR can be relocated to a new 3486 Physical address of CCSR. CCSR can be relocated to a new
3488 physical address, if desired. In this case, this macro should 3487 physical address, if desired. In this case, this macro should
3489 be set to that address. Otherwise, it should be set to the 3488 be set to that address. Otherwise, it should be set to the
3490 same value as CONFIG_SYS_CCSRBAR_DEFAULT. For example, CCSR 3489 same value as CONFIG_SYS_CCSRBAR_DEFAULT. For example, CCSR
3491 is typically relocated on 36-bit builds. It is recommended 3490 is typically relocated on 36-bit builds. It is recommended
3492 that this macro be defined via the _HIGH and _LOW macros: 3491 that this macro be defined via the _HIGH and _LOW macros:
3493 3492
3494 #define CONFIG_SYS_CCSRBAR_PHYS ((CONFIG_SYS_CCSRBAR_PHYS_HIGH 3493 #define CONFIG_SYS_CCSRBAR_PHYS ((CONFIG_SYS_CCSRBAR_PHYS_HIGH
3495 * 1ull) << 32 | CONFIG_SYS_CCSRBAR_PHYS_LOW) 3494 * 1ull) << 32 | CONFIG_SYS_CCSRBAR_PHYS_LOW)
3496 3495
3497 - CONFIG_SYS_CCSRBAR_PHYS_HIGH: 3496 - CONFIG_SYS_CCSRBAR_PHYS_HIGH:
3498 Bits 33-36 of CONFIG_SYS_CCSRBAR_PHYS. This value is typically 3497 Bits 33-36 of CONFIG_SYS_CCSRBAR_PHYS. This value is typically
3499 either 0 (32-bit build) or 0xF (36-bit build). This macro is 3498 either 0 (32-bit build) or 0xF (36-bit build). This macro is
3500 used in assembly code, so it must not contain typecasts or 3499 used in assembly code, so it must not contain typecasts or
3501 integer size suffixes (e.g. "ULL"). 3500 integer size suffixes (e.g. "ULL").
3502 3501
3503 - CONFIG_SYS_CCSRBAR_PHYS_LOW: 3502 - CONFIG_SYS_CCSRBAR_PHYS_LOW:
3504 Lower 32-bits of CONFIG_SYS_CCSRBAR_PHYS. This macro is 3503 Lower 32-bits of CONFIG_SYS_CCSRBAR_PHYS. This macro is
3505 used in assembly code, so it must not contain typecasts or 3504 used in assembly code, so it must not contain typecasts or
3506 integer size suffixes (e.g. "ULL"). 3505 integer size suffixes (e.g. "ULL").
3507 3506
3508 - CONFIG_SYS_CCSR_DO_NOT_RELOCATE: 3507 - CONFIG_SYS_CCSR_DO_NOT_RELOCATE:
3509 If this macro is defined, then CONFIG_SYS_CCSRBAR_PHYS will be 3508 If this macro is defined, then CONFIG_SYS_CCSRBAR_PHYS will be
3510 forced to a value that ensures that CCSR is not relocated. 3509 forced to a value that ensures that CCSR is not relocated.
3511 3510
3512 - Floppy Disk Support: 3511 - Floppy Disk Support:
3513 CONFIG_SYS_FDC_DRIVE_NUMBER 3512 CONFIG_SYS_FDC_DRIVE_NUMBER
3514 3513
3515 the default drive number (default value 0) 3514 the default drive number (default value 0)
3516 3515
3517 CONFIG_SYS_ISA_IO_STRIDE 3516 CONFIG_SYS_ISA_IO_STRIDE
3518 3517
3519 defines the spacing between FDC chipset registers 3518 defines the spacing between FDC chipset registers
3520 (default value 1) 3519 (default value 1)
3521 3520
3522 CONFIG_SYS_ISA_IO_OFFSET 3521 CONFIG_SYS_ISA_IO_OFFSET
3523 3522
3524 defines the offset of register from address. It 3523 defines the offset of register from address. It
3525 depends on which part of the data bus is connected to 3524 depends on which part of the data bus is connected to
3526 the FDC chipset. (default value 0) 3525 the FDC chipset. (default value 0)
3527 3526
3528 If CONFIG_SYS_ISA_IO_STRIDE CONFIG_SYS_ISA_IO_OFFSET and 3527 If CONFIG_SYS_ISA_IO_STRIDE CONFIG_SYS_ISA_IO_OFFSET and
3529 CONFIG_SYS_FDC_DRIVE_NUMBER are undefined, they take their 3528 CONFIG_SYS_FDC_DRIVE_NUMBER are undefined, they take their
3530 default value. 3529 default value.
3531 3530
3532 if CONFIG_SYS_FDC_HW_INIT is defined, then the function 3531 if CONFIG_SYS_FDC_HW_INIT is defined, then the function
3533 fdc_hw_init() is called at the beginning of the FDC 3532 fdc_hw_init() is called at the beginning of the FDC
3534 setup. fdc_hw_init() must be provided by the board 3533 setup. fdc_hw_init() must be provided by the board
3535 source code. It is used to make hardware-dependent 3534 source code. It is used to make hardware-dependent
3536 initializations. 3535 initializations.
3537 3536
3538 - CONFIG_IDE_AHB: 3537 - CONFIG_IDE_AHB:
3539 Most IDE controllers were designed to be connected with PCI 3538 Most IDE controllers were designed to be connected with PCI
3540 interface. Only few of them were designed for AHB interface. 3539 interface. Only few of them were designed for AHB interface.
3541 When software is doing ATA command and data transfer to 3540 When software is doing ATA command and data transfer to
3542 IDE devices through IDE-AHB controller, some additional 3541 IDE devices through IDE-AHB controller, some additional
3543 registers accessing to these kind of IDE-AHB controller 3542 registers accessing to these kind of IDE-AHB controller
3544 is required. 3543 is required.
3545 3544
3546 - CONFIG_SYS_IMMR: Physical address of the Internal Memory. 3545 - CONFIG_SYS_IMMR: Physical address of the Internal Memory.
3547 DO NOT CHANGE unless you know exactly what you're 3546 DO NOT CHANGE unless you know exactly what you're
3548 doing! (11-4) [MPC8xx systems only] 3547 doing! (11-4) [MPC8xx systems only]
3549 3548
3550 - CONFIG_SYS_INIT_RAM_ADDR: 3549 - CONFIG_SYS_INIT_RAM_ADDR:
3551 3550
3552 Start address of memory area that can be used for 3551 Start address of memory area that can be used for
3553 initial data and stack; please note that this must be 3552 initial data and stack; please note that this must be
3554 writable memory that is working WITHOUT special 3553 writable memory that is working WITHOUT special
3555 initialization, i. e. you CANNOT use normal RAM which 3554 initialization, i. e. you CANNOT use normal RAM which
3556 will become available only after programming the 3555 will become available only after programming the
3557 memory controller and running certain initialization 3556 memory controller and running certain initialization
3558 sequences. 3557 sequences.
3559 3558
3560 U-Boot uses the following memory types: 3559 U-Boot uses the following memory types:
3561 - MPC8xx: IMMR (internal memory of the CPU) 3560 - MPC8xx: IMMR (internal memory of the CPU)
3562 3561
3563 - CONFIG_SYS_GBL_DATA_OFFSET: 3562 - CONFIG_SYS_GBL_DATA_OFFSET:
3564 3563
3565 Offset of the initial data structure in the memory 3564 Offset of the initial data structure in the memory
3566 area defined by CONFIG_SYS_INIT_RAM_ADDR. Usually 3565 area defined by CONFIG_SYS_INIT_RAM_ADDR. Usually
3567 CONFIG_SYS_GBL_DATA_OFFSET is chosen such that the initial 3566 CONFIG_SYS_GBL_DATA_OFFSET is chosen such that the initial
3568 data is located at the end of the available space 3567 data is located at the end of the available space
3569 (sometimes written as (CONFIG_SYS_INIT_RAM_SIZE - 3568 (sometimes written as (CONFIG_SYS_INIT_RAM_SIZE -
3570 GENERATED_GBL_DATA_SIZE), and the initial stack is just 3569 GENERATED_GBL_DATA_SIZE), and the initial stack is just
3571 below that area (growing from (CONFIG_SYS_INIT_RAM_ADDR + 3570 below that area (growing from (CONFIG_SYS_INIT_RAM_ADDR +
3572 CONFIG_SYS_GBL_DATA_OFFSET) downward. 3571 CONFIG_SYS_GBL_DATA_OFFSET) downward.
3573 3572
3574 Note: 3573 Note:
3575 On the MPC824X (or other systems that use the data 3574 On the MPC824X (or other systems that use the data
3576 cache for initial memory) the address chosen for 3575 cache for initial memory) the address chosen for
3577 CONFIG_SYS_INIT_RAM_ADDR is basically arbitrary - it must 3576 CONFIG_SYS_INIT_RAM_ADDR is basically arbitrary - it must
3578 point to an otherwise UNUSED address space between 3577 point to an otherwise UNUSED address space between
3579 the top of RAM and the start of the PCI space. 3578 the top of RAM and the start of the PCI space.
3580 3579
3581 - CONFIG_SYS_SCCR: System Clock and reset Control Register (15-27) 3580 - CONFIG_SYS_SCCR: System Clock and reset Control Register (15-27)
3582 3581
3583 - CONFIG_SYS_OR_TIMING_SDRAM: 3582 - CONFIG_SYS_OR_TIMING_SDRAM:
3584 SDRAM timing 3583 SDRAM timing
3585 3584
3586 - CONFIG_SYS_MAMR_PTA: 3585 - CONFIG_SYS_MAMR_PTA:
3587 periodic timer for refresh 3586 periodic timer for refresh
3588 3587
3589 - FLASH_BASE0_PRELIM, FLASH_BASE1_PRELIM, CONFIG_SYS_REMAP_OR_AM, 3588 - FLASH_BASE0_PRELIM, FLASH_BASE1_PRELIM, CONFIG_SYS_REMAP_OR_AM,
3590 CONFIG_SYS_PRELIM_OR_AM, CONFIG_SYS_OR_TIMING_FLASH, CONFIG_SYS_OR0_REMAP, 3589 CONFIG_SYS_PRELIM_OR_AM, CONFIG_SYS_OR_TIMING_FLASH, CONFIG_SYS_OR0_REMAP,
3591 CONFIG_SYS_OR0_PRELIM, CONFIG_SYS_BR0_PRELIM, CONFIG_SYS_OR1_REMAP, CONFIG_SYS_OR1_PRELIM, 3590 CONFIG_SYS_OR0_PRELIM, CONFIG_SYS_BR0_PRELIM, CONFIG_SYS_OR1_REMAP, CONFIG_SYS_OR1_PRELIM,
3592 CONFIG_SYS_BR1_PRELIM: 3591 CONFIG_SYS_BR1_PRELIM:
3593 Memory Controller Definitions: BR0/1 and OR0/1 (FLASH) 3592 Memory Controller Definitions: BR0/1 and OR0/1 (FLASH)
3594 3593
3595 - SDRAM_BASE2_PRELIM, SDRAM_BASE3_PRELIM, SDRAM_MAX_SIZE, 3594 - SDRAM_BASE2_PRELIM, SDRAM_BASE3_PRELIM, SDRAM_MAX_SIZE,
3596 CONFIG_SYS_OR_TIMING_SDRAM, CONFIG_SYS_OR2_PRELIM, CONFIG_SYS_BR2_PRELIM, 3595 CONFIG_SYS_OR_TIMING_SDRAM, CONFIG_SYS_OR2_PRELIM, CONFIG_SYS_BR2_PRELIM,
3597 CONFIG_SYS_OR3_PRELIM, CONFIG_SYS_BR3_PRELIM: 3596 CONFIG_SYS_OR3_PRELIM, CONFIG_SYS_BR3_PRELIM:
3598 Memory Controller Definitions: BR2/3 and OR2/3 (SDRAM) 3597 Memory Controller Definitions: BR2/3 and OR2/3 (SDRAM)
3599 3598
3600 - CONFIG_PCI_ENUM_ONLY 3599 - CONFIG_PCI_ENUM_ONLY
3601 Only scan through and get the devices on the buses. 3600 Only scan through and get the devices on the buses.
3602 Don't do any setup work, presumably because someone or 3601 Don't do any setup work, presumably because someone or
3603 something has already done it, and we don't need to do it 3602 something has already done it, and we don't need to do it
3604 a second time. Useful for platforms that are pre-booted 3603 a second time. Useful for platforms that are pre-booted
3605 by coreboot or similar. 3604 by coreboot or similar.
3606 3605
3607 - CONFIG_PCI_INDIRECT_BRIDGE: 3606 - CONFIG_PCI_INDIRECT_BRIDGE:
3608 Enable support for indirect PCI bridges. 3607 Enable support for indirect PCI bridges.
3609 3608
3610 - CONFIG_SYS_SRIO: 3609 - CONFIG_SYS_SRIO:
3611 Chip has SRIO or not 3610 Chip has SRIO or not
3612 3611
3613 - CONFIG_SRIO1: 3612 - CONFIG_SRIO1:
3614 Board has SRIO 1 port available 3613 Board has SRIO 1 port available
3615 3614
3616 - CONFIG_SRIO2: 3615 - CONFIG_SRIO2:
3617 Board has SRIO 2 port available 3616 Board has SRIO 2 port available
3618 3617
3619 - CONFIG_SRIO_PCIE_BOOT_MASTER 3618 - CONFIG_SRIO_PCIE_BOOT_MASTER
3620 Board can support master function for Boot from SRIO and PCIE 3619 Board can support master function for Boot from SRIO and PCIE
3621 3620
3622 - CONFIG_SYS_SRIOn_MEM_VIRT: 3621 - CONFIG_SYS_SRIOn_MEM_VIRT:
3623 Virtual Address of SRIO port 'n' memory region 3622 Virtual Address of SRIO port 'n' memory region
3624 3623
3625 - CONFIG_SYS_SRIOn_MEM_PHYS: 3624 - CONFIG_SYS_SRIOn_MEM_PHYS:
3626 Physical Address of SRIO port 'n' memory region 3625 Physical Address of SRIO port 'n' memory region
3627 3626
3628 - CONFIG_SYS_SRIOn_MEM_SIZE: 3627 - CONFIG_SYS_SRIOn_MEM_SIZE:
3629 Size of SRIO port 'n' memory region 3628 Size of SRIO port 'n' memory region
3630 3629
3631 - CONFIG_SYS_NAND_BUSWIDTH_16BIT 3630 - CONFIG_SYS_NAND_BUSWIDTH_16BIT
3632 Defined to tell the NAND controller that the NAND chip is using 3631 Defined to tell the NAND controller that the NAND chip is using
3633 a 16 bit bus. 3632 a 16 bit bus.
3634 Not all NAND drivers use this symbol. 3633 Not all NAND drivers use this symbol.
3635 Example of drivers that use it: 3634 Example of drivers that use it:
3636 - drivers/mtd/nand/ndfc.c 3635 - drivers/mtd/nand/ndfc.c
3637 - drivers/mtd/nand/mxc_nand.c 3636 - drivers/mtd/nand/mxc_nand.c
3638 3637
3639 - CONFIG_SYS_NDFC_EBC0_CFG 3638 - CONFIG_SYS_NDFC_EBC0_CFG
3640 Sets the EBC0_CFG register for the NDFC. If not defined 3639 Sets the EBC0_CFG register for the NDFC. If not defined
3641 a default value will be used. 3640 a default value will be used.
3642 3641
3643 - CONFIG_SPD_EEPROM 3642 - CONFIG_SPD_EEPROM
3644 Get DDR timing information from an I2C EEPROM. Common 3643 Get DDR timing information from an I2C EEPROM. Common
3645 with pluggable memory modules such as SODIMMs 3644 with pluggable memory modules such as SODIMMs
3646 3645
3647 SPD_EEPROM_ADDRESS 3646 SPD_EEPROM_ADDRESS
3648 I2C address of the SPD EEPROM 3647 I2C address of the SPD EEPROM
3649 3648
3650 - CONFIG_SYS_SPD_BUS_NUM 3649 - CONFIG_SYS_SPD_BUS_NUM
3651 If SPD EEPROM is on an I2C bus other than the first 3650 If SPD EEPROM is on an I2C bus other than the first
3652 one, specify here. Note that the value must resolve 3651 one, specify here. Note that the value must resolve
3653 to something your driver can deal with. 3652 to something your driver can deal with.
3654 3653
3655 - CONFIG_SYS_DDR_RAW_TIMING 3654 - CONFIG_SYS_DDR_RAW_TIMING
3656 Get DDR timing information from other than SPD. Common with 3655 Get DDR timing information from other than SPD. Common with
3657 soldered DDR chips onboard without SPD. DDR raw timing 3656 soldered DDR chips onboard without SPD. DDR raw timing
3658 parameters are extracted from datasheet and hard-coded into 3657 parameters are extracted from datasheet and hard-coded into
3659 header files or board specific files. 3658 header files or board specific files.
3660 3659
3661 - CONFIG_FSL_DDR_INTERACTIVE 3660 - CONFIG_FSL_DDR_INTERACTIVE
3662 Enable interactive DDR debugging. See doc/README.fsl-ddr. 3661 Enable interactive DDR debugging. See doc/README.fsl-ddr.
3663 3662
3664 - CONFIG_FSL_DDR_SYNC_REFRESH 3663 - CONFIG_FSL_DDR_SYNC_REFRESH
3665 Enable sync of refresh for multiple controllers. 3664 Enable sync of refresh for multiple controllers.
3666 3665
3667 - CONFIG_FSL_DDR_BIST 3666 - CONFIG_FSL_DDR_BIST
3668 Enable built-in memory test for Freescale DDR controllers. 3667 Enable built-in memory test for Freescale DDR controllers.
3669 3668
3670 - CONFIG_SYS_83XX_DDR_USES_CS0 3669 - CONFIG_SYS_83XX_DDR_USES_CS0
3671 Only for 83xx systems. If specified, then DDR should 3670 Only for 83xx systems. If specified, then DDR should
3672 be configured using CS0 and CS1 instead of CS2 and CS3. 3671 be configured using CS0 and CS1 instead of CS2 and CS3.
3673 3672
3674 - CONFIG_RMII 3673 - CONFIG_RMII
3675 Enable RMII mode for all FECs. 3674 Enable RMII mode for all FECs.
3676 Note that this is a global option, we can't 3675 Note that this is a global option, we can't
3677 have one FEC in standard MII mode and another in RMII mode. 3676 have one FEC in standard MII mode and another in RMII mode.
3678 3677
3679 - CONFIG_CRC32_VERIFY 3678 - CONFIG_CRC32_VERIFY
3680 Add a verify option to the crc32 command. 3679 Add a verify option to the crc32 command.
3681 The syntax is: 3680 The syntax is:
3682 3681
3683 => crc32 -v <address> <count> <crc32> 3682 => crc32 -v <address> <count> <crc32>
3684 3683
3685 Where address/count indicate a memory area 3684 Where address/count indicate a memory area
3686 and crc32 is the correct crc32 which the 3685 and crc32 is the correct crc32 which the
3687 area should have. 3686 area should have.
3688 3687
3689 - CONFIG_LOOPW 3688 - CONFIG_LOOPW
3690 Add the "loopw" memory command. This only takes effect if 3689 Add the "loopw" memory command. This only takes effect if
3691 the memory commands are activated globally (CONFIG_CMD_MEMORY). 3690 the memory commands are activated globally (CONFIG_CMD_MEMORY).
3692 3691
3693 - CONFIG_MX_CYCLIC 3692 - CONFIG_MX_CYCLIC
3694 Add the "mdc" and "mwc" memory commands. These are cyclic 3693 Add the "mdc" and "mwc" memory commands. These are cyclic
3695 "md/mw" commands. 3694 "md/mw" commands.
3696 Examples: 3695 Examples:
3697 3696
3698 => mdc.b 10 4 500 3697 => mdc.b 10 4 500
3699 This command will print 4 bytes (10,11,12,13) each 500 ms. 3698 This command will print 4 bytes (10,11,12,13) each 500 ms.
3700 3699
3701 => mwc.l 100 12345678 10 3700 => mwc.l 100 12345678 10
3702 This command will write 12345678 to address 100 all 10 ms. 3701 This command will write 12345678 to address 100 all 10 ms.
3703 3702
3704 This only takes effect if the memory commands are activated 3703 This only takes effect if the memory commands are activated
3705 globally (CONFIG_CMD_MEMORY). 3704 globally (CONFIG_CMD_MEMORY).
3706 3705
3707 - CONFIG_SKIP_LOWLEVEL_INIT 3706 - CONFIG_SKIP_LOWLEVEL_INIT
3708 [ARM, NDS32, MIPS only] If this variable is defined, then certain 3707 [ARM, NDS32, MIPS only] If this variable is defined, then certain
3709 low level initializations (like setting up the memory 3708 low level initializations (like setting up the memory
3710 controller) are omitted and/or U-Boot does not 3709 controller) are omitted and/or U-Boot does not
3711 relocate itself into RAM. 3710 relocate itself into RAM.
3712 3711
3713 Normally this variable MUST NOT be defined. The only 3712 Normally this variable MUST NOT be defined. The only
3714 exception is when U-Boot is loaded (to RAM) by some 3713 exception is when U-Boot is loaded (to RAM) by some
3715 other boot loader or by a debugger which performs 3714 other boot loader or by a debugger which performs
3716 these initializations itself. 3715 these initializations itself.
3717 3716
3718 - CONFIG_SKIP_LOWLEVEL_INIT_ONLY 3717 - CONFIG_SKIP_LOWLEVEL_INIT_ONLY
3719 [ARM926EJ-S only] This allows just the call to lowlevel_init() 3718 [ARM926EJ-S only] This allows just the call to lowlevel_init()
3720 to be skipped. The normal CP15 init (such as enabling the 3719 to be skipped. The normal CP15 init (such as enabling the
3721 instruction cache) is still performed. 3720 instruction cache) is still performed.
3722 3721
3723 - CONFIG_SPL_BUILD 3722 - CONFIG_SPL_BUILD
3724 Modifies the behaviour of start.S when compiling a loader 3723 Modifies the behaviour of start.S when compiling a loader
3725 that is executed before the actual U-Boot. E.g. when 3724 that is executed before the actual U-Boot. E.g. when
3726 compiling a NAND SPL. 3725 compiling a NAND SPL.
3727 3726
3728 - CONFIG_TPL_BUILD 3727 - CONFIG_TPL_BUILD
3729 Modifies the behaviour of start.S when compiling a loader 3728 Modifies the behaviour of start.S when compiling a loader
3730 that is executed after the SPL and before the actual U-Boot. 3729 that is executed after the SPL and before the actual U-Boot.
3731 It is loaded by the SPL. 3730 It is loaded by the SPL.
3732 3731
3733 - CONFIG_SYS_MPC85XX_NO_RESETVEC 3732 - CONFIG_SYS_MPC85XX_NO_RESETVEC
3734 Only for 85xx systems. If this variable is specified, the section 3733 Only for 85xx systems. If this variable is specified, the section
3735 .resetvec is not kept and the section .bootpg is placed in the 3734 .resetvec is not kept and the section .bootpg is placed in the
3736 previous 4k of the .text section. 3735 previous 4k of the .text section.
3737 3736
3738 - CONFIG_ARCH_MAP_SYSMEM 3737 - CONFIG_ARCH_MAP_SYSMEM
3739 Generally U-Boot (and in particular the md command) uses 3738 Generally U-Boot (and in particular the md command) uses
3740 effective address. It is therefore not necessary to regard 3739 effective address. It is therefore not necessary to regard
3741 U-Boot address as virtual addresses that need to be translated 3740 U-Boot address as virtual addresses that need to be translated
3742 to physical addresses. However, sandbox requires this, since 3741 to physical addresses. However, sandbox requires this, since
3743 it maintains its own little RAM buffer which contains all 3742 it maintains its own little RAM buffer which contains all
3744 addressable memory. This option causes some memory accesses 3743 addressable memory. This option causes some memory accesses
3745 to be mapped through map_sysmem() / unmap_sysmem(). 3744 to be mapped through map_sysmem() / unmap_sysmem().
3746 3745
3747 - CONFIG_X86_RESET_VECTOR 3746 - CONFIG_X86_RESET_VECTOR
3748 If defined, the x86 reset vector code is included. This is not 3747 If defined, the x86 reset vector code is included. This is not
3749 needed when U-Boot is running from Coreboot. 3748 needed when U-Boot is running from Coreboot.
3750 3749
3751 - CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC: 3750 - CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC:
3752 Enables the RTC32K OSC on AM33xx based plattforms 3751 Enables the RTC32K OSC on AM33xx based plattforms
3753 3752
3754 - CONFIG_SYS_NAND_NO_SUBPAGE_WRITE 3753 - CONFIG_SYS_NAND_NO_SUBPAGE_WRITE
3755 Option to disable subpage write in NAND driver 3754 Option to disable subpage write in NAND driver
3756 driver that uses this: 3755 driver that uses this:
3757 drivers/mtd/nand/davinci_nand.c 3756 drivers/mtd/nand/davinci_nand.c
3758 3757
3759 Freescale QE/FMAN Firmware Support: 3758 Freescale QE/FMAN Firmware Support:
3760 ----------------------------------- 3759 -----------------------------------
3761 3760
3762 The Freescale QUICCEngine (QE) and Frame Manager (FMAN) both support the 3761 The Freescale QUICCEngine (QE) and Frame Manager (FMAN) both support the
3763 loading of "firmware", which is encoded in the QE firmware binary format. 3762 loading of "firmware", which is encoded in the QE firmware binary format.
3764 This firmware often needs to be loaded during U-Boot booting, so macros 3763 This firmware often needs to be loaded during U-Boot booting, so macros
3765 are used to identify the storage device (NOR flash, SPI, etc) and the address 3764 are used to identify the storage device (NOR flash, SPI, etc) and the address
3766 within that device. 3765 within that device.
3767 3766
3768 - CONFIG_SYS_FMAN_FW_ADDR 3767 - CONFIG_SYS_FMAN_FW_ADDR
3769 The address in the storage device where the FMAN microcode is located. The 3768 The address in the storage device where the FMAN microcode is located. The
3770 meaning of this address depends on which CONFIG_SYS_QE_FW_IN_xxx macro 3769 meaning of this address depends on which CONFIG_SYS_QE_FW_IN_xxx macro
3771 is also specified. 3770 is also specified.
3772 3771
3773 - CONFIG_SYS_QE_FW_ADDR 3772 - CONFIG_SYS_QE_FW_ADDR
3774 The address in the storage device where the QE microcode is located. The 3773 The address in the storage device where the QE microcode is located. The
3775 meaning of this address depends on which CONFIG_SYS_QE_FW_IN_xxx macro 3774 meaning of this address depends on which CONFIG_SYS_QE_FW_IN_xxx macro
3776 is also specified. 3775 is also specified.
3777 3776
3778 - CONFIG_SYS_QE_FMAN_FW_LENGTH 3777 - CONFIG_SYS_QE_FMAN_FW_LENGTH
3779 The maximum possible size of the firmware. The firmware binary format 3778 The maximum possible size of the firmware. The firmware binary format
3780 has a field that specifies the actual size of the firmware, but it 3779 has a field that specifies the actual size of the firmware, but it
3781 might not be possible to read any part of the firmware unless some 3780 might not be possible to read any part of the firmware unless some
3782 local storage is allocated to hold the entire firmware first. 3781 local storage is allocated to hold the entire firmware first.
3783 3782
3784 - CONFIG_SYS_QE_FMAN_FW_IN_NOR 3783 - CONFIG_SYS_QE_FMAN_FW_IN_NOR
3785 Specifies that QE/FMAN firmware is located in NOR flash, mapped as 3784 Specifies that QE/FMAN firmware is located in NOR flash, mapped as
3786 normal addressable memory via the LBC. CONFIG_SYS_FMAN_FW_ADDR is the 3785 normal addressable memory via the LBC. CONFIG_SYS_FMAN_FW_ADDR is the
3787 virtual address in NOR flash. 3786 virtual address in NOR flash.
3788 3787
3789 - CONFIG_SYS_QE_FMAN_FW_IN_NAND 3788 - CONFIG_SYS_QE_FMAN_FW_IN_NAND
3790 Specifies that QE/FMAN firmware is located in NAND flash. 3789 Specifies that QE/FMAN firmware is located in NAND flash.
3791 CONFIG_SYS_FMAN_FW_ADDR is the offset within NAND flash. 3790 CONFIG_SYS_FMAN_FW_ADDR is the offset within NAND flash.
3792 3791
3793 - CONFIG_SYS_QE_FMAN_FW_IN_MMC 3792 - CONFIG_SYS_QE_FMAN_FW_IN_MMC
3794 Specifies that QE/FMAN firmware is located on the primary SD/MMC 3793 Specifies that QE/FMAN firmware is located on the primary SD/MMC
3795 device. CONFIG_SYS_FMAN_FW_ADDR is the byte offset on that device. 3794 device. CONFIG_SYS_FMAN_FW_ADDR is the byte offset on that device.
3796 3795
3797 - CONFIG_SYS_QE_FMAN_FW_IN_REMOTE 3796 - CONFIG_SYS_QE_FMAN_FW_IN_REMOTE
3798 Specifies that QE/FMAN firmware is located in the remote (master) 3797 Specifies that QE/FMAN firmware is located in the remote (master)
3799 memory space. CONFIG_SYS_FMAN_FW_ADDR is a virtual address which 3798 memory space. CONFIG_SYS_FMAN_FW_ADDR is a virtual address which
3800 can be mapped from slave TLB->slave LAW->slave SRIO or PCIE outbound 3799 can be mapped from slave TLB->slave LAW->slave SRIO or PCIE outbound
3801 window->master inbound window->master LAW->the ucode address in 3800 window->master inbound window->master LAW->the ucode address in
3802 master's memory space. 3801 master's memory space.
3803 3802
3804 Freescale Layerscape Management Complex Firmware Support: 3803 Freescale Layerscape Management Complex Firmware Support:
3805 --------------------------------------------------------- 3804 ---------------------------------------------------------
3806 The Freescale Layerscape Management Complex (MC) supports the loading of 3805 The Freescale Layerscape Management Complex (MC) supports the loading of
3807 "firmware". 3806 "firmware".
3808 This firmware often needs to be loaded during U-Boot booting, so macros 3807 This firmware often needs to be loaded during U-Boot booting, so macros
3809 are used to identify the storage device (NOR flash, SPI, etc) and the address 3808 are used to identify the storage device (NOR flash, SPI, etc) and the address
3810 within that device. 3809 within that device.
3811 3810
3812 - CONFIG_FSL_MC_ENET 3811 - CONFIG_FSL_MC_ENET
3813 Enable the MC driver for Layerscape SoCs. 3812 Enable the MC driver for Layerscape SoCs.
3814 3813
3815 Freescale Layerscape Debug Server Support: 3814 Freescale Layerscape Debug Server Support:
3816 ------------------------------------------- 3815 -------------------------------------------
3817 The Freescale Layerscape Debug Server Support supports the loading of 3816 The Freescale Layerscape Debug Server Support supports the loading of
3818 "Debug Server firmware" and triggering SP boot-rom. 3817 "Debug Server firmware" and triggering SP boot-rom.
3819 This firmware often needs to be loaded during U-Boot booting. 3818 This firmware often needs to be loaded during U-Boot booting.
3820 3819
3821 - CONFIG_SYS_MC_RSV_MEM_ALIGN 3820 - CONFIG_SYS_MC_RSV_MEM_ALIGN
3822 Define alignment of reserved memory MC requires 3821 Define alignment of reserved memory MC requires
3823 3822
3824 Reproducible builds 3823 Reproducible builds
3825 ------------------- 3824 -------------------
3826 3825
3827 In order to achieve reproducible builds, timestamps used in the U-Boot build 3826 In order to achieve reproducible builds, timestamps used in the U-Boot build
3828 process have to be set to a fixed value. 3827 process have to be set to a fixed value.
3829 3828
3830 This is done using the SOURCE_DATE_EPOCH environment variable. 3829 This is done using the SOURCE_DATE_EPOCH environment variable.
3831 SOURCE_DATE_EPOCH is to be set on the build host's shell, not as a configuration 3830 SOURCE_DATE_EPOCH is to be set on the build host's shell, not as a configuration
3832 option for U-Boot or an environment variable in U-Boot. 3831 option for U-Boot or an environment variable in U-Boot.
3833 3832
3834 SOURCE_DATE_EPOCH should be set to a number of seconds since the epoch, in UTC. 3833 SOURCE_DATE_EPOCH should be set to a number of seconds since the epoch, in UTC.
3835 3834
3836 Building the Software: 3835 Building the Software:
3837 ====================== 3836 ======================
3838 3837
3839 Building U-Boot has been tested in several native build environments 3838 Building U-Boot has been tested in several native build environments
3840 and in many different cross environments. Of course we cannot support 3839 and in many different cross environments. Of course we cannot support
3841 all possibly existing versions of cross development tools in all 3840 all possibly existing versions of cross development tools in all
3842 (potentially obsolete) versions. In case of tool chain problems we 3841 (potentially obsolete) versions. In case of tool chain problems we
3843 recommend to use the ELDK (see http://www.denx.de/wiki/DULG/ELDK) 3842 recommend to use the ELDK (see http://www.denx.de/wiki/DULG/ELDK)
3844 which is extensively used to build and test U-Boot. 3843 which is extensively used to build and test U-Boot.
3845 3844
3846 If you are not using a native environment, it is assumed that you 3845 If you are not using a native environment, it is assumed that you
3847 have GNU cross compiling tools available in your path. In this case, 3846 have GNU cross compiling tools available in your path. In this case,
3848 you must set the environment variable CROSS_COMPILE in your shell. 3847 you must set the environment variable CROSS_COMPILE in your shell.
3849 Note that no changes to the Makefile or any other source files are 3848 Note that no changes to the Makefile or any other source files are
3850 necessary. For example using the ELDK on a 4xx CPU, please enter: 3849 necessary. For example using the ELDK on a 4xx CPU, please enter:
3851 3850
3852 $ CROSS_COMPILE=ppc_4xx- 3851 $ CROSS_COMPILE=ppc_4xx-
3853 $ export CROSS_COMPILE 3852 $ export CROSS_COMPILE
3854 3853
3855 Note: If you wish to generate Windows versions of the utilities in 3854 Note: If you wish to generate Windows versions of the utilities in
3856 the tools directory you can use the MinGW toolchain 3855 the tools directory you can use the MinGW toolchain
3857 (http://www.mingw.org). Set your HOST tools to the MinGW 3856 (http://www.mingw.org). Set your HOST tools to the MinGW
3858 toolchain and execute 'make tools'. For example: 3857 toolchain and execute 'make tools'. For example:
3859 3858
3860 $ make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools 3859 $ make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
3861 3860
3862 Binaries such as tools/mkimage.exe will be created which can 3861 Binaries such as tools/mkimage.exe will be created which can
3863 be executed on computers running Windows. 3862 be executed on computers running Windows.
3864 3863
3865 U-Boot is intended to be simple to build. After installing the 3864 U-Boot is intended to be simple to build. After installing the
3866 sources you must configure U-Boot for one specific board type. This 3865 sources you must configure U-Boot for one specific board type. This
3867 is done by typing: 3866 is done by typing:
3868 3867
3869 make NAME_defconfig 3868 make NAME_defconfig
3870 3869
3871 where "NAME_defconfig" is the name of one of the existing configu- 3870 where "NAME_defconfig" is the name of one of the existing configu-
3872 rations; see boards.cfg for supported names. 3871 rations; see boards.cfg for supported names.
3873 3872
3874 Note: for some board special configuration names may exist; check if 3873 Note: for some board special configuration names may exist; check if
3875 additional information is available from the board vendor; for 3874 additional information is available from the board vendor; for
3876 instance, the TQM823L systems are available without (standard) 3875 instance, the TQM823L systems are available without (standard)
3877 or with LCD support. You can select such additional "features" 3876 or with LCD support. You can select such additional "features"
3878 when choosing the configuration, i. e. 3877 when choosing the configuration, i. e.
3879 3878
3880 make TQM823L_defconfig 3879 make TQM823L_defconfig
3881 - will configure for a plain TQM823L, i. e. no LCD support 3880 - will configure for a plain TQM823L, i. e. no LCD support
3882 3881
3883 make TQM823L_LCD_defconfig 3882 make TQM823L_LCD_defconfig
3884 - will configure for a TQM823L with U-Boot console on LCD 3883 - will configure for a TQM823L with U-Boot console on LCD
3885 3884
3886 etc. 3885 etc.
3887 3886
3888 3887
3889 Finally, type "make all", and you should get some working U-Boot 3888 Finally, type "make all", and you should get some working U-Boot
3890 images ready for download to / installation on your system: 3889 images ready for download to / installation on your system:
3891 3890
3892 - "u-boot.bin" is a raw binary image 3891 - "u-boot.bin" is a raw binary image
3893 - "u-boot" is an image in ELF binary format 3892 - "u-boot" is an image in ELF binary format
3894 - "u-boot.srec" is in Motorola S-Record format 3893 - "u-boot.srec" is in Motorola S-Record format
3895 3894
3896 By default the build is performed locally and the objects are saved 3895 By default the build is performed locally and the objects are saved
3897 in the source directory. One of the two methods can be used to change 3896 in the source directory. One of the two methods can be used to change
3898 this behavior and build U-Boot to some external directory: 3897 this behavior and build U-Boot to some external directory:
3899 3898
3900 1. Add O= to the make command line invocations: 3899 1. Add O= to the make command line invocations:
3901 3900
3902 make O=/tmp/build distclean 3901 make O=/tmp/build distclean
3903 make O=/tmp/build NAME_defconfig 3902 make O=/tmp/build NAME_defconfig
3904 make O=/tmp/build all 3903 make O=/tmp/build all
3905 3904
3906 2. Set environment variable KBUILD_OUTPUT to point to the desired location: 3905 2. Set environment variable KBUILD_OUTPUT to point to the desired location:
3907 3906
3908 export KBUILD_OUTPUT=/tmp/build 3907 export KBUILD_OUTPUT=/tmp/build
3909 make distclean 3908 make distclean
3910 make NAME_defconfig 3909 make NAME_defconfig
3911 make all 3910 make all
3912 3911
3913 Note that the command line "O=" setting overrides the KBUILD_OUTPUT environment 3912 Note that the command line "O=" setting overrides the KBUILD_OUTPUT environment
3914 variable. 3913 variable.
3915 3914
3916 3915
3917 Please be aware that the Makefiles assume you are using GNU make, so 3916 Please be aware that the Makefiles assume you are using GNU make, so
3918 for instance on NetBSD you might need to use "gmake" instead of 3917 for instance on NetBSD you might need to use "gmake" instead of
3919 native "make". 3918 native "make".
3920 3919
3921 3920
3922 If the system board that you have is not listed, then you will need 3921 If the system board that you have is not listed, then you will need
3923 to port U-Boot to your hardware platform. To do this, follow these 3922 to port U-Boot to your hardware platform. To do this, follow these
3924 steps: 3923 steps:
3925 3924
3926 1. Create a new directory to hold your board specific code. Add any 3925 1. Create a new directory to hold your board specific code. Add any
3927 files you need. In your board directory, you will need at least 3926 files you need. In your board directory, you will need at least
3928 the "Makefile" and a "<board>.c". 3927 the "Makefile" and a "<board>.c".
3929 2. Create a new configuration file "include/configs/<board>.h" for 3928 2. Create a new configuration file "include/configs/<board>.h" for
3930 your board. 3929 your board.
3931 3. If you're porting U-Boot to a new CPU, then also create a new 3930 3. If you're porting U-Boot to a new CPU, then also create a new
3932 directory to hold your CPU specific code. Add any files you need. 3931 directory to hold your CPU specific code. Add any files you need.
3933 4. Run "make <board>_defconfig" with your new name. 3932 4. Run "make <board>_defconfig" with your new name.
3934 5. Type "make", and you should get a working "u-boot.srec" file 3933 5. Type "make", and you should get a working "u-boot.srec" file
3935 to be installed on your target system. 3934 to be installed on your target system.
3936 6. Debug and solve any problems that might arise. 3935 6. Debug and solve any problems that might arise.
3937 [Of course, this last step is much harder than it sounds.] 3936 [Of course, this last step is much harder than it sounds.]
3938 3937
3939 3938
3940 Testing of U-Boot Modifications, Ports to New Hardware, etc.: 3939 Testing of U-Boot Modifications, Ports to New Hardware, etc.:
3941 ============================================================== 3940 ==============================================================
3942 3941
3943 If you have modified U-Boot sources (for instance added a new board 3942 If you have modified U-Boot sources (for instance added a new board
3944 or support for new devices, a new CPU, etc.) you are expected to 3943 or support for new devices, a new CPU, etc.) you are expected to
3945 provide feedback to the other developers. The feedback normally takes 3944 provide feedback to the other developers. The feedback normally takes
3946 the form of a "patch", i. e. a context diff against a certain (latest 3945 the form of a "patch", i. e. a context diff against a certain (latest
3947 official or latest in the git repository) version of U-Boot sources. 3946 official or latest in the git repository) version of U-Boot sources.
3948 3947
3949 But before you submit such a patch, please verify that your modifi- 3948 But before you submit such a patch, please verify that your modifi-
3950 cation did not break existing code. At least make sure that *ALL* of 3949 cation did not break existing code. At least make sure that *ALL* of
3951 the supported boards compile WITHOUT ANY compiler warnings. To do so, 3950 the supported boards compile WITHOUT ANY compiler warnings. To do so,
3952 just run the buildman script (tools/buildman/buildman), which will 3951 just run the buildman script (tools/buildman/buildman), which will
3953 configure and build U-Boot for ALL supported system. Be warned, this 3952 configure and build U-Boot for ALL supported system. Be warned, this
3954 will take a while. Please see the buildman README, or run 'buildman -H' 3953 will take a while. Please see the buildman README, or run 'buildman -H'
3955 for documentation. 3954 for documentation.
3956 3955
3957 3956
3958 See also "U-Boot Porting Guide" below. 3957 See also "U-Boot Porting Guide" below.
3959 3958
3960 3959
3961 Monitor Commands - Overview: 3960 Monitor Commands - Overview:
3962 ============================ 3961 ============================
3963 3962
3964 go - start application at address 'addr' 3963 go - start application at address 'addr'
3965 run - run commands in an environment variable 3964 run - run commands in an environment variable
3966 bootm - boot application image from memory 3965 bootm - boot application image from memory
3967 bootp - boot image via network using BootP/TFTP protocol 3966 bootp - boot image via network using BootP/TFTP protocol
3968 bootz - boot zImage from memory 3967 bootz - boot zImage from memory
3969 tftpboot- boot image via network using TFTP protocol 3968 tftpboot- boot image via network using TFTP protocol
3970 and env variables "ipaddr" and "serverip" 3969 and env variables "ipaddr" and "serverip"
3971 (and eventually "gatewayip") 3970 (and eventually "gatewayip")
3972 tftpput - upload a file via network using TFTP protocol 3971 tftpput - upload a file via network using TFTP protocol
3973 rarpboot- boot image via network using RARP/TFTP protocol 3972 rarpboot- boot image via network using RARP/TFTP protocol
3974 diskboot- boot from IDE devicebootd - boot default, i.e., run 'bootcmd' 3973 diskboot- boot from IDE devicebootd - boot default, i.e., run 'bootcmd'
3975 loads - load S-Record file over serial line 3974 loads - load S-Record file over serial line
3976 loadb - load binary file over serial line (kermit mode) 3975 loadb - load binary file over serial line (kermit mode)
3977 md - memory display 3976 md - memory display
3978 mm - memory modify (auto-incrementing) 3977 mm - memory modify (auto-incrementing)
3979 nm - memory modify (constant address) 3978 nm - memory modify (constant address)
3980 mw - memory write (fill) 3979 mw - memory write (fill)
3981 cp - memory copy 3980 cp - memory copy
3982 cmp - memory compare 3981 cmp - memory compare
3983 crc32 - checksum calculation 3982 crc32 - checksum calculation
3984 i2c - I2C sub-system 3983 i2c - I2C sub-system
3985 sspi - SPI utility commands 3984 sspi - SPI utility commands
3986 base - print or set address offset 3985 base - print or set address offset
3987 printenv- print environment variables 3986 printenv- print environment variables
3988 setenv - set environment variables 3987 setenv - set environment variables
3989 saveenv - save environment variables to persistent storage 3988 saveenv - save environment variables to persistent storage
3990 protect - enable or disable FLASH write protection 3989 protect - enable or disable FLASH write protection
3991 erase - erase FLASH memory 3990 erase - erase FLASH memory
3992 flinfo - print FLASH memory information 3991 flinfo - print FLASH memory information
3993 nand - NAND memory operations (see doc/README.nand) 3992 nand - NAND memory operations (see doc/README.nand)
3994 bdinfo - print Board Info structure 3993 bdinfo - print Board Info structure
3995 iminfo - print header information for application image 3994 iminfo - print header information for application image
3996 coninfo - print console devices and informations 3995 coninfo - print console devices and informations
3997 ide - IDE sub-system 3996 ide - IDE sub-system
3998 loop - infinite loop on address range 3997 loop - infinite loop on address range
3999 loopw - infinite write loop on address range 3998 loopw - infinite write loop on address range
4000 mtest - simple RAM test 3999 mtest - simple RAM test
4001 icache - enable or disable instruction cache 4000 icache - enable or disable instruction cache
4002 dcache - enable or disable data cache 4001 dcache - enable or disable data cache
4003 reset - Perform RESET of the CPU 4002 reset - Perform RESET of the CPU
4004 echo - echo args to console 4003 echo - echo args to console
4005 version - print monitor version 4004 version - print monitor version
4006 help - print online help 4005 help - print online help
4007 ? - alias for 'help' 4006 ? - alias for 'help'
4008 4007
4009 4008
4010 Monitor Commands - Detailed Description: 4009 Monitor Commands - Detailed Description:
4011 ======================================== 4010 ========================================
4012 4011
4013 TODO. 4012 TODO.
4014 4013
4015 For now: just type "help <command>". 4014 For now: just type "help <command>".
4016 4015
4017 4016
4018 Environment Variables: 4017 Environment Variables:
4019 ====================== 4018 ======================
4020 4019
4021 U-Boot supports user configuration using Environment Variables which 4020 U-Boot supports user configuration using Environment Variables which
4022 can be made persistent by saving to Flash memory. 4021 can be made persistent by saving to Flash memory.
4023 4022
4024 Environment Variables are set using "setenv", printed using 4023 Environment Variables are set using "setenv", printed using
4025 "printenv", and saved to Flash using "saveenv". Using "setenv" 4024 "printenv", and saved to Flash using "saveenv". Using "setenv"
4026 without a value can be used to delete a variable from the 4025 without a value can be used to delete a variable from the
4027 environment. As long as you don't save the environment you are 4026 environment. As long as you don't save the environment you are
4028 working with an in-memory copy. In case the Flash area containing the 4027 working with an in-memory copy. In case the Flash area containing the
4029 environment is erased by accident, a default environment is provided. 4028 environment is erased by accident, a default environment is provided.
4030 4029
4031 Some configuration options can be set using Environment Variables. 4030 Some configuration options can be set using Environment Variables.
4032 4031
4033 List of environment variables (most likely not complete): 4032 List of environment variables (most likely not complete):
4034 4033
4035 baudrate - see CONFIG_BAUDRATE 4034 baudrate - see CONFIG_BAUDRATE
4036 4035
4037 bootdelay - see CONFIG_BOOTDELAY 4036 bootdelay - see CONFIG_BOOTDELAY
4038 4037
4039 bootcmd - see CONFIG_BOOTCOMMAND 4038 bootcmd - see CONFIG_BOOTCOMMAND
4040 4039
4041 bootargs - Boot arguments when booting an RTOS image 4040 bootargs - Boot arguments when booting an RTOS image
4042 4041
4043 bootfile - Name of the image to load with TFTP 4042 bootfile - Name of the image to load with TFTP
4044 4043
4045 bootm_low - Memory range available for image processing in the bootm 4044 bootm_low - Memory range available for image processing in the bootm
4046 command can be restricted. This variable is given as 4045 command can be restricted. This variable is given as
4047 a hexadecimal number and defines lowest address allowed 4046 a hexadecimal number and defines lowest address allowed
4048 for use by the bootm command. See also "bootm_size" 4047 for use by the bootm command. See also "bootm_size"
4049 environment variable. Address defined by "bootm_low" is 4048 environment variable. Address defined by "bootm_low" is
4050 also the base of the initial memory mapping for the Linux 4049 also the base of the initial memory mapping for the Linux
4051 kernel -- see the description of CONFIG_SYS_BOOTMAPSZ and 4050 kernel -- see the description of CONFIG_SYS_BOOTMAPSZ and
4052 bootm_mapsize. 4051 bootm_mapsize.
4053 4052
4054 bootm_mapsize - Size of the initial memory mapping for the Linux kernel. 4053 bootm_mapsize - Size of the initial memory mapping for the Linux kernel.
4055 This variable is given as a hexadecimal number and it 4054 This variable is given as a hexadecimal number and it
4056 defines the size of the memory region starting at base 4055 defines the size of the memory region starting at base
4057 address bootm_low that is accessible by the Linux kernel 4056 address bootm_low that is accessible by the Linux kernel
4058 during early boot. If unset, CONFIG_SYS_BOOTMAPSZ is used 4057 during early boot. If unset, CONFIG_SYS_BOOTMAPSZ is used
4059 as the default value if it is defined, and bootm_size is 4058 as the default value if it is defined, and bootm_size is
4060 used otherwise. 4059 used otherwise.
4061 4060
4062 bootm_size - Memory range available for image processing in the bootm 4061 bootm_size - Memory range available for image processing in the bootm
4063 command can be restricted. This variable is given as 4062 command can be restricted. This variable is given as
4064 a hexadecimal number and defines the size of the region 4063 a hexadecimal number and defines the size of the region
4065 allowed for use by the bootm command. See also "bootm_low" 4064 allowed for use by the bootm command. See also "bootm_low"
4066 environment variable. 4065 environment variable.
4067 4066
4068 updatefile - Location of the software update file on a TFTP server, used 4067 updatefile - Location of the software update file on a TFTP server, used
4069 by the automatic software update feature. Please refer to 4068 by the automatic software update feature. Please refer to
4070 documentation in doc/README.update for more details. 4069 documentation in doc/README.update for more details.
4071 4070
4072 autoload - if set to "no" (any string beginning with 'n'), 4071 autoload - if set to "no" (any string beginning with 'n'),
4073 "bootp" will just load perform a lookup of the 4072 "bootp" will just load perform a lookup of the
4074 configuration from the BOOTP server, but not try to 4073 configuration from the BOOTP server, but not try to
4075 load any image using TFTP 4074 load any image using TFTP
4076 4075
4077 autostart - if set to "yes", an image loaded using the "bootp", 4076 autostart - if set to "yes", an image loaded using the "bootp",
4078 "rarpboot", "tftpboot" or "diskboot" commands will 4077 "rarpboot", "tftpboot" or "diskboot" commands will
4079 be automatically started (by internally calling 4078 be automatically started (by internally calling
4080 "bootm") 4079 "bootm")
4081 4080
4082 If set to "no", a standalone image passed to the 4081 If set to "no", a standalone image passed to the
4083 "bootm" command will be copied to the load address 4082 "bootm" command will be copied to the load address
4084 (and eventually uncompressed), but NOT be started. 4083 (and eventually uncompressed), but NOT be started.
4085 This can be used to load and uncompress arbitrary 4084 This can be used to load and uncompress arbitrary
4086 data. 4085 data.
4087 4086
4088 fdt_high - if set this restricts the maximum address that the 4087 fdt_high - if set this restricts the maximum address that the
4089 flattened device tree will be copied into upon boot. 4088 flattened device tree will be copied into upon boot.
4090 For example, if you have a system with 1 GB memory 4089 For example, if you have a system with 1 GB memory
4091 at physical address 0x10000000, while Linux kernel 4090 at physical address 0x10000000, while Linux kernel
4092 only recognizes the first 704 MB as low memory, you 4091 only recognizes the first 704 MB as low memory, you
4093 may need to set fdt_high as 0x3C000000 to have the 4092 may need to set fdt_high as 0x3C000000 to have the
4094 device tree blob be copied to the maximum address 4093 device tree blob be copied to the maximum address
4095 of the 704 MB low memory, so that Linux kernel can 4094 of the 704 MB low memory, so that Linux kernel can
4096 access it during the boot procedure. 4095 access it during the boot procedure.
4097 4096
4098 If this is set to the special value 0xFFFFFFFF then 4097 If this is set to the special value 0xFFFFFFFF then
4099 the fdt will not be copied at all on boot. For this 4098 the fdt will not be copied at all on boot. For this
4100 to work it must reside in writable memory, have 4099 to work it must reside in writable memory, have
4101 sufficient padding on the end of it for u-boot to 4100 sufficient padding on the end of it for u-boot to
4102 add the information it needs into it, and the memory 4101 add the information it needs into it, and the memory
4103 must be accessible by the kernel. 4102 must be accessible by the kernel.
4104 4103
4105 fdtcontroladdr- if set this is the address of the control flattened 4104 fdtcontroladdr- if set this is the address of the control flattened
4106 device tree used by U-Boot when CONFIG_OF_CONTROL is 4105 device tree used by U-Boot when CONFIG_OF_CONTROL is
4107 defined. 4106 defined.
4108 4107
4109 i2cfast - (PPC405GP|PPC405EP only) 4108 i2cfast - (PPC405GP|PPC405EP only)
4110 if set to 'y' configures Linux I2C driver for fast 4109 if set to 'y' configures Linux I2C driver for fast
4111 mode (400kHZ). This environment variable is used in 4110 mode (400kHZ). This environment variable is used in
4112 initialization code. So, for changes to be effective 4111 initialization code. So, for changes to be effective
4113 it must be saved and board must be reset. 4112 it must be saved and board must be reset.
4114 4113
4115 initrd_high - restrict positioning of initrd images: 4114 initrd_high - restrict positioning of initrd images:
4116 If this variable is not set, initrd images will be 4115 If this variable is not set, initrd images will be
4117 copied to the highest possible address in RAM; this 4116 copied to the highest possible address in RAM; this
4118 is usually what you want since it allows for 4117 is usually what you want since it allows for
4119 maximum initrd size. If for some reason you want to 4118 maximum initrd size. If for some reason you want to
4120 make sure that the initrd image is loaded below the 4119 make sure that the initrd image is loaded below the
4121 CONFIG_SYS_BOOTMAPSZ limit, you can set this environment 4120 CONFIG_SYS_BOOTMAPSZ limit, you can set this environment
4122 variable to a value of "no" or "off" or "0". 4121 variable to a value of "no" or "off" or "0".
4123 Alternatively, you can set it to a maximum upper 4122 Alternatively, you can set it to a maximum upper
4124 address to use (U-Boot will still check that it 4123 address to use (U-Boot will still check that it
4125 does not overwrite the U-Boot stack and data). 4124 does not overwrite the U-Boot stack and data).
4126 4125
4127 For instance, when you have a system with 16 MB 4126 For instance, when you have a system with 16 MB
4128 RAM, and want to reserve 4 MB from use by Linux, 4127 RAM, and want to reserve 4 MB from use by Linux,
4129 you can do this by adding "mem=12M" to the value of 4128 you can do this by adding "mem=12M" to the value of
4130 the "bootargs" variable. However, now you must make 4129 the "bootargs" variable. However, now you must make
4131 sure that the initrd image is placed in the first 4130 sure that the initrd image is placed in the first
4132 12 MB as well - this can be done with 4131 12 MB as well - this can be done with
4133 4132
4134 setenv initrd_high 00c00000 4133 setenv initrd_high 00c00000
4135 4134
4136 If you set initrd_high to 0xFFFFFFFF, this is an 4135 If you set initrd_high to 0xFFFFFFFF, this is an
4137 indication to U-Boot that all addresses are legal 4136 indication to U-Boot that all addresses are legal
4138 for the Linux kernel, including addresses in flash 4137 for the Linux kernel, including addresses in flash
4139 memory. In this case U-Boot will NOT COPY the 4138 memory. In this case U-Boot will NOT COPY the
4140 ramdisk at all. This may be useful to reduce the 4139 ramdisk at all. This may be useful to reduce the
4141 boot time on your system, but requires that this 4140 boot time on your system, but requires that this
4142 feature is supported by your Linux kernel. 4141 feature is supported by your Linux kernel.
4143 4142
4144 ipaddr - IP address; needed for tftpboot command 4143 ipaddr - IP address; needed for tftpboot command
4145 4144
4146 loadaddr - Default load address for commands like "bootp", 4145 loadaddr - Default load address for commands like "bootp",
4147 "rarpboot", "tftpboot", "loadb" or "diskboot" 4146 "rarpboot", "tftpboot", "loadb" or "diskboot"
4148 4147
4149 loads_echo - see CONFIG_LOADS_ECHO 4148 loads_echo - see CONFIG_LOADS_ECHO
4150 4149
4151 serverip - TFTP server IP address; needed for tftpboot command 4150 serverip - TFTP server IP address; needed for tftpboot command
4152 4151
4153 bootretry - see CONFIG_BOOT_RETRY_TIME 4152 bootretry - see CONFIG_BOOT_RETRY_TIME
4154 4153
4155 bootdelaykey - see CONFIG_AUTOBOOT_DELAY_STR 4154 bootdelaykey - see CONFIG_AUTOBOOT_DELAY_STR
4156 4155
4157 bootstopkey - see CONFIG_AUTOBOOT_STOP_STR 4156 bootstopkey - see CONFIG_AUTOBOOT_STOP_STR
4158 4157
4159 ethprime - controls which interface is used first. 4158 ethprime - controls which interface is used first.
4160 4159
4161 ethact - controls which interface is currently active. 4160 ethact - controls which interface is currently active.
4162 For example you can do the following 4161 For example you can do the following
4163 4162
4164 => setenv ethact FEC 4163 => setenv ethact FEC
4165 => ping 192.168.0.1 # traffic sent on FEC 4164 => ping 192.168.0.1 # traffic sent on FEC
4166 => setenv ethact SCC 4165 => setenv ethact SCC
4167 => ping 10.0.0.1 # traffic sent on SCC 4166 => ping 10.0.0.1 # traffic sent on SCC
4168 4167
4169 ethrotate - When set to "no" U-Boot does not go through all 4168 ethrotate - When set to "no" U-Boot does not go through all
4170 available network interfaces. 4169 available network interfaces.
4171 It just stays at the currently selected interface. 4170 It just stays at the currently selected interface.
4172 4171
4173 netretry - When set to "no" each network operation will 4172 netretry - When set to "no" each network operation will
4174 either succeed or fail without retrying. 4173 either succeed or fail without retrying.
4175 When set to "once" the network operation will 4174 When set to "once" the network operation will
4176 fail when all the available network interfaces 4175 fail when all the available network interfaces
4177 are tried once without success. 4176 are tried once without success.
4178 Useful on scripts which control the retry operation 4177 Useful on scripts which control the retry operation
4179 themselves. 4178 themselves.
4180 4179
4181 npe_ucode - set load address for the NPE microcode 4180 npe_ucode - set load address for the NPE microcode
4182 4181
4183 silent_linux - If set then Linux will be told to boot silently, by 4182 silent_linux - If set then Linux will be told to boot silently, by
4184 changing the console to be empty. If "yes" it will be 4183 changing the console to be empty. If "yes" it will be
4185 made silent. If "no" it will not be made silent. If 4184 made silent. If "no" it will not be made silent. If
4186 unset, then it will be made silent if the U-Boot console 4185 unset, then it will be made silent if the U-Boot console
4187 is silent. 4186 is silent.
4188 4187
4189 tftpsrcp - If this is set, the value is used for TFTP's 4188 tftpsrcp - If this is set, the value is used for TFTP's
4190 UDP source port. 4189 UDP source port.
4191 4190
4192 tftpdstp - If this is set, the value is used for TFTP's UDP 4191 tftpdstp - If this is set, the value is used for TFTP's UDP
4193 destination port instead of the Well Know Port 69. 4192 destination port instead of the Well Know Port 69.
4194 4193
4195 tftpblocksize - Block size to use for TFTP transfers; if not set, 4194 tftpblocksize - Block size to use for TFTP transfers; if not set,
4196 we use the TFTP server's default block size 4195 we use the TFTP server's default block size
4197 4196
4198 tftptimeout - Retransmission timeout for TFTP packets (in milli- 4197 tftptimeout - Retransmission timeout for TFTP packets (in milli-
4199 seconds, minimum value is 1000 = 1 second). Defines 4198 seconds, minimum value is 1000 = 1 second). Defines
4200 when a packet is considered to be lost so it has to 4199 when a packet is considered to be lost so it has to
4201 be retransmitted. The default is 5000 = 5 seconds. 4200 be retransmitted. The default is 5000 = 5 seconds.
4202 Lowering this value may make downloads succeed 4201 Lowering this value may make downloads succeed
4203 faster in networks with high packet loss rates or 4202 faster in networks with high packet loss rates or
4204 with unreliable TFTP servers. 4203 with unreliable TFTP servers.
4205 4204
4206 tftptimeoutcountmax - maximum count of TFTP timeouts (no 4205 tftptimeoutcountmax - maximum count of TFTP timeouts (no
4207 unit, minimum value = 0). Defines how many timeouts 4206 unit, minimum value = 0). Defines how many timeouts
4208 can happen during a single file transfer before that 4207 can happen during a single file transfer before that
4209 transfer is aborted. The default is 10, and 0 means 4208 transfer is aborted. The default is 10, and 0 means
4210 'no timeouts allowed'. Increasing this value may help 4209 'no timeouts allowed'. Increasing this value may help
4211 downloads succeed with high packet loss rates, or with 4210 downloads succeed with high packet loss rates, or with
4212 unreliable TFTP servers or client hardware. 4211 unreliable TFTP servers or client hardware.
4213 4212
4214 vlan - When set to a value < 4095 the traffic over 4213 vlan - When set to a value < 4095 the traffic over
4215 Ethernet is encapsulated/received over 802.1q 4214 Ethernet is encapsulated/received over 802.1q
4216 VLAN tagged frames. 4215 VLAN tagged frames.
4217 4216
4218 bootpretryperiod - Period during which BOOTP/DHCP sends retries. 4217 bootpretryperiod - Period during which BOOTP/DHCP sends retries.
4219 Unsigned value, in milliseconds. If not set, the period will 4218 Unsigned value, in milliseconds. If not set, the period will
4220 be either the default (28000), or a value based on 4219 be either the default (28000), or a value based on
4221 CONFIG_NET_RETRY_COUNT, if defined. This value has 4220 CONFIG_NET_RETRY_COUNT, if defined. This value has
4222 precedence over the valu based on CONFIG_NET_RETRY_COUNT. 4221 precedence over the valu based on CONFIG_NET_RETRY_COUNT.
4223 4222
4224 The following image location variables contain the location of images 4223 The following image location variables contain the location of images
4225 used in booting. The "Image" column gives the role of the image and is 4224 used in booting. The "Image" column gives the role of the image and is
4226 not an environment variable name. The other columns are environment 4225 not an environment variable name. The other columns are environment
4227 variable names. "File Name" gives the name of the file on a TFTP 4226 variable names. "File Name" gives the name of the file on a TFTP
4228 server, "RAM Address" gives the location in RAM the image will be 4227 server, "RAM Address" gives the location in RAM the image will be
4229 loaded to, and "Flash Location" gives the image's address in NOR 4228 loaded to, and "Flash Location" gives the image's address in NOR
4230 flash or offset in NAND flash. 4229 flash or offset in NAND flash.
4231 4230
4232 *Note* - these variables don't have to be defined for all boards, some 4231 *Note* - these variables don't have to be defined for all boards, some
4233 boards currently use other variables for these purposes, and some 4232 boards currently use other variables for these purposes, and some
4234 boards use these variables for other purposes. 4233 boards use these variables for other purposes.
4235 4234
4236 Image File Name RAM Address Flash Location 4235 Image File Name RAM Address Flash Location
4237 ----- --------- ----------- -------------- 4236 ----- --------- ----------- --------------
4238 u-boot u-boot u-boot_addr_r u-boot_addr 4237 u-boot u-boot u-boot_addr_r u-boot_addr
4239 Linux kernel bootfile kernel_addr_r kernel_addr 4238 Linux kernel bootfile kernel_addr_r kernel_addr
4240 device tree blob fdtfile fdt_addr_r fdt_addr 4239 device tree blob fdtfile fdt_addr_r fdt_addr
4241 ramdisk ramdiskfile ramdisk_addr_r ramdisk_addr 4240 ramdisk ramdiskfile ramdisk_addr_r ramdisk_addr
4242 4241
4243 The following environment variables may be used and automatically 4242 The following environment variables may be used and automatically
4244 updated by the network boot commands ("bootp" and "rarpboot"), 4243 updated by the network boot commands ("bootp" and "rarpboot"),
4245 depending the information provided by your boot server: 4244 depending the information provided by your boot server:
4246 4245
4247 bootfile - see above 4246 bootfile - see above
4248 dnsip - IP address of your Domain Name Server 4247 dnsip - IP address of your Domain Name Server
4249 dnsip2 - IP address of your secondary Domain Name Server 4248 dnsip2 - IP address of your secondary Domain Name Server
4250 gatewayip - IP address of the Gateway (Router) to use 4249 gatewayip - IP address of the Gateway (Router) to use
4251 hostname - Target hostname 4250 hostname - Target hostname
4252 ipaddr - see above 4251 ipaddr - see above
4253 netmask - Subnet Mask 4252 netmask - Subnet Mask
4254 rootpath - Pathname of the root filesystem on the NFS server 4253 rootpath - Pathname of the root filesystem on the NFS server
4255 serverip - see above 4254 serverip - see above
4256 4255
4257 4256
4258 There are two special Environment Variables: 4257 There are two special Environment Variables:
4259 4258
4260 serial# - contains hardware identification information such 4259 serial# - contains hardware identification information such
4261 as type string and/or serial number 4260 as type string and/or serial number
4262 ethaddr - Ethernet address 4261 ethaddr - Ethernet address
4263 4262
4264 These variables can be set only once (usually during manufacturing of 4263 These variables can be set only once (usually during manufacturing of
4265 the board). U-Boot refuses to delete or overwrite these variables 4264 the board). U-Boot refuses to delete or overwrite these variables
4266 once they have been set once. 4265 once they have been set once.
4267 4266
4268 4267
4269 Further special Environment Variables: 4268 Further special Environment Variables:
4270 4269
4271 ver - Contains the U-Boot version string as printed 4270 ver - Contains the U-Boot version string as printed
4272 with the "version" command. This variable is 4271 with the "version" command. This variable is
4273 readonly (see CONFIG_VERSION_VARIABLE). 4272 readonly (see CONFIG_VERSION_VARIABLE).
4274 4273
4275 4274
4276 Please note that changes to some configuration parameters may take 4275 Please note that changes to some configuration parameters may take
4277 only effect after the next boot (yes, that's just like Windoze :-). 4276 only effect after the next boot (yes, that's just like Windoze :-).
4278 4277
4279 4278
4280 Callback functions for environment variables: 4279 Callback functions for environment variables:
4281 --------------------------------------------- 4280 ---------------------------------------------
4282 4281
4283 For some environment variables, the behavior of u-boot needs to change 4282 For some environment variables, the behavior of u-boot needs to change
4284 when their values are changed. This functionality allows functions to 4283 when their values are changed. This functionality allows functions to
4285 be associated with arbitrary variables. On creation, overwrite, or 4284 be associated with arbitrary variables. On creation, overwrite, or
4286 deletion, the callback will provide the opportunity for some side 4285 deletion, the callback will provide the opportunity for some side
4287 effect to happen or for the change to be rejected. 4286 effect to happen or for the change to be rejected.
4288 4287
4289 The callbacks are named and associated with a function using the 4288 The callbacks are named and associated with a function using the
4290 U_BOOT_ENV_CALLBACK macro in your board or driver code. 4289 U_BOOT_ENV_CALLBACK macro in your board or driver code.
4291 4290
4292 These callbacks are associated with variables in one of two ways. The 4291 These callbacks are associated with variables in one of two ways. The
4293 static list can be added to by defining CONFIG_ENV_CALLBACK_LIST_STATIC 4292 static list can be added to by defining CONFIG_ENV_CALLBACK_LIST_STATIC
4294 in the board configuration to a string that defines a list of 4293 in the board configuration to a string that defines a list of
4295 associations. The list must be in the following format: 4294 associations. The list must be in the following format:
4296 4295
4297 entry = variable_name[:callback_name] 4296 entry = variable_name[:callback_name]
4298 list = entry[,list] 4297 list = entry[,list]
4299 4298
4300 If the callback name is not specified, then the callback is deleted. 4299 If the callback name is not specified, then the callback is deleted.
4301 Spaces are also allowed anywhere in the list. 4300 Spaces are also allowed anywhere in the list.
4302 4301
4303 Callbacks can also be associated by defining the ".callbacks" variable 4302 Callbacks can also be associated by defining the ".callbacks" variable
4304 with the same list format above. Any association in ".callbacks" will 4303 with the same list format above. Any association in ".callbacks" will
4305 override any association in the static list. You can define 4304 override any association in the static list. You can define
4306 CONFIG_ENV_CALLBACK_LIST_DEFAULT to a list (string) to define the 4305 CONFIG_ENV_CALLBACK_LIST_DEFAULT to a list (string) to define the
4307 ".callbacks" environment variable in the default or embedded environment. 4306 ".callbacks" environment variable in the default or embedded environment.
4308 4307
4309 If CONFIG_REGEX is defined, the variable_name above is evaluated as a 4308 If CONFIG_REGEX is defined, the variable_name above is evaluated as a
4310 regular expression. This allows multiple variables to be connected to 4309 regular expression. This allows multiple variables to be connected to
4311 the same callback without explicitly listing them all out. 4310 the same callback without explicitly listing them all out.
4312 4311
4313 4312
4314 Command Line Parsing: 4313 Command Line Parsing:
4315 ===================== 4314 =====================
4316 4315
4317 There are two different command line parsers available with U-Boot: 4316 There are two different command line parsers available with U-Boot:
4318 the old "simple" one, and the much more powerful "hush" shell: 4317 the old "simple" one, and the much more powerful "hush" shell:
4319 4318
4320 Old, simple command line parser: 4319 Old, simple command line parser:
4321 -------------------------------- 4320 --------------------------------
4322 4321
4323 - supports environment variables (through setenv / saveenv commands) 4322 - supports environment variables (through setenv / saveenv commands)
4324 - several commands on one line, separated by ';' 4323 - several commands on one line, separated by ';'
4325 - variable substitution using "... ${name} ..." syntax 4324 - variable substitution using "... ${name} ..." syntax
4326 - special characters ('$', ';') can be escaped by prefixing with '\', 4325 - special characters ('$', ';') can be escaped by prefixing with '\',
4327 for example: 4326 for example:
4328 setenv bootcmd bootm \${address} 4327 setenv bootcmd bootm \${address}
4329 - You can also escape text by enclosing in single apostrophes, for example: 4328 - You can also escape text by enclosing in single apostrophes, for example:
4330 setenv addip 'setenv bootargs $bootargs ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname::off' 4329 setenv addip 'setenv bootargs $bootargs ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname::off'
4331 4330
4332 Hush shell: 4331 Hush shell:
4333 ----------- 4332 -----------
4334 4333
4335 - similar to Bourne shell, with control structures like 4334 - similar to Bourne shell, with control structures like
4336 if...then...else...fi, for...do...done; while...do...done, 4335 if...then...else...fi, for...do...done; while...do...done,
4337 until...do...done, ... 4336 until...do...done, ...
4338 - supports environment ("global") variables (through setenv / saveenv 4337 - supports environment ("global") variables (through setenv / saveenv
4339 commands) and local shell variables (through standard shell syntax 4338 commands) and local shell variables (through standard shell syntax
4340 "name=value"); only environment variables can be used with "run" 4339 "name=value"); only environment variables can be used with "run"
4341 command 4340 command
4342 4341
4343 General rules: 4342 General rules:
4344 -------------- 4343 --------------
4345 4344
4346 (1) If a command line (or an environment variable executed by a "run" 4345 (1) If a command line (or an environment variable executed by a "run"
4347 command) contains several commands separated by semicolon, and 4346 command) contains several commands separated by semicolon, and
4348 one of these commands fails, then the remaining commands will be 4347 one of these commands fails, then the remaining commands will be
4349 executed anyway. 4348 executed anyway.
4350 4349
4351 (2) If you execute several variables with one call to run (i. e. 4350 (2) If you execute several variables with one call to run (i. e.
4352 calling run with a list of variables as arguments), any failing 4351 calling run with a list of variables as arguments), any failing
4353 command will cause "run" to terminate, i. e. the remaining 4352 command will cause "run" to terminate, i. e. the remaining
4354 variables are not executed. 4353 variables are not executed.
4355 4354
4356 Note for Redundant Ethernet Interfaces: 4355 Note for Redundant Ethernet Interfaces:
4357 ======================================= 4356 =======================================
4358 4357
4359 Some boards come with redundant Ethernet interfaces; U-Boot supports 4358 Some boards come with redundant Ethernet interfaces; U-Boot supports
4360 such configurations and is capable of automatic selection of a 4359 such configurations and is capable of automatic selection of a
4361 "working" interface when needed. MAC assignment works as follows: 4360 "working" interface when needed. MAC assignment works as follows:
4362 4361
4363 Network interfaces are numbered eth0, eth1, eth2, ... Corresponding 4362 Network interfaces are numbered eth0, eth1, eth2, ... Corresponding
4364 MAC addresses can be stored in the environment as "ethaddr" (=>eth0), 4363 MAC addresses can be stored in the environment as "ethaddr" (=>eth0),
4365 "eth1addr" (=>eth1), "eth2addr", ... 4364 "eth1addr" (=>eth1), "eth2addr", ...
4366 4365
4367 If the network interface stores some valid MAC address (for instance 4366 If the network interface stores some valid MAC address (for instance
4368 in SROM), this is used as default address if there is NO correspon- 4367 in SROM), this is used as default address if there is NO correspon-
4369 ding setting in the environment; if the corresponding environment 4368 ding setting in the environment; if the corresponding environment
4370 variable is set, this overrides the settings in the card; that means: 4369 variable is set, this overrides the settings in the card; that means:
4371 4370
4372 o If the SROM has a valid MAC address, and there is no address in the 4371 o If the SROM has a valid MAC address, and there is no address in the
4373 environment, the SROM's address is used. 4372 environment, the SROM's address is used.
4374 4373
4375 o If there is no valid address in the SROM, and a definition in the 4374 o If there is no valid address in the SROM, and a definition in the
4376 environment exists, then the value from the environment variable is 4375 environment exists, then the value from the environment variable is
4377 used. 4376 used.
4378 4377
4379 o If both the SROM and the environment contain a MAC address, and 4378 o If both the SROM and the environment contain a MAC address, and
4380 both addresses are the same, this MAC address is used. 4379 both addresses are the same, this MAC address is used.
4381 4380
4382 o If both the SROM and the environment contain a MAC address, and the 4381 o If both the SROM and the environment contain a MAC address, and the
4383 addresses differ, the value from the environment is used and a 4382 addresses differ, the value from the environment is used and a
4384 warning is printed. 4383 warning is printed.
4385 4384
4386 o If neither SROM nor the environment contain a MAC address, an error 4385 o If neither SROM nor the environment contain a MAC address, an error
4387 is raised. If CONFIG_NET_RANDOM_ETHADDR is defined, then in this case 4386 is raised. If CONFIG_NET_RANDOM_ETHADDR is defined, then in this case
4388 a random, locally-assigned MAC is used. 4387 a random, locally-assigned MAC is used.
4389 4388
4390 If Ethernet drivers implement the 'write_hwaddr' function, valid MAC addresses 4389 If Ethernet drivers implement the 'write_hwaddr' function, valid MAC addresses
4391 will be programmed into hardware as part of the initialization process. This 4390 will be programmed into hardware as part of the initialization process. This
4392 may be skipped by setting the appropriate 'ethmacskip' environment variable. 4391 may be skipped by setting the appropriate 'ethmacskip' environment variable.
4393 The naming convention is as follows: 4392 The naming convention is as follows:
4394 "ethmacskip" (=>eth0), "eth1macskip" (=>eth1) etc. 4393 "ethmacskip" (=>eth0), "eth1macskip" (=>eth1) etc.
4395 4394
4396 Image Formats: 4395 Image Formats:
4397 ============== 4396 ==============
4398 4397
4399 U-Boot is capable of booting (and performing other auxiliary operations on) 4398 U-Boot is capable of booting (and performing other auxiliary operations on)
4400 images in two formats: 4399 images in two formats:
4401 4400
4402 New uImage format (FIT) 4401 New uImage format (FIT)
4403 ----------------------- 4402 -----------------------
4404 4403
4405 Flexible and powerful format based on Flattened Image Tree -- FIT (similar 4404 Flexible and powerful format based on Flattened Image Tree -- FIT (similar
4406 to Flattened Device Tree). It allows the use of images with multiple 4405 to Flattened Device Tree). It allows the use of images with multiple
4407 components (several kernels, ramdisks, etc.), with contents protected by 4406 components (several kernels, ramdisks, etc.), with contents protected by
4408 SHA1, MD5 or CRC32. More details are found in the doc/uImage.FIT directory. 4407 SHA1, MD5 or CRC32. More details are found in the doc/uImage.FIT directory.
4409 4408
4410 4409
4411 Old uImage format 4410 Old uImage format
4412 ----------------- 4411 -----------------
4413 4412
4414 Old image format is based on binary files which can be basically anything, 4413 Old image format is based on binary files which can be basically anything,
4415 preceded by a special header; see the definitions in include/image.h for 4414 preceded by a special header; see the definitions in include/image.h for
4416 details; basically, the header defines the following image properties: 4415 details; basically, the header defines the following image properties:
4417 4416
4418 * Target Operating System (Provisions for OpenBSD, NetBSD, FreeBSD, 4417 * Target Operating System (Provisions for OpenBSD, NetBSD, FreeBSD,
4419 4.4BSD, Linux, SVR4, Esix, Solaris, Irix, SCO, Dell, NCR, VxWorks, 4418 4.4BSD, Linux, SVR4, Esix, Solaris, Irix, SCO, Dell, NCR, VxWorks,
4420 LynxOS, pSOS, QNX, RTEMS, INTEGRITY; 4419 LynxOS, pSOS, QNX, RTEMS, INTEGRITY;
4421 Currently supported: Linux, NetBSD, VxWorks, QNX, RTEMS, LynxOS, 4420 Currently supported: Linux, NetBSD, VxWorks, QNX, RTEMS, LynxOS,
4422 INTEGRITY). 4421 INTEGRITY).
4423 * Target CPU Architecture (Provisions for Alpha, ARM, Intel x86, 4422 * Target CPU Architecture (Provisions for Alpha, ARM, Intel x86,
4424 IA64, MIPS, NDS32, Nios II, PowerPC, IBM S390, SuperH, Sparc, Sparc 64 Bit; 4423 IA64, MIPS, NDS32, Nios II, PowerPC, IBM S390, SuperH, Sparc, Sparc 64 Bit;
4425 Currently supported: ARM, Intel x86, MIPS, NDS32, Nios II, PowerPC). 4424 Currently supported: ARM, Intel x86, MIPS, NDS32, Nios II, PowerPC).
4426 * Compression Type (uncompressed, gzip, bzip2) 4425 * Compression Type (uncompressed, gzip, bzip2)
4427 * Load Address 4426 * Load Address
4428 * Entry Point 4427 * Entry Point
4429 * Image Name 4428 * Image Name
4430 * Image Timestamp 4429 * Image Timestamp
4431 4430
4432 The header is marked by a special Magic Number, and both the header 4431 The header is marked by a special Magic Number, and both the header
4433 and the data portions of the image are secured against corruption by 4432 and the data portions of the image are secured against corruption by
4434 CRC32 checksums. 4433 CRC32 checksums.
4435 4434
4436 4435
4437 Linux Support: 4436 Linux Support:
4438 ============== 4437 ==============
4439 4438
4440 Although U-Boot should support any OS or standalone application 4439 Although U-Boot should support any OS or standalone application
4441 easily, the main focus has always been on Linux during the design of 4440 easily, the main focus has always been on Linux during the design of
4442 U-Boot. 4441 U-Boot.
4443 4442
4444 U-Boot includes many features that so far have been part of some 4443 U-Boot includes many features that so far have been part of some
4445 special "boot loader" code within the Linux kernel. Also, any 4444 special "boot loader" code within the Linux kernel. Also, any
4446 "initrd" images to be used are no longer part of one big Linux image; 4445 "initrd" images to be used are no longer part of one big Linux image;
4447 instead, kernel and "initrd" are separate images. This implementation 4446 instead, kernel and "initrd" are separate images. This implementation
4448 serves several purposes: 4447 serves several purposes:
4449 4448
4450 - the same features can be used for other OS or standalone 4449 - the same features can be used for other OS or standalone
4451 applications (for instance: using compressed images to reduce the 4450 applications (for instance: using compressed images to reduce the
4452 Flash memory footprint) 4451 Flash memory footprint)
4453 4452
4454 - it becomes much easier to port new Linux kernel versions because 4453 - it becomes much easier to port new Linux kernel versions because
4455 lots of low-level, hardware dependent stuff are done by U-Boot 4454 lots of low-level, hardware dependent stuff are done by U-Boot
4456 4455
4457 - the same Linux kernel image can now be used with different "initrd" 4456 - the same Linux kernel image can now be used with different "initrd"
4458 images; of course this also means that different kernel images can 4457 images; of course this also means that different kernel images can
4459 be run with the same "initrd". This makes testing easier (you don't 4458 be run with the same "initrd". This makes testing easier (you don't
4460 have to build a new "zImage.initrd" Linux image when you just 4459 have to build a new "zImage.initrd" Linux image when you just
4461 change a file in your "initrd"). Also, a field-upgrade of the 4460 change a file in your "initrd"). Also, a field-upgrade of the
4462 software is easier now. 4461 software is easier now.
4463 4462
4464 4463
4465 Linux HOWTO: 4464 Linux HOWTO:
4466 ============ 4465 ============
4467 4466
4468 Porting Linux to U-Boot based systems: 4467 Porting Linux to U-Boot based systems:
4469 --------------------------------------- 4468 ---------------------------------------
4470 4469
4471 U-Boot cannot save you from doing all the necessary modifications to 4470 U-Boot cannot save you from doing all the necessary modifications to
4472 configure the Linux device drivers for use with your target hardware 4471 configure the Linux device drivers for use with your target hardware
4473 (no, we don't intend to provide a full virtual machine interface to 4472 (no, we don't intend to provide a full virtual machine interface to
4474 Linux :-). 4473 Linux :-).
4475 4474
4476 But now you can ignore ALL boot loader code (in arch/powerpc/mbxboot). 4475 But now you can ignore ALL boot loader code (in arch/powerpc/mbxboot).
4477 4476
4478 Just make sure your machine specific header file (for instance 4477 Just make sure your machine specific header file (for instance
4479 include/asm-ppc/tqm8xx.h) includes the same definition of the Board 4478 include/asm-ppc/tqm8xx.h) includes the same definition of the Board
4480 Information structure as we define in include/asm-<arch>/u-boot.h, 4479 Information structure as we define in include/asm-<arch>/u-boot.h,
4481 and make sure that your definition of IMAP_ADDR uses the same value 4480 and make sure that your definition of IMAP_ADDR uses the same value
4482 as your U-Boot configuration in CONFIG_SYS_IMMR. 4481 as your U-Boot configuration in CONFIG_SYS_IMMR.
4483 4482
4484 Note that U-Boot now has a driver model, a unified model for drivers. 4483 Note that U-Boot now has a driver model, a unified model for drivers.
4485 If you are adding a new driver, plumb it into driver model. If there 4484 If you are adding a new driver, plumb it into driver model. If there
4486 is no uclass available, you are encouraged to create one. See 4485 is no uclass available, you are encouraged to create one. See
4487 doc/driver-model. 4486 doc/driver-model.
4488 4487
4489 4488
4490 Configuring the Linux kernel: 4489 Configuring the Linux kernel:
4491 ----------------------------- 4490 -----------------------------
4492 4491
4493 No specific requirements for U-Boot. Make sure you have some root 4492 No specific requirements for U-Boot. Make sure you have some root
4494 device (initial ramdisk, NFS) for your target system. 4493 device (initial ramdisk, NFS) for your target system.
4495 4494
4496 4495
4497 Building a Linux Image: 4496 Building a Linux Image:
4498 ----------------------- 4497 -----------------------
4499 4498
4500 With U-Boot, "normal" build targets like "zImage" or "bzImage" are 4499 With U-Boot, "normal" build targets like "zImage" or "bzImage" are
4501 not used. If you use recent kernel source, a new build target 4500 not used. If you use recent kernel source, a new build target
4502 "uImage" will exist which automatically builds an image usable by 4501 "uImage" will exist which automatically builds an image usable by
4503 U-Boot. Most older kernels also have support for a "pImage" target, 4502 U-Boot. Most older kernels also have support for a "pImage" target,
4504 which was introduced for our predecessor project PPCBoot and uses a 4503 which was introduced for our predecessor project PPCBoot and uses a
4505 100% compatible format. 4504 100% compatible format.
4506 4505
4507 Example: 4506 Example:
4508 4507
4509 make TQM850L_defconfig 4508 make TQM850L_defconfig
4510 make oldconfig 4509 make oldconfig
4511 make dep 4510 make dep
4512 make uImage 4511 make uImage
4513 4512
4514 The "uImage" build target uses a special tool (in 'tools/mkimage') to 4513 The "uImage" build target uses a special tool (in 'tools/mkimage') to
4515 encapsulate a compressed Linux kernel image with header information, 4514 encapsulate a compressed Linux kernel image with header information,
4516 CRC32 checksum etc. for use with U-Boot. This is what we are doing: 4515 CRC32 checksum etc. for use with U-Boot. This is what we are doing:
4517 4516
4518 * build a standard "vmlinux" kernel image (in ELF binary format): 4517 * build a standard "vmlinux" kernel image (in ELF binary format):
4519 4518
4520 * convert the kernel into a raw binary image: 4519 * convert the kernel into a raw binary image:
4521 4520
4522 ${CROSS_COMPILE}-objcopy -O binary \ 4521 ${CROSS_COMPILE}-objcopy -O binary \
4523 -R .note -R .comment \ 4522 -R .note -R .comment \
4524 -S vmlinux linux.bin 4523 -S vmlinux linux.bin
4525 4524
4526 * compress the binary image: 4525 * compress the binary image:
4527 4526
4528 gzip -9 linux.bin 4527 gzip -9 linux.bin
4529 4528
4530 * package compressed binary image for U-Boot: 4529 * package compressed binary image for U-Boot:
4531 4530
4532 mkimage -A ppc -O linux -T kernel -C gzip \ 4531 mkimage -A ppc -O linux -T kernel -C gzip \
4533 -a 0 -e 0 -n "Linux Kernel Image" \ 4532 -a 0 -e 0 -n "Linux Kernel Image" \
4534 -d linux.bin.gz uImage 4533 -d linux.bin.gz uImage
4535 4534
4536 4535
4537 The "mkimage" tool can also be used to create ramdisk images for use 4536 The "mkimage" tool can also be used to create ramdisk images for use
4538 with U-Boot, either separated from the Linux kernel image, or 4537 with U-Boot, either separated from the Linux kernel image, or
4539 combined into one file. "mkimage" encapsulates the images with a 64 4538 combined into one file. "mkimage" encapsulates the images with a 64
4540 byte header containing information about target architecture, 4539 byte header containing information about target architecture,
4541 operating system, image type, compression method, entry points, time 4540 operating system, image type, compression method, entry points, time
4542 stamp, CRC32 checksums, etc. 4541 stamp, CRC32 checksums, etc.
4543 4542
4544 "mkimage" can be called in two ways: to verify existing images and 4543 "mkimage" can be called in two ways: to verify existing images and
4545 print the header information, or to build new images. 4544 print the header information, or to build new images.
4546 4545
4547 In the first form (with "-l" option) mkimage lists the information 4546 In the first form (with "-l" option) mkimage lists the information
4548 contained in the header of an existing U-Boot image; this includes 4547 contained in the header of an existing U-Boot image; this includes
4549 checksum verification: 4548 checksum verification:
4550 4549
4551 tools/mkimage -l image 4550 tools/mkimage -l image
4552 -l ==> list image header information 4551 -l ==> list image header information
4553 4552
4554 The second form (with "-d" option) is used to build a U-Boot image 4553 The second form (with "-d" option) is used to build a U-Boot image
4555 from a "data file" which is used as image payload: 4554 from a "data file" which is used as image payload:
4556 4555
4557 tools/mkimage -A arch -O os -T type -C comp -a addr -e ep \ 4556 tools/mkimage -A arch -O os -T type -C comp -a addr -e ep \
4558 -n name -d data_file image 4557 -n name -d data_file image
4559 -A ==> set architecture to 'arch' 4558 -A ==> set architecture to 'arch'
4560 -O ==> set operating system to 'os' 4559 -O ==> set operating system to 'os'
4561 -T ==> set image type to 'type' 4560 -T ==> set image type to 'type'
4562 -C ==> set compression type 'comp' 4561 -C ==> set compression type 'comp'
4563 -a ==> set load address to 'addr' (hex) 4562 -a ==> set load address to 'addr' (hex)
4564 -e ==> set entry point to 'ep' (hex) 4563 -e ==> set entry point to 'ep' (hex)
4565 -n ==> set image name to 'name' 4564 -n ==> set image name to 'name'
4566 -d ==> use image data from 'datafile' 4565 -d ==> use image data from 'datafile'
4567 4566
4568 Right now, all Linux kernels for PowerPC systems use the same load 4567 Right now, all Linux kernels for PowerPC systems use the same load
4569 address (0x00000000), but the entry point address depends on the 4568 address (0x00000000), but the entry point address depends on the
4570 kernel version: 4569 kernel version:
4571 4570
4572 - 2.2.x kernels have the entry point at 0x0000000C, 4571 - 2.2.x kernels have the entry point at 0x0000000C,
4573 - 2.3.x and later kernels have the entry point at 0x00000000. 4572 - 2.3.x and later kernels have the entry point at 0x00000000.
4574 4573
4575 So a typical call to build a U-Boot image would read: 4574 So a typical call to build a U-Boot image would read:
4576 4575
4577 -> tools/mkimage -n '2.4.4 kernel for TQM850L' \ 4576 -> tools/mkimage -n '2.4.4 kernel for TQM850L' \
4578 > -A ppc -O linux -T kernel -C gzip -a 0 -e 0 \ 4577 > -A ppc -O linux -T kernel -C gzip -a 0 -e 0 \
4579 > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux.gz \ 4578 > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux.gz \
4580 > examples/uImage.TQM850L 4579 > examples/uImage.TQM850L
4581 Image Name: 2.4.4 kernel for TQM850L 4580 Image Name: 2.4.4 kernel for TQM850L
4582 Created: Wed Jul 19 02:34:59 2000 4581 Created: Wed Jul 19 02:34:59 2000
4583 Image Type: PowerPC Linux Kernel Image (gzip compressed) 4582 Image Type: PowerPC Linux Kernel Image (gzip compressed)
4584 Data Size: 335725 Bytes = 327.86 kB = 0.32 MB 4583 Data Size: 335725 Bytes = 327.86 kB = 0.32 MB
4585 Load Address: 0x00000000 4584 Load Address: 0x00000000
4586 Entry Point: 0x00000000 4585 Entry Point: 0x00000000
4587 4586
4588 To verify the contents of the image (or check for corruption): 4587 To verify the contents of the image (or check for corruption):
4589 4588
4590 -> tools/mkimage -l examples/uImage.TQM850L 4589 -> tools/mkimage -l examples/uImage.TQM850L
4591 Image Name: 2.4.4 kernel for TQM850L 4590 Image Name: 2.4.4 kernel for TQM850L
4592 Created: Wed Jul 19 02:34:59 2000 4591 Created: Wed Jul 19 02:34:59 2000
4593 Image Type: PowerPC Linux Kernel Image (gzip compressed) 4592 Image Type: PowerPC Linux Kernel Image (gzip compressed)
4594 Data Size: 335725 Bytes = 327.86 kB = 0.32 MB 4593 Data Size: 335725 Bytes = 327.86 kB = 0.32 MB
4595 Load Address: 0x00000000 4594 Load Address: 0x00000000
4596 Entry Point: 0x00000000 4595 Entry Point: 0x00000000
4597 4596
4598 NOTE: for embedded systems where boot time is critical you can trade 4597 NOTE: for embedded systems where boot time is critical you can trade
4599 speed for memory and install an UNCOMPRESSED image instead: this 4598 speed for memory and install an UNCOMPRESSED image instead: this
4600 needs more space in Flash, but boots much faster since it does not 4599 needs more space in Flash, but boots much faster since it does not
4601 need to be uncompressed: 4600 need to be uncompressed:
4602 4601
4603 -> gunzip /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux.gz 4602 -> gunzip /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux.gz
4604 -> tools/mkimage -n '2.4.4 kernel for TQM850L' \ 4603 -> tools/mkimage -n '2.4.4 kernel for TQM850L' \
4605 > -A ppc -O linux -T kernel -C none -a 0 -e 0 \ 4604 > -A ppc -O linux -T kernel -C none -a 0 -e 0 \
4606 > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux \ 4605 > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux \
4607 > examples/uImage.TQM850L-uncompressed 4606 > examples/uImage.TQM850L-uncompressed
4608 Image Name: 2.4.4 kernel for TQM850L 4607 Image Name: 2.4.4 kernel for TQM850L
4609 Created: Wed Jul 19 02:34:59 2000 4608 Created: Wed Jul 19 02:34:59 2000
4610 Image Type: PowerPC Linux Kernel Image (uncompressed) 4609 Image Type: PowerPC Linux Kernel Image (uncompressed)
4611 Data Size: 792160 Bytes = 773.59 kB = 0.76 MB 4610 Data Size: 792160 Bytes = 773.59 kB = 0.76 MB
4612 Load Address: 0x00000000 4611 Load Address: 0x00000000
4613 Entry Point: 0x00000000 4612 Entry Point: 0x00000000
4614 4613
4615 4614
4616 Similar you can build U-Boot images from a 'ramdisk.image.gz' file 4615 Similar you can build U-Boot images from a 'ramdisk.image.gz' file
4617 when your kernel is intended to use an initial ramdisk: 4616 when your kernel is intended to use an initial ramdisk:
4618 4617
4619 -> tools/mkimage -n 'Simple Ramdisk Image' \ 4618 -> tools/mkimage -n 'Simple Ramdisk Image' \
4620 > -A ppc -O linux -T ramdisk -C gzip \ 4619 > -A ppc -O linux -T ramdisk -C gzip \
4621 > -d /LinuxPPC/images/SIMPLE-ramdisk.image.gz examples/simple-initrd 4620 > -d /LinuxPPC/images/SIMPLE-ramdisk.image.gz examples/simple-initrd
4622 Image Name: Simple Ramdisk Image 4621 Image Name: Simple Ramdisk Image
4623 Created: Wed Jan 12 14:01:50 2000 4622 Created: Wed Jan 12 14:01:50 2000
4624 Image Type: PowerPC Linux RAMDisk Image (gzip compressed) 4623 Image Type: PowerPC Linux RAMDisk Image (gzip compressed)
4625 Data Size: 566530 Bytes = 553.25 kB = 0.54 MB 4624 Data Size: 566530 Bytes = 553.25 kB = 0.54 MB
4626 Load Address: 0x00000000 4625 Load Address: 0x00000000
4627 Entry Point: 0x00000000 4626 Entry Point: 0x00000000
4628 4627
4629 The "dumpimage" is a tool to disassemble images built by mkimage. Its "-i" 4628 The "dumpimage" is a tool to disassemble images built by mkimage. Its "-i"
4630 option performs the converse operation of the mkimage's second form (the "-d" 4629 option performs the converse operation of the mkimage's second form (the "-d"
4631 option). Given an image built by mkimage, the dumpimage extracts a "data file" 4630 option). Given an image built by mkimage, the dumpimage extracts a "data file"
4632 from the image: 4631 from the image:
4633 4632
4634 tools/dumpimage -i image -T type -p position data_file 4633 tools/dumpimage -i image -T type -p position data_file
4635 -i ==> extract from the 'image' a specific 'data_file' 4634 -i ==> extract from the 'image' a specific 'data_file'
4636 -T ==> set image type to 'type' 4635 -T ==> set image type to 'type'
4637 -p ==> 'position' (starting at 0) of the 'data_file' inside the 'image' 4636 -p ==> 'position' (starting at 0) of the 'data_file' inside the 'image'
4638 4637
4639 4638
4640 Installing a Linux Image: 4639 Installing a Linux Image:
4641 ------------------------- 4640 -------------------------
4642 4641
4643 To downloading a U-Boot image over the serial (console) interface, 4642 To downloading a U-Boot image over the serial (console) interface,
4644 you must convert the image to S-Record format: 4643 you must convert the image to S-Record format:
4645 4644
4646 objcopy -I binary -O srec examples/image examples/image.srec 4645 objcopy -I binary -O srec examples/image examples/image.srec
4647 4646
4648 The 'objcopy' does not understand the information in the U-Boot 4647 The 'objcopy' does not understand the information in the U-Boot
4649 image header, so the resulting S-Record file will be relative to 4648 image header, so the resulting S-Record file will be relative to
4650 address 0x00000000. To load it to a given address, you need to 4649 address 0x00000000. To load it to a given address, you need to
4651 specify the target address as 'offset' parameter with the 'loads' 4650 specify the target address as 'offset' parameter with the 'loads'
4652 command. 4651 command.
4653 4652
4654 Example: install the image to address 0x40100000 (which on the 4653 Example: install the image to address 0x40100000 (which on the
4655 TQM8xxL is in the first Flash bank): 4654 TQM8xxL is in the first Flash bank):
4656 4655
4657 => erase 40100000 401FFFFF 4656 => erase 40100000 401FFFFF
4658 4657
4659 .......... done 4658 .......... done
4660 Erased 8 sectors 4659 Erased 8 sectors
4661 4660
4662 => loads 40100000 4661 => loads 40100000
4663 ## Ready for S-Record download ... 4662 ## Ready for S-Record download ...
4664 ~>examples/image.srec 4663 ~>examples/image.srec
4665 1 2 3 4 5 6 7 8 9 10 11 12 13 ... 4664 1 2 3 4 5 6 7 8 9 10 11 12 13 ...
4666 ... 4665 ...
4667 15989 15990 15991 15992 4666 15989 15990 15991 15992
4668 [file transfer complete] 4667 [file transfer complete]
4669 [connected] 4668 [connected]
4670 ## Start Addr = 0x00000000 4669 ## Start Addr = 0x00000000
4671 4670
4672 4671
4673 You can check the success of the download using the 'iminfo' command; 4672 You can check the success of the download using the 'iminfo' command;
4674 this includes a checksum verification so you can be sure no data 4673 this includes a checksum verification so you can be sure no data
4675 corruption happened: 4674 corruption happened:
4676 4675
4677 => imi 40100000 4676 => imi 40100000
4678 4677
4679 ## Checking Image at 40100000 ... 4678 ## Checking Image at 40100000 ...
4680 Image Name: 2.2.13 for initrd on TQM850L 4679 Image Name: 2.2.13 for initrd on TQM850L
4681 Image Type: PowerPC Linux Kernel Image (gzip compressed) 4680 Image Type: PowerPC Linux Kernel Image (gzip compressed)
4682 Data Size: 335725 Bytes = 327 kB = 0 MB 4681 Data Size: 335725 Bytes = 327 kB = 0 MB
4683 Load Address: 00000000 4682 Load Address: 00000000
4684 Entry Point: 0000000c 4683 Entry Point: 0000000c
4685 Verifying Checksum ... OK 4684 Verifying Checksum ... OK
4686 4685
4687 4686
4688 Boot Linux: 4687 Boot Linux:
4689 ----------- 4688 -----------
4690 4689
4691 The "bootm" command is used to boot an application that is stored in 4690 The "bootm" command is used to boot an application that is stored in
4692 memory (RAM or Flash). In case of a Linux kernel image, the contents 4691 memory (RAM or Flash). In case of a Linux kernel image, the contents
4693 of the "bootargs" environment variable is passed to the kernel as 4692 of the "bootargs" environment variable is passed to the kernel as
4694 parameters. You can check and modify this variable using the 4693 parameters. You can check and modify this variable using the
4695 "printenv" and "setenv" commands: 4694 "printenv" and "setenv" commands:
4696 4695
4697 4696
4698 => printenv bootargs 4697 => printenv bootargs
4699 bootargs=root=/dev/ram 4698 bootargs=root=/dev/ram
4700 4699
4701 => setenv bootargs root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2 4700 => setenv bootargs root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2
4702 4701
4703 => printenv bootargs 4702 => printenv bootargs
4704 bootargs=root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2 4703 bootargs=root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2
4705 4704
4706 => bootm 40020000 4705 => bootm 40020000
4707 ## Booting Linux kernel at 40020000 ... 4706 ## Booting Linux kernel at 40020000 ...
4708 Image Name: 2.2.13 for NFS on TQM850L 4707 Image Name: 2.2.13 for NFS on TQM850L
4709 Image Type: PowerPC Linux Kernel Image (gzip compressed) 4708 Image Type: PowerPC Linux Kernel Image (gzip compressed)
4710 Data Size: 381681 Bytes = 372 kB = 0 MB 4709 Data Size: 381681 Bytes = 372 kB = 0 MB
4711 Load Address: 00000000 4710 Load Address: 00000000
4712 Entry Point: 0000000c 4711 Entry Point: 0000000c
4713 Verifying Checksum ... OK 4712 Verifying Checksum ... OK
4714 Uncompressing Kernel Image ... OK 4713 Uncompressing Kernel Image ... OK
4715 Linux version 2.2.13 (wd@denx.local.net) (gcc version 2.95.2 19991024 (release)) #1 Wed Jul 19 02:35:17 MEST 2000 4714 Linux version 2.2.13 (wd@denx.local.net) (gcc version 2.95.2 19991024 (release)) #1 Wed Jul 19 02:35:17 MEST 2000
4716 Boot arguments: root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2 4715 Boot arguments: root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2
4717 time_init: decrementer frequency = 187500000/60 4716 time_init: decrementer frequency = 187500000/60
4718 Calibrating delay loop... 49.77 BogoMIPS 4717 Calibrating delay loop... 49.77 BogoMIPS
4719 Memory: 15208k available (700k kernel code, 444k data, 32k init) [c0000000,c1000000] 4718 Memory: 15208k available (700k kernel code, 444k data, 32k init) [c0000000,c1000000]
4720 ... 4719 ...
4721 4720
4722 If you want to boot a Linux kernel with initial RAM disk, you pass 4721 If you want to boot a Linux kernel with initial RAM disk, you pass
4723 the memory addresses of both the kernel and the initrd image (PPBCOOT 4722 the memory addresses of both the kernel and the initrd image (PPBCOOT
4724 format!) to the "bootm" command: 4723 format!) to the "bootm" command:
4725 4724
4726 => imi 40100000 40200000 4725 => imi 40100000 40200000
4727 4726
4728 ## Checking Image at 40100000 ... 4727 ## Checking Image at 40100000 ...
4729 Image Name: 2.2.13 for initrd on TQM850L 4728 Image Name: 2.2.13 for initrd on TQM850L
4730 Image Type: PowerPC Linux Kernel Image (gzip compressed) 4729 Image Type: PowerPC Linux Kernel Image (gzip compressed)
4731 Data Size: 335725 Bytes = 327 kB = 0 MB 4730 Data Size: 335725 Bytes = 327 kB = 0 MB
4732 Load Address: 00000000 4731 Load Address: 00000000
4733 Entry Point: 0000000c 4732 Entry Point: 0000000c
4734 Verifying Checksum ... OK 4733 Verifying Checksum ... OK
4735 4734
4736 ## Checking Image at 40200000 ... 4735 ## Checking Image at 40200000 ...
4737 Image Name: Simple Ramdisk Image 4736 Image Name: Simple Ramdisk Image
4738 Image Type: PowerPC Linux RAMDisk Image (gzip compressed) 4737 Image Type: PowerPC Linux RAMDisk Image (gzip compressed)
4739 Data Size: 566530 Bytes = 553 kB = 0 MB 4738 Data Size: 566530 Bytes = 553 kB = 0 MB
4740 Load Address: 00000000 4739 Load Address: 00000000
4741 Entry Point: 00000000 4740 Entry Point: 00000000
4742 Verifying Checksum ... OK 4741 Verifying Checksum ... OK
4743 4742
4744 => bootm 40100000 40200000 4743 => bootm 40100000 40200000
4745 ## Booting Linux kernel at 40100000 ... 4744 ## Booting Linux kernel at 40100000 ...
4746 Image Name: 2.2.13 for initrd on TQM850L 4745 Image Name: 2.2.13 for initrd on TQM850L
4747 Image Type: PowerPC Linux Kernel Image (gzip compressed) 4746 Image Type: PowerPC Linux Kernel Image (gzip compressed)
4748 Data Size: 335725 Bytes = 327 kB = 0 MB 4747 Data Size: 335725 Bytes = 327 kB = 0 MB
4749 Load Address: 00000000 4748 Load Address: 00000000
4750 Entry Point: 0000000c 4749 Entry Point: 0000000c
4751 Verifying Checksum ... OK 4750 Verifying Checksum ... OK
4752 Uncompressing Kernel Image ... OK 4751 Uncompressing Kernel Image ... OK
4753 ## Loading RAMDisk Image at 40200000 ... 4752 ## Loading RAMDisk Image at 40200000 ...
4754 Image Name: Simple Ramdisk Image 4753 Image Name: Simple Ramdisk Image
4755 Image Type: PowerPC Linux RAMDisk Image (gzip compressed) 4754 Image Type: PowerPC Linux RAMDisk Image (gzip compressed)
4756 Data Size: 566530 Bytes = 553 kB = 0 MB 4755 Data Size: 566530 Bytes = 553 kB = 0 MB
4757 Load Address: 00000000 4756 Load Address: 00000000
4758 Entry Point: 00000000 4757 Entry Point: 00000000
4759 Verifying Checksum ... OK 4758 Verifying Checksum ... OK
4760 Loading Ramdisk ... OK 4759 Loading Ramdisk ... OK
4761 Linux version 2.2.13 (wd@denx.local.net) (gcc version 2.95.2 19991024 (release)) #1 Wed Jul 19 02:32:08 MEST 2000 4760 Linux version 2.2.13 (wd@denx.local.net) (gcc version 2.95.2 19991024 (release)) #1 Wed Jul 19 02:32:08 MEST 2000
4762 Boot arguments: root=/dev/ram 4761 Boot arguments: root=/dev/ram
4763 time_init: decrementer frequency = 187500000/60 4762 time_init: decrementer frequency = 187500000/60
4764 Calibrating delay loop... 49.77 BogoMIPS 4763 Calibrating delay loop... 49.77 BogoMIPS
4765 ... 4764 ...
4766 RAMDISK: Compressed image found at block 0 4765 RAMDISK: Compressed image found at block 0
4767 VFS: Mounted root (ext2 filesystem). 4766 VFS: Mounted root (ext2 filesystem).
4768 4767
4769 bash# 4768 bash#
4770 4769
4771 Boot Linux and pass a flat device tree: 4770 Boot Linux and pass a flat device tree:
4772 ----------- 4771 -----------
4773 4772
4774 First, U-Boot must be compiled with the appropriate defines. See the section 4773 First, U-Boot must be compiled with the appropriate defines. See the section
4775 titled "Linux Kernel Interface" above for a more in depth explanation. The 4774 titled "Linux Kernel Interface" above for a more in depth explanation. The
4776 following is an example of how to start a kernel and pass an updated 4775 following is an example of how to start a kernel and pass an updated
4777 flat device tree: 4776 flat device tree:
4778 4777
4779 => print oftaddr 4778 => print oftaddr
4780 oftaddr=0x300000 4779 oftaddr=0x300000
4781 => print oft 4780 => print oft
4782 oft=oftrees/mpc8540ads.dtb 4781 oft=oftrees/mpc8540ads.dtb
4783 => tftp $oftaddr $oft 4782 => tftp $oftaddr $oft
4784 Speed: 1000, full duplex 4783 Speed: 1000, full duplex
4785 Using TSEC0 device 4784 Using TSEC0 device
4786 TFTP from server 192.168.1.1; our IP address is 192.168.1.101 4785 TFTP from server 192.168.1.1; our IP address is 192.168.1.101
4787 Filename 'oftrees/mpc8540ads.dtb'. 4786 Filename 'oftrees/mpc8540ads.dtb'.
4788 Load address: 0x300000 4787 Load address: 0x300000
4789 Loading: # 4788 Loading: #
4790 done 4789 done
4791 Bytes transferred = 4106 (100a hex) 4790 Bytes transferred = 4106 (100a hex)
4792 => tftp $loadaddr $bootfile 4791 => tftp $loadaddr $bootfile
4793 Speed: 1000, full duplex 4792 Speed: 1000, full duplex
4794 Using TSEC0 device 4793 Using TSEC0 device
4795 TFTP from server 192.168.1.1; our IP address is 192.168.1.2 4794 TFTP from server 192.168.1.1; our IP address is 192.168.1.2
4796 Filename 'uImage'. 4795 Filename 'uImage'.
4797 Load address: 0x200000 4796 Load address: 0x200000
4798 Loading:############ 4797 Loading:############
4799 done 4798 done
4800 Bytes transferred = 1029407 (fb51f hex) 4799 Bytes transferred = 1029407 (fb51f hex)
4801 => print loadaddr 4800 => print loadaddr
4802 loadaddr=200000 4801 loadaddr=200000
4803 => print oftaddr 4802 => print oftaddr
4804 oftaddr=0x300000 4803 oftaddr=0x300000
4805 => bootm $loadaddr - $oftaddr 4804 => bootm $loadaddr - $oftaddr
4806 ## Booting image at 00200000 ... 4805 ## Booting image at 00200000 ...
4807 Image Name: Linux-2.6.17-dirty 4806 Image Name: Linux-2.6.17-dirty
4808 Image Type: PowerPC Linux Kernel Image (gzip compressed) 4807 Image Type: PowerPC Linux Kernel Image (gzip compressed)
4809 Data Size: 1029343 Bytes = 1005.2 kB 4808 Data Size: 1029343 Bytes = 1005.2 kB
4810 Load Address: 00000000 4809 Load Address: 00000000
4811 Entry Point: 00000000 4810 Entry Point: 00000000
4812 Verifying Checksum ... OK 4811 Verifying Checksum ... OK
4813 Uncompressing Kernel Image ... OK 4812 Uncompressing Kernel Image ... OK
4814 Booting using flat device tree at 0x300000 4813 Booting using flat device tree at 0x300000
4815 Using MPC85xx ADS machine description 4814 Using MPC85xx ADS machine description
4816 Memory CAM mapping: CAM0=256Mb, CAM1=256Mb, CAM2=0Mb residual: 0Mb 4815 Memory CAM mapping: CAM0=256Mb, CAM1=256Mb, CAM2=0Mb residual: 0Mb
4817 [snip] 4816 [snip]
4818 4817
4819 4818
4820 More About U-Boot Image Types: 4819 More About U-Boot Image Types:
4821 ------------------------------ 4820 ------------------------------
4822 4821
4823 U-Boot supports the following image types: 4822 U-Boot supports the following image types:
4824 4823
4825 "Standalone Programs" are directly runnable in the environment 4824 "Standalone Programs" are directly runnable in the environment
4826 provided by U-Boot; it is expected that (if they behave 4825 provided by U-Boot; it is expected that (if they behave
4827 well) you can continue to work in U-Boot after return from 4826 well) you can continue to work in U-Boot after return from
4828 the Standalone Program. 4827 the Standalone Program.
4829 "OS Kernel Images" are usually images of some Embedded OS which 4828 "OS Kernel Images" are usually images of some Embedded OS which
4830 will take over control completely. Usually these programs 4829 will take over control completely. Usually these programs
4831 will install their own set of exception handlers, device 4830 will install their own set of exception handlers, device
4832 drivers, set up the MMU, etc. - this means, that you cannot 4831 drivers, set up the MMU, etc. - this means, that you cannot
4833 expect to re-enter U-Boot except by resetting the CPU. 4832 expect to re-enter U-Boot except by resetting the CPU.
4834 "RAMDisk Images" are more or less just data blocks, and their 4833 "RAMDisk Images" are more or less just data blocks, and their
4835 parameters (address, size) are passed to an OS kernel that is 4834 parameters (address, size) are passed to an OS kernel that is
4836 being started. 4835 being started.
4837 "Multi-File Images" contain several images, typically an OS 4836 "Multi-File Images" contain several images, typically an OS
4838 (Linux) kernel image and one or more data images like 4837 (Linux) kernel image and one or more data images like
4839 RAMDisks. This construct is useful for instance when you want 4838 RAMDisks. This construct is useful for instance when you want
4840 to boot over the network using BOOTP etc., where the boot 4839 to boot over the network using BOOTP etc., where the boot
4841 server provides just a single image file, but you want to get 4840 server provides just a single image file, but you want to get
4842 for instance an OS kernel and a RAMDisk image. 4841 for instance an OS kernel and a RAMDisk image.
4843 4842
4844 "Multi-File Images" start with a list of image sizes, each 4843 "Multi-File Images" start with a list of image sizes, each
4845 image size (in bytes) specified by an "uint32_t" in network 4844 image size (in bytes) specified by an "uint32_t" in network
4846 byte order. This list is terminated by an "(uint32_t)0". 4845 byte order. This list is terminated by an "(uint32_t)0".
4847 Immediately after the terminating 0 follow the images, one by 4846 Immediately after the terminating 0 follow the images, one by
4848 one, all aligned on "uint32_t" boundaries (size rounded up to 4847 one, all aligned on "uint32_t" boundaries (size rounded up to
4849 a multiple of 4 bytes). 4848 a multiple of 4 bytes).
4850 4849
4851 "Firmware Images" are binary images containing firmware (like 4850 "Firmware Images" are binary images containing firmware (like
4852 U-Boot or FPGA images) which usually will be programmed to 4851 U-Boot or FPGA images) which usually will be programmed to
4853 flash memory. 4852 flash memory.
4854 4853
4855 "Script files" are command sequences that will be executed by 4854 "Script files" are command sequences that will be executed by
4856 U-Boot's command interpreter; this feature is especially 4855 U-Boot's command interpreter; this feature is especially
4857 useful when you configure U-Boot to use a real shell (hush) 4856 useful when you configure U-Boot to use a real shell (hush)
4858 as command interpreter. 4857 as command interpreter.
4859 4858
4860 Booting the Linux zImage: 4859 Booting the Linux zImage:
4861 ------------------------- 4860 -------------------------
4862 4861
4863 On some platforms, it's possible to boot Linux zImage. This is done 4862 On some platforms, it's possible to boot Linux zImage. This is done
4864 using the "bootz" command. The syntax of "bootz" command is the same 4863 using the "bootz" command. The syntax of "bootz" command is the same
4865 as the syntax of "bootm" command. 4864 as the syntax of "bootm" command.
4866 4865
4867 Note, defining the CONFIG_SUPPORT_RAW_INITRD allows user to supply 4866 Note, defining the CONFIG_SUPPORT_RAW_INITRD allows user to supply
4868 kernel with raw initrd images. The syntax is slightly different, the 4867 kernel with raw initrd images. The syntax is slightly different, the
4869 address of the initrd must be augmented by it's size, in the following 4868 address of the initrd must be augmented by it's size, in the following
4870 format: "<initrd addres>:<initrd size>". 4869 format: "<initrd addres>:<initrd size>".
4871 4870
4872 4871
4873 Standalone HOWTO: 4872 Standalone HOWTO:
4874 ================= 4873 =================
4875 4874
4876 One of the features of U-Boot is that you can dynamically load and 4875 One of the features of U-Boot is that you can dynamically load and
4877 run "standalone" applications, which can use some resources of 4876 run "standalone" applications, which can use some resources of
4878 U-Boot like console I/O functions or interrupt services. 4877 U-Boot like console I/O functions or interrupt services.
4879 4878
4880 Two simple examples are included with the sources: 4879 Two simple examples are included with the sources:
4881 4880
4882 "Hello World" Demo: 4881 "Hello World" Demo:
4883 ------------------- 4882 -------------------
4884 4883
4885 'examples/hello_world.c' contains a small "Hello World" Demo 4884 'examples/hello_world.c' contains a small "Hello World" Demo
4886 application; it is automatically compiled when you build U-Boot. 4885 application; it is automatically compiled when you build U-Boot.
4887 It's configured to run at address 0x00040004, so you can play with it 4886 It's configured to run at address 0x00040004, so you can play with it
4888 like that: 4887 like that:
4889 4888
4890 => loads 4889 => loads
4891 ## Ready for S-Record download ... 4890 ## Ready for S-Record download ...
4892 ~>examples/hello_world.srec 4891 ~>examples/hello_world.srec
4893 1 2 3 4 5 6 7 8 9 10 11 ... 4892 1 2 3 4 5 6 7 8 9 10 11 ...
4894 [file transfer complete] 4893 [file transfer complete]
4895 [connected] 4894 [connected]
4896 ## Start Addr = 0x00040004 4895 ## Start Addr = 0x00040004
4897 4896
4898 => go 40004 Hello World! This is a test. 4897 => go 40004 Hello World! This is a test.
4899 ## Starting application at 0x00040004 ... 4898 ## Starting application at 0x00040004 ...
4900 Hello World 4899 Hello World
4901 argc = 7 4900 argc = 7
4902 argv[0] = "40004" 4901 argv[0] = "40004"
4903 argv[1] = "Hello" 4902 argv[1] = "Hello"
4904 argv[2] = "World!" 4903 argv[2] = "World!"
4905 argv[3] = "This" 4904 argv[3] = "This"
4906 argv[4] = "is" 4905 argv[4] = "is"
4907 argv[5] = "a" 4906 argv[5] = "a"
4908 argv[6] = "test." 4907 argv[6] = "test."
4909 argv[7] = "<NULL>" 4908 argv[7] = "<NULL>"
4910 Hit any key to exit ... 4909 Hit any key to exit ...
4911 4910
4912 ## Application terminated, rc = 0x0 4911 ## Application terminated, rc = 0x0
4913 4912
4914 Another example, which demonstrates how to register a CPM interrupt 4913 Another example, which demonstrates how to register a CPM interrupt
4915 handler with the U-Boot code, can be found in 'examples/timer.c'. 4914 handler with the U-Boot code, can be found in 'examples/timer.c'.
4916 Here, a CPM timer is set up to generate an interrupt every second. 4915 Here, a CPM timer is set up to generate an interrupt every second.
4917 The interrupt service routine is trivial, just printing a '.' 4916 The interrupt service routine is trivial, just printing a '.'
4918 character, but this is just a demo program. The application can be 4917 character, but this is just a demo program. The application can be
4919 controlled by the following keys: 4918 controlled by the following keys:
4920 4919
4921 ? - print current values og the CPM Timer registers 4920 ? - print current values og the CPM Timer registers
4922 b - enable interrupts and start timer 4921 b - enable interrupts and start timer
4923 e - stop timer and disable interrupts 4922 e - stop timer and disable interrupts
4924 q - quit application 4923 q - quit application
4925 4924
4926 => loads 4925 => loads
4927 ## Ready for S-Record download ... 4926 ## Ready for S-Record download ...
4928 ~>examples/timer.srec 4927 ~>examples/timer.srec
4929 1 2 3 4 5 6 7 8 9 10 11 ... 4928 1 2 3 4 5 6 7 8 9 10 11 ...
4930 [file transfer complete] 4929 [file transfer complete]
4931 [connected] 4930 [connected]
4932 ## Start Addr = 0x00040004 4931 ## Start Addr = 0x00040004
4933 4932
4934 => go 40004 4933 => go 40004
4935 ## Starting application at 0x00040004 ... 4934 ## Starting application at 0x00040004 ...
4936 TIMERS=0xfff00980 4935 TIMERS=0xfff00980
4937 Using timer 1 4936 Using timer 1
4938 tgcr @ 0xfff00980, tmr @ 0xfff00990, trr @ 0xfff00994, tcr @ 0xfff00998, tcn @ 0xfff0099c, ter @ 0xfff009b0 4937 tgcr @ 0xfff00980, tmr @ 0xfff00990, trr @ 0xfff00994, tcr @ 0xfff00998, tcn @ 0xfff0099c, ter @ 0xfff009b0
4939 4938
4940 Hit 'b': 4939 Hit 'b':
4941 [q, b, e, ?] Set interval 1000000 us 4940 [q, b, e, ?] Set interval 1000000 us
4942 Enabling timer 4941 Enabling timer
4943 Hit '?': 4942 Hit '?':
4944 [q, b, e, ?] ........ 4943 [q, b, e, ?] ........
4945 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0xef6, ter=0x0 4944 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0xef6, ter=0x0
4946 Hit '?': 4945 Hit '?':
4947 [q, b, e, ?] . 4946 [q, b, e, ?] .
4948 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x2ad4, ter=0x0 4947 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x2ad4, ter=0x0
4949 Hit '?': 4948 Hit '?':
4950 [q, b, e, ?] . 4949 [q, b, e, ?] .
4951 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x1efc, ter=0x0 4950 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x1efc, ter=0x0
4952 Hit '?': 4951 Hit '?':
4953 [q, b, e, ?] . 4952 [q, b, e, ?] .
4954 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x169d, ter=0x0 4953 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x169d, ter=0x0
4955 Hit 'e': 4954 Hit 'e':
4956 [q, b, e, ?] ...Stopping timer 4955 [q, b, e, ?] ...Stopping timer
4957 Hit 'q': 4956 Hit 'q':
4958 [q, b, e, ?] ## Application terminated, rc = 0x0 4957 [q, b, e, ?] ## Application terminated, rc = 0x0
4959 4958
4960 4959
4961 Minicom warning: 4960 Minicom warning:
4962 ================ 4961 ================
4963 4962
4964 Over time, many people have reported problems when trying to use the 4963 Over time, many people have reported problems when trying to use the
4965 "minicom" terminal emulation program for serial download. I (wd) 4964 "minicom" terminal emulation program for serial download. I (wd)
4966 consider minicom to be broken, and recommend not to use it. Under 4965 consider minicom to be broken, and recommend not to use it. Under
4967 Unix, I recommend to use C-Kermit for general purpose use (and 4966 Unix, I recommend to use C-Kermit for general purpose use (and
4968 especially for kermit binary protocol download ("loadb" command), and 4967 especially for kermit binary protocol download ("loadb" command), and
4969 use "cu" for S-Record download ("loads" command). See 4968 use "cu" for S-Record download ("loads" command). See
4970 http://www.denx.de/wiki/view/DULG/SystemSetup#Section_4.3. 4969 http://www.denx.de/wiki/view/DULG/SystemSetup#Section_4.3.
4971 for help with kermit. 4970 for help with kermit.
4972 4971
4973 4972
4974 Nevertheless, if you absolutely want to use it try adding this 4973 Nevertheless, if you absolutely want to use it try adding this
4975 configuration to your "File transfer protocols" section: 4974 configuration to your "File transfer protocols" section:
4976 4975
4977 Name Program Name U/D FullScr IO-Red. Multi 4976 Name Program Name U/D FullScr IO-Red. Multi
4978 X kermit /usr/bin/kermit -i -l %l -s Y U Y N N 4977 X kermit /usr/bin/kermit -i -l %l -s Y U Y N N
4979 Y kermit /usr/bin/kermit -i -l %l -r N D Y N N 4978 Y kermit /usr/bin/kermit -i -l %l -r N D Y N N
4980 4979
4981 4980
4982 NetBSD Notes: 4981 NetBSD Notes:
4983 ============= 4982 =============
4984 4983
4985 Starting at version 0.9.2, U-Boot supports NetBSD both as host 4984 Starting at version 0.9.2, U-Boot supports NetBSD both as host
4986 (build U-Boot) and target system (boots NetBSD/mpc8xx). 4985 (build U-Boot) and target system (boots NetBSD/mpc8xx).
4987 4986
4988 Building requires a cross environment; it is known to work on 4987 Building requires a cross environment; it is known to work on
4989 NetBSD/i386 with the cross-powerpc-netbsd-1.3 package (you will also 4988 NetBSD/i386 with the cross-powerpc-netbsd-1.3 package (you will also
4990 need gmake since the Makefiles are not compatible with BSD make). 4989 need gmake since the Makefiles are not compatible with BSD make).
4991 Note that the cross-powerpc package does not install include files; 4990 Note that the cross-powerpc package does not install include files;
4992 attempting to build U-Boot will fail because <machine/ansi.h> is 4991 attempting to build U-Boot will fail because <machine/ansi.h> is
4993 missing. This file has to be installed and patched manually: 4992 missing. This file has to be installed and patched manually:
4994 4993
4995 # cd /usr/pkg/cross/powerpc-netbsd/include 4994 # cd /usr/pkg/cross/powerpc-netbsd/include
4996 # mkdir powerpc 4995 # mkdir powerpc
4997 # ln -s powerpc machine 4996 # ln -s powerpc machine
4998 # cp /usr/src/sys/arch/powerpc/include/ansi.h powerpc/ansi.h 4997 # cp /usr/src/sys/arch/powerpc/include/ansi.h powerpc/ansi.h
4999 # ${EDIT} powerpc/ansi.h ## must remove __va_list, _BSD_VA_LIST 4998 # ${EDIT} powerpc/ansi.h ## must remove __va_list, _BSD_VA_LIST
5000 4999
5001 Native builds *don't* work due to incompatibilities between native 5000 Native builds *don't* work due to incompatibilities between native
5002 and U-Boot include files. 5001 and U-Boot include files.
5003 5002
5004 Booting assumes that (the first part of) the image booted is a 5003 Booting assumes that (the first part of) the image booted is a
5005 stage-2 loader which in turn loads and then invokes the kernel 5004 stage-2 loader which in turn loads and then invokes the kernel
5006 proper. Loader sources will eventually appear in the NetBSD source 5005 proper. Loader sources will eventually appear in the NetBSD source
5007 tree (probably in sys/arc/mpc8xx/stand/u-boot_stage2/); in the 5006 tree (probably in sys/arc/mpc8xx/stand/u-boot_stage2/); in the
5008 meantime, see ftp://ftp.denx.de/pub/u-boot/ppcboot_stage2.tar.gz 5007 meantime, see ftp://ftp.denx.de/pub/u-boot/ppcboot_stage2.tar.gz
5009 5008
5010 5009
5011 Implementation Internals: 5010 Implementation Internals:
5012 ========================= 5011 =========================
5013 5012
5014 The following is not intended to be a complete description of every 5013 The following is not intended to be a complete description of every
5015 implementation detail. However, it should help to understand the 5014 implementation detail. However, it should help to understand the
5016 inner workings of U-Boot and make it easier to port it to custom 5015 inner workings of U-Boot and make it easier to port it to custom
5017 hardware. 5016 hardware.
5018 5017
5019 5018
5020 Initial Stack, Global Data: 5019 Initial Stack, Global Data:
5021 --------------------------- 5020 ---------------------------
5022 5021
5023 The implementation of U-Boot is complicated by the fact that U-Boot 5022 The implementation of U-Boot is complicated by the fact that U-Boot
5024 starts running out of ROM (flash memory), usually without access to 5023 starts running out of ROM (flash memory), usually without access to
5025 system RAM (because the memory controller is not initialized yet). 5024 system RAM (because the memory controller is not initialized yet).
5026 This means that we don't have writable Data or BSS segments, and BSS 5025 This means that we don't have writable Data or BSS segments, and BSS
5027 is not initialized as zero. To be able to get a C environment working 5026 is not initialized as zero. To be able to get a C environment working
5028 at all, we have to allocate at least a minimal stack. Implementation 5027 at all, we have to allocate at least a minimal stack. Implementation
5029 options for this are defined and restricted by the CPU used: Some CPU 5028 options for this are defined and restricted by the CPU used: Some CPU
5030 models provide on-chip memory (like the IMMR area on MPC8xx and 5029 models provide on-chip memory (like the IMMR area on MPC8xx and
5031 MPC826x processors), on others (parts of) the data cache can be 5030 MPC826x processors), on others (parts of) the data cache can be
5032 locked as (mis-) used as memory, etc. 5031 locked as (mis-) used as memory, etc.
5033 5032
5034 Chris Hallinan posted a good summary of these issues to the 5033 Chris Hallinan posted a good summary of these issues to the
5035 U-Boot mailing list: 5034 U-Boot mailing list:
5036 5035
5037 Subject: RE: [U-Boot-Users] RE: More On Memory Bank x (nothingness)? 5036 Subject: RE: [U-Boot-Users] RE: More On Memory Bank x (nothingness)?
5038 From: "Chris Hallinan" <clh@net1plus.com> 5037 From: "Chris Hallinan" <clh@net1plus.com>
5039 Date: Mon, 10 Feb 2003 16:43:46 -0500 (22:43 MET) 5038 Date: Mon, 10 Feb 2003 16:43:46 -0500 (22:43 MET)
5040 ... 5039 ...
5041 5040
5042 Correct me if I'm wrong, folks, but the way I understand it 5041 Correct me if I'm wrong, folks, but the way I understand it
5043 is this: Using DCACHE as initial RAM for Stack, etc, does not 5042 is this: Using DCACHE as initial RAM for Stack, etc, does not
5044 require any physical RAM backing up the cache. The cleverness 5043 require any physical RAM backing up the cache. The cleverness
5045 is that the cache is being used as a temporary supply of 5044 is that the cache is being used as a temporary supply of
5046 necessary storage before the SDRAM controller is setup. It's 5045 necessary storage before the SDRAM controller is setup. It's
5047 beyond the scope of this list to explain the details, but you 5046 beyond the scope of this list to explain the details, but you
5048 can see how this works by studying the cache architecture and 5047 can see how this works by studying the cache architecture and
5049 operation in the architecture and processor-specific manuals. 5048 operation in the architecture and processor-specific manuals.
5050 5049
5051 OCM is On Chip Memory, which I believe the 405GP has 4K. It 5050 OCM is On Chip Memory, which I believe the 405GP has 4K. It
5052 is another option for the system designer to use as an 5051 is another option for the system designer to use as an
5053 initial stack/RAM area prior to SDRAM being available. Either 5052 initial stack/RAM area prior to SDRAM being available. Either
5054 option should work for you. Using CS 4 should be fine if your 5053 option should work for you. Using CS 4 should be fine if your
5055 board designers haven't used it for something that would 5054 board designers haven't used it for something that would
5056 cause you grief during the initial boot! It is frequently not 5055 cause you grief during the initial boot! It is frequently not
5057 used. 5056 used.
5058 5057
5059 CONFIG_SYS_INIT_RAM_ADDR should be somewhere that won't interfere 5058 CONFIG_SYS_INIT_RAM_ADDR should be somewhere that won't interfere
5060 with your processor/board/system design. The default value 5059 with your processor/board/system design. The default value
5061 you will find in any recent u-boot distribution in 5060 you will find in any recent u-boot distribution in
5062 walnut.h should work for you. I'd set it to a value larger 5061 walnut.h should work for you. I'd set it to a value larger
5063 than your SDRAM module. If you have a 64MB SDRAM module, set 5062 than your SDRAM module. If you have a 64MB SDRAM module, set
5064 it above 400_0000. Just make sure your board has no resources 5063 it above 400_0000. Just make sure your board has no resources
5065 that are supposed to respond to that address! That code in 5064 that are supposed to respond to that address! That code in
5066 start.S has been around a while and should work as is when 5065 start.S has been around a while and should work as is when
5067 you get the config right. 5066 you get the config right.
5068 5067
5069 -Chris Hallinan 5068 -Chris Hallinan
5070 DS4.COM, Inc. 5069 DS4.COM, Inc.
5071 5070
5072 It is essential to remember this, since it has some impact on the C 5071 It is essential to remember this, since it has some impact on the C
5073 code for the initialization procedures: 5072 code for the initialization procedures:
5074 5073
5075 * Initialized global data (data segment) is read-only. Do not attempt 5074 * Initialized global data (data segment) is read-only. Do not attempt
5076 to write it. 5075 to write it.
5077 5076
5078 * Do not use any uninitialized global data (or implicitly initialized 5077 * Do not use any uninitialized global data (or implicitly initialized
5079 as zero data - BSS segment) at all - this is undefined, initiali- 5078 as zero data - BSS segment) at all - this is undefined, initiali-
5080 zation is performed later (when relocating to RAM). 5079 zation is performed later (when relocating to RAM).
5081 5080
5082 * Stack space is very limited. Avoid big data buffers or things like 5081 * Stack space is very limited. Avoid big data buffers or things like
5083 that. 5082 that.
5084 5083
5085 Having only the stack as writable memory limits means we cannot use 5084 Having only the stack as writable memory limits means we cannot use
5086 normal global data to share information between the code. But it 5085 normal global data to share information between the code. But it
5087 turned out that the implementation of U-Boot can be greatly 5086 turned out that the implementation of U-Boot can be greatly
5088 simplified by making a global data structure (gd_t) available to all 5087 simplified by making a global data structure (gd_t) available to all
5089 functions. We could pass a pointer to this data as argument to _all_ 5088 functions. We could pass a pointer to this data as argument to _all_
5090 functions, but this would bloat the code. Instead we use a feature of 5089 functions, but this would bloat the code. Instead we use a feature of
5091 the GCC compiler (Global Register Variables) to share the data: we 5090 the GCC compiler (Global Register Variables) to share the data: we
5092 place a pointer (gd) to the global data into a register which we 5091 place a pointer (gd) to the global data into a register which we
5093 reserve for this purpose. 5092 reserve for this purpose.
5094 5093
5095 When choosing a register for such a purpose we are restricted by the 5094 When choosing a register for such a purpose we are restricted by the
5096 relevant (E)ABI specifications for the current architecture, and by 5095 relevant (E)ABI specifications for the current architecture, and by
5097 GCC's implementation. 5096 GCC's implementation.
5098 5097
5099 For PowerPC, the following registers have specific use: 5098 For PowerPC, the following registers have specific use:
5100 R1: stack pointer 5099 R1: stack pointer
5101 R2: reserved for system use 5100 R2: reserved for system use
5102 R3-R4: parameter passing and return values 5101 R3-R4: parameter passing and return values
5103 R5-R10: parameter passing 5102 R5-R10: parameter passing
5104 R13: small data area pointer 5103 R13: small data area pointer
5105 R30: GOT pointer 5104 R30: GOT pointer
5106 R31: frame pointer 5105 R31: frame pointer
5107 5106
5108 (U-Boot also uses R12 as internal GOT pointer. r12 5107 (U-Boot also uses R12 as internal GOT pointer. r12
5109 is a volatile register so r12 needs to be reset when 5108 is a volatile register so r12 needs to be reset when
5110 going back and forth between asm and C) 5109 going back and forth between asm and C)
5111 5110
5112 ==> U-Boot will use R2 to hold a pointer to the global data 5111 ==> U-Boot will use R2 to hold a pointer to the global data
5113 5112
5114 Note: on PPC, we could use a static initializer (since the 5113 Note: on PPC, we could use a static initializer (since the
5115 address of the global data structure is known at compile time), 5114 address of the global data structure is known at compile time),
5116 but it turned out that reserving a register results in somewhat 5115 but it turned out that reserving a register results in somewhat
5117 smaller code - although the code savings are not that big (on 5116 smaller code - although the code savings are not that big (on
5118 average for all boards 752 bytes for the whole U-Boot image, 5117 average for all boards 752 bytes for the whole U-Boot image,
5119 624 text + 127 data). 5118 624 text + 127 data).
5120 5119
5121 On ARM, the following registers are used: 5120 On ARM, the following registers are used:
5122 5121
5123 R0: function argument word/integer result 5122 R0: function argument word/integer result
5124 R1-R3: function argument word 5123 R1-R3: function argument word
5125 R9: platform specific 5124 R9: platform specific
5126 R10: stack limit (used only if stack checking is enabled) 5125 R10: stack limit (used only if stack checking is enabled)
5127 R11: argument (frame) pointer 5126 R11: argument (frame) pointer
5128 R12: temporary workspace 5127 R12: temporary workspace
5129 R13: stack pointer 5128 R13: stack pointer
5130 R14: link register 5129 R14: link register
5131 R15: program counter 5130 R15: program counter
5132 5131
5133 ==> U-Boot will use R9 to hold a pointer to the global data 5132 ==> U-Boot will use R9 to hold a pointer to the global data
5134 5133
5135 Note: on ARM, only R_ARM_RELATIVE relocations are supported. 5134 Note: on ARM, only R_ARM_RELATIVE relocations are supported.
5136 5135
5137 On Nios II, the ABI is documented here: 5136 On Nios II, the ABI is documented here:
5138 http://www.altera.com/literature/hb/nios2/n2cpu_nii51016.pdf 5137 http://www.altera.com/literature/hb/nios2/n2cpu_nii51016.pdf
5139 5138
5140 ==> U-Boot will use gp to hold a pointer to the global data 5139 ==> U-Boot will use gp to hold a pointer to the global data
5141 5140
5142 Note: on Nios II, we give "-G0" option to gcc and don't use gp 5141 Note: on Nios II, we give "-G0" option to gcc and don't use gp
5143 to access small data sections, so gp is free. 5142 to access small data sections, so gp is free.
5144 5143
5145 On NDS32, the following registers are used: 5144 On NDS32, the following registers are used:
5146 5145
5147 R0-R1: argument/return 5146 R0-R1: argument/return
5148 R2-R5: argument 5147 R2-R5: argument
5149 R15: temporary register for assembler 5148 R15: temporary register for assembler
5150 R16: trampoline register 5149 R16: trampoline register
5151 R28: frame pointer (FP) 5150 R28: frame pointer (FP)
5152 R29: global pointer (GP) 5151 R29: global pointer (GP)
5153 R30: link register (LP) 5152 R30: link register (LP)
5154 R31: stack pointer (SP) 5153 R31: stack pointer (SP)
5155 PC: program counter (PC) 5154 PC: program counter (PC)
5156 5155
5157 ==> U-Boot will use R10 to hold a pointer to the global data 5156 ==> U-Boot will use R10 to hold a pointer to the global data
5158 5157
5159 NOTE: DECLARE_GLOBAL_DATA_PTR must be used with file-global scope, 5158 NOTE: DECLARE_GLOBAL_DATA_PTR must be used with file-global scope,
5160 or current versions of GCC may "optimize" the code too much. 5159 or current versions of GCC may "optimize" the code too much.
5161 5160
5162 Memory Management: 5161 Memory Management:
5163 ------------------ 5162 ------------------
5164 5163
5165 U-Boot runs in system state and uses physical addresses, i.e. the 5164 U-Boot runs in system state and uses physical addresses, i.e. the
5166 MMU is not used either for address mapping nor for memory protection. 5165 MMU is not used either for address mapping nor for memory protection.
5167 5166
5168 The available memory is mapped to fixed addresses using the memory 5167 The available memory is mapped to fixed addresses using the memory
5169 controller. In this process, a contiguous block is formed for each 5168 controller. In this process, a contiguous block is formed for each
5170 memory type (Flash, SDRAM, SRAM), even when it consists of several 5169 memory type (Flash, SDRAM, SRAM), even when it consists of several
5171 physical memory banks. 5170 physical memory banks.
5172 5171
5173 U-Boot is installed in the first 128 kB of the first Flash bank (on 5172 U-Boot is installed in the first 128 kB of the first Flash bank (on
5174 TQM8xxL modules this is the range 0x40000000 ... 0x4001FFFF). After 5173 TQM8xxL modules this is the range 0x40000000 ... 0x4001FFFF). After
5175 booting and sizing and initializing DRAM, the code relocates itself 5174 booting and sizing and initializing DRAM, the code relocates itself
5176 to the upper end of DRAM. Immediately below the U-Boot code some 5175 to the upper end of DRAM. Immediately below the U-Boot code some
5177 memory is reserved for use by malloc() [see CONFIG_SYS_MALLOC_LEN 5176 memory is reserved for use by malloc() [see CONFIG_SYS_MALLOC_LEN
5178 configuration setting]. Below that, a structure with global Board 5177 configuration setting]. Below that, a structure with global Board
5179 Info data is placed, followed by the stack (growing downward). 5178 Info data is placed, followed by the stack (growing downward).
5180 5179
5181 Additionally, some exception handler code is copied to the low 8 kB 5180 Additionally, some exception handler code is copied to the low 8 kB
5182 of DRAM (0x00000000 ... 0x00001FFF). 5181 of DRAM (0x00000000 ... 0x00001FFF).
5183 5182
5184 So a typical memory configuration with 16 MB of DRAM could look like 5183 So a typical memory configuration with 16 MB of DRAM could look like
5185 this: 5184 this:
5186 5185
5187 0x0000 0000 Exception Vector code 5186 0x0000 0000 Exception Vector code
5188 : 5187 :
5189 0x0000 1FFF 5188 0x0000 1FFF
5190 0x0000 2000 Free for Application Use 5189 0x0000 2000 Free for Application Use
5191 : 5190 :
5192 : 5191 :
5193 5192
5194 : 5193 :
5195 : 5194 :
5196 0x00FB FF20 Monitor Stack (Growing downward) 5195 0x00FB FF20 Monitor Stack (Growing downward)
5197 0x00FB FFAC Board Info Data and permanent copy of global data 5196 0x00FB FFAC Board Info Data and permanent copy of global data
5198 0x00FC 0000 Malloc Arena 5197 0x00FC 0000 Malloc Arena
5199 : 5198 :
5200 0x00FD FFFF 5199 0x00FD FFFF
5201 0x00FE 0000 RAM Copy of Monitor Code 5200 0x00FE 0000 RAM Copy of Monitor Code
5202 ... eventually: LCD or video framebuffer 5201 ... eventually: LCD or video framebuffer
5203 ... eventually: pRAM (Protected RAM - unchanged by reset) 5202 ... eventually: pRAM (Protected RAM - unchanged by reset)
5204 0x00FF FFFF [End of RAM] 5203 0x00FF FFFF [End of RAM]
5205 5204
5206 5205
5207 System Initialization: 5206 System Initialization:
5208 ---------------------- 5207 ----------------------
5209 5208
5210 In the reset configuration, U-Boot starts at the reset entry point 5209 In the reset configuration, U-Boot starts at the reset entry point
5211 (on most PowerPC systems at address 0x00000100). Because of the reset 5210 (on most PowerPC systems at address 0x00000100). Because of the reset
5212 configuration for CS0# this is a mirror of the on board Flash memory. 5211 configuration for CS0# this is a mirror of the on board Flash memory.
5213 To be able to re-map memory U-Boot then jumps to its link address. 5212 To be able to re-map memory U-Boot then jumps to its link address.
5214 To be able to implement the initialization code in C, a (small!) 5213 To be able to implement the initialization code in C, a (small!)
5215 initial stack is set up in the internal Dual Ported RAM (in case CPUs 5214 initial stack is set up in the internal Dual Ported RAM (in case CPUs
5216 which provide such a feature like), or in a locked part of the data 5215 which provide such a feature like), or in a locked part of the data
5217 cache. After that, U-Boot initializes the CPU core, the caches and 5216 cache. After that, U-Boot initializes the CPU core, the caches and
5218 the SIU. 5217 the SIU.
5219 5218
5220 Next, all (potentially) available memory banks are mapped using a 5219 Next, all (potentially) available memory banks are mapped using a
5221 preliminary mapping. For example, we put them on 512 MB boundaries 5220 preliminary mapping. For example, we put them on 512 MB boundaries
5222 (multiples of 0x20000000: SDRAM on 0x00000000 and 0x20000000, Flash 5221 (multiples of 0x20000000: SDRAM on 0x00000000 and 0x20000000, Flash
5223 on 0x40000000 and 0x60000000, SRAM on 0x80000000). Then UPM A is 5222 on 0x40000000 and 0x60000000, SRAM on 0x80000000). Then UPM A is
5224 programmed for SDRAM access. Using the temporary configuration, a 5223 programmed for SDRAM access. Using the temporary configuration, a
5225 simple memory test is run that determines the size of the SDRAM 5224 simple memory test is run that determines the size of the SDRAM
5226 banks. 5225 banks.
5227 5226
5228 When there is more than one SDRAM bank, and the banks are of 5227 When there is more than one SDRAM bank, and the banks are of
5229 different size, the largest is mapped first. For equal size, the first 5228 different size, the largest is mapped first. For equal size, the first
5230 bank (CS2#) is mapped first. The first mapping is always for address 5229 bank (CS2#) is mapped first. The first mapping is always for address
5231 0x00000000, with any additional banks following immediately to create 5230 0x00000000, with any additional banks following immediately to create
5232 contiguous memory starting from 0. 5231 contiguous memory starting from 0.
5233 5232
5234 Then, the monitor installs itself at the upper end of the SDRAM area 5233 Then, the monitor installs itself at the upper end of the SDRAM area
5235 and allocates memory for use by malloc() and for the global Board 5234 and allocates memory for use by malloc() and for the global Board
5236 Info data; also, the exception vector code is copied to the low RAM 5235 Info data; also, the exception vector code is copied to the low RAM
5237 pages, and the final stack is set up. 5236 pages, and the final stack is set up.
5238 5237
5239 Only after this relocation will you have a "normal" C environment; 5238 Only after this relocation will you have a "normal" C environment;
5240 until that you are restricted in several ways, mostly because you are 5239 until that you are restricted in several ways, mostly because you are
5241 running from ROM, and because the code will have to be relocated to a 5240 running from ROM, and because the code will have to be relocated to a
5242 new address in RAM. 5241 new address in RAM.
5243 5242
5244 5243
5245 U-Boot Porting Guide: 5244 U-Boot Porting Guide:
5246 ---------------------- 5245 ----------------------
5247 5246
5248 [Based on messages by Jerry Van Baren in the U-Boot-Users mailing 5247 [Based on messages by Jerry Van Baren in the U-Boot-Users mailing
5249 list, October 2002] 5248 list, October 2002]
5250 5249
5251 5250
5252 int main(int argc, char *argv[]) 5251 int main(int argc, char *argv[])
5253 { 5252 {
5254 sighandler_t no_more_time; 5253 sighandler_t no_more_time;
5255 5254
5256 signal(SIGALRM, no_more_time); 5255 signal(SIGALRM, no_more_time);
5257 alarm(PROJECT_DEADLINE - toSec (3 * WEEK)); 5256 alarm(PROJECT_DEADLINE - toSec (3 * WEEK));
5258 5257
5259 if (available_money > available_manpower) { 5258 if (available_money > available_manpower) {
5260 Pay consultant to port U-Boot; 5259 Pay consultant to port U-Boot;
5261 return 0; 5260 return 0;
5262 } 5261 }
5263 5262
5264 Download latest U-Boot source; 5263 Download latest U-Boot source;
5265 5264
5266 Subscribe to u-boot mailing list; 5265 Subscribe to u-boot mailing list;
5267 5266
5268 if (clueless) 5267 if (clueless)
5269 email("Hi, I am new to U-Boot, how do I get started?"); 5268 email("Hi, I am new to U-Boot, how do I get started?");
5270 5269
5271 while (learning) { 5270 while (learning) {
5272 Read the README file in the top level directory; 5271 Read the README file in the top level directory;
5273 Read http://www.denx.de/twiki/bin/view/DULG/Manual; 5272 Read http://www.denx.de/twiki/bin/view/DULG/Manual;
5274 Read applicable doc/*.README; 5273 Read applicable doc/*.README;
5275 Read the source, Luke; 5274 Read the source, Luke;
5276 /* find . -name "*.[chS]" | xargs grep -i <keyword> */ 5275 /* find . -name "*.[chS]" | xargs grep -i <keyword> */
5277 } 5276 }
5278 5277
5279 if (available_money > toLocalCurrency ($2500)) 5278 if (available_money > toLocalCurrency ($2500))
5280 Buy a BDI3000; 5279 Buy a BDI3000;
5281 else 5280 else
5282 Add a lot of aggravation and time; 5281 Add a lot of aggravation and time;
5283 5282
5284 if (a similar board exists) { /* hopefully... */ 5283 if (a similar board exists) { /* hopefully... */
5285 cp -a board/<similar> board/<myboard> 5284 cp -a board/<similar> board/<myboard>
5286 cp include/configs/<similar>.h include/configs/<myboard>.h 5285 cp include/configs/<similar>.h include/configs/<myboard>.h
5287 } else { 5286 } else {
5288 Create your own board support subdirectory; 5287 Create your own board support subdirectory;
5289 Create your own board include/configs/<myboard>.h file; 5288 Create your own board include/configs/<myboard>.h file;
5290 } 5289 }
5291 Edit new board/<myboard> files 5290 Edit new board/<myboard> files
5292 Edit new include/configs/<myboard>.h 5291 Edit new include/configs/<myboard>.h
5293 5292
5294 while (!accepted) { 5293 while (!accepted) {
5295 while (!running) { 5294 while (!running) {
5296 do { 5295 do {
5297 Add / modify source code; 5296 Add / modify source code;
5298 } until (compiles); 5297 } until (compiles);
5299 Debug; 5298 Debug;
5300 if (clueless) 5299 if (clueless)
5301 email("Hi, I am having problems..."); 5300 email("Hi, I am having problems...");
5302 } 5301 }
5303 Send patch file to the U-Boot email list; 5302 Send patch file to the U-Boot email list;
5304 if (reasonable critiques) 5303 if (reasonable critiques)
5305 Incorporate improvements from email list code review; 5304 Incorporate improvements from email list code review;
5306 else 5305 else
5307 Defend code as written; 5306 Defend code as written;
5308 } 5307 }
5309 5308
5310 return 0; 5309 return 0;
5311 } 5310 }
5312 5311
5313 void no_more_time (int sig) 5312 void no_more_time (int sig)
5314 { 5313 {
5315 hire_a_guru(); 5314 hire_a_guru();
5316 } 5315 }
5317 5316
5318 5317
5319 Coding Standards: 5318 Coding Standards:
5320 ----------------- 5319 -----------------
5321 5320
5322 All contributions to U-Boot should conform to the Linux kernel 5321 All contributions to U-Boot should conform to the Linux kernel
5323 coding style; see the file "Documentation/CodingStyle" and the script 5322 coding style; see the file "Documentation/CodingStyle" and the script
5324 "scripts/Lindent" in your Linux kernel source directory. 5323 "scripts/Lindent" in your Linux kernel source directory.
5325 5324
5326 Source files originating from a different project (for example the 5325 Source files originating from a different project (for example the
5327 MTD subsystem) are generally exempt from these guidelines and are not 5326 MTD subsystem) are generally exempt from these guidelines and are not
5328 reformatted to ease subsequent migration to newer versions of those 5327 reformatted to ease subsequent migration to newer versions of those
5329 sources. 5328 sources.
5330 5329
5331 Please note that U-Boot is implemented in C (and to some small parts in 5330 Please note that U-Boot is implemented in C (and to some small parts in
5332 Assembler); no C++ is used, so please do not use C++ style comments (//) 5331 Assembler); no C++ is used, so please do not use C++ style comments (//)
5333 in your code. 5332 in your code.
5334 5333
5335 Please also stick to the following formatting rules: 5334 Please also stick to the following formatting rules:
5336 - remove any trailing white space 5335 - remove any trailing white space
5337 - use TAB characters for indentation and vertical alignment, not spaces 5336 - use TAB characters for indentation and vertical alignment, not spaces
5338 - make sure NOT to use DOS '\r\n' line feeds 5337 - make sure NOT to use DOS '\r\n' line feeds
5339 - do not add more than 2 consecutive empty lines to source files 5338 - do not add more than 2 consecutive empty lines to source files
5340 - do not add trailing empty lines to source files 5339 - do not add trailing empty lines to source files
5341 5340
5342 Submissions which do not conform to the standards may be returned 5341 Submissions which do not conform to the standards may be returned
5343 with a request to reformat the changes. 5342 with a request to reformat the changes.
5344 5343
5345 5344
5346 Submitting Patches: 5345 Submitting Patches:
5347 ------------------- 5346 -------------------
5348 5347
5349 Since the number of patches for U-Boot is growing, we need to 5348 Since the number of patches for U-Boot is growing, we need to
5350 establish some rules. Submissions which do not conform to these rules 5349 establish some rules. Submissions which do not conform to these rules
5351 may be rejected, even when they contain important and valuable stuff. 5350 may be rejected, even when they contain important and valuable stuff.
5352 5351
5353 Please see http://www.denx.de/wiki/U-Boot/Patches for details. 5352 Please see http://www.denx.de/wiki/U-Boot/Patches for details.
5354 5353
5355 Patches shall be sent to the u-boot mailing list <u-boot@lists.denx.de>; 5354 Patches shall be sent to the u-boot mailing list <u-boot@lists.denx.de>;
5356 see http://lists.denx.de/mailman/listinfo/u-boot 5355 see http://lists.denx.de/mailman/listinfo/u-boot
5357 5356
5358 When you send a patch, please include the following information with 5357 When you send a patch, please include the following information with
5359 it: 5358 it:
5360 5359
5361 * For bug fixes: a description of the bug and how your patch fixes 5360 * For bug fixes: a description of the bug and how your patch fixes
5362 this bug. Please try to include a way of demonstrating that the 5361 this bug. Please try to include a way of demonstrating that the
5363 patch actually fixes something. 5362 patch actually fixes something.
5364 5363
5365 * For new features: a description of the feature and your 5364 * For new features: a description of the feature and your
5366 implementation. 5365 implementation.
5367 5366
5368 * A CHANGELOG entry as plaintext (separate from the patch) 5367 * A CHANGELOG entry as plaintext (separate from the patch)
5369 5368
5370 * For major contributions, add a MAINTAINERS file with your 5369 * For major contributions, add a MAINTAINERS file with your
5371 information and associated file and directory references. 5370 information and associated file and directory references.
5372 5371
5373 * When you add support for a new board, don't forget to add a 5372 * When you add support for a new board, don't forget to add a
5374 maintainer e-mail address to the boards.cfg file, too. 5373 maintainer e-mail address to the boards.cfg file, too.
5375 5374
5376 * If your patch adds new configuration options, don't forget to 5375 * If your patch adds new configuration options, don't forget to
5377 document these in the README file. 5376 document these in the README file.
5378 5377
5379 * The patch itself. If you are using git (which is *strongly* 5378 * The patch itself. If you are using git (which is *strongly*
5380 recommended) you can easily generate the patch using the 5379 recommended) you can easily generate the patch using the
5381 "git format-patch". If you then use "git send-email" to send it to 5380 "git format-patch". If you then use "git send-email" to send it to
5382 the U-Boot mailing list, you will avoid most of the common problems 5381 the U-Boot mailing list, you will avoid most of the common problems
5383 with some other mail clients. 5382 with some other mail clients.
5384 5383
5385 If you cannot use git, use "diff -purN OLD NEW". If your version of 5384 If you cannot use git, use "diff -purN OLD NEW". If your version of
5386 diff does not support these options, then get the latest version of 5385 diff does not support these options, then get the latest version of
5387 GNU diff. 5386 GNU diff.
5388 5387
5389 The current directory when running this command shall be the parent 5388 The current directory when running this command shall be the parent
5390 directory of the U-Boot source tree (i. e. please make sure that 5389 directory of the U-Boot source tree (i. e. please make sure that
5391 your patch includes sufficient directory information for the 5390 your patch includes sufficient directory information for the
5392 affected files). 5391 affected files).
5393 5392
5394 We prefer patches as plain text. MIME attachments are discouraged, 5393 We prefer patches as plain text. MIME attachments are discouraged,
5395 and compressed attachments must not be used. 5394 and compressed attachments must not be used.
5396 5395
5397 * If one logical set of modifications affects or creates several 5396 * If one logical set of modifications affects or creates several
5398 files, all these changes shall be submitted in a SINGLE patch file. 5397 files, all these changes shall be submitted in a SINGLE patch file.
5399 5398
5400 * Changesets that contain different, unrelated modifications shall be 5399 * Changesets that contain different, unrelated modifications shall be
5401 submitted as SEPARATE patches, one patch per changeset. 5400 submitted as SEPARATE patches, one patch per changeset.
5402 5401
5403 5402
5404 Notes: 5403 Notes:
5405 5404
5406 * Before sending the patch, run the buildman script on your patched 5405 * Before sending the patch, run the buildman script on your patched
5407 source tree and make sure that no errors or warnings are reported 5406 source tree and make sure that no errors or warnings are reported
5408 for any of the boards. 5407 for any of the boards.
5409 5408
5410 * Keep your modifications to the necessary minimum: A patch 5409 * Keep your modifications to the necessary minimum: A patch
5411 containing several unrelated changes or arbitrary reformats will be 5410 containing several unrelated changes or arbitrary reformats will be
5412 returned with a request to re-formatting / split it. 5411 returned with a request to re-formatting / split it.
5413 5412
5414 * If you modify existing code, make sure that your new code does not 5413 * If you modify existing code, make sure that your new code does not
5415 add to the memory footprint of the code ;-) Small is beautiful! 5414 add to the memory footprint of the code ;-) Small is beautiful!
5416 When adding new features, these should compile conditionally only 5415 When adding new features, these should compile conditionally only
5417 (using #ifdef), and the resulting code with the new feature 5416 (using #ifdef), and the resulting code with the new feature
5418 disabled must not need more memory than the old code without your 5417 disabled must not need more memory than the old code without your
5419 modification. 5418 modification.
5420 5419
5421 * Remember that there is a size limit of 100 kB per message on the 5420 * Remember that there is a size limit of 100 kB per message on the
5422 u-boot mailing list. Bigger patches will be moderated. If they are 5421 u-boot mailing list. Bigger patches will be moderated. If they are
5423 reasonable and not too big, they will be acknowledged. But patches 5422 reasonable and not too big, they will be acknowledged. But patches
5424 bigger than the size limit should be avoided. 5423 bigger than the size limit should be avoided.
5425 5424
1 # 1 #
2 # (C) Copyright 2004-2006 2 # (C) Copyright 2004-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 # 4 #
5 # SPDX-License-Identifier: GPL-2.0+ 5 # SPDX-License-Identifier: GPL-2.0+
6 # 6 #
7 7
8 ifndef CONFIG_SPL_BUILD 8 ifndef CONFIG_SPL_BUILD
9 # core command 9 # core command
10 obj-y += boot.o 10 obj-y += boot.o
11 obj-$(CONFIG_CMD_BOOTM) += bootm.o 11 obj-$(CONFIG_CMD_BOOTM) += bootm.o
12 obj-y += help.o 12 obj-y += help.o
13 obj-y += version.o 13 obj-y += version.o
14 14
15 # command 15 # command
16 obj-$(CONFIG_CMD_AES) += aes.o 16 obj-$(CONFIG_CMD_AES) += aes.o
17 obj-$(CONFIG_CMD_ARMFLASH) += armflash.o 17 obj-$(CONFIG_CMD_ARMFLASH) += armflash.o
18 obj-$(CONFIG_SOURCE) += source.o 18 obj-$(CONFIG_SOURCE) += source.o
19 obj-$(CONFIG_CMD_SOURCE) += source.o 19 obj-$(CONFIG_CMD_SOURCE) += source.o
20 obj-$(CONFIG_CMD_BDI) += bdinfo.o 20 obj-$(CONFIG_CMD_BDI) += bdinfo.o
21 obj-$(CONFIG_CMD_BEDBUG) += bedbug.o 21 obj-$(CONFIG_CMD_BEDBUG) += bedbug.o
22 obj-$(CONFIG_CMD_BLOCK_CACHE) += blkcache.o 22 obj-$(CONFIG_CMD_BLOCK_CACHE) += blkcache.o
23 obj-$(CONFIG_CMD_BMP) += bmp.o 23 obj-$(CONFIG_CMD_BMP) += bmp.o
24 obj-$(CONFIG_CMD_BOOTEFI) += bootefi.o 24 obj-$(CONFIG_CMD_BOOTEFI) += bootefi.o
25 obj-$(CONFIG_CMD_BOOTMENU) += bootmenu.o 25 obj-$(CONFIG_CMD_BOOTMENU) += bootmenu.o
26 obj-$(CONFIG_CMD_BOOTSTAGE) += bootstage.o 26 obj-$(CONFIG_CMD_BOOTSTAGE) += bootstage.o
27 obj-$(CONFIG_CMD_BOOTZ) += bootz.o 27 obj-$(CONFIG_CMD_BOOTZ) += bootz.o
28 obj-$(CONFIG_CMD_BOOTI) += booti.o 28 obj-$(CONFIG_CMD_BOOTI) += booti.o
29 obj-$(CONFIG_CMD_CACHE) += cache.o 29 obj-$(CONFIG_CMD_CACHE) += cache.o
30 obj-$(CONFIG_CMD_CBFS) += cbfs.o 30 obj-$(CONFIG_CMD_CBFS) += cbfs.o
31 obj-$(CONFIG_CMD_CLK) += clk.o 31 obj-$(CONFIG_CMD_CLK) += clk.o
32 obj-$(CONFIG_CMD_CONFIG) += config.o 32 obj-$(CONFIG_CMD_CONFIG) += config.o
33 obj-$(CONFIG_CMD_CONSOLE) += console.o 33 obj-$(CONFIG_CMD_CONSOLE) += console.o
34 obj-$(CONFIG_CMD_CPU) += cpu.o 34 obj-$(CONFIG_CMD_CPU) += cpu.o
35 obj-$(CONFIG_DATAFLASH_MMC_SELECT) += dataflash_mmc_mux.o 35 obj-$(CONFIG_DATAFLASH_MMC_SELECT) += dataflash_mmc_mux.o
36 obj-$(CONFIG_CMD_DATE) += date.o 36 obj-$(CONFIG_CMD_DATE) += date.o
37 obj-$(CONFIG_CMD_DEMO) += demo.o 37 obj-$(CONFIG_CMD_DEMO) += demo.o
38 obj-$(CONFIG_CMD_SOUND) += sound.o 38 obj-$(CONFIG_CMD_SOUND) += sound.o
39 ifdef CONFIG_POST 39 ifdef CONFIG_POST
40 obj-$(CONFIG_CMD_DIAG) += diag.o 40 obj-$(CONFIG_CMD_DIAG) += diag.o
41 endif 41 endif
42 obj-$(CONFIG_CMD_DISPLAY) += display.o 42 obj-$(CONFIG_CMD_DISPLAY) += display.o
43 obj-$(CONFIG_CMD_ECHO) += echo.o 43 obj-$(CONFIG_CMD_ECHO) += echo.o
44 obj-$(CONFIG_ENV_IS_IN_EEPROM) += eeprom.o 44 obj-$(CONFIG_ENV_IS_IN_EEPROM) += eeprom.o
45 obj-$(CONFIG_CMD_EEPROM) += eeprom.o 45 obj-$(CONFIG_CMD_EEPROM) += eeprom.o
46 obj-$(CONFIG_EFI_STUB) += efi.o 46 obj-$(CONFIG_EFI_STUB) += efi.o
47 obj-$(CONFIG_CMD_ELF) += elf.o 47 obj-$(CONFIG_CMD_ELF) += elf.o
48 obj-$(CONFIG_HUSH_PARSER) += exit.o 48 obj-$(CONFIG_HUSH_PARSER) += exit.o
49 obj-$(CONFIG_CMD_EXT4) += ext4.o 49 obj-$(CONFIG_CMD_EXT4) += ext4.o
50 obj-$(CONFIG_CMD_EXT2) += ext2.o 50 obj-$(CONFIG_CMD_EXT2) += ext2.o
51 obj-$(CONFIG_CMD_FAT) += fat.o 51 obj-$(CONFIG_CMD_FAT) += fat.o
52 obj-$(CONFIG_CMD_FDC) += fdc.o 52 obj-$(CONFIG_CMD_FDC) += fdc.o
53 obj-$(CONFIG_CMD_FDT) += fdt.o 53 obj-$(CONFIG_CMD_FDT) += fdt.o
54 obj-$(CONFIG_CMD_FITUPD) += fitupd.o 54 obj-$(CONFIG_CMD_FITUPD) += fitupd.o
55 obj-$(CONFIG_CMD_FLASH) += flash.o 55 obj-$(CONFIG_CMD_FLASH) += flash.o
56 ifdef CONFIG_FPGA 56 ifdef CONFIG_FPGA
57 obj-$(CONFIG_CMD_FPGA) += fpga.o 57 obj-$(CONFIG_CMD_FPGA) += fpga.o
58 endif 58 endif
59 obj-$(CONFIG_CMD_FPGAD) += fpgad.o 59 obj-$(CONFIG_CMD_FPGAD) += fpgad.o
60 obj-$(CONFIG_CMD_FS_GENERIC) += fs.o 60 obj-$(CONFIG_CMD_FS_GENERIC) += fs.o
61 obj-$(CONFIG_CMD_FUSE) += fuse.o 61 obj-$(CONFIG_CMD_FUSE) += fuse.o
62 obj-$(CONFIG_CMD_GETTIME) += gettime.o 62 obj-$(CONFIG_CMD_GETTIME) += gettime.o
63 obj-$(CONFIG_CMD_GPIO) += gpio.o 63 obj-$(CONFIG_CMD_GPIO) += gpio.o
64 obj-$(CONFIG_CMD_I2C) += i2c.o 64 obj-$(CONFIG_CMD_I2C) += i2c.o
65 obj-$(CONFIG_CMD_IOTRACE) += iotrace.o 65 obj-$(CONFIG_CMD_IOTRACE) += iotrace.o
66 obj-$(CONFIG_CMD_HASH) += hash.o 66 obj-$(CONFIG_CMD_HASH) += hash.o
67 obj-$(CONFIG_CMD_IDE) += ide.o disk.o 67 obj-$(CONFIG_CMD_IDE) += ide.o disk.o
68 obj-$(CONFIG_CMD_INI) += ini.o 68 obj-$(CONFIG_CMD_INI) += ini.o
69 obj-$(CONFIG_CMD_IRQ) += irq.o 69 obj-$(CONFIG_CMD_IRQ) += irq.o
70 obj-$(CONFIG_CMD_ITEST) += itest.o 70 obj-$(CONFIG_CMD_ITEST) += itest.o
71 obj-$(CONFIG_CMD_JFFS2) += jffs2.o 71 obj-$(CONFIG_CMD_JFFS2) += jffs2.o
72 obj-$(CONFIG_CMD_CRAMFS) += cramfs.o 72 obj-$(CONFIG_CMD_CRAMFS) += cramfs.o
73 obj-$(CONFIG_LED_STATUS_CMD) += legacy_led.o 73 obj-$(CONFIG_LED_STATUS_CMD) += legacy_led.o
74 obj-$(CONFIG_CMD_LED) += led.o 74 obj-$(CONFIG_CMD_LED) += led.o
75 obj-$(CONFIG_CMD_LICENSE) += license.o 75 obj-$(CONFIG_CMD_LICENSE) += license.o
76 obj-y += load.o 76 obj-y += load.o
77 obj-$(CONFIG_LOGBUFFER) += log.o 77 obj-$(CONFIG_LOGBUFFER) += log.o
78 obj-$(CONFIG_ID_EEPROM) += mac.o 78 obj-$(CONFIG_ID_EEPROM) += mac.o
79 obj-$(CONFIG_CMD_MD5SUM) += md5sum.o 79 obj-$(CONFIG_CMD_MD5SUM) += md5sum.o
80 obj-$(CONFIG_CMD_MEMORY) += mem.o 80 obj-$(CONFIG_CMD_MEMORY) += mem.o
81 obj-$(CONFIG_CMD_IO) += io.o 81 obj-$(CONFIG_CMD_IO) += io.o
82 obj-$(CONFIG_CMD_MFSL) += mfsl.o 82 obj-$(CONFIG_CMD_MFSL) += mfsl.o
83 obj-$(CONFIG_CMD_MII) += mii.o 83 obj-$(CONFIG_CMD_MII) += mii.o
84 ifdef CONFIG_PHYLIB 84 ifdef CONFIG_PHYLIB
85 obj-$(CONFIG_CMD_MII) += mdio.o 85 obj-$(CONFIG_CMD_MII) += mdio.o
86 endif 86 endif
87 obj-$(CONFIG_CMD_MISC) += misc.o 87 obj-$(CONFIG_CMD_MISC) += misc.o
88 obj-$(CONFIG_CMD_MMC) += mmc.o 88 obj-$(CONFIG_CMD_MMC) += mmc.o
89 obj-$(CONFIG_CMD_MMC_SPI) += mmc_spi.o 89 obj-$(CONFIG_CMD_MMC_SPI) += mmc_spi.o
90 obj-$(CONFIG_MP) += mp.o 90 obj-$(CONFIG_MP) += mp.o
91 obj-$(CONFIG_CMD_MTDPARTS) += mtdparts.o 91 obj-$(CONFIG_CMD_MTDPARTS) += mtdparts.o
92 obj-$(CONFIG_CMD_NAND) += nand.o 92 obj-$(CONFIG_CMD_NAND) += nand.o
93 obj-$(CONFIG_CMD_NET) += net.o 93 obj-$(CONFIG_CMD_NET) += net.o
94 obj-$(CONFIG_CMD_ONENAND) += onenand.o 94 obj-$(CONFIG_CMD_ONENAND) += onenand.o
95 obj-$(CONFIG_CMD_PART) += part.o 95 obj-$(CONFIG_CMD_PART) += part.o
96 ifdef CONFIG_PCI 96 ifdef CONFIG_PCI
97 obj-$(CONFIG_CMD_PCI) += pci.o 97 obj-$(CONFIG_CMD_PCI) += pci.o
98 endif 98 endif
99 obj-y += pcmcia.o 99 obj-y += pcmcia.o
100 obj-$(CONFIG_CMD_PORTIO) += portio.o
101 obj-$(CONFIG_CMD_PXE) += pxe.o 100 obj-$(CONFIG_CMD_PXE) += pxe.o
102 obj-$(CONFIG_CMD_QFW) += qfw.o 101 obj-$(CONFIG_CMD_QFW) += qfw.o
103 obj-$(CONFIG_CMD_READ) += read.o 102 obj-$(CONFIG_CMD_READ) += read.o
104 obj-$(CONFIG_CMD_REGINFO) += reginfo.o 103 obj-$(CONFIG_CMD_REGINFO) += reginfo.o
105 obj-$(CONFIG_CMD_REISER) += reiser.o 104 obj-$(CONFIG_CMD_REISER) += reiser.o
106 obj-$(CONFIG_CMD_REMOTEPROC) += remoteproc.o 105 obj-$(CONFIG_CMD_REMOTEPROC) += remoteproc.o
107 obj-$(CONFIG_SANDBOX) += host.o 106 obj-$(CONFIG_SANDBOX) += host.o
108 obj-$(CONFIG_CMD_SATA) += sata.o 107 obj-$(CONFIG_CMD_SATA) += sata.o
109 obj-$(CONFIG_CMD_SF) += sf.o 108 obj-$(CONFIG_CMD_SF) += sf.o
110 obj-$(CONFIG_SCSI) += scsi.o disk.o 109 obj-$(CONFIG_SCSI) += scsi.o disk.o
111 obj-$(CONFIG_CMD_SHA1SUM) += sha1sum.o 110 obj-$(CONFIG_CMD_SHA1SUM) += sha1sum.o
112 obj-$(CONFIG_CMD_SETEXPR) += setexpr.o 111 obj-$(CONFIG_CMD_SETEXPR) += setexpr.o
113 obj-$(CONFIG_CMD_SPI) += spi.o 112 obj-$(CONFIG_CMD_SPI) += spi.o
114 obj-$(CONFIG_CMD_STRINGS) += strings.o 113 obj-$(CONFIG_CMD_STRINGS) += strings.o
115 obj-$(CONFIG_CMD_TERMINAL) += terminal.o 114 obj-$(CONFIG_CMD_TERMINAL) += terminal.o
116 obj-$(CONFIG_CMD_TIME) += time.o 115 obj-$(CONFIG_CMD_TIME) += time.o
117 obj-$(CONFIG_CMD_TRACE) += trace.o 116 obj-$(CONFIG_CMD_TRACE) += trace.o
118 obj-$(CONFIG_HUSH_PARSER) += test.o 117 obj-$(CONFIG_HUSH_PARSER) += test.o
119 obj-$(CONFIG_CMD_TPM) += tpm.o 118 obj-$(CONFIG_CMD_TPM) += tpm.o
120 obj-$(CONFIG_CMD_TPM_TEST) += tpm_test.o 119 obj-$(CONFIG_CMD_TPM_TEST) += tpm_test.o
121 obj-$(CONFIG_CMD_CROS_EC) += cros_ec.o 120 obj-$(CONFIG_CMD_CROS_EC) += cros_ec.o
122 obj-$(CONFIG_CMD_TSI148) += tsi148.o 121 obj-$(CONFIG_CMD_TSI148) += tsi148.o
123 obj-$(CONFIG_CMD_UBI) += ubi.o 122 obj-$(CONFIG_CMD_UBI) += ubi.o
124 obj-$(CONFIG_CMD_UBIFS) += ubifs.o 123 obj-$(CONFIG_CMD_UBIFS) += ubifs.o
125 obj-$(CONFIG_CMD_UNIVERSE) += universe.o 124 obj-$(CONFIG_CMD_UNIVERSE) += universe.o
126 obj-$(CONFIG_CMD_UNZIP) += unzip.o 125 obj-$(CONFIG_CMD_UNZIP) += unzip.o
127 obj-$(CONFIG_CMD_LZMADEC) += lzmadec.o 126 obj-$(CONFIG_CMD_LZMADEC) += lzmadec.o
128 127
129 obj-$(CONFIG_CMD_USB) += usb.o disk.o 128 obj-$(CONFIG_CMD_USB) += usb.o disk.o
130 obj-$(CONFIG_CMD_FASTBOOT) += fastboot.o 129 obj-$(CONFIG_CMD_FASTBOOT) += fastboot.o
131 obj-$(CONFIG_CMD_FS_UUID) += fs_uuid.o 130 obj-$(CONFIG_CMD_FS_UUID) += fs_uuid.o
132 131
133 obj-$(CONFIG_CMD_USB_MASS_STORAGE) += usb_mass_storage.o 132 obj-$(CONFIG_CMD_USB_MASS_STORAGE) += usb_mass_storage.o
134 obj-$(CONFIG_CMD_THOR_DOWNLOAD) += thordown.o 133 obj-$(CONFIG_CMD_THOR_DOWNLOAD) += thordown.o
135 obj-$(CONFIG_CMD_XIMG) += ximg.o 134 obj-$(CONFIG_CMD_XIMG) += ximg.o
136 obj-$(CONFIG_YAFFS2) += yaffs2.o 135 obj-$(CONFIG_YAFFS2) += yaffs2.o
137 obj-$(CONFIG_CMD_SPL) += spl.o 136 obj-$(CONFIG_CMD_SPL) += spl.o
138 obj-$(CONFIG_CMD_ZIP) += zip.o 137 obj-$(CONFIG_CMD_ZIP) += zip.o
139 obj-$(CONFIG_CMD_ZFS) += zfs.o 138 obj-$(CONFIG_CMD_ZFS) += zfs.o
140 139
141 obj-$(CONFIG_CMD_DFU) += dfu.o 140 obj-$(CONFIG_CMD_DFU) += dfu.o
142 obj-$(CONFIG_CMD_GPT) += gpt.o 141 obj-$(CONFIG_CMD_GPT) += gpt.o
143 obj-$(CONFIG_CMD_ETHSW) += ethsw.o 142 obj-$(CONFIG_CMD_ETHSW) += ethsw.o
144 143
145 # Power 144 # Power
146 obj-$(CONFIG_CMD_PMIC) += pmic.o 145 obj-$(CONFIG_CMD_PMIC) += pmic.o
147 obj-$(CONFIG_CMD_REGULATOR) += regulator.o 146 obj-$(CONFIG_CMD_REGULATOR) += regulator.o
148 147
149 obj-$(CONFIG_CMD_BLOB) += blob.o 148 obj-$(CONFIG_CMD_BLOB) += blob.o
150 endif # !CONFIG_SPL_BUILD 149 endif # !CONFIG_SPL_BUILD
151 150
152 # core command 151 # core command
153 obj-y += nvedit.o 152 obj-y += nvedit.o
154 153
155 obj-$(CONFIG_ARCH_MVEBU) += mvebu/ 154 obj-$(CONFIG_ARCH_MVEBU) += mvebu/
156 155
157 filechk_data_gz = (echo "static const char data_gz[] ="; cat $< | scripts/bin2c; echo ";") 156 filechk_data_gz = (echo "static const char data_gz[] ="; cat $< | scripts/bin2c; echo ";")
158 157
159 filechk_data_size = \ 158 filechk_data_size = \
160 (echo "static const size_t data_size = "; \ 159 (echo "static const size_t data_size = "; \
161 cat $< | wc -c; echo ";") 160 cat $< | wc -c; echo ";")
162 161
163 # "config" command 162 # "config" command
164 $(obj)/config.o: $(obj)/config_data_gz.h $(obj)/config_data_size.h 163 $(obj)/config.o: $(obj)/config_data_gz.h $(obj)/config_data_size.h
165 164
166 targets += config_data.gz 165 targets += config_data.gz
167 $(obj)/config_data.gz: $(KCONFIG_CONFIG) FORCE 166 $(obj)/config_data.gz: $(KCONFIG_CONFIG) FORCE
168 $(call if_changed,gzip) 167 $(call if_changed,gzip)
169 168
170 targets += config_data_gz.h 169 targets += config_data_gz.h
171 $(obj)/config_data_gz.h: $(obj)/config_data.gz FORCE 170 $(obj)/config_data_gz.h: $(obj)/config_data.gz FORCE
172 $(call filechk,data_gz) 171 $(call filechk,data_gz)
173 172
174 targets += config_data_size.h 173 targets += config_data_size.h
175 $(obj)/config_data_size.h: $(KCONFIG_CONFIG) FORCE 174 $(obj)/config_data_size.h: $(KCONFIG_CONFIG) FORCE
176 $(call filechk,data_size) 175 $(call filechk,data_size)
177 176
178 # "license" command 177 # "license" command
179 $(obj)/license.o: $(obj)/license_data_gz.h $(obj)/license_data_size.h 178 $(obj)/license.o: $(obj)/license_data_gz.h $(obj)/license_data_size.h
180 179
181 targets += license_data.gz 180 targets += license_data.gz
182 $(obj)/license_data.gz: $(srctree)/Licenses/gpl-2.0.txt FORCE 181 $(obj)/license_data.gz: $(srctree)/Licenses/gpl-2.0.txt FORCE
183 $(call if_changed,gzip) 182 $(call if_changed,gzip)
184 183
185 targets += license_data_gz.h 184 targets += license_data_gz.h
186 $(obj)/license_data_gz.h: $(obj)/license_data.gz FORCE 185 $(obj)/license_data_gz.h: $(obj)/license_data.gz FORCE
187 $(call filechk,data_gz) 186 $(call filechk,data_gz)
188 187
189 targets += license_data_size.h 188 targets += license_data_size.h
190 $(obj)/license_data_size.h: $(srctree)/Licenses/gpl-2.0.txt FORCE 189 $(obj)/license_data_size.h: $(srctree)/Licenses/gpl-2.0.txt FORCE
191 $(call filechk,data_size) 190 $(call filechk,data_size)
192 191
193 CFLAGS_ethsw.o := -Wno-enum-conversion 192 CFLAGS_ethsw.o := -Wno-enum-conversion
194 193
cmd/portio.c
1 /* File was deleted
2 * (C) Copyright 2003
3 * Marc Singer, elf@buici.com
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 /*
9 * Port I/O Functions
10 *
11 * Copied from FADS ROM, Dan Malek (dmalek@jlc.net)
12 */
13
14 #include <common.h>
15 #include <command.h>
16
17 /* Display values from last command.
18 * Memory modify remembered values are different from display memory.
19 */
20 static uint in_last_addr, in_last_size;
21 static uint out_last_addr, out_last_size, out_last_value;
22
23
24 int do_portio_out (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
25 {
26 uint addr = out_last_addr;
27 uint size = out_last_size;
28 uint value = out_last_value;
29
30 if (argc != 3)
31 return CMD_RET_USAGE;
32
33 if ((flag & CMD_FLAG_REPEAT) == 0) {
34 /*
35 * New command specified. Check for a size specification.
36 * Defaults to long if no or incorrect specification.
37 */
38 size = cmd_get_data_size (argv[0], 1);
39 addr = simple_strtoul (argv[1], NULL, 16);
40 value = simple_strtoul (argv[2], NULL, 16);
41 }
42 #if defined (CONFIG_X86)
43
44 {
45 unsigned short port = addr;
46
47 switch (size) {
48 default:
49 case 1:
50 {
51 unsigned char ch = value;
52 __asm__ volatile ("out %0, %%dx"::"a" (ch), "d" (port));
53 }
54 break;
55 case 2:
56 {
57 unsigned short w = value;
58 __asm__ volatile ("out %0, %%dx"::"a" (w), "d" (port));
59 }
60 break;
61 case 4:
62 __asm__ volatile ("out %0, %%dx"::"a" (value), "d" (port));
63
64 break;
65 }
66 }
67
68 #endif /* CONFIG_X86 */
69
70 out_last_addr = addr;
71 out_last_size = size;
72 out_last_value = value;
73
74 return 0;
75 }
76
77 U_BOOT_CMD(
78 out, 3, 1, do_portio_out,
79 "write datum to IO port",
80 "[.b, .w, .l] port value\n - output to IO port"
81 );
82
83 int do_portio_in (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
84 {
85 uint addr = in_last_addr;
86 uint size = in_last_size;
87
88 if (argc != 2)
89 return CMD_RET_USAGE;
90
91 if ((flag & CMD_FLAG_REPEAT) == 0) {
92 /*
93 * New command specified. Check for a size specification.
94 * Defaults to long if no or incorrect specification.
95 */
96 size = cmd_get_data_size (argv[0], 1);
97 addr = simple_strtoul (argv[1], NULL, 16);
98 }
99 #if defined (CONFIG_X86)
100
101 {
102 unsigned short port = addr;
103
104 switch (size) {
105 default:
106 case 1:
107 {
108 unsigned char ch;
109 __asm__ volatile ("in %%dx, %0":"=a" (ch):"d" (port));
110
111 printf (" %02x\n", ch);
112 }
113 break;
114 case 2:
115 {
116 unsigned short w;
117 __asm__ volatile ("in %%dx, %0":"=a" (w):"d" (port));
118
119 printf (" %04x\n", w);
120 }
121 break;
122 case 4:
123 {
124 unsigned long l;
125 __asm__ volatile ("in %%dx, %0":"=a" (l):"d" (port));
126
127 printf (" %08lx\n", l);
128 }
129 break;
130 }
131 }
132 #endif /* CONFIG_X86 */
133
134 in_last_addr = addr;
135 in_last_size = size;
136
137 return 0;
138 }
139
140 U_BOOT_CMD(
141 in, 2, 1, do_portio_in,
142 "read data from an IO port",
143 "[.b, .w, .l] port\n"
144 " - read datum from IO port"
145 );
146 1 /*
1 /* 1 /*
2 * (C) Copyright 2000-2009 2 * (C) Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 * 4 *
5 * SPDX-License-Identifier: GPL-2.0+ 5 * SPDX-License-Identifier: GPL-2.0+
6 */ 6 */
7 7
8 /* 8 /*
9 * Definitions for Command Processor 9 * Definitions for Command Processor
10 */ 10 */
11 #ifndef __COMMAND_H 11 #ifndef __COMMAND_H
12 #define __COMMAND_H 12 #define __COMMAND_H
13 13
14 #include <linker_lists.h> 14 #include <linker_lists.h>
15 15
16 #ifndef NULL 16 #ifndef NULL
17 #define NULL 0 17 #define NULL 0
18 #endif 18 #endif
19 19
20 /* Default to a width of 8 characters for help message command width */ 20 /* Default to a width of 8 characters for help message command width */
21 #ifndef CONFIG_SYS_HELP_CMD_WIDTH 21 #ifndef CONFIG_SYS_HELP_CMD_WIDTH
22 #define CONFIG_SYS_HELP_CMD_WIDTH 8 22 #define CONFIG_SYS_HELP_CMD_WIDTH 8
23 #endif 23 #endif
24 24
25 #ifndef __ASSEMBLY__ 25 #ifndef __ASSEMBLY__
26 /* 26 /*
27 * Monitor Command Table 27 * Monitor Command Table
28 */ 28 */
29 29
30 struct cmd_tbl_s { 30 struct cmd_tbl_s {
31 char *name; /* Command Name */ 31 char *name; /* Command Name */
32 int maxargs; /* maximum number of arguments */ 32 int maxargs; /* maximum number of arguments */
33 int repeatable; /* autorepeat allowed? */ 33 int repeatable; /* autorepeat allowed? */
34 /* Implementation function */ 34 /* Implementation function */
35 int (*cmd)(struct cmd_tbl_s *, int, int, char * const []); 35 int (*cmd)(struct cmd_tbl_s *, int, int, char * const []);
36 char *usage; /* Usage message (short) */ 36 char *usage; /* Usage message (short) */
37 #ifdef CONFIG_SYS_LONGHELP 37 #ifdef CONFIG_SYS_LONGHELP
38 char *help; /* Help message (long) */ 38 char *help; /* Help message (long) */
39 #endif 39 #endif
40 #ifdef CONFIG_AUTO_COMPLETE 40 #ifdef CONFIG_AUTO_COMPLETE
41 /* do auto completion on the arguments */ 41 /* do auto completion on the arguments */
42 int (*complete)(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]); 42 int (*complete)(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]);
43 #endif 43 #endif
44 }; 44 };
45 45
46 typedef struct cmd_tbl_s cmd_tbl_t; 46 typedef struct cmd_tbl_s cmd_tbl_t;
47 47
48 48
49 #if defined(CONFIG_CMD_RUN) 49 #if defined(CONFIG_CMD_RUN)
50 extern int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 50 extern int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
51 #endif 51 #endif
52 52
53 /* common/command.c */ 53 /* common/command.c */
54 int _do_help (cmd_tbl_t *cmd_start, int cmd_items, cmd_tbl_t * cmdtp, int 54 int _do_help (cmd_tbl_t *cmd_start, int cmd_items, cmd_tbl_t * cmdtp, int
55 flag, int argc, char * const argv[]); 55 flag, int argc, char * const argv[]);
56 cmd_tbl_t *find_cmd(const char *cmd); 56 cmd_tbl_t *find_cmd(const char *cmd);
57 cmd_tbl_t *find_cmd_tbl (const char *cmd, cmd_tbl_t *table, int table_len); 57 cmd_tbl_t *find_cmd_tbl (const char *cmd, cmd_tbl_t *table, int table_len);
58 58
59 extern int cmd_usage(const cmd_tbl_t *cmdtp); 59 extern int cmd_usage(const cmd_tbl_t *cmdtp);
60 60
61 #ifdef CONFIG_AUTO_COMPLETE 61 #ifdef CONFIG_AUTO_COMPLETE
62 extern int var_complete(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]); 62 extern int var_complete(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]);
63 extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp); 63 extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp);
64 #endif 64 #endif
65 65
66 /** 66 /**
67 * cmd_process_error() - report and process a possible error 67 * cmd_process_error() - report and process a possible error
68 * 68 *
69 * @cmdtp: Command which caused the error 69 * @cmdtp: Command which caused the error
70 * @err: Error code (0 if none, -ve for error, like -EIO) 70 * @err: Error code (0 if none, -ve for error, like -EIO)
71 * @return 0 if there is not error, 1 (CMD_RET_FAILURE) if an error is found 71 * @return 0 if there is not error, 1 (CMD_RET_FAILURE) if an error is found
72 */ 72 */
73 int cmd_process_error(cmd_tbl_t *cmdtp, int err); 73 int cmd_process_error(cmd_tbl_t *cmdtp, int err);
74 74
75 /* 75 /*
76 * Monitor Command 76 * Monitor Command
77 * 77 *
78 * All commands use a common argument format: 78 * All commands use a common argument format:
79 * 79 *
80 * void function (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 80 * void function (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
81 */ 81 */
82 82
83 #if defined(CONFIG_CMD_MEMORY) \ 83 #if defined(CONFIG_CMD_MEMORY) || \
84 || defined(CONFIG_CMD_I2C) \ 84 defined(CONFIG_CMD_I2C) || \
85 || defined(CONFIG_CMD_ITEST) \ 85 defined(CONFIG_CMD_ITEST) || \
86 || defined(CONFIG_CMD_PCI) \ 86 defined(CONFIG_CMD_PCI)
87 || defined(CONFIG_CMD_PORTIO)
88 #define CMD_DATA_SIZE 87 #define CMD_DATA_SIZE
89 extern int cmd_get_data_size(char* arg, int default_size); 88 extern int cmd_get_data_size(char* arg, int default_size);
90 #endif 89 #endif
91 90
92 #ifdef CONFIG_CMD_BOOTD 91 #ifdef CONFIG_CMD_BOOTD
93 extern int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 92 extern int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
94 #endif 93 #endif
95 #ifdef CONFIG_CMD_BOOTM 94 #ifdef CONFIG_CMD_BOOTM
96 extern int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 95 extern int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
97 extern int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd); 96 extern int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd);
98 #else 97 #else
99 static inline int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd) 98 static inline int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
100 { 99 {
101 return 0; 100 return 0;
102 } 101 }
103 #endif 102 #endif
104 103
105 extern int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 104 extern int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
106 105
107 extern int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 106 extern int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
108 107
109 extern int common_diskboot(cmd_tbl_t *cmdtp, const char *intf, int argc, 108 extern int common_diskboot(cmd_tbl_t *cmdtp, const char *intf, int argc,
110 char *const argv[]); 109 char *const argv[]);
111 110
112 extern int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 111 extern int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
113 extern int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 112 extern int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
114 113
115 /* 114 /*
116 * Error codes that commands return to cmd_process(). We use the standard 0 115 * Error codes that commands return to cmd_process(). We use the standard 0
117 * and 1 for success and failure, but add one more case - failure with a 116 * and 1 for success and failure, but add one more case - failure with a
118 * request to call cmd_usage(). But the cmd_process() function handles 117 * request to call cmd_usage(). But the cmd_process() function handles
119 * CMD_RET_USAGE itself and after calling cmd_usage() it will return 1. 118 * CMD_RET_USAGE itself and after calling cmd_usage() it will return 1.
120 * This is just a convenience for commands to avoid them having to call 119 * This is just a convenience for commands to avoid them having to call
121 * cmd_usage() all over the place. 120 * cmd_usage() all over the place.
122 */ 121 */
123 enum command_ret_t { 122 enum command_ret_t {
124 CMD_RET_SUCCESS, /* 0 = Success */ 123 CMD_RET_SUCCESS, /* 0 = Success */
125 CMD_RET_FAILURE, /* 1 = Failure */ 124 CMD_RET_FAILURE, /* 1 = Failure */
126 CMD_RET_USAGE = -1, /* Failure, please report 'usage' error */ 125 CMD_RET_USAGE = -1, /* Failure, please report 'usage' error */
127 }; 126 };
128 127
129 /** 128 /**
130 * Process a command with arguments. We look up the command and execute it 129 * Process a command with arguments. We look up the command and execute it
131 * if valid. Otherwise we print a usage message. 130 * if valid. Otherwise we print a usage message.
132 * 131 *
133 * @param flag Some flags normally 0 (see CMD_FLAG_.. above) 132 * @param flag Some flags normally 0 (see CMD_FLAG_.. above)
134 * @param argc Number of arguments (arg 0 must be the command text) 133 * @param argc Number of arguments (arg 0 must be the command text)
135 * @param argv Arguments 134 * @param argv Arguments
136 * @param repeatable This function sets this to 0 if the command is not 135 * @param repeatable This function sets this to 0 if the command is not
137 * repeatable. If the command is repeatable, the value 136 * repeatable. If the command is repeatable, the value
138 * is left unchanged. 137 * is left unchanged.
139 * @param ticks If ticks is not null, this function set it to the 138 * @param ticks If ticks is not null, this function set it to the
140 * number of ticks the command took to complete. 139 * number of ticks the command took to complete.
141 * @return 0 if the command succeeded, 1 if it failed 140 * @return 0 if the command succeeded, 1 if it failed
142 */ 141 */
143 int cmd_process(int flag, int argc, char * const argv[], 142 int cmd_process(int flag, int argc, char * const argv[],
144 int *repeatable, unsigned long *ticks); 143 int *repeatable, unsigned long *ticks);
145 144
146 void fixup_cmdtable(cmd_tbl_t *cmdtp, int size); 145 void fixup_cmdtable(cmd_tbl_t *cmdtp, int size);
147 146
148 /** 147 /**
149 * board_run_command() - Fallback function to execute a command 148 * board_run_command() - Fallback function to execute a command
150 * 149 *
151 * When no command line features are enabled in U-Boot, this function is 150 * When no command line features are enabled in U-Boot, this function is
152 * called to execute a command. Typically the function can look at the 151 * called to execute a command. Typically the function can look at the
153 * command and perform a few very specific tasks, such as booting the 152 * command and perform a few very specific tasks, such as booting the
154 * system in a particular way. 153 * system in a particular way.
155 * 154 *
156 * This function is only used when CONFIG_CMDLINE is not enabled. 155 * This function is only used when CONFIG_CMDLINE is not enabled.
157 * 156 *
158 * In normal situations this function should not return, since U-Boot will 157 * In normal situations this function should not return, since U-Boot will
159 * simply hang. 158 * simply hang.
160 * 159 *
161 * @cmdline: Command line string to execute 160 * @cmdline: Command line string to execute
162 * @return 0 if OK, 1 for error 161 * @return 0 if OK, 1 for error
163 */ 162 */
164 int board_run_command(const char *cmdline); 163 int board_run_command(const char *cmdline);
165 #endif /* __ASSEMBLY__ */ 164 #endif /* __ASSEMBLY__ */
166 165
167 /* 166 /*
168 * Command Flags: 167 * Command Flags:
169 */ 168 */
170 #define CMD_FLAG_REPEAT 0x0001 /* repeat last command */ 169 #define CMD_FLAG_REPEAT 0x0001 /* repeat last command */
171 #define CMD_FLAG_BOOTD 0x0002 /* command is from bootd */ 170 #define CMD_FLAG_BOOTD 0x0002 /* command is from bootd */
172 #define CMD_FLAG_ENV 0x0004 /* command is from the environment */ 171 #define CMD_FLAG_ENV 0x0004 /* command is from the environment */
173 172
174 #ifdef CONFIG_AUTO_COMPLETE 173 #ifdef CONFIG_AUTO_COMPLETE
175 # define _CMD_COMPLETE(x) x, 174 # define _CMD_COMPLETE(x) x,
176 #else 175 #else
177 # define _CMD_COMPLETE(x) 176 # define _CMD_COMPLETE(x)
178 #endif 177 #endif
179 #ifdef CONFIG_SYS_LONGHELP 178 #ifdef CONFIG_SYS_LONGHELP
180 # define _CMD_HELP(x) x, 179 # define _CMD_HELP(x) x,
181 #else 180 #else
182 # define _CMD_HELP(x) 181 # define _CMD_HELP(x)
183 #endif 182 #endif
184 183
185 #ifdef CONFIG_CMDLINE 184 #ifdef CONFIG_CMDLINE
186 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \ 185 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
187 _usage, _help, _comp) \ 186 _usage, _help, _comp) \
188 { #_name, _maxargs, _rep, _cmd, _usage, \ 187 { #_name, _maxargs, _rep, _cmd, _usage, \
189 _CMD_HELP(_help) _CMD_COMPLETE(_comp) } 188 _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
190 189
191 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, _comp) \ 190 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, _comp) \
192 ll_entry_declare(cmd_tbl_t, _name, cmd) = \ 191 ll_entry_declare(cmd_tbl_t, _name, cmd) = \
193 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \ 192 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
194 _usage, _help, _comp); 193 _usage, _help, _comp);
195 194
196 #else 195 #else
197 #define U_BOOT_SUBCMD_START(name) static cmd_tbl_t name[] = {}; 196 #define U_BOOT_SUBCMD_START(name) static cmd_tbl_t name[] = {};
198 #define U_BOOT_SUBCMD_END 197 #define U_BOOT_SUBCMD_END
199 198
200 #define _CMD_REMOVE(_name, _cmd) \ 199 #define _CMD_REMOVE(_name, _cmd) \
201 int __remove_ ## _name(void) \ 200 int __remove_ ## _name(void) \
202 { \ 201 { \
203 if (0) \ 202 if (0) \
204 _cmd(NULL, 0, 0, NULL); \ 203 _cmd(NULL, 0, 0, NULL); \
205 return 0; \ 204 return 0; \
206 } 205 }
207 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, \ 206 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, \
208 _help, _comp) \ 207 _help, _comp) \
209 { #_name, _maxargs, _rep, 0 ? _cmd : NULL, _usage, \ 208 { #_name, _maxargs, _rep, 0 ? _cmd : NULL, _usage, \
210 _CMD_HELP(_help) _CMD_COMPLETE(_comp) } 209 _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
211 210
212 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, \ 211 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, \
213 _comp) \ 212 _comp) \
214 _CMD_REMOVE(sub_ ## _name, _cmd) 213 _CMD_REMOVE(sub_ ## _name, _cmd)
215 214
216 #endif /* CONFIG_CMDLINE */ 215 #endif /* CONFIG_CMDLINE */
217 216
218 #define U_BOOT_CMD(_name, _maxargs, _rep, _cmd, _usage, _help) \ 217 #define U_BOOT_CMD(_name, _maxargs, _rep, _cmd, _usage, _help) \
219 U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, NULL) 218 U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, NULL)
220 219
221 #define U_BOOT_CMD_MKENT(_name, _maxargs, _rep, _cmd, _usage, _help) \ 220 #define U_BOOT_CMD_MKENT(_name, _maxargs, _rep, _cmd, _usage, _help) \
222 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \ 221 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
223 _usage, _help, NULL) 222 _usage, _help, NULL)
224 223
225 #endif /* __COMMAND_H */ 224 #endif /* __COMMAND_H */
226 225
include/config_cmd_all.h
1 /* 1 /*
2 * Copyright 2007 Freescale Semiconductor, Inc. 2 * Copyright 2007 Freescale Semiconductor, Inc.
3 * 3 *
4 * This file is licensed under the terms of the GNU General Public 4 * This file is licensed under the terms of the GNU General Public
5 * License Version 2. This file is licensed "as is" without any 5 * License Version 2. This file is licensed "as is" without any
6 * warranty of any kind, whether express or implied. 6 * warranty of any kind, whether express or implied.
7 */ 7 */
8 8
9 #ifndef _CONFIG_CMD_ALL_H 9 #ifndef _CONFIG_CMD_ALL_H
10 #define _CONFIG_CMD_ALL_H 10 #define _CONFIG_CMD_ALL_H
11 11
12 /* 12 /*
13 * Alphabetical list of all possible commands. 13 * Alphabetical list of all possible commands.
14 */ 14 */
15 15
16 #define CONFIG_CMD_PORTIO /* Port I/O */
17 #define CONFIG_CMD_REGINFO /* Register dump */ 16 #define CONFIG_CMD_REGINFO /* Register dump */
18 #define CONFIG_CMD_REISER /* Reiserfs support */ 17 #define CONFIG_CMD_REISER /* Reiserfs support */
19 #define CONFIG_CMD_READ /* Read data from partition */ 18 #define CONFIG_CMD_READ /* Read data from partition */
20 #define CONFIG_CMD_SANDBOX /* sb command to access sandbox features */ 19 #define CONFIG_CMD_SANDBOX /* sb command to access sandbox features */
21 #define CONFIG_CMD_SAVES /* save S record dump */ 20 #define CONFIG_CMD_SAVES /* save S record dump */
22 #define CONFIG_CMD_SDRAM /* SDRAM DIMM SPD info printout */ 21 #define CONFIG_CMD_SDRAM /* SDRAM DIMM SPD info printout */
23 #define CONFIG_CMD_TERMINAL /* built-in Serial Terminal */ 22 #define CONFIG_CMD_TERMINAL /* built-in Serial Terminal */
24 #define CONFIG_CMD_UNIVERSE /* Tundra Universe Support */ 23 #define CONFIG_CMD_UNIVERSE /* Tundra Universe Support */
25 #define CONFIG_CMD_ZFS /* ZFS Support */ 24 #define CONFIG_CMD_ZFS /* ZFS Support */
26 25
27 #endif /* _CONFIG_CMD_ALL_H */ 26 #endif /* _CONFIG_CMD_ALL_H */
28 27
scripts/config_whitelist.txt
1 CONFIG_16BIT 1 CONFIG_16BIT
2 CONFIG_33 2 CONFIG_33
3 CONFIG_400MHZ_MODE 3 CONFIG_400MHZ_MODE
4 CONFIG_4430SDP 4 CONFIG_4430SDP
5 CONFIG_533MHZ_MODE 5 CONFIG_533MHZ_MODE
6 CONFIG_64BIT_PHYS_ADDR 6 CONFIG_64BIT_PHYS_ADDR
7 CONFIG_66 7 CONFIG_66
8 CONFIG_8349_CLKIN 8 CONFIG_8349_CLKIN
9 CONFIG_83XX 9 CONFIG_83XX
10 CONFIG_83XX_CLKIN 10 CONFIG_83XX_CLKIN
11 CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES 11 CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES
12 CONFIG_83XX_PCICLK 12 CONFIG_83XX_PCICLK
13 CONFIG_83XX_PCI_STREAMING 13 CONFIG_83XX_PCI_STREAMING
14 CONFIG_88F5182 14 CONFIG_88F5182
15 CONFIG_A003399_NOR_WORKAROUND 15 CONFIG_A003399_NOR_WORKAROUND
16 CONFIG_A008044_WORKAROUND 16 CONFIG_A008044_WORKAROUND
17 CONFIG_ACX517AKN 17 CONFIG_ACX517AKN
18 CONFIG_ACX544AKN 18 CONFIG_ACX544AKN
19 CONFIG_ADDRESS 19 CONFIG_ADDRESS
20 CONFIG_ADDR_AUTO_INCR_BIT 20 CONFIG_ADDR_AUTO_INCR_BIT
21 CONFIG_ADDR_MAP 21 CONFIG_ADDR_MAP
22 CONFIG_ADDR_STREAMING 22 CONFIG_ADDR_STREAMING
23 CONFIG_ADNPESC1 23 CONFIG_ADNPESC1
24 CONFIG_ADP_AG101P 24 CONFIG_ADP_AG101P
25 CONFIG_AEABI 25 CONFIG_AEABI
26 CONFIG_AEMIF_CNTRL_BASE 26 CONFIG_AEMIF_CNTRL_BASE
27 CONFIG_ALTERA_SPI_IDLE_VAL 27 CONFIG_ALTERA_SPI_IDLE_VAL
28 CONFIG_ALTIVEC 28 CONFIG_ALTIVEC
29 CONFIG_ALT_LB_ADDR 29 CONFIG_ALT_LB_ADDR
30 CONFIG_ALU 30 CONFIG_ALU
31 CONFIG_AM335X_LCD 31 CONFIG_AM335X_LCD
32 CONFIG_AM335X_USB0 32 CONFIG_AM335X_USB0
33 CONFIG_AM335X_USB0_MODE 33 CONFIG_AM335X_USB0_MODE
34 CONFIG_AM335X_USB1 34 CONFIG_AM335X_USB1
35 CONFIG_AM335X_USB1_MODE 35 CONFIG_AM335X_USB1_MODE
36 CONFIG_AM437X_USB2PHY2_HOST 36 CONFIG_AM437X_USB2PHY2_HOST
37 CONFIG_AMCORE 37 CONFIG_AMCORE
38 CONFIG_ANDES_PCU 38 CONFIG_ANDES_PCU
39 CONFIG_ANDES_PCU_BASE 39 CONFIG_ANDES_PCU_BASE
40 CONFIG_AP325RXA 40 CONFIG_AP325RXA
41 CONFIG_APBH_DMA 41 CONFIG_APBH_DMA
42 CONFIG_APBH_DMA_BURST 42 CONFIG_APBH_DMA_BURST
43 CONFIG_APBH_DMA_BURST8 43 CONFIG_APBH_DMA_BURST8
44 CONFIG_APER_0_BASE 44 CONFIG_APER_0_BASE
45 CONFIG_APER_1_BASE 45 CONFIG_APER_1_BASE
46 CONFIG_APER_SIZE 46 CONFIG_APER_SIZE
47 CONFIG_APUS_FAST_EXCEPT 47 CONFIG_APUS_FAST_EXCEPT
48 CONFIG_AP_SH4A_4A 48 CONFIG_AP_SH4A_4A
49 CONFIG_ARCH_ADPAG101P 49 CONFIG_ARCH_ADPAG101P
50 CONFIG_ARCH_CPU_INIT 50 CONFIG_ARCH_CPU_INIT
51 CONFIG_ARCH_CSB226 51 CONFIG_ARCH_CSB226
52 CONFIG_ARCH_HAS_ILOG2_U32 52 CONFIG_ARCH_HAS_ILOG2_U32
53 CONFIG_ARCH_HAS_ILOG2_U64 53 CONFIG_ARCH_HAS_ILOG2_U64
54 CONFIG_ARCH_INNOKOM 54 CONFIG_ARCH_INNOKOM
55 CONFIG_ARCH_KIRKWOOD 55 CONFIG_ARCH_KIRKWOOD
56 CONFIG_ARCH_LUBBOCK 56 CONFIG_ARCH_LUBBOCK
57 CONFIG_ARCH_MAP_SYSMEM 57 CONFIG_ARCH_MAP_SYSMEM
58 CONFIG_ARCH_OMAP4 58 CONFIG_ARCH_OMAP4
59 CONFIG_ARCH_ORION5X 59 CONFIG_ARCH_ORION5X
60 CONFIG_ARCH_PLEB 60 CONFIG_ARCH_PLEB
61 CONFIG_ARCH_PXA_CERF 61 CONFIG_ARCH_PXA_CERF
62 CONFIG_ARCH_PXA_IDP 62 CONFIG_ARCH_PXA_IDP
63 CONFIG_ARCH_RMOBILE_BOARD_STRING 63 CONFIG_ARCH_RMOBILE_BOARD_STRING
64 CONFIG_ARCH_RMOBILE_EXTRAM_BOOT 64 CONFIG_ARCH_RMOBILE_EXTRAM_BOOT
65 CONFIG_ARCH_TEGRA 65 CONFIG_ARCH_TEGRA
66 CONFIG_ARCH_USE_BUILTIN_BSWAP 66 CONFIG_ARCH_USE_BUILTIN_BSWAP
67 CONFIG_ARC_MMU_VER 67 CONFIG_ARC_MMU_VER
68 CONFIG_ARC_SERIAL 68 CONFIG_ARC_SERIAL
69 CONFIG_ARC_UART_BASE 69 CONFIG_ARC_UART_BASE
70 CONFIG_ARIES_M28_V10 70 CONFIG_ARIES_M28_V10
71 CONFIG_ARM926EJS 71 CONFIG_ARM926EJS
72 CONFIG_ARMADA100 72 CONFIG_ARMADA100
73 CONFIG_ARMADA100_FEC 73 CONFIG_ARMADA100_FEC
74 CONFIG_ARMADA168 74 CONFIG_ARMADA168
75 CONFIG_ARMADA_39X 75 CONFIG_ARMADA_39X
76 CONFIG_ARMCORTEXA9 76 CONFIG_ARMCORTEXA9
77 CONFIG_ARMV7_PSCI_1_0 77 CONFIG_ARMV7_PSCI_1_0
78 CONFIG_ARMV7_SECURE_BASE 78 CONFIG_ARMV7_SECURE_BASE
79 CONFIG_ARMV7_SECURE_MAX_SIZE 79 CONFIG_ARMV7_SECURE_MAX_SIZE
80 CONFIG_ARMV7_SECURE_RESERVE_SIZE 80 CONFIG_ARMV7_SECURE_RESERVE_SIZE
81 CONFIG_ARMV8_SWITCH_TO_EL1 81 CONFIG_ARMV8_SWITCH_TO_EL1
82 CONFIG_ARM_ARCH_CP15_ERRATA 82 CONFIG_ARM_ARCH_CP15_ERRATA
83 CONFIG_ARM_DCC 83 CONFIG_ARM_DCC
84 CONFIG_ARM_FREQ 84 CONFIG_ARM_FREQ
85 CONFIG_ARM_GIC_BASE_ADDRESS 85 CONFIG_ARM_GIC_BASE_ADDRESS
86 CONFIG_ARM_PL180_MMCI 86 CONFIG_ARM_PL180_MMCI
87 CONFIG_ARM_PL180_MMCI_BASE 87 CONFIG_ARM_PL180_MMCI_BASE
88 CONFIG_ARM_PL180_MMCI_CLOCK_FREQ 88 CONFIG_ARM_PL180_MMCI_CLOCK_FREQ
89 CONFIG_ARM_THUMB 89 CONFIG_ARM_THUMB
90 CONFIG_ARP_TIMEOUT 90 CONFIG_ARP_TIMEOUT
91 CONFIG_ASTRO5373L 91 CONFIG_ASTRO5373L
92 CONFIG_ASTRO_COFDMDUOS2 92 CONFIG_ASTRO_COFDMDUOS2
93 CONFIG_ASTRO_TWIN7S2 93 CONFIG_ASTRO_TWIN7S2
94 CONFIG_ASTRO_V512 94 CONFIG_ASTRO_V512
95 CONFIG_ASTRO_V532 95 CONFIG_ASTRO_V532
96 CONFIG_ASTRO_V912 96 CONFIG_ASTRO_V912
97 CONFIG_AT91C_PQFP_UHPBUG 97 CONFIG_AT91C_PQFP_UHPBUG
98 CONFIG_AT91FAMILY 98 CONFIG_AT91FAMILY
99 CONFIG_AT91RESET_EXTRST 99 CONFIG_AT91RESET_EXTRST
100 CONFIG_AT91RM9200 100 CONFIG_AT91RM9200
101 CONFIG_AT91RM9200EK 101 CONFIG_AT91RM9200EK
102 CONFIG_AT91SAM9260 102 CONFIG_AT91SAM9260
103 CONFIG_AT91SAM9260EK 103 CONFIG_AT91SAM9260EK
104 CONFIG_AT91SAM9261 104 CONFIG_AT91SAM9261
105 CONFIG_AT91SAM9261EK 105 CONFIG_AT91SAM9261EK
106 CONFIG_AT91SAM9263 106 CONFIG_AT91SAM9263
107 CONFIG_AT91SAM9263EK 107 CONFIG_AT91SAM9263EK
108 CONFIG_AT91SAM9G10 108 CONFIG_AT91SAM9G10
109 CONFIG_AT91SAM9G10EK 109 CONFIG_AT91SAM9G10EK
110 CONFIG_AT91SAM9G20 110 CONFIG_AT91SAM9G20
111 CONFIG_AT91SAM9G20EK 111 CONFIG_AT91SAM9G20EK
112 CONFIG_AT91SAM9G20EK_2MMC 112 CONFIG_AT91SAM9G20EK_2MMC
113 CONFIG_AT91SAM9G45 113 CONFIG_AT91SAM9G45
114 CONFIG_AT91SAM9G45EKES 114 CONFIG_AT91SAM9G45EKES
115 CONFIG_AT91SAM9G45_LCD_BASE 115 CONFIG_AT91SAM9G45_LCD_BASE
116 CONFIG_AT91SAM9M10G45 116 CONFIG_AT91SAM9M10G45
117 CONFIG_AT91SAM9M10G45EK 117 CONFIG_AT91SAM9M10G45EK
118 CONFIG_AT91SAM9N12 118 CONFIG_AT91SAM9N12
119 CONFIG_AT91SAM9RL 119 CONFIG_AT91SAM9RL
120 CONFIG_AT91SAM9RLEK 120 CONFIG_AT91SAM9RLEK
121 CONFIG_AT91SAM9X5 121 CONFIG_AT91SAM9X5
122 CONFIG_AT91SAM9X5EK 122 CONFIG_AT91SAM9X5EK
123 CONFIG_AT91SAM9XE 123 CONFIG_AT91SAM9XE
124 CONFIG_AT91SAM9_WATCHDOG 124 CONFIG_AT91SAM9_WATCHDOG
125 CONFIG_AT91_CAN 125 CONFIG_AT91_CAN
126 CONFIG_AT91_EFLASH 126 CONFIG_AT91_EFLASH
127 CONFIG_AT91_GPIO_PULLUP 127 CONFIG_AT91_GPIO_PULLUP
128 CONFIG_AT91_HW_WDT_TIMEOUT 128 CONFIG_AT91_HW_WDT_TIMEOUT
129 CONFIG_AT91_LED 129 CONFIG_AT91_LED
130 CONFIG_AT91_WANTS_COMMON_PHY 130 CONFIG_AT91_WANTS_COMMON_PHY
131 CONFIG_ATAPI 131 CONFIG_ATAPI
132 CONFIG_ATA_ACPI 132 CONFIG_ATA_ACPI
133 CONFIG_ATI 133 CONFIG_ATI
134 CONFIG_ATI_RADEON_FB 134 CONFIG_ATI_RADEON_FB
135 CONFIG_ATM 135 CONFIG_ATM
136 CONFIG_ATMEL_DATAFLASH_SPI 136 CONFIG_ATMEL_DATAFLASH_SPI
137 CONFIG_ATMEL_LCD 137 CONFIG_ATMEL_LCD
138 CONFIG_ATMEL_LCD_BGR555 138 CONFIG_ATMEL_LCD_BGR555
139 CONFIG_ATMEL_LCD_RGB565 139 CONFIG_ATMEL_LCD_RGB565
140 CONFIG_ATMEL_LEGACY 140 CONFIG_ATMEL_LEGACY
141 CONFIG_ATMEL_MCI_8BIT 141 CONFIG_ATMEL_MCI_8BIT
142 CONFIG_ATMEL_NAND_HWECC 142 CONFIG_ATMEL_NAND_HWECC
143 CONFIG_ATMEL_NAND_HW_PMECC 143 CONFIG_ATMEL_NAND_HW_PMECC
144 CONFIG_ATMEL_SPI0 144 CONFIG_ATMEL_SPI0
145 CONFIG_AT_TRANS 145 CONFIG_AT_TRANS
146 CONFIG_AUTONEG_TIMEOUT 146 CONFIG_AUTONEG_TIMEOUT
147 CONFIG_AUTO_COMPLETE 147 CONFIG_AUTO_COMPLETE
148 CONFIG_AUTO_ZRELADDR 148 CONFIG_AUTO_ZRELADDR
149 CONFIG_BACKSIDE_L2_CACHE 149 CONFIG_BACKSIDE_L2_CACHE
150 CONFIG_BARIX_IPAM390 150 CONFIG_BARIX_IPAM390
151 CONFIG_BAT_CMD 151 CONFIG_BAT_CMD
152 CONFIG_BAT_PAIR 152 CONFIG_BAT_PAIR
153 CONFIG_BAT_RW 153 CONFIG_BAT_RW
154 CONFIG_BCH 154 CONFIG_BCH
155 CONFIG_BCH_CONST_M 155 CONFIG_BCH_CONST_M
156 CONFIG_BCH_CONST_PARAMS 156 CONFIG_BCH_CONST_PARAMS
157 CONFIG_BCH_CONST_T 157 CONFIG_BCH_CONST_T
158 CONFIG_BCM2835_GPIO 158 CONFIG_BCM2835_GPIO
159 CONFIG_BCM283X_MU_SERIAL 159 CONFIG_BCM283X_MU_SERIAL
160 CONFIG_BIOSEMU 160 CONFIG_BIOSEMU
161 CONFIG_BITBANGMII_MULTI 161 CONFIG_BITBANGMII_MULTI
162 CONFIG_BL1_OFFSET 162 CONFIG_BL1_OFFSET
163 CONFIG_BL1_SIZE 163 CONFIG_BL1_SIZE
164 CONFIG_BL2_OFFSET 164 CONFIG_BL2_OFFSET
165 CONFIG_BL2_SIZE 165 CONFIG_BL2_SIZE
166 CONFIG_BMP_16BPP 166 CONFIG_BMP_16BPP
167 CONFIG_BMP_24BPP 167 CONFIG_BMP_24BPP
168 CONFIG_BMP_32BPP 168 CONFIG_BMP_32BPP
169 CONFIG_BOARDDIR 169 CONFIG_BOARDDIR
170 CONFIG_BOARDNAME 170 CONFIG_BOARDNAME
171 CONFIG_BOARDNAME_LOCAL 171 CONFIG_BOARDNAME_LOCAL
172 CONFIG_BOARD_AXM 172 CONFIG_BOARD_AXM
173 CONFIG_BOARD_COMMON 173 CONFIG_BOARD_COMMON
174 CONFIG_BOARD_EARLY_INIT_R 174 CONFIG_BOARD_EARLY_INIT_R
175 CONFIG_BOARD_ECC_SUPPORT 175 CONFIG_BOARD_ECC_SUPPORT
176 CONFIG_BOARD_H2200 176 CONFIG_BOARD_H2200
177 CONFIG_BOARD_IS_OPENRD_BASE 177 CONFIG_BOARD_IS_OPENRD_BASE
178 CONFIG_BOARD_IS_OPENRD_CLIENT 178 CONFIG_BOARD_IS_OPENRD_CLIENT
179 CONFIG_BOARD_IS_OPENRD_ULTIMATE 179 CONFIG_BOARD_IS_OPENRD_ULTIMATE
180 CONFIG_BOARD_NAME 180 CONFIG_BOARD_NAME
181 CONFIG_BOARD_POSTCLK_INIT 181 CONFIG_BOARD_POSTCLK_INIT
182 CONFIG_BOARD_REVISION_TAG 182 CONFIG_BOARD_REVISION_TAG
183 CONFIG_BOARD_SIZE_LIMIT 183 CONFIG_BOARD_SIZE_LIMIT
184 CONFIG_BOARD_TAURUS 184 CONFIG_BOARD_TAURUS
185 CONFIG_BOARD_TYPES 185 CONFIG_BOARD_TYPES
186 CONFIG_BOOGER 186 CONFIG_BOOGER
187 CONFIG_BOOM 187 CONFIG_BOOM
188 CONFIG_BOOTARGS 188 CONFIG_BOOTARGS
189 CONFIG_BOOTARGS_AXM 189 CONFIG_BOOTARGS_AXM
190 CONFIG_BOOTARGS_TAURUS 190 CONFIG_BOOTARGS_TAURUS
191 CONFIG_BOOTBLOCK 191 CONFIG_BOOTBLOCK
192 CONFIG_BOOTCOMMAND 192 CONFIG_BOOTCOMMAND
193 CONFIG_BOOTCOUNT_ALEN 193 CONFIG_BOOTCOUNT_ALEN
194 CONFIG_BOOTCOUNT_AM33XX 194 CONFIG_BOOTCOUNT_AM33XX
195 CONFIG_BOOTCOUNT_ENV 195 CONFIG_BOOTCOUNT_ENV
196 CONFIG_BOOTCOUNT_I2C 196 CONFIG_BOOTCOUNT_I2C
197 CONFIG_BOOTCOUNT_LIMIT 197 CONFIG_BOOTCOUNT_LIMIT
198 CONFIG_BOOTCOUNT_RAM 198 CONFIG_BOOTCOUNT_RAM
199 CONFIG_BOOTFILE 199 CONFIG_BOOTFILE
200 CONFIG_BOOTMAPSZ 200 CONFIG_BOOTMAPSZ
201 CONFIG_BOOTMODE 201 CONFIG_BOOTMODE
202 CONFIG_BOOTM_LINUX 202 CONFIG_BOOTM_LINUX
203 CONFIG_BOOTM_NETBSD 203 CONFIG_BOOTM_NETBSD
204 CONFIG_BOOTM_OPENRTOS 204 CONFIG_BOOTM_OPENRTOS
205 CONFIG_BOOTM_OSE 205 CONFIG_BOOTM_OSE
206 CONFIG_BOOTM_PLAN9 206 CONFIG_BOOTM_PLAN9
207 CONFIG_BOOTM_RTEMS 207 CONFIG_BOOTM_RTEMS
208 CONFIG_BOOTM_VXWORKS 208 CONFIG_BOOTM_VXWORKS
209 CONFIG_BOOTP_ 209 CONFIG_BOOTP_
210 CONFIG_BOOTP_BOOTFILE 210 CONFIG_BOOTP_BOOTFILE
211 CONFIG_BOOTP_BOOTFILESIZE 211 CONFIG_BOOTP_BOOTFILESIZE
212 CONFIG_BOOTP_BOOTPATH 212 CONFIG_BOOTP_BOOTPATH
213 CONFIG_BOOTP_DEFAULT 213 CONFIG_BOOTP_DEFAULT
214 CONFIG_BOOTP_DHCP_REQUEST_DELAY 214 CONFIG_BOOTP_DHCP_REQUEST_DELAY
215 CONFIG_BOOTP_DNS 215 CONFIG_BOOTP_DNS
216 CONFIG_BOOTP_DNS2 216 CONFIG_BOOTP_DNS2
217 CONFIG_BOOTP_GATEWAY 217 CONFIG_BOOTP_GATEWAY
218 CONFIG_BOOTP_HOSTNAME 218 CONFIG_BOOTP_HOSTNAME
219 CONFIG_BOOTP_ID_CACHE_SIZE 219 CONFIG_BOOTP_ID_CACHE_SIZE
220 CONFIG_BOOTP_MAY_FAIL 220 CONFIG_BOOTP_MAY_FAIL
221 CONFIG_BOOTP_NISDOMAIN 221 CONFIG_BOOTP_NISDOMAIN
222 CONFIG_BOOTP_NTPSERVER 222 CONFIG_BOOTP_NTPSERVER
223 CONFIG_BOOTP_PXE 223 CONFIG_BOOTP_PXE
224 CONFIG_BOOTP_RANDOM_DELAY 224 CONFIG_BOOTP_RANDOM_DELAY
225 CONFIG_BOOTP_SEND_HOSTNAME 225 CONFIG_BOOTP_SEND_HOSTNAME
226 CONFIG_BOOTP_SERVERIP 226 CONFIG_BOOTP_SERVERIP
227 CONFIG_BOOTP_SUBNETMASK 227 CONFIG_BOOTP_SUBNETMASK
228 CONFIG_BOOTP_TIMEOFFSET 228 CONFIG_BOOTP_TIMEOFFSET
229 CONFIG_BOOTP_VENDOREX 229 CONFIG_BOOTP_VENDOREX
230 CONFIG_BOOTROM_ERR_REG 230 CONFIG_BOOTROM_ERR_REG
231 CONFIG_BOOTSCRIPT_ADDR 231 CONFIG_BOOTSCRIPT_ADDR
232 CONFIG_BOOTSCRIPT_COPY_RAM 232 CONFIG_BOOTSCRIPT_COPY_RAM
233 CONFIG_BOOTSCRIPT_HDR_ADDR 233 CONFIG_BOOTSCRIPT_HDR_ADDR
234 CONFIG_BOOTSCRIPT_KEY_HASH 234 CONFIG_BOOTSCRIPT_KEY_HASH
235 CONFIG_BOOT_DIR 235 CONFIG_BOOT_DIR
236 CONFIG_BOOT_MODE_BIT 236 CONFIG_BOOT_MODE_BIT
237 CONFIG_BOOT_OS_NET 237 CONFIG_BOOT_OS_NET
238 CONFIG_BOOT_PARAMS_ADDR 238 CONFIG_BOOT_PARAMS_ADDR
239 CONFIG_BOOT_RETRY_MIN 239 CONFIG_BOOT_RETRY_MIN
240 CONFIG_BOOT_RETRY_TIME 240 CONFIG_BOOT_RETRY_TIME
241 CONFIG_BOUNCE_BUFFER 241 CONFIG_BOUNCE_BUFFER
242 CONFIG_BPTR_VIRT_ADDR 242 CONFIG_BPTR_VIRT_ADDR
243 CONFIG_BS_ADDR_DEVICE 243 CONFIG_BS_ADDR_DEVICE
244 CONFIG_BS_ADDR_RAM 244 CONFIG_BS_ADDR_RAM
245 CONFIG_BS_COPY_CMD 245 CONFIG_BS_COPY_CMD
246 CONFIG_BS_COPY_ENV 246 CONFIG_BS_COPY_ENV
247 CONFIG_BS_HDR_ADDR_DEVICE 247 CONFIG_BS_HDR_ADDR_DEVICE
248 CONFIG_BS_HDR_ADDR_RAM 248 CONFIG_BS_HDR_ADDR_RAM
249 CONFIG_BS_HDR_SIZE 249 CONFIG_BS_HDR_SIZE
250 CONFIG_BS_SIZE 250 CONFIG_BS_SIZE
251 CONFIG_BTB 251 CONFIG_BTB
252 CONFIG_BUFNO_AUTO_INCR_BIT 252 CONFIG_BUFNO_AUTO_INCR_BIT
253 CONFIG_BUILD_ENVCRC 253 CONFIG_BUILD_ENVCRC
254 CONFIG_BUILD_TARGET 254 CONFIG_BUILD_TARGET
255 CONFIG_BUS_WIDTH 255 CONFIG_BUS_WIDTH
256 CONFIG_BZIP2 256 CONFIG_BZIP2
257 CONFIG_CADDY2 257 CONFIG_CADDY2
258 CONFIG_CALXEDA_XGMAC 258 CONFIG_CALXEDA_XGMAC
259 CONFIG_CDP_APPLIANCE_VLAN_TYPE 259 CONFIG_CDP_APPLIANCE_VLAN_TYPE
260 CONFIG_CDP_CAPABILITIES 260 CONFIG_CDP_CAPABILITIES
261 CONFIG_CDP_DEVICE_ID 261 CONFIG_CDP_DEVICE_ID
262 CONFIG_CDP_DEVICE_ID_PREFIX 262 CONFIG_CDP_DEVICE_ID_PREFIX
263 CONFIG_CDP_PLATFORM 263 CONFIG_CDP_PLATFORM
264 CONFIG_CDP_PORT_ID 264 CONFIG_CDP_PORT_ID
265 CONFIG_CDP_POWER_CONSUMPTION 265 CONFIG_CDP_POWER_CONSUMPTION
266 CONFIG_CDP_TRIGGER 266 CONFIG_CDP_TRIGGER
267 CONFIG_CDP_VERSION 267 CONFIG_CDP_VERSION
268 CONFIG_CFG_DATA_SECTOR 268 CONFIG_CFG_DATA_SECTOR
269 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS 269 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS
270 CONFIG_CF_DSPI 270 CONFIG_CF_DSPI
271 CONFIG_CF_SBF 271 CONFIG_CF_SBF
272 CONFIG_CF_SPI 272 CONFIG_CF_SPI
273 CONFIG_CF_V2 273 CONFIG_CF_V2
274 CONFIG_CF_V3 274 CONFIG_CF_V3
275 CONFIG_CF_V4 275 CONFIG_CF_V4
276 CONFIG_CF_V4E 276 CONFIG_CF_V4E
277 CONFIG_CHAIN_BOOT_CMD 277 CONFIG_CHAIN_BOOT_CMD
278 CONFIG_CHIP_SELECTS_PER_CTRL 278 CONFIG_CHIP_SELECTS_PER_CTRL
279 CONFIG_CHIP_SELECT_QUAD_CAPABLE 279 CONFIG_CHIP_SELECT_QUAD_CAPABLE
280 CONFIG_CHROMEOS_EXTRA_ENV_SETTINGS 280 CONFIG_CHROMEOS_EXTRA_ENV_SETTINGS
281 CONFIG_CI_UDC_HAS_HOSTPC 281 CONFIG_CI_UDC_HAS_HOSTPC
282 CONFIG_CLK0_DIV 282 CONFIG_CLK0_DIV
283 CONFIG_CLK0_EN 283 CONFIG_CLK0_EN
284 CONFIG_CLK_1000_200_200 284 CONFIG_CLK_1000_200_200
285 CONFIG_CLK_1000_330_165 285 CONFIG_CLK_1000_330_165
286 CONFIG_CLK_1000_400_200 286 CONFIG_CLK_1000_400_200
287 CONFIG_CLK_800_330_165 287 CONFIG_CLK_800_330_165
288 CONFIG_CLK_DEBUG 288 CONFIG_CLK_DEBUG
289 CONFIG_CLOCKS 289 CONFIG_CLOCKS
290 CONFIG_CLOCKS_IN_MHZ 290 CONFIG_CLOCKS_IN_MHZ
291 CONFIG_CLOCK_SYNTHESIZER 291 CONFIG_CLOCK_SYNTHESIZER
292 CONFIG_CM922T_XA10 292 CONFIG_CM922T_XA10
293 CONFIG_CMDLINE_EDITING 293 CONFIG_CMDLINE_EDITING
294 CONFIG_CMDLINE_PS_SUPPORT 294 CONFIG_CMDLINE_PS_SUPPORT
295 CONFIG_CMDLINE_TAG 295 CONFIG_CMDLINE_TAG
296 CONFIG_CMD_PORTIO
297 CONFIG_CMD_READ 296 CONFIG_CMD_READ
298 CONFIG_CMD_REGINFO 297 CONFIG_CMD_REGINFO
299 CONFIG_CMD_REISER 298 CONFIG_CMD_REISER
300 CONFIG_CMD_SANDBOX 299 CONFIG_CMD_SANDBOX
301 CONFIG_CMD_SAVES 300 CONFIG_CMD_SAVES
302 CONFIG_CMD_SCSI 301 CONFIG_CMD_SCSI
303 CONFIG_CMD_SDRAM 302 CONFIG_CMD_SDRAM
304 CONFIG_CMD_SF_TEST 303 CONFIG_CMD_SF_TEST
305 CONFIG_CMD_SH_ZIMAGEBOOT 304 CONFIG_CMD_SH_ZIMAGEBOOT
306 CONFIG_CMD_SPL 305 CONFIG_CMD_SPL
307 CONFIG_CMD_SPL_NAND_OFS 306 CONFIG_CMD_SPL_NAND_OFS
308 CONFIG_CMD_SPL_WRITE_SIZE 307 CONFIG_CMD_SPL_WRITE_SIZE
309 CONFIG_CMD_STRINGS 308 CONFIG_CMD_STRINGS
310 CONFIG_CMD_SX151X 309 CONFIG_CMD_SX151X
311 CONFIG_CMD_TCA642X 310 CONFIG_CMD_TCA642X
312 CONFIG_CMD_TERMINAL 311 CONFIG_CMD_TERMINAL
313 CONFIG_CMD_TFTP 312 CONFIG_CMD_TFTP
314 CONFIG_CMD_THOR_DOWNLOAD 313 CONFIG_CMD_THOR_DOWNLOAD
315 CONFIG_CMD_TRACE 314 CONFIG_CMD_TRACE
316 CONFIG_CMD_TSI148 315 CONFIG_CMD_TSI148
317 CONFIG_CMD_UNIVERSE 316 CONFIG_CMD_UNIVERSE
318 CONFIG_CMD_UUID 317 CONFIG_CMD_UUID
319 CONFIG_CMD_ZBOOT 318 CONFIG_CMD_ZBOOT
320 CONFIG_CMD_ZFS 319 CONFIG_CMD_ZFS
321 CONFIG_CM_INIT 320 CONFIG_CM_INIT
322 CONFIG_CM_MULTIPLE_SSRAM 321 CONFIG_CM_MULTIPLE_SSRAM
323 CONFIG_CM_REMAP 322 CONFIG_CM_REMAP
324 CONFIG_CM_SPD_DETECT 323 CONFIG_CM_SPD_DETECT
325 CONFIG_CM_T335 324 CONFIG_CM_T335
326 CONFIG_CM_T3517 325 CONFIG_CM_T3517
327 CONFIG_CM_T3X 326 CONFIG_CM_T3X
328 CONFIG_CM_T43 327 CONFIG_CM_T43
329 CONFIG_CM_T54 328 CONFIG_CM_T54
330 CONFIG_CM_TCRAM 329 CONFIG_CM_TCRAM
331 CONFIG_CNTL 330 CONFIG_CNTL
332 CONFIG_COLDFIRE 331 CONFIG_COLDFIRE
333 CONFIG_COMMANDS 332 CONFIG_COMMANDS
334 CONFIG_COMMON_BOOT 333 CONFIG_COMMON_BOOT
335 CONFIG_COMMON_ENV_MISC 334 CONFIG_COMMON_ENV_MISC
336 CONFIG_COMMON_ENV_SETTINGS 335 CONFIG_COMMON_ENV_SETTINGS
337 CONFIG_COMMON_ENV_UBI 336 CONFIG_COMMON_ENV_UBI
338 CONFIG_COMPACT_FLASH 337 CONFIG_COMPACT_FLASH
339 CONFIG_COMPAT 338 CONFIG_COMPAT
340 CONFIG_CONS_EXTC_PINSEL 339 CONFIG_CONS_EXTC_PINSEL
341 CONFIG_CONS_EXTC_RATE 340 CONFIG_CONS_EXTC_RATE
342 CONFIG_CONS_NONE 341 CONFIG_CONS_NONE
343 CONFIG_CONS_ON_SCC 342 CONFIG_CONS_ON_SCC
344 CONFIG_CONS_SCIF0 343 CONFIG_CONS_SCIF0
345 CONFIG_CONS_SCIF1 344 CONFIG_CONS_SCIF1
346 CONFIG_CONS_SCIF2 345 CONFIG_CONS_SCIF2
347 CONFIG_CONS_SCIF3 346 CONFIG_CONS_SCIF3
348 CONFIG_CONS_SCIF4 347 CONFIG_CONS_SCIF4
349 CONFIG_CONS_SCIF5 348 CONFIG_CONS_SCIF5
350 CONFIG_CONS_SCIF7 349 CONFIG_CONS_SCIF7
351 CONFIG_CONTROL 350 CONFIG_CONTROL
352 CONFIG_CONTROLCENTERD 351 CONFIG_CONTROLCENTERD
353 CONFIG_CON_ROT 352 CONFIG_CON_ROT
354 CONFIG_CORE_COUNT 353 CONFIG_CORE_COUNT
355 CONFIG_CORTINA_FW_ADDR 354 CONFIG_CORTINA_FW_ADDR
356 CONFIG_CORTINA_FW_LENGTH 355 CONFIG_CORTINA_FW_LENGTH
357 CONFIG_CPLD_BR_PRELIM 356 CONFIG_CPLD_BR_PRELIM
358 CONFIG_CPLD_OR_PRELIM 357 CONFIG_CPLD_OR_PRELIM
359 CONFIG_CPM2 358 CONFIG_CPM2
360 CONFIG_CPUAT91 359 CONFIG_CPUAT91
361 CONFIG_CPU_ARCHS34 360 CONFIG_CPU_ARCHS34
362 CONFIG_CPU_ARMV8 361 CONFIG_CPU_ARMV8
363 CONFIG_CPU_CAVIUM_OCTEON 362 CONFIG_CPU_CAVIUM_OCTEON
364 CONFIG_CPU_FREQ_HZ 363 CONFIG_CPU_FREQ_HZ
365 CONFIG_CPU_HAS_LLSC 364 CONFIG_CPU_HAS_LLSC
366 CONFIG_CPU_HAS_PREFETCH 365 CONFIG_CPU_HAS_PREFETCH
367 CONFIG_CPU_HAS_SMARTMIPS 366 CONFIG_CPU_HAS_SMARTMIPS
368 CONFIG_CPU_HAS_SR_RB 367 CONFIG_CPU_HAS_SR_RB
369 CONFIG_CPU_HAS_WB 368 CONFIG_CPU_HAS_WB
370 CONFIG_CPU_INTEL_TURBO_NOT_PACKAGE_SCOPED 369 CONFIG_CPU_INTEL_TURBO_NOT_PACKAGE_SCOPED
371 CONFIG_CPU_LITTLE_ENDIAN 370 CONFIG_CPU_LITTLE_ENDIAN
372 CONFIG_CPU_MICROMIPS 371 CONFIG_CPU_MICROMIPS
373 CONFIG_CPU_MIPSR2 372 CONFIG_CPU_MIPSR2
374 CONFIG_CPU_MONAHANS 373 CONFIG_CPU_MONAHANS
375 CONFIG_CPU_PXA25X 374 CONFIG_CPU_PXA25X
376 CONFIG_CPU_PXA26X 375 CONFIG_CPU_PXA26X
377 CONFIG_CPU_PXA27X 376 CONFIG_CPU_PXA27X
378 CONFIG_CPU_PXA300 377 CONFIG_CPU_PXA300
379 CONFIG_CPU_R8000 378 CONFIG_CPU_R8000
380 CONFIG_CPU_SH7203 379 CONFIG_CPU_SH7203
381 CONFIG_CPU_SH7264 380 CONFIG_CPU_SH7264
382 CONFIG_CPU_SH7269 381 CONFIG_CPU_SH7269
383 CONFIG_CPU_SH7706 382 CONFIG_CPU_SH7706
384 CONFIG_CPU_SH7720 383 CONFIG_CPU_SH7720
385 CONFIG_CPU_SH7722 384 CONFIG_CPU_SH7722
386 CONFIG_CPU_SH7723 385 CONFIG_CPU_SH7723
387 CONFIG_CPU_SH7724 386 CONFIG_CPU_SH7724
388 CONFIG_CPU_SH7734 387 CONFIG_CPU_SH7734
389 CONFIG_CPU_SH7750 388 CONFIG_CPU_SH7750
390 CONFIG_CPU_SH7751 389 CONFIG_CPU_SH7751
391 CONFIG_CPU_SH7752 390 CONFIG_CPU_SH7752
392 CONFIG_CPU_SH7753 391 CONFIG_CPU_SH7753
393 CONFIG_CPU_SH7757 392 CONFIG_CPU_SH7757
394 CONFIG_CPU_SH7763 393 CONFIG_CPU_SH7763
395 CONFIG_CPU_SH7780 394 CONFIG_CPU_SH7780
396 CONFIG_CPU_SH7785 395 CONFIG_CPU_SH7785
397 CONFIG_CPU_SH_TYPE_R 396 CONFIG_CPU_SH_TYPE_R
398 CONFIG_CPU_TYPE_R 397 CONFIG_CPU_TYPE_R
399 CONFIG_CPU_VR41XX 398 CONFIG_CPU_VR41XX
400 CONFIG_CP_CLK_FREQ 399 CONFIG_CP_CLK_FREQ
401 CONFIG_CQSPI_DECODER 400 CONFIG_CQSPI_DECODER
402 CONFIG_CQSPI_REF_CLK 401 CONFIG_CQSPI_REF_CLK
403 CONFIG_CRC32 402 CONFIG_CRC32
404 CONFIG_CS8900 403 CONFIG_CS8900
405 CONFIG_CS8900_BASE 404 CONFIG_CS8900_BASE
406 CONFIG_CS8900_BUS16 405 CONFIG_CS8900_BUS16
407 CONFIG_CS8900_BUS32 406 CONFIG_CS8900_BUS32
408 CONFIG_CSF_SIZE 407 CONFIG_CSF_SIZE
409 CONFIG_CTL_JTAG 408 CONFIG_CTL_JTAG
410 CONFIG_CTL_TBE 409 CONFIG_CTL_TBE
411 CONFIG_CTRD1_PROBE_T1 410 CONFIG_CTRD1_PROBE_T1
412 CONFIG_CTRD1_PROBE_T2 411 CONFIG_CTRD1_PROBE_T2
413 CONFIG_CUSTOMER_BOARD_SUPPORT 412 CONFIG_CUSTOMER_BOARD_SUPPORT
414 CONFIG_CYRUS 413 CONFIG_CYRUS
415 CONFIG_D2NET_V2 414 CONFIG_D2NET_V2
416 CONFIG_DA850_AM18X_EVM 415 CONFIG_DA850_AM18X_EVM
417 CONFIG_DA850_EVM_MAX_CPU_CLK 416 CONFIG_DA850_EVM_MAX_CPU_CLK
418 CONFIG_DA850_LOWLEVEL 417 CONFIG_DA850_LOWLEVEL
419 CONFIG_DA8XX_GPIO 418 CONFIG_DA8XX_GPIO
420 CONFIG_DAVINCI_SPI 419 CONFIG_DAVINCI_SPI
421 CONFIG_DBAU1000 420 CONFIG_DBAU1000
422 CONFIG_DBAU1X00 421 CONFIG_DBAU1X00
423 CONFIG_DBGU 422 CONFIG_DBGU
424 CONFIG_DBG_MONITOR 423 CONFIG_DBG_MONITOR
425 CONFIG_DB_784MP_GP 424 CONFIG_DB_784MP_GP
426 CONFIG_DCACHE 425 CONFIG_DCACHE
427 CONFIG_DCACHE_OFF 426 CONFIG_DCACHE_OFF
428 CONFIG_DCFG_ADDR 427 CONFIG_DCFG_ADDR
429 CONFIG_DDR_ 428 CONFIG_DDR_
430 CONFIG_DDR_2HCLK 429 CONFIG_DDR_2HCLK
431 CONFIG_DDR_2T_TIMING 430 CONFIG_DDR_2T_TIMING
432 CONFIG_DDR_32BIT 431 CONFIG_DDR_32BIT
433 CONFIG_DDR_64BIT 432 CONFIG_DDR_64BIT
434 CONFIG_DDR_CLK_FREQ 433 CONFIG_DDR_CLK_FREQ
435 CONFIG_DDR_DEFAULT_CL 434 CONFIG_DDR_DEFAULT_CL
436 CONFIG_DDR_ECC 435 CONFIG_DDR_ECC
437 CONFIG_DDR_ECC_CMD 436 CONFIG_DDR_ECC_CMD
438 CONFIG_DDR_ECC_ENABLE 437 CONFIG_DDR_ECC_ENABLE
439 CONFIG_DDR_ECC_INIT_VIA_DMA 438 CONFIG_DDR_ECC_INIT_VIA_DMA
440 CONFIG_DDR_FIXED_SIZE 439 CONFIG_DDR_FIXED_SIZE
441 CONFIG_DDR_HCLK 440 CONFIG_DDR_HCLK
442 CONFIG_DDR_II 441 CONFIG_DDR_II
443 CONFIG_DDR_LOG_LEVEL 442 CONFIG_DDR_LOG_LEVEL
444 CONFIG_DDR_MB 443 CONFIG_DDR_MB
445 CONFIG_DDR_MT47H128M8 444 CONFIG_DDR_MT47H128M8
446 CONFIG_DDR_MT47H32M16 445 CONFIG_DDR_MT47H32M16
447 CONFIG_DDR_MT47H64M16 446 CONFIG_DDR_MT47H64M16
448 CONFIG_DDR_PLL2 447 CONFIG_DDR_PLL2
449 CONFIG_DDR_SPD 448 CONFIG_DDR_SPD
450 CONFIG_DEBUG 449 CONFIG_DEBUG
451 CONFIG_DEBUG_FS 450 CONFIG_DEBUG_FS
452 CONFIG_DEBUG_LED 451 CONFIG_DEBUG_LED
453 CONFIG_DEBUG_LOCK_ALLOC 452 CONFIG_DEBUG_LOCK_ALLOC
454 CONFIG_DEBUG_SECTION_MISMATCH 453 CONFIG_DEBUG_SECTION_MISMATCH
455 CONFIG_DEBUG_SEMIHOSTING 454 CONFIG_DEBUG_SEMIHOSTING
456 CONFIG_DEBUG_UART_LINFLEXUART 455 CONFIG_DEBUG_UART_LINFLEXUART
457 CONFIG_DEBUG_WRITECOUNT 456 CONFIG_DEBUG_WRITECOUNT
458 CONFIG_DEEP_SLEEP 457 CONFIG_DEEP_SLEEP
459 CONFIG_DEFAULT 458 CONFIG_DEFAULT
460 CONFIG_DEFAULT_CONSOLE 459 CONFIG_DEFAULT_CONSOLE
461 CONFIG_DEFAULT_IMMR 460 CONFIG_DEFAULT_IMMR
462 CONFIG_DEFAULT_SPI_BUS 461 CONFIG_DEFAULT_SPI_BUS
463 CONFIG_DEFAULT_SPI_CS 462 CONFIG_DEFAULT_SPI_CS
464 CONFIG_DEFAULT_SPI_MODE 463 CONFIG_DEFAULT_SPI_MODE
465 CONFIG_DEF_HWCONFIG 464 CONFIG_DEF_HWCONFIG
466 CONFIG_DELAY_ENVIRONMENT 465 CONFIG_DELAY_ENVIRONMENT
467 CONFIG_DESIGNWARE_ETH 466 CONFIG_DESIGNWARE_ETH
468 CONFIG_DESIGNWARE_WATCHDOG 467 CONFIG_DESIGNWARE_WATCHDOG
469 CONFIG_DEVELOP 468 CONFIG_DEVELOP
470 CONFIG_DEVICE_TREE_LIST 469 CONFIG_DEVICE_TREE_LIST
471 CONFIG_DEV_USB_PHY_BASE 470 CONFIG_DEV_USB_PHY_BASE
472 CONFIG_DFU_ALT 471 CONFIG_DFU_ALT
473 CONFIG_DFU_ALT_BOOT_EMMC 472 CONFIG_DFU_ALT_BOOT_EMMC
474 CONFIG_DFU_ALT_BOOT_SD 473 CONFIG_DFU_ALT_BOOT_SD
475 CONFIG_DFU_ALT_SYSTEM 474 CONFIG_DFU_ALT_SYSTEM
476 CONFIG_DFU_ENV_SETTINGS 475 CONFIG_DFU_ENV_SETTINGS
477 CONFIG_DFU_MTD 476 CONFIG_DFU_MTD
478 CONFIG_DHCP_MIN_EXT_LEN 477 CONFIG_DHCP_MIN_EXT_LEN
479 CONFIG_DIALOG_POWER 478 CONFIG_DIALOG_POWER
480 CONFIG_DIMM_SLOTS_PER_CTLR 479 CONFIG_DIMM_SLOTS_PER_CTLR
481 CONFIG_DIRECT_NOR_BOOT 480 CONFIG_DIRECT_NOR_BOOT
482 CONFIG_DISABLE_CONSOLE 481 CONFIG_DISABLE_CONSOLE
483 CONFIG_DISABLE_IMAGE_LEGACY 482 CONFIG_DISABLE_IMAGE_LEGACY
484 CONFIG_DISCONTIGMEM 483 CONFIG_DISCONTIGMEM
485 CONFIG_DISCOVER_PHY 484 CONFIG_DISCOVER_PHY
486 CONFIG_DISPLAY_AER_xxxx 485 CONFIG_DISPLAY_AER_xxxx
487 CONFIG_DISPLAY_BOARDINFO_LATE 486 CONFIG_DISPLAY_BOARDINFO_LATE
488 CONFIG_DLVISION_10G 487 CONFIG_DLVISION_10G
489 CONFIG_DM9000_BASE 488 CONFIG_DM9000_BASE
490 CONFIG_DM9000_BYTE_SWAPPED 489 CONFIG_DM9000_BYTE_SWAPPED
491 CONFIG_DM9000_DEBUG 490 CONFIG_DM9000_DEBUG
492 CONFIG_DM9000_NO_SROM 491 CONFIG_DM9000_NO_SROM
493 CONFIG_DM9000_USE_16BIT 492 CONFIG_DM9000_USE_16BIT
494 CONFIG_DMA_COHERENT 493 CONFIG_DMA_COHERENT
495 CONFIG_DMA_COHERENT_SIZE 494 CONFIG_DMA_COHERENT_SIZE
496 CONFIG_DMA_LPC32XX 495 CONFIG_DMA_LPC32XX
497 CONFIG_DMA_NONCOHERENT 496 CONFIG_DMA_NONCOHERENT
498 CONFIG_DMA_REQ_BIT 497 CONFIG_DMA_REQ_BIT
499 CONFIG_DNET_AUTONEG_TIMEOUT 498 CONFIG_DNET_AUTONEG_TIMEOUT
500 CONFIG_DP_DDR_CTRL 499 CONFIG_DP_DDR_CTRL
501 CONFIG_DP_DDR_DIMM_SLOTS_PER_CTLR 500 CONFIG_DP_DDR_DIMM_SLOTS_PER_CTLR
502 CONFIG_DP_DDR_NUM_CTRLS 501 CONFIG_DP_DDR_NUM_CTRLS
503 CONFIG_DRAM_2G 502 CONFIG_DRAM_2G
504 CONFIG_DRAM_TIMINGS_ 503 CONFIG_DRAM_TIMINGS_
505 CONFIG_DRIVER_AT91EMAC 504 CONFIG_DRIVER_AT91EMAC
506 CONFIG_DRIVER_AT91EMAC_PHYADDR 505 CONFIG_DRIVER_AT91EMAC_PHYADDR
507 CONFIG_DRIVER_AT91EMAC_QUIET 506 CONFIG_DRIVER_AT91EMAC_QUIET
508 CONFIG_DRIVER_AX88796L 507 CONFIG_DRIVER_AX88796L
509 CONFIG_DRIVER_DM9000 508 CONFIG_DRIVER_DM9000
510 CONFIG_DRIVER_EP93XX_MAC 509 CONFIG_DRIVER_EP93XX_MAC
511 CONFIG_DRIVER_ETHER 510 CONFIG_DRIVER_ETHER
512 CONFIG_DRIVER_NE2000 511 CONFIG_DRIVER_NE2000
513 CONFIG_DRIVER_NE2000_BASE 512 CONFIG_DRIVER_NE2000_BASE
514 CONFIG_DRIVER_NE2000_CCR 513 CONFIG_DRIVER_NE2000_CCR
515 CONFIG_DRIVER_NE2000_VAL 514 CONFIG_DRIVER_NE2000_VAL
516 CONFIG_DRIVER_SMC911X_BASE 515 CONFIG_DRIVER_SMC911X_BASE
517 CONFIG_DRIVER_TI_CPSW 516 CONFIG_DRIVER_TI_CPSW
518 CONFIG_DRIVER_TI_EMAC 517 CONFIG_DRIVER_TI_EMAC
519 CONFIG_DRIVER_TI_EMAC_RMII_NO_NEGOTIATE 518 CONFIG_DRIVER_TI_EMAC_RMII_NO_NEGOTIATE
520 CONFIG_DRIVER_TI_EMAC_USE_RMII 519 CONFIG_DRIVER_TI_EMAC_USE_RMII
521 CONFIG_DRIVER_TI_KEYSTONE_NET 520 CONFIG_DRIVER_TI_KEYSTONE_NET
522 CONFIG_DRIVE_MMC 521 CONFIG_DRIVE_MMC
523 CONFIG_DRIVE_SATA 522 CONFIG_DRIVE_SATA
524 CONFIG_DRIVE_TYPES 523 CONFIG_DRIVE_TYPES
525 CONFIG_DRIVE_USB 524 CONFIG_DRIVE_USB
526 CONFIG_DSP_CLUSTER_START 525 CONFIG_DSP_CLUSTER_START
527 CONFIG_DUOVERO 526 CONFIG_DUOVERO
528 CONFIG_DV_USBPHY_CTL 527 CONFIG_DV_USBPHY_CTL
529 CONFIG_DWC2_DFLT_SPEED_FULL 528 CONFIG_DWC2_DFLT_SPEED_FULL
530 CONFIG_DWC2_DMA_BURST_SIZE 529 CONFIG_DWC2_DMA_BURST_SIZE
531 CONFIG_DWC2_DMA_ENABLE 530 CONFIG_DWC2_DMA_ENABLE
532 CONFIG_DWC2_ENABLE_DYNAMIC_FIFO 531 CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
533 CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE 532 CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE
534 CONFIG_DWC2_HOST_PERIO_TX_FIFO_SIZE 533 CONFIG_DWC2_HOST_PERIO_TX_FIFO_SIZE
535 CONFIG_DWC2_HOST_RX_FIFO_SIZE 534 CONFIG_DWC2_HOST_RX_FIFO_SIZE
536 CONFIG_DWC2_I2C_ENABLE 535 CONFIG_DWC2_I2C_ENABLE
537 CONFIG_DWC2_IC_USB_CAP 536 CONFIG_DWC2_IC_USB_CAP
538 CONFIG_DWC2_MAX_CHANNELS 537 CONFIG_DWC2_MAX_CHANNELS
539 CONFIG_DWC2_MAX_PACKET_COUNT 538 CONFIG_DWC2_MAX_PACKET_COUNT
540 CONFIG_DWC2_MAX_TRANSFER_SIZE 539 CONFIG_DWC2_MAX_TRANSFER_SIZE
541 CONFIG_DWC2_PHY_TYPE 540 CONFIG_DWC2_PHY_TYPE
542 CONFIG_DWC2_PHY_ULPI_DDR 541 CONFIG_DWC2_PHY_ULPI_DDR
543 CONFIG_DWC2_PHY_ULPI_EXT_VBUS 542 CONFIG_DWC2_PHY_ULPI_EXT_VBUS
544 CONFIG_DWC2_THR_CTL 543 CONFIG_DWC2_THR_CTL
545 CONFIG_DWC2_TS_DLINE 544 CONFIG_DWC2_TS_DLINE
546 CONFIG_DWC2_TX_THR_LENGTH 545 CONFIG_DWC2_TX_THR_LENGTH
547 CONFIG_DWC2_ULPI_FS_LS 546 CONFIG_DWC2_ULPI_FS_LS
548 CONFIG_DWC2_UTMI_WIDTH 547 CONFIG_DWC2_UTMI_WIDTH
549 CONFIG_DWCDDR21MCTL 548 CONFIG_DWCDDR21MCTL
550 CONFIG_DWCDDR21MCTL_BASE 549 CONFIG_DWCDDR21MCTL_BASE
551 CONFIG_DWC_AHSATA 550 CONFIG_DWC_AHSATA
552 CONFIG_DWC_AHSATA_BASE_ADDR 551 CONFIG_DWC_AHSATA_BASE_ADDR
553 CONFIG_DWC_AHSATA_PORT_ID 552 CONFIG_DWC_AHSATA_PORT_ID
554 CONFIG_DW_ALTDESCRIPTOR 553 CONFIG_DW_ALTDESCRIPTOR
555 CONFIG_DW_AXI_BURST_LEN 554 CONFIG_DW_AXI_BURST_LEN
556 CONFIG_DW_GMAC_DEFAULT_DMA_PBL 555 CONFIG_DW_GMAC_DEFAULT_DMA_PBL
557 CONFIG_DW_MAC_FORCE_THRESHOLD_MODE 556 CONFIG_DW_MAC_FORCE_THRESHOLD_MODE
558 CONFIG_DW_SERIAL 557 CONFIG_DW_SERIAL
559 CONFIG_DW_UDC 558 CONFIG_DW_UDC
560 CONFIG_DW_WDT_BASE 559 CONFIG_DW_WDT_BASE
561 CONFIG_DW_WDT_CLOCK_KHZ 560 CONFIG_DW_WDT_CLOCK_KHZ
562 CONFIG_DYNAMIC_MMC_DEVNO 561 CONFIG_DYNAMIC_MMC_DEVNO
563 CONFIG_E1000_NO_NVM 562 CONFIG_E1000_NO_NVM
564 CONFIG_E300 563 CONFIG_E300
565 CONFIG_E5500 564 CONFIG_E5500
566 CONFIG_ECC 565 CONFIG_ECC
567 CONFIG_ECC_INIT_VIA_DDRCONTROLLER 566 CONFIG_ECC_INIT_VIA_DDRCONTROLLER
568 CONFIG_ECC_MODE_MASK 567 CONFIG_ECC_MODE_MASK
569 CONFIG_ECC_MODE_SHIFT 568 CONFIG_ECC_MODE_SHIFT
570 CONFIG_ECC_SRAM_ADDR_MASK 569 CONFIG_ECC_SRAM_ADDR_MASK
571 CONFIG_ECC_SRAM_ADDR_SHIFT 570 CONFIG_ECC_SRAM_ADDR_SHIFT
572 CONFIG_ECC_SRAM_REQ_BIT 571 CONFIG_ECC_SRAM_REQ_BIT
573 CONFIG_ECOVEC 572 CONFIG_ECOVEC
574 CONFIG_ECOVEC_ROMIMAGE_ADDR 573 CONFIG_ECOVEC_ROMIMAGE_ADDR
575 CONFIG_EDB9301 574 CONFIG_EDB9301
576 CONFIG_EDB9302 575 CONFIG_EDB9302
577 CONFIG_EDB9302A 576 CONFIG_EDB9302A
578 CONFIG_EDB9307 577 CONFIG_EDB9307
579 CONFIG_EDB9307A 578 CONFIG_EDB9307A
580 CONFIG_EDB9312 579 CONFIG_EDB9312
581 CONFIG_EDB9315 580 CONFIG_EDB9315
582 CONFIG_EDB9315A 581 CONFIG_EDB9315A
583 CONFIG_EDB93XX_INDUSTRIAL 582 CONFIG_EDB93XX_INDUSTRIAL
584 CONFIG_EDB93XX_SDCS0 583 CONFIG_EDB93XX_SDCS0
585 CONFIG_EDB93XX_SDCS1 584 CONFIG_EDB93XX_SDCS1
586 CONFIG_EDB93XX_SDCS2 585 CONFIG_EDB93XX_SDCS2
587 CONFIG_EDB93XX_SDCS3 586 CONFIG_EDB93XX_SDCS3
588 CONFIG_EEPRO100 587 CONFIG_EEPRO100
589 CONFIG_EEPRO100_SROM_WRITE 588 CONFIG_EEPRO100_SROM_WRITE
590 CONFIG_EFLASH_PROTSECTORS 589 CONFIG_EFLASH_PROTSECTORS
591 CONFIG_EHCI_DESC_BIG_ENDIAN 590 CONFIG_EHCI_DESC_BIG_ENDIAN
592 CONFIG_EHCI_HCD_INIT_AFTER_RESET 591 CONFIG_EHCI_HCD_INIT_AFTER_RESET
593 CONFIG_EHCI_IS_TDI 592 CONFIG_EHCI_IS_TDI
594 CONFIG_EHCI_MMIO_BIG_ENDIAN 593 CONFIG_EHCI_MMIO_BIG_ENDIAN
595 CONFIG_EHCI_MXS_PORT0 594 CONFIG_EHCI_MXS_PORT0
596 CONFIG_EHCI_MXS_PORT1 595 CONFIG_EHCI_MXS_PORT1
597 CONFIG_ELBC_NAND_SPL_STATIC_PGSIZE 596 CONFIG_ELBC_NAND_SPL_STATIC_PGSIZE
598 CONFIG_EMIF4 597 CONFIG_EMIF4
599 CONFIG_EMMC_BOOT 598 CONFIG_EMMC_BOOT
600 CONFIG_EMU 599 CONFIG_EMU
601 CONFIG_ENABLE_36BIT_PHYS 600 CONFIG_ENABLE_36BIT_PHYS
602 CONFIG_ENABLE_MMU 601 CONFIG_ENABLE_MMU
603 CONFIG_ENABLE_MUST_CHECK 602 CONFIG_ENABLE_MUST_CHECK
604 CONFIG_ENABLE_WARN_DEPRECATED 603 CONFIG_ENABLE_WARN_DEPRECATED
605 CONFIG_ENC_SILENTLINK 604 CONFIG_ENC_SILENTLINK
606 CONFIG_ENV_ACCESS_IGNORE_FORCE 605 CONFIG_ENV_ACCESS_IGNORE_FORCE
607 CONFIG_ENV_ADDR 606 CONFIG_ENV_ADDR
608 CONFIG_ENV_ADDR_FLEX 607 CONFIG_ENV_ADDR_FLEX
609 CONFIG_ENV_ADDR_REDUND 608 CONFIG_ENV_ADDR_REDUND
610 CONFIG_ENV_AES 609 CONFIG_ENV_AES
611 CONFIG_ENV_BASE 610 CONFIG_ENV_BASE
612 CONFIG_ENV_CALLBACK_LIST_DEFAULT 611 CONFIG_ENV_CALLBACK_LIST_DEFAULT
613 CONFIG_ENV_CALLBACK_LIST_STATIC 612 CONFIG_ENV_CALLBACK_LIST_STATIC
614 CONFIG_ENV_COMMON_BOOT 613 CONFIG_ENV_COMMON_BOOT
615 CONFIG_ENV_EEPROM_IS_ON_I2C 614 CONFIG_ENV_EEPROM_IS_ON_I2C
616 CONFIG_ENV_FIT_UCBOOT 615 CONFIG_ENV_FIT_UCBOOT
617 CONFIG_ENV_FLAGS_LIST_DEFAULT 616 CONFIG_ENV_FLAGS_LIST_DEFAULT
618 CONFIG_ENV_FLAGS_LIST_STATIC 617 CONFIG_ENV_FLAGS_LIST_STATIC
619 CONFIG_ENV_FLASHBOOT 618 CONFIG_ENV_FLASHBOOT
620 CONFIG_ENV_IS_EMBEDDED 619 CONFIG_ENV_IS_EMBEDDED
621 CONFIG_ENV_IS_IN_ 620 CONFIG_ENV_IS_IN_
622 CONFIG_ENV_MAX_ENTRIES 621 CONFIG_ENV_MAX_ENTRIES
623 CONFIG_ENV_MIN_ENTRIES 622 CONFIG_ENV_MIN_ENTRIES
624 CONFIG_ENV_OFFSET_OOB 623 CONFIG_ENV_OFFSET_OOB
625 CONFIG_ENV_OFFSET_REDUND 624 CONFIG_ENV_OFFSET_REDUND
626 CONFIG_ENV_OVERWRITE 625 CONFIG_ENV_OVERWRITE
627 CONFIG_ENV_RANGE 626 CONFIG_ENV_RANGE
628 CONFIG_ENV_RDADDR 627 CONFIG_ENV_RDADDR
629 CONFIG_ENV_REFLASH 628 CONFIG_ENV_REFLASH
630 CONFIG_ENV_SECT_SIZE 629 CONFIG_ENV_SECT_SIZE
631 CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS 630 CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS
632 CONFIG_ENV_SETTINGS_NAND_V1 631 CONFIG_ENV_SETTINGS_NAND_V1
633 CONFIG_ENV_SETTINGS_NAND_V2 632 CONFIG_ENV_SETTINGS_NAND_V2
634 CONFIG_ENV_SETTINGS_V1 633 CONFIG_ENV_SETTINGS_V1
635 CONFIG_ENV_SETTINGS_V2 634 CONFIG_ENV_SETTINGS_V2
636 CONFIG_ENV_SIZE_FLEX 635 CONFIG_ENV_SIZE_FLEX
637 CONFIG_ENV_SIZE_REDUND 636 CONFIG_ENV_SIZE_REDUND
638 CONFIG_ENV_SPI_BASE 637 CONFIG_ENV_SPI_BASE
639 CONFIG_ENV_SPI_BUS 638 CONFIG_ENV_SPI_BUS
640 CONFIG_ENV_SPI_CS 639 CONFIG_ENV_SPI_CS
641 CONFIG_ENV_SPI_MAX_HZ 640 CONFIG_ENV_SPI_MAX_HZ
642 CONFIG_ENV_SPI_MODE 641 CONFIG_ENV_SPI_MODE
643 CONFIG_ENV_SROM_BANK 642 CONFIG_ENV_SROM_BANK
644 CONFIG_ENV_TOTAL_SIZE 643 CONFIG_ENV_TOTAL_SIZE
645 CONFIG_ENV_UBIFS_OPTION 644 CONFIG_ENV_UBIFS_OPTION
646 CONFIG_ENV_UBI_MTD 645 CONFIG_ENV_UBI_MTD
647 CONFIG_ENV_UBI_VOLUME_REDUND 646 CONFIG_ENV_UBI_VOLUME_REDUND
648 CONFIG_ENV_VARS_UBOOT_CONFIG 647 CONFIG_ENV_VARS_UBOOT_CONFIG
649 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG 648 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
650 CONFIG_ENV_VERSION 649 CONFIG_ENV_VERSION
651 CONFIG_EP9301 650 CONFIG_EP9301
652 CONFIG_EP9302 651 CONFIG_EP9302
653 CONFIG_EP9307 652 CONFIG_EP9307
654 CONFIG_EP9312 653 CONFIG_EP9312
655 CONFIG_EP9315 654 CONFIG_EP9315
656 CONFIG_EP93XX 655 CONFIG_EP93XX
657 CONFIG_EP93XX_NO_FLASH_CFG 656 CONFIG_EP93XX_NO_FLASH_CFG
658 CONFIG_EPH_POWER_EN 657 CONFIG_EPH_POWER_EN
659 CONFIG_EPOLL 658 CONFIG_EPOLL
660 CONFIG_ESBC_ADDR_64BIT 659 CONFIG_ESBC_ADDR_64BIT
661 CONFIG_ESBC_HDR_LS 660 CONFIG_ESBC_HDR_LS
662 CONFIG_ESDHC_DETECT_8_BIT_QUIRK 661 CONFIG_ESDHC_DETECT_8_BIT_QUIRK
663 CONFIG_ESDHC_DETECT_QUIRK 662 CONFIG_ESDHC_DETECT_QUIRK
664 CONFIG_ESDHC_DETECT_USE_EXTERN_IRQ1 663 CONFIG_ESDHC_DETECT_USE_EXTERN_IRQ1
665 CONFIG_ESDHC_HC_BLK_ADDR 664 CONFIG_ESDHC_HC_BLK_ADDR
666 CONFIG_ESPRESSO7420 665 CONFIG_ESPRESSO7420
667 CONFIG_ESPT 666 CONFIG_ESPT
668 CONFIG_ET1100_BASE 667 CONFIG_ET1100_BASE
669 CONFIG_ETH1ADDR 668 CONFIG_ETH1ADDR
670 CONFIG_ETH2ADDR 669 CONFIG_ETH2ADDR
671 CONFIG_ETHADDR 670 CONFIG_ETHADDR
672 CONFIG_ETHBASE 671 CONFIG_ETHBASE
673 CONFIG_ETHER_INDEX 672 CONFIG_ETHER_INDEX
674 CONFIG_ETHER_NONE 673 CONFIG_ETHER_NONE
675 CONFIG_ETHER_ON_FCC 674 CONFIG_ETHER_ON_FCC
676 CONFIG_ETHER_ON_FCC1 675 CONFIG_ETHER_ON_FCC1
677 CONFIG_ETHER_ON_FCC2 676 CONFIG_ETHER_ON_FCC2
678 CONFIG_ETHER_ON_FCC3 677 CONFIG_ETHER_ON_FCC3
679 CONFIG_ETHPRIME 678 CONFIG_ETHPRIME
680 CONFIG_ETH_BUFSIZE 679 CONFIG_ETH_BUFSIZE
681 CONFIG_ETH_RXSIZE 680 CONFIG_ETH_RXSIZE
682 CONFIG_EXT4_WRITE 681 CONFIG_EXT4_WRITE
683 CONFIG_EXTRA_BOOTARGS 682 CONFIG_EXTRA_BOOTARGS
684 CONFIG_EXTRA_CLOCK 683 CONFIG_EXTRA_CLOCK
685 CONFIG_EXTRA_ENV 684 CONFIG_EXTRA_ENV
686 CONFIG_EXTRA_ENV_BOARD_SETTINGS 685 CONFIG_EXTRA_ENV_BOARD_SETTINGS
687 CONFIG_EXTRA_ENV_ITB 686 CONFIG_EXTRA_ENV_ITB
688 CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS 687 CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS
689 CONFIG_EXTRA_ENV_SETTINGS 688 CONFIG_EXTRA_ENV_SETTINGS
690 CONFIG_EXTRA_ENV_SETTINGS_COMMON 689 CONFIG_EXTRA_ENV_SETTINGS_COMMON
691 CONFIG_EXTRA_ENV_UNLOCK 690 CONFIG_EXTRA_ENV_UNLOCK
692 CONFIG_EXTRA_ENV_USBTTY 691 CONFIG_EXTRA_ENV_USBTTY
693 CONFIG_EXT_AHB2AHB_BASE 692 CONFIG_EXT_AHB2AHB_BASE
694 CONFIG_EXT_AHBAPBBRG_BASE 693 CONFIG_EXT_AHBAPBBRG_BASE
695 CONFIG_EXT_AHBPCIBRG_BASE 694 CONFIG_EXT_AHBPCIBRG_BASE
696 CONFIG_EXT_AHBSLAVE01_BASE 695 CONFIG_EXT_AHBSLAVE01_BASE
697 CONFIG_EXT_AHBSLAVE02_BASE 696 CONFIG_EXT_AHBSLAVE02_BASE
698 CONFIG_EXT_PHY 697 CONFIG_EXT_PHY
699 CONFIG_EXT_USB_HOST_BASE 698 CONFIG_EXT_USB_HOST_BASE
700 CONFIG_EXYNOS4 699 CONFIG_EXYNOS4
701 CONFIG_EXYNOS4210 700 CONFIG_EXYNOS4210
702 CONFIG_EXYNOS5 701 CONFIG_EXYNOS5
703 CONFIG_EXYNOS5250 702 CONFIG_EXYNOS5250
704 CONFIG_EXYNOS5420 703 CONFIG_EXYNOS5420
705 CONFIG_EXYNOS5800 704 CONFIG_EXYNOS5800
706 CONFIG_EXYNOS5_DT 705 CONFIG_EXYNOS5_DT
707 CONFIG_EXYNOS7420 706 CONFIG_EXYNOS7420
708 CONFIG_EXYNOS_ACE_SHA 707 CONFIG_EXYNOS_ACE_SHA
709 CONFIG_EXYNOS_DP 708 CONFIG_EXYNOS_DP
710 CONFIG_EXYNOS_FB 709 CONFIG_EXYNOS_FB
711 CONFIG_EXYNOS_MIPI_DSIM 710 CONFIG_EXYNOS_MIPI_DSIM
712 CONFIG_EXYNOS_RELOCATE_CODE_BASE 711 CONFIG_EXYNOS_RELOCATE_CODE_BASE
713 CONFIG_EXYNOS_SPL 712 CONFIG_EXYNOS_SPL
714 CONFIG_EXYNOS_TMU 713 CONFIG_EXYNOS_TMU
715 CONFIG_FACTORYSET 714 CONFIG_FACTORYSET
716 CONFIG_FASTBOOT_FLASH_FILLBUF_SIZE 715 CONFIG_FASTBOOT_FLASH_FILLBUF_SIZE
717 CONFIG_FASTBOOT_FLASH_NAND_DEV 716 CONFIG_FASTBOOT_FLASH_NAND_DEV
718 CONFIG_FASTBOOT_FLASH_NAND_TRIMFFS 717 CONFIG_FASTBOOT_FLASH_NAND_TRIMFFS
719 CONFIG_FAST_FLASH_BIT 718 CONFIG_FAST_FLASH_BIT
720 CONFIG_FB_ADDR 719 CONFIG_FB_ADDR
721 CONFIG_FB_BACKLIGHT 720 CONFIG_FB_BACKLIGHT
722 CONFIG_FB_DEFERRED_IO 721 CONFIG_FB_DEFERRED_IO
723 CONFIG_FDT1_ENV_ADDR 722 CONFIG_FDT1_ENV_ADDR
724 CONFIG_FDT2_ENV_ADDR 723 CONFIG_FDT2_ENV_ADDR
725 CONFIG_FDTADDR 724 CONFIG_FDTADDR
726 CONFIG_FDTFILE 725 CONFIG_FDTFILE
727 CONFIG_FDT_FIXUP_PCI_IRQ 726 CONFIG_FDT_FIXUP_PCI_IRQ
728 CONFIG_FEATURE_CLEAN_UP 727 CONFIG_FEATURE_CLEAN_UP
729 CONFIG_FEATURE_COMMAND_EDITING 728 CONFIG_FEATURE_COMMAND_EDITING
730 CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN 729 CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
731 CONFIG_FEATURE_SH_EXTRA_QUIET 730 CONFIG_FEATURE_SH_EXTRA_QUIET
732 CONFIG_FEATURE_SH_FANCY_PROMPT 731 CONFIG_FEATURE_SH_FANCY_PROMPT
733 CONFIG_FEATURE_SH_STANDALONE_SHELL 732 CONFIG_FEATURE_SH_STANDALONE_SHELL
734 CONFIG_FEC_ENET_DEV 733 CONFIG_FEC_ENET_DEV
735 CONFIG_FEC_FIXED_SPEED 734 CONFIG_FEC_FIXED_SPEED
736 CONFIG_FEC_MXC_25M_REF_CLK 735 CONFIG_FEC_MXC_25M_REF_CLK
737 CONFIG_FEC_MXC_PHYADDR 736 CONFIG_FEC_MXC_PHYADDR
738 CONFIG_FEC_MXC_SWAP_PACKET 737 CONFIG_FEC_MXC_SWAP_PACKET
739 CONFIG_FEC_XCV_TYPE 738 CONFIG_FEC_XCV_TYPE
740 CONFIG_FEROCEON 739 CONFIG_FEROCEON
741 CONFIG_FEROCEON_88FR131 740 CONFIG_FEROCEON_88FR131
742 CONFIG_FFUART 741 CONFIG_FFUART
743 CONFIG_FILE 742 CONFIG_FILE
744 CONFIG_FIRMWARE_OFFSET 743 CONFIG_FIRMWARE_OFFSET
745 CONFIG_FIRMWARE_SIZE 744 CONFIG_FIRMWARE_SIZE
746 CONFIG_FIXED_PHY 745 CONFIG_FIXED_PHY
747 CONFIG_FIXED_PHY_ADDR 746 CONFIG_FIXED_PHY_ADDR
748 CONFIG_FIXED_SDHCI_ALIGNED_BUFFER 747 CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
749 CONFIG_FLASHBOOTCOMMAND 748 CONFIG_FLASHBOOTCOMMAND
750 CONFIG_FLASHCARD 749 CONFIG_FLASHCARD
751 CONFIG_FLASH_16BIT 750 CONFIG_FLASH_16BIT
752 CONFIG_FLASH_BASE 751 CONFIG_FLASH_BASE
753 CONFIG_FLASH_BR_PRELIM 752 CONFIG_FLASH_BR_PRELIM
754 CONFIG_FLASH_CFI_DRIVER 753 CONFIG_FLASH_CFI_DRIVER
755 CONFIG_FLASH_CFI_LEGACY 754 CONFIG_FLASH_CFI_LEGACY
756 CONFIG_FLASH_CFI_MTD 755 CONFIG_FLASH_CFI_MTD
757 CONFIG_FLASH_END 756 CONFIG_FLASH_END
758 CONFIG_FLASH_NOT_MEM_MAPPED 757 CONFIG_FLASH_NOT_MEM_MAPPED
759 CONFIG_FLASH_OR_PRELIM 758 CONFIG_FLASH_OR_PRELIM
760 CONFIG_FLASH_PNOR 759 CONFIG_FLASH_PNOR
761 CONFIG_FLASH_SECTOR_SIZE 760 CONFIG_FLASH_SECTOR_SIZE
762 CONFIG_FLASH_SHOW_PROGRESS 761 CONFIG_FLASH_SHOW_PROGRESS
763 CONFIG_FLASH_SPANSION_S29WS_N 762 CONFIG_FLASH_SPANSION_S29WS_N
764 CONFIG_FLASH_VERIFY 763 CONFIG_FLASH_VERIFY
765 CONFIG_FMAN_ENET 764 CONFIG_FMAN_ENET
766 CONFIG_FM_PLAT_CLK_DIV 765 CONFIG_FM_PLAT_CLK_DIV
767 CONFIG_FORCE_DDR_DATA_BUS_WIDTH_32 766 CONFIG_FORCE_DDR_DATA_BUS_WIDTH_32
768 CONFIG_FORMIKE 767 CONFIG_FORMIKE
769 CONFIG_FPGA_COUNT 768 CONFIG_FPGA_COUNT
770 CONFIG_FPGA_DELAY 769 CONFIG_FPGA_DELAY
771 CONFIG_FPGA_SPARTAN3 770 CONFIG_FPGA_SPARTAN3
772 CONFIG_FPGA_STRATIX_V 771 CONFIG_FPGA_STRATIX_V
773 CONFIG_FPGA_ZYNQPL 772 CONFIG_FPGA_ZYNQPL
774 CONFIG_FSLDMAFEC 773 CONFIG_FSLDMAFEC
775 CONFIG_FSL_CADMUS 774 CONFIG_FSL_CADMUS
776 CONFIG_FSL_CORENET 775 CONFIG_FSL_CORENET
777 CONFIG_FSL_CPLD 776 CONFIG_FSL_CPLD
778 CONFIG_FSL_DCU_SII9022A 777 CONFIG_FSL_DCU_SII9022A
779 CONFIG_FSL_DDR_BIST 778 CONFIG_FSL_DDR_BIST
780 CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE 779 CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
781 CONFIG_FSL_DDR_INTERACTIVE 780 CONFIG_FSL_DDR_INTERACTIVE
782 CONFIG_FSL_DDR_SYNC_REFRESH 781 CONFIG_FSL_DDR_SYNC_REFRESH
783 CONFIG_FSL_DEEP_SLEEP 782 CONFIG_FSL_DEEP_SLEEP
784 CONFIG_FSL_DEVICE_DISABLE 783 CONFIG_FSL_DEVICE_DISABLE
785 CONFIG_FSL_DIU_CH7301 784 CONFIG_FSL_DIU_CH7301
786 CONFIG_FSL_DIU_FB 785 CONFIG_FSL_DIU_FB
787 CONFIG_FSL_DMA 786 CONFIG_FSL_DMA
788 CONFIG_FSL_DSPI1 787 CONFIG_FSL_DSPI1
789 CONFIG_FSL_ESDHC 788 CONFIG_FSL_ESDHC
790 CONFIG_FSL_ESDHC_ADAPTER_IDENT 789 CONFIG_FSL_ESDHC_ADAPTER_IDENT
791 CONFIG_FSL_ESDHC_PIN_MUX 790 CONFIG_FSL_ESDHC_PIN_MUX
792 CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK 791 CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK
793 CONFIG_FSL_FIXED_MMC_LOCATION 792 CONFIG_FSL_FIXED_MMC_LOCATION
794 CONFIG_FSL_FM_10GEC_REGULAR_NOTATION 793 CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
795 CONFIG_FSL_I2C_CUSTOM_DFSR 794 CONFIG_FSL_I2C_CUSTOM_DFSR
796 CONFIG_FSL_I2C_CUSTOM_FDR 795 CONFIG_FSL_I2C_CUSTOM_FDR
797 CONFIG_FSL_IIM 796 CONFIG_FSL_IIM
798 CONFIG_FSL_ISBC_KEY_EXT 797 CONFIG_FSL_ISBC_KEY_EXT
799 CONFIG_FSL_LAYERSCAPE 798 CONFIG_FSL_LAYERSCAPE
800 CONFIG_FSL_LBC 799 CONFIG_FSL_LBC
801 CONFIG_FSL_LINFLEXUART 800 CONFIG_FSL_LINFLEXUART
802 CONFIG_FSL_MC9SDZ60 801 CONFIG_FSL_MC9SDZ60
803 CONFIG_FSL_MEMAC 802 CONFIG_FSL_MEMAC
804 CONFIG_FSL_NGPIXIS 803 CONFIG_FSL_NGPIXIS
805 CONFIG_FSL_PCIE_DISABLE_ASPM 804 CONFIG_FSL_PCIE_DISABLE_ASPM
806 CONFIG_FSL_PCIE_RESET 805 CONFIG_FSL_PCIE_RESET
807 CONFIG_FSL_PCI_INIT 806 CONFIG_FSL_PCI_INIT
808 CONFIG_FSL_PIXIS 807 CONFIG_FSL_PIXIS
809 CONFIG_FSL_PMIC_BITLEN 808 CONFIG_FSL_PMIC_BITLEN
810 CONFIG_FSL_PMIC_BUS 809 CONFIG_FSL_PMIC_BUS
811 CONFIG_FSL_PMIC_CLK 810 CONFIG_FSL_PMIC_CLK
812 CONFIG_FSL_PMIC_CS 811 CONFIG_FSL_PMIC_CS
813 CONFIG_FSL_PMIC_MODE 812 CONFIG_FSL_PMIC_MODE
814 CONFIG_FSL_QIXIS 813 CONFIG_FSL_QIXIS
815 CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT 814 CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT
816 CONFIG_FSL_QIXIS_V2 815 CONFIG_FSL_QIXIS_V2
817 CONFIG_FSL_SATA 816 CONFIG_FSL_SATA
818 CONFIG_FSL_SATA_V2 817 CONFIG_FSL_SATA_V2
819 CONFIG_FSL_SDHC_V2_3 818 CONFIG_FSL_SDHC_V2_3
820 CONFIG_FSL_SDRAM_TYPE 819 CONFIG_FSL_SDRAM_TYPE
821 CONFIG_FSL_SERDES 820 CONFIG_FSL_SERDES
822 CONFIG_FSL_SERDES1 821 CONFIG_FSL_SERDES1
823 CONFIG_FSL_SERDES2 822 CONFIG_FSL_SERDES2
824 CONFIG_FSL_SGMII_RISER 823 CONFIG_FSL_SGMII_RISER
825 CONFIG_FSL_SPI_INTERFACE 824 CONFIG_FSL_SPI_INTERFACE
826 CONFIG_FSL_TBCLK_EXTRA_DIV 825 CONFIG_FSL_TBCLK_EXTRA_DIV
827 CONFIG_FSL_TRUST_ARCH_v1 826 CONFIG_FSL_TRUST_ARCH_v1
828 CONFIG_FSL_TZASC_400 827 CONFIG_FSL_TZASC_400
829 CONFIG_FSL_TZPC_BP147 828 CONFIG_FSL_TZPC_BP147
830 CONFIG_FSL_USDHC 829 CONFIG_FSL_USDHC
831 CONFIG_FSL_VIA 830 CONFIG_FSL_VIA
832 CONFIG_FSMC_NAND_BASE 831 CONFIG_FSMC_NAND_BASE
833 CONFIG_FSMTDBLK 832 CONFIG_FSMTDBLK
834 CONFIG_FSNOTIFY 833 CONFIG_FSNOTIFY
835 CONFIG_FS_EXT4 834 CONFIG_FS_EXT4
836 CONFIG_FS_POSIX_ACL 835 CONFIG_FS_POSIX_ACL
837 CONFIG_FTAHBC020S 836 CONFIG_FTAHBC020S
838 CONFIG_FTAHBC020S_BASE 837 CONFIG_FTAHBC020S_BASE
839 CONFIG_FTAPBBRG020S_01_BASE 838 CONFIG_FTAPBBRG020S_01_BASE
840 CONFIG_FTCFC010_BASE 839 CONFIG_FTCFC010_BASE
841 CONFIG_FTDMAC020_BASE 840 CONFIG_FTDMAC020_BASE
842 CONFIG_FTGMAC100_BASE 841 CONFIG_FTGMAC100_BASE
843 CONFIG_FTGMAC100_EGIGA 842 CONFIG_FTGMAC100_EGIGA
844 CONFIG_FTGPIO010_BASE 843 CONFIG_FTGPIO010_BASE
845 CONFIG_FTI2C010_BASE1 844 CONFIG_FTI2C010_BASE1
846 CONFIG_FTI2C010_BASE2 845 CONFIG_FTI2C010_BASE2
847 CONFIG_FTI2C010_BASE3 846 CONFIG_FTI2C010_BASE3
848 CONFIG_FTI2C010_CLOCK 847 CONFIG_FTI2C010_CLOCK
849 CONFIG_FTI2C010_TIMEOUT 848 CONFIG_FTI2C010_TIMEOUT
850 CONFIG_FTIDE020S_BASE 849 CONFIG_FTIDE020S_BASE
851 CONFIG_FTIIC010_BASE 850 CONFIG_FTIIC010_BASE
852 CONFIG_FTINTC010_BASE 851 CONFIG_FTINTC010_BASE
853 CONFIG_FTLCDC100_BASE 852 CONFIG_FTLCDC100_BASE
854 CONFIG_FTMAC100_BASE 853 CONFIG_FTMAC100_BASE
855 CONFIG_FTMAC110_BASE 854 CONFIG_FTMAC110_BASE
856 CONFIG_FTPCI100_BASE 855 CONFIG_FTPCI100_BASE
857 CONFIG_FTPCI100_IO_SIZE 856 CONFIG_FTPCI100_IO_SIZE
858 CONFIG_FTPCI100_MEM_BASE 857 CONFIG_FTPCI100_MEM_BASE
859 CONFIG_FTPCI100_MEM_SIZE 858 CONFIG_FTPCI100_MEM_SIZE
860 CONFIG_FTPMU010 859 CONFIG_FTPMU010
861 CONFIG_FTPMU010_BASE 860 CONFIG_FTPMU010_BASE
862 CONFIG_FTPMU010_POWER 861 CONFIG_FTPMU010_POWER
863 CONFIG_FTPWM010_BASE 862 CONFIG_FTPWM010_BASE
864 CONFIG_FTRACE_MCOUNT_RECORD 863 CONFIG_FTRACE_MCOUNT_RECORD
865 CONFIG_FTRTC010_BASE 864 CONFIG_FTRTC010_BASE
866 CONFIG_FTRTC010_EXTCLK 865 CONFIG_FTRTC010_EXTCLK
867 CONFIG_FTRTC010_PCLK 866 CONFIG_FTRTC010_PCLK
868 CONFIG_FTSDC010 867 CONFIG_FTSDC010
869 CONFIG_FTSDC010_BASE 868 CONFIG_FTSDC010_BASE
870 CONFIG_FTSDC010_BASE_LIST 869 CONFIG_FTSDC010_BASE_LIST
871 CONFIG_FTSDC010_NUMBER 870 CONFIG_FTSDC010_NUMBER
872 CONFIG_FTSDC010_SDIO 871 CONFIG_FTSDC010_SDIO
873 CONFIG_FTSDMC021 872 CONFIG_FTSDMC021
874 CONFIG_FTSDMC021_BASE 873 CONFIG_FTSDMC021_BASE
875 CONFIG_FTSMC020 874 CONFIG_FTSMC020
876 CONFIG_FTSMC020_BASE 875 CONFIG_FTSMC020_BASE
877 CONFIG_FTSSP010_01_BASE 876 CONFIG_FTSSP010_01_BASE
878 CONFIG_FTSSP010_02_BASE 877 CONFIG_FTSSP010_02_BASE
879 CONFIG_FTTMR010_BASE 878 CONFIG_FTTMR010_BASE
880 CONFIG_FTTMR010_EXT_CLK 879 CONFIG_FTTMR010_EXT_CLK
881 CONFIG_FTUART010_01_BASE 880 CONFIG_FTUART010_01_BASE
882 CONFIG_FTUART010_02_BASE 881 CONFIG_FTUART010_02_BASE
883 CONFIG_FTUART010_03_BASE 882 CONFIG_FTUART010_03_BASE
884 CONFIG_FTWDT010_BASE 883 CONFIG_FTWDT010_BASE
885 CONFIG_FTWDT010_WATCHDOG 884 CONFIG_FTWDT010_WATCHDOG
886 CONFIG_FZOTG266HD0A_BASE 885 CONFIG_FZOTG266HD0A_BASE
887 CONFIG_GATEWAYIP 886 CONFIG_GATEWAYIP
888 CONFIG_GCOV_KERNEL 887 CONFIG_GCOV_KERNEL
889 CONFIG_GCOV_PROFILE_ALL 888 CONFIG_GCOV_PROFILE_ALL
890 CONFIG_GICV2 889 CONFIG_GICV2
891 CONFIG_GICV3 890 CONFIG_GICV3
892 CONFIG_GLOBAL_DATA_NOT_REG10 891 CONFIG_GLOBAL_DATA_NOT_REG10
893 CONFIG_GLOBAL_TIMER 892 CONFIG_GLOBAL_TIMER
894 CONFIG_GMII 893 CONFIG_GMII
895 CONFIG_GOOD_SESH4 894 CONFIG_GOOD_SESH4
896 CONFIG_GPCNTRL 895 CONFIG_GPCNTRL
897 CONFIG_GPIO 896 CONFIG_GPIO
898 CONFIG_GPIO_ENABLE_SPI_FLASH 897 CONFIG_GPIO_ENABLE_SPI_FLASH
899 CONFIG_GPIO_LED_INVERTED_TABLE 898 CONFIG_GPIO_LED_INVERTED_TABLE
900 CONFIG_GPIO_LED_STUBS 899 CONFIG_GPIO_LED_STUBS
901 CONFIG_GREEN_LED 900 CONFIG_GREEN_LED
902 CONFIG_GURNARD_FPGA 901 CONFIG_GURNARD_FPGA
903 CONFIG_GURNARD_SPLASH 902 CONFIG_GURNARD_SPLASH
904 CONFIG_GZIP 903 CONFIG_GZIP
905 CONFIG_GZIP_COMPRESSED 904 CONFIG_GZIP_COMPRESSED
906 CONFIG_GZIP_COMPRESS_DEF_SZ 905 CONFIG_GZIP_COMPRESS_DEF_SZ
907 CONFIG_G_DNL_THOR_PRODUCT_NUM 906 CONFIG_G_DNL_THOR_PRODUCT_NUM
908 CONFIG_G_DNL_THOR_VENDOR_NUM 907 CONFIG_G_DNL_THOR_VENDOR_NUM
909 CONFIG_G_DNL_UMS_PRODUCT_NUM 908 CONFIG_G_DNL_UMS_PRODUCT_NUM
910 CONFIG_G_DNL_UMS_VENDOR_NUM 909 CONFIG_G_DNL_UMS_VENDOR_NUM
911 CONFIG_H264_FREQ 910 CONFIG_H264_FREQ
912 CONFIG_H8300 911 CONFIG_H8300
913 CONFIG_HARD_SPI 912 CONFIG_HARD_SPI
914 CONFIG_HAS_DATAFLASH 913 CONFIG_HAS_DATAFLASH
915 CONFIG_HAS_ETH0 914 CONFIG_HAS_ETH0
916 CONFIG_HAS_ETH1 915 CONFIG_HAS_ETH1
917 CONFIG_HAS_ETH2 916 CONFIG_HAS_ETH2
918 CONFIG_HAS_ETH3 917 CONFIG_HAS_ETH3
919 CONFIG_HAS_ETH4 918 CONFIG_HAS_ETH4
920 CONFIG_HAS_ETH5 919 CONFIG_HAS_ETH5
921 CONFIG_HAS_ETH7 920 CONFIG_HAS_ETH7
922 CONFIG_HAS_FEC 921 CONFIG_HAS_FEC
923 CONFIG_HAS_FSL_DR_USB 922 CONFIG_HAS_FSL_DR_USB
924 CONFIG_HAS_FSL_MPH_USB 923 CONFIG_HAS_FSL_MPH_USB
925 CONFIG_HAS_FSL_XHCI_USB 924 CONFIG_HAS_FSL_XHCI_USB
926 CONFIG_HAS_POST 925 CONFIG_HAS_POST
927 CONFIG_HCLK_FREQ 926 CONFIG_HCLK_FREQ
928 CONFIG_HDBOOT 927 CONFIG_HDBOOT
929 CONFIG_HDMI_ENCODER_I2C_ADDR 928 CONFIG_HDMI_ENCODER_I2C_ADDR
930 CONFIG_HETROGENOUS_CLUSTERS 929 CONFIG_HETROGENOUS_CLUSTERS
931 CONFIG_HIDE_LOGO_VERSION 930 CONFIG_HIDE_LOGO_VERSION
932 CONFIG_HIGH_BATS 931 CONFIG_HIGH_BATS
933 CONFIG_HIKEY_GPIO 932 CONFIG_HIKEY_GPIO
934 CONFIG_HIS_DRIVER 933 CONFIG_HIS_DRIVER
935 CONFIG_HITACHI_SX14 934 CONFIG_HITACHI_SX14
936 CONFIG_HOSTNAME 935 CONFIG_HOSTNAME
937 CONFIG_HOST_MAX_DEVICES 936 CONFIG_HOST_MAX_DEVICES
938 CONFIG_HOTPLUG 937 CONFIG_HOTPLUG
939 CONFIG_HPS_ALTERAGRP_DBGATCLK 938 CONFIG_HPS_ALTERAGRP_DBGATCLK
940 CONFIG_HPS_ALTERAGRP_MAINCLK 939 CONFIG_HPS_ALTERAGRP_MAINCLK
941 CONFIG_HPS_ALTERAGRP_MPUCLK 940 CONFIG_HPS_ALTERAGRP_MPUCLK
942 CONFIG_HPS_CLK_CAN0_HZ 941 CONFIG_HPS_CLK_CAN0_HZ
943 CONFIG_HPS_CLK_CAN1_HZ 942 CONFIG_HPS_CLK_CAN1_HZ
944 CONFIG_HPS_CLK_EMAC0_HZ 943 CONFIG_HPS_CLK_EMAC0_HZ
945 CONFIG_HPS_CLK_EMAC1_HZ 944 CONFIG_HPS_CLK_EMAC1_HZ
946 CONFIG_HPS_CLK_F2S_PER_REF_HZ 945 CONFIG_HPS_CLK_F2S_PER_REF_HZ
947 CONFIG_HPS_CLK_F2S_SDR_REF_HZ 946 CONFIG_HPS_CLK_F2S_SDR_REF_HZ
948 CONFIG_HPS_CLK_GPIODB_HZ 947 CONFIG_HPS_CLK_GPIODB_HZ
949 CONFIG_HPS_CLK_L4_MP_HZ 948 CONFIG_HPS_CLK_L4_MP_HZ
950 CONFIG_HPS_CLK_L4_SP_HZ 949 CONFIG_HPS_CLK_L4_SP_HZ
951 CONFIG_HPS_CLK_MAINVCO_HZ 950 CONFIG_HPS_CLK_MAINVCO_HZ
952 CONFIG_HPS_CLK_NAND_HZ 951 CONFIG_HPS_CLK_NAND_HZ
953 CONFIG_HPS_CLK_OSC1_HZ 952 CONFIG_HPS_CLK_OSC1_HZ
954 CONFIG_HPS_CLK_OSC2_HZ 953 CONFIG_HPS_CLK_OSC2_HZ
955 CONFIG_HPS_CLK_PERVCO_HZ 954 CONFIG_HPS_CLK_PERVCO_HZ
956 CONFIG_HPS_CLK_QSPI_HZ 955 CONFIG_HPS_CLK_QSPI_HZ
957 CONFIG_HPS_CLK_SDMMC_HZ 956 CONFIG_HPS_CLK_SDMMC_HZ
958 CONFIG_HPS_CLK_SDRVCO_HZ 957 CONFIG_HPS_CLK_SDRVCO_HZ
959 CONFIG_HPS_CLK_SPIM_HZ 958 CONFIG_HPS_CLK_SPIM_HZ
960 CONFIG_HPS_CLK_USBCLK_HZ 959 CONFIG_HPS_CLK_USBCLK_HZ
961 CONFIG_HPS_DBCTRL_STAYOSC1 960 CONFIG_HPS_DBCTRL_STAYOSC1
962 CONFIG_HPS_IOCSR_SCANCHAIN0_LENGTH 961 CONFIG_HPS_IOCSR_SCANCHAIN0_LENGTH
963 CONFIG_HPS_IOCSR_SCANCHAIN1_LENGTH 962 CONFIG_HPS_IOCSR_SCANCHAIN1_LENGTH
964 CONFIG_HPS_IOCSR_SCANCHAIN2_LENGTH 963 CONFIG_HPS_IOCSR_SCANCHAIN2_LENGTH
965 CONFIG_HPS_IOCSR_SCANCHAIN3_LENGTH 964 CONFIG_HPS_IOCSR_SCANCHAIN3_LENGTH
966 CONFIG_HPS_MAINPLLGRP_CFGS2FUSER0CLK_CNT 965 CONFIG_HPS_MAINPLLGRP_CFGS2FUSER0CLK_CNT
967 CONFIG_HPS_MAINPLLGRP_DBGATCLK_CNT 966 CONFIG_HPS_MAINPLLGRP_DBGATCLK_CNT
968 CONFIG_HPS_MAINPLLGRP_DBGDIV_DBGATCLK 967 CONFIG_HPS_MAINPLLGRP_DBGDIV_DBGATCLK
969 CONFIG_HPS_MAINPLLGRP_DBGDIV_DBGCLK 968 CONFIG_HPS_MAINPLLGRP_DBGDIV_DBGCLK
970 CONFIG_HPS_MAINPLLGRP_L4SRC_L4MP 969 CONFIG_HPS_MAINPLLGRP_L4SRC_L4MP
971 CONFIG_HPS_MAINPLLGRP_L4SRC_L4SP 970 CONFIG_HPS_MAINPLLGRP_L4SRC_L4SP
972 CONFIG_HPS_MAINPLLGRP_MAINCLK_CNT 971 CONFIG_HPS_MAINPLLGRP_MAINCLK_CNT
973 CONFIG_HPS_MAINPLLGRP_MAINDIV_L3MPCLK 972 CONFIG_HPS_MAINPLLGRP_MAINDIV_L3MPCLK
974 CONFIG_HPS_MAINPLLGRP_MAINDIV_L3SPCLK 973 CONFIG_HPS_MAINPLLGRP_MAINDIV_L3SPCLK
975 CONFIG_HPS_MAINPLLGRP_MAINDIV_L4MPCLK 974 CONFIG_HPS_MAINPLLGRP_MAINDIV_L4MPCLK
976 CONFIG_HPS_MAINPLLGRP_MAINDIV_L4SPCLK 975 CONFIG_HPS_MAINPLLGRP_MAINDIV_L4SPCLK
977 CONFIG_HPS_MAINPLLGRP_MAINNANDSDMMCCLK_CNT 976 CONFIG_HPS_MAINPLLGRP_MAINNANDSDMMCCLK_CNT
978 CONFIG_HPS_MAINPLLGRP_MAINQSPICLK_CNT 977 CONFIG_HPS_MAINPLLGRP_MAINQSPICLK_CNT
979 CONFIG_HPS_MAINPLLGRP_MPUCLK_CNT 978 CONFIG_HPS_MAINPLLGRP_MPUCLK_CNT
980 CONFIG_HPS_MAINPLLGRP_TRACEDIV_TRACECLK 979 CONFIG_HPS_MAINPLLGRP_TRACEDIV_TRACECLK
981 CONFIG_HPS_MAINPLLGRP_VCO_DENOM 980 CONFIG_HPS_MAINPLLGRP_VCO_DENOM
982 CONFIG_HPS_MAINPLLGRP_VCO_NUMER 981 CONFIG_HPS_MAINPLLGRP_VCO_NUMER
983 CONFIG_HPS_PERPLLGRP_DIV_CAN0CLK 982 CONFIG_HPS_PERPLLGRP_DIV_CAN0CLK
984 CONFIG_HPS_PERPLLGRP_DIV_CAN1CLK 983 CONFIG_HPS_PERPLLGRP_DIV_CAN1CLK
985 CONFIG_HPS_PERPLLGRP_DIV_SPIMCLK 984 CONFIG_HPS_PERPLLGRP_DIV_SPIMCLK
986 CONFIG_HPS_PERPLLGRP_DIV_USBCLK 985 CONFIG_HPS_PERPLLGRP_DIV_USBCLK
987 CONFIG_HPS_PERPLLGRP_EMAC0CLK_CNT 986 CONFIG_HPS_PERPLLGRP_EMAC0CLK_CNT
988 CONFIG_HPS_PERPLLGRP_EMAC1CLK_CNT 987 CONFIG_HPS_PERPLLGRP_EMAC1CLK_CNT
989 CONFIG_HPS_PERPLLGRP_GPIODIV_GPIODBCLK 988 CONFIG_HPS_PERPLLGRP_GPIODIV_GPIODBCLK
990 CONFIG_HPS_PERPLLGRP_PERBASECLK_CNT 989 CONFIG_HPS_PERPLLGRP_PERBASECLK_CNT
991 CONFIG_HPS_PERPLLGRP_PERNANDSDMMCCLK_CNT 990 CONFIG_HPS_PERPLLGRP_PERNANDSDMMCCLK_CNT
992 CONFIG_HPS_PERPLLGRP_PERQSPICLK_CNT 991 CONFIG_HPS_PERPLLGRP_PERQSPICLK_CNT
993 CONFIG_HPS_PERPLLGRP_S2FUSER1CLK_CNT 992 CONFIG_HPS_PERPLLGRP_S2FUSER1CLK_CNT
994 CONFIG_HPS_PERPLLGRP_SRC_NAND 993 CONFIG_HPS_PERPLLGRP_SRC_NAND
995 CONFIG_HPS_PERPLLGRP_SRC_QSPI 994 CONFIG_HPS_PERPLLGRP_SRC_QSPI
996 CONFIG_HPS_PERPLLGRP_SRC_SDMMC 995 CONFIG_HPS_PERPLLGRP_SRC_SDMMC
997 CONFIG_HPS_PERPLLGRP_VCO_DENOM 996 CONFIG_HPS_PERPLLGRP_VCO_DENOM
998 CONFIG_HPS_PERPLLGRP_VCO_NUMER 997 CONFIG_HPS_PERPLLGRP_VCO_NUMER
999 CONFIG_HPS_PERPLLGRP_VCO_PSRC 998 CONFIG_HPS_PERPLLGRP_VCO_PSRC
1000 CONFIG_HPS_SDRPLLGRP_DDR2XDQSCLK_CNT 999 CONFIG_HPS_SDRPLLGRP_DDR2XDQSCLK_CNT
1001 CONFIG_HPS_SDRPLLGRP_DDR2XDQSCLK_PHASE 1000 CONFIG_HPS_SDRPLLGRP_DDR2XDQSCLK_PHASE
1002 CONFIG_HPS_SDRPLLGRP_DDRDQCLK_CNT 1001 CONFIG_HPS_SDRPLLGRP_DDRDQCLK_CNT
1003 CONFIG_HPS_SDRPLLGRP_DDRDQCLK_PHASE 1002 CONFIG_HPS_SDRPLLGRP_DDRDQCLK_PHASE
1004 CONFIG_HPS_SDRPLLGRP_DDRDQSCLK_CNT 1003 CONFIG_HPS_SDRPLLGRP_DDRDQSCLK_CNT
1005 CONFIG_HPS_SDRPLLGRP_DDRDQSCLK_PHASE 1004 CONFIG_HPS_SDRPLLGRP_DDRDQSCLK_PHASE
1006 CONFIG_HPS_SDRPLLGRP_S2FUSER2CLK_CNT 1005 CONFIG_HPS_SDRPLLGRP_S2FUSER2CLK_CNT
1007 CONFIG_HPS_SDRPLLGRP_S2FUSER2CLK_PHASE 1006 CONFIG_HPS_SDRPLLGRP_S2FUSER2CLK_PHASE
1008 CONFIG_HPS_SDRPLLGRP_VCO_DENOM 1007 CONFIG_HPS_SDRPLLGRP_VCO_DENOM
1009 CONFIG_HPS_SDRPLLGRP_VCO_NUMER 1008 CONFIG_HPS_SDRPLLGRP_VCO_NUMER
1010 CONFIG_HPS_SDRPLLGRP_VCO_SSRC 1009 CONFIG_HPS_SDRPLLGRP_VCO_SSRC
1011 CONFIG_HPS_SDR_CTRLCFG_CPORTRDWR_CPORTRDWR 1010 CONFIG_HPS_SDR_CTRLCFG_CPORTRDWR_CPORTRDWR
1012 CONFIG_HPS_SDR_CTRLCFG_CPORTRMAP_CPORTRMAP 1011 CONFIG_HPS_SDR_CTRLCFG_CPORTRMAP_CPORTRMAP
1013 CONFIG_HPS_SDR_CTRLCFG_CPORTWIDTH_CPORTWIDTH 1012 CONFIG_HPS_SDR_CTRLCFG_CPORTWIDTH_CPORTWIDTH
1014 CONFIG_HPS_SDR_CTRLCFG_CPORTWMAP_CPORTWMAP 1013 CONFIG_HPS_SDR_CTRLCFG_CPORTWMAP_CPORTWMAP
1015 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ADDRORDER 1014 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ADDRORDER
1016 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_DQSTRKEN 1015 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_DQSTRKEN
1017 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ECCCORREN 1016 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ECCCORREN
1018 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ECCEN 1017 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ECCEN
1019 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_MEMBL 1018 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_MEMBL
1020 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_MEMTYPE 1019 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_MEMTYPE
1021 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_NODMPINS 1020 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_NODMPINS
1022 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_REORDEREN 1021 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_REORDEREN
1023 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_STARVELIMIT 1022 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_STARVELIMIT
1024 CONFIG_HPS_SDR_CTRLCFG_CTRLWIDTH_CTRLWIDTH 1023 CONFIG_HPS_SDR_CTRLCFG_CTRLWIDTH_CTRLWIDTH
1025 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_BANKBITS 1024 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_BANKBITS
1026 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_COLBITS 1025 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_COLBITS
1027 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_CSBITS 1026 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_CSBITS
1028 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_ROWBITS 1027 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_ROWBITS
1029 CONFIG_HPS_SDR_CTRLCFG_DRAMDEVWIDTH_DEVWIDTH 1028 CONFIG_HPS_SDR_CTRLCFG_DRAMDEVWIDTH_DEVWIDTH
1030 CONFIG_HPS_SDR_CTRLCFG_DRAMIFWIDTH_IFWIDTH 1029 CONFIG_HPS_SDR_CTRLCFG_DRAMIFWIDTH_IFWIDTH
1031 CONFIG_HPS_SDR_CTRLCFG_DRAMINTR_INTREN 1030 CONFIG_HPS_SDR_CTRLCFG_DRAMINTR_INTREN
1032 CONFIG_HPS_SDR_CTRLCFG_DRAMODT_READ 1031 CONFIG_HPS_SDR_CTRLCFG_DRAMODT_READ
1033 CONFIG_HPS_SDR_CTRLCFG_DRAMODT_WRITE 1032 CONFIG_HPS_SDR_CTRLCFG_DRAMODT_WRITE
1034 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_AL 1033 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_AL
1035 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TCL 1034 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TCL
1036 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TCWL 1035 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TCWL
1037 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TFAW 1036 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TFAW
1038 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TRFC 1037 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TRFC
1039 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TRRD 1038 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TRRD
1040 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TRCD 1039 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TRCD
1041 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TREFI 1040 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TREFI
1042 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TRP 1041 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TRP
1043 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TWR 1042 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TWR
1044 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TWTR 1043 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TWTR
1045 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TCCD 1044 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TCCD
1046 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TMRD 1045 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TMRD
1047 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRAS 1046 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRAS
1048 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRC 1047 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRC
1049 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRTP 1048 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRTP
1050 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING4_PWRDOWNEXIT 1049 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING4_PWRDOWNEXIT
1051 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING4_SELFRFSHEXIT 1050 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING4_SELFRFSHEXIT
1052 CONFIG_HPS_SDR_CTRLCFG_FIFOCFG_INCSYNC 1051 CONFIG_HPS_SDR_CTRLCFG_FIFOCFG_INCSYNC
1053 CONFIG_HPS_SDR_CTRLCFG_FIFOCFG_SYNCMODE 1052 CONFIG_HPS_SDR_CTRLCFG_FIFOCFG_SYNCMODE
1054 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST 1053 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST
1055 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_COMMAND_PORT_USED 1054 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_COMMAND_PORT_USED
1056 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_READ_PORT_USED 1055 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_READ_PORT_USED
1057 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_WRITE_PORT_USED 1056 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_WRITE_PORT_USED
1058 CONFIG_HPS_SDR_CTRLCFG_LOWPWREQ_SELFRFSHMASK 1057 CONFIG_HPS_SDR_CTRLCFG_LOWPWREQ_SELFRFSHMASK
1059 CONFIG_HPS_SDR_CTRLCFG_LOWPWRTIMING_AUTOPDCYCLES 1058 CONFIG_HPS_SDR_CTRLCFG_LOWPWRTIMING_AUTOPDCYCLES
1060 CONFIG_HPS_SDR_CTRLCFG_LOWPWRTIMING_CLKDISABLECYCLES 1059 CONFIG_HPS_SDR_CTRLCFG_LOWPWRTIMING_CLKDISABLECYCLES
1061 CONFIG_HPS_SDR_CTRLCFG_MPPACING_0_THRESHOLD1_31_0 1060 CONFIG_HPS_SDR_CTRLCFG_MPPACING_0_THRESHOLD1_31_0
1062 CONFIG_HPS_SDR_CTRLCFG_MPPACING_1_THRESHOLD1_59_32 1061 CONFIG_HPS_SDR_CTRLCFG_MPPACING_1_THRESHOLD1_59_32
1063 CONFIG_HPS_SDR_CTRLCFG_MPPACING_1_THRESHOLD2_3_0 1062 CONFIG_HPS_SDR_CTRLCFG_MPPACING_1_THRESHOLD2_3_0
1064 CONFIG_HPS_SDR_CTRLCFG_MPPACING_2_THRESHOLD2_35_4 1063 CONFIG_HPS_SDR_CTRLCFG_MPPACING_2_THRESHOLD2_35_4
1065 CONFIG_HPS_SDR_CTRLCFG_MPPACING_3_THRESHOLD2_59_36 1064 CONFIG_HPS_SDR_CTRLCFG_MPPACING_3_THRESHOLD2_59_36
1066 CONFIG_HPS_SDR_CTRLCFG_MPPRIORITY_USERPRIORITY 1065 CONFIG_HPS_SDR_CTRLCFG_MPPRIORITY_USERPRIORITY
1067 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_0_THRESHOLDRSTCYCLES_31_0 1066 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_0_THRESHOLDRSTCYCLES_31_0
1068 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_1_THRESHOLDRSTCYCLES_63_32 1067 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_1_THRESHOLDRSTCYCLES_63_32
1069 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_2_THRESHOLDRSTCYCLES_79_64 1068 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_2_THRESHOLDRSTCYCLES_79_64
1070 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_0_STATICWEIGHT_31_0 1069 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_0_STATICWEIGHT_31_0
1071 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_1_STATICWEIGHT_49_32 1070 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_1_STATICWEIGHT_49_32
1072 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_1_SUMOFWEIGHT_13_0 1071 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_1_SUMOFWEIGHT_13_0
1073 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_2_SUMOFWEIGHT_45_14 1072 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_2_SUMOFWEIGHT_45_14
1074 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_3_SUMOFWEIGHT_63_46 1073 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_3_SUMOFWEIGHT_63_46
1075 CONFIG_HPS_SDR_CTRLCFG_PHYCTRL_PHYCTRL_0 1074 CONFIG_HPS_SDR_CTRLCFG_PHYCTRL_PHYCTRL_0
1076 CONFIG_HPS_SDR_CTRLCFG_PORTCFG_AUTOPCHEN 1075 CONFIG_HPS_SDR_CTRLCFG_PORTCFG_AUTOPCHEN
1077 CONFIG_HPS_SDR_CTRLCFG_RFIFOCMAP_RFIFOCMAP 1076 CONFIG_HPS_SDR_CTRLCFG_RFIFOCMAP_RFIFOCMAP
1078 CONFIG_HPS_SDR_CTRLCFG_STATICCFG_MEMBL 1077 CONFIG_HPS_SDR_CTRLCFG_STATICCFG_MEMBL
1079 CONFIG_HPS_SDR_CTRLCFG_STATICCFG_USEECCASDATA 1078 CONFIG_HPS_SDR_CTRLCFG_STATICCFG_USEECCASDATA
1080 CONFIG_HPS_SDR_CTRLCFG_WFIFOCMAP_WFIFOCMAP 1079 CONFIG_HPS_SDR_CTRLCFG_WFIFOCMAP_WFIFOCMAP
1081 CONFIG_HP_CLK_FREQ 1080 CONFIG_HP_CLK_FREQ
1082 CONFIG_HRCON 1081 CONFIG_HRCON
1083 CONFIG_HRCON_DH 1082 CONFIG_HRCON_DH
1084 CONFIG_HRCON_FANS 1083 CONFIG_HRCON_FANS
1085 CONFIG_HSMMC2_8BIT 1084 CONFIG_HSMMC2_8BIT
1086 CONFIG_HUSH_INIT_VAR 1085 CONFIG_HUSH_INIT_VAR
1087 CONFIG_HVBOOT 1086 CONFIG_HVBOOT
1088 CONFIG_HWCONFIG 1087 CONFIG_HWCONFIG
1089 CONFIG_HW_ENV_SETTINGS 1088 CONFIG_HW_ENV_SETTINGS
1090 CONFIG_I2C 1089 CONFIG_I2C
1091 CONFIG_I2C_CHIPADDRESS 1090 CONFIG_I2C_CHIPADDRESS
1092 CONFIG_I2C_CMD_TREE 1091 CONFIG_I2C_CMD_TREE
1093 CONFIG_I2C_ENV_EEPROM_BUS 1092 CONFIG_I2C_ENV_EEPROM_BUS
1094 CONFIG_I2C_FPGA 1093 CONFIG_I2C_FPGA
1095 CONFIG_I2C_GSC 1094 CONFIG_I2C_GSC
1096 CONFIG_I2C_MAC_OFFSET 1095 CONFIG_I2C_MAC_OFFSET
1097 CONFIG_I2C_MBB_TIMEOUT 1096 CONFIG_I2C_MBB_TIMEOUT
1098 CONFIG_I2C_MULTI_BUS 1097 CONFIG_I2C_MULTI_BUS
1099 CONFIG_I2C_MV 1098 CONFIG_I2C_MV
1100 CONFIG_I2C_MVTWSI 1099 CONFIG_I2C_MVTWSI
1101 CONFIG_I2C_MVTWSI_BASE 1100 CONFIG_I2C_MVTWSI_BASE
1102 CONFIG_I2C_MVTWSI_BASE0 1101 CONFIG_I2C_MVTWSI_BASE0
1103 CONFIG_I2C_MVTWSI_BASE1 1102 CONFIG_I2C_MVTWSI_BASE1
1104 CONFIG_I2C_MVTWSI_BASE2 1103 CONFIG_I2C_MVTWSI_BASE2
1105 CONFIG_I2C_MVTWSI_BASE3 1104 CONFIG_I2C_MVTWSI_BASE3
1106 CONFIG_I2C_MVTWSI_BASE4 1105 CONFIG_I2C_MVTWSI_BASE4
1107 CONFIG_I2C_MVTWSI_BASE5 1106 CONFIG_I2C_MVTWSI_BASE5
1108 CONFIG_I2C_MXC 1107 CONFIG_I2C_MXC
1109 CONFIG_I2C_REPEATED_START 1108 CONFIG_I2C_REPEATED_START
1110 CONFIG_I2C_RTC_ADDR 1109 CONFIG_I2C_RTC_ADDR
1111 CONFIG_I2C_TIMEOUT 1110 CONFIG_I2C_TIMEOUT
1112 CONFIG_ICACHE 1111 CONFIG_ICACHE
1113 CONFIG_ICS307_REFCLK_HZ 1112 CONFIG_ICS307_REFCLK_HZ
1114 CONFIG_IDE_INIT_POSTRESET 1113 CONFIG_IDE_INIT_POSTRESET
1115 CONFIG_IDE_LED 1114 CONFIG_IDE_LED
1116 CONFIG_IDE_PCMCIA 1115 CONFIG_IDE_PCMCIA
1117 CONFIG_IDE_PREINIT 1116 CONFIG_IDE_PREINIT
1118 CONFIG_IDE_REG_CS 1117 CONFIG_IDE_REG_CS
1119 CONFIG_IDE_RESET 1118 CONFIG_IDE_RESET
1120 CONFIG_IDE_SWAP_IO 1119 CONFIG_IDE_SWAP_IO
1121 CONFIG_IDS8313 1120 CONFIG_IDS8313
1122 CONFIG_IDT8T49N222A 1121 CONFIG_IDT8T49N222A
1123 CONFIG_ID_EEPROM 1122 CONFIG_ID_EEPROM
1124 CONFIG_IMA 1123 CONFIG_IMA
1125 CONFIG_IMAGE_FORMAT_LEGACY 1124 CONFIG_IMAGE_FORMAT_LEGACY
1126 CONFIG_IMX 1125 CONFIG_IMX
1127 CONFIG_IMX6_PWM_PER_CLK 1126 CONFIG_IMX6_PWM_PER_CLK
1128 CONFIG_IMX_HDMI 1127 CONFIG_IMX_HDMI
1129 CONFIG_IMX_NAND 1128 CONFIG_IMX_NAND
1130 CONFIG_IMX_OTP 1129 CONFIG_IMX_OTP
1131 CONFIG_IMX_VIDEO_SKIP 1130 CONFIG_IMX_VIDEO_SKIP
1132 CONFIG_IMX_WATCHDOG 1131 CONFIG_IMX_WATCHDOG
1133 CONFIG_INETSPACE_V2 1132 CONFIG_INETSPACE_V2
1134 CONFIG_INITRD_TAG 1133 CONFIG_INITRD_TAG
1135 CONFIG_INIT_CRITICAL 1134 CONFIG_INIT_CRITICAL
1136 CONFIG_INIT_IGNORE_ERROR 1135 CONFIG_INIT_IGNORE_ERROR
1137 CONFIG_INI_ALLOW_MULTILINE 1136 CONFIG_INI_ALLOW_MULTILINE
1138 CONFIG_INI_CASE_INSENSITIVE 1137 CONFIG_INI_CASE_INSENSITIVE
1139 CONFIG_INI_MAX_LINE 1138 CONFIG_INI_MAX_LINE
1140 CONFIG_INI_MAX_NAME 1139 CONFIG_INI_MAX_NAME
1141 CONFIG_INI_MAX_SECTION 1140 CONFIG_INI_MAX_SECTION
1142 CONFIG_INTEGRITY 1141 CONFIG_INTEGRITY
1143 CONFIG_INTERRUPTS 1142 CONFIG_INTERRUPTS
1144 CONFIG_IO 1143 CONFIG_IO
1145 CONFIG_IO64 1144 CONFIG_IO64
1146 CONFIG_IOCON 1145 CONFIG_IOCON
1147 CONFIG_IODELAY_RECALIBRATION 1146 CONFIG_IODELAY_RECALIBRATION
1148 CONFIG_IOMUX_LPSR 1147 CONFIG_IOMUX_LPSR
1149 CONFIG_IOMUX_SHARE_CONF_REG 1148 CONFIG_IOMUX_SHARE_CONF_REG
1150 CONFIG_IOS 1149 CONFIG_IOS
1151 CONFIG_IO_TRACE 1150 CONFIG_IO_TRACE
1152 CONFIG_IPADDR 1151 CONFIG_IPADDR
1153 CONFIG_IPADDR1 1152 CONFIG_IPADDR1
1154 CONFIG_IPADDR2 1153 CONFIG_IPADDR2
1155 CONFIG_IPAM390_GPIO_BOOTMODE 1154 CONFIG_IPAM390_GPIO_BOOTMODE
1156 CONFIG_IPAM390_GPIO_LED_GREEN 1155 CONFIG_IPAM390_GPIO_LED_GREEN
1157 CONFIG_IPAM390_GPIO_LED_RED 1156 CONFIG_IPAM390_GPIO_LED_RED
1158 CONFIG_IPROC 1157 CONFIG_IPROC
1159 CONFIG_IPUV3_CLK 1158 CONFIG_IPUV3_CLK
1160 CONFIG_IP_DEFRAG 1159 CONFIG_IP_DEFRAG
1161 CONFIG_IRAM_BASE 1160 CONFIG_IRAM_BASE
1162 CONFIG_IRAM_END 1161 CONFIG_IRAM_END
1163 CONFIG_IRAM_SIZE 1162 CONFIG_IRAM_SIZE
1164 CONFIG_IRAM_STACK 1163 CONFIG_IRAM_STACK
1165 CONFIG_IRAM_TOP 1164 CONFIG_IRAM_TOP
1166 CONFIG_IRDA_BASE 1165 CONFIG_IRDA_BASE
1167 CONFIG_IS_BUILTIN 1166 CONFIG_IS_BUILTIN
1168 CONFIG_IS_ENABLED 1167 CONFIG_IS_ENABLED
1169 CONFIG_IS_MODULE 1168 CONFIG_IS_MODULE
1170 CONFIG_JFFS2_CMDLINE 1169 CONFIG_JFFS2_CMDLINE
1171 CONFIG_JFFS2_DEV 1170 CONFIG_JFFS2_DEV
1172 CONFIG_JFFS2_LZO 1171 CONFIG_JFFS2_LZO
1173 CONFIG_JFFS2_NAND 1172 CONFIG_JFFS2_NAND
1174 CONFIG_JFFS2_PART_OFFSET 1173 CONFIG_JFFS2_PART_OFFSET
1175 CONFIG_JFFS2_PART_SIZE 1174 CONFIG_JFFS2_PART_SIZE
1176 CONFIG_JFFS2_SUMMARY 1175 CONFIG_JFFS2_SUMMARY
1177 CONFIG_JRSTARTR_JR0 1176 CONFIG_JRSTARTR_JR0
1178 CONFIG_JTAG_CONSOLE 1177 CONFIG_JTAG_CONSOLE
1179 CONFIG_KASAN 1178 CONFIG_KASAN
1180 CONFIG_KCLK_DIS 1179 CONFIG_KCLK_DIS
1181 CONFIG_KEEP_SERVERADDR 1180 CONFIG_KEEP_SERVERADDR
1182 CONFIG_KERNEL_OFFSET 1181 CONFIG_KERNEL_OFFSET
1183 CONFIG_KEYBOARD 1182 CONFIG_KEYBOARD
1184 CONFIG_KEYSTONE_NAND_MAX_RBL_PAGE 1183 CONFIG_KEYSTONE_NAND_MAX_RBL_PAGE
1185 CONFIG_KEYSTONE_NAND_MAX_RBL_SIZE 1184 CONFIG_KEYSTONE_NAND_MAX_RBL_SIZE
1186 CONFIG_KEYSTONE_RBL_NAND 1185 CONFIG_KEYSTONE_RBL_NAND
1187 CONFIG_KEY_REVOCATION 1186 CONFIG_KEY_REVOCATION
1188 CONFIG_KGDB_BAUDRATE 1187 CONFIG_KGDB_BAUDRATE
1189 CONFIG_KGDB_SER_INDEX 1188 CONFIG_KGDB_SER_INDEX
1190 CONFIG_KIRKWOOD_EGIGA_INIT 1189 CONFIG_KIRKWOOD_EGIGA_INIT
1191 CONFIG_KIRKWOOD_GPIO 1190 CONFIG_KIRKWOOD_GPIO
1192 CONFIG_KIRKWOOD_PCIE_INIT 1191 CONFIG_KIRKWOOD_PCIE_INIT
1193 CONFIG_KIRKWOOD_RGMII_PAD_1V8 1192 CONFIG_KIRKWOOD_RGMII_PAD_1V8
1194 CONFIG_KIRKWOOD_SPI 1193 CONFIG_KIRKWOOD_SPI
1195 CONFIG_KIRQ_EN 1194 CONFIG_KIRQ_EN
1196 CONFIG_KM8321 1195 CONFIG_KM8321
1197 CONFIG_KMCOGE4 1196 CONFIG_KMCOGE4
1198 CONFIG_KMCOGE5NE 1197 CONFIG_KMCOGE5NE
1199 CONFIG_KMETER1 1198 CONFIG_KMETER1
1200 CONFIG_KMLION1 1199 CONFIG_KMLION1
1201 CONFIG_KMOPTI2 1200 CONFIG_KMOPTI2
1202 CONFIG_KMP204X 1201 CONFIG_KMP204X
1203 CONFIG_KMSUPX5 1202 CONFIG_KMSUPX5
1204 CONFIG_KMTEGR1 1203 CONFIG_KMTEGR1
1205 CONFIG_KMTEPR2 1204 CONFIG_KMTEPR2
1206 CONFIG_KMVECT1 1205 CONFIG_KMVECT1
1207 CONFIG_KM_BOARD_EXTRA_ENV 1206 CONFIG_KM_BOARD_EXTRA_ENV
1208 CONFIG_KM_BOARD_NAME 1207 CONFIG_KM_BOARD_NAME
1209 CONFIG_KM_COGE5UN 1208 CONFIG_KM_COGE5UN
1210 CONFIG_KM_COMMON_ETH_INIT 1209 CONFIG_KM_COMMON_ETH_INIT
1211 CONFIG_KM_CONSOLE_TTY 1210 CONFIG_KM_CONSOLE_TTY
1212 CONFIG_KM_CRAMFS_ADDR 1211 CONFIG_KM_CRAMFS_ADDR
1213 CONFIG_KM_DEF_ARCH 1212 CONFIG_KM_DEF_ARCH
1214 CONFIG_KM_DEF_BOOT_ARGS_CPU 1213 CONFIG_KM_DEF_BOOT_ARGS_CPU
1215 CONFIG_KM_DEF_ENV 1214 CONFIG_KM_DEF_ENV
1216 CONFIG_KM_DEF_ENV_BOOTARGS 1215 CONFIG_KM_DEF_ENV_BOOTARGS
1217 CONFIG_KM_DEF_ENV_BOOTPARAMS 1216 CONFIG_KM_DEF_ENV_BOOTPARAMS
1218 CONFIG_KM_DEF_ENV_BOOTTARGETS 1217 CONFIG_KM_DEF_ENV_BOOTTARGETS
1219 CONFIG_KM_DEF_ENV_CONSTANTS 1218 CONFIG_KM_DEF_ENV_CONSTANTS
1220 CONFIG_KM_DEF_ENV_CPU 1219 CONFIG_KM_DEF_ENV_CPU
1221 CONFIG_KM_DEF_ENV_FLASH_BOOT 1220 CONFIG_KM_DEF_ENV_FLASH_BOOT
1222 CONFIG_KM_DEF_NETDEV 1221 CONFIG_KM_DEF_NETDEV
1223 CONFIG_KM_DEV_ENV_FLASH_BOOT_UBI 1222 CONFIG_KM_DEV_ENV_FLASH_BOOT_UBI
1224 CONFIG_KM_DISABLE_PCI 1223 CONFIG_KM_DISABLE_PCI
1225 CONFIG_KM_DISABLE_PCIE 1224 CONFIG_KM_DISABLE_PCIE
1226 CONFIG_KM_ECC_MODE 1225 CONFIG_KM_ECC_MODE
1227 CONFIG_KM_ENV_IS_IN_SPI_NOR 1226 CONFIG_KM_ENV_IS_IN_SPI_NOR
1228 CONFIG_KM_FDT_ADDR 1227 CONFIG_KM_FDT_ADDR
1229 CONFIG_KM_FPGA_CONFIG 1228 CONFIG_KM_FPGA_CONFIG
1230 CONFIG_KM_IVM_BUS 1229 CONFIG_KM_IVM_BUS
1231 CONFIG_KM_KERNEL_ADDR 1230 CONFIG_KM_KERNEL_ADDR
1232 CONFIG_KM_KIRKWOOD 1231 CONFIG_KM_KIRKWOOD
1233 CONFIG_KM_KIRKWOOD_128M16 1232 CONFIG_KM_KIRKWOOD_128M16
1234 CONFIG_KM_KIRKWOOD_PCI 1233 CONFIG_KM_KIRKWOOD_PCI
1235 CONFIG_KM_MGCOGE3UN 1234 CONFIG_KM_MGCOGE3UN
1236 CONFIG_KM_MVEXTSW_ADDR 1235 CONFIG_KM_MVEXTSW_ADDR
1237 CONFIG_KM_NEW_ENV 1236 CONFIG_KM_NEW_ENV
1238 CONFIG_KM_NUSA 1237 CONFIG_KM_NUSA
1239 CONFIG_KM_PHRAM 1238 CONFIG_KM_PHRAM
1240 CONFIG_KM_PIGGY4_88E6061 1239 CONFIG_KM_PIGGY4_88E6061
1241 CONFIG_KM_PIGGY4_88E6352 1240 CONFIG_KM_PIGGY4_88E6352
1242 CONFIG_KM_PNVRAM 1241 CONFIG_KM_PNVRAM
1243 CONFIG_KM_PORTL2 1242 CONFIG_KM_PORTL2
1244 CONFIG_KM_RESERVED_PRAM 1243 CONFIG_KM_RESERVED_PRAM
1245 CONFIG_KM_ROOTFSSIZE 1244 CONFIG_KM_ROOTFSSIZE
1246 CONFIG_KM_SUGP1 1245 CONFIG_KM_SUGP1
1247 CONFIG_KM_SUV31 1246 CONFIG_KM_SUV31
1248 CONFIG_KM_UBI_LINUX_MTD 1247 CONFIG_KM_UBI_LINUX_MTD
1249 CONFIG_KM_UBI_PARTITION_NAME_APP 1248 CONFIG_KM_UBI_PARTITION_NAME_APP
1250 CONFIG_KM_UBI_PARTITION_NAME_BOOT 1249 CONFIG_KM_UBI_PARTITION_NAME_BOOT
1251 CONFIG_KM_UBI_PART_BOOT_OPTS 1250 CONFIG_KM_UBI_PART_BOOT_OPTS
1252 CONFIG_KM_UIMAGE_NAME 1251 CONFIG_KM_UIMAGE_NAME
1253 CONFIG_KM_UPDATE_UBOOT 1252 CONFIG_KM_UPDATE_UBOOT
1254 CONFIG_KONA 1253 CONFIG_KONA
1255 CONFIG_KONA_GPIO 1254 CONFIG_KONA_GPIO
1256 CONFIG_KONA_RESET_S 1255 CONFIG_KONA_RESET_S
1257 CONFIG_KPROBES 1256 CONFIG_KPROBES
1258 CONFIG_KS8851_MLL 1257 CONFIG_KS8851_MLL
1259 CONFIG_KS8851_MLL_BASEADDR 1258 CONFIG_KS8851_MLL_BASEADDR
1260 CONFIG_KSNAV_NETCP_PDMA_CTRL_BASE 1259 CONFIG_KSNAV_NETCP_PDMA_CTRL_BASE
1261 CONFIG_KSNAV_NETCP_PDMA_RX_BASE 1260 CONFIG_KSNAV_NETCP_PDMA_RX_BASE
1262 CONFIG_KSNAV_NETCP_PDMA_RX_CH_NUM 1261 CONFIG_KSNAV_NETCP_PDMA_RX_CH_NUM
1263 CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_BASE 1262 CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_BASE
1264 CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_NUM 1263 CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_NUM
1265 CONFIG_KSNAV_NETCP_PDMA_RX_FREE_QUEUE 1264 CONFIG_KSNAV_NETCP_PDMA_RX_FREE_QUEUE
1266 CONFIG_KSNAV_NETCP_PDMA_RX_RCV_QUEUE 1265 CONFIG_KSNAV_NETCP_PDMA_RX_RCV_QUEUE
1267 CONFIG_KSNAV_NETCP_PDMA_SCHED_BASE 1266 CONFIG_KSNAV_NETCP_PDMA_SCHED_BASE
1268 CONFIG_KSNAV_NETCP_PDMA_TX_BASE 1267 CONFIG_KSNAV_NETCP_PDMA_TX_BASE
1269 CONFIG_KSNAV_NETCP_PDMA_TX_CH_NUM 1268 CONFIG_KSNAV_NETCP_PDMA_TX_CH_NUM
1270 CONFIG_KSNAV_NETCP_PDMA_TX_SND_QUEUE 1269 CONFIG_KSNAV_NETCP_PDMA_TX_SND_QUEUE
1271 CONFIG_KSNAV_PKTDMA_NETCP 1270 CONFIG_KSNAV_PKTDMA_NETCP
1272 CONFIG_KSNAV_QM_BASE_ADDRESS 1271 CONFIG_KSNAV_QM_BASE_ADDRESS
1273 CONFIG_KSNAV_QM_CONF_BASE 1272 CONFIG_KSNAV_QM_CONF_BASE
1274 CONFIG_KSNAV_QM_DESC_SETUP_BASE 1273 CONFIG_KSNAV_QM_DESC_SETUP_BASE
1275 CONFIG_KSNAV_QM_INTD_CONF_BASE 1274 CONFIG_KSNAV_QM_INTD_CONF_BASE
1276 CONFIG_KSNAV_QM_LINK_RAM_BASE 1275 CONFIG_KSNAV_QM_LINK_RAM_BASE
1277 CONFIG_KSNAV_QM_MANAGER_QUEUES_BASE 1276 CONFIG_KSNAV_QM_MANAGER_QUEUES_BASE
1278 CONFIG_KSNAV_QM_MANAGER_Q_PROXY_BASE 1277 CONFIG_KSNAV_QM_MANAGER_Q_PROXY_BASE
1279 CONFIG_KSNAV_QM_PDSP1_CMD_BASE 1278 CONFIG_KSNAV_QM_PDSP1_CMD_BASE
1280 CONFIG_KSNAV_QM_PDSP1_CTRL_BASE 1279 CONFIG_KSNAV_QM_PDSP1_CTRL_BASE
1281 CONFIG_KSNAV_QM_PDSP1_IRAM_BASE 1280 CONFIG_KSNAV_QM_PDSP1_IRAM_BASE
1282 CONFIG_KSNAV_QM_QPOOL_NUM 1281 CONFIG_KSNAV_QM_QPOOL_NUM
1283 CONFIG_KSNAV_QM_QUEUE_STATUS_BASE 1282 CONFIG_KSNAV_QM_QUEUE_STATUS_BASE
1284 CONFIG_KSNAV_QM_REGION_NUM 1283 CONFIG_KSNAV_QM_REGION_NUM
1285 CONFIG_KSNAV_QM_STATUS_RAM_BASE 1284 CONFIG_KSNAV_QM_STATUS_RAM_BASE
1286 CONFIG_KSNET_CPSW_NUM_PORTS 1285 CONFIG_KSNET_CPSW_NUM_PORTS
1287 CONFIG_KSNET_MAC_ID_BASE 1286 CONFIG_KSNET_MAC_ID_BASE
1288 CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE 1287 CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE
1289 CONFIG_KSNET_NETCP_BASE 1288 CONFIG_KSNET_NETCP_BASE
1290 CONFIG_KSNET_NETCP_V1_0 1289 CONFIG_KSNET_NETCP_V1_0
1291 CONFIG_KSNET_NETCP_V1_5 1290 CONFIG_KSNET_NETCP_V1_5
1292 CONFIG_KSNET_SERDES_LANES_PER_SGMII 1291 CONFIG_KSNET_SERDES_LANES_PER_SGMII
1293 CONFIG_KSNET_SERDES_SGMII2_BASE 1292 CONFIG_KSNET_SERDES_SGMII2_BASE
1294 CONFIG_KSNET_SERDES_SGMII_BASE 1293 CONFIG_KSNET_SERDES_SGMII_BASE
1295 CONFIG_KVM_GUEST 1294 CONFIG_KVM_GUEST
1296 CONFIG_KW88F6192 1295 CONFIG_KW88F6192
1297 CONFIG_KW88F6281 1296 CONFIG_KW88F6281
1298 CONFIG_KW88F6702 1297 CONFIG_KW88F6702
1299 CONFIG_KZM_A9_GT 1298 CONFIG_KZM_A9_GT
1300 CONFIG_L1_INIT_RAM 1299 CONFIG_L1_INIT_RAM
1301 CONFIG_L2_CACHE 1300 CONFIG_L2_CACHE
1302 CONFIG_LAN91C96_USE_32_BIT 1301 CONFIG_LAN91C96_USE_32_BIT
1303 CONFIG_LAST_STAGE_INIT 1302 CONFIG_LAST_STAGE_INIT
1304 CONFIG_LAYERSCAPE_NS_ACCESS 1303 CONFIG_LAYERSCAPE_NS_ACCESS
1305 CONFIG_LBA48 1304 CONFIG_LBA48
1306 CONFIG_LBDAF 1305 CONFIG_LBDAF
1307 CONFIG_LCD_ALIGNMENT 1306 CONFIG_LCD_ALIGNMENT
1308 CONFIG_LCD_BMP_RLE8 1307 CONFIG_LCD_BMP_RLE8
1309 CONFIG_LCD_DT_SIMPLEFB 1308 CONFIG_LCD_DT_SIMPLEFB
1310 CONFIG_LCD_INFO 1309 CONFIG_LCD_INFO
1311 CONFIG_LCD_INFO_BELOW_LOGO 1310 CONFIG_LCD_INFO_BELOW_LOGO
1312 CONFIG_LCD_IN_PSRAM 1311 CONFIG_LCD_IN_PSRAM
1313 CONFIG_LCD_LOGO 1312 CONFIG_LCD_LOGO
1314 CONFIG_LCD_MENU 1313 CONFIG_LCD_MENU
1315 CONFIG_LCD_MENU_BOARD 1314 CONFIG_LCD_MENU_BOARD
1316 CONFIG_LCD_ROTATION 1315 CONFIG_LCD_ROTATION
1317 CONFIG_LD9040 1316 CONFIG_LD9040
1318 CONFIG_LEGACY 1317 CONFIG_LEGACY
1319 CONFIG_LEGACY_BOOTCMD_ENV 1318 CONFIG_LEGACY_BOOTCMD_ENV
1320 CONFIG_LG4573 1319 CONFIG_LG4573
1321 CONFIG_LG4573_BUS 1320 CONFIG_LG4573_BUS
1322 CONFIG_LG4573_CS 1321 CONFIG_LG4573_CS
1323 CONFIG_LIBATA 1322 CONFIG_LIBATA
1324 CONFIG_LIB_HW_RAND 1323 CONFIG_LIB_HW_RAND
1325 CONFIG_LIB_UUID 1324 CONFIG_LIB_UUID
1326 CONFIG_LINUX 1325 CONFIG_LINUX
1327 CONFIG_LINUX_RESET_VEC 1326 CONFIG_LINUX_RESET_VEC
1328 CONFIG_LITTLETON_LCD 1327 CONFIG_LITTLETON_LCD
1329 CONFIG_LMB 1328 CONFIG_LMB
1330 CONFIG_LMS283GF05 1329 CONFIG_LMS283GF05
1331 CONFIG_LOADADDR 1330 CONFIG_LOADADDR
1332 CONFIG_LOADCMD 1331 CONFIG_LOADCMD
1333 CONFIG_LOADS_ECHO 1332 CONFIG_LOADS_ECHO
1334 CONFIG_LOGBUFFER 1333 CONFIG_LOGBUFFER
1335 CONFIG_LOWPOWER_ADDR 1334 CONFIG_LOWPOWER_ADDR
1336 CONFIG_LOWPOWER_FLAG 1335 CONFIG_LOWPOWER_FLAG
1337 CONFIG_LOW_MCFCLK 1336 CONFIG_LOW_MCFCLK
1338 CONFIG_LPC32XX_ETH 1337 CONFIG_LPC32XX_ETH
1339 CONFIG_LPC32XX_ETH_BUFS_BASE 1338 CONFIG_LPC32XX_ETH_BUFS_BASE
1340 CONFIG_LPC32XX_HSUART 1339 CONFIG_LPC32XX_HSUART
1341 CONFIG_LPC32XX_NAND_MLC_BUSY_DELAY 1340 CONFIG_LPC32XX_NAND_MLC_BUSY_DELAY
1342 CONFIG_LPC32XX_NAND_MLC_NAND_TA 1341 CONFIG_LPC32XX_NAND_MLC_NAND_TA
1343 CONFIG_LPC32XX_NAND_MLC_RD_HIGH 1342 CONFIG_LPC32XX_NAND_MLC_RD_HIGH
1344 CONFIG_LPC32XX_NAND_MLC_RD_LOW 1343 CONFIG_LPC32XX_NAND_MLC_RD_LOW
1345 CONFIG_LPC32XX_NAND_MLC_TCEA_DELAY 1344 CONFIG_LPC32XX_NAND_MLC_TCEA_DELAY
1346 CONFIG_LPC32XX_NAND_MLC_WR_HIGH 1345 CONFIG_LPC32XX_NAND_MLC_WR_HIGH
1347 CONFIG_LPC32XX_NAND_MLC_WR_LOW 1346 CONFIG_LPC32XX_NAND_MLC_WR_LOW
1348 CONFIG_LPC32XX_NAND_SLC_RDR_CLKS 1347 CONFIG_LPC32XX_NAND_SLC_RDR_CLKS
1349 CONFIG_LPC32XX_NAND_SLC_RHOLD 1348 CONFIG_LPC32XX_NAND_SLC_RHOLD
1350 CONFIG_LPC32XX_NAND_SLC_RSETUP 1349 CONFIG_LPC32XX_NAND_SLC_RSETUP
1351 CONFIG_LPC32XX_NAND_SLC_RWIDTH 1350 CONFIG_LPC32XX_NAND_SLC_RWIDTH
1352 CONFIG_LPC32XX_NAND_SLC_WDR_CLKS 1351 CONFIG_LPC32XX_NAND_SLC_WDR_CLKS
1353 CONFIG_LPC32XX_NAND_SLC_WHOLD 1352 CONFIG_LPC32XX_NAND_SLC_WHOLD
1354 CONFIG_LPC32XX_NAND_SLC_WSETUP 1353 CONFIG_LPC32XX_NAND_SLC_WSETUP
1355 CONFIG_LPC32XX_NAND_SLC_WWIDTH 1354 CONFIG_LPC32XX_NAND_SLC_WWIDTH
1356 CONFIG_LPC32XX_SDRAM_ 1355 CONFIG_LPC32XX_SDRAM_
1357 CONFIG_LPC32XX_SPL 1356 CONFIG_LPC32XX_SPL
1358 CONFIG_LPC32XX_SSP 1357 CONFIG_LPC32XX_SSP
1359 CONFIG_LPC32XX_SSP_TIMEOUT 1358 CONFIG_LPC32XX_SSP_TIMEOUT
1360 CONFIG_LPC_BASE 1359 CONFIG_LPC_BASE
1361 CONFIG_LPC_IO_BASE 1360 CONFIG_LPC_IO_BASE
1362 CONFIG_LPUART 1361 CONFIG_LPUART
1363 CONFIG_LPUART_32B_REG 1362 CONFIG_LPUART_32B_REG
1364 CONFIG_LQ038J7DH53 1363 CONFIG_LQ038J7DH53
1365 CONFIG_LS102XA_STREAM_ID 1364 CONFIG_LS102XA_STREAM_ID
1366 CONFIG_LSCHLV2 1365 CONFIG_LSCHLV2
1367 CONFIG_LSXHL 1366 CONFIG_LSXHL
1368 CONFIG_LYNXKDI 1367 CONFIG_LYNXKDI
1369 CONFIG_M41T94_SPI_CS 1368 CONFIG_M41T94_SPI_CS
1370 CONFIG_M520x 1369 CONFIG_M520x
1371 CONFIG_M52277EVB 1370 CONFIG_M52277EVB
1372 CONFIG_M5253DEMO 1371 CONFIG_M5253DEMO
1373 CONFIG_M5253EVBE 1372 CONFIG_M5253EVBE
1374 CONFIG_M5275EVB 1373 CONFIG_M5275EVB
1375 CONFIG_M5301x 1374 CONFIG_M5301x
1376 CONFIG_M54418TWR 1375 CONFIG_M54418TWR
1377 CONFIG_M54451EVB 1376 CONFIG_M54451EVB
1378 CONFIG_M54455EVB 1377 CONFIG_M54455EVB
1379 CONFIG_MACB0_PHY 1378 CONFIG_MACB0_PHY
1380 CONFIG_MACB1_PHY 1379 CONFIG_MACB1_PHY
1381 CONFIG_MACB2_PHY 1380 CONFIG_MACB2_PHY
1382 CONFIG_MACB3_PHY 1381 CONFIG_MACB3_PHY
1383 CONFIG_MACB_SEARCH_PHY 1382 CONFIG_MACB_SEARCH_PHY
1384 CONFIG_MACH_ASPENITE 1383 CONFIG_MACH_ASPENITE
1385 CONFIG_MACH_DAVINCI_CALIMAIN 1384 CONFIG_MACH_DAVINCI_CALIMAIN
1386 CONFIG_MACH_DAVINCI_DA850_EVM 1385 CONFIG_MACH_DAVINCI_DA850_EVM
1387 CONFIG_MACH_DOCKSTAR 1386 CONFIG_MACH_DOCKSTAR
1388 CONFIG_MACH_EDMINIV2 1387 CONFIG_MACH_EDMINIV2
1389 CONFIG_MACH_GOFLEXHOME 1388 CONFIG_MACH_GOFLEXHOME
1390 CONFIG_MACH_GONI 1389 CONFIG_MACH_GONI
1391 CONFIG_MACH_GURUPLUG 1390 CONFIG_MACH_GURUPLUG
1392 CONFIG_MACH_KM_KIRKWOOD 1391 CONFIG_MACH_KM_KIRKWOOD
1393 CONFIG_MACH_OMAPL138_LCDK 1392 CONFIG_MACH_OMAPL138_LCDK
1394 CONFIG_MACH_OPENRD_BASE 1393 CONFIG_MACH_OPENRD_BASE
1395 CONFIG_MACH_SHEEVAPLUG 1394 CONFIG_MACH_SHEEVAPLUG
1396 CONFIG_MACH_SPECIFIC 1395 CONFIG_MACH_SPECIFIC
1397 CONFIG_MACH_TYPE 1396 CONFIG_MACH_TYPE
1398 CONFIG_MACH_TYPE_COMPAT_REV 1397 CONFIG_MACH_TYPE_COMPAT_REV
1399 CONFIG_MACRESET_TIMEOUT 1398 CONFIG_MACRESET_TIMEOUT
1400 CONFIG_MAC_ADDR_IN_EEPROM 1399 CONFIG_MAC_ADDR_IN_EEPROM
1401 CONFIG_MAC_ADDR_IN_SPIFLASH 1400 CONFIG_MAC_ADDR_IN_SPIFLASH
1402 CONFIG_MALLOC_F_ADDR 1401 CONFIG_MALLOC_F_ADDR
1403 CONFIG_MALTA 1402 CONFIG_MALTA
1404 CONFIG_MARCO_MEMSET 1403 CONFIG_MARCO_MEMSET
1405 CONFIG_MARUBUN_PCCARD 1404 CONFIG_MARUBUN_PCCARD
1406 CONFIG_MARVELL 1405 CONFIG_MARVELL
1407 CONFIG_MARVELL_GPIO 1406 CONFIG_MARVELL_GPIO
1408 CONFIG_MARVELL_MFP 1407 CONFIG_MARVELL_MFP
1409 CONFIG_MASK_AER_AO 1408 CONFIG_MASK_AER_AO
1410 CONFIG_MAX_DSP_CPUS 1409 CONFIG_MAX_DSP_CPUS
1411 CONFIG_MAX_FPGA_DEVICES 1410 CONFIG_MAX_FPGA_DEVICES
1412 CONFIG_MAX_MEM_MAPPED 1411 CONFIG_MAX_MEM_MAPPED
1413 CONFIG_MAX_PKT 1412 CONFIG_MAX_PKT
1414 CONFIG_MAX_RAM_BANK_SIZE 1413 CONFIG_MAX_RAM_BANK_SIZE
1415 CONFIG_MCAST_TFTP 1414 CONFIG_MCAST_TFTP
1416 CONFIG_MCF5249 1415 CONFIG_MCF5249
1417 CONFIG_MCF5253 1416 CONFIG_MCF5253
1418 CONFIG_MCFFEC 1417 CONFIG_MCFFEC
1419 CONFIG_MCFPIT 1418 CONFIG_MCFPIT
1420 CONFIG_MCFRTC 1419 CONFIG_MCFRTC
1421 CONFIG_MCFTMR 1420 CONFIG_MCFTMR
1422 CONFIG_MCFUART 1421 CONFIG_MCFUART
1423 CONFIG_MCLK_DIS 1422 CONFIG_MCLK_DIS
1424 CONFIG_MDIO_TIMEOUT 1423 CONFIG_MDIO_TIMEOUT
1425 CONFIG_MEMSIZE 1424 CONFIG_MEMSIZE
1426 CONFIG_MEMSIZE_IN_BYTES 1425 CONFIG_MEMSIZE_IN_BYTES
1427 CONFIG_MEMSIZE_MASK 1426 CONFIG_MEMSIZE_MASK
1428 CONFIG_MEM_HOLE_16M 1427 CONFIG_MEM_HOLE_16M
1429 CONFIG_MEM_INIT_VALUE 1428 CONFIG_MEM_INIT_VALUE
1430 CONFIG_MEM_REMAP 1429 CONFIG_MEM_REMAP
1431 CONFIG_MENUKEY 1430 CONFIG_MENUKEY
1432 CONFIG_MENUPROMPT 1431 CONFIG_MENUPROMPT
1433 CONFIG_MENU_SHOW 1432 CONFIG_MENU_SHOW
1434 CONFIG_MFG_ENV_SETTINGS 1433 CONFIG_MFG_ENV_SETTINGS
1435 CONFIG_MIGO_R 1434 CONFIG_MIGO_R
1436 CONFIG_MII 1435 CONFIG_MII
1437 CONFIG_MIIM_ADDRESS 1436 CONFIG_MIIM_ADDRESS
1438 CONFIG_MII_DEFAULT_TSEC 1437 CONFIG_MII_DEFAULT_TSEC
1439 CONFIG_MII_INIT 1438 CONFIG_MII_INIT
1440 CONFIG_MII_SUPPRESS_PREAMBLE 1439 CONFIG_MII_SUPPRESS_PREAMBLE
1441 CONFIG_MIPS_HUGE_TLB_SUPPORT 1440 CONFIG_MIPS_HUGE_TLB_SUPPORT
1442 CONFIG_MIPS_MT_FPAFF 1441 CONFIG_MIPS_MT_FPAFF
1443 CONFIG_MIRQ_EN 1442 CONFIG_MIRQ_EN
1444 CONFIG_MISC_COMMON 1443 CONFIG_MISC_COMMON
1445 CONFIG_MISC_INIT_F 1444 CONFIG_MISC_INIT_F
1446 CONFIG_MISC_INIT_R 1445 CONFIG_MISC_INIT_R
1447 CONFIG_MIU_1BIT_INTERLEAVED 1446 CONFIG_MIU_1BIT_INTERLEAVED
1448 CONFIG_MIU_2BIT_21_7_INTERLEAVED 1447 CONFIG_MIU_2BIT_21_7_INTERLEAVED
1449 CONFIG_MIU_2BIT_INTERLEAVED 1448 CONFIG_MIU_2BIT_INTERLEAVED
1450 CONFIG_MIU_LINEAR 1449 CONFIG_MIU_LINEAR
1451 CONFIG_MK_edb9301 1450 CONFIG_MK_edb9301
1452 CONFIG_MK_edb9315a 1451 CONFIG_MK_edb9315a
1453 CONFIG_MMCBOOTCOMMAND 1452 CONFIG_MMCBOOTCOMMAND
1454 CONFIG_MMCROOT 1453 CONFIG_MMCROOT
1455 CONFIG_MMC_DEFAULT_DEV 1454 CONFIG_MMC_DEFAULT_DEV
1456 CONFIG_MMC_RPMB_TRACE 1455 CONFIG_MMC_RPMB_TRACE
1457 CONFIG_MMC_SPI 1456 CONFIG_MMC_SPI
1458 CONFIG_MMC_SPI_BUS 1457 CONFIG_MMC_SPI_BUS
1459 CONFIG_MMC_SPI_CRC_ON 1458 CONFIG_MMC_SPI_CRC_ON
1460 CONFIG_MMC_SPI_CS 1459 CONFIG_MMC_SPI_CS
1461 CONFIG_MMC_SPI_MODE 1460 CONFIG_MMC_SPI_MODE
1462 CONFIG_MMC_SPI_SPEED 1461 CONFIG_MMC_SPI_SPEED
1463 CONFIG_MMC_SUNXI_SLOT 1462 CONFIG_MMC_SUNXI_SLOT
1464 CONFIG_MMC_TRACE 1463 CONFIG_MMC_TRACE
1465 CONFIG_MMU 1464 CONFIG_MMU
1466 CONFIG_MODVERSIONS 1465 CONFIG_MODVERSIONS
1467 CONFIG_MONITOR_IS_IN_RAM 1466 CONFIG_MONITOR_IS_IN_RAM
1468 CONFIG_MP 1467 CONFIG_MP
1469 CONFIG_MPC8308 1468 CONFIG_MPC8308
1470 CONFIG_MPC8308RDB 1469 CONFIG_MPC8308RDB
1471 CONFIG_MPC8308_P1M 1470 CONFIG_MPC8308_P1M
1472 CONFIG_MPC8309 1471 CONFIG_MPC8309
1473 CONFIG_MPC830x 1472 CONFIG_MPC830x
1474 CONFIG_MPC8313 1473 CONFIG_MPC8313
1475 CONFIG_MPC8313ERDB 1474 CONFIG_MPC8313ERDB
1476 CONFIG_MPC8315 1475 CONFIG_MPC8315
1477 CONFIG_MPC8315ERDB 1476 CONFIG_MPC8315ERDB
1478 CONFIG_MPC831x 1477 CONFIG_MPC831x
1479 CONFIG_MPC832XEMDS 1478 CONFIG_MPC832XEMDS
1480 CONFIG_MPC832x 1479 CONFIG_MPC832x
1481 CONFIG_MPC8349 1480 CONFIG_MPC8349
1482 CONFIG_MPC8349EMDS 1481 CONFIG_MPC8349EMDS
1483 CONFIG_MPC8349ITX 1482 CONFIG_MPC8349ITX
1484 CONFIG_MPC8349ITXGP 1483 CONFIG_MPC8349ITXGP
1485 CONFIG_MPC834x 1484 CONFIG_MPC834x
1486 CONFIG_MPC8360 1485 CONFIG_MPC8360
1487 CONFIG_MPC837XEMDS 1486 CONFIG_MPC837XEMDS
1488 CONFIG_MPC837XERDB 1487 CONFIG_MPC837XERDB
1489 CONFIG_MPC837x 1488 CONFIG_MPC837x
1490 CONFIG_MPC83XX_GPIO 1489 CONFIG_MPC83XX_GPIO
1491 CONFIG_MPC83XX_GPIO_0_INIT_DIRECTION 1490 CONFIG_MPC83XX_GPIO_0_INIT_DIRECTION
1492 CONFIG_MPC83XX_GPIO_0_INIT_OPEN_DRAIN 1491 CONFIG_MPC83XX_GPIO_0_INIT_OPEN_DRAIN
1493 CONFIG_MPC83XX_GPIO_0_INIT_VALUE 1492 CONFIG_MPC83XX_GPIO_0_INIT_VALUE
1494 CONFIG_MPC83XX_GPIO_1_INIT_DIRECTION 1493 CONFIG_MPC83XX_GPIO_1_INIT_DIRECTION
1495 CONFIG_MPC83XX_GPIO_1_INIT_OPEN_DRAIN 1494 CONFIG_MPC83XX_GPIO_1_INIT_OPEN_DRAIN
1496 CONFIG_MPC83XX_GPIO_1_INIT_VALUE 1495 CONFIG_MPC83XX_GPIO_1_INIT_VALUE
1497 CONFIG_MPC83XX_PCI2 1496 CONFIG_MPC83XX_PCI2
1498 CONFIG_MPC85XX_FEC 1497 CONFIG_MPC85XX_FEC
1499 CONFIG_MPC85XX_FEC_NAME 1498 CONFIG_MPC85XX_FEC_NAME
1500 CONFIG_MPC85XX_PCI2 1499 CONFIG_MPC85XX_PCI2
1501 CONFIG_MPC8XXX_SPI 1500 CONFIG_MPC8XXX_SPI
1502 CONFIG_MPC8xxx_DISABLE_BPTR 1501 CONFIG_MPC8xxx_DISABLE_BPTR
1503 CONFIG_MPLL_FREQ 1502 CONFIG_MPLL_FREQ
1504 CONFIG_MPR2 1503 CONFIG_MPR2
1505 CONFIG_MP_CLK_FREQ 1504 CONFIG_MP_CLK_FREQ
1506 CONFIG_MS7720SE 1505 CONFIG_MS7720SE
1507 CONFIG_MS7722SE 1506 CONFIG_MS7722SE
1508 CONFIG_MS7750SE 1507 CONFIG_MS7750SE
1509 CONFIG_MSHC_FREQ 1508 CONFIG_MSHC_FREQ
1510 CONFIG_MTDMAP 1509 CONFIG_MTDMAP
1511 CONFIG_MTDPARTS 1510 CONFIG_MTDPARTS
1512 CONFIG_MTD_CONCAT 1511 CONFIG_MTD_CONCAT
1513 CONFIG_MTD_DEBUG 1512 CONFIG_MTD_DEBUG
1514 CONFIG_MTD_DEBUG_VERBOSE 1513 CONFIG_MTD_DEBUG_VERBOSE
1515 CONFIG_MTD_DEVICE 1514 CONFIG_MTD_DEVICE
1516 CONFIG_MTD_ECC_SOFT 1515 CONFIG_MTD_ECC_SOFT
1517 CONFIG_MTD_NAND_DENALI_SCRATCH_REG_ADDR 1516 CONFIG_MTD_NAND_DENALI_SCRATCH_REG_ADDR
1518 CONFIG_MTD_NAND_ECC_SMC 1517 CONFIG_MTD_NAND_ECC_SMC
1519 CONFIG_MTD_NAND_MUSEUM_IDS 1518 CONFIG_MTD_NAND_MUSEUM_IDS
1520 CONFIG_MTD_NAND_VERIFY_WRITE 1519 CONFIG_MTD_NAND_VERIFY_WRITE
1521 CONFIG_MTD_ONENAND_VERIFY_WRITE 1520 CONFIG_MTD_ONENAND_VERIFY_WRITE
1522 CONFIG_MTD_PARTITION 1521 CONFIG_MTD_PARTITION
1523 CONFIG_MTD_PARTITIONS 1522 CONFIG_MTD_PARTITIONS
1524 CONFIG_MTD_UBI_BEB_RESERVE 1523 CONFIG_MTD_UBI_BEB_RESERVE
1525 CONFIG_MTD_UBI_BLOCK 1524 CONFIG_MTD_UBI_BLOCK
1526 CONFIG_MTD_UBI_DEBUG 1525 CONFIG_MTD_UBI_DEBUG
1527 CONFIG_MTD_UBI_DEBUG_MSG 1526 CONFIG_MTD_UBI_DEBUG_MSG
1528 CONFIG_MTD_UBI_DEBUG_MSG_BLD 1527 CONFIG_MTD_UBI_DEBUG_MSG_BLD
1529 CONFIG_MTD_UBI_DEBUG_MSG_EBA 1528 CONFIG_MTD_UBI_DEBUG_MSG_EBA
1530 CONFIG_MTD_UBI_DEBUG_MSG_IO 1529 CONFIG_MTD_UBI_DEBUG_MSG_IO
1531 CONFIG_MTD_UBI_DEBUG_MSG_WL 1530 CONFIG_MTD_UBI_DEBUG_MSG_WL
1532 CONFIG_MTD_UBI_DEBUG_PARANOID 1531 CONFIG_MTD_UBI_DEBUG_PARANOID
1533 CONFIG_MTD_UBI_GLUEBI 1532 CONFIG_MTD_UBI_GLUEBI
1534 CONFIG_MTD_UBI_MODULE 1533 CONFIG_MTD_UBI_MODULE
1535 CONFIG_MULTI_CS 1534 CONFIG_MULTI_CS
1536 CONFIG_MUSB_HOST 1535 CONFIG_MUSB_HOST
1537 CONFIG_MVEBU_MMC 1536 CONFIG_MVEBU_MMC
1538 CONFIG_MVGBE 1537 CONFIG_MVGBE
1539 CONFIG_MVGBE_PORTS 1538 CONFIG_MVGBE_PORTS
1540 CONFIG_MVMFP_V2 1539 CONFIG_MVMFP_V2
1541 CONFIG_MVNETA 1540 CONFIG_MVNETA
1542 CONFIG_MVS 1541 CONFIG_MVS
1543 CONFIG_MVSATA_IDE 1542 CONFIG_MVSATA_IDE
1544 CONFIG_MVSATA_IDE_USE_PORT0 1543 CONFIG_MVSATA_IDE_USE_PORT0
1545 CONFIG_MVSATA_IDE_USE_PORT1 1544 CONFIG_MVSATA_IDE_USE_PORT1
1546 CONFIG_MV_ETH_RXQ 1545 CONFIG_MV_ETH_RXQ
1547 CONFIG_MV_I2C_NUM 1546 CONFIG_MV_I2C_NUM
1548 CONFIG_MV_I2C_REG 1547 CONFIG_MV_I2C_REG
1549 CONFIG_MX23 1548 CONFIG_MX23
1550 CONFIG_MX25 1549 CONFIG_MX25
1551 CONFIG_MX25_CLK32 1550 CONFIG_MX25_CLK32
1552 CONFIG_MX25_HCLK_FREQ 1551 CONFIG_MX25_HCLK_FREQ
1553 CONFIG_MX27 1552 CONFIG_MX27
1554 CONFIG_MX27_CLK32 1553 CONFIG_MX27_CLK32
1555 CONFIG_MX27_TIMER_HIGH_PRECISION 1554 CONFIG_MX27_TIMER_HIGH_PRECISION
1556 CONFIG_MX28 1555 CONFIG_MX28
1557 CONFIG_MX28_FEC_MAC_IN_OCOTP 1556 CONFIG_MX28_FEC_MAC_IN_OCOTP
1558 CONFIG_MX31 1557 CONFIG_MX31
1559 CONFIG_MX31_CLK32 1558 CONFIG_MX31_CLK32
1560 CONFIG_MX31_HCLK_FREQ 1559 CONFIG_MX31_HCLK_FREQ
1561 CONFIG_MX35 1560 CONFIG_MX35
1562 CONFIG_MX35_CLK32 1561 CONFIG_MX35_CLK32
1563 CONFIG_MX35_HCLK_FREQ 1562 CONFIG_MX35_HCLK_FREQ
1564 CONFIG_MX6DL_LPDDR2 1563 CONFIG_MX6DL_LPDDR2
1565 CONFIG_MX6DQ_LPDDR2 1564 CONFIG_MX6DQ_LPDDR2
1566 CONFIG_MX6SX_SABRESD_REVA 1565 CONFIG_MX6SX_SABRESD_REVA
1567 CONFIG_MX6UL_14X14_EVK_EMMC_REWORK 1566 CONFIG_MX6UL_14X14_EVK_EMMC_REWORK
1568 CONFIG_MXC_EPDC 1567 CONFIG_MXC_EPDC
1569 CONFIG_MXC_GPIO 1568 CONFIG_MXC_GPIO
1570 CONFIG_MXC_GPT_HCLK 1569 CONFIG_MXC_GPT_HCLK
1571 CONFIG_MXC_MCI_REGS_BASE 1570 CONFIG_MXC_MCI_REGS_BASE
1572 CONFIG_MXC_NAND_HWECC 1571 CONFIG_MXC_NAND_HWECC
1573 CONFIG_MXC_NAND_IP_REGS_BASE 1572 CONFIG_MXC_NAND_IP_REGS_BASE
1574 CONFIG_MXC_NAND_REGS_BASE 1573 CONFIG_MXC_NAND_REGS_BASE
1575 CONFIG_MXC_SPI 1574 CONFIG_MXC_SPI
1576 CONFIG_MXC_UART_BASE 1575 CONFIG_MXC_UART_BASE
1577 CONFIG_MXC_USB_FLAGS 1576 CONFIG_MXC_USB_FLAGS
1578 CONFIG_MXC_USB_PORT 1577 CONFIG_MXC_USB_PORT
1579 CONFIG_MXC_USB_PORTSC 1578 CONFIG_MXC_USB_PORTSC
1580 CONFIG_MXS 1579 CONFIG_MXS
1581 CONFIG_MXS_AUART 1580 CONFIG_MXS_AUART
1582 CONFIG_MXS_AUART_BASE 1581 CONFIG_MXS_AUART_BASE
1583 CONFIG_MXS_GPIO 1582 CONFIG_MXS_GPIO
1584 CONFIG_MXS_OCOTP 1583 CONFIG_MXS_OCOTP
1585 CONFIG_MXS_SPI 1584 CONFIG_MXS_SPI
1586 CONFIG_MX_CYCLIC 1585 CONFIG_MX_CYCLIC
1587 CONFIG_MY_OPTION 1586 CONFIG_MY_OPTION
1588 CONFIG_NAND 1587 CONFIG_NAND
1589 CONFIG_NANDFLASH_SIZE 1588 CONFIG_NANDFLASH_SIZE
1590 CONFIG_NAND_6BYTES_OOB_FREE_10BYTES_ECC 1589 CONFIG_NAND_6BYTES_OOB_FREE_10BYTES_ECC
1591 CONFIG_NAND_ACTL 1590 CONFIG_NAND_ACTL
1592 CONFIG_NAND_ATMEL 1591 CONFIG_NAND_ATMEL
1593 CONFIG_NAND_CS_INIT 1592 CONFIG_NAND_CS_INIT
1594 CONFIG_NAND_DATA_REG 1593 CONFIG_NAND_DATA_REG
1595 CONFIG_NAND_DAVINCI 1594 CONFIG_NAND_DAVINCI
1596 CONFIG_NAND_DENALI_ECC_SIZE 1595 CONFIG_NAND_DENALI_ECC_SIZE
1597 CONFIG_NAND_ECC_BCH 1596 CONFIG_NAND_ECC_BCH
1598 CONFIG_NAND_ENV_DST 1597 CONFIG_NAND_ENV_DST
1599 CONFIG_NAND_FSL_ELBC 1598 CONFIG_NAND_FSL_ELBC
1600 CONFIG_NAND_FSL_IFC 1599 CONFIG_NAND_FSL_IFC
1601 CONFIG_NAND_FSL_NFC 1600 CONFIG_NAND_FSL_NFC
1602 CONFIG_NAND_FSMC 1601 CONFIG_NAND_FSMC
1603 CONFIG_NAND_KIRKWOOD 1602 CONFIG_NAND_KIRKWOOD
1604 CONFIG_NAND_KMETER1 1603 CONFIG_NAND_KMETER1
1605 CONFIG_NAND_LPC32XX_MLC 1604 CONFIG_NAND_LPC32XX_MLC
1606 CONFIG_NAND_LPC32XX_SLC 1605 CONFIG_NAND_LPC32XX_SLC
1607 CONFIG_NAND_MODE_REG 1606 CONFIG_NAND_MODE_REG
1608 CONFIG_NAND_MXC 1607 CONFIG_NAND_MXC
1609 CONFIG_NAND_MXC_V1_1 1608 CONFIG_NAND_MXC_V1_1
1610 CONFIG_NAND_NDFC 1609 CONFIG_NAND_NDFC
1611 CONFIG_NAND_OMAP_ECCSCHEME 1610 CONFIG_NAND_OMAP_ECCSCHEME
1612 CONFIG_NAND_OMAP_ELM 1611 CONFIG_NAND_OMAP_ELM
1613 CONFIG_NAND_OMAP_GPMC 1612 CONFIG_NAND_OMAP_GPMC
1614 CONFIG_NAND_OMAP_GPMC_PREFETCH 1613 CONFIG_NAND_OMAP_GPMC_PREFETCH
1615 CONFIG_NAND_OMAP_GPMC_WSCFG 1614 CONFIG_NAND_OMAP_GPMC_WSCFG
1616 CONFIG_NAND_SECBOOT 1615 CONFIG_NAND_SECBOOT
1617 CONFIG_NAND_SPL 1616 CONFIG_NAND_SPL
1618 CONFIG_NAND_U_BOOT 1617 CONFIG_NAND_U_BOOT
1619 CONFIG_NATSEMI 1618 CONFIG_NATSEMI
1620 CONFIG_NCEL2C100_BASE 1619 CONFIG_NCEL2C100_BASE
1621 CONFIG_NCEMIC100_BASE 1620 CONFIG_NCEMIC100_BASE
1622 CONFIG_NDS_DLM1_BASE 1621 CONFIG_NDS_DLM1_BASE
1623 CONFIG_NDS_DLM2_BASE 1622 CONFIG_NDS_DLM2_BASE
1624 CONFIG_NEEDS_MANUAL_RELOC 1623 CONFIG_NEEDS_MANUAL_RELOC
1625 CONFIG_NEO 1624 CONFIG_NEO
1626 CONFIG_NET2BIG_V2 1625 CONFIG_NET2BIG_V2
1627 CONFIG_NETCONSOLE_BUFFER_SIZE 1626 CONFIG_NETCONSOLE_BUFFER_SIZE
1628 CONFIG_NETDEV 1627 CONFIG_NETDEV
1629 CONFIG_NETMASK 1628 CONFIG_NETMASK
1630 CONFIG_NETSPACE_LITE_V2 1629 CONFIG_NETSPACE_LITE_V2
1631 CONFIG_NETSPACE_MAX_V2 1630 CONFIG_NETSPACE_MAX_V2
1632 CONFIG_NETSPACE_MINI_V2 1631 CONFIG_NETSPACE_MINI_V2
1633 CONFIG_NETSPACE_V2 1632 CONFIG_NETSPACE_V2
1634 CONFIG_NET_MAXDEFRAG 1633 CONFIG_NET_MAXDEFRAG
1635 CONFIG_NET_MULTI 1634 CONFIG_NET_MULTI
1636 CONFIG_NET_RETRY_COUNT 1635 CONFIG_NET_RETRY_COUNT
1637 CONFIG_NEVER_ASSERT_ODT_TO_CPU 1636 CONFIG_NEVER_ASSERT_ODT_TO_CPU
1638 CONFIG_NFC_FREQ 1637 CONFIG_NFC_FREQ
1639 CONFIG_NFSBOOTCOMMAND 1638 CONFIG_NFSBOOTCOMMAND
1640 CONFIG_NFS_READ_SIZE 1639 CONFIG_NFS_READ_SIZE
1641 CONFIG_NFS_TIMEOUT 1640 CONFIG_NFS_TIMEOUT
1642 CONFIG_NOBQFMAN 1641 CONFIG_NOBQFMAN
1643 CONFIG_NON_SECURE 1642 CONFIG_NON_SECURE
1644 CONFIG_NORBOOT 1643 CONFIG_NORBOOT
1645 CONFIG_NORFLASH_PS32BIT 1644 CONFIG_NORFLASH_PS32BIT
1646 CONFIG_NO_ETH 1645 CONFIG_NO_ETH
1647 CONFIG_NO_RELOCATION 1646 CONFIG_NO_RELOCATION
1648 CONFIG_NO_WAIT 1647 CONFIG_NO_WAIT
1649 CONFIG_NR_CPUS 1648 CONFIG_NR_CPUS
1650 CONFIG_NR_DRAM_BANKS 1649 CONFIG_NR_DRAM_BANKS
1651 CONFIG_NR_DRAM_BANKS_MAX 1650 CONFIG_NR_DRAM_BANKS_MAX
1652 CONFIG_NR_DRAM_POPULATED 1651 CONFIG_NR_DRAM_POPULATED
1653 CONFIG_NS16550_MIN_FUNCTIONS 1652 CONFIG_NS16550_MIN_FUNCTIONS
1654 CONFIG_NS8382X 1653 CONFIG_NS8382X
1655 CONFIG_NS87308 1654 CONFIG_NS87308
1656 CONFIG_NUM_DSP_CPUS 1655 CONFIG_NUM_DSP_CPUS
1657 CONFIG_NUM_PAMU 1656 CONFIG_NUM_PAMU
1658 CONFIG_ODROID_REV_AIN 1657 CONFIG_ODROID_REV_AIN
1659 CONFIG_OFF_PADCONF 1658 CONFIG_OFF_PADCONF
1660 CONFIG_OF_ 1659 CONFIG_OF_
1661 CONFIG_OF_SPI 1660 CONFIG_OF_SPI
1662 CONFIG_OF_SPI_FLASH 1661 CONFIG_OF_SPI_FLASH
1663 CONFIG_OF_STDOUT_PATH 1662 CONFIG_OF_STDOUT_PATH
1664 CONFIG_OMAP_EHCI_PHY1_RESET_GPIO 1663 CONFIG_OMAP_EHCI_PHY1_RESET_GPIO
1665 CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 1664 CONFIG_OMAP_EHCI_PHY2_RESET_GPIO
1666 CONFIG_OMAP_EHCI_PHY3_RESET_GPIO 1665 CONFIG_OMAP_EHCI_PHY3_RESET_GPIO
1667 CONFIG_OMAP_USB2PHY2_HOST 1666 CONFIG_OMAP_USB2PHY2_HOST
1668 CONFIG_OMAP_USB3PHY1_HOST 1667 CONFIG_OMAP_USB3PHY1_HOST
1669 CONFIG_OMAP_USB_PHY 1668 CONFIG_OMAP_USB_PHY
1670 CONFIG_ORIGEN 1669 CONFIG_ORIGEN
1671 CONFIG_OS1_ENV_ADDR 1670 CONFIG_OS1_ENV_ADDR
1672 CONFIG_OS2_ENV_ADDR 1671 CONFIG_OS2_ENV_ADDR
1673 CONFIG_OTHBOOTARGS 1672 CONFIG_OTHBOOTARGS
1674 CONFIG_OVERWRITE_ETHADDR_ONCE 1673 CONFIG_OVERWRITE_ETHADDR_ONCE
1675 CONFIG_PAGE_CNT_MASK 1674 CONFIG_PAGE_CNT_MASK
1676 CONFIG_PAGE_CNT_SHIFT 1675 CONFIG_PAGE_CNT_SHIFT
1677 CONFIG_PALMAS_AUDPWR 1676 CONFIG_PALMAS_AUDPWR
1678 CONFIG_PALMAS_POWER 1677 CONFIG_PALMAS_POWER
1679 CONFIG_PALMAS_SMPS7_FPWM 1678 CONFIG_PALMAS_SMPS7_FPWM
1680 CONFIG_PALMAS_USB_SS_PWR 1679 CONFIG_PALMAS_USB_SS_PWR
1681 CONFIG_PANIC_HANG 1680 CONFIG_PANIC_HANG
1682 CONFIG_PARAVIRT 1681 CONFIG_PARAVIRT
1683 CONFIG_PB1000 1682 CONFIG_PB1000
1684 CONFIG_PB1100 1683 CONFIG_PB1100
1685 CONFIG_PB1500 1684 CONFIG_PB1500
1686 CONFIG_PB1X00 1685 CONFIG_PB1X00
1687 CONFIG_PCA953X 1686 CONFIG_PCA953X
1688 CONFIG_PCA9698 1687 CONFIG_PCA9698
1689 CONFIG_PCI1 1688 CONFIG_PCI1
1690 CONFIG_PCI2 1689 CONFIG_PCI2
1691 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE 1690 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE
1692 CONFIG_PCIE 1691 CONFIG_PCIE
1693 CONFIG_PCIE1 1692 CONFIG_PCIE1
1694 CONFIG_PCIE2 1693 CONFIG_PCIE2
1695 CONFIG_PCIE3 1694 CONFIG_PCIE3
1696 CONFIG_PCIE4 1695 CONFIG_PCIE4
1697 CONFIG_PCIE_IMX 1696 CONFIG_PCIE_IMX
1698 CONFIG_PCIE_IMX_PERST_GPIO 1697 CONFIG_PCIE_IMX_PERST_GPIO
1699 CONFIG_PCIE_IMX_POWER_GPIO 1698 CONFIG_PCIE_IMX_POWER_GPIO
1700 CONFIG_PCISLAVE 1699 CONFIG_PCISLAVE
1701 CONFIG_PCIX_CHECK 1700 CONFIG_PCIX_CHECK
1702 CONFIG_PCI_33M 1701 CONFIG_PCI_33M
1703 CONFIG_PCI_66M 1702 CONFIG_PCI_66M
1704 CONFIG_PCI_BOOTDELAY 1703 CONFIG_PCI_BOOTDELAY
1705 CONFIG_PCI_CLK_FREQ 1704 CONFIG_PCI_CLK_FREQ
1706 CONFIG_PCI_CONFIG_HOST_BRIDGE 1705 CONFIG_PCI_CONFIG_HOST_BRIDGE
1707 CONFIG_PCI_EHCI_DEVICE 1706 CONFIG_PCI_EHCI_DEVICE
1708 CONFIG_PCI_EHCI_DEVNO 1707 CONFIG_PCI_EHCI_DEVNO
1709 CONFIG_PCI_ENUM_ONLY 1708 CONFIG_PCI_ENUM_ONLY
1710 CONFIG_PCI_FIXUP_DEV 1709 CONFIG_PCI_FIXUP_DEV
1711 CONFIG_PCI_GT64120 1710 CONFIG_PCI_GT64120
1712 CONFIG_PCI_INDIRECT_BRIDGE 1711 CONFIG_PCI_INDIRECT_BRIDGE
1713 CONFIG_PCI_IO_BUS 1712 CONFIG_PCI_IO_BUS
1714 CONFIG_PCI_IO_PHYS 1713 CONFIG_PCI_IO_PHYS
1715 CONFIG_PCI_IO_SIZE 1714 CONFIG_PCI_IO_SIZE
1716 CONFIG_PCI_MEM_BUS 1715 CONFIG_PCI_MEM_BUS
1717 CONFIG_PCI_MEM_PHYS 1716 CONFIG_PCI_MEM_PHYS
1718 CONFIG_PCI_MEM_SIZE 1717 CONFIG_PCI_MEM_SIZE
1719 CONFIG_PCI_MSC01 1718 CONFIG_PCI_MSC01
1720 CONFIG_PCI_MVEBU 1719 CONFIG_PCI_MVEBU
1721 CONFIG_PCI_NOSCAN 1720 CONFIG_PCI_NOSCAN
1722 CONFIG_PCI_OHCI 1721 CONFIG_PCI_OHCI
1723 CONFIG_PCI_OHCI_DEVNO 1722 CONFIG_PCI_OHCI_DEVNO
1724 CONFIG_PCI_PREF_BUS 1723 CONFIG_PCI_PREF_BUS
1725 CONFIG_PCI_PREF_PHYS 1724 CONFIG_PCI_PREF_PHYS
1726 CONFIG_PCI_PREF_SIZE 1725 CONFIG_PCI_PREF_SIZE
1727 CONFIG_PCI_SCAN_SHOW 1726 CONFIG_PCI_SCAN_SHOW
1728 CONFIG_PCI_SKIP_HOST_BRIDGE 1727 CONFIG_PCI_SKIP_HOST_BRIDGE
1729 CONFIG_PCI_SYS_BUS 1728 CONFIG_PCI_SYS_BUS
1730 CONFIG_PCI_SYS_PHYS 1729 CONFIG_PCI_SYS_PHYS
1731 CONFIG_PCI_SYS_SIZE 1730 CONFIG_PCI_SYS_SIZE
1732 CONFIG_PCMCIA 1731 CONFIG_PCMCIA
1733 CONFIG_PCMCIA_SLOT_A 1732 CONFIG_PCMCIA_SLOT_A
1734 CONFIG_PCMCIA_SLOT_B 1733 CONFIG_PCMCIA_SLOT_B
1735 CONFIG_PCNET 1734 CONFIG_PCNET
1736 CONFIG_PCNET_79C973 1735 CONFIG_PCNET_79C973
1737 CONFIG_PCNET_79C975 1736 CONFIG_PCNET_79C975
1738 CONFIG_PEN_ADDR_BIG_ENDIAN 1737 CONFIG_PEN_ADDR_BIG_ENDIAN
1739 CONFIG_PERIF1_FREQ 1738 CONFIG_PERIF1_FREQ
1740 CONFIG_PERIF2_FREQ 1739 CONFIG_PERIF2_FREQ
1741 CONFIG_PERIF3_FREQ 1740 CONFIG_PERIF3_FREQ
1742 CONFIG_PERIF4_FREQ 1741 CONFIG_PERIF4_FREQ
1743 CONFIG_PHYSMEM 1742 CONFIG_PHYSMEM
1744 CONFIG_PHY_ADDR 1743 CONFIG_PHY_ADDR
1745 CONFIG_PHY_BASE_ADR 1744 CONFIG_PHY_BASE_ADR
1746 CONFIG_PHY_BCM5421S 1745 CONFIG_PHY_BCM5421S
1747 CONFIG_PHY_ET1011C_TX_CLK_FIX 1746 CONFIG_PHY_ET1011C_TX_CLK_FIX
1748 CONFIG_PHY_ID 1747 CONFIG_PHY_ID
1749 CONFIG_PHY_INTERFACE_MODE 1748 CONFIG_PHY_INTERFACE_MODE
1750 CONFIG_PHY_IRAM_BASE 1749 CONFIG_PHY_IRAM_BASE
1751 CONFIG_PHY_KSZ9031 1750 CONFIG_PHY_KSZ9031
1752 CONFIG_PHY_M88E1111 1751 CONFIG_PHY_M88E1111
1753 CONFIG_PHY_MAX_ADDR 1752 CONFIG_PHY_MAX_ADDR
1754 CONFIG_PHY_MODE_NEED_CHANGE 1753 CONFIG_PHY_MODE_NEED_CHANGE
1755 CONFIG_PHY_RESET 1754 CONFIG_PHY_RESET
1756 CONFIG_PHY_RESET_DELAY 1755 CONFIG_PHY_RESET_DELAY
1757 CONFIG_PICOSAM 1756 CONFIG_PICOSAM
1758 CONFIG_PIGGY_MAC_ADRESS_OFFSET 1757 CONFIG_PIGGY_MAC_ADRESS_OFFSET
1759 CONFIG_PIXIS_BRDCFG0_SPI 1758 CONFIG_PIXIS_BRDCFG0_SPI
1760 CONFIG_PIXIS_BRDCFG0_USB2 1759 CONFIG_PIXIS_BRDCFG0_USB2
1761 CONFIG_PIXIS_BRDCFG1_AUDCLK_11 1760 CONFIG_PIXIS_BRDCFG1_AUDCLK_11
1762 CONFIG_PIXIS_BRDCFG1_AUDCLK_12 1761 CONFIG_PIXIS_BRDCFG1_AUDCLK_12
1763 CONFIG_PIXIS_BRDCFG1_AUDCLK_MASK 1762 CONFIG_PIXIS_BRDCFG1_AUDCLK_MASK
1764 CONFIG_PIXIS_BRDCFG1_SSI_TDM_MASK 1763 CONFIG_PIXIS_BRDCFG1_SSI_TDM_MASK
1765 CONFIG_PIXIS_BRDCFG1_SSI_TDM_SSI 1764 CONFIG_PIXIS_BRDCFG1_SSI_TDM_SSI
1766 CONFIG_PIXIS_BRDCFG1_TDM 1765 CONFIG_PIXIS_BRDCFG1_TDM
1767 CONFIG_PIXIS_SGMII_CMD 1766 CONFIG_PIXIS_SGMII_CMD
1768 CONFIG_PL010_SERIAL 1767 CONFIG_PL010_SERIAL
1769 CONFIG_PL011_CLOCK 1768 CONFIG_PL011_CLOCK
1770 CONFIG_PL011_SERIAL 1769 CONFIG_PL011_SERIAL
1771 CONFIG_PL011_SERIAL_RLCR 1770 CONFIG_PL011_SERIAL_RLCR
1772 CONFIG_PL01X_SERIAL 1771 CONFIG_PL01X_SERIAL
1773 CONFIG_PL01x_PORTS 1772 CONFIG_PL01x_PORTS
1774 CONFIG_PLATFORM_ENV_SETTINGS 1773 CONFIG_PLATFORM_ENV_SETTINGS
1775 CONFIG_PLATINUM_BOARD 1774 CONFIG_PLATINUM_BOARD
1776 CONFIG_PLATINUM_CPU 1775 CONFIG_PLATINUM_CPU
1777 CONFIG_PLATINUM_PICON 1776 CONFIG_PLATINUM_PICON
1778 CONFIG_PLATINUM_PROJECT 1777 CONFIG_PLATINUM_PROJECT
1779 CONFIG_PLATINUM_TITANIUM 1778 CONFIG_PLATINUM_TITANIUM
1780 CONFIG_PLL1_CLK_FREQ 1779 CONFIG_PLL1_CLK_FREQ
1781 CONFIG_PLL1_DIV2_CLK_FREQ 1780 CONFIG_PLL1_DIV2_CLK_FREQ
1782 CONFIG_PM 1781 CONFIG_PM
1783 CONFIG_PM9261 1782 CONFIG_PM9261
1784 CONFIG_PM9263 1783 CONFIG_PM9263
1785 CONFIG_PM9G45 1784 CONFIG_PM9G45
1786 CONFIG_PMC_BR_PRELIM 1785 CONFIG_PMC_BR_PRELIM
1787 CONFIG_PMC_OR_PRELIM 1786 CONFIG_PMC_OR_PRELIM
1788 CONFIG_PMECC_CAP 1787 CONFIG_PMECC_CAP
1789 CONFIG_PMECC_INDEX_TABLE_OFFSET 1788 CONFIG_PMECC_INDEX_TABLE_OFFSET
1790 CONFIG_PMECC_SECTOR_SIZE 1789 CONFIG_PMECC_SECTOR_SIZE
1791 CONFIG_PME_PLAT_CLK_DIV 1790 CONFIG_PME_PLAT_CLK_DIV
1792 CONFIG_PMU 1791 CONFIG_PMU
1793 CONFIG_PMW_BASE 1792 CONFIG_PMW_BASE
1794 CONFIG_PM_SLEEP 1793 CONFIG_PM_SLEEP
1795 CONFIG_POST 1794 CONFIG_POST
1796 CONFIG_POSTBOOTMENU 1795 CONFIG_POSTBOOTMENU
1797 CONFIG_POST_ALT_LIST 1796 CONFIG_POST_ALT_LIST
1798 CONFIG_POST_BSPEC1 1797 CONFIG_POST_BSPEC1
1799 CONFIG_POST_BSPEC2 1798 CONFIG_POST_BSPEC2
1800 CONFIG_POST_BSPEC3 1799 CONFIG_POST_BSPEC3
1801 CONFIG_POST_BSPEC4 1800 CONFIG_POST_BSPEC4
1802 CONFIG_POST_BSPEC5 1801 CONFIG_POST_BSPEC5
1803 CONFIG_POST_EXTERNAL_WORD_FUNCS 1802 CONFIG_POST_EXTERNAL_WORD_FUNCS
1804 CONFIG_POST_SKIP_ENV_FLAGS 1803 CONFIG_POST_SKIP_ENV_FLAGS
1805 CONFIG_POST_STD_LIST 1804 CONFIG_POST_STD_LIST
1806 CONFIG_POST_UART 1805 CONFIG_POST_UART
1807 CONFIG_POST_WATCHDOG 1806 CONFIG_POST_WATCHDOG
1808 CONFIG_POWER 1807 CONFIG_POWER
1809 CONFIG_POWER_FSL 1808 CONFIG_POWER_FSL
1810 CONFIG_POWER_FSL_MC13892 1809 CONFIG_POWER_FSL_MC13892
1811 CONFIG_POWER_FSL_MC34704 1810 CONFIG_POWER_FSL_MC34704
1812 CONFIG_POWER_HI6553 1811 CONFIG_POWER_HI6553
1813 CONFIG_POWER_I2C 1812 CONFIG_POWER_I2C
1814 CONFIG_POWER_LTC3676 1813 CONFIG_POWER_LTC3676
1815 CONFIG_POWER_LTC3676_I2C_ADDR 1814 CONFIG_POWER_LTC3676_I2C_ADDR
1816 CONFIG_POWER_MAX77696 1815 CONFIG_POWER_MAX77696
1817 CONFIG_POWER_MAX77696_I2C_ADDR 1816 CONFIG_POWER_MAX77696_I2C_ADDR
1818 CONFIG_POWER_PFUZE100 1817 CONFIG_POWER_PFUZE100
1819 CONFIG_POWER_PFUZE100_I2C_ADDR 1818 CONFIG_POWER_PFUZE100_I2C_ADDR
1820 CONFIG_POWER_PFUZE3000 1819 CONFIG_POWER_PFUZE3000
1821 CONFIG_POWER_PFUZE3000_I2C_ADDR 1820 CONFIG_POWER_PFUZE3000_I2C_ADDR
1822 CONFIG_POWER_SPI 1821 CONFIG_POWER_SPI
1823 CONFIG_POWER_TPS62362 1822 CONFIG_POWER_TPS62362
1824 CONFIG_POWER_TPS65090_EC 1823 CONFIG_POWER_TPS65090_EC
1825 CONFIG_POWER_TPS65217 1824 CONFIG_POWER_TPS65217
1826 CONFIG_POWER_TPS65218 1825 CONFIG_POWER_TPS65218
1827 CONFIG_POWER_TPS65910 1826 CONFIG_POWER_TPS65910
1828 CONFIG_PPC64BRIDGE 1827 CONFIG_PPC64BRIDGE
1829 CONFIG_PPC_CLUSTER_START 1828 CONFIG_PPC_CLUSTER_START
1830 CONFIG_PPC_SPINTABLE_COMPATIBLE 1829 CONFIG_PPC_SPINTABLE_COMPATIBLE
1831 CONFIG_PQ_MDS_PIB 1830 CONFIG_PQ_MDS_PIB
1832 CONFIG_PQ_MDS_PIB_ATM 1831 CONFIG_PQ_MDS_PIB_ATM
1833 CONFIG_PRAM 1832 CONFIG_PRAM
1834 CONFIG_PREBOOT 1833 CONFIG_PREBOOT
1835 CONFIG_PRINTK 1834 CONFIG_PRINTK
1836 CONFIG_PROC_FS 1835 CONFIG_PROC_FS
1837 CONFIG_PROFILE_ALL_BRANCHES 1836 CONFIG_PROFILE_ALL_BRANCHES
1838 CONFIG_PROFILING 1837 CONFIG_PROFILING
1839 CONFIG_PROG_FDT1 1838 CONFIG_PROG_FDT1
1840 CONFIG_PROG_FDT2 1839 CONFIG_PROG_FDT2
1841 CONFIG_PROG_OS1 1840 CONFIG_PROG_OS1
1842 CONFIG_PROG_OS2 1841 CONFIG_PROG_OS2
1843 CONFIG_PROG_UBOOT1 1842 CONFIG_PROG_UBOOT1
1844 CONFIG_PROG_UBOOT2 1843 CONFIG_PROG_UBOOT2
1845 CONFIG_PROOF_POINTS 1844 CONFIG_PROOF_POINTS
1846 CONFIG_PRPMC_PCI_ALIAS 1845 CONFIG_PRPMC_PCI_ALIAS
1847 CONFIG_PS2KBD 1846 CONFIG_PS2KBD
1848 CONFIG_PS2MULT 1847 CONFIG_PS2MULT
1849 CONFIG_PS2MULT_DELAY 1848 CONFIG_PS2MULT_DELAY
1850 CONFIG_PS2SERIAL 1849 CONFIG_PS2SERIAL
1851 CONFIG_PSRAM_SCFG 1850 CONFIG_PSRAM_SCFG
1852 CONFIG_PWM 1851 CONFIG_PWM
1853 CONFIG_PWM_IMX 1852 CONFIG_PWM_IMX
1854 CONFIG_PXA_LCD 1853 CONFIG_PXA_LCD
1855 CONFIG_PXA_MMC_GENERIC 1854 CONFIG_PXA_MMC_GENERIC
1856 CONFIG_PXA_PWR_I2C 1855 CONFIG_PXA_PWR_I2C
1857 CONFIG_PXA_STD_I2C 1856 CONFIG_PXA_STD_I2C
1858 CONFIG_PXA_VGA 1857 CONFIG_PXA_VGA
1859 CONFIG_PXA_VIDEO 1858 CONFIG_PXA_VIDEO
1860 CONFIG_P_CLK_FREQ 1859 CONFIG_P_CLK_FREQ
1861 CONFIG_QBMAN_CLK_DIV 1860 CONFIG_QBMAN_CLK_DIV
1862 CONFIG_QE 1861 CONFIG_QE
1863 CONFIG_QEMU_MIPS 1862 CONFIG_QEMU_MIPS
1864 CONFIG_QIXIS_I2C_ACCESS 1863 CONFIG_QIXIS_I2C_ACCESS
1865 CONFIG_QSPI 1864 CONFIG_QSPI
1866 CONFIG_QSPI_QUAD_SUPPORT 1865 CONFIG_QSPI_QUAD_SUPPORT
1867 CONFIG_QSPI_SEL_GPIO 1866 CONFIG_QSPI_SEL_GPIO
1868 CONFIG_QUOTA 1867 CONFIG_QUOTA
1869 CONFIG_R0P7734 1868 CONFIG_R0P7734
1870 CONFIG_R2DPLUS 1869 CONFIG_R2DPLUS
1871 CONFIG_R7780MP 1870 CONFIG_R7780MP
1872 CONFIG_R8A66597_BASE_ADDR 1871 CONFIG_R8A66597_BASE_ADDR
1873 CONFIG_R8A66597_ENDIAN 1872 CONFIG_R8A66597_ENDIAN
1874 CONFIG_R8A66597_LDRV 1873 CONFIG_R8A66597_LDRV
1875 CONFIG_R8A66597_XTAL 1874 CONFIG_R8A66597_XTAL
1876 CONFIG_R8A7740 1875 CONFIG_R8A7740
1877 CONFIG_R8A7790 1876 CONFIG_R8A7790
1878 CONFIG_R8A7791 1877 CONFIG_R8A7791
1879 CONFIG_R8A7792 1878 CONFIG_R8A7792
1880 CONFIG_R8A7793 1879 CONFIG_R8A7793
1881 CONFIG_R8A7794 1880 CONFIG_R8A7794
1882 CONFIG_RAMBOOT 1881 CONFIG_RAMBOOT
1883 CONFIG_RAMBOOTCOMMAND 1882 CONFIG_RAMBOOTCOMMAND
1884 CONFIG_RAMBOOTCOMMAND_TFTP 1883 CONFIG_RAMBOOTCOMMAND_TFTP
1885 CONFIG_RAMBOOT_NAND 1884 CONFIG_RAMBOOT_NAND
1886 CONFIG_RAMBOOT_PBL 1885 CONFIG_RAMBOOT_PBL
1887 CONFIG_RAMBOOT_SDCARD 1886 CONFIG_RAMBOOT_SDCARD
1888 CONFIG_RAMBOOT_SPIFLASH 1887 CONFIG_RAMBOOT_SPIFLASH
1889 CONFIG_RAMBOOT_TEXT_BASE 1888 CONFIG_RAMBOOT_TEXT_BASE
1890 CONFIG_RAMDISKFILE 1889 CONFIG_RAMDISKFILE
1891 CONFIG_RAMDISK_ADDR 1890 CONFIG_RAMDISK_ADDR
1892 CONFIG_RAMDISK_BOOT 1891 CONFIG_RAMDISK_BOOT
1893 CONFIG_RAM_BOOT 1892 CONFIG_RAM_BOOT
1894 CONFIG_RAM_BOOT_PHYS 1893 CONFIG_RAM_BOOT_PHYS
1895 CONFIG_RANDOM_UUID 1894 CONFIG_RANDOM_UUID
1896 CONFIG_RCAR_BOARD_STRING 1895 CONFIG_RCAR_BOARD_STRING
1897 CONFIG_RD_LVL 1896 CONFIG_RD_LVL
1898 CONFIG_REALMODE_DEBUG 1897 CONFIG_REALMODE_DEBUG
1899 CONFIG_RED_LED 1898 CONFIG_RED_LED
1900 CONFIG_REFCLK_FREQ 1899 CONFIG_REFCLK_FREQ
1901 CONFIG_REG 1900 CONFIG_REG
1902 CONFIG_REG_0 1901 CONFIG_REG_0
1903 CONFIG_REG_1_BASE 1902 CONFIG_REG_1_BASE
1904 CONFIG_REG_2 1903 CONFIG_REG_2
1905 CONFIG_REG_3 1904 CONFIG_REG_3
1906 CONFIG_REG_8 1905 CONFIG_REG_8
1907 CONFIG_REG_APER_SIZE 1906 CONFIG_REG_APER_SIZE
1908 CONFIG_REMAKE_ELF 1907 CONFIG_REMAKE_ELF
1909 CONFIG_REQ 1908 CONFIG_REQ
1910 CONFIG_RESERVED_01_BASE 1909 CONFIG_RESERVED_01_BASE
1911 CONFIG_RESERVED_02_BASE 1910 CONFIG_RESERVED_02_BASE
1912 CONFIG_RESERVED_03_BASE 1911 CONFIG_RESERVED_03_BASE
1913 CONFIG_RESERVED_04_BASE 1912 CONFIG_RESERVED_04_BASE
1914 CONFIG_RESET 1913 CONFIG_RESET
1915 CONFIG_RESET_PHY_R 1914 CONFIG_RESET_PHY_R
1916 CONFIG_RESET_TO_RETRY 1915 CONFIG_RESET_TO_RETRY
1917 CONFIG_RESET_VECTOR_ADDRESS 1916 CONFIG_RESET_VECTOR_ADDRESS
1918 CONFIG_RESTORE_FLASH 1917 CONFIG_RESTORE_FLASH
1919 CONFIG_RES_BLOCK_SIZE 1918 CONFIG_RES_BLOCK_SIZE
1920 CONFIG_REV1 1919 CONFIG_REV1
1921 CONFIG_REV3 1920 CONFIG_REV3
1922 CONFIG_REVISION_TAG 1921 CONFIG_REVISION_TAG
1923 CONFIG_RFSPART 1922 CONFIG_RFSPART
1924 CONFIG_RIO 1923 CONFIG_RIO
1925 CONFIG_RMII 1924 CONFIG_RMII
1926 CONFIG_RMOBILE_BOARD_STRING 1925 CONFIG_RMOBILE_BOARD_STRING
1927 CONFIG_RMSTP0_ENA 1926 CONFIG_RMSTP0_ENA
1928 CONFIG_RMSTP10_ENA 1927 CONFIG_RMSTP10_ENA
1929 CONFIG_RMSTP11_ENA 1928 CONFIG_RMSTP11_ENA
1930 CONFIG_RMSTP1_ENA 1929 CONFIG_RMSTP1_ENA
1931 CONFIG_RMSTP2_ENA 1930 CONFIG_RMSTP2_ENA
1932 CONFIG_RMSTP3_ENA 1931 CONFIG_RMSTP3_ENA
1933 CONFIG_RMSTP4_ENA 1932 CONFIG_RMSTP4_ENA
1934 CONFIG_RMSTP5_ENA 1933 CONFIG_RMSTP5_ENA
1935 CONFIG_RMSTP6_ENA 1934 CONFIG_RMSTP6_ENA
1936 CONFIG_RMSTP7_ENA 1935 CONFIG_RMSTP7_ENA
1937 CONFIG_RMSTP8_ENA 1936 CONFIG_RMSTP8_ENA
1938 CONFIG_RMSTP9_ENA 1937 CONFIG_RMSTP9_ENA
1939 CONFIG_ROCKCHIP_CHIP_TAG 1938 CONFIG_ROCKCHIP_CHIP_TAG
1940 CONFIG_ROCKCHIP_MAX_INIT_SIZE 1939 CONFIG_ROCKCHIP_MAX_INIT_SIZE
1941 CONFIG_ROCKCHIP_SDHCI_MAX_FREQ 1940 CONFIG_ROCKCHIP_SDHCI_MAX_FREQ
1942 CONFIG_ROCKCHIP_USB2_PHY 1941 CONFIG_ROCKCHIP_USB2_PHY
1943 CONFIG_ROM_STUBS 1942 CONFIG_ROM_STUBS
1944 CONFIG_ROOTFS_OFFSET 1943 CONFIG_ROOTFS_OFFSET
1945 CONFIG_ROOTPATH 1944 CONFIG_ROOTPATH
1946 CONFIG_RSK7203 1945 CONFIG_RSK7203
1947 CONFIG_RSK7264 1946 CONFIG_RSK7264
1948 CONFIG_RSK7269 1947 CONFIG_RSK7269
1949 CONFIG_RTC_DS1337 1948 CONFIG_RTC_DS1337
1950 CONFIG_RTC_DS1337_NOOSC 1949 CONFIG_RTC_DS1337_NOOSC
1951 CONFIG_RTC_DS1338 1950 CONFIG_RTC_DS1338
1952 CONFIG_RTC_DS1339_TCR_VAL 1951 CONFIG_RTC_DS1339_TCR_VAL
1953 CONFIG_RTC_DS1374 1952 CONFIG_RTC_DS1374
1954 CONFIG_RTC_DS1388 1953 CONFIG_RTC_DS1388
1955 CONFIG_RTC_DS1388_TCR_VAL 1954 CONFIG_RTC_DS1388_TCR_VAL
1956 CONFIG_RTC_DS3231 1955 CONFIG_RTC_DS3231
1957 CONFIG_RTC_FTRTC010 1956 CONFIG_RTC_FTRTC010
1958 CONFIG_RTC_IMXDI 1957 CONFIG_RTC_IMXDI
1959 CONFIG_RTC_INTERNAL 1958 CONFIG_RTC_INTERNAL
1960 CONFIG_RTC_M41T11 1959 CONFIG_RTC_M41T11
1961 CONFIG_RTC_M41T60 1960 CONFIG_RTC_M41T60
1962 CONFIG_RTC_M41T62 1961 CONFIG_RTC_M41T62
1963 CONFIG_RTC_MC13XXX 1962 CONFIG_RTC_MC13XXX
1964 CONFIG_RTC_MC146818 1963 CONFIG_RTC_MC146818
1965 CONFIG_RTC_MCFRRTC 1964 CONFIG_RTC_MCFRRTC
1966 CONFIG_RTC_MCP79411 1965 CONFIG_RTC_MCP79411
1967 CONFIG_RTC_MV 1966 CONFIG_RTC_MV
1968 CONFIG_RTC_MXS 1967 CONFIG_RTC_MXS
1969 CONFIG_RTC_PCF8563 1968 CONFIG_RTC_PCF8563
1970 CONFIG_RTC_PT7C4338 1969 CONFIG_RTC_PT7C4338
1971 CONFIG_RTC_RX8025 1970 CONFIG_RTC_RX8025
1972 CONFIG_RUN_FROM_DDR0 1971 CONFIG_RUN_FROM_DDR0
1973 CONFIG_RUN_FROM_DDR1 1972 CONFIG_RUN_FROM_DDR1
1974 CONFIG_RUN_FROM_IRAM_ONLY 1973 CONFIG_RUN_FROM_IRAM_ONLY
1975 CONFIG_RX_DESCR_NUM 1974 CONFIG_RX_DESCR_NUM
1976 CONFIG_S32V234 1975 CONFIG_S32V234
1977 CONFIG_S3D2_CLK_FREQ 1976 CONFIG_S3D2_CLK_FREQ
1978 CONFIG_S3D4_CLK_FREQ 1977 CONFIG_S3D4_CLK_FREQ
1979 CONFIG_S5P 1978 CONFIG_S5P
1980 CONFIG_S5PC100 1979 CONFIG_S5PC100
1981 CONFIG_S5PC110 1980 CONFIG_S5PC110
1982 CONFIG_S5P_PA_SYSRAM 1981 CONFIG_S5P_PA_SYSRAM
1983 CONFIG_S6E63D6 1982 CONFIG_S6E63D6
1984 CONFIG_S6E8AX0 1983 CONFIG_S6E8AX0
1985 CONFIG_SABRELITE 1984 CONFIG_SABRELITE
1986 CONFIG_SAMA5D2 1985 CONFIG_SAMA5D2
1987 CONFIG_SAMA5D3 1986 CONFIG_SAMA5D3
1988 CONFIG_SAMA5D3_LCD_BASE 1987 CONFIG_SAMA5D3_LCD_BASE
1989 CONFIG_SAMA5D4 1988 CONFIG_SAMA5D4
1990 CONFIG_SAMSUNG 1989 CONFIG_SAMSUNG
1991 CONFIG_SAMSUNG_ONENAND 1990 CONFIG_SAMSUNG_ONENAND
1992 CONFIG_SANDBOX_ARCH 1991 CONFIG_SANDBOX_ARCH
1993 CONFIG_SANDBOX_BIG_ENDIAN 1992 CONFIG_SANDBOX_BIG_ENDIAN
1994 CONFIG_SANDBOX_BITS_PER_LONG 1993 CONFIG_SANDBOX_BITS_PER_LONG
1995 CONFIG_SANDBOX_SDL 1994 CONFIG_SANDBOX_SDL
1996 CONFIG_SANDBOX_SPI_MAX_BUS 1995 CONFIG_SANDBOX_SPI_MAX_BUS
1997 CONFIG_SANDBOX_SPI_MAX_CS 1996 CONFIG_SANDBOX_SPI_MAX_CS
1998 CONFIG_SAR2_REG 1997 CONFIG_SAR2_REG
1999 CONFIG_SAR_REG 1998 CONFIG_SAR_REG
2000 CONFIG_SATA1 1999 CONFIG_SATA1
2001 CONFIG_SATA2 2000 CONFIG_SATA2
2002 CONFIG_SATA_MV 2001 CONFIG_SATA_MV
2003 CONFIG_SATA_SIL 2002 CONFIG_SATA_SIL
2004 CONFIG_SATA_SIL3114 2003 CONFIG_SATA_SIL3114
2005 CONFIG_SATA_ULI5288 2004 CONFIG_SATA_ULI5288
2006 CONFIG_SBC8349 2005 CONFIG_SBC8349
2007 CONFIG_SBC8548 2006 CONFIG_SBC8548
2008 CONFIG_SBC8641D 2007 CONFIG_SBC8641D
2009 CONFIG_SCF0403_LCD 2008 CONFIG_SCF0403_LCD
2010 CONFIG_SCIF 2009 CONFIG_SCIF
2011 CONFIG_SCIF_A 2010 CONFIG_SCIF_A
2012 CONFIG_SCIF_EXT_CLOCK 2011 CONFIG_SCIF_EXT_CLOCK
2013 CONFIG_SCIF_USE_EXT_CLK 2012 CONFIG_SCIF_USE_EXT_CLK
2014 CONFIG_SCSI_AHCI 2013 CONFIG_SCSI_AHCI
2015 CONFIG_SCSI_AHCI_PLAT 2014 CONFIG_SCSI_AHCI_PLAT
2016 CONFIG_SCSI_DEV_LIST 2015 CONFIG_SCSI_DEV_LIST
2017 CONFIG_SC_TIMER_CLK 2016 CONFIG_SC_TIMER_CLK
2018 CONFIG_SDCARD 2017 CONFIG_SDCARD
2019 CONFIG_SDRAM_OFFSET_FOR_RT 2018 CONFIG_SDRAM_OFFSET_FOR_RT
2020 CONFIG_SDRC 2019 CONFIG_SDRC
2021 CONFIG_SD_BOOT_QSPI 2020 CONFIG_SD_BOOT_QSPI
2022 CONFIG_SECBOOT 2021 CONFIG_SECBOOT
2023 CONFIG_SECURE_BL1_ONLY 2022 CONFIG_SECURE_BL1_ONLY
2024 CONFIG_SECURE_RUNTIME_RESV_SRAM_SZ 2023 CONFIG_SECURE_RUNTIME_RESV_SRAM_SZ
2025 CONFIG_SECURITY 2024 CONFIG_SECURITY
2026 CONFIG_SEC_DEQ_TIMEOUT 2025 CONFIG_SEC_DEQ_TIMEOUT
2027 CONFIG_SEC_FW_SIZE 2026 CONFIG_SEC_FW_SIZE
2028 CONFIG_SERIAL0 2027 CONFIG_SERIAL0
2029 CONFIG_SERIAL1 2028 CONFIG_SERIAL1
2030 CONFIG_SERIAL2 2029 CONFIG_SERIAL2
2031 CONFIG_SERIAL3 2030 CONFIG_SERIAL3
2032 CONFIG_SERIAL_BOOT 2031 CONFIG_SERIAL_BOOT
2033 CONFIG_SERIAL_FLASH 2032 CONFIG_SERIAL_FLASH
2034 CONFIG_SERIAL_HW_FLOW_CONTROL 2033 CONFIG_SERIAL_HW_FLOW_CONTROL
2035 CONFIG_SERIAL_MULTI 2034 CONFIG_SERIAL_MULTI
2036 CONFIG_SERIAL_SOFTWARE_FIFO 2035 CONFIG_SERIAL_SOFTWARE_FIFO
2037 CONFIG_SERIAL_TAG 2036 CONFIG_SERIAL_TAG
2038 CONFIG_SERIRQ_CONTINUOUS_MODE 2037 CONFIG_SERIRQ_CONTINUOUS_MODE
2039 CONFIG_SERVERIP 2038 CONFIG_SERVERIP
2040 CONFIG_SETUP_INITRD_TAG 2039 CONFIG_SETUP_INITRD_TAG
2041 CONFIG_SETUP_MEMORY_TAGS 2040 CONFIG_SETUP_MEMORY_TAGS
2042 CONFIG_SET_BIST 2041 CONFIG_SET_BIST
2043 CONFIG_SET_BOOTARGS 2042 CONFIG_SET_BOOTARGS
2044 CONFIG_SET_DFU_ALT_BUF_LEN 2043 CONFIG_SET_DFU_ALT_BUF_LEN
2045 CONFIG_SET_DFU_ALT_INFO 2044 CONFIG_SET_DFU_ALT_INFO
2046 CONFIG_SFIO 2045 CONFIG_SFIO
2047 CONFIG_SF_DATAFLASH 2046 CONFIG_SF_DATAFLASH
2048 CONFIG_SF_DEFAULT_BUS 2047 CONFIG_SF_DEFAULT_BUS
2049 CONFIG_SF_DEFAULT_CS 2048 CONFIG_SF_DEFAULT_CS
2050 CONFIG_SF_DEFAULT_MODE 2049 CONFIG_SF_DEFAULT_MODE
2051 CONFIG_SF_DEFAULT_SPEED 2050 CONFIG_SF_DEFAULT_SPEED
2052 CONFIG_SGI_IP28 2051 CONFIG_SGI_IP28
2053 CONFIG_SH4_PCI 2052 CONFIG_SH4_PCI
2054 CONFIG_SH73A0 2053 CONFIG_SH73A0
2055 CONFIG_SH7751_PCI 2054 CONFIG_SH7751_PCI
2056 CONFIG_SH7752EVB 2055 CONFIG_SH7752EVB
2057 CONFIG_SH7753EVB 2056 CONFIG_SH7753EVB
2058 CONFIG_SH7757LCR 2057 CONFIG_SH7757LCR
2059 CONFIG_SH7757LCR_DDR_ECC 2058 CONFIG_SH7757LCR_DDR_ECC
2060 CONFIG_SH7763RDP 2059 CONFIG_SH7763RDP
2061 CONFIG_SH7780_PCI 2060 CONFIG_SH7780_PCI
2062 CONFIG_SH7780_PCI_BAR 2061 CONFIG_SH7780_PCI_BAR
2063 CONFIG_SH7780_PCI_LAR 2062 CONFIG_SH7780_PCI_LAR
2064 CONFIG_SH7780_PCI_LSR 2063 CONFIG_SH7780_PCI_LSR
2065 CONFIG_SH7785LCR 2064 CONFIG_SH7785LCR
2066 CONFIG_SHARP_LM8V31 2065 CONFIG_SHARP_LM8V31
2067 CONFIG_SHARP_LQ035Q7DH06 2066 CONFIG_SHARP_LQ035Q7DH06
2068 CONFIG_SHEEVA_88SV131 2067 CONFIG_SHEEVA_88SV131
2069 CONFIG_SHEEVA_88SV331xV5 2068 CONFIG_SHEEVA_88SV331xV5
2070 CONFIG_SHELL 2069 CONFIG_SHELL
2071 CONFIG_SHMIN 2070 CONFIG_SHMIN
2072 CONFIG_SHOW_ACTIVITY 2071 CONFIG_SHOW_ACTIVITY
2073 CONFIG_SHOW_BOOT_PROGRESS 2072 CONFIG_SHOW_BOOT_PROGRESS
2074 CONFIG_SH_CMT_CLK_FREQ 2073 CONFIG_SH_CMT_CLK_FREQ
2075 CONFIG_SH_DSP 2074 CONFIG_SH_DSP
2076 CONFIG_SH_ETHER 2075 CONFIG_SH_ETHER
2077 CONFIG_SH_ETHER_ALIGNE_SIZE 2076 CONFIG_SH_ETHER_ALIGNE_SIZE
2078 CONFIG_SH_ETHER_BASE_ADDR 2077 CONFIG_SH_ETHER_BASE_ADDR
2079 CONFIG_SH_ETHER_CACHE_INVALIDATE 2078 CONFIG_SH_ETHER_CACHE_INVALIDATE
2080 CONFIG_SH_ETHER_CACHE_WRITEBACK 2079 CONFIG_SH_ETHER_CACHE_WRITEBACK
2081 CONFIG_SH_ETHER_PHY_ADDR 2080 CONFIG_SH_ETHER_PHY_ADDR
2082 CONFIG_SH_ETHER_PHY_MODE 2081 CONFIG_SH_ETHER_PHY_MODE
2083 CONFIG_SH_ETHER_SH7734_MII 2082 CONFIG_SH_ETHER_SH7734_MII
2084 CONFIG_SH_ETHER_USE_GETHER 2083 CONFIG_SH_ETHER_USE_GETHER
2085 CONFIG_SH_ETHER_USE_PORT 2084 CONFIG_SH_ETHER_USE_PORT
2086 CONFIG_SH_GPIO_PFC 2085 CONFIG_SH_GPIO_PFC
2087 CONFIG_SH_I2C_8BIT 2086 CONFIG_SH_I2C_8BIT
2088 CONFIG_SH_I2C_CLOCK 2087 CONFIG_SH_I2C_CLOCK
2089 CONFIG_SH_I2C_DATA_HIGH 2088 CONFIG_SH_I2C_DATA_HIGH
2090 CONFIG_SH_I2C_DATA_LOW 2089 CONFIG_SH_I2C_DATA_LOW
2091 CONFIG_SH_MMCIF 2090 CONFIG_SH_MMCIF
2092 CONFIG_SH_MMCIF_ADDR 2091 CONFIG_SH_MMCIF_ADDR
2093 CONFIG_SH_MMCIF_CLK 2092 CONFIG_SH_MMCIF_CLK
2094 CONFIG_SH_QSPI 2093 CONFIG_SH_QSPI
2095 CONFIG_SH_QSPI_BASE 2094 CONFIG_SH_QSPI_BASE
2096 CONFIG_SH_SCIF_CLK_FREQ 2095 CONFIG_SH_SCIF_CLK_FREQ
2097 CONFIG_SH_SDHI_FREQ 2096 CONFIG_SH_SDHI_FREQ
2098 CONFIG_SH_SDRAM_OFFSET 2097 CONFIG_SH_SDRAM_OFFSET
2099 CONFIG_SH_SPI 2098 CONFIG_SH_SPI
2100 CONFIG_SH_SPI_BASE 2099 CONFIG_SH_SPI_BASE
2101 CONFIG_SH_TMU_CLK_FREQ 2100 CONFIG_SH_TMU_CLK_FREQ
2102 CONFIG_SIEMENS_DRACO 2101 CONFIG_SIEMENS_DRACO
2103 CONFIG_SIEMENS_MACH_TYPE 2102 CONFIG_SIEMENS_MACH_TYPE
2104 CONFIG_SIEMENS_PXM2 2103 CONFIG_SIEMENS_PXM2
2105 CONFIG_SIEMENS_RUT 2104 CONFIG_SIEMENS_RUT
2106 CONFIG_SIMU 2105 CONFIG_SIMU
2107 CONFIG_SKIP_LOCAL_MAC_RANDOMIZATION 2106 CONFIG_SKIP_LOCAL_MAC_RANDOMIZATION
2108 CONFIG_SKIP_LOWLEVEL_INIT 2107 CONFIG_SKIP_LOWLEVEL_INIT
2109 CONFIG_SKIP_LOWLEVEL_INIT_ONLY 2108 CONFIG_SKIP_LOWLEVEL_INIT_ONLY
2110 CONFIG_SKIP_TRUNOFF_WATCHDOG 2109 CONFIG_SKIP_TRUNOFF_WATCHDOG
2111 CONFIG_SLIC 2110 CONFIG_SLIC
2112 CONFIG_SLTTMR 2111 CONFIG_SLTTMR
2113 CONFIG_SMC91111 2112 CONFIG_SMC91111
2114 CONFIG_SMC91111_BASE 2113 CONFIG_SMC91111_BASE
2115 CONFIG_SMC91111_EXT_PHY 2114 CONFIG_SMC91111_EXT_PHY
2116 CONFIG_SMC911X 2115 CONFIG_SMC911X
2117 CONFIG_SMC911X_16_BIT 2116 CONFIG_SMC911X_16_BIT
2118 CONFIG_SMC911X_32_BIT 2117 CONFIG_SMC911X_32_BIT
2119 CONFIG_SMC911X_BASE 2118 CONFIG_SMC911X_BASE
2120 CONFIG_SMC911X_NO_EEPROM 2119 CONFIG_SMC911X_NO_EEPROM
2121 CONFIG_SMC_AUTONEG_TIMEOUT 2120 CONFIG_SMC_AUTONEG_TIMEOUT
2122 CONFIG_SMC_USE_32_BIT 2121 CONFIG_SMC_USE_32_BIT
2123 CONFIG_SMC_USE_IOFUNCS 2122 CONFIG_SMC_USE_IOFUNCS
2124 CONFIG_SMDK5420 2123 CONFIG_SMDK5420
2125 CONFIG_SMDKC100 2124 CONFIG_SMDKC100
2126 CONFIG_SMDKV310 2125 CONFIG_SMDKV310
2127 CONFIG_SMP_PEN_ADDR 2126 CONFIG_SMP_PEN_ADDR
2128 CONFIG_SMSC_LPC47M 2127 CONFIG_SMSC_LPC47M
2129 CONFIG_SMSC_SIO1007 2128 CONFIG_SMSC_SIO1007
2130 CONFIG_SMSTP0_ENA 2129 CONFIG_SMSTP0_ENA
2131 CONFIG_SMSTP10_ENA 2130 CONFIG_SMSTP10_ENA
2132 CONFIG_SMSTP11_ENA 2131 CONFIG_SMSTP11_ENA
2133 CONFIG_SMSTP1_ENA 2132 CONFIG_SMSTP1_ENA
2134 CONFIG_SMSTP2_ENA 2133 CONFIG_SMSTP2_ENA
2135 CONFIG_SMSTP3_ENA 2134 CONFIG_SMSTP3_ENA
2136 CONFIG_SMSTP4_ENA 2135 CONFIG_SMSTP4_ENA
2137 CONFIG_SMSTP5_ENA 2136 CONFIG_SMSTP5_ENA
2138 CONFIG_SMSTP6_ENA 2137 CONFIG_SMSTP6_ENA
2139 CONFIG_SMSTP7_ENA 2138 CONFIG_SMSTP7_ENA
2140 CONFIG_SMSTP8_ENA 2139 CONFIG_SMSTP8_ENA
2141 CONFIG_SMSTP9_ENA 2140 CONFIG_SMSTP9_ENA
2142 CONFIG_SOCFPGA_VIRTUAL_TARGET 2141 CONFIG_SOCFPGA_VIRTUAL_TARGET
2143 CONFIG_SOCRATES 2142 CONFIG_SOCRATES
2144 CONFIG_SOC_AU1000 2143 CONFIG_SOC_AU1000
2145 CONFIG_SOC_AU1100 2144 CONFIG_SOC_AU1100
2146 CONFIG_SOC_AU1500 2145 CONFIG_SOC_AU1500
2147 CONFIG_SOC_AU1550 2146 CONFIG_SOC_AU1550
2148 CONFIG_SOC_AU1X00 2147 CONFIG_SOC_AU1X00
2149 CONFIG_SOC_DA850 2148 CONFIG_SOC_DA850
2150 CONFIG_SOC_DA8XX 2149 CONFIG_SOC_DA8XX
2151 CONFIG_SOC_DM355 2150 CONFIG_SOC_DM355
2152 CONFIG_SOC_DM365 2151 CONFIG_SOC_DM365
2153 CONFIG_SOC_DM644X 2152 CONFIG_SOC_DM644X
2154 CONFIG_SOC_DM646X 2153 CONFIG_SOC_DM646X
2155 CONFIG_SOC_K2E 2154 CONFIG_SOC_K2E
2156 CONFIG_SOC_K2G 2155 CONFIG_SOC_K2G
2157 CONFIG_SOC_K2HK 2156 CONFIG_SOC_K2HK
2158 CONFIG_SOC_K2L 2157 CONFIG_SOC_K2L
2159 CONFIG_SOC_KEYSTONE 2158 CONFIG_SOC_KEYSTONE
2160 CONFIG_SOC_OMAP3430 2159 CONFIG_SOC_OMAP3430
2161 CONFIG_SOFT_I2C_GPIO_SCL 2160 CONFIG_SOFT_I2C_GPIO_SCL
2162 CONFIG_SOFT_I2C_GPIO_SDA 2161 CONFIG_SOFT_I2C_GPIO_SDA
2163 CONFIG_SOFT_I2C_READ_REPEATED_START 2162 CONFIG_SOFT_I2C_READ_REPEATED_START
2164 CONFIG_SOURCE 2163 CONFIG_SOURCE
2165 CONFIG_SPARSE_RCU_POINTER 2164 CONFIG_SPARSE_RCU_POINTER
2166 CONFIG_SPD_EEPROM 2165 CONFIG_SPD_EEPROM
2167 CONFIG_SPEAR300 2166 CONFIG_SPEAR300
2168 CONFIG_SPEAR310 2167 CONFIG_SPEAR310
2169 CONFIG_SPEAR320 2168 CONFIG_SPEAR320
2170 CONFIG_SPEAR3XX 2169 CONFIG_SPEAR3XX
2171 CONFIG_SPEAR600 2170 CONFIG_SPEAR600
2172 CONFIG_SPEAR_BOOTSTRAPCFG 2171 CONFIG_SPEAR_BOOTSTRAPCFG
2173 CONFIG_SPEAR_BOOTSTRAPMASK 2172 CONFIG_SPEAR_BOOTSTRAPMASK
2174 CONFIG_SPEAR_BOOTSTRAPSHFT 2173 CONFIG_SPEAR_BOOTSTRAPSHFT
2175 CONFIG_SPEAR_EMI 2174 CONFIG_SPEAR_EMI
2176 CONFIG_SPEAR_EMIBASE 2175 CONFIG_SPEAR_EMIBASE
2177 CONFIG_SPEAR_ETHBASE 2176 CONFIG_SPEAR_ETHBASE
2178 CONFIG_SPEAR_GPIO 2177 CONFIG_SPEAR_GPIO
2179 CONFIG_SPEAR_HZ 2178 CONFIG_SPEAR_HZ
2180 CONFIG_SPEAR_HZ_CLOCK 2179 CONFIG_SPEAR_HZ_CLOCK
2181 CONFIG_SPEAR_MISCBASE 2180 CONFIG_SPEAR_MISCBASE
2182 CONFIG_SPEAR_MPMCBASE 2181 CONFIG_SPEAR_MPMCBASE
2183 CONFIG_SPEAR_MPMCREGS 2182 CONFIG_SPEAR_MPMCREGS
2184 CONFIG_SPEAR_NORNAND16BOOT 2183 CONFIG_SPEAR_NORNAND16BOOT
2185 CONFIG_SPEAR_NORNAND8BOOT 2184 CONFIG_SPEAR_NORNAND8BOOT
2186 CONFIG_SPEAR_NORNANDBOOT 2185 CONFIG_SPEAR_NORNANDBOOT
2187 CONFIG_SPEAR_ONLYSNORBOOT 2186 CONFIG_SPEAR_ONLYSNORBOOT
2188 CONFIG_SPEAR_RASBASE 2187 CONFIG_SPEAR_RASBASE
2189 CONFIG_SPEAR_SYSCNTLBASE 2188 CONFIG_SPEAR_SYSCNTLBASE
2190 CONFIG_SPEAR_TIMERBASE 2189 CONFIG_SPEAR_TIMERBASE
2191 CONFIG_SPEAR_UART48M 2190 CONFIG_SPEAR_UART48M
2192 CONFIG_SPEAR_UARTCLKMSK 2191 CONFIG_SPEAR_UARTCLKMSK
2193 CONFIG_SPEAR_USBBOOT 2192 CONFIG_SPEAR_USBBOOT
2194 CONFIG_SPEAR_USBTTY 2193 CONFIG_SPEAR_USBTTY
2195 CONFIG_SPI 2194 CONFIG_SPI
2196 CONFIG_SPI_ADDR 2195 CONFIG_SPI_ADDR
2197 CONFIG_SPI_BOOTING 2196 CONFIG_SPI_BOOTING
2198 CONFIG_SPI_CS_IS_VALID 2197 CONFIG_SPI_CS_IS_VALID
2199 CONFIG_SPI_DATAFLASH_WRITE_VERIFY 2198 CONFIG_SPI_DATAFLASH_WRITE_VERIFY
2200 CONFIG_SPI_FLASH_ISSI 2199 CONFIG_SPI_FLASH_ISSI
2201 CONFIG_SPI_FLASH_QUAD 2200 CONFIG_SPI_FLASH_QUAD
2202 CONFIG_SPI_FLASH_SIZE 2201 CONFIG_SPI_FLASH_SIZE
2203 CONFIG_SPI_HALF_DUPLEX 2202 CONFIG_SPI_HALF_DUPLEX
2204 CONFIG_SPI_IDLE_VAL 2203 CONFIG_SPI_IDLE_VAL
2205 CONFIG_SPI_LENGTH 2204 CONFIG_SPI_LENGTH
2206 CONFIG_SPI_N25Q256A_RESET 2205 CONFIG_SPI_N25Q256A_RESET
2207 CONFIG_SPLASHIMAGE_GUARD 2206 CONFIG_SPLASHIMAGE_GUARD
2208 CONFIG_SPLASH_SCREEN 2207 CONFIG_SPLASH_SCREEN
2209 CONFIG_SPLASH_SCREEN_ALIGN 2208 CONFIG_SPLASH_SCREEN_ALIGN
2210 CONFIG_SPLASH_SOURCE 2209 CONFIG_SPLASH_SOURCE
2211 CONFIG_SPLL_FREQ 2210 CONFIG_SPLL_FREQ
2212 CONFIG_SPL_ 2211 CONFIG_SPL_
2213 CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC 2212 CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC
2214 CONFIG_SPL_ATMEL_SIZE 2213 CONFIG_SPL_ATMEL_SIZE
2215 CONFIG_SPL_BOARD_LOAD_IMAGE 2214 CONFIG_SPL_BOARD_LOAD_IMAGE
2216 CONFIG_SPL_BOOTROM_SAVE 2215 CONFIG_SPL_BOOTROM_SAVE
2217 CONFIG_SPL_BOOT_DEVICE 2216 CONFIG_SPL_BOOT_DEVICE
2218 CONFIG_SPL_BSS_MAX_SIZE 2217 CONFIG_SPL_BSS_MAX_SIZE
2219 CONFIG_SPL_BSS_START_ADDR 2218 CONFIG_SPL_BSS_START_ADDR
2220 CONFIG_SPL_CMT 2219 CONFIG_SPL_CMT
2221 CONFIG_SPL_CMT_DEBUG 2220 CONFIG_SPL_CMT_DEBUG
2222 CONFIG_SPL_COMMON_INIT_DDR 2221 CONFIG_SPL_COMMON_INIT_DDR
2223 CONFIG_SPL_CONSOLE 2222 CONFIG_SPL_CONSOLE
2224 CONFIG_SPL_ETH_DEVICE 2223 CONFIG_SPL_ETH_DEVICE
2225 CONFIG_SPL_FLUSH_IMAGE 2224 CONFIG_SPL_FLUSH_IMAGE
2226 CONFIG_SPL_FRAMEWORK 2225 CONFIG_SPL_FRAMEWORK
2227 CONFIG_SPL_FSL_PBL 2226 CONFIG_SPL_FSL_PBL
2228 CONFIG_SPL_FS_LOAD_ARGS_NAME 2227 CONFIG_SPL_FS_LOAD_ARGS_NAME
2229 CONFIG_SPL_FS_LOAD_KERNEL_NAME 2228 CONFIG_SPL_FS_LOAD_KERNEL_NAME
2230 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME 2229 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME
2231 CONFIG_SPL_GD_ADDR 2230 CONFIG_SPL_GD_ADDR
2232 CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER 2231 CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER
2233 CONFIG_SPL_INIT_MINIMAL 2232 CONFIG_SPL_INIT_MINIMAL
2234 CONFIG_SPL_JR0_LIODN_NS 2233 CONFIG_SPL_JR0_LIODN_NS
2235 CONFIG_SPL_JR0_LIODN_S 2234 CONFIG_SPL_JR0_LIODN_S
2236 CONFIG_SPL_LDSCRIPT 2235 CONFIG_SPL_LDSCRIPT
2237 CONFIG_SPL_LOAD_FIT_ADDRESS 2236 CONFIG_SPL_LOAD_FIT_ADDRESS
2238 CONFIG_SPL_MAX_FOOTPRINT 2237 CONFIG_SPL_MAX_FOOTPRINT
2239 CONFIG_SPL_MAX_PEB_SIZE 2238 CONFIG_SPL_MAX_PEB_SIZE
2240 CONFIG_SPL_MAX_SIZE 2239 CONFIG_SPL_MAX_SIZE
2241 CONFIG_SPL_MMC_BOOT 2240 CONFIG_SPL_MMC_BOOT
2242 CONFIG_SPL_MMC_LOAD 2241 CONFIG_SPL_MMC_LOAD
2243 CONFIG_SPL_MMC_MINIMAL 2242 CONFIG_SPL_MMC_MINIMAL
2244 CONFIG_SPL_MPC83XX_WAIT_FOR_NAND 2243 CONFIG_SPL_MPC83XX_WAIT_FOR_NAND
2245 CONFIG_SPL_MXS_PSWITCH_WAIT 2244 CONFIG_SPL_MXS_PSWITCH_WAIT
2246 CONFIG_SPL_NAND_AM33XX_BCH 2245 CONFIG_SPL_NAND_AM33XX_BCH
2247 CONFIG_SPL_NAND_BASE 2246 CONFIG_SPL_NAND_BASE
2248 CONFIG_SPL_NAND_BOOT 2247 CONFIG_SPL_NAND_BOOT
2249 CONFIG_SPL_NAND_DRIVERS 2248 CONFIG_SPL_NAND_DRIVERS
2250 CONFIG_SPL_NAND_ECC 2249 CONFIG_SPL_NAND_ECC
2251 CONFIG_SPL_NAND_INIT 2250 CONFIG_SPL_NAND_INIT
2252 CONFIG_SPL_NAND_LOAD 2251 CONFIG_SPL_NAND_LOAD
2253 CONFIG_SPL_NAND_MINIMAL 2252 CONFIG_SPL_NAND_MINIMAL
2254 CONFIG_SPL_NAND_RAW_ONLY 2253 CONFIG_SPL_NAND_RAW_ONLY
2255 CONFIG_SPL_NAND_SIMPLE 2254 CONFIG_SPL_NAND_SIMPLE
2256 CONFIG_SPL_NAND_SOFTECC 2255 CONFIG_SPL_NAND_SOFTECC
2257 CONFIG_SPL_NAND_WORKSPACE 2256 CONFIG_SPL_NAND_WORKSPACE
2258 CONFIG_SPL_NO_CPU_SUPPORT_CODE 2257 CONFIG_SPL_NO_CPU_SUPPORT_CODE
2259 CONFIG_SPL_OMAP3_ID_NAND 2258 CONFIG_SPL_OMAP3_ID_NAND
2260 CONFIG_SPL_PAD_TO 2259 CONFIG_SPL_PAD_TO
2261 CONFIG_SPL_PANIC_ON_RAW_IMAGE 2260 CONFIG_SPL_PANIC_ON_RAW_IMAGE
2262 CONFIG_SPL_PBL_PAD 2261 CONFIG_SPL_PBL_PAD
2263 CONFIG_SPL_PPAACT_ADDR 2262 CONFIG_SPL_PPAACT_ADDR
2264 CONFIG_SPL_RELOC_MALLOC_ADDR 2263 CONFIG_SPL_RELOC_MALLOC_ADDR
2265 CONFIG_SPL_RELOC_MALLOC_SIZE 2264 CONFIG_SPL_RELOC_MALLOC_SIZE
2266 CONFIG_SPL_RELOC_STACK 2265 CONFIG_SPL_RELOC_STACK
2267 CONFIG_SPL_RELOC_STACK_SIZE 2266 CONFIG_SPL_RELOC_STACK_SIZE
2268 CONFIG_SPL_RELOC_TEXT_BASE 2267 CONFIG_SPL_RELOC_TEXT_BASE
2269 CONFIG_SPL_SATA_BOOT_DEVICE 2268 CONFIG_SPL_SATA_BOOT_DEVICE
2270 CONFIG_SPL_SIZE 2269 CONFIG_SPL_SIZE
2271 CONFIG_SPL_SKIP_RELOCATE 2270 CONFIG_SPL_SKIP_RELOCATE
2272 CONFIG_SPL_SPAACT_ADDR 2271 CONFIG_SPL_SPAACT_ADDR
2273 CONFIG_SPL_SPI_BOOT 2272 CONFIG_SPL_SPI_BOOT
2274 CONFIG_SPL_SPI_FLASH_MINIMAL 2273 CONFIG_SPL_SPI_FLASH_MINIMAL
2275 CONFIG_SPL_SPI_LOAD 2274 CONFIG_SPL_SPI_LOAD
2276 CONFIG_SPL_STACK 2275 CONFIG_SPL_STACK
2277 CONFIG_SPL_STACK_ADDR 2276 CONFIG_SPL_STACK_ADDR
2278 CONFIG_SPL_STACK_SIZE 2277 CONFIG_SPL_STACK_SIZE
2279 CONFIG_SPL_START_S_PATH 2278 CONFIG_SPL_START_S_PATH
2280 CONFIG_SPL_TARGET 2279 CONFIG_SPL_TARGET
2281 CONFIG_SPL_TEXT_BASE 2280 CONFIG_SPL_TEXT_BASE
2282 CONFIG_SPL_UBI 2281 CONFIG_SPL_UBI
2283 CONFIG_SPL_UBI_INFO_ADDR 2282 CONFIG_SPL_UBI_INFO_ADDR
2284 CONFIG_SPL_UBI_LEB_START 2283 CONFIG_SPL_UBI_LEB_START
2285 CONFIG_SPL_UBI_LOAD_ARGS_ID 2284 CONFIG_SPL_UBI_LOAD_ARGS_ID
2286 CONFIG_SPL_UBI_LOAD_KERNEL_ID 2285 CONFIG_SPL_UBI_LOAD_KERNEL_ID
2287 CONFIG_SPL_UBI_LOAD_MONITOR_ID 2286 CONFIG_SPL_UBI_LOAD_MONITOR_ID
2288 CONFIG_SPL_UBI_MAX_PEBS 2287 CONFIG_SPL_UBI_MAX_PEBS
2289 CONFIG_SPL_UBI_MAX_PEB_SIZE 2288 CONFIG_SPL_UBI_MAX_PEB_SIZE
2290 CONFIG_SPL_UBI_MAX_VOL_LEBS 2289 CONFIG_SPL_UBI_MAX_VOL_LEBS
2291 CONFIG_SPL_UBI_PEB_OFFSET 2290 CONFIG_SPL_UBI_PEB_OFFSET
2292 CONFIG_SPL_UBI_VID_OFFSET 2291 CONFIG_SPL_UBI_VID_OFFSET
2293 CONFIG_SPL_UBI_VOL_IDS 2292 CONFIG_SPL_UBI_VOL_IDS
2294 CONFIG_SPL_UBOOT_KEY_HASH 2293 CONFIG_SPL_UBOOT_KEY_HASH
2295 CONFIG_SRAM_BASE 2294 CONFIG_SRAM_BASE
2296 CONFIG_SRAM_SIZE 2295 CONFIG_SRAM_SIZE
2297 CONFIG_SRIO1 2296 CONFIG_SRIO1
2298 CONFIG_SRIO2 2297 CONFIG_SRIO2
2299 CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET 2298 CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET
2300 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1 2299 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1
2301 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2 2300 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2
2302 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS 2301 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS
2303 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE 2302 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE
2304 CONFIG_SRIO_PCIE_BOOT_MASTER 2303 CONFIG_SRIO_PCIE_BOOT_MASTER
2305 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK 2304 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK
2306 CONFIG_SRIO_PCIE_BOOT_SLAVE 2305 CONFIG_SRIO_PCIE_BOOT_SLAVE
2307 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS 2306 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS
2308 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS 2307 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS
2309 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE 2308 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE
2310 CONFIG_SSD_BR_PRELIM 2309 CONFIG_SSD_BR_PRELIM
2311 CONFIG_SSD_OR_PRELIM 2310 CONFIG_SSD_OR_PRELIM
2312 CONFIG_SSE2 2311 CONFIG_SSE2
2313 CONFIG_SSI1_FREQ 2312 CONFIG_SSI1_FREQ
2314 CONFIG_SSI2_FREQ 2313 CONFIG_SSI2_FREQ
2315 CONFIG_SSP1_BASE 2314 CONFIG_SSP1_BASE
2316 CONFIG_SSP2_BASE 2315 CONFIG_SSP2_BASE
2317 CONFIG_SSP3_BASE 2316 CONFIG_SSP3_BASE
2318 CONFIG_STACKBASE 2317 CONFIG_STACKBASE
2319 CONFIG_STANDALONE_LOAD_ADDR 2318 CONFIG_STANDALONE_LOAD_ADDR
2320 CONFIG_STATIC_BOARD_REV 2319 CONFIG_STATIC_BOARD_REV
2321 CONFIG_STATIC_RELA 2320 CONFIG_STATIC_RELA
2322 CONFIG_STD_DEVICES_SETTINGS 2321 CONFIG_STD_DEVICES_SETTINGS
2323 CONFIG_STM32F4DISCOVERY 2322 CONFIG_STM32F4DISCOVERY
2324 CONFIG_STM32_FLASH 2323 CONFIG_STM32_FLASH
2325 CONFIG_STM32_GPIO 2324 CONFIG_STM32_GPIO
2326 CONFIG_STM32_HSE_HZ 2325 CONFIG_STM32_HSE_HZ
2327 CONFIG_STM32_HZ 2326 CONFIG_STM32_HZ
2328 CONFIG_STM32_SERIAL 2327 CONFIG_STM32_SERIAL
2329 CONFIG_STRIDER 2328 CONFIG_STRIDER
2330 CONFIG_STRIDER_CON 2329 CONFIG_STRIDER_CON
2331 CONFIG_STRIDER_CON_DP 2330 CONFIG_STRIDER_CON_DP
2332 CONFIG_STRIDER_CPU 2331 CONFIG_STRIDER_CPU
2333 CONFIG_STRIDER_CPU_DP 2332 CONFIG_STRIDER_CPU_DP
2334 CONFIG_STRIDER_FANS 2333 CONFIG_STRIDER_FANS
2335 CONFIG_STUART 2334 CONFIG_STUART
2336 CONFIG_STV0991 2335 CONFIG_STV0991
2337 CONFIG_STV0991_HZ 2336 CONFIG_STV0991_HZ
2338 CONFIG_STV0991_HZ_CLOCK 2337 CONFIG_STV0991_HZ_CLOCK
2339 CONFIG_ST_SMI 2338 CONFIG_ST_SMI
2340 CONFIG_SUNXI_AHCI 2339 CONFIG_SUNXI_AHCI
2341 CONFIG_SUNXI_EMAC 2340 CONFIG_SUNXI_EMAC
2342 CONFIG_SUNXI_GMAC 2341 CONFIG_SUNXI_GMAC
2343 CONFIG_SUNXI_GPIO 2342 CONFIG_SUNXI_GPIO
2344 CONFIG_SUNXI_MAX_FB_SIZE 2343 CONFIG_SUNXI_MAX_FB_SIZE
2345 CONFIG_SUNXI_USB_PHYS 2344 CONFIG_SUNXI_USB_PHYS
2346 CONFIG_SUPERH_ON_CHIP_R8A66597 2345 CONFIG_SUPERH_ON_CHIP_R8A66597
2347 CONFIG_SUPPORT_EMMC_BOOT 2346 CONFIG_SUPPORT_EMMC_BOOT
2348 CONFIG_SUPPORT_EMMC_RPMB 2347 CONFIG_SUPPORT_EMMC_RPMB
2349 CONFIG_SUPPORT_RAW_INITRD 2348 CONFIG_SUPPORT_RAW_INITRD
2350 CONFIG_SUPPORT_VFAT 2349 CONFIG_SUPPORT_VFAT
2351 CONFIG_SUVD3 2350 CONFIG_SUVD3
2352 CONFIG_SX151X_GPIO_COUNT_8 2351 CONFIG_SX151X_GPIO_COUNT_8
2353 CONFIG_SX151X_SPI_BUS 2352 CONFIG_SX151X_SPI_BUS
2354 CONFIG_SXNI855T 2353 CONFIG_SXNI855T
2355 CONFIG_SYSCOUNTER_TIMER 2354 CONFIG_SYSCOUNTER_TIMER
2356 CONFIG_SYSFLAGS_ADDR 2355 CONFIG_SYSFLAGS_ADDR
2357 CONFIG_SYSFS 2356 CONFIG_SYSFS
2358 CONFIG_SYSMGR_ISWGRP_HANDOFF 2357 CONFIG_SYSMGR_ISWGRP_HANDOFF
2359 CONFIG_SYSTEMACE 2358 CONFIG_SYSTEMACE
2360 CONFIG_SYS_33MHZ 2359 CONFIG_SYS_33MHZ
2361 CONFIG_SYS_64BIT 2360 CONFIG_SYS_64BIT
2362 CONFIG_SYS_64BIT_LBA 2361 CONFIG_SYS_64BIT_LBA
2363 CONFIG_SYS_64BIT_VSPRINTF 2362 CONFIG_SYS_64BIT_VSPRINTF
2364 CONFIG_SYS_66MHZ 2363 CONFIG_SYS_66MHZ
2365 CONFIG_SYS_8313ERDB_BROKEN_PMC 2364 CONFIG_SYS_8313ERDB_BROKEN_PMC
2366 CONFIG_SYS_83XX_DDR_USES_CS0 2365 CONFIG_SYS_83XX_DDR_USES_CS0
2367 CONFIG_SYS_ACR_APARK 2366 CONFIG_SYS_ACR_APARK
2368 CONFIG_SYS_ACR_PARKM 2367 CONFIG_SYS_ACR_PARKM
2369 CONFIG_SYS_ACR_PIPE_DEP 2368 CONFIG_SYS_ACR_PIPE_DEP
2370 CONFIG_SYS_ACR_RPTCNT 2369 CONFIG_SYS_ACR_RPTCNT
2371 CONFIG_SYS_ADDRESS_MAP_A 2370 CONFIG_SYS_ADDRESS_MAP_A
2372 CONFIG_SYS_ADV7611_I2C 2371 CONFIG_SYS_ADV7611_I2C
2373 CONFIG_SYS_ALT_BOOT 2372 CONFIG_SYS_ALT_BOOT
2374 CONFIG_SYS_ALT_FLASH 2373 CONFIG_SYS_ALT_FLASH
2375 CONFIG_SYS_ALT_MEMTEST 2374 CONFIG_SYS_ALT_MEMTEST
2376 CONFIG_SYS_AMASK0 2375 CONFIG_SYS_AMASK0
2377 CONFIG_SYS_AMASK0_FINAL 2376 CONFIG_SYS_AMASK0_FINAL
2378 CONFIG_SYS_AMASK1 2377 CONFIG_SYS_AMASK1
2379 CONFIG_SYS_AMASK1_FINAL 2378 CONFIG_SYS_AMASK1_FINAL
2380 CONFIG_SYS_AMASK2 2379 CONFIG_SYS_AMASK2
2381 CONFIG_SYS_AMASK2_FINAL 2380 CONFIG_SYS_AMASK2_FINAL
2382 CONFIG_SYS_AMASK3 2381 CONFIG_SYS_AMASK3
2383 CONFIG_SYS_AMASK3_FINAL 2382 CONFIG_SYS_AMASK3_FINAL
2384 CONFIG_SYS_AMASK4 2383 CONFIG_SYS_AMASK4
2385 CONFIG_SYS_AMASK5 2384 CONFIG_SYS_AMASK5
2386 CONFIG_SYS_AMASK6 2385 CONFIG_SYS_AMASK6
2387 CONFIG_SYS_AMASK7 2386 CONFIG_SYS_AMASK7
2388 CONFIG_SYS_APP1_BASE 2387 CONFIG_SYS_APP1_BASE
2389 CONFIG_SYS_APP1_SIZE 2388 CONFIG_SYS_APP1_SIZE
2390 CONFIG_SYS_APP2_BASE 2389 CONFIG_SYS_APP2_BASE
2391 CONFIG_SYS_APP2_SIZE 2390 CONFIG_SYS_APP2_SIZE
2392 CONFIG_SYS_ARCH_TIMER 2391 CONFIG_SYS_ARCH_TIMER
2393 CONFIG_SYS_ARM_CACHE_WRITETHROUGH 2392 CONFIG_SYS_ARM_CACHE_WRITETHROUGH
2394 CONFIG_SYS_AT91_CPU_NAME 2393 CONFIG_SYS_AT91_CPU_NAME
2395 CONFIG_SYS_AT91_MAIN_CLOCK 2394 CONFIG_SYS_AT91_MAIN_CLOCK
2396 CONFIG_SYS_AT91_PLLA 2395 CONFIG_SYS_AT91_PLLA
2397 CONFIG_SYS_AT91_PLLB 2396 CONFIG_SYS_AT91_PLLB
2398 CONFIG_SYS_AT91_SLOW_CLOCK 2397 CONFIG_SYS_AT91_SLOW_CLOCK
2399 CONFIG_SYS_ATA_ALT_OFFSET 2398 CONFIG_SYS_ATA_ALT_OFFSET
2400 CONFIG_SYS_ATA_BASE_ADDR 2399 CONFIG_SYS_ATA_BASE_ADDR
2401 CONFIG_SYS_ATA_DATA_OFFSET 2400 CONFIG_SYS_ATA_DATA_OFFSET
2402 CONFIG_SYS_ATA_IDE0_OFFSET 2401 CONFIG_SYS_ATA_IDE0_OFFSET
2403 CONFIG_SYS_ATA_IDE1_OFFSET 2402 CONFIG_SYS_ATA_IDE1_OFFSET
2404 CONFIG_SYS_ATA_PORT_ADDR 2403 CONFIG_SYS_ATA_PORT_ADDR
2405 CONFIG_SYS_ATA_REG_OFFSET 2404 CONFIG_SYS_ATA_REG_OFFSET
2406 CONFIG_SYS_ATA_STRIDE 2405 CONFIG_SYS_ATA_STRIDE
2407 CONFIG_SYS_ATI_REV_A11 2406 CONFIG_SYS_ATI_REV_A11
2408 CONFIG_SYS_ATI_REV_A12 2407 CONFIG_SYS_ATI_REV_A12
2409 CONFIG_SYS_ATI_REV_A13 2408 CONFIG_SYS_ATI_REV_A13
2410 CONFIG_SYS_ATI_REV_ID_MASK 2409 CONFIG_SYS_ATI_REV_ID_MASK
2411 CONFIG_SYS_ATMEL_BASE 2410 CONFIG_SYS_ATMEL_BASE
2412 CONFIG_SYS_ATMEL_BOOT 2411 CONFIG_SYS_ATMEL_BOOT
2413 CONFIG_SYS_ATMEL_CPU_NAME 2412 CONFIG_SYS_ATMEL_CPU_NAME
2414 CONFIG_SYS_ATMEL_REGION 2413 CONFIG_SYS_ATMEL_REGION
2415 CONFIG_SYS_ATMEL_SECT 2414 CONFIG_SYS_ATMEL_SECT
2416 CONFIG_SYS_ATMEL_SECTSZ 2415 CONFIG_SYS_ATMEL_SECTSZ
2417 CONFIG_SYS_ATMEL_TOTALSECT 2416 CONFIG_SYS_ATMEL_TOTALSECT
2418 CONFIG_SYS_AUTOLOAD 2417 CONFIG_SYS_AUTOLOAD
2419 CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION 2418 CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
2420 CONFIG_SYS_AUXCORE_BOOTDATA 2419 CONFIG_SYS_AUXCORE_BOOTDATA
2421 CONFIG_SYS_BARGSIZE 2420 CONFIG_SYS_BARGSIZE
2422 CONFIG_SYS_BAUDRATE_TABLE 2421 CONFIG_SYS_BAUDRATE_TABLE
2423 CONFIG_SYS_BCSR 2422 CONFIG_SYS_BCSR
2424 CONFIG_SYS_BCSR_ADDR 2423 CONFIG_SYS_BCSR_ADDR
2425 CONFIG_SYS_BCSR_BASE 2424 CONFIG_SYS_BCSR_BASE
2426 CONFIG_SYS_BCSR_BASE_PHYS 2425 CONFIG_SYS_BCSR_BASE_PHYS
2427 CONFIG_SYS_BCSR_SIZE 2426 CONFIG_SYS_BCSR_SIZE
2428 CONFIG_SYS_BD_REV 2427 CONFIG_SYS_BD_REV
2429 CONFIG_SYS_BFTIC3_BASE 2428 CONFIG_SYS_BFTIC3_BASE
2430 CONFIG_SYS_BFTIC3_SIZE 2429 CONFIG_SYS_BFTIC3_SIZE
2431 CONFIG_SYS_BITBANG_PHY_PORT 2430 CONFIG_SYS_BITBANG_PHY_PORT
2432 CONFIG_SYS_BITBANG_PHY_PORTS 2431 CONFIG_SYS_BITBANG_PHY_PORTS
2433 CONFIG_SYS_BLACK_IN_WRITE 2432 CONFIG_SYS_BLACK_IN_WRITE
2434 CONFIG_SYS_BMAN_CENA_BASE 2433 CONFIG_SYS_BMAN_CENA_BASE
2435 CONFIG_SYS_BMAN_CENA_SIZE 2434 CONFIG_SYS_BMAN_CENA_SIZE
2436 CONFIG_SYS_BMAN_CINH_BASE 2435 CONFIG_SYS_BMAN_CINH_BASE
2437 CONFIG_SYS_BMAN_CINH_SIZE 2436 CONFIG_SYS_BMAN_CINH_SIZE
2438 CONFIG_SYS_BMAN_MEM_BASE 2437 CONFIG_SYS_BMAN_MEM_BASE
2439 CONFIG_SYS_BMAN_MEM_PHYS 2438 CONFIG_SYS_BMAN_MEM_PHYS
2440 CONFIG_SYS_BMAN_MEM_SIZE 2439 CONFIG_SYS_BMAN_MEM_SIZE
2441 CONFIG_SYS_BMAN_NUM_PORTALS 2440 CONFIG_SYS_BMAN_NUM_PORTALS
2442 CONFIG_SYS_BMAN_SP_CENA_SIZE 2441 CONFIG_SYS_BMAN_SP_CENA_SIZE
2443 CONFIG_SYS_BMAN_SP_CINH_SIZE 2442 CONFIG_SYS_BMAN_SP_CINH_SIZE
2444 CONFIG_SYS_BMAN_SWP_ISDR_REG 2443 CONFIG_SYS_BMAN_SWP_ISDR_REG
2445 CONFIG_SYS_BOARD_NAME 2444 CONFIG_SYS_BOARD_NAME
2446 CONFIG_SYS_BOARD_OMAP3_HA 2445 CONFIG_SYS_BOARD_OMAP3_HA
2447 CONFIG_SYS_BOARD_VERSION 2446 CONFIG_SYS_BOARD_VERSION
2448 CONFIG_SYS_BOOK3E_HV 2447 CONFIG_SYS_BOOK3E_HV
2449 CONFIG_SYS_BOOTCOUNT_ADDR 2448 CONFIG_SYS_BOOTCOUNT_ADDR
2450 CONFIG_SYS_BOOTCOUNT_BE 2449 CONFIG_SYS_BOOTCOUNT_BE
2451 CONFIG_SYS_BOOTCOUNT_LE 2450 CONFIG_SYS_BOOTCOUNT_LE
2452 CONFIG_SYS_BOOTCOUNT_SINGLEWORD 2451 CONFIG_SYS_BOOTCOUNT_SINGLEWORD
2453 CONFIG_SYS_BOOTFILE_PREFIX 2452 CONFIG_SYS_BOOTFILE_PREFIX
2454 CONFIG_SYS_BOOTMAPSZ 2453 CONFIG_SYS_BOOTMAPSZ
2455 CONFIG_SYS_BOOTM_LEN 2454 CONFIG_SYS_BOOTM_LEN
2456 CONFIG_SYS_BOOTPARAMS_LEN 2455 CONFIG_SYS_BOOTPARAMS_LEN
2457 CONFIG_SYS_BOOTSZ 2456 CONFIG_SYS_BOOTSZ
2458 CONFIG_SYS_BOOT_BLOCK 2457 CONFIG_SYS_BOOT_BLOCK
2459 CONFIG_SYS_BOOT_GET_CMDLINE 2458 CONFIG_SYS_BOOT_GET_CMDLINE
2460 CONFIG_SYS_BOOT_GET_KBD 2459 CONFIG_SYS_BOOT_GET_KBD
2461 CONFIG_SYS_BOOT_RAMDISK_HIGH 2460 CONFIG_SYS_BOOT_RAMDISK_HIGH
2462 CONFIG_SYS_BR0_64M 2461 CONFIG_SYS_BR0_64M
2463 CONFIG_SYS_BR0_8M 2462 CONFIG_SYS_BR0_8M
2464 CONFIG_SYS_BR6_64M 2463 CONFIG_SYS_BR6_64M
2465 CONFIG_SYS_BR6_8M 2464 CONFIG_SYS_BR6_8M
2466 CONFIG_SYS_BUSCLK 2465 CONFIG_SYS_BUSCLK
2467 CONFIG_SYS_CACHELINE_SHIFT 2466 CONFIG_SYS_CACHELINE_SHIFT
2468 CONFIG_SYS_CACHE_ACR0 2467 CONFIG_SYS_CACHE_ACR0
2469 CONFIG_SYS_CACHE_ACR1 2468 CONFIG_SYS_CACHE_ACR1
2470 CONFIG_SYS_CACHE_ACR2 2469 CONFIG_SYS_CACHE_ACR2
2471 CONFIG_SYS_CACHE_ACR3 2470 CONFIG_SYS_CACHE_ACR3
2472 CONFIG_SYS_CACHE_ACR4 2471 CONFIG_SYS_CACHE_ACR4
2473 CONFIG_SYS_CACHE_ACR5 2472 CONFIG_SYS_CACHE_ACR5
2474 CONFIG_SYS_CACHE_ACR6 2473 CONFIG_SYS_CACHE_ACR6
2475 CONFIG_SYS_CACHE_ACR7 2474 CONFIG_SYS_CACHE_ACR7
2476 CONFIG_SYS_CACHE_DCACR 2475 CONFIG_SYS_CACHE_DCACR
2477 CONFIG_SYS_CACHE_ICACR 2476 CONFIG_SYS_CACHE_ICACR
2478 CONFIG_SYS_CACHE_STASHING 2477 CONFIG_SYS_CACHE_STASHING
2479 CONFIG_SYS_CADMUS_BASE_REG 2478 CONFIG_SYS_CADMUS_BASE_REG
2480 CONFIG_SYS_CBSIZE 2479 CONFIG_SYS_CBSIZE
2481 CONFIG_SYS_CCCR 2480 CONFIG_SYS_CCCR
2482 CONFIG_SYS_CCI400_ADDR 2481 CONFIG_SYS_CCI400_ADDR
2483 CONFIG_SYS_CCSRBAR 2482 CONFIG_SYS_CCSRBAR
2484 CONFIG_SYS_CCSRBAR_PHYS 2483 CONFIG_SYS_CCSRBAR_PHYS
2485 CONFIG_SYS_CCSRBAR_PHYS_HIGH 2484 CONFIG_SYS_CCSRBAR_PHYS_HIGH
2486 CONFIG_SYS_CCSRBAR_PHYS_LOW 2485 CONFIG_SYS_CCSRBAR_PHYS_LOW
2487 CONFIG_SYS_CCSR_DEFAULT_DBATL 2486 CONFIG_SYS_CCSR_DEFAULT_DBATL
2488 CONFIG_SYS_CCSR_DEFAULT_DBATU 2487 CONFIG_SYS_CCSR_DEFAULT_DBATU
2489 CONFIG_SYS_CCSR_DEFAULT_IBATL 2488 CONFIG_SYS_CCSR_DEFAULT_IBATL
2490 CONFIG_SYS_CCSR_DEFAULT_IBATU 2489 CONFIG_SYS_CCSR_DEFAULT_IBATU
2491 CONFIG_SYS_CCSR_DO_NOT_RELOCATE 2490 CONFIG_SYS_CCSR_DO_NOT_RELOCATE
2492 CONFIG_SYS_CFI_FLASH_CONFIG_REGS 2491 CONFIG_SYS_CFI_FLASH_CONFIG_REGS
2493 CONFIG_SYS_CFI_FLASH_STATUS_POLL 2492 CONFIG_SYS_CFI_FLASH_STATUS_POLL
2494 CONFIG_SYS_CF_BASE 2493 CONFIG_SYS_CF_BASE
2495 CONFIG_SYS_CF_INTC_REG1 2494 CONFIG_SYS_CF_INTC_REG1
2496 CONFIG_SYS_CH7301_I2C 2495 CONFIG_SYS_CH7301_I2C
2497 CONFIG_SYS_CKEN 2496 CONFIG_SYS_CKEN
2498 CONFIG_SYS_CLK 2497 CONFIG_SYS_CLK
2499 CONFIG_SYS_CLKTL_CBCDR 2498 CONFIG_SYS_CLKTL_CBCDR
2500 CONFIG_SYS_CLK_100 2499 CONFIG_SYS_CLK_100
2501 CONFIG_SYS_CLK_100_DDR_100 2500 CONFIG_SYS_CLK_100_DDR_100
2502 CONFIG_SYS_CLK_100_DDR_133 2501 CONFIG_SYS_CLK_100_DDR_133
2503 CONFIG_SYS_CLK_DIV 2502 CONFIG_SYS_CLK_DIV
2504 CONFIG_SYS_CLK_FREQ_C100 2503 CONFIG_SYS_CLK_FREQ_C100
2505 CONFIG_SYS_CLK_FREQ_C110 2504 CONFIG_SYS_CLK_FREQ_C110
2506 CONFIG_SYS_CMD_CONFIGURE 2505 CONFIG_SYS_CMD_CONFIGURE
2507 CONFIG_SYS_CMD_EL 2506 CONFIG_SYS_CMD_EL
2508 CONFIG_SYS_CMD_IAS 2507 CONFIG_SYS_CMD_IAS
2509 CONFIG_SYS_CMD_INT 2508 CONFIG_SYS_CMD_INT
2510 CONFIG_SYS_CMD_SUSPEND 2509 CONFIG_SYS_CMD_SUSPEND
2511 CONFIG_SYS_CMXFCR_MASK1 2510 CONFIG_SYS_CMXFCR_MASK1
2512 CONFIG_SYS_CMXFCR_MASK2 2511 CONFIG_SYS_CMXFCR_MASK2
2513 CONFIG_SYS_CMXFCR_MASK3 2512 CONFIG_SYS_CMXFCR_MASK3
2514 CONFIG_SYS_CMXFCR_VALUE1 2513 CONFIG_SYS_CMXFCR_VALUE1
2515 CONFIG_SYS_CMXFCR_VALUE2 2514 CONFIG_SYS_CMXFCR_VALUE2
2516 CONFIG_SYS_CMXFCR_VALUE3 2515 CONFIG_SYS_CMXFCR_VALUE3
2517 CONFIG_SYS_CORE_SRAM 2516 CONFIG_SYS_CORE_SRAM
2518 CONFIG_SYS_CORE_SRAM_SIZE 2517 CONFIG_SYS_CORE_SRAM_SIZE
2519 CONFIG_SYS_CORTEX_R4 2518 CONFIG_SYS_CORTEX_R4
2520 CONFIG_SYS_CORTINA_FW_IN_MMC 2519 CONFIG_SYS_CORTINA_FW_IN_MMC
2521 CONFIG_SYS_CORTINA_FW_IN_NAND 2520 CONFIG_SYS_CORTINA_FW_IN_NAND
2522 CONFIG_SYS_CORTINA_FW_IN_NOR 2521 CONFIG_SYS_CORTINA_FW_IN_NOR
2523 CONFIG_SYS_CORTINA_FW_IN_REMOTE 2522 CONFIG_SYS_CORTINA_FW_IN_REMOTE
2524 CONFIG_SYS_CORTINA_FW_IN_SPIFLASH 2523 CONFIG_SYS_CORTINA_FW_IN_SPIFLASH
2525 CONFIG_SYS_CPC_REINIT_F 2524 CONFIG_SYS_CPC_REINIT_F
2526 CONFIG_SYS_CPLD_AMASK 2525 CONFIG_SYS_CPLD_AMASK
2527 CONFIG_SYS_CPLD_BASE 2526 CONFIG_SYS_CPLD_BASE
2528 CONFIG_SYS_CPLD_BASE_PHYS 2527 CONFIG_SYS_CPLD_BASE_PHYS
2529 CONFIG_SYS_CPLD_CSOR 2528 CONFIG_SYS_CPLD_CSOR
2530 CONFIG_SYS_CPLD_CSPR 2529 CONFIG_SYS_CPLD_CSPR
2531 CONFIG_SYS_CPLD_CSPR_EXT 2530 CONFIG_SYS_CPLD_CSPR_EXT
2532 CONFIG_SYS_CPLD_FTIM0 2531 CONFIG_SYS_CPLD_FTIM0
2533 CONFIG_SYS_CPLD_FTIM1 2532 CONFIG_SYS_CPLD_FTIM1
2534 CONFIG_SYS_CPLD_FTIM2 2533 CONFIG_SYS_CPLD_FTIM2
2535 CONFIG_SYS_CPLD_FTIM3 2534 CONFIG_SYS_CPLD_FTIM3
2536 CONFIG_SYS_CPLD_SIZE 2535 CONFIG_SYS_CPLD_SIZE
2537 CONFIG_SYS_CPMFCR_RAMTYPE 2536 CONFIG_SYS_CPMFCR_RAMTYPE
2538 CONFIG_SYS_CPM_INTERRUPT 2537 CONFIG_SYS_CPM_INTERRUPT
2539 CONFIG_SYS_CPRI 2538 CONFIG_SYS_CPRI
2540 CONFIG_SYS_CPRI_CLK 2539 CONFIG_SYS_CPRI_CLK
2541 CONFIG_SYS_CPUSPEED 2540 CONFIG_SYS_CPUSPEED
2542 CONFIG_SYS_CPU_CLK 2541 CONFIG_SYS_CPU_CLK
2543 CONFIG_SYS_CS0_BASE 2542 CONFIG_SYS_CS0_BASE
2544 CONFIG_SYS_CS0_CTRL 2543 CONFIG_SYS_CS0_CTRL
2545 CONFIG_SYS_CS0_FTIM0 2544 CONFIG_SYS_CS0_FTIM0
2546 CONFIG_SYS_CS0_FTIM1 2545 CONFIG_SYS_CS0_FTIM1
2547 CONFIG_SYS_CS0_FTIM2 2546 CONFIG_SYS_CS0_FTIM2
2548 CONFIG_SYS_CS0_FTIM3 2547 CONFIG_SYS_CS0_FTIM3
2549 CONFIG_SYS_CS0_MASK 2548 CONFIG_SYS_CS0_MASK
2550 CONFIG_SYS_CS0_SIZE 2549 CONFIG_SYS_CS0_SIZE
2551 CONFIG_SYS_CS1_BASE 2550 CONFIG_SYS_CS1_BASE
2552 CONFIG_SYS_CS1_CTRL 2551 CONFIG_SYS_CS1_CTRL
2553 CONFIG_SYS_CS1_FLASH_BASE 2552 CONFIG_SYS_CS1_FLASH_BASE
2554 CONFIG_SYS_CS1_FTIM0 2553 CONFIG_SYS_CS1_FTIM0
2555 CONFIG_SYS_CS1_FTIM1 2554 CONFIG_SYS_CS1_FTIM1
2556 CONFIG_SYS_CS1_FTIM2 2555 CONFIG_SYS_CS1_FTIM2
2557 CONFIG_SYS_CS1_FTIM3 2556 CONFIG_SYS_CS1_FTIM3
2558 CONFIG_SYS_CS1_MASK 2557 CONFIG_SYS_CS1_MASK
2559 CONFIG_SYS_CS2_BASE 2558 CONFIG_SYS_CS2_BASE
2560 CONFIG_SYS_CS2_CTRL 2559 CONFIG_SYS_CS2_CTRL
2561 CONFIG_SYS_CS2_FLASH_BASE 2560 CONFIG_SYS_CS2_FLASH_BASE
2562 CONFIG_SYS_CS2_FTIM0 2561 CONFIG_SYS_CS2_FTIM0
2563 CONFIG_SYS_CS2_FTIM1 2562 CONFIG_SYS_CS2_FTIM1
2564 CONFIG_SYS_CS2_FTIM2 2563 CONFIG_SYS_CS2_FTIM2
2565 CONFIG_SYS_CS2_FTIM3 2564 CONFIG_SYS_CS2_FTIM3
2566 CONFIG_SYS_CS2_MASK 2565 CONFIG_SYS_CS2_MASK
2567 CONFIG_SYS_CS3_BASE 2566 CONFIG_SYS_CS3_BASE
2568 CONFIG_SYS_CS3_CTRL 2567 CONFIG_SYS_CS3_CTRL
2569 CONFIG_SYS_CS3_FLASH_BASE 2568 CONFIG_SYS_CS3_FLASH_BASE
2570 CONFIG_SYS_CS3_FTIM0 2569 CONFIG_SYS_CS3_FTIM0
2571 CONFIG_SYS_CS3_FTIM1 2570 CONFIG_SYS_CS3_FTIM1
2572 CONFIG_SYS_CS3_FTIM2 2571 CONFIG_SYS_CS3_FTIM2
2573 CONFIG_SYS_CS3_FTIM3 2572 CONFIG_SYS_CS3_FTIM3
2574 CONFIG_SYS_CS3_MASK 2573 CONFIG_SYS_CS3_MASK
2575 CONFIG_SYS_CS4_BASE 2574 CONFIG_SYS_CS4_BASE
2576 CONFIG_SYS_CS4_CTRL 2575 CONFIG_SYS_CS4_CTRL
2577 CONFIG_SYS_CS4_FLASH_BASE 2576 CONFIG_SYS_CS4_FLASH_BASE
2578 CONFIG_SYS_CS4_FTIM0 2577 CONFIG_SYS_CS4_FTIM0
2579 CONFIG_SYS_CS4_FTIM1 2578 CONFIG_SYS_CS4_FTIM1
2580 CONFIG_SYS_CS4_FTIM2 2579 CONFIG_SYS_CS4_FTIM2
2581 CONFIG_SYS_CS4_FTIM3 2580 CONFIG_SYS_CS4_FTIM3
2582 CONFIG_SYS_CS4_MASK 2581 CONFIG_SYS_CS4_MASK
2583 CONFIG_SYS_CS5_BASE 2582 CONFIG_SYS_CS5_BASE
2584 CONFIG_SYS_CS5_CTRL 2583 CONFIG_SYS_CS5_CTRL
2585 CONFIG_SYS_CS5_FLASH_BASE 2584 CONFIG_SYS_CS5_FLASH_BASE
2586 CONFIG_SYS_CS5_FTIM0 2585 CONFIG_SYS_CS5_FTIM0
2587 CONFIG_SYS_CS5_FTIM1 2586 CONFIG_SYS_CS5_FTIM1
2588 CONFIG_SYS_CS5_FTIM2 2587 CONFIG_SYS_CS5_FTIM2
2589 CONFIG_SYS_CS5_FTIM3 2588 CONFIG_SYS_CS5_FTIM3
2590 CONFIG_SYS_CS5_MASK 2589 CONFIG_SYS_CS5_MASK
2591 CONFIG_SYS_CS6_BASE 2590 CONFIG_SYS_CS6_BASE
2592 CONFIG_SYS_CS6_CTRL 2591 CONFIG_SYS_CS6_CTRL
2593 CONFIG_SYS_CS6_FTIM0 2592 CONFIG_SYS_CS6_FTIM0
2594 CONFIG_SYS_CS6_FTIM1 2593 CONFIG_SYS_CS6_FTIM1
2595 CONFIG_SYS_CS6_FTIM2 2594 CONFIG_SYS_CS6_FTIM2
2596 CONFIG_SYS_CS6_FTIM3 2595 CONFIG_SYS_CS6_FTIM3
2597 CONFIG_SYS_CS6_MASK 2596 CONFIG_SYS_CS6_MASK
2598 CONFIG_SYS_CS7_BASE 2597 CONFIG_SYS_CS7_BASE
2599 CONFIG_SYS_CS7_CTRL 2598 CONFIG_SYS_CS7_CTRL
2600 CONFIG_SYS_CS7_FTIM0 2599 CONFIG_SYS_CS7_FTIM0
2601 CONFIG_SYS_CS7_FTIM1 2600 CONFIG_SYS_CS7_FTIM1
2602 CONFIG_SYS_CS7_FTIM2 2601 CONFIG_SYS_CS7_FTIM2
2603 CONFIG_SYS_CS7_FTIM3 2602 CONFIG_SYS_CS7_FTIM3
2604 CONFIG_SYS_CS7_MASK 2603 CONFIG_SYS_CS7_MASK
2605 CONFIG_SYS_CSOR0 2604 CONFIG_SYS_CSOR0
2606 CONFIG_SYS_CSOR0_EXT 2605 CONFIG_SYS_CSOR0_EXT
2607 CONFIG_SYS_CSOR1 2606 CONFIG_SYS_CSOR1
2608 CONFIG_SYS_CSOR1_EXT 2607 CONFIG_SYS_CSOR1_EXT
2609 CONFIG_SYS_CSOR2 2608 CONFIG_SYS_CSOR2
2610 CONFIG_SYS_CSOR2_EXT 2609 CONFIG_SYS_CSOR2_EXT
2611 CONFIG_SYS_CSOR3 2610 CONFIG_SYS_CSOR3
2612 CONFIG_SYS_CSOR3_EXT 2611 CONFIG_SYS_CSOR3_EXT
2613 CONFIG_SYS_CSOR4 2612 CONFIG_SYS_CSOR4
2614 CONFIG_SYS_CSOR4_EXT 2613 CONFIG_SYS_CSOR4_EXT
2615 CONFIG_SYS_CSOR5 2614 CONFIG_SYS_CSOR5
2616 CONFIG_SYS_CSOR5_EXT 2615 CONFIG_SYS_CSOR5_EXT
2617 CONFIG_SYS_CSOR6 2616 CONFIG_SYS_CSOR6
2618 CONFIG_SYS_CSOR6_EXT 2617 CONFIG_SYS_CSOR6_EXT
2619 CONFIG_SYS_CSOR7 2618 CONFIG_SYS_CSOR7
2620 CONFIG_SYS_CSOR7_EXT 2619 CONFIG_SYS_CSOR7_EXT
2621 CONFIG_SYS_CSPR0 2620 CONFIG_SYS_CSPR0
2622 CONFIG_SYS_CSPR0_EXT 2621 CONFIG_SYS_CSPR0_EXT
2623 CONFIG_SYS_CSPR0_FINAL 2622 CONFIG_SYS_CSPR0_FINAL
2624 CONFIG_SYS_CSPR1 2623 CONFIG_SYS_CSPR1
2625 CONFIG_SYS_CSPR1_EXT 2624 CONFIG_SYS_CSPR1_EXT
2626 CONFIG_SYS_CSPR1_FINAL 2625 CONFIG_SYS_CSPR1_FINAL
2627 CONFIG_SYS_CSPR2 2626 CONFIG_SYS_CSPR2
2628 CONFIG_SYS_CSPR2_EXT 2627 CONFIG_SYS_CSPR2_EXT
2629 CONFIG_SYS_CSPR2_FINAL 2628 CONFIG_SYS_CSPR2_FINAL
2630 CONFIG_SYS_CSPR3 2629 CONFIG_SYS_CSPR3
2631 CONFIG_SYS_CSPR3_EXT 2630 CONFIG_SYS_CSPR3_EXT
2632 CONFIG_SYS_CSPR3_FINAL 2631 CONFIG_SYS_CSPR3_FINAL
2633 CONFIG_SYS_CSPR4 2632 CONFIG_SYS_CSPR4
2634 CONFIG_SYS_CSPR4_EXT 2633 CONFIG_SYS_CSPR4_EXT
2635 CONFIG_SYS_CSPR5 2634 CONFIG_SYS_CSPR5
2636 CONFIG_SYS_CSPR5_EXT 2635 CONFIG_SYS_CSPR5_EXT
2637 CONFIG_SYS_CSPR6 2636 CONFIG_SYS_CSPR6
2638 CONFIG_SYS_CSPR6_EXT 2637 CONFIG_SYS_CSPR6_EXT
2639 CONFIG_SYS_CSPR7 2638 CONFIG_SYS_CSPR7
2640 CONFIG_SYS_CSPR7_EXT 2639 CONFIG_SYS_CSPR7_EXT
2641 CONFIG_SYS_DA850_CS2CFG 2640 CONFIG_SYS_DA850_CS2CFG
2642 CONFIG_SYS_DA850_CS3CFG 2641 CONFIG_SYS_DA850_CS3CFG
2643 CONFIG_SYS_DA850_DDR2_DDRPHYCR 2642 CONFIG_SYS_DA850_DDR2_DDRPHYCR
2644 CONFIG_SYS_DA850_DDR2_PBBPR 2643 CONFIG_SYS_DA850_DDR2_PBBPR
2645 CONFIG_SYS_DA850_DDR2_SDBCR 2644 CONFIG_SYS_DA850_DDR2_SDBCR
2646 CONFIG_SYS_DA850_DDR2_SDBCR2 2645 CONFIG_SYS_DA850_DDR2_SDBCR2
2647 CONFIG_SYS_DA850_DDR2_SDRCR 2646 CONFIG_SYS_DA850_DDR2_SDRCR
2648 CONFIG_SYS_DA850_DDR2_SDTIMR 2647 CONFIG_SYS_DA850_DDR2_SDTIMR
2649 CONFIG_SYS_DA850_DDR2_SDTIMR2 2648 CONFIG_SYS_DA850_DDR2_SDTIMR2
2650 CONFIG_SYS_DA850_PLL0_PLLDIV1 2649 CONFIG_SYS_DA850_PLL0_PLLDIV1
2651 CONFIG_SYS_DA850_PLL0_PLLDIV2 2650 CONFIG_SYS_DA850_PLL0_PLLDIV2
2652 CONFIG_SYS_DA850_PLL0_PLLDIV3 2651 CONFIG_SYS_DA850_PLL0_PLLDIV3
2653 CONFIG_SYS_DA850_PLL0_PLLDIV4 2652 CONFIG_SYS_DA850_PLL0_PLLDIV4
2654 CONFIG_SYS_DA850_PLL0_PLLDIV5 2653 CONFIG_SYS_DA850_PLL0_PLLDIV5
2655 CONFIG_SYS_DA850_PLL0_PLLDIV6 2654 CONFIG_SYS_DA850_PLL0_PLLDIV6
2656 CONFIG_SYS_DA850_PLL0_PLLDIV7 2655 CONFIG_SYS_DA850_PLL0_PLLDIV7
2657 CONFIG_SYS_DA850_PLL0_PLLM 2656 CONFIG_SYS_DA850_PLL0_PLLM
2658 CONFIG_SYS_DA850_PLL0_POSTDIV 2657 CONFIG_SYS_DA850_PLL0_POSTDIV
2659 CONFIG_SYS_DA850_PLL0_PREDIV 2658 CONFIG_SYS_DA850_PLL0_PREDIV
2660 CONFIG_SYS_DA850_PLL1_PLLDIV1 2659 CONFIG_SYS_DA850_PLL1_PLLDIV1
2661 CONFIG_SYS_DA850_PLL1_PLLDIV2 2660 CONFIG_SYS_DA850_PLL1_PLLDIV2
2662 CONFIG_SYS_DA850_PLL1_PLLDIV3 2661 CONFIG_SYS_DA850_PLL1_PLLDIV3
2663 CONFIG_SYS_DA850_PLL1_PLLM 2662 CONFIG_SYS_DA850_PLL1_PLLM
2664 CONFIG_SYS_DA850_PLL1_POSTDIV 2663 CONFIG_SYS_DA850_PLL1_POSTDIV
2665 CONFIG_SYS_DA850_SYSCFG_SUSPSRC 2664 CONFIG_SYS_DA850_SYSCFG_SUSPSRC
2666 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 2665 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0
2667 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 2666 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1
2668 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS2 2667 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS2
2669 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3 2668 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3
2670 CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT 2669 CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT
2671 CONFIG_SYS_DAVINCI_I2C_SLAVE 2670 CONFIG_SYS_DAVINCI_I2C_SLAVE
2672 CONFIG_SYS_DAVINCI_I2C_SLAVE1 2671 CONFIG_SYS_DAVINCI_I2C_SLAVE1
2673 CONFIG_SYS_DAVINCI_I2C_SLAVE2 2672 CONFIG_SYS_DAVINCI_I2C_SLAVE2
2674 CONFIG_SYS_DAVINCI_I2C_SPEED 2673 CONFIG_SYS_DAVINCI_I2C_SPEED
2675 CONFIG_SYS_DAVINCI_I2C_SPEED1 2674 CONFIG_SYS_DAVINCI_I2C_SPEED1
2676 CONFIG_SYS_DAVINCI_I2C_SPEED2 2675 CONFIG_SYS_DAVINCI_I2C_SPEED2
2677 CONFIG_SYS_DBAT 2676 CONFIG_SYS_DBAT
2678 CONFIG_SYS_DBAT0L 2677 CONFIG_SYS_DBAT0L
2679 CONFIG_SYS_DBAT0U 2678 CONFIG_SYS_DBAT0U
2680 CONFIG_SYS_DBAT1L 2679 CONFIG_SYS_DBAT1L
2681 CONFIG_SYS_DBAT1U 2680 CONFIG_SYS_DBAT1U
2682 CONFIG_SYS_DBAT2L 2681 CONFIG_SYS_DBAT2L
2683 CONFIG_SYS_DBAT2U 2682 CONFIG_SYS_DBAT2U
2684 CONFIG_SYS_DBAT3L 2683 CONFIG_SYS_DBAT3L
2685 CONFIG_SYS_DBAT3U 2684 CONFIG_SYS_DBAT3U
2686 CONFIG_SYS_DBAT4L 2685 CONFIG_SYS_DBAT4L
2687 CONFIG_SYS_DBAT4U 2686 CONFIG_SYS_DBAT4U
2688 CONFIG_SYS_DBAT5L 2687 CONFIG_SYS_DBAT5L
2689 CONFIG_SYS_DBAT5U 2688 CONFIG_SYS_DBAT5U
2690 CONFIG_SYS_DBAT6L 2689 CONFIG_SYS_DBAT6L
2691 CONFIG_SYS_DBAT6L_EARLY 2690 CONFIG_SYS_DBAT6L_EARLY
2692 CONFIG_SYS_DBAT6U 2691 CONFIG_SYS_DBAT6U
2693 CONFIG_SYS_DBAT6U_EARLY 2692 CONFIG_SYS_DBAT6U_EARLY
2694 CONFIG_SYS_DBAT7L 2693 CONFIG_SYS_DBAT7L
2695 CONFIG_SYS_DBAT7U 2694 CONFIG_SYS_DBAT7U
2696 CONFIG_SYS_DCACHE_INV 2695 CONFIG_SYS_DCACHE_INV
2697 CONFIG_SYS_DCSRBAR 2696 CONFIG_SYS_DCSRBAR
2698 CONFIG_SYS_DCSRBAR_PHYS 2697 CONFIG_SYS_DCSRBAR_PHYS
2699 CONFIG_SYS_DCSR_COP_CCP_ADDR 2698 CONFIG_SYS_DCSR_COP_CCP_ADDR
2700 CONFIG_SYS_DCSR_DCFG_ADDR 2699 CONFIG_SYS_DCSR_DCFG_ADDR
2701 CONFIG_SYS_DCSR_DCFG_OFFSET 2700 CONFIG_SYS_DCSR_DCFG_OFFSET
2702 CONFIG_SYS_DCU_ADDR 2701 CONFIG_SYS_DCU_ADDR
2703 CONFIG_SYS_DDR1_CS0_BNDS 2702 CONFIG_SYS_DDR1_CS0_BNDS
2704 CONFIG_SYS_DDR2_CFG_1A 2703 CONFIG_SYS_DDR2_CFG_1A
2705 CONFIG_SYS_DDR2_CFG_1B 2704 CONFIG_SYS_DDR2_CFG_1B
2706 CONFIG_SYS_DDR2_CFG_2 2705 CONFIG_SYS_DDR2_CFG_2
2707 CONFIG_SYS_DDR2_CLK_CTRL 2706 CONFIG_SYS_DDR2_CLK_CTRL
2708 CONFIG_SYS_DDR2_CS0_BNDS 2707 CONFIG_SYS_DDR2_CS0_BNDS
2709 CONFIG_SYS_DDR2_CS0_CONFIG 2708 CONFIG_SYS_DDR2_CS0_CONFIG
2710 CONFIG_SYS_DDR2_CS1_BNDS 2709 CONFIG_SYS_DDR2_CS1_BNDS
2711 CONFIG_SYS_DDR2_CS1_CONFIG 2710 CONFIG_SYS_DDR2_CS1_CONFIG
2712 CONFIG_SYS_DDR2_CS2_BNDS 2711 CONFIG_SYS_DDR2_CS2_BNDS
2713 CONFIG_SYS_DDR2_CS2_CONFIG 2712 CONFIG_SYS_DDR2_CS2_CONFIG
2714 CONFIG_SYS_DDR2_CS3_BNDS 2713 CONFIG_SYS_DDR2_CS3_BNDS
2715 CONFIG_SYS_DDR2_CS3_CONFIG 2714 CONFIG_SYS_DDR2_CS3_CONFIG
2716 CONFIG_SYS_DDR2_DATA_INIT 2715 CONFIG_SYS_DDR2_DATA_INIT
2717 CONFIG_SYS_DDR2_EXT_REFRESH 2716 CONFIG_SYS_DDR2_EXT_REFRESH
2718 CONFIG_SYS_DDR2_INTERVAL 2717 CONFIG_SYS_DDR2_INTERVAL
2719 CONFIG_SYS_DDR2_MODE_1 2718 CONFIG_SYS_DDR2_MODE_1
2720 CONFIG_SYS_DDR2_MODE_2 2719 CONFIG_SYS_DDR2_MODE_2
2721 CONFIG_SYS_DDR2_MODE_CTL 2720 CONFIG_SYS_DDR2_MODE_CTL
2722 CONFIG_SYS_DDR2_TIMING_0 2721 CONFIG_SYS_DDR2_TIMING_0
2723 CONFIG_SYS_DDR2_TIMING_1 2722 CONFIG_SYS_DDR2_TIMING_1
2724 CONFIG_SYS_DDR2_TIMING_2 2723 CONFIG_SYS_DDR2_TIMING_2
2725 CONFIG_SYS_DDRCDR 2724 CONFIG_SYS_DDRCDR
2726 CONFIG_SYS_DDRCDR_VALUE 2725 CONFIG_SYS_DDRCDR_VALUE
2727 CONFIG_SYS_DDRD 2726 CONFIG_SYS_DDRD
2728 CONFIG_SYS_DDRTC 2727 CONFIG_SYS_DDRTC
2729 CONFIG_SYS_DDRUA 2728 CONFIG_SYS_DDRUA
2730 CONFIG_SYS_DDR_BASE 2729 CONFIG_SYS_DDR_BASE
2731 CONFIG_SYS_DDR_BLOCK1_SIZE 2730 CONFIG_SYS_DDR_BLOCK1_SIZE
2732 CONFIG_SYS_DDR_BLOCK2_BASE 2731 CONFIG_SYS_DDR_BLOCK2_BASE
2733 CONFIG_SYS_DDR_CDR_1 2732 CONFIG_SYS_DDR_CDR_1
2734 CONFIG_SYS_DDR_CDR_2 2733 CONFIG_SYS_DDR_CDR_2
2735 CONFIG_SYS_DDR_CFG_1A 2734 CONFIG_SYS_DDR_CFG_1A
2736 CONFIG_SYS_DDR_CFG_1B 2735 CONFIG_SYS_DDR_CFG_1B
2737 CONFIG_SYS_DDR_CFG_2 2736 CONFIG_SYS_DDR_CFG_2
2738 CONFIG_SYS_DDR_CLKSEL 2737 CONFIG_SYS_DDR_CLKSEL
2739 CONFIG_SYS_DDR_CLK_CNTL 2738 CONFIG_SYS_DDR_CLK_CNTL
2740 CONFIG_SYS_DDR_CLK_CONTROL 2739 CONFIG_SYS_DDR_CLK_CONTROL
2741 CONFIG_SYS_DDR_CLK_CTRL 2740 CONFIG_SYS_DDR_CLK_CTRL
2742 CONFIG_SYS_DDR_CLK_CTRL_1000 2741 CONFIG_SYS_DDR_CLK_CTRL_1000
2743 CONFIG_SYS_DDR_CLK_CTRL_1200 2742 CONFIG_SYS_DDR_CLK_CTRL_1200
2744 CONFIG_SYS_DDR_CLK_CTRL_1333 2743 CONFIG_SYS_DDR_CLK_CTRL_1333
2745 CONFIG_SYS_DDR_CLK_CTRL_667 2744 CONFIG_SYS_DDR_CLK_CTRL_667
2746 CONFIG_SYS_DDR_CLK_CTRL_800 2745 CONFIG_SYS_DDR_CLK_CTRL_800
2747 CONFIG_SYS_DDR_CLK_CTRL_900 2746 CONFIG_SYS_DDR_CLK_CTRL_900
2748 CONFIG_SYS_DDR_CONFIG 2747 CONFIG_SYS_DDR_CONFIG
2749 CONFIG_SYS_DDR_CONFIG_2 2748 CONFIG_SYS_DDR_CONFIG_2
2750 CONFIG_SYS_DDR_CONFIG_256 2749 CONFIG_SYS_DDR_CONFIG_256
2751 CONFIG_SYS_DDR_CONTROL 2750 CONFIG_SYS_DDR_CONTROL
2752 CONFIG_SYS_DDR_CONTROL2 2751 CONFIG_SYS_DDR_CONTROL2
2753 CONFIG_SYS_DDR_CONTROL_1333 2752 CONFIG_SYS_DDR_CONTROL_1333
2754 CONFIG_SYS_DDR_CONTROL_2 2753 CONFIG_SYS_DDR_CONTROL_2
2755 CONFIG_SYS_DDR_CONTROL_2_1333 2754 CONFIG_SYS_DDR_CONTROL_2_1333
2756 CONFIG_SYS_DDR_CONTROL_2_800 2755 CONFIG_SYS_DDR_CONTROL_2_800
2757 CONFIG_SYS_DDR_CONTROL_800 2756 CONFIG_SYS_DDR_CONTROL_800
2758 CONFIG_SYS_DDR_CPO 2757 CONFIG_SYS_DDR_CPO
2759 CONFIG_SYS_DDR_CS0_BNDS 2758 CONFIG_SYS_DDR_CS0_BNDS
2760 CONFIG_SYS_DDR_CS0_CONFIG 2759 CONFIG_SYS_DDR_CS0_CONFIG
2761 CONFIG_SYS_DDR_CS0_CONFIG_1333 2760 CONFIG_SYS_DDR_CS0_CONFIG_1333
2762 CONFIG_SYS_DDR_CS0_CONFIG_2 2761 CONFIG_SYS_DDR_CS0_CONFIG_2
2763 CONFIG_SYS_DDR_CS0_CONFIG_800 2762 CONFIG_SYS_DDR_CS0_CONFIG_800
2764 CONFIG_SYS_DDR_CS1_BNDS 2763 CONFIG_SYS_DDR_CS1_BNDS
2765 CONFIG_SYS_DDR_CS1_CONFIG 2764 CONFIG_SYS_DDR_CS1_CONFIG
2766 CONFIG_SYS_DDR_CS1_CONFIG_2 2765 CONFIG_SYS_DDR_CS1_CONFIG_2
2767 CONFIG_SYS_DDR_CS2_BNDS 2766 CONFIG_SYS_DDR_CS2_BNDS
2768 CONFIG_SYS_DDR_CS2_CONFIG 2767 CONFIG_SYS_DDR_CS2_CONFIG
2769 CONFIG_SYS_DDR_CS3_BNDS 2768 CONFIG_SYS_DDR_CS3_BNDS
2770 CONFIG_SYS_DDR_CS3_CONFIG 2769 CONFIG_SYS_DDR_CS3_CONFIG
2771 CONFIG_SYS_DDR_DATA_INIT 2770 CONFIG_SYS_DDR_DATA_INIT
2772 CONFIG_SYS_DDR_ERR_DIS 2771 CONFIG_SYS_DDR_ERR_DIS
2773 CONFIG_SYS_DDR_ERR_INT_EN 2772 CONFIG_SYS_DDR_ERR_INT_EN
2774 CONFIG_SYS_DDR_INIT_ADDR 2773 CONFIG_SYS_DDR_INIT_ADDR
2775 CONFIG_SYS_DDR_INIT_EXT_ADDR 2774 CONFIG_SYS_DDR_INIT_EXT_ADDR
2776 CONFIG_SYS_DDR_INTERVAL 2775 CONFIG_SYS_DDR_INTERVAL
2777 CONFIG_SYS_DDR_INTERVAL_1000 2776 CONFIG_SYS_DDR_INTERVAL_1000
2778 CONFIG_SYS_DDR_INTERVAL_1200 2777 CONFIG_SYS_DDR_INTERVAL_1200
2779 CONFIG_SYS_DDR_INTERVAL_1333 2778 CONFIG_SYS_DDR_INTERVAL_1333
2780 CONFIG_SYS_DDR_INTERVAL_667 2779 CONFIG_SYS_DDR_INTERVAL_667
2781 CONFIG_SYS_DDR_INTERVAL_800 2780 CONFIG_SYS_DDR_INTERVAL_800
2782 CONFIG_SYS_DDR_INTERVAL_900 2781 CONFIG_SYS_DDR_INTERVAL_900
2783 CONFIG_SYS_DDR_MODE 2782 CONFIG_SYS_DDR_MODE
2784 CONFIG_SYS_DDR_MODE2 2783 CONFIG_SYS_DDR_MODE2
2785 CONFIG_SYS_DDR_MODE_1 2784 CONFIG_SYS_DDR_MODE_1
2786 CONFIG_SYS_DDR_MODE_1_1000 2785 CONFIG_SYS_DDR_MODE_1_1000
2787 CONFIG_SYS_DDR_MODE_1_1200 2786 CONFIG_SYS_DDR_MODE_1_1200
2788 CONFIG_SYS_DDR_MODE_1_1333 2787 CONFIG_SYS_DDR_MODE_1_1333
2789 CONFIG_SYS_DDR_MODE_1_667 2788 CONFIG_SYS_DDR_MODE_1_667
2790 CONFIG_SYS_DDR_MODE_1_800 2789 CONFIG_SYS_DDR_MODE_1_800
2791 CONFIG_SYS_DDR_MODE_1_900 2790 CONFIG_SYS_DDR_MODE_1_900
2792 CONFIG_SYS_DDR_MODE_2 2791 CONFIG_SYS_DDR_MODE_2
2793 CONFIG_SYS_DDR_MODE_2_1000 2792 CONFIG_SYS_DDR_MODE_2_1000
2794 CONFIG_SYS_DDR_MODE_2_1200 2793 CONFIG_SYS_DDR_MODE_2_1200
2795 CONFIG_SYS_DDR_MODE_2_1333 2794 CONFIG_SYS_DDR_MODE_2_1333
2796 CONFIG_SYS_DDR_MODE_2_667 2795 CONFIG_SYS_DDR_MODE_2_667
2797 CONFIG_SYS_DDR_MODE_2_800 2796 CONFIG_SYS_DDR_MODE_2_800
2798 CONFIG_SYS_DDR_MODE_2_900 2797 CONFIG_SYS_DDR_MODE_2_900
2799 CONFIG_SYS_DDR_MODE_CONTROL 2798 CONFIG_SYS_DDR_MODE_CONTROL
2800 CONFIG_SYS_DDR_MODE_CTL 2799 CONFIG_SYS_DDR_MODE_CTL
2801 CONFIG_SYS_DDR_MODE_WEAK 2800 CONFIG_SYS_DDR_MODE_WEAK
2802 CONFIG_SYS_DDR_OCD_CTRL 2801 CONFIG_SYS_DDR_OCD_CTRL
2803 CONFIG_SYS_DDR_OCD_STATUS 2802 CONFIG_SYS_DDR_OCD_STATUS
2804 CONFIG_SYS_DDR_RAW_TIMING 2803 CONFIG_SYS_DDR_RAW_TIMING
2805 CONFIG_SYS_DDR_RCW_1 2804 CONFIG_SYS_DDR_RCW_1
2806 CONFIG_SYS_DDR_RCW_2 2805 CONFIG_SYS_DDR_RCW_2
2807 CONFIG_SYS_DDR_SBE 2806 CONFIG_SYS_DDR_SBE
2808 CONFIG_SYS_DDR_SDRAM_BASE 2807 CONFIG_SYS_DDR_SDRAM_BASE
2809 CONFIG_SYS_DDR_SDRAM_BASE2 2808 CONFIG_SYS_DDR_SDRAM_BASE2
2810 CONFIG_SYS_DDR_SDRAM_CFG 2809 CONFIG_SYS_DDR_SDRAM_CFG
2811 CONFIG_SYS_DDR_SDRAM_CFG2 2810 CONFIG_SYS_DDR_SDRAM_CFG2
2812 CONFIG_SYS_DDR_SDRAM_CFG_2 2811 CONFIG_SYS_DDR_SDRAM_CFG_2
2813 CONFIG_SYS_DDR_SDRAM_CLK_CNTL 2812 CONFIG_SYS_DDR_SDRAM_CLK_CNTL
2814 CONFIG_SYS_DDR_SDRAM_INTERVAL 2813 CONFIG_SYS_DDR_SDRAM_INTERVAL
2815 CONFIG_SYS_DDR_SDRAM_MODE 2814 CONFIG_SYS_DDR_SDRAM_MODE
2816 CONFIG_SYS_DDR_SDRAM_MODE_2 2815 CONFIG_SYS_DDR_SDRAM_MODE_2
2817 CONFIG_SYS_DDR_SIZE 2816 CONFIG_SYS_DDR_SIZE
2818 CONFIG_SYS_DDR_SR_CNTR 2817 CONFIG_SYS_DDR_SR_CNTR
2819 CONFIG_SYS_DDR_TIMING_0 2818 CONFIG_SYS_DDR_TIMING_0
2820 CONFIG_SYS_DDR_TIMING_0_1000 2819 CONFIG_SYS_DDR_TIMING_0_1000
2821 CONFIG_SYS_DDR_TIMING_0_1200 2820 CONFIG_SYS_DDR_TIMING_0_1200
2822 CONFIG_SYS_DDR_TIMING_0_1333 2821 CONFIG_SYS_DDR_TIMING_0_1333
2823 CONFIG_SYS_DDR_TIMING_0_667 2822 CONFIG_SYS_DDR_TIMING_0_667
2824 CONFIG_SYS_DDR_TIMING_0_800 2823 CONFIG_SYS_DDR_TIMING_0_800
2825 CONFIG_SYS_DDR_TIMING_0_900 2824 CONFIG_SYS_DDR_TIMING_0_900
2826 CONFIG_SYS_DDR_TIMING_1 2825 CONFIG_SYS_DDR_TIMING_1
2827 CONFIG_SYS_DDR_TIMING_1_1000 2826 CONFIG_SYS_DDR_TIMING_1_1000
2828 CONFIG_SYS_DDR_TIMING_1_1200 2827 CONFIG_SYS_DDR_TIMING_1_1200
2829 CONFIG_SYS_DDR_TIMING_1_1333 2828 CONFIG_SYS_DDR_TIMING_1_1333
2830 CONFIG_SYS_DDR_TIMING_1_667 2829 CONFIG_SYS_DDR_TIMING_1_667
2831 CONFIG_SYS_DDR_TIMING_1_800 2830 CONFIG_SYS_DDR_TIMING_1_800
2832 CONFIG_SYS_DDR_TIMING_1_900 2831 CONFIG_SYS_DDR_TIMING_1_900
2833 CONFIG_SYS_DDR_TIMING_2 2832 CONFIG_SYS_DDR_TIMING_2
2834 CONFIG_SYS_DDR_TIMING_2_1000 2833 CONFIG_SYS_DDR_TIMING_2_1000
2835 CONFIG_SYS_DDR_TIMING_2_1200 2834 CONFIG_SYS_DDR_TIMING_2_1200
2836 CONFIG_SYS_DDR_TIMING_2_1333 2835 CONFIG_SYS_DDR_TIMING_2_1333
2837 CONFIG_SYS_DDR_TIMING_2_667 2836 CONFIG_SYS_DDR_TIMING_2_667
2838 CONFIG_SYS_DDR_TIMING_2_800 2837 CONFIG_SYS_DDR_TIMING_2_800
2839 CONFIG_SYS_DDR_TIMING_2_900 2838 CONFIG_SYS_DDR_TIMING_2_900
2840 CONFIG_SYS_DDR_TIMING_3 2839 CONFIG_SYS_DDR_TIMING_3
2841 CONFIG_SYS_DDR_TIMING_3_1000 2840 CONFIG_SYS_DDR_TIMING_3_1000
2842 CONFIG_SYS_DDR_TIMING_3_1200 2841 CONFIG_SYS_DDR_TIMING_3_1200
2843 CONFIG_SYS_DDR_TIMING_3_1333 2842 CONFIG_SYS_DDR_TIMING_3_1333
2844 CONFIG_SYS_DDR_TIMING_3_667 2843 CONFIG_SYS_DDR_TIMING_3_667
2845 CONFIG_SYS_DDR_TIMING_3_800 2844 CONFIG_SYS_DDR_TIMING_3_800
2846 CONFIG_SYS_DDR_TIMING_3_900 2845 CONFIG_SYS_DDR_TIMING_3_900
2847 CONFIG_SYS_DDR_TIMING_4 2846 CONFIG_SYS_DDR_TIMING_4
2848 CONFIG_SYS_DDR_TIMING_4_1333 2847 CONFIG_SYS_DDR_TIMING_4_1333
2849 CONFIG_SYS_DDR_TIMING_4_800 2848 CONFIG_SYS_DDR_TIMING_4_800
2850 CONFIG_SYS_DDR_TIMING_5 2849 CONFIG_SYS_DDR_TIMING_5
2851 CONFIG_SYS_DDR_TIMING_5_1333 2850 CONFIG_SYS_DDR_TIMING_5_1333
2852 CONFIG_SYS_DDR_TIMING_5_800 2851 CONFIG_SYS_DDR_TIMING_5_800
2853 CONFIG_SYS_DDR_WRITE_DATA_DELAY 2852 CONFIG_SYS_DDR_WRITE_DATA_DELAY
2854 CONFIG_SYS_DDR_WRLVL_CNTL 2853 CONFIG_SYS_DDR_WRLVL_CNTL
2855 CONFIG_SYS_DDR_WRLVL_CONTROL 2854 CONFIG_SYS_DDR_WRLVL_CONTROL
2856 CONFIG_SYS_DDR_WRLVL_CONTROL_1333 2855 CONFIG_SYS_DDR_WRLVL_CONTROL_1333
2857 CONFIG_SYS_DDR_WRLVL_CONTROL_667 2856 CONFIG_SYS_DDR_WRLVL_CONTROL_667
2858 CONFIG_SYS_DDR_WRLVL_CONTROL_800 2857 CONFIG_SYS_DDR_WRLVL_CONTROL_800
2859 CONFIG_SYS_DDR_ZQ_CNTL 2858 CONFIG_SYS_DDR_ZQ_CNTL
2860 CONFIG_SYS_DDR_ZQ_CONTROL 2859 CONFIG_SYS_DDR_ZQ_CONTROL
2861 CONFIG_SYS_DEBUG 2860 CONFIG_SYS_DEBUG
2862 CONFIG_SYS_DEBUG_SERVER_FW_ADDR 2861 CONFIG_SYS_DEBUG_SERVER_FW_ADDR
2863 CONFIG_SYS_DEBUG_SERVER_FW_IN_NOR 2862 CONFIG_SYS_DEBUG_SERVER_FW_IN_NOR
2864 CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS 2863 CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS
2865 CONFIG_SYS_DEFAULT_VIDEO_MODE 2864 CONFIG_SYS_DEFAULT_VIDEO_MODE
2866 CONFIG_SYS_DEF_EEPROM_ADDR 2865 CONFIG_SYS_DEF_EEPROM_ADDR
2867 CONFIG_SYS_DEVICE_NULLDEV 2866 CONFIG_SYS_DEVICE_NULLDEV
2868 CONFIG_SYS_DFU_DATA_BUF_SIZE 2867 CONFIG_SYS_DFU_DATA_BUF_SIZE
2869 CONFIG_SYS_DFU_MAX_FILE_SIZE 2868 CONFIG_SYS_DFU_MAX_FILE_SIZE
2870 CONFIG_SYS_DIAG_ADDR 2869 CONFIG_SYS_DIAG_ADDR
2871 CONFIG_SYS_DIALOG_PMIC_I2C_ADDR 2870 CONFIG_SYS_DIALOG_PMIC_I2C_ADDR
2872 CONFIG_SYS_DIMM_SLOTS_PER_CTLR 2871 CONFIG_SYS_DIMM_SLOTS_PER_CTLR
2873 CONFIG_SYS_DIRECT_FLASH_NFS 2872 CONFIG_SYS_DIRECT_FLASH_NFS
2874 CONFIG_SYS_DIRECT_FLASH_TFTP 2873 CONFIG_SYS_DIRECT_FLASH_TFTP
2875 CONFIG_SYS_DISCOVER_PHY 2874 CONFIG_SYS_DISCOVER_PHY
2876 CONFIG_SYS_DIU_ADDR 2875 CONFIG_SYS_DIU_ADDR
2877 CONFIG_SYS_DM36x_PINMUX0 2876 CONFIG_SYS_DM36x_PINMUX0
2878 CONFIG_SYS_DM36x_PINMUX1 2877 CONFIG_SYS_DM36x_PINMUX1
2879 CONFIG_SYS_DM36x_PINMUX2 2878 CONFIG_SYS_DM36x_PINMUX2
2880 CONFIG_SYS_DM36x_PINMUX3 2879 CONFIG_SYS_DM36x_PINMUX3
2881 CONFIG_SYS_DM36x_PINMUX4 2880 CONFIG_SYS_DM36x_PINMUX4
2882 CONFIG_SYS_DM36x_PLL1_PREDIV 2881 CONFIG_SYS_DM36x_PLL1_PREDIV
2883 CONFIG_SYS_DM36x_PLL2_PREDIV 2882 CONFIG_SYS_DM36x_PLL2_PREDIV
2884 CONFIG_SYS_DMA_USE_INTSRAM 2883 CONFIG_SYS_DMA_USE_INTSRAM
2885 CONFIG_SYS_DP501_BASE 2884 CONFIG_SYS_DP501_BASE
2886 CONFIG_SYS_DP501_DIFFERENTIAL 2885 CONFIG_SYS_DP501_DIFFERENTIAL
2887 CONFIG_SYS_DP501_I2C 2886 CONFIG_SYS_DP501_I2C
2888 CONFIG_SYS_DP501_VCAPCTRL0 2887 CONFIG_SYS_DP501_VCAPCTRL0
2889 CONFIG_SYS_DPAA_DCE 2888 CONFIG_SYS_DPAA_DCE
2890 CONFIG_SYS_DPAA_FMAN 2889 CONFIG_SYS_DPAA_FMAN
2891 CONFIG_SYS_DPAA_PME 2890 CONFIG_SYS_DPAA_PME
2892 CONFIG_SYS_DPAA_QBMAN 2891 CONFIG_SYS_DPAA_QBMAN
2893 CONFIG_SYS_DPAA_RMAN 2892 CONFIG_SYS_DPAA_RMAN
2894 CONFIG_SYS_DP_DDR_BASE 2893 CONFIG_SYS_DP_DDR_BASE
2895 CONFIG_SYS_DP_DDR_BASE_PHY 2894 CONFIG_SYS_DP_DDR_BASE_PHY
2896 CONFIG_SYS_DRAMSZ 2895 CONFIG_SYS_DRAMSZ
2897 CONFIG_SYS_DRAMSZ1 2896 CONFIG_SYS_DRAMSZ1
2898 CONFIG_SYS_DRAM_BASE 2897 CONFIG_SYS_DRAM_BASE
2899 CONFIG_SYS_DRAM_SIZE 2898 CONFIG_SYS_DRAM_SIZE
2900 CONFIG_SYS_DRAM_TEST 2899 CONFIG_SYS_DRAM_TEST
2901 CONFIG_SYS_DSPI_CS0 2900 CONFIG_SYS_DSPI_CS0
2902 CONFIG_SYS_DSPI_CS2 2901 CONFIG_SYS_DSPI_CS2
2903 CONFIG_SYS_DSPI_CTAR0 2902 CONFIG_SYS_DSPI_CTAR0
2904 CONFIG_SYS_DSPI_CTAR1 2903 CONFIG_SYS_DSPI_CTAR1
2905 CONFIG_SYS_DSPI_CTAR2 2904 CONFIG_SYS_DSPI_CTAR2
2906 CONFIG_SYS_DSPI_CTAR3 2905 CONFIG_SYS_DSPI_CTAR3
2907 CONFIG_SYS_DSPI_CTAR4 2906 CONFIG_SYS_DSPI_CTAR4
2908 CONFIG_SYS_DSPI_CTAR5 2907 CONFIG_SYS_DSPI_CTAR5
2909 CONFIG_SYS_DSPI_CTAR6 2908 CONFIG_SYS_DSPI_CTAR6
2910 CONFIG_SYS_DSPI_CTAR7 2909 CONFIG_SYS_DSPI_CTAR7
2911 CONFIG_SYS_DV_CLKMODE 2910 CONFIG_SYS_DV_CLKMODE
2912 CONFIG_SYS_DV_NOR_BOOT_CFG 2911 CONFIG_SYS_DV_NOR_BOOT_CFG
2913 CONFIG_SYS_EBI_CFGR_VAL 2912 CONFIG_SYS_EBI_CFGR_VAL
2914 CONFIG_SYS_EBI_CSA_VAL 2913 CONFIG_SYS_EBI_CSA_VAL
2915 CONFIG_SYS_EEPROM_BASE 2914 CONFIG_SYS_EEPROM_BASE
2916 CONFIG_SYS_EEPROM_BUS_NUM 2915 CONFIG_SYS_EEPROM_BUS_NUM
2917 CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 2916 CONFIG_SYS_EEPROM_PAGE_WRITE_BITS
2918 CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 2917 CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
2919 CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE 2918 CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
2920 CONFIG_SYS_EEPROM_SIZE 2919 CONFIG_SYS_EEPROM_SIZE
2921 CONFIG_SYS_EEPROM_WREN 2920 CONFIG_SYS_EEPROM_WREN
2922 CONFIG_SYS_EHCI_USB1_ADDR 2921 CONFIG_SYS_EHCI_USB1_ADDR
2923 CONFIG_SYS_ELBC_BASE 2922 CONFIG_SYS_ELBC_BASE
2924 CONFIG_SYS_ELBC_BASE_PHYS 2923 CONFIG_SYS_ELBC_BASE_PHYS
2925 CONFIG_SYS_ELO3_DMA3 2924 CONFIG_SYS_ELO3_DMA3
2926 CONFIG_SYS_EMAC_TI_CLKDIV 2925 CONFIG_SYS_EMAC_TI_CLKDIV
2927 CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS 2926 CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
2928 CONFIG_SYS_ENABLE_PADS_ALL 2927 CONFIG_SYS_ENABLE_PADS_ALL
2929 CONFIG_SYS_ENET_BD_BASE 2928 CONFIG_SYS_ENET_BD_BASE
2930 CONFIG_SYS_ENV_ADDR 2929 CONFIG_SYS_ENV_ADDR
2931 CONFIG_SYS_ENV_SECT_SIZE 2930 CONFIG_SYS_ENV_SECT_SIZE
2932 CONFIG_SYS_EPLD_BASE 2931 CONFIG_SYS_EPLD_BASE
2933 CONFIG_SYS_ETHOC_BASE 2932 CONFIG_SYS_ETHOC_BASE
2934 CONFIG_SYS_ETHOC_BUFFER_ADDR 2933 CONFIG_SYS_ETHOC_BUFFER_ADDR
2935 CONFIG_SYS_ETVPE_CLK 2934 CONFIG_SYS_ETVPE_CLK
2936 CONFIG_SYS_EXCEPTION_VECTORS_HIGH 2935 CONFIG_SYS_EXCEPTION_VECTORS_HIGH
2937 CONFIG_SYS_EXTRA_ENV_RELOC 2936 CONFIG_SYS_EXTRA_ENV_RELOC
2938 CONFIG_SYS_FAST_CLK 2937 CONFIG_SYS_FAST_CLK
2939 CONFIG_SYS_FAULT_ECHO_LINK_DOWN 2938 CONFIG_SYS_FAULT_ECHO_LINK_DOWN
2940 CONFIG_SYS_FAULT_MII_ADDR 2939 CONFIG_SYS_FAULT_MII_ADDR
2941 CONFIG_SYS_FCC_PSMR 2940 CONFIG_SYS_FCC_PSMR
2942 CONFIG_SYS_FDC_DRIVE_NUMBER 2941 CONFIG_SYS_FDC_DRIVE_NUMBER
2943 CONFIG_SYS_FDC_HW_INIT 2942 CONFIG_SYS_FDC_HW_INIT
2944 CONFIG_SYS_FDT_ADDR 2943 CONFIG_SYS_FDT_ADDR
2945 CONFIG_SYS_FDT_BASE 2944 CONFIG_SYS_FDT_BASE
2946 CONFIG_SYS_FDT_LOAD_ADDR 2945 CONFIG_SYS_FDT_LOAD_ADDR
2947 CONFIG_SYS_FDT_PAD 2946 CONFIG_SYS_FDT_PAD
2948 CONFIG_SYS_FDT_SIZE 2947 CONFIG_SYS_FDT_SIZE
2949 CONFIG_SYS_FEC0_IOBASE 2948 CONFIG_SYS_FEC0_IOBASE
2950 CONFIG_SYS_FEC0_MIIBASE 2949 CONFIG_SYS_FEC0_MIIBASE
2951 CONFIG_SYS_FEC0_PHYADDR 2950 CONFIG_SYS_FEC0_PHYADDR
2952 CONFIG_SYS_FEC0_PINMUX 2951 CONFIG_SYS_FEC0_PINMUX
2953 CONFIG_SYS_FEC1_IOBASE 2952 CONFIG_SYS_FEC1_IOBASE
2954 CONFIG_SYS_FEC1_MIIBASE 2953 CONFIG_SYS_FEC1_MIIBASE
2955 CONFIG_SYS_FEC1_PHYADDR 2954 CONFIG_SYS_FEC1_PHYADDR
2956 CONFIG_SYS_FEC1_PINMUX 2955 CONFIG_SYS_FEC1_PINMUX
2957 CONFIG_SYS_FECI2C 2956 CONFIG_SYS_FECI2C
2958 CONFIG_SYS_FEC_BUF_USE_SRAM 2957 CONFIG_SYS_FEC_BUF_USE_SRAM
2959 CONFIG_SYS_FEC_FULL_MII 2958 CONFIG_SYS_FEC_FULL_MII
2960 CONFIG_SYS_FEC_NO_SHARED_PHY 2959 CONFIG_SYS_FEC_NO_SHARED_PHY
2961 CONFIG_SYS_FIFO_BASE 2960 CONFIG_SYS_FIFO_BASE
2962 CONFIG_SYS_FIXED_PHY_ADDR 2961 CONFIG_SYS_FIXED_PHY_ADDR
2963 CONFIG_SYS_FIXED_PHY_PORT 2962 CONFIG_SYS_FIXED_PHY_PORT
2964 CONFIG_SYS_FIXED_PHY_PORTS 2963 CONFIG_SYS_FIXED_PHY_PORTS
2965 CONFIG_SYS_FLASH0 2964 CONFIG_SYS_FLASH0
2966 CONFIG_SYS_FLASH0_BASE 2965 CONFIG_SYS_FLASH0_BASE
2967 CONFIG_SYS_FLASH1 2966 CONFIG_SYS_FLASH1
2968 CONFIG_SYS_FLASH1_BASE 2967 CONFIG_SYS_FLASH1_BASE
2969 CONFIG_SYS_FLASH1_BASE_PHYS 2968 CONFIG_SYS_FLASH1_BASE_PHYS
2970 CONFIG_SYS_FLASH1_BASE_PHYS_EARLY 2969 CONFIG_SYS_FLASH1_BASE_PHYS_EARLY
2971 CONFIG_SYS_FLASHBOOT 2970 CONFIG_SYS_FLASHBOOT
2972 CONFIG_SYS_FLASH_ADDR_BASE 2971 CONFIG_SYS_FLASH_ADDR_BASE
2973 CONFIG_SYS_FLASH_AMD_CHECK_DQ7 2972 CONFIG_SYS_FLASH_AMD_CHECK_DQ7
2974 CONFIG_SYS_FLASH_AUTOPROTECT_LIST 2973 CONFIG_SYS_FLASH_AUTOPROTECT_LIST
2975 CONFIG_SYS_FLASH_BANKS_LIST 2974 CONFIG_SYS_FLASH_BANKS_LIST
2976 CONFIG_SYS_FLASH_BANKS_SIZES 2975 CONFIG_SYS_FLASH_BANKS_SIZES
2977 CONFIG_SYS_FLASH_BANK_SIZE 2976 CONFIG_SYS_FLASH_BANK_SIZE
2978 CONFIG_SYS_FLASH_BASE 2977 CONFIG_SYS_FLASH_BASE
2979 CONFIG_SYS_FLASH_BASE0 2978 CONFIG_SYS_FLASH_BASE0
2980 CONFIG_SYS_FLASH_BASE1 2979 CONFIG_SYS_FLASH_BASE1
2981 CONFIG_SYS_FLASH_BASE2 2980 CONFIG_SYS_FLASH_BASE2
2982 CONFIG_SYS_FLASH_BASE_PHYS 2981 CONFIG_SYS_FLASH_BASE_PHYS
2983 CONFIG_SYS_FLASH_BASE_PHYS_EARLY 2982 CONFIG_SYS_FLASH_BASE_PHYS_EARLY
2984 CONFIG_SYS_FLASH_BASE_PHYS_LOW 2983 CONFIG_SYS_FLASH_BASE_PHYS_LOW
2985 CONFIG_SYS_FLASH_BR_PRELIM 2984 CONFIG_SYS_FLASH_BR_PRELIM
2986 CONFIG_SYS_FLASH_CFI 2985 CONFIG_SYS_FLASH_CFI
2987 CONFIG_SYS_FLASH_CFI_AMD_RESET 2986 CONFIG_SYS_FLASH_CFI_AMD_RESET
2988 CONFIG_SYS_FLASH_CFI_BROKEN_TABLE 2987 CONFIG_SYS_FLASH_CFI_BROKEN_TABLE
2989 CONFIG_SYS_FLASH_CFI_NONBLOCK 2988 CONFIG_SYS_FLASH_CFI_NONBLOCK
2990 CONFIG_SYS_FLASH_CFI_WIDTH 2989 CONFIG_SYS_FLASH_CFI_WIDTH
2991 CONFIG_SYS_FLASH_CHECKSUM 2990 CONFIG_SYS_FLASH_CHECKSUM
2992 CONFIG_SYS_FLASH_CHECK_BLANK_BEFORE_ERASE 2991 CONFIG_SYS_FLASH_CHECK_BLANK_BEFORE_ERASE
2993 CONFIG_SYS_FLASH_EMPTY_INFO 2992 CONFIG_SYS_FLASH_EMPTY_INFO
2994 CONFIG_SYS_FLASH_ERASE_TOUT 2993 CONFIG_SYS_FLASH_ERASE_TOUT
2995 CONFIG_SYS_FLASH_LEGACY_256Kx8 2994 CONFIG_SYS_FLASH_LEGACY_256Kx8
2996 CONFIG_SYS_FLASH_LEGACY_512Kx16 2995 CONFIG_SYS_FLASH_LEGACY_512Kx16
2997 CONFIG_SYS_FLASH_LEGACY_512Kx8 2996 CONFIG_SYS_FLASH_LEGACY_512Kx8
2998 CONFIG_SYS_FLASH_LOCK_TOUT 2997 CONFIG_SYS_FLASH_LOCK_TOUT
2999 CONFIG_SYS_FLASH_OR_PRELIM 2998 CONFIG_SYS_FLASH_OR_PRELIM
3000 CONFIG_SYS_FLASH_PARMSECT_SZ 2999 CONFIG_SYS_FLASH_PARMSECT_SZ
3001 CONFIG_SYS_FLASH_PROTECTION 3000 CONFIG_SYS_FLASH_PROTECTION
3002 CONFIG_SYS_FLASH_QUIET_TEST 3001 CONFIG_SYS_FLASH_QUIET_TEST
3003 CONFIG_SYS_FLASH_SECT_SIZE 3002 CONFIG_SYS_FLASH_SECT_SIZE
3004 CONFIG_SYS_FLASH_SECT_SZ 3003 CONFIG_SYS_FLASH_SECT_SZ
3005 CONFIG_SYS_FLASH_SIZE 3004 CONFIG_SYS_FLASH_SIZE
3006 CONFIG_SYS_FLASH_UNLOCK_TOUT 3005 CONFIG_SYS_FLASH_UNLOCK_TOUT
3007 CONFIG_SYS_FLASH_USE_BUFFER_WRITE 3006 CONFIG_SYS_FLASH_USE_BUFFER_WRITE
3008 CONFIG_SYS_FLASH_VERIFY_AFTER_WRITE 3007 CONFIG_SYS_FLASH_VERIFY_AFTER_WRITE
3009 CONFIG_SYS_FLASH_WRITE_TOUT 3008 CONFIG_SYS_FLASH_WRITE_TOUT
3010 CONFIG_SYS_FLYCNFG_VAL 3009 CONFIG_SYS_FLYCNFG_VAL
3011 CONFIG_SYS_FM1_10GEC1_PHY_ADDR 3010 CONFIG_SYS_FM1_10GEC1_PHY_ADDR
3012 CONFIG_SYS_FM1_10GEC2_PHY_ADDR 3011 CONFIG_SYS_FM1_10GEC2_PHY_ADDR
3013 CONFIG_SYS_FM1_CLK 3012 CONFIG_SYS_FM1_CLK
3014 CONFIG_SYS_FM1_DTSEC1_MDIO_ADDR 3013 CONFIG_SYS_FM1_DTSEC1_MDIO_ADDR
3015 CONFIG_SYS_FM1_DTSEC1_PHY_ADDR 3014 CONFIG_SYS_FM1_DTSEC1_PHY_ADDR
3016 CONFIG_SYS_FM1_DTSEC1_RISER_PHY_ADDR 3015 CONFIG_SYS_FM1_DTSEC1_RISER_PHY_ADDR
3017 CONFIG_SYS_FM1_DTSEC2_PHY_ADDR 3016 CONFIG_SYS_FM1_DTSEC2_PHY_ADDR
3018 CONFIG_SYS_FM1_DTSEC2_RISER_PHY_ADDR 3017 CONFIG_SYS_FM1_DTSEC2_RISER_PHY_ADDR
3019 CONFIG_SYS_FM1_DTSEC3_PHY_ADDR 3018 CONFIG_SYS_FM1_DTSEC3_PHY_ADDR
3020 CONFIG_SYS_FM1_DTSEC3_RISER_PHY_ADDR 3019 CONFIG_SYS_FM1_DTSEC3_RISER_PHY_ADDR
3021 CONFIG_SYS_FM1_DTSEC4_PHY_ADDR 3020 CONFIG_SYS_FM1_DTSEC4_PHY_ADDR
3022 CONFIG_SYS_FM1_DTSEC4_RISER_PHY_ADDR 3021 CONFIG_SYS_FM1_DTSEC4_RISER_PHY_ADDR
3023 CONFIG_SYS_FM1_DTSEC5_PHY_ADDR 3022 CONFIG_SYS_FM1_DTSEC5_PHY_ADDR
3024 CONFIG_SYS_FM1_DTSEC_MDIO_ADDR 3023 CONFIG_SYS_FM1_DTSEC_MDIO_ADDR
3025 CONFIG_SYS_FM1_ONBOARD_PHY1_ADDR 3024 CONFIG_SYS_FM1_ONBOARD_PHY1_ADDR
3026 CONFIG_SYS_FM1_ONBOARD_PHY2_ADDR 3025 CONFIG_SYS_FM1_ONBOARD_PHY2_ADDR
3027 CONFIG_SYS_FM1_QSGMII11_PHY_ADDR 3026 CONFIG_SYS_FM1_QSGMII11_PHY_ADDR
3028 CONFIG_SYS_FM1_QSGMII21_PHY_ADDR 3027 CONFIG_SYS_FM1_QSGMII21_PHY_ADDR
3029 CONFIG_SYS_FM1_TGEC_MDIO_ADDR 3028 CONFIG_SYS_FM1_TGEC_MDIO_ADDR
3030 CONFIG_SYS_FM2_10GEC1_PHY_ADDR 3029 CONFIG_SYS_FM2_10GEC1_PHY_ADDR
3031 CONFIG_SYS_FM2_CLK 3030 CONFIG_SYS_FM2_CLK
3032 CONFIG_SYS_FM2_DTSEC1_PHY_ADDR 3031 CONFIG_SYS_FM2_DTSEC1_PHY_ADDR
3033 CONFIG_SYS_FM2_DTSEC2_PHY_ADDR 3032 CONFIG_SYS_FM2_DTSEC2_PHY_ADDR
3034 CONFIG_SYS_FM2_DTSEC3_PHY_ADDR 3033 CONFIG_SYS_FM2_DTSEC3_PHY_ADDR
3035 CONFIG_SYS_FM2_DTSEC4_PHY_ADDR 3034 CONFIG_SYS_FM2_DTSEC4_PHY_ADDR
3036 CONFIG_SYS_FM2_DTSEC_MDIO_ADDR 3035 CONFIG_SYS_FM2_DTSEC_MDIO_ADDR
3037 CONFIG_SYS_FM2_TGEC_MDIO_ADDR 3036 CONFIG_SYS_FM2_TGEC_MDIO_ADDR
3038 CONFIG_SYS_FMAN_FW_ADDR 3037 CONFIG_SYS_FMAN_FW_ADDR
3039 CONFIG_SYS_FMAN_V3 3038 CONFIG_SYS_FMAN_V3
3040 CONFIG_SYS_FM_MURAM_SIZE 3039 CONFIG_SYS_FM_MURAM_SIZE
3041 CONFIG_SYS_FORM_3U_CPCI 3040 CONFIG_SYS_FORM_3U_CPCI
3042 CONFIG_SYS_FORM_3U_VPX 3041 CONFIG_SYS_FORM_3U_VPX
3043 CONFIG_SYS_FORM_6U_CPCI 3042 CONFIG_SYS_FORM_6U_CPCI
3044 CONFIG_SYS_FORM_6U_VPX 3043 CONFIG_SYS_FORM_6U_VPX
3045 CONFIG_SYS_FORM_AMC 3044 CONFIG_SYS_FORM_AMC
3046 CONFIG_SYS_FORM_ATCA_AMC 3045 CONFIG_SYS_FORM_ATCA_AMC
3047 CONFIG_SYS_FORM_ATCA_PMC 3046 CONFIG_SYS_FORM_ATCA_PMC
3048 CONFIG_SYS_FORM_CUSTOM 3047 CONFIG_SYS_FORM_CUSTOM
3049 CONFIG_SYS_FORM_PCI 3048 CONFIG_SYS_FORM_PCI
3050 CONFIG_SYS_FORM_PCI_EXPRESS 3049 CONFIG_SYS_FORM_PCI_EXPRESS
3051 CONFIG_SYS_FORM_PMC 3050 CONFIG_SYS_FORM_PMC
3052 CONFIG_SYS_FORM_PMC_XMC 3051 CONFIG_SYS_FORM_PMC_XMC
3053 CONFIG_SYS_FORM_VME 3052 CONFIG_SYS_FORM_VME
3054 CONFIG_SYS_FORM_XMC 3053 CONFIG_SYS_FORM_XMC
3055 CONFIG_SYS_FPGA0_BASE 3054 CONFIG_SYS_FPGA0_BASE
3056 CONFIG_SYS_FPGA0_SIZE 3055 CONFIG_SYS_FPGA0_SIZE
3057 CONFIG_SYS_FPGAREG_DATE 3056 CONFIG_SYS_FPGAREG_DATE
3058 CONFIG_SYS_FPGAREG_DIPSW 3057 CONFIG_SYS_FPGAREG_DIPSW
3059 CONFIG_SYS_FPGAREG_FREQ 3058 CONFIG_SYS_FPGAREG_FREQ
3060 CONFIG_SYS_FPGAREG_RESET 3059 CONFIG_SYS_FPGAREG_RESET
3061 CONFIG_SYS_FPGAREG_RESET_CODE 3060 CONFIG_SYS_FPGAREG_RESET_CODE
3062 CONFIG_SYS_FPGA_AMASK 3061 CONFIG_SYS_FPGA_AMASK
3063 CONFIG_SYS_FPGA_BASE 3062 CONFIG_SYS_FPGA_BASE
3064 CONFIG_SYS_FPGA_BASE_PHYS 3063 CONFIG_SYS_FPGA_BASE_PHYS
3065 CONFIG_SYS_FPGA_CHECK_BUSY 3064 CONFIG_SYS_FPGA_CHECK_BUSY
3066 CONFIG_SYS_FPGA_CHECK_CTRLC 3065 CONFIG_SYS_FPGA_CHECK_CTRLC
3067 CONFIG_SYS_FPGA_CHECK_ERROR 3066 CONFIG_SYS_FPGA_CHECK_ERROR
3068 CONFIG_SYS_FPGA_COUNT 3067 CONFIG_SYS_FPGA_COUNT
3069 CONFIG_SYS_FPGA_CSOR 3068 CONFIG_SYS_FPGA_CSOR
3070 CONFIG_SYS_FPGA_CSPR 3069 CONFIG_SYS_FPGA_CSPR
3071 CONFIG_SYS_FPGA_CSPR_EXT 3070 CONFIG_SYS_FPGA_CSPR_EXT
3072 CONFIG_SYS_FPGA_DONE 3071 CONFIG_SYS_FPGA_DONE
3073 CONFIG_SYS_FPGA_FTIM0 3072 CONFIG_SYS_FPGA_FTIM0
3074 CONFIG_SYS_FPGA_FTIM1 3073 CONFIG_SYS_FPGA_FTIM1
3075 CONFIG_SYS_FPGA_FTIM2 3074 CONFIG_SYS_FPGA_FTIM2
3076 CONFIG_SYS_FPGA_FTIM3 3075 CONFIG_SYS_FPGA_FTIM3
3077 CONFIG_SYS_FPGA_IS_PROTO 3076 CONFIG_SYS_FPGA_IS_PROTO
3078 CONFIG_SYS_FPGA_NO_RFL_HI 3077 CONFIG_SYS_FPGA_NO_RFL_HI
3079 CONFIG_SYS_FPGA_PROG 3078 CONFIG_SYS_FPGA_PROG
3080 CONFIG_SYS_FPGA_PROG_FEEDBACK 3079 CONFIG_SYS_FPGA_PROG_FEEDBACK
3081 CONFIG_SYS_FPGA_PROG_TIME 3080 CONFIG_SYS_FPGA_PROG_TIME
3082 CONFIG_SYS_FPGA_PTR 3081 CONFIG_SYS_FPGA_PTR
3083 CONFIG_SYS_FPGA_SIZE 3082 CONFIG_SYS_FPGA_SIZE
3084 CONFIG_SYS_FPGA_WAIT 3083 CONFIG_SYS_FPGA_WAIT
3085 CONFIG_SYS_FPGA_WAIT_BUSY 3084 CONFIG_SYS_FPGA_WAIT_BUSY
3086 CONFIG_SYS_FPGA_WAIT_CONFIG 3085 CONFIG_SYS_FPGA_WAIT_CONFIG
3087 CONFIG_SYS_FPGA_WAIT_INIT 3086 CONFIG_SYS_FPGA_WAIT_INIT
3088 CONFIG_SYS_FSL_AIOP1_BASE 3087 CONFIG_SYS_FSL_AIOP1_BASE
3089 CONFIG_SYS_FSL_AIOP1_SIZE 3088 CONFIG_SYS_FSL_AIOP1_SIZE
3090 CONFIG_SYS_FSL_B4860QDS_XFI_ERR 3089 CONFIG_SYS_FSL_B4860QDS_XFI_ERR
3091 CONFIG_SYS_FSL_BMAN_ADDR 3090 CONFIG_SYS_FSL_BMAN_ADDR
3092 CONFIG_SYS_FSL_BMAN_OFFSET 3091 CONFIG_SYS_FSL_BMAN_OFFSET
3093 CONFIG_SYS_FSL_BOOTROM_BASE 3092 CONFIG_SYS_FSL_BOOTROM_BASE
3094 CONFIG_SYS_FSL_BOOTROM_SIZE 3093 CONFIG_SYS_FSL_BOOTROM_SIZE
3095 CONFIG_SYS_FSL_CCSR_BASE 3094 CONFIG_SYS_FSL_CCSR_BASE
3096 CONFIG_SYS_FSL_CCSR_GUR_BE 3095 CONFIG_SYS_FSL_CCSR_GUR_BE
3097 CONFIG_SYS_FSL_CCSR_GUR_LE 3096 CONFIG_SYS_FSL_CCSR_GUR_LE
3098 CONFIG_SYS_FSL_CCSR_SCFG_BE 3097 CONFIG_SYS_FSL_CCSR_SCFG_BE
3099 CONFIG_SYS_FSL_CCSR_SCFG_LE 3098 CONFIG_SYS_FSL_CCSR_SCFG_LE
3100 CONFIG_SYS_FSL_CCSR_SIZE 3099 CONFIG_SYS_FSL_CCSR_SIZE
3101 CONFIG_SYS_FSL_CH3_CLK_CTRL_ADDR 3100 CONFIG_SYS_FSL_CH3_CLK_CTRL_ADDR
3102 CONFIG_SYS_FSL_CH3_CLK_GRPA_ADDR 3101 CONFIG_SYS_FSL_CH3_CLK_GRPA_ADDR
3103 CONFIG_SYS_FSL_CH3_CLK_GRPB_ADDR 3102 CONFIG_SYS_FSL_CH3_CLK_GRPB_ADDR
3104 CONFIG_SYS_FSL_CLK_ADDR 3103 CONFIG_SYS_FSL_CLK_ADDR
3105 CONFIG_SYS_FSL_CLUSTER_1_L2 3104 CONFIG_SYS_FSL_CLUSTER_1_L2
3106 CONFIG_SYS_FSL_CLUSTER_1_L2_OFFSET 3105 CONFIG_SYS_FSL_CLUSTER_1_L2_OFFSET
3107 CONFIG_SYS_FSL_CLUSTER_CLOCKS 3106 CONFIG_SYS_FSL_CLUSTER_CLOCKS
3108 CONFIG_SYS_FSL_CORENET_CCM_ADDR 3107 CONFIG_SYS_FSL_CORENET_CCM_ADDR
3109 CONFIG_SYS_FSL_CORENET_CCM_OFFSET 3108 CONFIG_SYS_FSL_CORENET_CCM_OFFSET
3110 CONFIG_SYS_FSL_CORENET_CLK_ADDR 3109 CONFIG_SYS_FSL_CORENET_CLK_ADDR
3111 CONFIG_SYS_FSL_CORENET_CLK_OFFSET 3110 CONFIG_SYS_FSL_CORENET_CLK_OFFSET
3112 CONFIG_SYS_FSL_CORENET_PMAN 3111 CONFIG_SYS_FSL_CORENET_PMAN
3113 CONFIG_SYS_FSL_CORENET_PMAN1_OFFSET 3112 CONFIG_SYS_FSL_CORENET_PMAN1_OFFSET
3114 CONFIG_SYS_FSL_CORENET_PMAN2_OFFSET 3113 CONFIG_SYS_FSL_CORENET_PMAN2_OFFSET
3115 CONFIG_SYS_FSL_CORENET_PMAN3_OFFSET 3114 CONFIG_SYS_FSL_CORENET_PMAN3_OFFSET
3116 CONFIG_SYS_FSL_CORENET_PME_ADDR 3115 CONFIG_SYS_FSL_CORENET_PME_ADDR
3117 CONFIG_SYS_FSL_CORENET_PME_OFFSET 3116 CONFIG_SYS_FSL_CORENET_PME_OFFSET
3118 CONFIG_SYS_FSL_CORENET_RCPM_ADDR 3117 CONFIG_SYS_FSL_CORENET_RCPM_ADDR
3119 CONFIG_SYS_FSL_CORENET_RCPM_OFFSET 3118 CONFIG_SYS_FSL_CORENET_RCPM_OFFSET
3120 CONFIG_SYS_FSL_CORENET_RMAN_ADDR 3119 CONFIG_SYS_FSL_CORENET_RMAN_ADDR
3121 CONFIG_SYS_FSL_CORENET_RMAN_OFFSET 3120 CONFIG_SYS_FSL_CORENET_RMAN_OFFSET
3122 CONFIG_SYS_FSL_CORENET_SERDES2_ADDR 3121 CONFIG_SYS_FSL_CORENET_SERDES2_ADDR
3123 CONFIG_SYS_FSL_CORENET_SERDES2_OFFSET 3122 CONFIG_SYS_FSL_CORENET_SERDES2_OFFSET
3124 CONFIG_SYS_FSL_CORENET_SERDES3_ADDR 3123 CONFIG_SYS_FSL_CORENET_SERDES3_ADDR
3125 CONFIG_SYS_FSL_CORENET_SERDES3_OFFSET 3124 CONFIG_SYS_FSL_CORENET_SERDES3_OFFSET
3126 CONFIG_SYS_FSL_CORENET_SERDES4_ADDR 3125 CONFIG_SYS_FSL_CORENET_SERDES4_ADDR
3127 CONFIG_SYS_FSL_CORENET_SERDES4_OFFSET 3126 CONFIG_SYS_FSL_CORENET_SERDES4_OFFSET
3128 CONFIG_SYS_FSL_CORENET_SERDES_ADDR 3127 CONFIG_SYS_FSL_CORENET_SERDES_ADDR
3129 CONFIG_SYS_FSL_CORENET_SERDES_OFFSET 3128 CONFIG_SYS_FSL_CORENET_SERDES_OFFSET
3130 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY 3129 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY
3131 CONFIG_SYS_FSL_CORES_PER_CLUSTER 3130 CONFIG_SYS_FSL_CORES_PER_CLUSTER
3132 CONFIG_SYS_FSL_CPC 3131 CONFIG_SYS_FSL_CPC
3133 CONFIG_SYS_FSL_CPC_ADDR 3132 CONFIG_SYS_FSL_CPC_ADDR
3134 CONFIG_SYS_FSL_CPC_OFFSET 3133 CONFIG_SYS_FSL_CPC_OFFSET
3135 CONFIG_SYS_FSL_CSU_ADDR 3134 CONFIG_SYS_FSL_CSU_ADDR
3136 CONFIG_SYS_FSL_DCFG_ADDR 3135 CONFIG_SYS_FSL_DCFG_ADDR
3137 CONFIG_SYS_FSL_DCSR_BASE 3136 CONFIG_SYS_FSL_DCSR_BASE
3138 CONFIG_SYS_FSL_DCSR_DDR2_ADDR 3137 CONFIG_SYS_FSL_DCSR_DDR2_ADDR
3139 CONFIG_SYS_FSL_DCSR_DDR3_ADDR 3138 CONFIG_SYS_FSL_DCSR_DDR3_ADDR
3140 CONFIG_SYS_FSL_DCSR_DDR4_ADDR 3139 CONFIG_SYS_FSL_DCSR_DDR4_ADDR
3141 CONFIG_SYS_FSL_DCSR_DDR_ADDR 3140 CONFIG_SYS_FSL_DCSR_DDR_ADDR
3142 CONFIG_SYS_FSL_DCSR_SIZE 3141 CONFIG_SYS_FSL_DCSR_SIZE
3143 CONFIG_SYS_FSL_DCU_BE 3142 CONFIG_SYS_FSL_DCU_BE
3144 CONFIG_SYS_FSL_DCU_LE 3143 CONFIG_SYS_FSL_DCU_LE
3145 CONFIG_SYS_FSL_DDR2_ADDR 3144 CONFIG_SYS_FSL_DDR2_ADDR
3146 CONFIG_SYS_FSL_DDR3L 3145 CONFIG_SYS_FSL_DDR3L
3147 CONFIG_SYS_FSL_DDR3_ADDR 3146 CONFIG_SYS_FSL_DDR3_ADDR
3148 CONFIG_SYS_FSL_DDR_ADDR 3147 CONFIG_SYS_FSL_DDR_ADDR
3149 CONFIG_SYS_FSL_DDR_EMU 3148 CONFIG_SYS_FSL_DDR_EMU
3150 CONFIG_SYS_FSL_DDR_INTLV_256B 3149 CONFIG_SYS_FSL_DDR_INTLV_256B
3151 CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS 3150 CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS
3152 CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 3151 CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY
3153 CONFIG_SYS_FSL_DRAM_BASE1 3152 CONFIG_SYS_FSL_DRAM_BASE1
3154 CONFIG_SYS_FSL_DRAM_BASE2 3153 CONFIG_SYS_FSL_DRAM_BASE2
3155 CONFIG_SYS_FSL_DRAM_BASE3 3154 CONFIG_SYS_FSL_DRAM_BASE3
3156 CONFIG_SYS_FSL_DRAM_SIZE1 3155 CONFIG_SYS_FSL_DRAM_SIZE1
3157 CONFIG_SYS_FSL_DRAM_SIZE2 3156 CONFIG_SYS_FSL_DRAM_SIZE2
3158 CONFIG_SYS_FSL_DRAM_SIZE3 3157 CONFIG_SYS_FSL_DRAM_SIZE3
3159 CONFIG_SYS_FSL_DSPI_BE 3158 CONFIG_SYS_FSL_DSPI_BE
3160 CONFIG_SYS_FSL_DSP_CCSRBAR 3159 CONFIG_SYS_FSL_DSP_CCSRBAR
3161 CONFIG_SYS_FSL_DSP_CCSRBAR_DEFAULT 3160 CONFIG_SYS_FSL_DSP_CCSRBAR_DEFAULT
3162 CONFIG_SYS_FSL_DSP_CCSRBAR_PHYS 3161 CONFIG_SYS_FSL_DSP_CCSRBAR_PHYS
3163 CONFIG_SYS_FSL_DSP_CCSR_DDR_ADDR 3162 CONFIG_SYS_FSL_DSP_CCSR_DDR_ADDR
3164 CONFIG_SYS_FSL_DSP_CCSR_DDR_OFFSET 3163 CONFIG_SYS_FSL_DSP_CCSR_DDR_OFFSET
3165 CONFIG_SYS_FSL_DSP_DDR_ADDR 3164 CONFIG_SYS_FSL_DSP_DDR_ADDR
3166 CONFIG_SYS_FSL_DSP_M2_RAM_ADDR 3165 CONFIG_SYS_FSL_DSP_M2_RAM_ADDR
3167 CONFIG_SYS_FSL_DSP_M3_RAM_ADDR 3166 CONFIG_SYS_FSL_DSP_M3_RAM_ADDR
3168 CONFIG_SYS_FSL_ERRATUM_A008751 3167 CONFIG_SYS_FSL_ERRATUM_A008751
3169 CONFIG_SYS_FSL_ERRATUM_A_004934 3168 CONFIG_SYS_FSL_ERRATUM_A_004934
3170 CONFIG_SYS_FSL_ESDHC_ADDR 3169 CONFIG_SYS_FSL_ESDHC_ADDR
3171 CONFIG_SYS_FSL_ESDHC_BE 3170 CONFIG_SYS_FSL_ESDHC_BE
3172 CONFIG_SYS_FSL_ESDHC_BROKEN_TIMEOUT 3171 CONFIG_SYS_FSL_ESDHC_BROKEN_TIMEOUT
3173 CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE 3172 CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE
3174 CONFIG_SYS_FSL_ESDHC_LE 3173 CONFIG_SYS_FSL_ESDHC_LE
3175 CONFIG_SYS_FSL_ESDHC_NUM 3174 CONFIG_SYS_FSL_ESDHC_NUM
3176 CONFIG_SYS_FSL_ESDHC_P1010_BROKEN_SDCLK 3175 CONFIG_SYS_FSL_ESDHC_P1010_BROKEN_SDCLK
3177 CONFIG_SYS_FSL_ESDHC_USE_PIO 3176 CONFIG_SYS_FSL_ESDHC_USE_PIO
3178 CONFIG_SYS_FSL_FM 3177 CONFIG_SYS_FSL_FM
3179 CONFIG_SYS_FSL_FM1_ADDR 3178 CONFIG_SYS_FSL_FM1_ADDR
3180 CONFIG_SYS_FSL_FM1_DTSEC1_ADDR 3179 CONFIG_SYS_FSL_FM1_DTSEC1_ADDR
3181 CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET 3180 CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET
3182 CONFIG_SYS_FSL_FM1_OFFSET 3181 CONFIG_SYS_FSL_FM1_OFFSET
3183 CONFIG_SYS_FSL_FM1_RX0_10G_OFFSET 3182 CONFIG_SYS_FSL_FM1_RX0_10G_OFFSET
3184 CONFIG_SYS_FSL_FM1_RX0_1G_OFFSET 3183 CONFIG_SYS_FSL_FM1_RX0_1G_OFFSET
3185 CONFIG_SYS_FSL_FM1_RX1_10G_OFFSET 3184 CONFIG_SYS_FSL_FM1_RX1_10G_OFFSET
3186 CONFIG_SYS_FSL_FM1_RX1_1G_OFFSET 3185 CONFIG_SYS_FSL_FM1_RX1_1G_OFFSET
3187 CONFIG_SYS_FSL_FM1_RX2_1G_OFFSET 3186 CONFIG_SYS_FSL_FM1_RX2_1G_OFFSET
3188 CONFIG_SYS_FSL_FM1_RX3_1G_OFFSET 3187 CONFIG_SYS_FSL_FM1_RX3_1G_OFFSET
3189 CONFIG_SYS_FSL_FM1_RX4_1G_OFFSET 3188 CONFIG_SYS_FSL_FM1_RX4_1G_OFFSET
3190 CONFIG_SYS_FSL_FM1_RX5_1G_OFFSET 3189 CONFIG_SYS_FSL_FM1_RX5_1G_OFFSET
3191 CONFIG_SYS_FSL_FM2_ADDR 3190 CONFIG_SYS_FSL_FM2_ADDR
3192 CONFIG_SYS_FSL_FM2_OFFSET 3191 CONFIG_SYS_FSL_FM2_OFFSET
3193 CONFIG_SYS_FSL_FM2_RX0_10G_OFFSET 3192 CONFIG_SYS_FSL_FM2_RX0_10G_OFFSET
3194 CONFIG_SYS_FSL_FM2_RX0_1G_OFFSET 3193 CONFIG_SYS_FSL_FM2_RX0_1G_OFFSET
3195 CONFIG_SYS_FSL_FM2_RX1_10G_OFFSET 3194 CONFIG_SYS_FSL_FM2_RX1_10G_OFFSET
3196 CONFIG_SYS_FSL_FM2_RX1_1G_OFFSET 3195 CONFIG_SYS_FSL_FM2_RX1_1G_OFFSET
3197 CONFIG_SYS_FSL_FM2_RX2_1G_OFFSET 3196 CONFIG_SYS_FSL_FM2_RX2_1G_OFFSET
3198 CONFIG_SYS_FSL_FM2_RX3_1G_OFFSET 3197 CONFIG_SYS_FSL_FM2_RX3_1G_OFFSET
3199 CONFIG_SYS_FSL_FM2_RX4_1G_OFFSET 3198 CONFIG_SYS_FSL_FM2_RX4_1G_OFFSET
3200 CONFIG_SYS_FSL_FM2_RX5_1G_OFFSET 3199 CONFIG_SYS_FSL_FM2_RX5_1G_OFFSET
3201 CONFIG_SYS_FSL_FMAN_ADDR 3200 CONFIG_SYS_FSL_FMAN_ADDR
3202 CONFIG_SYS_FSL_GUTS_ADDR 3201 CONFIG_SYS_FSL_GUTS_ADDR
3203 CONFIG_SYS_FSL_I2C 3202 CONFIG_SYS_FSL_I2C
3204 CONFIG_SYS_FSL_I2C2_OFFSET 3203 CONFIG_SYS_FSL_I2C2_OFFSET
3205 CONFIG_SYS_FSL_I2C2_SLAVE 3204 CONFIG_SYS_FSL_I2C2_SLAVE
3206 CONFIG_SYS_FSL_I2C2_SPEED 3205 CONFIG_SYS_FSL_I2C2_SPEED
3207 CONFIG_SYS_FSL_I2C3_OFFSET 3206 CONFIG_SYS_FSL_I2C3_OFFSET
3208 CONFIG_SYS_FSL_I2C3_SLAVE 3207 CONFIG_SYS_FSL_I2C3_SLAVE
3209 CONFIG_SYS_FSL_I2C3_SPEED 3208 CONFIG_SYS_FSL_I2C3_SPEED
3210 CONFIG_SYS_FSL_I2C4_OFFSET 3209 CONFIG_SYS_FSL_I2C4_OFFSET
3211 CONFIG_SYS_FSL_I2C4_SLAVE 3210 CONFIG_SYS_FSL_I2C4_SLAVE
3212 CONFIG_SYS_FSL_I2C4_SPEED 3211 CONFIG_SYS_FSL_I2C4_SPEED
3213 CONFIG_SYS_FSL_I2C_OFFSET 3212 CONFIG_SYS_FSL_I2C_OFFSET
3214 CONFIG_SYS_FSL_I2C_SLAVE 3213 CONFIG_SYS_FSL_I2C_SLAVE
3215 CONFIG_SYS_FSL_I2C_SPEED 3214 CONFIG_SYS_FSL_I2C_SPEED
3216 CONFIG_SYS_FSL_IFC_BASE 3215 CONFIG_SYS_FSL_IFC_BASE
3217 CONFIG_SYS_FSL_IFC_BASE1 3216 CONFIG_SYS_FSL_IFC_BASE1
3218 CONFIG_SYS_FSL_IFC_BASE2 3217 CONFIG_SYS_FSL_IFC_BASE2
3219 CONFIG_SYS_FSL_IFC_BE 3218 CONFIG_SYS_FSL_IFC_BE
3220 CONFIG_SYS_FSL_IFC_LE 3219 CONFIG_SYS_FSL_IFC_LE
3221 CONFIG_SYS_FSL_IFC_SIZE 3220 CONFIG_SYS_FSL_IFC_SIZE
3222 CONFIG_SYS_FSL_IFC_SIZE1 3221 CONFIG_SYS_FSL_IFC_SIZE1
3223 CONFIG_SYS_FSL_IFC_SIZE1_1 3222 CONFIG_SYS_FSL_IFC_SIZE1_1
3224 CONFIG_SYS_FSL_IFC_SIZE2 3223 CONFIG_SYS_FSL_IFC_SIZE2
3225 CONFIG_SYS_FSL_ISBC_VER 3224 CONFIG_SYS_FSL_ISBC_VER
3226 CONFIG_SYS_FSL_JR0_ADDR 3225 CONFIG_SYS_FSL_JR0_ADDR
3227 CONFIG_SYS_FSL_JR0_OFFSET 3226 CONFIG_SYS_FSL_JR0_OFFSET
3228 CONFIG_SYS_FSL_LS1_CLK_ADDR 3227 CONFIG_SYS_FSL_LS1_CLK_ADDR
3229 CONFIG_SYS_FSL_LSCH3_SERDES_ADDR 3228 CONFIG_SYS_FSL_LSCH3_SERDES_ADDR
3230 CONFIG_SYS_FSL_MAX_NUM_OF_SEC 3229 CONFIG_SYS_FSL_MAX_NUM_OF_SEC
3231 CONFIG_SYS_FSL_MC9SDZ60_I2C_ADDR 3230 CONFIG_SYS_FSL_MC9SDZ60_I2C_ADDR
3232 CONFIG_SYS_FSL_MC_BASE 3231 CONFIG_SYS_FSL_MC_BASE
3233 CONFIG_SYS_FSL_MC_SIZE 3232 CONFIG_SYS_FSL_MC_SIZE
3234 CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 3233 CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33
3235 CONFIG_SYS_FSL_NI_BASE 3234 CONFIG_SYS_FSL_NI_BASE
3236 CONFIG_SYS_FSL_NI_SIZE 3235 CONFIG_SYS_FSL_NI_SIZE
3237 CONFIG_SYS_FSL_NO_SERDES 3236 CONFIG_SYS_FSL_NO_SERDES
3238 CONFIG_SYS_FSL_NUM_CC_PLL 3237 CONFIG_SYS_FSL_NUM_CC_PLL
3239 CONFIG_SYS_FSL_NUM_CC_PLLS 3238 CONFIG_SYS_FSL_NUM_CC_PLLS
3240 CONFIG_SYS_FSL_OCRAM_BASE 3239 CONFIG_SYS_FSL_OCRAM_BASE
3241 CONFIG_SYS_FSL_OCRAM_SIZE 3240 CONFIG_SYS_FSL_OCRAM_SIZE
3242 CONFIG_SYS_FSL_OTHER_DDR_NUM_CTRLS 3241 CONFIG_SYS_FSL_OTHER_DDR_NUM_CTRLS
3243 CONFIG_SYS_FSL_PAMU_OFFSET 3242 CONFIG_SYS_FSL_PAMU_OFFSET
3244 CONFIG_SYS_FSL_PBL_PBI 3243 CONFIG_SYS_FSL_PBL_PBI
3245 CONFIG_SYS_FSL_PBL_RCW 3244 CONFIG_SYS_FSL_PBL_RCW
3246 CONFIG_SYS_FSL_PCIE_COMPAT 3245 CONFIG_SYS_FSL_PCIE_COMPAT
3247 CONFIG_SYS_FSL_PCI_VER_3_X 3246 CONFIG_SYS_FSL_PCI_VER_3_X
3248 CONFIG_SYS_FSL_PEBUF_BASE 3247 CONFIG_SYS_FSL_PEBUF_BASE
3249 CONFIG_SYS_FSL_PEBUF_SIZE 3248 CONFIG_SYS_FSL_PEBUF_SIZE
3250 CONFIG_SYS_FSL_PEX_LUT_BE 3249 CONFIG_SYS_FSL_PEX_LUT_BE
3251 CONFIG_SYS_FSL_PEX_LUT_LE 3250 CONFIG_SYS_FSL_PEX_LUT_LE
3252 CONFIG_SYS_FSL_PMIC_I2C_ADDR 3251 CONFIG_SYS_FSL_PMIC_I2C_ADDR
3253 CONFIG_SYS_FSL_PMU_ADDR 3252 CONFIG_SYS_FSL_PMU_ADDR
3254 CONFIG_SYS_FSL_PMU_CLTBENR 3253 CONFIG_SYS_FSL_PMU_CLTBENR
3255 CONFIG_SYS_FSL_QBMAN_BASE 3254 CONFIG_SYS_FSL_QBMAN_BASE
3256 CONFIG_SYS_FSL_QBMAN_SIZE 3255 CONFIG_SYS_FSL_QBMAN_SIZE
3257 CONFIG_SYS_FSL_QBMAN_SIZE_1 3256 CONFIG_SYS_FSL_QBMAN_SIZE_1
3258 CONFIG_SYS_FSL_QMAN_ADDR 3257 CONFIG_SYS_FSL_QMAN_ADDR
3259 CONFIG_SYS_FSL_QMAN_OFFSET 3258 CONFIG_SYS_FSL_QMAN_OFFSET
3260 CONFIG_SYS_FSL_QMAN_V3 3259 CONFIG_SYS_FSL_QMAN_V3
3261 CONFIG_SYS_FSL_QSPI_AHB 3260 CONFIG_SYS_FSL_QSPI_AHB
3262 CONFIG_SYS_FSL_QSPI_BASE 3261 CONFIG_SYS_FSL_QSPI_BASE
3263 CONFIG_SYS_FSL_QSPI_BASE1 3262 CONFIG_SYS_FSL_QSPI_BASE1
3264 CONFIG_SYS_FSL_QSPI_BASE2 3263 CONFIG_SYS_FSL_QSPI_BASE2
3265 CONFIG_SYS_FSL_QSPI_BE 3264 CONFIG_SYS_FSL_QSPI_BE
3266 CONFIG_SYS_FSL_QSPI_LE 3265 CONFIG_SYS_FSL_QSPI_LE
3267 CONFIG_SYS_FSL_QSPI_SIZE 3266 CONFIG_SYS_FSL_QSPI_SIZE
3268 CONFIG_SYS_FSL_QSPI_SIZE1 3267 CONFIG_SYS_FSL_QSPI_SIZE1
3269 CONFIG_SYS_FSL_QSPI_SIZE2 3268 CONFIG_SYS_FSL_QSPI_SIZE2
3270 CONFIG_SYS_FSL_RAID_ENGINE 3269 CONFIG_SYS_FSL_RAID_ENGINE
3271 CONFIG_SYS_FSL_RAID_ENGINE_ADDR 3270 CONFIG_SYS_FSL_RAID_ENGINE_ADDR
3272 CONFIG_SYS_FSL_RAID_ENGINE_OFFSET 3271 CONFIG_SYS_FSL_RAID_ENGINE_OFFSET
3273 CONFIG_SYS_FSL_RCPM_ADDR 3272 CONFIG_SYS_FSL_RCPM_ADDR
3274 CONFIG_SYS_FSL_RMU 3273 CONFIG_SYS_FSL_RMU
3275 CONFIG_SYS_FSL_RST_ADDR 3274 CONFIG_SYS_FSL_RST_ADDR
3276 CONFIG_SYS_FSL_SCFG_ADDR 3275 CONFIG_SYS_FSL_SCFG_ADDR
3277 CONFIG_SYS_FSL_SCFG_IODSECR1_ADDR 3276 CONFIG_SYS_FSL_SCFG_IODSECR1_ADDR
3278 CONFIG_SYS_FSL_SCFG_IODSECR1_OFFSET 3277 CONFIG_SYS_FSL_SCFG_IODSECR1_OFFSET
3279 CONFIG_SYS_FSL_SCFG_OFFSET 3278 CONFIG_SYS_FSL_SCFG_OFFSET
3280 CONFIG_SYS_FSL_SCFG_PIXCLKCR_OFFSET 3279 CONFIG_SYS_FSL_SCFG_PIXCLKCR_OFFSET
3281 CONFIG_SYS_FSL_SCFG_PIXCLK_ADDR 3280 CONFIG_SYS_FSL_SCFG_PIXCLK_ADDR
3282 CONFIG_SYS_FSL_SEC_ADDR 3281 CONFIG_SYS_FSL_SEC_ADDR
3283 CONFIG_SYS_FSL_SEC_IDX_OFFSET 3282 CONFIG_SYS_FSL_SEC_IDX_OFFSET
3284 CONFIG_SYS_FSL_SEC_MON_BE 3283 CONFIG_SYS_FSL_SEC_MON_BE
3285 CONFIG_SYS_FSL_SEC_MON_LE 3284 CONFIG_SYS_FSL_SEC_MON_LE
3286 CONFIG_SYS_FSL_SEC_OFFSET 3285 CONFIG_SYS_FSL_SEC_OFFSET
3287 CONFIG_SYS_FSL_SERDES 3286 CONFIG_SYS_FSL_SERDES
3288 CONFIG_SYS_FSL_SERDES_ADDR 3287 CONFIG_SYS_FSL_SERDES_ADDR
3289 CONFIG_SYS_FSL_SFP_BE 3288 CONFIG_SYS_FSL_SFP_BE
3290 CONFIG_SYS_FSL_SFP_LE 3289 CONFIG_SYS_FSL_SFP_LE
3291 CONFIG_SYS_FSL_SFP_VER_3_0 3290 CONFIG_SYS_FSL_SFP_VER_3_0
3292 CONFIG_SYS_FSL_SFP_VER_3_2 3291 CONFIG_SYS_FSL_SFP_VER_3_2
3293 CONFIG_SYS_FSL_SFP_VER_3_4 3292 CONFIG_SYS_FSL_SFP_VER_3_4
3294 CONFIG_SYS_FSL_SINGLE_SOURCE_CLK 3293 CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
3295 CONFIG_SYS_FSL_SRDS_3 3294 CONFIG_SYS_FSL_SRDS_3
3296 CONFIG_SYS_FSL_SRDS_4 3295 CONFIG_SYS_FSL_SRDS_4
3297 CONFIG_SYS_FSL_SRDS_NUM_PLLS 3296 CONFIG_SYS_FSL_SRDS_NUM_PLLS
3298 CONFIG_SYS_FSL_SRIO_ADDR 3297 CONFIG_SYS_FSL_SRIO_ADDR
3299 CONFIG_SYS_FSL_SRIO_IB_WIN_NUM 3298 CONFIG_SYS_FSL_SRIO_IB_WIN_NUM
3300 CONFIG_SYS_FSL_SRIO_LIODN 3299 CONFIG_SYS_FSL_SRIO_LIODN
3301 CONFIG_SYS_FSL_SRIO_MAX_PORTS 3300 CONFIG_SYS_FSL_SRIO_MAX_PORTS
3302 CONFIG_SYS_FSL_SRIO_MSG_UNIT_NUM 3301 CONFIG_SYS_FSL_SRIO_MSG_UNIT_NUM
3303 CONFIG_SYS_FSL_SRIO_OB_WIN_NUM 3302 CONFIG_SYS_FSL_SRIO_OB_WIN_NUM
3304 CONFIG_SYS_FSL_SRIO_OFFSET 3303 CONFIG_SYS_FSL_SRIO_OFFSET
3305 CONFIG_SYS_FSL_SRK_LE 3304 CONFIG_SYS_FSL_SRK_LE
3306 CONFIG_SYS_FSL_TBCLK_DIV 3305 CONFIG_SYS_FSL_TBCLK_DIV
3307 CONFIG_SYS_FSL_TIMER_ADDR 3306 CONFIG_SYS_FSL_TIMER_ADDR
3308 CONFIG_SYS_FSL_USB1_ADDR 3307 CONFIG_SYS_FSL_USB1_ADDR
3309 CONFIG_SYS_FSL_USB1_PHY_ENABLE 3308 CONFIG_SYS_FSL_USB1_PHY_ENABLE
3310 CONFIG_SYS_FSL_USB2_ADDR 3309 CONFIG_SYS_FSL_USB2_ADDR
3311 CONFIG_SYS_FSL_USB2_PHY_ENABLE 3310 CONFIG_SYS_FSL_USB2_PHY_ENABLE
3312 CONFIG_SYS_FSL_USB_CTRL_PHY_EN 3311 CONFIG_SYS_FSL_USB_CTRL_PHY_EN
3313 CONFIG_SYS_FSL_USB_DRVVBUS_CR_EN 3312 CONFIG_SYS_FSL_USB_DRVVBUS_CR_EN
3314 CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE 3313 CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE
3315 CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE 3314 CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE
3316 CONFIG_SYS_FSL_USB_HS_DISCNCT_INC 3315 CONFIG_SYS_FSL_USB_HS_DISCNCT_INC
3317 CONFIG_SYS_FSL_USB_INTERNAL_SOC_CLK_EN 3316 CONFIG_SYS_FSL_USB_INTERNAL_SOC_CLK_EN
3318 CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY 3317 CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
3319 CONFIG_SYS_FSL_USB_PLLPRG1_PHY_DIV 3318 CONFIG_SYS_FSL_USB_PLLPRG1_PHY_DIV
3320 CONFIG_SYS_FSL_USB_PLLPRG2_FRAC_LPF_EN 3319 CONFIG_SYS_FSL_USB_PLLPRG2_FRAC_LPF_EN
3321 CONFIG_SYS_FSL_USB_PLLPRG2_MFI 3320 CONFIG_SYS_FSL_USB_PLLPRG2_MFI
3322 CONFIG_SYS_FSL_USB_PLLPRG2_MFI_INTERNAL_CLK 3321 CONFIG_SYS_FSL_USB_PLLPRG2_MFI_INTERNAL_CLK
3323 CONFIG_SYS_FSL_USB_PLLPRG2_PHY1_CLK_EN 3322 CONFIG_SYS_FSL_USB_PLLPRG2_PHY1_CLK_EN
3324 CONFIG_SYS_FSL_USB_PLLPRG2_PHY2_CLK_EN 3323 CONFIG_SYS_FSL_USB_PLLPRG2_PHY2_CLK_EN
3325 CONFIG_SYS_FSL_USB_PLLPRG2_PLL_EN 3324 CONFIG_SYS_FSL_USB_PLLPRG2_PLL_EN
3326 CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV 3325 CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV
3327 CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV_INTERNAL_CLK 3326 CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV_INTERNAL_CLK
3328 CONFIG_SYS_FSL_USB_PWRFLT_CR_EN 3327 CONFIG_SYS_FSL_USB_PWRFLT_CR_EN
3329 CONFIG_SYS_FSL_USB_RX_AUTO_CAL_RD_WR_SEL 3328 CONFIG_SYS_FSL_USB_RX_AUTO_CAL_RD_WR_SEL
3330 CONFIG_SYS_FSL_USB_SQUELCH_PROG_MASK 3329 CONFIG_SYS_FSL_USB_SQUELCH_PROG_MASK
3331 CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_0 3330 CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_0
3332 CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_3 3331 CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_3
3333 CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_0 3332 CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_0
3334 CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_3 3333 CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_3
3335 CONFIG_SYS_FSL_USB_SYS_CLK_VALID 3334 CONFIG_SYS_FSL_USB_SYS_CLK_VALID
3336 CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_EN 3335 CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_EN
3337 CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_MASK 3336 CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_MASK
3338 CONFIG_SYS_FSL_USDHC_NUM 3337 CONFIG_SYS_FSL_USDHC_NUM
3339 CONFIG_SYS_FSL_WDOG_BE 3338 CONFIG_SYS_FSL_WDOG_BE
3340 CONFIG_SYS_FSL_WRIOP1_ADDR 3339 CONFIG_SYS_FSL_WRIOP1_ADDR
3341 CONFIG_SYS_FSL_WRIOP1_BASE 3340 CONFIG_SYS_FSL_WRIOP1_BASE
3342 CONFIG_SYS_FSL_WRIOP1_MDIO1 3341 CONFIG_SYS_FSL_WRIOP1_MDIO1
3343 CONFIG_SYS_FSL_WRIOP1_MDIO2 3342 CONFIG_SYS_FSL_WRIOP1_MDIO2
3344 CONFIG_SYS_FSL_WRIOP1_SIZE 3343 CONFIG_SYS_FSL_WRIOP1_SIZE
3345 CONFIG_SYS_FSL_XHCI_USB1_ADDR 3344 CONFIG_SYS_FSL_XHCI_USB1_ADDR
3346 CONFIG_SYS_FSL_XHCI_USB2_ADDR 3345 CONFIG_SYS_FSL_XHCI_USB2_ADDR
3347 CONFIG_SYS_FSL_XHCI_USB3_ADDR 3346 CONFIG_SYS_FSL_XHCI_USB3_ADDR
3348 CONFIG_SYS_FSMC_BASE 3347 CONFIG_SYS_FSMC_BASE
3349 CONFIG_SYS_FSMC_NAND_16BIT 3348 CONFIG_SYS_FSMC_NAND_16BIT
3350 CONFIG_SYS_FSMC_NAND_8BIT 3349 CONFIG_SYS_FSMC_NAND_8BIT
3351 CONFIG_SYS_FSMC_NAND_SP 3350 CONFIG_SYS_FSMC_NAND_SP
3352 CONFIG_SYS_FTAHBC020S_SLAVE_BSR_6 3351 CONFIG_SYS_FTAHBC020S_SLAVE_BSR_6
3353 CONFIG_SYS_FTAHBC020S_SLAVE_BSR_BASE 3352 CONFIG_SYS_FTAHBC020S_SLAVE_BSR_BASE
3354 CONFIG_SYS_FTPMU010_PDLLCR0_HCLKOUTDIS 3353 CONFIG_SYS_FTPMU010_PDLLCR0_HCLKOUTDIS
3355 CONFIG_SYS_FTPMU010_SDRAMHTC 3354 CONFIG_SYS_FTPMU010_SDRAMHTC
3356 CONFIG_SYS_FTSDMC021_BANK0_BASE 3355 CONFIG_SYS_FTSDMC021_BANK0_BASE
3357 CONFIG_SYS_FTSDMC021_BANK0_BSR 3356 CONFIG_SYS_FTSDMC021_BANK0_BSR
3358 CONFIG_SYS_FTSDMC021_BANK1_BASE 3357 CONFIG_SYS_FTSDMC021_BANK1_BASE
3359 CONFIG_SYS_FTSDMC021_BANK1_BSR 3358 CONFIG_SYS_FTSDMC021_BANK1_BSR
3360 CONFIG_SYS_FTSDMC021_CR1 3359 CONFIG_SYS_FTSDMC021_CR1
3361 CONFIG_SYS_FTSDMC021_CR2 3360 CONFIG_SYS_FTSDMC021_CR2
3362 CONFIG_SYS_FTSDMC021_TP1 3361 CONFIG_SYS_FTSDMC021_TP1
3363 CONFIG_SYS_FTSDMC021_TP2 3362 CONFIG_SYS_FTSDMC021_TP2
3364 CONFIG_SYS_FTSMC020_CONFIGS 3363 CONFIG_SYS_FTSMC020_CONFIGS
3365 CONFIG_SYS_FULL_VA 3364 CONFIG_SYS_FULL_VA
3366 CONFIG_SYS_GAFR0_L_VAL 3365 CONFIG_SYS_GAFR0_L_VAL
3367 CONFIG_SYS_GAFR0_U_VAL 3366 CONFIG_SYS_GAFR0_U_VAL
3368 CONFIG_SYS_GAFR1_L_VAL 3367 CONFIG_SYS_GAFR1_L_VAL
3369 CONFIG_SYS_GAFR1_U_VAL 3368 CONFIG_SYS_GAFR1_U_VAL
3370 CONFIG_SYS_GAFR2_L_VAL 3369 CONFIG_SYS_GAFR2_L_VAL
3371 CONFIG_SYS_GAFR2_U_VAL 3370 CONFIG_SYS_GAFR2_U_VAL
3372 CONFIG_SYS_GAFR3_L_VAL 3371 CONFIG_SYS_GAFR3_L_VAL
3373 CONFIG_SYS_GAFR3_U_VAL 3372 CONFIG_SYS_GAFR3_U_VAL
3374 CONFIG_SYS_GBIT_MII1_BUSNAME 3373 CONFIG_SYS_GBIT_MII1_BUSNAME
3375 CONFIG_SYS_GBIT_MII_BUSNAME 3374 CONFIG_SYS_GBIT_MII_BUSNAME
3376 CONFIG_SYS_GBL_DATA_OFFSET 3375 CONFIG_SYS_GBL_DATA_OFFSET
3377 CONFIG_SYS_GBL_DATA_SIZE 3376 CONFIG_SYS_GBL_DATA_SIZE
3378 CONFIG_SYS_GENERIC_BOARD 3377 CONFIG_SYS_GENERIC_BOARD
3379 CONFIG_SYS_GENERIC_GLOBAL_DATA 3378 CONFIG_SYS_GENERIC_GLOBAL_DATA
3380 CONFIG_SYS_GIC400_ADDR 3379 CONFIG_SYS_GIC400_ADDR
3381 CONFIG_SYS_GP1DIR 3380 CONFIG_SYS_GP1DIR
3382 CONFIG_SYS_GP1ODR 3381 CONFIG_SYS_GP1ODR
3383 CONFIG_SYS_GP2DIR 3382 CONFIG_SYS_GP2DIR
3384 CONFIG_SYS_GP2ODR 3383 CONFIG_SYS_GP2ODR
3385 CONFIG_SYS_GPCR0_VAL 3384 CONFIG_SYS_GPCR0_VAL
3386 CONFIG_SYS_GPCR1_VAL 3385 CONFIG_SYS_GPCR1_VAL
3387 CONFIG_SYS_GPCR2_VAL 3386 CONFIG_SYS_GPCR2_VAL
3388 CONFIG_SYS_GPCR3_VAL 3387 CONFIG_SYS_GPCR3_VAL
3389 CONFIG_SYS_GPDR0_VAL 3388 CONFIG_SYS_GPDR0_VAL
3390 CONFIG_SYS_GPDR1_VAL 3389 CONFIG_SYS_GPDR1_VAL
3391 CONFIG_SYS_GPDR2_VAL 3390 CONFIG_SYS_GPDR2_VAL
3392 CONFIG_SYS_GPDR3_VAL 3391 CONFIG_SYS_GPDR3_VAL
3393 CONFIG_SYS_GPIO1_DAT 3392 CONFIG_SYS_GPIO1_DAT
3394 CONFIG_SYS_GPIO1_DIR 3393 CONFIG_SYS_GPIO1_DIR
3395 CONFIG_SYS_GPIO1_EN 3394 CONFIG_SYS_GPIO1_EN
3396 CONFIG_SYS_GPIO1_FUNC 3395 CONFIG_SYS_GPIO1_FUNC
3397 CONFIG_SYS_GPIO1_LED 3396 CONFIG_SYS_GPIO1_LED
3398 CONFIG_SYS_GPIO1_OUT 3397 CONFIG_SYS_GPIO1_OUT
3399 CONFIG_SYS_GPIO1_PRELIM 3398 CONFIG_SYS_GPIO1_PRELIM
3400 CONFIG_SYS_GPIO2_DAT 3399 CONFIG_SYS_GPIO2_DAT
3401 CONFIG_SYS_GPIO2_DIR 3400 CONFIG_SYS_GPIO2_DIR
3402 CONFIG_SYS_GPIO2_PRELIM 3401 CONFIG_SYS_GPIO2_PRELIM
3403 CONFIG_SYS_GPIO_0_ADDR 3402 CONFIG_SYS_GPIO_0_ADDR
3404 CONFIG_SYS_GPIO_EN 3403 CONFIG_SYS_GPIO_EN
3405 CONFIG_SYS_GPIO_FUNC 3404 CONFIG_SYS_GPIO_FUNC
3406 CONFIG_SYS_GPIO_I2C_SCL 3405 CONFIG_SYS_GPIO_I2C_SCL
3407 CONFIG_SYS_GPIO_I2C_SDA 3406 CONFIG_SYS_GPIO_I2C_SDA
3408 CONFIG_SYS_GPIO_OUT 3407 CONFIG_SYS_GPIO_OUT
3409 CONFIG_SYS_GPIO_PHY_RST 3408 CONFIG_SYS_GPIO_PHY_RST
3410 CONFIG_SYS_GPR1 3409 CONFIG_SYS_GPR1
3411 CONFIG_SYS_GPSR0_VAL 3410 CONFIG_SYS_GPSR0_VAL
3412 CONFIG_SYS_GPSR1_VAL 3411 CONFIG_SYS_GPSR1_VAL
3413 CONFIG_SYS_GPSR2_VAL 3412 CONFIG_SYS_GPSR2_VAL
3414 CONFIG_SYS_GPSR3_VAL 3413 CONFIG_SYS_GPSR3_VAL
3415 CONFIG_SYS_HALT_BEFOR_RAM_JUMP 3414 CONFIG_SYS_HALT_BEFOR_RAM_JUMP
3416 CONFIG_SYS_HELP_CMD_WIDTH 3415 CONFIG_SYS_HELP_CMD_WIDTH
3417 CONFIG_SYS_HID0_FINAL 3416 CONFIG_SYS_HID0_FINAL
3418 CONFIG_SYS_HID0_INIT 3417 CONFIG_SYS_HID0_INIT
3419 CONFIG_SYS_HID2 3418 CONFIG_SYS_HID2
3420 CONFIG_SYS_HIGH 3419 CONFIG_SYS_HIGH
3421 CONFIG_SYS_HMI_BASE 3420 CONFIG_SYS_HMI_BASE
3422 CONFIG_SYS_HOSTNAME 3421 CONFIG_SYS_HOSTNAME
3423 CONFIG_SYS_HRCW_HIGH 3422 CONFIG_SYS_HRCW_HIGH
3424 CONFIG_SYS_HRCW_HIGH_BASE 3423 CONFIG_SYS_HRCW_HIGH_BASE
3425 CONFIG_SYS_HRCW_LOW 3424 CONFIG_SYS_HRCW_LOW
3426 CONFIG_SYS_HZ_CLOCK 3425 CONFIG_SYS_HZ_CLOCK
3427 CONFIG_SYS_I2C 3426 CONFIG_SYS_I2C
3428 CONFIG_SYS_I2C2_FSL_OFFSET 3427 CONFIG_SYS_I2C2_FSL_OFFSET
3429 CONFIG_SYS_I2C2_OFFSET 3428 CONFIG_SYS_I2C2_OFFSET
3430 CONFIG_SYS_I2C2_PINMUX_CLR 3429 CONFIG_SYS_I2C2_PINMUX_CLR
3431 CONFIG_SYS_I2C2_PINMUX_REG 3430 CONFIG_SYS_I2C2_PINMUX_REG
3432 CONFIG_SYS_I2C2_PINMUX_SET 3431 CONFIG_SYS_I2C2_PINMUX_SET
3433 CONFIG_SYS_I2C_0 3432 CONFIG_SYS_I2C_0
3434 CONFIG_SYS_I2C_2 3433 CONFIG_SYS_I2C_2
3435 CONFIG_SYS_I2C_5 3434 CONFIG_SYS_I2C_5
3436 CONFIG_SYS_I2C_8574A_ADDR1 3435 CONFIG_SYS_I2C_8574A_ADDR1
3437 CONFIG_SYS_I2C_8574A_ADDR2 3436 CONFIG_SYS_I2C_8574A_ADDR2
3438 CONFIG_SYS_I2C_8574_ADDR1 3437 CONFIG_SYS_I2C_8574_ADDR1
3439 CONFIG_SYS_I2C_8574_ADDR2 3438 CONFIG_SYS_I2C_8574_ADDR2
3440 CONFIG_SYS_I2C_BASE 3439 CONFIG_SYS_I2C_BASE
3441 CONFIG_SYS_I2C_BASE0 3440 CONFIG_SYS_I2C_BASE0
3442 CONFIG_SYS_I2C_BASE1 3441 CONFIG_SYS_I2C_BASE1
3443 CONFIG_SYS_I2C_BASE2 3442 CONFIG_SYS_I2C_BASE2
3444 CONFIG_SYS_I2C_BASE3 3443 CONFIG_SYS_I2C_BASE3
3445 CONFIG_SYS_I2C_BASE4 3444 CONFIG_SYS_I2C_BASE4
3446 CONFIG_SYS_I2C_BASE5 3445 CONFIG_SYS_I2C_BASE5
3447 CONFIG_SYS_I2C_BUSES 3446 CONFIG_SYS_I2C_BUSES
3448 CONFIG_SYS_I2C_BUS_MAX 3447 CONFIG_SYS_I2C_BUS_MAX
3449 CONFIG_SYS_I2C_CLK_OFFSET 3448 CONFIG_SYS_I2C_CLK_OFFSET
3450 CONFIG_SYS_I2C_DAVINCI 3449 CONFIG_SYS_I2C_DAVINCI
3451 CONFIG_SYS_I2C_DIRECT_BUS 3450 CONFIG_SYS_I2C_DIRECT_BUS
3452 CONFIG_SYS_I2C_DVI_ADDR 3451 CONFIG_SYS_I2C_DVI_ADDR
3453 CONFIG_SYS_I2C_DVI_BUS_NUM 3452 CONFIG_SYS_I2C_DVI_BUS_NUM
3454 CONFIG_SYS_I2C_EARLY_INIT 3453 CONFIG_SYS_I2C_EARLY_INIT
3455 CONFIG_SYS_I2C_EEPROM 3454 CONFIG_SYS_I2C_EEPROM
3456 CONFIG_SYS_I2C_EEPROM_ADDR 3455 CONFIG_SYS_I2C_EEPROM_ADDR
3457 CONFIG_SYS_I2C_EEPROM_ADDR_LEN 3456 CONFIG_SYS_I2C_EEPROM_ADDR_LEN
3458 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW 3457 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
3459 CONFIG_SYS_I2C_EEPROM_BUS 3458 CONFIG_SYS_I2C_EEPROM_BUS
3460 CONFIG_SYS_I2C_EEPROM_CCID 3459 CONFIG_SYS_I2C_EEPROM_CCID
3461 CONFIG_SYS_I2C_EEPROM_NXID 3460 CONFIG_SYS_I2C_EEPROM_NXID
3462 CONFIG_SYS_I2C_EEPROM_NXID_MAC 3461 CONFIG_SYS_I2C_EEPROM_NXID_MAC
3463 CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS 3462 CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS
3464 CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS 3463 CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS
3465 CONFIG_SYS_I2C_EXPANDER_ADDR 3464 CONFIG_SYS_I2C_EXPANDER_ADDR
3466 CONFIG_SYS_I2C_FPGA_ADDR 3465 CONFIG_SYS_I2C_FPGA_ADDR
3467 CONFIG_SYS_I2C_FRAM 3466 CONFIG_SYS_I2C_FRAM
3468 CONFIG_SYS_I2C_G762_ADDR 3467 CONFIG_SYS_I2C_G762_ADDR
3469 CONFIG_SYS_I2C_GENERIC_MAC 3468 CONFIG_SYS_I2C_GENERIC_MAC
3470 CONFIG_SYS_I2C_IDT6V49205B 3469 CONFIG_SYS_I2C_IDT6V49205B
3471 CONFIG_SYS_I2C_IFDR_DIV 3470 CONFIG_SYS_I2C_IFDR_DIV
3472 CONFIG_SYS_I2C_IHS 3471 CONFIG_SYS_I2C_IHS
3473 CONFIG_SYS_I2C_IHS_CH0 3472 CONFIG_SYS_I2C_IHS_CH0
3474 CONFIG_SYS_I2C_IHS_CH0_1 3473 CONFIG_SYS_I2C_IHS_CH0_1
3475 CONFIG_SYS_I2C_IHS_CH1 3474 CONFIG_SYS_I2C_IHS_CH1
3476 CONFIG_SYS_I2C_IHS_CH1_1 3475 CONFIG_SYS_I2C_IHS_CH1_1
3477 CONFIG_SYS_I2C_IHS_CH2 3476 CONFIG_SYS_I2C_IHS_CH2
3478 CONFIG_SYS_I2C_IHS_CH2_1 3477 CONFIG_SYS_I2C_IHS_CH2_1
3479 CONFIG_SYS_I2C_IHS_CH3 3478 CONFIG_SYS_I2C_IHS_CH3
3480 CONFIG_SYS_I2C_IHS_CH3_1 3479 CONFIG_SYS_I2C_IHS_CH3_1
3481 CONFIG_SYS_I2C_IHS_DUAL 3480 CONFIG_SYS_I2C_IHS_DUAL
3482 CONFIG_SYS_I2C_IHS_SLAVE_0 3481 CONFIG_SYS_I2C_IHS_SLAVE_0
3483 CONFIG_SYS_I2C_IHS_SLAVE_0_1 3482 CONFIG_SYS_I2C_IHS_SLAVE_0_1
3484 CONFIG_SYS_I2C_IHS_SLAVE_1 3483 CONFIG_SYS_I2C_IHS_SLAVE_1
3485 CONFIG_SYS_I2C_IHS_SLAVE_1_1 3484 CONFIG_SYS_I2C_IHS_SLAVE_1_1
3486 CONFIG_SYS_I2C_IHS_SLAVE_2 3485 CONFIG_SYS_I2C_IHS_SLAVE_2
3487 CONFIG_SYS_I2C_IHS_SLAVE_2_1 3486 CONFIG_SYS_I2C_IHS_SLAVE_2_1
3488 CONFIG_SYS_I2C_IHS_SLAVE_3 3487 CONFIG_SYS_I2C_IHS_SLAVE_3
3489 CONFIG_SYS_I2C_IHS_SLAVE_3_1 3488 CONFIG_SYS_I2C_IHS_SLAVE_3_1
3490 CONFIG_SYS_I2C_IHS_SPEED_0 3489 CONFIG_SYS_I2C_IHS_SPEED_0
3491 CONFIG_SYS_I2C_IHS_SPEED_0_1 3490 CONFIG_SYS_I2C_IHS_SPEED_0_1
3492 CONFIG_SYS_I2C_IHS_SPEED_1 3491 CONFIG_SYS_I2C_IHS_SPEED_1
3493 CONFIG_SYS_I2C_IHS_SPEED_1_1 3492 CONFIG_SYS_I2C_IHS_SPEED_1_1
3494 CONFIG_SYS_I2C_IHS_SPEED_2 3493 CONFIG_SYS_I2C_IHS_SPEED_2
3495 CONFIG_SYS_I2C_IHS_SPEED_2_1 3494 CONFIG_SYS_I2C_IHS_SPEED_2_1
3496 CONFIG_SYS_I2C_IHS_SPEED_3 3495 CONFIG_SYS_I2C_IHS_SPEED_3
3497 CONFIG_SYS_I2C_IHS_SPEED_3_1 3496 CONFIG_SYS_I2C_IHS_SPEED_3_1
3498 CONFIG_SYS_I2C_INIT_BOARD 3497 CONFIG_SYS_I2C_INIT_BOARD
3499 CONFIG_SYS_I2C_KONA 3498 CONFIG_SYS_I2C_KONA
3500 CONFIG_SYS_I2C_LDI_ADDR 3499 CONFIG_SYS_I2C_LDI_ADDR
3501 CONFIG_SYS_I2C_LM75_ADDR 3500 CONFIG_SYS_I2C_LM75_ADDR
3502 CONFIG_SYS_I2C_LM90_ADDR 3501 CONFIG_SYS_I2C_LM90_ADDR
3503 CONFIG_SYS_I2C_LPC32XX 3502 CONFIG_SYS_I2C_LPC32XX
3504 CONFIG_SYS_I2C_LPC32XX_SLAVE 3503 CONFIG_SYS_I2C_LPC32XX_SLAVE
3505 CONFIG_SYS_I2C_LPC32XX_SPEED 3504 CONFIG_SYS_I2C_LPC32XX_SPEED
3506 CONFIG_SYS_I2C_MAC1_BUS 3505 CONFIG_SYS_I2C_MAC1_BUS
3507 CONFIG_SYS_I2C_MAC1_CHIP_ADDR 3506 CONFIG_SYS_I2C_MAC1_CHIP_ADDR
3508 CONFIG_SYS_I2C_MAC1_DATA_ADDR 3507 CONFIG_SYS_I2C_MAC1_DATA_ADDR
3509 CONFIG_SYS_I2C_MAC2_BUS 3508 CONFIG_SYS_I2C_MAC2_BUS
3510 CONFIG_SYS_I2C_MAC2_CHIP_ADDR 3509 CONFIG_SYS_I2C_MAC2_CHIP_ADDR
3511 CONFIG_SYS_I2C_MAC2_DATA_ADDR 3510 CONFIG_SYS_I2C_MAC2_DATA_ADDR
3512 CONFIG_SYS_I2C_MAC_OFFSET 3511 CONFIG_SYS_I2C_MAC_OFFSET
3513 CONFIG_SYS_I2C_MAX1237_ADDR 3512 CONFIG_SYS_I2C_MAX1237_ADDR
3514 CONFIG_SYS_I2C_MAX_HOPS 3513 CONFIG_SYS_I2C_MAX_HOPS
3515 CONFIG_SYS_I2C_MXC_I2C1 3514 CONFIG_SYS_I2C_MXC_I2C1
3516 CONFIG_SYS_I2C_MXC_I2C2 3515 CONFIG_SYS_I2C_MXC_I2C2
3517 CONFIG_SYS_I2C_MXC_I2C3 3516 CONFIG_SYS_I2C_MXC_I2C3
3518 CONFIG_SYS_I2C_MXC_I2C4 3517 CONFIG_SYS_I2C_MXC_I2C4
3519 CONFIG_SYS_I2C_NCT72_ADDR 3518 CONFIG_SYS_I2C_NCT72_ADDR
3520 CONFIG_SYS_I2C_NOPROBES 3519 CONFIG_SYS_I2C_NOPROBES
3521 CONFIG_SYS_I2C_OFFSET 3520 CONFIG_SYS_I2C_OFFSET
3522 CONFIG_SYS_I2C_PCA953X_ADDR 3521 CONFIG_SYS_I2C_PCA953X_ADDR
3523 CONFIG_SYS_I2C_PCA953X_ADDR0 3522 CONFIG_SYS_I2C_PCA953X_ADDR0
3524 CONFIG_SYS_I2C_PCA953X_ADDR1 3523 CONFIG_SYS_I2C_PCA953X_ADDR1
3525 CONFIG_SYS_I2C_PCA953X_ADDR2 3524 CONFIG_SYS_I2C_PCA953X_ADDR2
3526 CONFIG_SYS_I2C_PCA953X_ADDR3 3525 CONFIG_SYS_I2C_PCA953X_ADDR3
3527 CONFIG_SYS_I2C_PCA953X_WIDTH 3526 CONFIG_SYS_I2C_PCA953X_WIDTH
3528 CONFIG_SYS_I2C_PCA9553_ADDR 3527 CONFIG_SYS_I2C_PCA9553_ADDR
3529 CONFIG_SYS_I2C_PCA9555_ADDR 3528 CONFIG_SYS_I2C_PCA9555_ADDR
3530 CONFIG_SYS_I2C_PCA9557_ADDR 3529 CONFIG_SYS_I2C_PCA9557_ADDR
3531 CONFIG_SYS_I2C_PCF8574A_ADDR 3530 CONFIG_SYS_I2C_PCF8574A_ADDR
3532 CONFIG_SYS_I2C_PEX8518_ADDR 3531 CONFIG_SYS_I2C_PEX8518_ADDR
3533 CONFIG_SYS_I2C_PINMUX_CLR 3532 CONFIG_SYS_I2C_PINMUX_CLR
3534 CONFIG_SYS_I2C_PINMUX_REG 3533 CONFIG_SYS_I2C_PINMUX_REG
3535 CONFIG_SYS_I2C_PINMUX_SET 3534 CONFIG_SYS_I2C_PINMUX_SET
3536 CONFIG_SYS_I2C_POWERIC_ADDR 3535 CONFIG_SYS_I2C_POWERIC_ADDR
3537 CONFIG_SYS_I2C_PXA 3536 CONFIG_SYS_I2C_PXA
3538 CONFIG_SYS_I2C_QIXIS_ADDR 3537 CONFIG_SYS_I2C_QIXIS_ADDR
3539 CONFIG_SYS_I2C_RCAR 3538 CONFIG_SYS_I2C_RCAR
3540 CONFIG_SYS_I2C_RTC_ADDR 3539 CONFIG_SYS_I2C_RTC_ADDR
3541 CONFIG_SYS_I2C_S3C24X0_SLAVE 3540 CONFIG_SYS_I2C_S3C24X0_SLAVE
3542 CONFIG_SYS_I2C_S3C24X0_SPEED 3541 CONFIG_SYS_I2C_S3C24X0_SPEED
3543 CONFIG_SYS_I2C_SH 3542 CONFIG_SYS_I2C_SH
3544 CONFIG_SYS_I2C_SH_BASE0 3543 CONFIG_SYS_I2C_SH_BASE0
3545 CONFIG_SYS_I2C_SH_BASE1 3544 CONFIG_SYS_I2C_SH_BASE1
3546 CONFIG_SYS_I2C_SH_BASE2 3545 CONFIG_SYS_I2C_SH_BASE2
3547 CONFIG_SYS_I2C_SH_BASE3 3546 CONFIG_SYS_I2C_SH_BASE3
3548 CONFIG_SYS_I2C_SH_BASE4 3547 CONFIG_SYS_I2C_SH_BASE4
3549 CONFIG_SYS_I2C_SH_NUM_CONTROLLERS 3548 CONFIG_SYS_I2C_SH_NUM_CONTROLLERS
3550 CONFIG_SYS_I2C_SH_SPEED0 3549 CONFIG_SYS_I2C_SH_SPEED0
3551 CONFIG_SYS_I2C_SH_SPEED1 3550 CONFIG_SYS_I2C_SH_SPEED1
3552 CONFIG_SYS_I2C_SH_SPEED2 3551 CONFIG_SYS_I2C_SH_SPEED2
3553 CONFIG_SYS_I2C_SH_SPEED3 3552 CONFIG_SYS_I2C_SH_SPEED3
3554 CONFIG_SYS_I2C_SH_SPEED4 3553 CONFIG_SYS_I2C_SH_SPEED4
3555 CONFIG_SYS_I2C_SLAVE 3554 CONFIG_SYS_I2C_SLAVE
3556 CONFIG_SYS_I2C_SLAVE1 3555 CONFIG_SYS_I2C_SLAVE1
3557 CONFIG_SYS_I2C_SLAVE2 3556 CONFIG_SYS_I2C_SLAVE2
3558 CONFIG_SYS_I2C_SLAVE3 3557 CONFIG_SYS_I2C_SLAVE3
3559 CONFIG_SYS_I2C_SOFT 3558 CONFIG_SYS_I2C_SOFT
3560 CONFIG_SYS_I2C_SOFT_SLAVE 3559 CONFIG_SYS_I2C_SOFT_SLAVE
3561 CONFIG_SYS_I2C_SOFT_SLAVE_10 3560 CONFIG_SYS_I2C_SOFT_SLAVE_10
3562 CONFIG_SYS_I2C_SOFT_SLAVE_11 3561 CONFIG_SYS_I2C_SOFT_SLAVE_11
3563 CONFIG_SYS_I2C_SOFT_SLAVE_12 3562 CONFIG_SYS_I2C_SOFT_SLAVE_12
3564 CONFIG_SYS_I2C_SOFT_SLAVE_2 3563 CONFIG_SYS_I2C_SOFT_SLAVE_2
3565 CONFIG_SYS_I2C_SOFT_SLAVE_3 3564 CONFIG_SYS_I2C_SOFT_SLAVE_3
3566 CONFIG_SYS_I2C_SOFT_SLAVE_4 3565 CONFIG_SYS_I2C_SOFT_SLAVE_4
3567 CONFIG_SYS_I2C_SOFT_SLAVE_5 3566 CONFIG_SYS_I2C_SOFT_SLAVE_5
3568 CONFIG_SYS_I2C_SOFT_SLAVE_6 3567 CONFIG_SYS_I2C_SOFT_SLAVE_6
3569 CONFIG_SYS_I2C_SOFT_SLAVE_7 3568 CONFIG_SYS_I2C_SOFT_SLAVE_7
3570 CONFIG_SYS_I2C_SOFT_SLAVE_8 3569 CONFIG_SYS_I2C_SOFT_SLAVE_8
3571 CONFIG_SYS_I2C_SOFT_SLAVE_9 3570 CONFIG_SYS_I2C_SOFT_SLAVE_9
3572 CONFIG_SYS_I2C_SOFT_SPEED 3571 CONFIG_SYS_I2C_SOFT_SPEED
3573 CONFIG_SYS_I2C_SOFT_SPEED_10 3572 CONFIG_SYS_I2C_SOFT_SPEED_10
3574 CONFIG_SYS_I2C_SOFT_SPEED_11 3573 CONFIG_SYS_I2C_SOFT_SPEED_11
3575 CONFIG_SYS_I2C_SOFT_SPEED_12 3574 CONFIG_SYS_I2C_SOFT_SPEED_12
3576 CONFIG_SYS_I2C_SOFT_SPEED_2 3575 CONFIG_SYS_I2C_SOFT_SPEED_2
3577 CONFIG_SYS_I2C_SOFT_SPEED_3 3576 CONFIG_SYS_I2C_SOFT_SPEED_3
3578 CONFIG_SYS_I2C_SOFT_SPEED_4 3577 CONFIG_SYS_I2C_SOFT_SPEED_4
3579 CONFIG_SYS_I2C_SOFT_SPEED_5 3578 CONFIG_SYS_I2C_SOFT_SPEED_5
3580 CONFIG_SYS_I2C_SOFT_SPEED_6 3579 CONFIG_SYS_I2C_SOFT_SPEED_6
3581 CONFIG_SYS_I2C_SOFT_SPEED_7 3580 CONFIG_SYS_I2C_SOFT_SPEED_7
3582 CONFIG_SYS_I2C_SOFT_SPEED_8 3581 CONFIG_SYS_I2C_SOFT_SPEED_8
3583 CONFIG_SYS_I2C_SOFT_SPEED_9 3582 CONFIG_SYS_I2C_SOFT_SPEED_9
3584 CONFIG_SYS_I2C_SPEED 3583 CONFIG_SYS_I2C_SPEED
3585 CONFIG_SYS_I2C_SPEED1 3584 CONFIG_SYS_I2C_SPEED1
3586 CONFIG_SYS_I2C_SPEED2 3585 CONFIG_SYS_I2C_SPEED2
3587 CONFIG_SYS_I2C_SPEED3 3586 CONFIG_SYS_I2C_SPEED3
3588 CONFIG_SYS_I2C_TCA642X_ADDR 3587 CONFIG_SYS_I2C_TCA642X_ADDR
3589 CONFIG_SYS_I2C_TCA642X_BUS_NUM 3588 CONFIG_SYS_I2C_TCA642X_BUS_NUM
3590 CONFIG_SYS_I2C_TEGRA 3589 CONFIG_SYS_I2C_TEGRA
3591 CONFIG_SYS_I2C_W83782G_ADDR 3590 CONFIG_SYS_I2C_W83782G_ADDR
3592 CONFIG_SYS_I2C_ZYNQ 3591 CONFIG_SYS_I2C_ZYNQ
3593 CONFIG_SYS_I2C_ZYNQ_SLAVE 3592 CONFIG_SYS_I2C_ZYNQ_SLAVE
3594 CONFIG_SYS_I2C_ZYNQ_SPEED 3593 CONFIG_SYS_I2C_ZYNQ_SPEED
3595 CONFIG_SYS_IBAT 3594 CONFIG_SYS_IBAT
3596 CONFIG_SYS_IBAT0L 3595 CONFIG_SYS_IBAT0L
3597 CONFIG_SYS_IBAT0U 3596 CONFIG_SYS_IBAT0U
3598 CONFIG_SYS_IBAT1L 3597 CONFIG_SYS_IBAT1L
3599 CONFIG_SYS_IBAT1U 3598 CONFIG_SYS_IBAT1U
3600 CONFIG_SYS_IBAT2L 3599 CONFIG_SYS_IBAT2L
3601 CONFIG_SYS_IBAT2U 3600 CONFIG_SYS_IBAT2U
3602 CONFIG_SYS_IBAT3L 3601 CONFIG_SYS_IBAT3L
3603 CONFIG_SYS_IBAT3U 3602 CONFIG_SYS_IBAT3U
3604 CONFIG_SYS_IBAT4L 3603 CONFIG_SYS_IBAT4L
3605 CONFIG_SYS_IBAT4U 3604 CONFIG_SYS_IBAT4U
3606 CONFIG_SYS_IBAT5L 3605 CONFIG_SYS_IBAT5L
3607 CONFIG_SYS_IBAT5U 3606 CONFIG_SYS_IBAT5U
3608 CONFIG_SYS_IBAT6L 3607 CONFIG_SYS_IBAT6L
3609 CONFIG_SYS_IBAT6L_EARLY 3608 CONFIG_SYS_IBAT6L_EARLY
3610 CONFIG_SYS_IBAT6U 3609 CONFIG_SYS_IBAT6U
3611 CONFIG_SYS_IBAT6U_EARLY 3610 CONFIG_SYS_IBAT6U_EARLY
3612 CONFIG_SYS_IBAT7L 3611 CONFIG_SYS_IBAT7L
3613 CONFIG_SYS_IBAT7U 3612 CONFIG_SYS_IBAT7U
3614 CONFIG_SYS_ICACHE_INV 3613 CONFIG_SYS_ICACHE_INV
3615 CONFIG_SYS_ICS8N3QV01_I2C 3614 CONFIG_SYS_ICS8N3QV01_I2C
3616 CONFIG_SYS_IDE_MAXBUS 3615 CONFIG_SYS_IDE_MAXBUS
3617 CONFIG_SYS_IDE_MAXDEVICE 3616 CONFIG_SYS_IDE_MAXDEVICE
3618 CONFIG_SYS_ID_EEPROM 3617 CONFIG_SYS_ID_EEPROM
3619 CONFIG_SYS_IFC_ADDR 3618 CONFIG_SYS_IFC_ADDR
3620 CONFIG_SYS_IFC_CCR 3619 CONFIG_SYS_IFC_CCR
3621 CONFIG_SYS_INIT_DBCR 3620 CONFIG_SYS_INIT_DBCR
3622 CONFIG_SYS_INIT_L2CSR0 3621 CONFIG_SYS_INIT_L2CSR0
3623 CONFIG_SYS_INIT_L2_ADDR 3622 CONFIG_SYS_INIT_L2_ADDR
3624 CONFIG_SYS_INIT_L2_ADDR_PHYS 3623 CONFIG_SYS_INIT_L2_ADDR_PHYS
3625 CONFIG_SYS_INIT_L2_END 3624 CONFIG_SYS_INIT_L2_END
3626 CONFIG_SYS_INIT_L3_ADDR 3625 CONFIG_SYS_INIT_L3_ADDR
3627 CONFIG_SYS_INIT_L3_ADDR_PHYS 3626 CONFIG_SYS_INIT_L3_ADDR_PHYS
3628 CONFIG_SYS_INIT_L3_END 3627 CONFIG_SYS_INIT_L3_END
3629 CONFIG_SYS_INIT_L3_VADDR 3628 CONFIG_SYS_INIT_L3_VADDR
3630 CONFIG_SYS_INIT_RAM1_ADDR 3629 CONFIG_SYS_INIT_RAM1_ADDR
3631 CONFIG_SYS_INIT_RAM1_CTRL 3630 CONFIG_SYS_INIT_RAM1_CTRL
3632 CONFIG_SYS_INIT_RAM1_END 3631 CONFIG_SYS_INIT_RAM1_END
3633 CONFIG_SYS_INIT_RAM_ADDR 3632 CONFIG_SYS_INIT_RAM_ADDR
3634 CONFIG_SYS_INIT_RAM_ADDR_PHYS 3633 CONFIG_SYS_INIT_RAM_ADDR_PHYS
3635 CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 3634 CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH
3636 CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW 3635 CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW
3637 CONFIG_SYS_INIT_RAM_CTRL 3636 CONFIG_SYS_INIT_RAM_CTRL
3638 CONFIG_SYS_INIT_RAM_LOCK 3637 CONFIG_SYS_INIT_RAM_LOCK
3639 CONFIG_SYS_INIT_RAM_SIZE 3638 CONFIG_SYS_INIT_RAM_SIZE
3640 CONFIG_SYS_INIT_SP_ADDR 3639 CONFIG_SYS_INIT_SP_ADDR
3641 CONFIG_SYS_INIT_SP_OFFSET 3640 CONFIG_SYS_INIT_SP_OFFSET
3642 CONFIG_SYS_INPUT_CLKSRC 3641 CONFIG_SYS_INPUT_CLKSRC
3643 CONFIG_SYS_INTEL_BOOT 3642 CONFIG_SYS_INTEL_BOOT
3644 CONFIG_SYS_INTERLAKEN 3643 CONFIG_SYS_INTERLAKEN
3645 CONFIG_SYS_INTR_BASE 3644 CONFIG_SYS_INTR_BASE
3646 CONFIG_SYS_INTSRAM 3645 CONFIG_SYS_INTSRAM
3647 CONFIG_SYS_INTSRAMSZ 3646 CONFIG_SYS_INTSRAMSZ
3648 CONFIG_SYS_INT_FLASH_BASE 3647 CONFIG_SYS_INT_FLASH_BASE
3649 CONFIG_SYS_INT_FLASH_ENABLE 3648 CONFIG_SYS_INT_FLASH_ENABLE
3650 CONFIG_SYS_IO_BASE 3649 CONFIG_SYS_IO_BASE
3651 CONFIG_SYS_ISA_BASE 3650 CONFIG_SYS_ISA_BASE
3652 CONFIG_SYS_ISA_IO 3651 CONFIG_SYS_ISA_IO
3653 CONFIG_SYS_ISA_IO_BASE_ADDRESS 3652 CONFIG_SYS_ISA_IO_BASE_ADDRESS
3654 CONFIG_SYS_ISA_IO_OFFSET 3653 CONFIG_SYS_ISA_IO_OFFSET
3655 CONFIG_SYS_ISA_IO_STRIDE 3654 CONFIG_SYS_ISA_IO_STRIDE
3656 CONFIG_SYS_ISA_MEM 3655 CONFIG_SYS_ISA_MEM
3657 CONFIG_SYS_IVM_EEPROM_ADR 3656 CONFIG_SYS_IVM_EEPROM_ADR
3658 CONFIG_SYS_IVM_EEPROM_MAX_LEN 3657 CONFIG_SYS_IVM_EEPROM_MAX_LEN
3659 CONFIG_SYS_IVM_EEPROM_PAGE_LEN 3658 CONFIG_SYS_IVM_EEPROM_PAGE_LEN
3660 CONFIG_SYS_JFFS2_FIRST_BANK 3659 CONFIG_SYS_JFFS2_FIRST_BANK
3661 CONFIG_SYS_JFFS2_FIRST_SECTOR 3660 CONFIG_SYS_JFFS2_FIRST_SECTOR
3662 CONFIG_SYS_JFFS2_MEM_NAND 3661 CONFIG_SYS_JFFS2_MEM_NAND
3663 CONFIG_SYS_JFFS2_NUM_BANKS 3662 CONFIG_SYS_JFFS2_NUM_BANKS
3664 CONFIG_SYS_JFFS2_SORT_FRAGMENTS 3663 CONFIG_SYS_JFFS2_SORT_FRAGMENTS
3665 CONFIG_SYS_KMBEC_FPGA_BASE 3664 CONFIG_SYS_KMBEC_FPGA_BASE
3666 CONFIG_SYS_KMBEC_FPGA_SIZE 3665 CONFIG_SYS_KMBEC_FPGA_SIZE
3667 CONFIG_SYS_KWD_CONFIG 3666 CONFIG_SYS_KWD_CONFIG
3668 CONFIG_SYS_KW_SPI_MPP 3667 CONFIG_SYS_KW_SPI_MPP
3669 CONFIG_SYS_L2 3668 CONFIG_SYS_L2
3670 CONFIG_SYS_L2_PL310 3669 CONFIG_SYS_L2_PL310
3671 CONFIG_SYS_L2_SIZE 3670 CONFIG_SYS_L2_SIZE
3672 CONFIG_SYS_L3_SIZE 3671 CONFIG_SYS_L3_SIZE
3673 CONFIG_SYS_LATCH_ADDR 3672 CONFIG_SYS_LATCH_ADDR
3674 CONFIG_SYS_LBAPP1_BASE 3673 CONFIG_SYS_LBAPP1_BASE
3675 CONFIG_SYS_LBAPP1_BASE_PHYS 3674 CONFIG_SYS_LBAPP1_BASE_PHYS
3676 CONFIG_SYS_LBAPP1_BR_PRELIM 3675 CONFIG_SYS_LBAPP1_BR_PRELIM
3677 CONFIG_SYS_LBAPP1_OR_PRELIM 3676 CONFIG_SYS_LBAPP1_OR_PRELIM
3678 CONFIG_SYS_LBAPP2_BASE 3677 CONFIG_SYS_LBAPP2_BASE
3679 CONFIG_SYS_LBAPP2_BASE_PHYS 3678 CONFIG_SYS_LBAPP2_BASE_PHYS
3680 CONFIG_SYS_LBAPP2_BR_PRELIM 3679 CONFIG_SYS_LBAPP2_BR_PRELIM
3681 CONFIG_SYS_LBAPP2_OR_PRELIM 3680 CONFIG_SYS_LBAPP2_OR_PRELIM
3682 CONFIG_SYS_LBC0_BASE 3681 CONFIG_SYS_LBC0_BASE
3683 CONFIG_SYS_LBC0_BASE_PHYS 3682 CONFIG_SYS_LBC0_BASE_PHYS
3684 CONFIG_SYS_LBC1_BASE 3683 CONFIG_SYS_LBC1_BASE
3685 CONFIG_SYS_LBC1_BASE_PHYS 3684 CONFIG_SYS_LBC1_BASE_PHYS
3686 CONFIG_SYS_LBCR_ADDR 3685 CONFIG_SYS_LBCR_ADDR
3687 CONFIG_SYS_LBC_ADDR 3686 CONFIG_SYS_LBC_ADDR
3688 CONFIG_SYS_LBC_BASE 3687 CONFIG_SYS_LBC_BASE
3689 CONFIG_SYS_LBC_BASE_PHYS_LOW 3688 CONFIG_SYS_LBC_BASE_PHYS_LOW
3690 CONFIG_SYS_LBC_CACHE_BASE 3689 CONFIG_SYS_LBC_CACHE_BASE
3691 CONFIG_SYS_LBC_FLASH_BASE 3690 CONFIG_SYS_LBC_FLASH_BASE
3692 CONFIG_SYS_LBC_LBCR 3691 CONFIG_SYS_LBC_LBCR
3693 CONFIG_SYS_LBC_LCRR 3692 CONFIG_SYS_LBC_LCRR
3694 CONFIG_SYS_LBC_LSDMR_1 3693 CONFIG_SYS_LBC_LSDMR_1
3695 CONFIG_SYS_LBC_LSDMR_2 3694 CONFIG_SYS_LBC_LSDMR_2
3696 CONFIG_SYS_LBC_LSDMR_3 3695 CONFIG_SYS_LBC_LSDMR_3
3697 CONFIG_SYS_LBC_LSDMR_4 3696 CONFIG_SYS_LBC_LSDMR_4
3698 CONFIG_SYS_LBC_LSDMR_5 3697 CONFIG_SYS_LBC_LSDMR_5
3699 CONFIG_SYS_LBC_LSDMR_ARFRSH 3698 CONFIG_SYS_LBC_LSDMR_ARFRSH
3700 CONFIG_SYS_LBC_LSDMR_COMMON 3699 CONFIG_SYS_LBC_LSDMR_COMMON
3701 CONFIG_SYS_LBC_LSDMR_MRW 3700 CONFIG_SYS_LBC_LSDMR_MRW
3702 CONFIG_SYS_LBC_LSDMR_PCHALL 3701 CONFIG_SYS_LBC_LSDMR_PCHALL
3703 CONFIG_SYS_LBC_LSDMR_RFEN 3702 CONFIG_SYS_LBC_LSDMR_RFEN
3704 CONFIG_SYS_LBC_LSRT 3703 CONFIG_SYS_LBC_LSRT
3705 CONFIG_SYS_LBC_MRTPR 3704 CONFIG_SYS_LBC_MRTPR
3706 CONFIG_SYS_LBC_NONCACHE_BASE 3705 CONFIG_SYS_LBC_NONCACHE_BASE
3707 CONFIG_SYS_LBC_SDRAM_BASE 3706 CONFIG_SYS_LBC_SDRAM_BASE
3708 CONFIG_SYS_LBC_SDRAM_BASE_PHYS 3707 CONFIG_SYS_LBC_SDRAM_BASE_PHYS
3709 CONFIG_SYS_LBC_SDRAM_SIZE 3708 CONFIG_SYS_LBC_SDRAM_SIZE
3710 CONFIG_SYS_LBLAWAR0_PRELIM 3709 CONFIG_SYS_LBLAWAR0_PRELIM
3711 CONFIG_SYS_LBLAWAR1_PRELIM 3710 CONFIG_SYS_LBLAWAR1_PRELIM
3712 CONFIG_SYS_LBLAWAR2_PRELIM 3711 CONFIG_SYS_LBLAWAR2_PRELIM
3713 CONFIG_SYS_LBLAWAR3_PRELIM 3712 CONFIG_SYS_LBLAWAR3_PRELIM
3714 CONFIG_SYS_LBLAWAR4_PRELIM 3713 CONFIG_SYS_LBLAWAR4_PRELIM
3715 CONFIG_SYS_LBLAWAR5_PRELIM 3714 CONFIG_SYS_LBLAWAR5_PRELIM
3716 CONFIG_SYS_LBLAWAR6_PRELIM 3715 CONFIG_SYS_LBLAWAR6_PRELIM
3717 CONFIG_SYS_LBLAWAR7_PRELIM 3716 CONFIG_SYS_LBLAWAR7_PRELIM
3718 CONFIG_SYS_LBLAWBAR0_PRELIM 3717 CONFIG_SYS_LBLAWBAR0_PRELIM
3719 CONFIG_SYS_LBLAWBAR1_PRELIM 3718 CONFIG_SYS_LBLAWBAR1_PRELIM
3720 CONFIG_SYS_LBLAWBAR2_PRELIM 3719 CONFIG_SYS_LBLAWBAR2_PRELIM
3721 CONFIG_SYS_LBLAWBAR3_PRELIM 3720 CONFIG_SYS_LBLAWBAR3_PRELIM
3722 CONFIG_SYS_LBLAWBAR4_PRELIM 3721 CONFIG_SYS_LBLAWBAR4_PRELIM
3723 CONFIG_SYS_LBLAWBAR5_PRELIM 3722 CONFIG_SYS_LBLAWBAR5_PRELIM
3724 CONFIG_SYS_LBLAWBAR6_PRELIM 3723 CONFIG_SYS_LBLAWBAR6_PRELIM
3725 CONFIG_SYS_LBLAWBAR7_PRELIM 3724 CONFIG_SYS_LBLAWBAR7_PRELIM
3726 CONFIG_SYS_LB_SDRAM 3725 CONFIG_SYS_LB_SDRAM
3727 CONFIG_SYS_LCD_BASE 3726 CONFIG_SYS_LCD_BASE
3728 CONFIG_SYS_LCRR_CLKDIV 3727 CONFIG_SYS_LCRR_CLKDIV
3729 CONFIG_SYS_LCRR_DBYP 3728 CONFIG_SYS_LCRR_DBYP
3730 CONFIG_SYS_LCRR_EADC 3729 CONFIG_SYS_LCRR_EADC
3731 CONFIG_SYS_LDB_CLOCK 3730 CONFIG_SYS_LDB_CLOCK
3732 CONFIG_SYS_LDSCRIPT 3731 CONFIG_SYS_LDSCRIPT
3733 CONFIG_SYS_LED_BASE 3732 CONFIG_SYS_LED_BASE
3734 CONFIG_SYS_LED_DISP_BASE 3733 CONFIG_SYS_LED_DISP_BASE
3735 CONFIG_SYS_LIME_BASE 3734 CONFIG_SYS_LIME_BASE
3736 CONFIG_SYS_LIME_SIZE 3735 CONFIG_SYS_LIME_SIZE
3737 CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE 3736 CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE
3738 CONFIG_SYS_LOADS_BAUD_CHANGE 3737 CONFIG_SYS_LOADS_BAUD_CHANGE
3739 CONFIG_SYS_LOAD_ADDR 3738 CONFIG_SYS_LOAD_ADDR
3740 CONFIG_SYS_LOAD_ADDR2 3739 CONFIG_SYS_LOAD_ADDR2
3741 CONFIG_SYS_LONGHELP 3740 CONFIG_SYS_LONGHELP
3742 CONFIG_SYS_LOW 3741 CONFIG_SYS_LOW
3743 CONFIG_SYS_LOWBOOT 3742 CONFIG_SYS_LOWBOOT
3744 CONFIG_SYS_LOWMEM_BASE 3743 CONFIG_SYS_LOWMEM_BASE
3745 CONFIG_SYS_LOW_RES_TIMER 3744 CONFIG_SYS_LOW_RES_TIMER
3746 CONFIG_SYS_LPAE_SDRAM_BASE 3745 CONFIG_SYS_LPAE_SDRAM_BASE
3747 CONFIG_SYS_LPC32XX_UART 3746 CONFIG_SYS_LPC32XX_UART
3748 CONFIG_SYS_LS1_DDR_BLOCK1_SIZE 3747 CONFIG_SYS_LS1_DDR_BLOCK1_SIZE
3749 CONFIG_SYS_LS_MC_AIOP_IMG_MAX_LENGTH 3748 CONFIG_SYS_LS_MC_AIOP_IMG_MAX_LENGTH
3750 CONFIG_SYS_LS_MC_BOOT_TIMEOUT_MS 3749 CONFIG_SYS_LS_MC_BOOT_TIMEOUT_MS
3751 CONFIG_SYS_LS_MC_DPC_ADDR 3750 CONFIG_SYS_LS_MC_DPC_ADDR
3752 CONFIG_SYS_LS_MC_DPC_IN_DDR 3751 CONFIG_SYS_LS_MC_DPC_IN_DDR
3753 CONFIG_SYS_LS_MC_DPC_IN_NOR 3752 CONFIG_SYS_LS_MC_DPC_IN_NOR
3754 CONFIG_SYS_LS_MC_DPC_MAX_LENGTH 3753 CONFIG_SYS_LS_MC_DPC_MAX_LENGTH
3755 CONFIG_SYS_LS_MC_DPL_ADDR 3754 CONFIG_SYS_LS_MC_DPL_ADDR
3756 CONFIG_SYS_LS_MC_DPL_IN_DDR 3755 CONFIG_SYS_LS_MC_DPL_IN_DDR
3757 CONFIG_SYS_LS_MC_DPL_IN_NOR 3756 CONFIG_SYS_LS_MC_DPL_IN_NOR
3758 CONFIG_SYS_LS_MC_DPL_MAX_LENGTH 3757 CONFIG_SYS_LS_MC_DPL_MAX_LENGTH
3759 CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET 3758 CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
3760 CONFIG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE 3759 CONFIG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE
3761 CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET 3760 CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET
3762 CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET 3761 CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET
3763 CONFIG_SYS_LS_MC_FW_IN_DDR 3762 CONFIG_SYS_LS_MC_FW_IN_DDR
3764 CONFIG_SYS_LS_PPA_FW_IN_xxx 3763 CONFIG_SYS_LS_PPA_FW_IN_xxx
3765 CONFIG_SYS_M41T11_BASE_YEAR 3764 CONFIG_SYS_M41T11_BASE_YEAR
3766 CONFIG_SYS_M41T11_EXT_CENTURY_DATA 3765 CONFIG_SYS_M41T11_EXT_CENTURY_DATA
3767 CONFIG_SYS_MACB0_BASE 3766 CONFIG_SYS_MACB0_BASE
3768 CONFIG_SYS_MACB1_BASE 3767 CONFIG_SYS_MACB1_BASE
3769 CONFIG_SYS_MACB2_BASE 3768 CONFIG_SYS_MACB2_BASE
3770 CONFIG_SYS_MACB3_BASE 3769 CONFIG_SYS_MACB3_BASE
3771 CONFIG_SYS_MAIN_PWR_ON 3770 CONFIG_SYS_MAIN_PWR_ON
3772 CONFIG_SYS_MALLOC_BASE 3771 CONFIG_SYS_MALLOC_BASE
3773 CONFIG_SYS_MALLOC_LEN 3772 CONFIG_SYS_MALLOC_LEN
3774 CONFIG_SYS_MALLOC_SIMPLE 3773 CONFIG_SYS_MALLOC_SIMPLE
3775 CONFIG_SYS_MAMR 3774 CONFIG_SYS_MAMR
3776 CONFIG_SYS_MAPLE 3775 CONFIG_SYS_MAPLE
3777 CONFIG_SYS_MAPLE_MEM_PHYS 3776 CONFIG_SYS_MAPLE_MEM_PHYS
3778 CONFIG_SYS_MAPPED_RAM_BASE 3777 CONFIG_SYS_MAPPED_RAM_BASE
3779 CONFIG_SYS_MARUBUN_IO 3778 CONFIG_SYS_MARUBUN_IO
3780 CONFIG_SYS_MARUBUN_MRSHPC 3779 CONFIG_SYS_MARUBUN_MRSHPC
3781 CONFIG_SYS_MARUBUN_MW1 3780 CONFIG_SYS_MARUBUN_MW1
3782 CONFIG_SYS_MARUBUN_MW2 3781 CONFIG_SYS_MARUBUN_MW2
3783 CONFIG_SYS_MASTER_CLOCK 3782 CONFIG_SYS_MASTER_CLOCK
3784 CONFIG_SYS_MATRIX_EBI0CSA_VAL 3783 CONFIG_SYS_MATRIX_EBI0CSA_VAL
3785 CONFIG_SYS_MATRIX_EBICSA_VAL 3784 CONFIG_SYS_MATRIX_EBICSA_VAL
3786 CONFIG_SYS_MATRIX_MCFG_REMAP 3785 CONFIG_SYS_MATRIX_MCFG_REMAP
3787 CONFIG_SYS_MAXARGS 3786 CONFIG_SYS_MAXARGS
3788 CONFIG_SYS_MAX_DATAFLASH_BANKS 3787 CONFIG_SYS_MAX_DATAFLASH_BANKS
3789 CONFIG_SYS_MAX_DDR_BAT_SIZE 3788 CONFIG_SYS_MAX_DDR_BAT_SIZE
3790 CONFIG_SYS_MAX_FLASH_BANKS 3789 CONFIG_SYS_MAX_FLASH_BANKS
3791 CONFIG_SYS_MAX_FLASH_BANKS_DETECT 3790 CONFIG_SYS_MAX_FLASH_BANKS_DETECT
3792 CONFIG_SYS_MAX_FLASH_SECT 3791 CONFIG_SYS_MAX_FLASH_SECT
3793 CONFIG_SYS_MAX_I2C_BUS 3792 CONFIG_SYS_MAX_I2C_BUS
3794 CONFIG_SYS_MAX_MTD_BANKS 3793 CONFIG_SYS_MAX_MTD_BANKS
3795 CONFIG_SYS_MAX_NAND_CHIPS 3794 CONFIG_SYS_MAX_NAND_CHIPS
3796 CONFIG_SYS_MAX_NAND_DEVICE 3795 CONFIG_SYS_MAX_NAND_DEVICE
3797 CONFIG_SYS_MAX_PCI_EPS 3796 CONFIG_SYS_MAX_PCI_EPS
3798 CONFIG_SYS_MB862xx_CCF 3797 CONFIG_SYS_MB862xx_CCF
3799 CONFIG_SYS_MB862xx_MMR 3798 CONFIG_SYS_MB862xx_MMR
3800 CONFIG_SYS_MBAR 3799 CONFIG_SYS_MBAR
3801 CONFIG_SYS_MBAR2 3800 CONFIG_SYS_MBAR2
3802 CONFIG_SYS_MBYTES_SDRAM 3801 CONFIG_SYS_MBYTES_SDRAM
3803 CONFIG_SYS_MCATT0_VAL 3802 CONFIG_SYS_MCATT0_VAL
3804 CONFIG_SYS_MCATT1_VAL 3803 CONFIG_SYS_MCATT1_VAL
3805 CONFIG_SYS_MCFRRTC_BASE 3804 CONFIG_SYS_MCFRRTC_BASE
3806 CONFIG_SYS_MCFRTC_BASE 3805 CONFIG_SYS_MCFRTC_BASE
3807 CONFIG_SYS_MCF_SYNCR 3806 CONFIG_SYS_MCF_SYNCR
3808 CONFIG_SYS_MCIO0_VAL 3807 CONFIG_SYS_MCIO0_VAL
3809 CONFIG_SYS_MCIO1_VAL 3808 CONFIG_SYS_MCIO1_VAL
3810 CONFIG_SYS_MCKR 3809 CONFIG_SYS_MCKR
3811 CONFIG_SYS_MCKR1_VAL 3810 CONFIG_SYS_MCKR1_VAL
3812 CONFIG_SYS_MCKR2_VAL 3811 CONFIG_SYS_MCKR2_VAL
3813 CONFIG_SYS_MCKR_CSS 3812 CONFIG_SYS_MCKR_CSS
3814 CONFIG_SYS_MCKR_VAL 3813 CONFIG_SYS_MCKR_VAL
3815 CONFIG_SYS_MCLINK_MAX 3814 CONFIG_SYS_MCLINK_MAX
3816 CONFIG_SYS_MCMEM0_VAL 3815 CONFIG_SYS_MCMEM0_VAL
3817 CONFIG_SYS_MCMEM1_VAL 3816 CONFIG_SYS_MCMEM1_VAL
3818 CONFIG_SYS_MDC1_PIN 3817 CONFIG_SYS_MDC1_PIN
3819 CONFIG_SYS_MDCNFG_VAL 3818 CONFIG_SYS_MDCNFG_VAL
3820 CONFIG_SYS_MDC_PIN 3819 CONFIG_SYS_MDC_PIN
3821 CONFIG_SYS_MDIO1_OFFSET 3820 CONFIG_SYS_MDIO1_OFFSET
3822 CONFIG_SYS_MDIO1_PIN 3821 CONFIG_SYS_MDIO1_PIN
3823 CONFIG_SYS_MDIO_BASE_ADDR 3822 CONFIG_SYS_MDIO_BASE_ADDR
3824 CONFIG_SYS_MDIO_PIN 3823 CONFIG_SYS_MDIO_PIN
3825 CONFIG_SYS_MDMRS_VAL 3824 CONFIG_SYS_MDMRS_VAL
3826 CONFIG_SYS_MDREFR_VAL 3825 CONFIG_SYS_MDREFR_VAL
3827 CONFIG_SYS_MECR_VAL 3826 CONFIG_SYS_MECR_VAL
3828 CONFIG_SYS_MEMAC_LITTLE_ENDIAN 3827 CONFIG_SYS_MEMAC_LITTLE_ENDIAN
3829 CONFIG_SYS_MEMORY_BASE 3828 CONFIG_SYS_MEMORY_BASE
3830 CONFIG_SYS_MEMORY_SIZE 3829 CONFIG_SYS_MEMORY_SIZE
3831 CONFIG_SYS_MEMORY_TOP 3830 CONFIG_SYS_MEMORY_TOP
3832 CONFIG_SYS_MEMTEST_END 3831 CONFIG_SYS_MEMTEST_END
3833 CONFIG_SYS_MEMTEST_SCRATCH 3832 CONFIG_SYS_MEMTEST_SCRATCH
3834 CONFIG_SYS_MEMTEST_START 3833 CONFIG_SYS_MEMTEST_START
3835 CONFIG_SYS_MEM_MAP 3834 CONFIG_SYS_MEM_MAP
3836 CONFIG_SYS_MEM_RESERVE_SECURE 3835 CONFIG_SYS_MEM_RESERVE_SECURE
3837 CONFIG_SYS_MEM_SIZE 3836 CONFIG_SYS_MEM_SIZE
3838 CONFIG_SYS_MEM_TOP_HIDE 3837 CONFIG_SYS_MEM_TOP_HIDE
3839 CONFIG_SYS_MFD 3838 CONFIG_SYS_MFD
3840 CONFIG_SYS_MHZ 3839 CONFIG_SYS_MHZ
3841 CONFIG_SYS_MII_MODE 3840 CONFIG_SYS_MII_MODE
3842 CONFIG_SYS_MIPS_CACHE_MODE 3841 CONFIG_SYS_MIPS_CACHE_MODE
3843 CONFIG_SYS_MIPS_TIMER_FREQ 3842 CONFIG_SYS_MIPS_TIMER_FREQ
3844 CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 3843 CONFIG_SYS_MMCSD_FS_BOOT_PARTITION
3845 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 3844 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR
3846 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 3845 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS
3847 CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 3846 CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
3848 CONFIG_SYS_MMC_BASE 3847 CONFIG_SYS_MMC_BASE
3849 CONFIG_SYS_MMC_CD_PIN 3848 CONFIG_SYS_MMC_CD_PIN
3850 CONFIG_SYS_MMC_CLK_OD 3849 CONFIG_SYS_MMC_CLK_OD
3851 CONFIG_SYS_MMC_ENV_DEV 3850 CONFIG_SYS_MMC_ENV_DEV
3852 CONFIG_SYS_MMC_ENV_PART 3851 CONFIG_SYS_MMC_ENV_PART
3853 CONFIG_SYS_MMC_IMG_LOAD_PART 3852 CONFIG_SYS_MMC_IMG_LOAD_PART
3854 CONFIG_SYS_MMC_MAX_BLK_COUNT 3853 CONFIG_SYS_MMC_MAX_BLK_COUNT
3855 CONFIG_SYS_MMC_MAX_DEVICE 3854 CONFIG_SYS_MMC_MAX_DEVICE
3856 CONFIG_SYS_MMC_U_BOOT_DST 3855 CONFIG_SYS_MMC_U_BOOT_DST
3857 CONFIG_SYS_MMC_U_BOOT_OFFS 3856 CONFIG_SYS_MMC_U_BOOT_OFFS
3858 CONFIG_SYS_MMC_U_BOOT_SIZE 3857 CONFIG_SYS_MMC_U_BOOT_SIZE
3859 CONFIG_SYS_MMC_U_BOOT_START 3858 CONFIG_SYS_MMC_U_BOOT_START
3860 CONFIG_SYS_MONITOR_ 3859 CONFIG_SYS_MONITOR_
3861 CONFIG_SYS_MONITOR_BASE 3860 CONFIG_SYS_MONITOR_BASE
3862 CONFIG_SYS_MONITOR_BASE_EARLY 3861 CONFIG_SYS_MONITOR_BASE_EARLY
3863 CONFIG_SYS_MONITOR_LEN 3862 CONFIG_SYS_MONITOR_LEN
3864 CONFIG_SYS_MONITOR_SEC 3863 CONFIG_SYS_MONITOR_SEC
3865 CONFIG_SYS_MOR_VAL 3864 CONFIG_SYS_MOR_VAL
3866 CONFIG_SYS_MPC83xx_DMA_ADDR 3865 CONFIG_SYS_MPC83xx_DMA_ADDR
3867 CONFIG_SYS_MPC83xx_DMA_OFFSET 3866 CONFIG_SYS_MPC83xx_DMA_OFFSET
3868 CONFIG_SYS_MPC83xx_ESDHC_ADDR 3867 CONFIG_SYS_MPC83xx_ESDHC_ADDR
3869 CONFIG_SYS_MPC83xx_ESDHC_OFFSET 3868 CONFIG_SYS_MPC83xx_ESDHC_OFFSET
3870 CONFIG_SYS_MPC83xx_USB1_ADDR 3869 CONFIG_SYS_MPC83xx_USB1_ADDR
3871 CONFIG_SYS_MPC83xx_USB1_OFFSET 3870 CONFIG_SYS_MPC83xx_USB1_OFFSET
3872 CONFIG_SYS_MPC83xx_USB2_ADDR 3871 CONFIG_SYS_MPC83xx_USB2_ADDR
3873 CONFIG_SYS_MPC83xx_USB2_OFFSET 3872 CONFIG_SYS_MPC83xx_USB2_OFFSET
3874 CONFIG_SYS_MPC85XX_NO_RESETVEC 3873 CONFIG_SYS_MPC85XX_NO_RESETVEC
3875 CONFIG_SYS_MPC85xx_CPM_ADDR 3874 CONFIG_SYS_MPC85xx_CPM_ADDR
3876 CONFIG_SYS_MPC85xx_CPM_OFFSET 3875 CONFIG_SYS_MPC85xx_CPM_OFFSET
3877 CONFIG_SYS_MPC85xx_DMA 3876 CONFIG_SYS_MPC85xx_DMA
3878 CONFIG_SYS_MPC85xx_DMA1_OFFSET 3877 CONFIG_SYS_MPC85xx_DMA1_OFFSET
3879 CONFIG_SYS_MPC85xx_DMA2_OFFSET 3878 CONFIG_SYS_MPC85xx_DMA2_OFFSET
3880 CONFIG_SYS_MPC85xx_DMA3_OFFSET 3879 CONFIG_SYS_MPC85xx_DMA3_OFFSET
3881 CONFIG_SYS_MPC85xx_DMA_ADDR 3880 CONFIG_SYS_MPC85xx_DMA_ADDR
3882 CONFIG_SYS_MPC85xx_DMA_OFFSET 3881 CONFIG_SYS_MPC85xx_DMA_OFFSET
3883 CONFIG_SYS_MPC85xx_ECM_ADDR 3882 CONFIG_SYS_MPC85xx_ECM_ADDR
3884 CONFIG_SYS_MPC85xx_ECM_OFFSET 3883 CONFIG_SYS_MPC85xx_ECM_OFFSET
3885 CONFIG_SYS_MPC85xx_ESDHC_ADDR 3884 CONFIG_SYS_MPC85xx_ESDHC_ADDR
3886 CONFIG_SYS_MPC85xx_ESDHC_OFFSET 3885 CONFIG_SYS_MPC85xx_ESDHC_OFFSET
3887 CONFIG_SYS_MPC85xx_ESPI_ADDR 3886 CONFIG_SYS_MPC85xx_ESPI_ADDR
3888 CONFIG_SYS_MPC85xx_ESPI_OFFSET 3887 CONFIG_SYS_MPC85xx_ESPI_OFFSET
3889 CONFIG_SYS_MPC85xx_GPIO3_ADDR 3888 CONFIG_SYS_MPC85xx_GPIO3_ADDR
3890 CONFIG_SYS_MPC85xx_GPIO_ADDR 3889 CONFIG_SYS_MPC85xx_GPIO_ADDR
3891 CONFIG_SYS_MPC85xx_GPIO_OFFSET 3890 CONFIG_SYS_MPC85xx_GPIO_OFFSET
3892 CONFIG_SYS_MPC85xx_GUTS_ADDR 3891 CONFIG_SYS_MPC85xx_GUTS_ADDR
3893 CONFIG_SYS_MPC85xx_GUTS_OFFSET 3892 CONFIG_SYS_MPC85xx_GUTS_OFFSET
3894 CONFIG_SYS_MPC85xx_IFC_OFFSET 3893 CONFIG_SYS_MPC85xx_IFC_OFFSET
3895 CONFIG_SYS_MPC85xx_L2_ADDR 3894 CONFIG_SYS_MPC85xx_L2_ADDR
3896 CONFIG_SYS_MPC85xx_L2_OFFSET 3895 CONFIG_SYS_MPC85xx_L2_OFFSET
3897 CONFIG_SYS_MPC85xx_LBC_OFFSET 3896 CONFIG_SYS_MPC85xx_LBC_OFFSET
3898 CONFIG_SYS_MPC85xx_PCI1_OFFSET 3897 CONFIG_SYS_MPC85xx_PCI1_OFFSET
3899 CONFIG_SYS_MPC85xx_PCI2_OFFSET 3898 CONFIG_SYS_MPC85xx_PCI2_OFFSET
3900 CONFIG_SYS_MPC85xx_PCIE 3899 CONFIG_SYS_MPC85xx_PCIE
3901 CONFIG_SYS_MPC85xx_PCIE1_OFFSET 3900 CONFIG_SYS_MPC85xx_PCIE1_OFFSET
3902 CONFIG_SYS_MPC85xx_PCIE2_OFFSET 3901 CONFIG_SYS_MPC85xx_PCIE2_OFFSET
3903 CONFIG_SYS_MPC85xx_PCIE3_OFFSET 3902 CONFIG_SYS_MPC85xx_PCIE3_OFFSET
3904 CONFIG_SYS_MPC85xx_PCIE4_OFFSET 3903 CONFIG_SYS_MPC85xx_PCIE4_OFFSET
3905 CONFIG_SYS_MPC85xx_PCIX2_ADDR 3904 CONFIG_SYS_MPC85xx_PCIX2_ADDR
3906 CONFIG_SYS_MPC85xx_PCIX2_OFFSET 3905 CONFIG_SYS_MPC85xx_PCIX2_OFFSET
3907 CONFIG_SYS_MPC85xx_PCIX_ADDR 3906 CONFIG_SYS_MPC85xx_PCIX_ADDR
3908 CONFIG_SYS_MPC85xx_PCIX_OFFSET 3907 CONFIG_SYS_MPC85xx_PCIX_OFFSET
3909 CONFIG_SYS_MPC85xx_PIC_OFFSET 3908 CONFIG_SYS_MPC85xx_PIC_OFFSET
3910 CONFIG_SYS_MPC85xx_QE_OFFSET 3909 CONFIG_SYS_MPC85xx_QE_OFFSET
3911 CONFIG_SYS_MPC85xx_SATA 3910 CONFIG_SYS_MPC85xx_SATA
3912 CONFIG_SYS_MPC85xx_SATA1_ADDR 3911 CONFIG_SYS_MPC85xx_SATA1_ADDR
3913 CONFIG_SYS_MPC85xx_SATA1_OFFSET 3912 CONFIG_SYS_MPC85xx_SATA1_OFFSET
3914 CONFIG_SYS_MPC85xx_SATA2_ADDR 3913 CONFIG_SYS_MPC85xx_SATA2_ADDR
3915 CONFIG_SYS_MPC85xx_SATA2_OFFSET 3914 CONFIG_SYS_MPC85xx_SATA2_OFFSET
3916 CONFIG_SYS_MPC85xx_SCFG 3915 CONFIG_SYS_MPC85xx_SCFG
3917 CONFIG_SYS_MPC85xx_SCFG_OFFSET 3916 CONFIG_SYS_MPC85xx_SCFG_OFFSET
3918 CONFIG_SYS_MPC85xx_SERDES1_ADDR 3917 CONFIG_SYS_MPC85xx_SERDES1_ADDR
3919 CONFIG_SYS_MPC85xx_SERDES1_OFFSET 3918 CONFIG_SYS_MPC85xx_SERDES1_OFFSET
3920 CONFIG_SYS_MPC85xx_SERDES2_ADDR 3919 CONFIG_SYS_MPC85xx_SERDES2_ADDR
3921 CONFIG_SYS_MPC85xx_SERDES2_OFFSET 3920 CONFIG_SYS_MPC85xx_SERDES2_OFFSET
3922 CONFIG_SYS_MPC85xx_TDM_OFFSET 3921 CONFIG_SYS_MPC85xx_TDM_OFFSET
3923 CONFIG_SYS_MPC85xx_USB 3922 CONFIG_SYS_MPC85xx_USB
3924 CONFIG_SYS_MPC85xx_USB1_ADDR 3923 CONFIG_SYS_MPC85xx_USB1_ADDR
3925 CONFIG_SYS_MPC85xx_USB1_OFFSET 3924 CONFIG_SYS_MPC85xx_USB1_OFFSET
3926 CONFIG_SYS_MPC85xx_USB1_PHY_ADDR 3925 CONFIG_SYS_MPC85xx_USB1_PHY_ADDR
3927 CONFIG_SYS_MPC85xx_USB1_PHY_OFFSET 3926 CONFIG_SYS_MPC85xx_USB1_PHY_OFFSET
3928 CONFIG_SYS_MPC85xx_USB2_ADDR 3927 CONFIG_SYS_MPC85xx_USB2_ADDR
3929 CONFIG_SYS_MPC85xx_USB2_OFFSET 3928 CONFIG_SYS_MPC85xx_USB2_OFFSET
3930 CONFIG_SYS_MPC85xx_USB2_PHY_ADDR 3929 CONFIG_SYS_MPC85xx_USB2_PHY_ADDR
3931 CONFIG_SYS_MPC85xx_USB2_PHY_OFFSET 3930 CONFIG_SYS_MPC85xx_USB2_PHY_OFFSET
3932 CONFIG_SYS_MPC86xx_DMA_ADDR 3931 CONFIG_SYS_MPC86xx_DMA_ADDR
3933 CONFIG_SYS_MPC86xx_DMA_OFFSET 3932 CONFIG_SYS_MPC86xx_DMA_OFFSET
3934 CONFIG_SYS_MPC86xx_PCI1_OFFSET 3933 CONFIG_SYS_MPC86xx_PCI1_OFFSET
3935 CONFIG_SYS_MPC86xx_PCI2_OFFSET 3934 CONFIG_SYS_MPC86xx_PCI2_OFFSET
3936 CONFIG_SYS_MPC86xx_PCIE1_OFFSET 3935 CONFIG_SYS_MPC86xx_PCIE1_OFFSET
3937 CONFIG_SYS_MPC86xx_PCIE2_OFFSET 3936 CONFIG_SYS_MPC86xx_PCIE2_OFFSET
3938 CONFIG_SYS_MPC86xx_PIC_OFFSET 3937 CONFIG_SYS_MPC86xx_PIC_OFFSET
3939 CONFIG_SYS_MPC8xxx_DDR2_OFFSET 3938 CONFIG_SYS_MPC8xxx_DDR2_OFFSET
3940 CONFIG_SYS_MPC8xxx_DDR3_OFFSET 3939 CONFIG_SYS_MPC8xxx_DDR3_OFFSET
3941 CONFIG_SYS_MPC8xxx_DDR_OFFSET 3940 CONFIG_SYS_MPC8xxx_DDR_OFFSET
3942 CONFIG_SYS_MPC8xxx_GUTS_ADDR 3941 CONFIG_SYS_MPC8xxx_GUTS_ADDR
3943 CONFIG_SYS_MPC8xxx_PIC_ADDR 3942 CONFIG_SYS_MPC8xxx_PIC_ADDR
3944 CONFIG_SYS_MPC92469AC 3943 CONFIG_SYS_MPC92469AC
3945 CONFIG_SYS_MRAM_BASE 3944 CONFIG_SYS_MRAM_BASE
3946 CONFIG_SYS_MRAM_SIZE 3945 CONFIG_SYS_MRAM_SIZE
3947 CONFIG_SYS_MSC0_VAL 3946 CONFIG_SYS_MSC0_VAL
3948 CONFIG_SYS_MSC1_VAL 3947 CONFIG_SYS_MSC1_VAL
3949 CONFIG_SYS_MSC2_VAL 3948 CONFIG_SYS_MSC2_VAL
3950 CONFIG_SYS_MTDPARTS_RUNTIME 3949 CONFIG_SYS_MTDPARTS_RUNTIME
3951 CONFIG_SYS_MVFS 3950 CONFIG_SYS_MVFS
3952 CONFIG_SYS_MX5_CLK32 3951 CONFIG_SYS_MX5_CLK32
3953 CONFIG_SYS_MX5_HCLK 3952 CONFIG_SYS_MX5_HCLK
3954 CONFIG_SYS_MX6_CLK32 3953 CONFIG_SYS_MX6_CLK32
3955 CONFIG_SYS_MX6_HCLK 3954 CONFIG_SYS_MX6_HCLK
3956 CONFIG_SYS_MX7_CLK32 3955 CONFIG_SYS_MX7_CLK32
3957 CONFIG_SYS_MX7_HCLK 3956 CONFIG_SYS_MX7_HCLK
3958 CONFIG_SYS_MXC_I2C1_SLAVE 3957 CONFIG_SYS_MXC_I2C1_SLAVE
3959 CONFIG_SYS_MXC_I2C1_SPEED 3958 CONFIG_SYS_MXC_I2C1_SPEED
3960 CONFIG_SYS_MXC_I2C2_SLAVE 3959 CONFIG_SYS_MXC_I2C2_SLAVE
3961 CONFIG_SYS_MXC_I2C2_SPEED 3960 CONFIG_SYS_MXC_I2C2_SPEED
3962 CONFIG_SYS_MXC_I2C3_SLAVE 3961 CONFIG_SYS_MXC_I2C3_SLAVE
3963 CONFIG_SYS_MXC_I2C3_SPEED 3962 CONFIG_SYS_MXC_I2C3_SPEED
3964 CONFIG_SYS_MXC_I2C4_SLAVE 3963 CONFIG_SYS_MXC_I2C4_SLAVE
3965 CONFIG_SYS_MXC_I2C4_SPEED 3964 CONFIG_SYS_MXC_I2C4_SPEED
3966 CONFIG_SYS_MXS_VDD5V_ONLY 3965 CONFIG_SYS_MXS_VDD5V_ONLY
3967 CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST 3966 CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
3968 CONFIG_SYS_NAND_4_ADDR_CYCLE 3967 CONFIG_SYS_NAND_4_ADDR_CYCLE
3969 CONFIG_SYS_NAND_5_ADDR_CYCLE 3968 CONFIG_SYS_NAND_5_ADDR_CYCLE
3970 CONFIG_SYS_NAND_ACTL_ALE 3969 CONFIG_SYS_NAND_ACTL_ALE
3971 CONFIG_SYS_NAND_ACTL_CLE 3970 CONFIG_SYS_NAND_ACTL_CLE
3972 CONFIG_SYS_NAND_ACTL_DELAY 3971 CONFIG_SYS_NAND_ACTL_DELAY
3973 CONFIG_SYS_NAND_ACTL_NCE 3972 CONFIG_SYS_NAND_ACTL_NCE
3974 CONFIG_SYS_NAND_ADDR 3973 CONFIG_SYS_NAND_ADDR
3975 CONFIG_SYS_NAND_ALE 3974 CONFIG_SYS_NAND_ALE
3976 CONFIG_SYS_NAND_AMASK 3975 CONFIG_SYS_NAND_AMASK
3977 CONFIG_SYS_NAND_BAD_BLOCK_POS 3976 CONFIG_SYS_NAND_BAD_BLOCK_POS
3978 CONFIG_SYS_NAND_BASE 3977 CONFIG_SYS_NAND_BASE
3979 CONFIG_SYS_NAND_BASE2 3978 CONFIG_SYS_NAND_BASE2
3980 CONFIG_SYS_NAND_BASE_LIST 3979 CONFIG_SYS_NAND_BASE_LIST
3981 CONFIG_SYS_NAND_BASE_PHYS 3980 CONFIG_SYS_NAND_BASE_PHYS
3982 CONFIG_SYS_NAND_BCR 3981 CONFIG_SYS_NAND_BCR
3983 CONFIG_SYS_NAND_BLOCK_SIZE 3982 CONFIG_SYS_NAND_BLOCK_SIZE
3984 CONFIG_SYS_NAND_BOOT 3983 CONFIG_SYS_NAND_BOOT
3985 CONFIG_SYS_NAND_BR_PRELIM 3984 CONFIG_SYS_NAND_BR_PRELIM
3986 CONFIG_SYS_NAND_BUSWIDTH_16 3985 CONFIG_SYS_NAND_BUSWIDTH_16
3987 CONFIG_SYS_NAND_CLE 3986 CONFIG_SYS_NAND_CLE
3988 CONFIG_SYS_NAND_CS 3987 CONFIG_SYS_NAND_CS
3989 CONFIG_SYS_NAND_CSOR 3988 CONFIG_SYS_NAND_CSOR
3990 CONFIG_SYS_NAND_CSPR 3989 CONFIG_SYS_NAND_CSPR
3991 CONFIG_SYS_NAND_CSPR_EXT 3990 CONFIG_SYS_NAND_CSPR_EXT
3992 CONFIG_SYS_NAND_DATA_BASE 3991 CONFIG_SYS_NAND_DATA_BASE
3993 CONFIG_SYS_NAND_DBW_16 3992 CONFIG_SYS_NAND_DBW_16
3994 CONFIG_SYS_NAND_DBW_8 3993 CONFIG_SYS_NAND_DBW_8
3995 CONFIG_SYS_NAND_DDR_LAW 3994 CONFIG_SYS_NAND_DDR_LAW
3996 CONFIG_SYS_NAND_ECCBYTES 3995 CONFIG_SYS_NAND_ECCBYTES
3997 CONFIG_SYS_NAND_ECCPOS 3996 CONFIG_SYS_NAND_ECCPOS
3998 CONFIG_SYS_NAND_ECCSIZE 3997 CONFIG_SYS_NAND_ECCSIZE
3999 CONFIG_SYS_NAND_ECCSTEPS 3998 CONFIG_SYS_NAND_ECCSTEPS
4000 CONFIG_SYS_NAND_ECCTOTAL 3999 CONFIG_SYS_NAND_ECCTOTAL
4001 CONFIG_SYS_NAND_ECC_BASE 4000 CONFIG_SYS_NAND_ECC_BASE
4002 CONFIG_SYS_NAND_ENABLE_PIN 4001 CONFIG_SYS_NAND_ENABLE_PIN
4003 CONFIG_SYS_NAND_ENABLE_PIN_SPL 4002 CONFIG_SYS_NAND_ENABLE_PIN_SPL
4004 CONFIG_SYS_NAND_FTIM0 4003 CONFIG_SYS_NAND_FTIM0
4005 CONFIG_SYS_NAND_FTIM1 4004 CONFIG_SYS_NAND_FTIM1
4006 CONFIG_SYS_NAND_FTIM2 4005 CONFIG_SYS_NAND_FTIM2
4007 CONFIG_SYS_NAND_FTIM3 4006 CONFIG_SYS_NAND_FTIM3
4008 CONFIG_SYS_NAND_HW_ECC 4007 CONFIG_SYS_NAND_HW_ECC
4009 CONFIG_SYS_NAND_HW_ECC_OOBFIRST 4008 CONFIG_SYS_NAND_HW_ECC_OOBFIRST
4010 CONFIG_SYS_NAND_LARGEPAGE 4009 CONFIG_SYS_NAND_LARGEPAGE
4011 CONFIG_SYS_NAND_LBLAWAR_PRELIM 4010 CONFIG_SYS_NAND_LBLAWAR_PRELIM
4012 CONFIG_SYS_NAND_LBLAWBAR_PRELIM 4011 CONFIG_SYS_NAND_LBLAWBAR_PRELIM
4013 CONFIG_SYS_NAND_MASK_ALE 4012 CONFIG_SYS_NAND_MASK_ALE
4014 CONFIG_SYS_NAND_MASK_CLE 4013 CONFIG_SYS_NAND_MASK_CLE
4015 CONFIG_SYS_NAND_MAX_CHIPS 4014 CONFIG_SYS_NAND_MAX_CHIPS
4016 CONFIG_SYS_NAND_MAX_ECCPOS 4015 CONFIG_SYS_NAND_MAX_ECCPOS
4017 CONFIG_SYS_NAND_MAX_OOBFREE 4016 CONFIG_SYS_NAND_MAX_OOBFREE
4018 CONFIG_SYS_NAND_MX7_GPMI_62_ECC_BYTES 4017 CONFIG_SYS_NAND_MX7_GPMI_62_ECC_BYTES
4019 CONFIG_SYS_NAND_NO_SUBPAGE 4018 CONFIG_SYS_NAND_NO_SUBPAGE
4020 CONFIG_SYS_NAND_NO_SUBPAGE_WRITE 4019 CONFIG_SYS_NAND_NO_SUBPAGE_WRITE
4021 CONFIG_SYS_NAND_ONFI_DETECTION 4020 CONFIG_SYS_NAND_ONFI_DETECTION
4022 CONFIG_SYS_NAND_OOBSIZE 4021 CONFIG_SYS_NAND_OOBSIZE
4023 CONFIG_SYS_NAND_OR_PRELIM 4022 CONFIG_SYS_NAND_OR_PRELIM
4024 CONFIG_SYS_NAND_PAGE_2K 4023 CONFIG_SYS_NAND_PAGE_2K
4025 CONFIG_SYS_NAND_PAGE_4K 4024 CONFIG_SYS_NAND_PAGE_4K
4026 CONFIG_SYS_NAND_PAGE_COUNT 4025 CONFIG_SYS_NAND_PAGE_COUNT
4027 CONFIG_SYS_NAND_PAGE_SIZE 4026 CONFIG_SYS_NAND_PAGE_SIZE
4028 CONFIG_SYS_NAND_QUIET 4027 CONFIG_SYS_NAND_QUIET
4029 CONFIG_SYS_NAND_READY_PIN 4028 CONFIG_SYS_NAND_READY_PIN
4030 CONFIG_SYS_NAND_REGS_BASE 4029 CONFIG_SYS_NAND_REGS_BASE
4031 CONFIG_SYS_NAND_SELECT_DEVICE 4030 CONFIG_SYS_NAND_SELECT_DEVICE
4032 CONFIG_SYS_NAND_SIZE 4031 CONFIG_SYS_NAND_SIZE
4033 CONFIG_SYS_NAND_SPL_KERNEL_OFFS 4032 CONFIG_SYS_NAND_SPL_KERNEL_OFFS
4034 CONFIG_SYS_NAND_SPL_SIZE 4033 CONFIG_SYS_NAND_SPL_SIZE
4035 CONFIG_SYS_NAND_USE_FLASH_BBT 4034 CONFIG_SYS_NAND_USE_FLASH_BBT
4036 CONFIG_SYS_NAND_U_BOOT_DST 4035 CONFIG_SYS_NAND_U_BOOT_DST
4037 CONFIG_SYS_NAND_U_BOOT_RELOC 4036 CONFIG_SYS_NAND_U_BOOT_RELOC
4038 CONFIG_SYS_NAND_U_BOOT_RELOC_SP 4037 CONFIG_SYS_NAND_U_BOOT_RELOC_SP
4039 CONFIG_SYS_NAND_U_BOOT_SIZE 4038 CONFIG_SYS_NAND_U_BOOT_SIZE
4040 CONFIG_SYS_NAND_U_BOOT_START 4039 CONFIG_SYS_NAND_U_BOOT_START
4041 CONFIG_SYS_NAND_WINDOW_SIZE 4040 CONFIG_SYS_NAND_WINDOW_SIZE
4042 CONFIG_SYS_NDFC_EBC0_CFG 4041 CONFIG_SYS_NDFC_EBC0_CFG
4043 CONFIG_SYS_NETA_INTERFACE_TYPE 4042 CONFIG_SYS_NETA_INTERFACE_TYPE
4044 CONFIG_SYS_NONCACHED_MEMORY 4043 CONFIG_SYS_NONCACHED_MEMORY
4045 CONFIG_SYS_NOR0_CSPR 4044 CONFIG_SYS_NOR0_CSPR
4046 CONFIG_SYS_NOR0_CSPR_EARLY 4045 CONFIG_SYS_NOR0_CSPR_EARLY
4047 CONFIG_SYS_NOR0_CSPR_EXT 4046 CONFIG_SYS_NOR0_CSPR_EXT
4048 CONFIG_SYS_NOR1SZ 4047 CONFIG_SYS_NOR1SZ
4049 CONFIG_SYS_NOR1_CSPR 4048 CONFIG_SYS_NOR1_CSPR
4050 CONFIG_SYS_NOR1_CSPR_EARLY 4049 CONFIG_SYS_NOR1_CSPR_EARLY
4051 CONFIG_SYS_NOR1_CSPR_EXT 4050 CONFIG_SYS_NOR1_CSPR_EXT
4052 CONFIG_SYS_NOR_AMASK 4051 CONFIG_SYS_NOR_AMASK
4053 CONFIG_SYS_NOR_AMASK_EARLY 4052 CONFIG_SYS_NOR_AMASK_EARLY
4054 CONFIG_SYS_NOR_BR_PRELIM 4053 CONFIG_SYS_NOR_BR_PRELIM
4055 CONFIG_SYS_NOR_CSOR 4054 CONFIG_SYS_NOR_CSOR
4056 CONFIG_SYS_NOR_CSPR 4055 CONFIG_SYS_NOR_CSPR
4057 CONFIG_SYS_NOR_CSPR_EXT 4056 CONFIG_SYS_NOR_CSPR_EXT
4058 CONFIG_SYS_NOR_FTIM0 4057 CONFIG_SYS_NOR_FTIM0
4059 CONFIG_SYS_NOR_FTIM1 4058 CONFIG_SYS_NOR_FTIM1
4060 CONFIG_SYS_NOR_FTIM2 4059 CONFIG_SYS_NOR_FTIM2
4061 CONFIG_SYS_NOR_FTIM3 4060 CONFIG_SYS_NOR_FTIM3
4062 CONFIG_SYS_NOR_OR_PRELIM 4061 CONFIG_SYS_NOR_OR_PRELIM
4063 CONFIG_SYS_NO_DCACHE 4062 CONFIG_SYS_NO_DCACHE
4064 CONFIG_SYS_NS16550_CLK 4063 CONFIG_SYS_NS16550_CLK
4065 CONFIG_SYS_NS16550_CLK_DIV 4064 CONFIG_SYS_NS16550_CLK_DIV
4066 CONFIG_SYS_NS16550_COM1 4065 CONFIG_SYS_NS16550_COM1
4067 CONFIG_SYS_NS16550_COM2 4066 CONFIG_SYS_NS16550_COM2
4068 CONFIG_SYS_NS16550_COM3 4067 CONFIG_SYS_NS16550_COM3
4069 CONFIG_SYS_NS16550_COM4 4068 CONFIG_SYS_NS16550_COM4
4070 CONFIG_SYS_NS16550_COM5 4069 CONFIG_SYS_NS16550_COM5
4071 CONFIG_SYS_NS16550_COM6 4070 CONFIG_SYS_NS16550_COM6
4072 CONFIG_SYS_NS16550_IER 4071 CONFIG_SYS_NS16550_IER
4073 CONFIG_SYS_NS16550_MEM32 4072 CONFIG_SYS_NS16550_MEM32
4074 CONFIG_SYS_NS16550_PORT_MAPPED 4073 CONFIG_SYS_NS16550_PORT_MAPPED
4075 CONFIG_SYS_NS16550_REG_SIZE 4074 CONFIG_SYS_NS16550_REG_SIZE
4076 CONFIG_SYS_NS16550_SERIAL 4075 CONFIG_SYS_NS16550_SERIAL
4077 CONFIG_SYS_NS87308_CS0_BASE 4076 CONFIG_SYS_NS87308_CS0_BASE
4078 CONFIG_SYS_NS87308_CS0_CONF 4077 CONFIG_SYS_NS87308_CS0_CONF
4079 CONFIG_SYS_NS87308_CS1_BASE 4078 CONFIG_SYS_NS87308_CS1_BASE
4080 CONFIG_SYS_NS87308_CS1_CONF 4079 CONFIG_SYS_NS87308_CS1_CONF
4081 CONFIG_SYS_NS87308_CS2_BASE 4080 CONFIG_SYS_NS87308_CS2_BASE
4082 CONFIG_SYS_NS87308_CS2_CONF 4081 CONFIG_SYS_NS87308_CS2_CONF
4083 CONFIG_SYS_NS87308_FDC 4082 CONFIG_SYS_NS87308_FDC
4084 CONFIG_SYS_NS87308_FDC_BASE 4083 CONFIG_SYS_NS87308_FDC_BASE
4085 CONFIG_SYS_NS87308_GPIO 4084 CONFIG_SYS_NS87308_GPIO
4086 CONFIG_SYS_NS87308_GPIO_BASE 4085 CONFIG_SYS_NS87308_GPIO_BASE
4087 CONFIG_SYS_NS87308_KBC1 4086 CONFIG_SYS_NS87308_KBC1
4088 CONFIG_SYS_NS87308_KBC1_BASE 4087 CONFIG_SYS_NS87308_KBC1_BASE
4089 CONFIG_SYS_NS87308_KBC2 4088 CONFIG_SYS_NS87308_KBC2
4090 CONFIG_SYS_NS87308_LPT_BASE 4089 CONFIG_SYS_NS87308_LPT_BASE
4091 CONFIG_SYS_NS87308_MOUSE 4090 CONFIG_SYS_NS87308_MOUSE
4092 CONFIG_SYS_NS87308_PARP 4091 CONFIG_SYS_NS87308_PARP
4093 CONFIG_SYS_NS87308_PMC1 4092 CONFIG_SYS_NS87308_PMC1
4094 CONFIG_SYS_NS87308_PMC2 4093 CONFIG_SYS_NS87308_PMC2
4095 CONFIG_SYS_NS87308_PMC3 4094 CONFIG_SYS_NS87308_PMC3
4096 CONFIG_SYS_NS87308_POWRMAN 4095 CONFIG_SYS_NS87308_POWRMAN
4097 CONFIG_SYS_NS87308_PS2MOD 4096 CONFIG_SYS_NS87308_PS2MOD
4098 CONFIG_SYS_NS87308_PWMAN_BASE 4097 CONFIG_SYS_NS87308_PWMAN_BASE
4099 CONFIG_SYS_NS87308_RARP 4098 CONFIG_SYS_NS87308_RARP
4100 CONFIG_SYS_NS87308_RTC_APC 4099 CONFIG_SYS_NS87308_RTC_APC
4101 CONFIG_SYS_NS87308_RTC_BASE 4100 CONFIG_SYS_NS87308_RTC_BASE
4102 CONFIG_SYS_NS87308_UART1 4101 CONFIG_SYS_NS87308_UART1
4103 CONFIG_SYS_NS87308_UART1_BASE 4102 CONFIG_SYS_NS87308_UART1_BASE
4104 CONFIG_SYS_NS87308_UART2 4103 CONFIG_SYS_NS87308_UART2
4105 CONFIG_SYS_NS87308_UART2_BASE 4104 CONFIG_SYS_NS87308_UART2_BASE
4106 CONFIG_SYS_NUM_ADDR_MAP 4105 CONFIG_SYS_NUM_ADDR_MAP
4107 CONFIG_SYS_NUM_CPC 4106 CONFIG_SYS_NUM_CPC
4108 CONFIG_SYS_NUM_FM1_10GEC 4107 CONFIG_SYS_NUM_FM1_10GEC
4109 CONFIG_SYS_NUM_FM1_DTSEC 4108 CONFIG_SYS_NUM_FM1_DTSEC
4110 CONFIG_SYS_NUM_FM2_10GEC 4109 CONFIG_SYS_NUM_FM2_10GEC
4111 CONFIG_SYS_NUM_FM2_DTSEC 4110 CONFIG_SYS_NUM_FM2_DTSEC
4112 CONFIG_SYS_NUM_FMAN 4111 CONFIG_SYS_NUM_FMAN
4113 CONFIG_SYS_NUM_I2C_BUSES 4112 CONFIG_SYS_NUM_I2C_BUSES
4114 CONFIG_SYS_NUM_IRQS 4113 CONFIG_SYS_NUM_IRQS
4115 CONFIG_SYS_NVRAM_ACCESS_ROUTINE 4114 CONFIG_SYS_NVRAM_ACCESS_ROUTINE
4116 CONFIG_SYS_NVRAM_BASE_ADDR 4115 CONFIG_SYS_NVRAM_BASE_ADDR
4117 CONFIG_SYS_NVRAM_SIZE 4116 CONFIG_SYS_NVRAM_SIZE
4118 CONFIG_SYS_OBIR 4117 CONFIG_SYS_OBIR
4119 CONFIG_SYS_OHCI_BE_CONTROLLER 4118 CONFIG_SYS_OHCI_BE_CONTROLLER
4120 CONFIG_SYS_OHCI_SWAP_REG_ACCESS 4119 CONFIG_SYS_OHCI_SWAP_REG_ACCESS
4121 CONFIG_SYS_OMAP24_I2C_SLAVE 4120 CONFIG_SYS_OMAP24_I2C_SLAVE
4122 CONFIG_SYS_OMAP24_I2C_SLAVE1 4121 CONFIG_SYS_OMAP24_I2C_SLAVE1
4123 CONFIG_SYS_OMAP24_I2C_SLAVE2 4122 CONFIG_SYS_OMAP24_I2C_SLAVE2
4124 CONFIG_SYS_OMAP24_I2C_SLAVE3 4123 CONFIG_SYS_OMAP24_I2C_SLAVE3
4125 CONFIG_SYS_OMAP24_I2C_SLAVE4 4124 CONFIG_SYS_OMAP24_I2C_SLAVE4
4126 CONFIG_SYS_OMAP24_I2C_SPEED 4125 CONFIG_SYS_OMAP24_I2C_SPEED
4127 CONFIG_SYS_OMAP24_I2C_SPEED1 4126 CONFIG_SYS_OMAP24_I2C_SPEED1
4128 CONFIG_SYS_OMAP24_I2C_SPEED2 4127 CONFIG_SYS_OMAP24_I2C_SPEED2
4129 CONFIG_SYS_OMAP24_I2C_SPEED3 4128 CONFIG_SYS_OMAP24_I2C_SPEED3
4130 CONFIG_SYS_OMAP24_I2C_SPEED4 4129 CONFIG_SYS_OMAP24_I2C_SPEED4
4131 CONFIG_SYS_OMAP24_I2C_SPEED_PSOC 4130 CONFIG_SYS_OMAP24_I2C_SPEED_PSOC
4132 CONFIG_SYS_OMAP_ABE_SYSCK 4131 CONFIG_SYS_OMAP_ABE_SYSCK
4133 CONFIG_SYS_ONENAND_BASE 4132 CONFIG_SYS_ONENAND_BASE
4134 CONFIG_SYS_ONENAND_BLOCK_SIZE 4133 CONFIG_SYS_ONENAND_BLOCK_SIZE
4135 CONFIG_SYS_ONENAND_PAGE_SIZE 4134 CONFIG_SYS_ONENAND_PAGE_SIZE
4136 CONFIG_SYS_OR0_64M 4135 CONFIG_SYS_OR0_64M
4137 CONFIG_SYS_OR0_8M 4136 CONFIG_SYS_OR0_8M
4138 CONFIG_SYS_OR0_REMAP 4137 CONFIG_SYS_OR0_REMAP
4139 CONFIG_SYS_OR1_REMAP 4138 CONFIG_SYS_OR1_REMAP
4140 CONFIG_SYS_OR6_64M 4139 CONFIG_SYS_OR6_64M
4141 CONFIG_SYS_OR6_8M 4140 CONFIG_SYS_OR6_8M
4142 CONFIG_SYS_OR_TIMING_FLASH 4141 CONFIG_SYS_OR_TIMING_FLASH
4143 CONFIG_SYS_OR_TIMING_MRAM 4142 CONFIG_SYS_OR_TIMING_MRAM
4144 CONFIG_SYS_OSCIN_FREQ 4143 CONFIG_SYS_OSCIN_FREQ
4145 CONFIG_SYS_OSD_DH 4144 CONFIG_SYS_OSD_DH
4146 CONFIG_SYS_OSD_SCREENS 4145 CONFIG_SYS_OSD_SCREENS
4147 CONFIG_SYS_OSPR_OFFSET 4146 CONFIG_SYS_OSPR_OFFSET
4148 CONFIG_SYS_PACNT 4147 CONFIG_SYS_PACNT
4149 CONFIG_SYS_PADAT 4148 CONFIG_SYS_PADAT
4150 CONFIG_SYS_PADDR 4149 CONFIG_SYS_PADDR
4151 CONFIG_SYS_PAGE_SIZE 4150 CONFIG_SYS_PAGE_SIZE
4152 CONFIG_SYS_PAMU_ADDR 4151 CONFIG_SYS_PAMU_ADDR
4153 CONFIG_SYS_PASPAR 4152 CONFIG_SYS_PASPAR
4154 CONFIG_SYS_PAXE_BASE 4153 CONFIG_SYS_PAXE_BASE
4155 CONFIG_SYS_PAXE_SIZE 4154 CONFIG_SYS_PAXE_SIZE
4156 CONFIG_SYS_PBCNT 4155 CONFIG_SYS_PBCNT
4157 CONFIG_SYS_PBDAT 4156 CONFIG_SYS_PBDAT
4158 CONFIG_SYS_PBDDR 4157 CONFIG_SYS_PBDDR
4159 CONFIG_SYS_PBI_FLASH_BASE 4158 CONFIG_SYS_PBI_FLASH_BASE
4160 CONFIG_SYS_PBI_FLASH_WINDOW 4159 CONFIG_SYS_PBI_FLASH_WINDOW
4161 CONFIG_SYS_PBSIZE 4160 CONFIG_SYS_PBSIZE
4162 CONFIG_SYS_PCA953X_BRD_CFG0 4161 CONFIG_SYS_PCA953X_BRD_CFG0
4163 CONFIG_SYS_PCA953X_BRD_CFG1 4162 CONFIG_SYS_PCA953X_BRD_CFG1
4164 CONFIG_SYS_PCA953X_BRD_CFG2 4163 CONFIG_SYS_PCA953X_BRD_CFG2
4165 CONFIG_SYS_PCA953X_C0_FLASH_PASS_CS 4164 CONFIG_SYS_PCA953X_C0_FLASH_PASS_CS
4166 CONFIG_SYS_PCA953X_C0_SER0_EN 4165 CONFIG_SYS_PCA953X_C0_SER0_EN
4167 CONFIG_SYS_PCA953X_C0_SER0_MODE 4166 CONFIG_SYS_PCA953X_C0_SER0_MODE
4168 CONFIG_SYS_PCA953X_C0_SER1_EN 4167 CONFIG_SYS_PCA953X_C0_SER1_EN
4169 CONFIG_SYS_PCA953X_C0_SER1_MODE 4168 CONFIG_SYS_PCA953X_C0_SER1_MODE
4170 CONFIG_SYS_PCA953X_C0_VCORE_VID2 4169 CONFIG_SYS_PCA953X_C0_VCORE_VID2
4171 CONFIG_SYS_PCA953X_C0_VCORE_VID3 4170 CONFIG_SYS_PCA953X_C0_VCORE_VID3
4172 CONFIG_SYS_PCA953X_EREADY 4171 CONFIG_SYS_PCA953X_EREADY
4173 CONFIG_SYS_PCA953X_FLASH_PASS_CS 4172 CONFIG_SYS_PCA953X_FLASH_PASS_CS
4174 CONFIG_SYS_PCA953X_GPIO_VPX0 4173 CONFIG_SYS_PCA953X_GPIO_VPX0
4175 CONFIG_SYS_PCA953X_GPIO_VPX1 4174 CONFIG_SYS_PCA953X_GPIO_VPX1
4176 CONFIG_SYS_PCA953X_GPIO_VPX2 4175 CONFIG_SYS_PCA953X_GPIO_VPX2
4177 CONFIG_SYS_PCA953X_GPIO_VPX3 4176 CONFIG_SYS_PCA953X_GPIO_VPX3
4178 CONFIG_SYS_PCA953X_MC_GPIO0 4177 CONFIG_SYS_PCA953X_MC_GPIO0
4179 CONFIG_SYS_PCA953X_MC_GPIO1 4178 CONFIG_SYS_PCA953X_MC_GPIO1
4180 CONFIG_SYS_PCA953X_MC_GPIO2 4179 CONFIG_SYS_PCA953X_MC_GPIO2
4181 CONFIG_SYS_PCA953X_MC_GPIO3 4180 CONFIG_SYS_PCA953X_MC_GPIO3
4182 CONFIG_SYS_PCA953X_MC_GPIO4 4181 CONFIG_SYS_PCA953X_MC_GPIO4
4183 CONFIG_SYS_PCA953X_MC_GPIO5 4182 CONFIG_SYS_PCA953X_MC_GPIO5
4184 CONFIG_SYS_PCA953X_MC_GPIO6 4183 CONFIG_SYS_PCA953X_MC_GPIO6
4185 CONFIG_SYS_PCA953X_MC_GPIO7 4184 CONFIG_SYS_PCA953X_MC_GPIO7
4186 CONFIG_SYS_PCA953X_MONARCH 4185 CONFIG_SYS_PCA953X_MONARCH
4187 CONFIG_SYS_PCA953X_NVM_WP 4186 CONFIG_SYS_PCA953X_NVM_WP
4188 CONFIG_SYS_PCA953X_P0_GA0 4187 CONFIG_SYS_PCA953X_P0_GA0
4189 CONFIG_SYS_PCA953X_P0_GA1 4188 CONFIG_SYS_PCA953X_P0_GA1
4190 CONFIG_SYS_PCA953X_P0_GA2 4189 CONFIG_SYS_PCA953X_P0_GA2
4191 CONFIG_SYS_PCA953X_P0_GA3 4190 CONFIG_SYS_PCA953X_P0_GA3
4192 CONFIG_SYS_PCA953X_P0_GA4 4191 CONFIG_SYS_PCA953X_P0_GA4
4193 CONFIG_SYS_PCA953X_P0_GAP 4192 CONFIG_SYS_PCA953X_P0_GAP
4194 CONFIG_SYS_PCA953X_P14_IO0 4193 CONFIG_SYS_PCA953X_P14_IO0
4195 CONFIG_SYS_PCA953X_P14_IO1 4194 CONFIG_SYS_PCA953X_P14_IO1
4196 CONFIG_SYS_PCA953X_P14_IO2 4195 CONFIG_SYS_PCA953X_P14_IO2
4197 CONFIG_SYS_PCA953X_P14_IO3 4196 CONFIG_SYS_PCA953X_P14_IO3
4198 CONFIG_SYS_PCA953X_P14_IO4 4197 CONFIG_SYS_PCA953X_P14_IO4
4199 CONFIG_SYS_PCA953X_P14_IO5 4198 CONFIG_SYS_PCA953X_P14_IO5
4200 CONFIG_SYS_PCA953X_P14_IO6 4199 CONFIG_SYS_PCA953X_P14_IO6
4201 CONFIG_SYS_PCA953X_P14_IO7 4200 CONFIG_SYS_PCA953X_P14_IO7
4202 CONFIG_SYS_PCA953X_P1_SYSEN 4201 CONFIG_SYS_PCA953X_P1_SYSEN
4203 CONFIG_SYS_PCA953X_PLUG_GPIO0 4202 CONFIG_SYS_PCA953X_PLUG_GPIO0
4204 CONFIG_SYS_PCA953X_PMC0_EREADY 4203 CONFIG_SYS_PCA953X_PMC0_EREADY
4205 CONFIG_SYS_PCA953X_PMC0_MONARCH 4204 CONFIG_SYS_PCA953X_PMC0_MONARCH
4206 CONFIG_SYS_PCA953X_PMC_EREADY 4205 CONFIG_SYS_PCA953X_PMC_EREADY
4207 CONFIG_SYS_PCA953X_PMC_MONARCH 4206 CONFIG_SYS_PCA953X_PMC_MONARCH
4208 CONFIG_SYS_PCA953X_PMC_PRESENT 4207 CONFIG_SYS_PCA953X_PMC_PRESENT
4209 CONFIG_SYS_PCA953X_VPX_FRU_WRCTL 4208 CONFIG_SYS_PCA953X_VPX_FRU_WRCTL
4210 CONFIG_SYS_PCA953X_VPX_GPIO0 4209 CONFIG_SYS_PCA953X_VPX_GPIO0
4211 CONFIG_SYS_PCA953X_VPX_GPIO1 4210 CONFIG_SYS_PCA953X_VPX_GPIO1
4212 CONFIG_SYS_PCA953X_VPX_GPIO2 4211 CONFIG_SYS_PCA953X_VPX_GPIO2
4213 CONFIG_SYS_PCA953X_VPX_GPIO3 4212 CONFIG_SYS_PCA953X_VPX_GPIO3
4214 CONFIG_SYS_PCA953X_XMC0_BIST 4213 CONFIG_SYS_PCA953X_XMC0_BIST
4215 CONFIG_SYS_PCA953X_XMC0_MVMR0 4214 CONFIG_SYS_PCA953X_XMC0_MVMR0
4216 CONFIG_SYS_PCA953X_XMC0_ROOT0 4215 CONFIG_SYS_PCA953X_XMC0_ROOT0
4217 CONFIG_SYS_PCA953X_XMC0_WAKE 4216 CONFIG_SYS_PCA953X_XMC0_WAKE
4218 CONFIG_SYS_PCA953X_XMC_BIST 4217 CONFIG_SYS_PCA953X_XMC_BIST
4219 CONFIG_SYS_PCA953X_XMC_GA0 4218 CONFIG_SYS_PCA953X_XMC_GA0
4220 CONFIG_SYS_PCA953X_XMC_GA1 4219 CONFIG_SYS_PCA953X_XMC_GA1
4221 CONFIG_SYS_PCA953X_XMC_GA2 4220 CONFIG_SYS_PCA953X_XMC_GA2
4222 CONFIG_SYS_PCA953X_XMC_PRESENT 4221 CONFIG_SYS_PCA953X_XMC_PRESENT
4223 CONFIG_SYS_PCA953X_XMC_ROOT0 4222 CONFIG_SYS_PCA953X_XMC_ROOT0
4224 CONFIG_SYS_PCA953X_XMC_WAKE 4223 CONFIG_SYS_PCA953X_XMC_WAKE
4225 CONFIG_SYS_PCCNT 4224 CONFIG_SYS_PCCNT
4226 CONFIG_SYS_PCDAT 4225 CONFIG_SYS_PCDAT
4227 CONFIG_SYS_PCDDR 4226 CONFIG_SYS_PCDDR
4228 CONFIG_SYS_PCI 4227 CONFIG_SYS_PCI
4229 CONFIG_SYS_PCI1_ADDR 4228 CONFIG_SYS_PCI1_ADDR
4230 CONFIG_SYS_PCI1_IO_BASE 4229 CONFIG_SYS_PCI1_IO_BASE
4231 CONFIG_SYS_PCI1_IO_BUS 4230 CONFIG_SYS_PCI1_IO_BUS
4232 CONFIG_SYS_PCI1_IO_PHYS 4231 CONFIG_SYS_PCI1_IO_PHYS
4233 CONFIG_SYS_PCI1_IO_SIZE 4232 CONFIG_SYS_PCI1_IO_SIZE
4234 CONFIG_SYS_PCI1_IO_VIRT 4233 CONFIG_SYS_PCI1_IO_VIRT
4235 CONFIG_SYS_PCI1_MEM_BASE 4234 CONFIG_SYS_PCI1_MEM_BASE
4236 CONFIG_SYS_PCI1_MEM_BUS 4235 CONFIG_SYS_PCI1_MEM_BUS
4237 CONFIG_SYS_PCI1_MEM_PHYS 4236 CONFIG_SYS_PCI1_MEM_PHYS
4238 CONFIG_SYS_PCI1_MEM_SIZE 4237 CONFIG_SYS_PCI1_MEM_SIZE
4239 CONFIG_SYS_PCI1_MEM_VIRT 4238 CONFIG_SYS_PCI1_MEM_VIRT
4240 CONFIG_SYS_PCI1_MMIO_BASE 4239 CONFIG_SYS_PCI1_MMIO_BASE
4241 CONFIG_SYS_PCI1_MMIO_PHYS 4240 CONFIG_SYS_PCI1_MMIO_PHYS
4242 CONFIG_SYS_PCI1_MMIO_SIZE 4241 CONFIG_SYS_PCI1_MMIO_SIZE
4243 CONFIG_SYS_PCI2_ADDR 4242 CONFIG_SYS_PCI2_ADDR
4244 CONFIG_SYS_PCI2_IO_BASE 4243 CONFIG_SYS_PCI2_IO_BASE
4245 CONFIG_SYS_PCI2_IO_BUS 4244 CONFIG_SYS_PCI2_IO_BUS
4246 CONFIG_SYS_PCI2_IO_PHYS 4245 CONFIG_SYS_PCI2_IO_PHYS
4247 CONFIG_SYS_PCI2_IO_SIZE 4246 CONFIG_SYS_PCI2_IO_SIZE
4248 CONFIG_SYS_PCI2_IO_VIRT 4247 CONFIG_SYS_PCI2_IO_VIRT
4249 CONFIG_SYS_PCI2_MEM_BASE 4248 CONFIG_SYS_PCI2_MEM_BASE
4250 CONFIG_SYS_PCI2_MEM_BUS 4249 CONFIG_SYS_PCI2_MEM_BUS
4251 CONFIG_SYS_PCI2_MEM_PHYS 4250 CONFIG_SYS_PCI2_MEM_PHYS
4252 CONFIG_SYS_PCI2_MEM_SIZE 4251 CONFIG_SYS_PCI2_MEM_SIZE
4253 CONFIG_SYS_PCI2_MEM_VIRT 4252 CONFIG_SYS_PCI2_MEM_VIRT
4254 CONFIG_SYS_PCI2_MMIO_BASE 4253 CONFIG_SYS_PCI2_MMIO_BASE
4255 CONFIG_SYS_PCI2_MMIO_PHYS 4254 CONFIG_SYS_PCI2_MMIO_PHYS
4256 CONFIG_SYS_PCI2_MMIO_SIZE 4255 CONFIG_SYS_PCI2_MMIO_SIZE
4257 CONFIG_SYS_PCI64_MEMORY_BUS 4256 CONFIG_SYS_PCI64_MEMORY_BUS
4258 CONFIG_SYS_PCIE 4257 CONFIG_SYS_PCIE
4259 CONFIG_SYS_PCIE1_ADDR 4258 CONFIG_SYS_PCIE1_ADDR
4260 CONFIG_SYS_PCIE1_BASE 4259 CONFIG_SYS_PCIE1_BASE
4261 CONFIG_SYS_PCIE1_CFG_BASE 4260 CONFIG_SYS_PCIE1_CFG_BASE
4262 CONFIG_SYS_PCIE1_CFG_SIZE 4261 CONFIG_SYS_PCIE1_CFG_SIZE
4263 CONFIG_SYS_PCIE1_IO_BASE 4262 CONFIG_SYS_PCIE1_IO_BASE
4264 CONFIG_SYS_PCIE1_IO_BUS 4263 CONFIG_SYS_PCIE1_IO_BUS
4265 CONFIG_SYS_PCIE1_IO_PHYS 4264 CONFIG_SYS_PCIE1_IO_PHYS
4266 CONFIG_SYS_PCIE1_IO_PHYS_LOW 4265 CONFIG_SYS_PCIE1_IO_PHYS_LOW
4267 CONFIG_SYS_PCIE1_IO_SIZE 4266 CONFIG_SYS_PCIE1_IO_SIZE
4268 CONFIG_SYS_PCIE1_IO_VIRT 4267 CONFIG_SYS_PCIE1_IO_VIRT
4269 CONFIG_SYS_PCIE1_MEM_BASE 4268 CONFIG_SYS_PCIE1_MEM_BASE
4270 CONFIG_SYS_PCIE1_MEM_BUS 4269 CONFIG_SYS_PCIE1_MEM_BUS
4271 CONFIG_SYS_PCIE1_MEM_PHYS 4270 CONFIG_SYS_PCIE1_MEM_PHYS
4272 CONFIG_SYS_PCIE1_MEM_PHYS_HIGH 4271 CONFIG_SYS_PCIE1_MEM_PHYS_HIGH
4273 CONFIG_SYS_PCIE1_MEM_PHYS_LOW 4272 CONFIG_SYS_PCIE1_MEM_PHYS_LOW
4274 CONFIG_SYS_PCIE1_MEM_SIZE 4273 CONFIG_SYS_PCIE1_MEM_SIZE
4275 CONFIG_SYS_PCIE1_MEM_VIRT 4274 CONFIG_SYS_PCIE1_MEM_VIRT
4276 CONFIG_SYS_PCIE1_NAME 4275 CONFIG_SYS_PCIE1_NAME
4277 CONFIG_SYS_PCIE1_PHYS_ADDR 4276 CONFIG_SYS_PCIE1_PHYS_ADDR
4278 CONFIG_SYS_PCIE1_PHYS_BASE 4277 CONFIG_SYS_PCIE1_PHYS_BASE
4279 CONFIG_SYS_PCIE1_PHYS_SIZE 4278 CONFIG_SYS_PCIE1_PHYS_SIZE
4280 CONFIG_SYS_PCIE1_VIRT_ADDR 4279 CONFIG_SYS_PCIE1_VIRT_ADDR
4281 CONFIG_SYS_PCIE2_ADDR 4280 CONFIG_SYS_PCIE2_ADDR
4282 CONFIG_SYS_PCIE2_BASE 4281 CONFIG_SYS_PCIE2_BASE
4283 CONFIG_SYS_PCIE2_CFG_BASE 4282 CONFIG_SYS_PCIE2_CFG_BASE
4284 CONFIG_SYS_PCIE2_CFG_SIZE 4283 CONFIG_SYS_PCIE2_CFG_SIZE
4285 CONFIG_SYS_PCIE2_IO_BASE 4284 CONFIG_SYS_PCIE2_IO_BASE
4286 CONFIG_SYS_PCIE2_IO_BUS 4285 CONFIG_SYS_PCIE2_IO_BUS
4287 CONFIG_SYS_PCIE2_IO_PHYS 4286 CONFIG_SYS_PCIE2_IO_PHYS
4288 CONFIG_SYS_PCIE2_IO_PHYS_LOW 4287 CONFIG_SYS_PCIE2_IO_PHYS_LOW
4289 CONFIG_SYS_PCIE2_IO_SIZE 4288 CONFIG_SYS_PCIE2_IO_SIZE
4290 CONFIG_SYS_PCIE2_IO_VIRT 4289 CONFIG_SYS_PCIE2_IO_VIRT
4291 CONFIG_SYS_PCIE2_MEM_BASE 4290 CONFIG_SYS_PCIE2_MEM_BASE
4292 CONFIG_SYS_PCIE2_MEM_BUS 4291 CONFIG_SYS_PCIE2_MEM_BUS
4293 CONFIG_SYS_PCIE2_MEM_PHYS 4292 CONFIG_SYS_PCIE2_MEM_PHYS
4294 CONFIG_SYS_PCIE2_MEM_PHYS_HIGH 4293 CONFIG_SYS_PCIE2_MEM_PHYS_HIGH
4295 CONFIG_SYS_PCIE2_MEM_PHYS_LOW 4294 CONFIG_SYS_PCIE2_MEM_PHYS_LOW
4296 CONFIG_SYS_PCIE2_MEM_SIZE 4295 CONFIG_SYS_PCIE2_MEM_SIZE
4297 CONFIG_SYS_PCIE2_MEM_VIRT 4296 CONFIG_SYS_PCIE2_MEM_VIRT
4298 CONFIG_SYS_PCIE2_NAME 4297 CONFIG_SYS_PCIE2_NAME
4299 CONFIG_SYS_PCIE2_PHYS_ADDR 4298 CONFIG_SYS_PCIE2_PHYS_ADDR
4300 CONFIG_SYS_PCIE2_PHYS_BASE 4299 CONFIG_SYS_PCIE2_PHYS_BASE
4301 CONFIG_SYS_PCIE2_PHYS_SIZE 4300 CONFIG_SYS_PCIE2_PHYS_SIZE
4302 CONFIG_SYS_PCIE2_VIRT_ADDR 4301 CONFIG_SYS_PCIE2_VIRT_ADDR
4303 CONFIG_SYS_PCIE3_ADDR 4302 CONFIG_SYS_PCIE3_ADDR
4304 CONFIG_SYS_PCIE3_IO_BUS 4303 CONFIG_SYS_PCIE3_IO_BUS
4305 CONFIG_SYS_PCIE3_IO_PHYS 4304 CONFIG_SYS_PCIE3_IO_PHYS
4306 CONFIG_SYS_PCIE3_IO_SIZE 4305 CONFIG_SYS_PCIE3_IO_SIZE
4307 CONFIG_SYS_PCIE3_IO_VIRT 4306 CONFIG_SYS_PCIE3_IO_VIRT
4308 CONFIG_SYS_PCIE3_MEM_BUS 4307 CONFIG_SYS_PCIE3_MEM_BUS
4309 CONFIG_SYS_PCIE3_MEM_BUS2 4308 CONFIG_SYS_PCIE3_MEM_BUS2
4310 CONFIG_SYS_PCIE3_MEM_PHYS 4309 CONFIG_SYS_PCIE3_MEM_PHYS
4311 CONFIG_SYS_PCIE3_MEM_PHYS2 4310 CONFIG_SYS_PCIE3_MEM_PHYS2
4312 CONFIG_SYS_PCIE3_MEM_SIZE 4311 CONFIG_SYS_PCIE3_MEM_SIZE
4313 CONFIG_SYS_PCIE3_MEM_SIZE2 4312 CONFIG_SYS_PCIE3_MEM_SIZE2
4314 CONFIG_SYS_PCIE3_MEM_VIRT 4313 CONFIG_SYS_PCIE3_MEM_VIRT
4315 CONFIG_SYS_PCIE3_MEM_VIRT2 4314 CONFIG_SYS_PCIE3_MEM_VIRT2
4316 CONFIG_SYS_PCIE3_NAME 4315 CONFIG_SYS_PCIE3_NAME
4317 CONFIG_SYS_PCIE3_PHYS_ADDR 4316 CONFIG_SYS_PCIE3_PHYS_ADDR
4318 CONFIG_SYS_PCIE3_PHYS_SIZE 4317 CONFIG_SYS_PCIE3_PHYS_SIZE
4319 CONFIG_SYS_PCIE4_ADDR 4318 CONFIG_SYS_PCIE4_ADDR
4320 CONFIG_SYS_PCIE4_IO_BUS 4319 CONFIG_SYS_PCIE4_IO_BUS
4321 CONFIG_SYS_PCIE4_IO_PHYS 4320 CONFIG_SYS_PCIE4_IO_PHYS
4322 CONFIG_SYS_PCIE4_IO_SIZE 4321 CONFIG_SYS_PCIE4_IO_SIZE
4323 CONFIG_SYS_PCIE4_IO_VIRT 4322 CONFIG_SYS_PCIE4_IO_VIRT
4324 CONFIG_SYS_PCIE4_MEM_BUS 4323 CONFIG_SYS_PCIE4_MEM_BUS
4325 CONFIG_SYS_PCIE4_MEM_PHYS 4324 CONFIG_SYS_PCIE4_MEM_PHYS
4326 CONFIG_SYS_PCIE4_MEM_SIZE 4325 CONFIG_SYS_PCIE4_MEM_SIZE
4327 CONFIG_SYS_PCIE4_MEM_VIRT 4326 CONFIG_SYS_PCIE4_MEM_VIRT
4328 CONFIG_SYS_PCIE4_NAME 4327 CONFIG_SYS_PCIE4_NAME
4329 CONFIG_SYS_PCIE4_PHYS_ADDR 4328 CONFIG_SYS_PCIE4_PHYS_ADDR
4330 CONFIG_SYS_PCIE4_PHYS_SIZE 4329 CONFIG_SYS_PCIE4_PHYS_SIZE
4331 CONFIG_SYS_PCIE_MMAP_SIZE 4330 CONFIG_SYS_PCIE_MMAP_SIZE
4332 CONFIG_SYS_PCIE_PHYS 4331 CONFIG_SYS_PCIE_PHYS
4333 CONFIG_SYS_PCIE_VIRT 4332 CONFIG_SYS_PCIE_VIRT
4334 CONFIG_SYS_PCI_64BIT 4333 CONFIG_SYS_PCI_64BIT
4335 CONFIG_SYS_PCI_BAR0 4334 CONFIG_SYS_PCI_BAR0
4336 CONFIG_SYS_PCI_BAR1 4335 CONFIG_SYS_PCI_BAR1
4337 CONFIG_SYS_PCI_BAR2 4336 CONFIG_SYS_PCI_BAR2
4338 CONFIG_SYS_PCI_BAR3 4337 CONFIG_SYS_PCI_BAR3
4339 CONFIG_SYS_PCI_BAR4 4338 CONFIG_SYS_PCI_BAR4
4340 CONFIG_SYS_PCI_BAR5 4339 CONFIG_SYS_PCI_BAR5
4341 CONFIG_SYS_PCI_CACHE_LINE_SIZE 4340 CONFIG_SYS_PCI_CACHE_LINE_SIZE
4342 CONFIG_SYS_PCI_CFG_BASE 4341 CONFIG_SYS_PCI_CFG_BASE
4343 CONFIG_SYS_PCI_CFG_BUS 4342 CONFIG_SYS_PCI_CFG_BUS
4344 CONFIG_SYS_PCI_CFG_PHYS 4343 CONFIG_SYS_PCI_CFG_PHYS
4345 CONFIG_SYS_PCI_CFG_SIZE 4344 CONFIG_SYS_PCI_CFG_SIZE
4346 CONFIG_SYS_PCI_EP_MEMORY_BASE 4345 CONFIG_SYS_PCI_EP_MEMORY_BASE
4347 CONFIG_SYS_PCI_IO_BASE 4346 CONFIG_SYS_PCI_IO_BASE
4348 CONFIG_SYS_PCI_IO_BUS 4347 CONFIG_SYS_PCI_IO_BUS
4349 CONFIG_SYS_PCI_IO_PHYS 4348 CONFIG_SYS_PCI_IO_PHYS
4350 CONFIG_SYS_PCI_IO_SIZE 4349 CONFIG_SYS_PCI_IO_SIZE
4351 CONFIG_SYS_PCI_MAP_END 4350 CONFIG_SYS_PCI_MAP_END
4352 CONFIG_SYS_PCI_MAP_START 4351 CONFIG_SYS_PCI_MAP_START
4353 CONFIG_SYS_PCI_MEMORY_BUS 4352 CONFIG_SYS_PCI_MEMORY_BUS
4354 CONFIG_SYS_PCI_MEMORY_PHYS 4353 CONFIG_SYS_PCI_MEMORY_PHYS
4355 CONFIG_SYS_PCI_MEMORY_SIZE 4354 CONFIG_SYS_PCI_MEMORY_SIZE
4356 CONFIG_SYS_PCI_MEM_BASE 4355 CONFIG_SYS_PCI_MEM_BASE
4357 CONFIG_SYS_PCI_MEM_BUS 4356 CONFIG_SYS_PCI_MEM_BUS
4358 CONFIG_SYS_PCI_MEM_PHYS 4357 CONFIG_SYS_PCI_MEM_PHYS
4359 CONFIG_SYS_PCI_MEM_SIZE 4358 CONFIG_SYS_PCI_MEM_SIZE
4360 CONFIG_SYS_PCI_MMIO_BASE 4359 CONFIG_SYS_PCI_MMIO_BASE
4361 CONFIG_SYS_PCI_MMIO_PHYS 4360 CONFIG_SYS_PCI_MMIO_PHYS
4362 CONFIG_SYS_PCI_MMIO_SIZE 4361 CONFIG_SYS_PCI_MMIO_SIZE
4363 CONFIG_SYS_PCI_NR_INBOUND_WIN 4362 CONFIG_SYS_PCI_NR_INBOUND_WIN
4364 CONFIG_SYS_PCI_PHYS 4363 CONFIG_SYS_PCI_PHYS
4365 CONFIG_SYS_PCI_SLV_MEM_BUS 4364 CONFIG_SYS_PCI_SLV_MEM_BUS
4366 CONFIG_SYS_PCI_SLV_MEM_LOCAL 4365 CONFIG_SYS_PCI_SLV_MEM_LOCAL
4367 CONFIG_SYS_PCI_SLV_MEM_SIZE 4366 CONFIG_SYS_PCI_SLV_MEM_SIZE
4368 CONFIG_SYS_PCI_SUBSYS_VENDORID 4367 CONFIG_SYS_PCI_SUBSYS_VENDORID
4369 CONFIG_SYS_PCI_SYS_MEM_BUS 4368 CONFIG_SYS_PCI_SYS_MEM_BUS
4370 CONFIG_SYS_PCI_SYS_MEM_PHYS 4369 CONFIG_SYS_PCI_SYS_MEM_PHYS
4371 CONFIG_SYS_PCI_SYS_MEM_SIZE 4370 CONFIG_SYS_PCI_SYS_MEM_SIZE
4372 CONFIG_SYS_PCI_TBATR0 4371 CONFIG_SYS_PCI_TBATR0
4373 CONFIG_SYS_PCI_TBATR1 4372 CONFIG_SYS_PCI_TBATR1
4374 CONFIG_SYS_PCI_TBATR2 4373 CONFIG_SYS_PCI_TBATR2
4375 CONFIG_SYS_PCI_TBATR3 4374 CONFIG_SYS_PCI_TBATR3
4376 CONFIG_SYS_PCI_TBATR4 4375 CONFIG_SYS_PCI_TBATR4
4377 CONFIG_SYS_PCI_TBATR5 4376 CONFIG_SYS_PCI_TBATR5
4378 CONFIG_SYS_PCI_VIRT 4377 CONFIG_SYS_PCI_VIRT
4379 CONFIG_SYS_PCMCIA_ATTR_BASE 4378 CONFIG_SYS_PCMCIA_ATTR_BASE
4380 CONFIG_SYS_PCMCIA_CIS_WIN 4379 CONFIG_SYS_PCMCIA_CIS_WIN
4381 CONFIG_SYS_PCMCIA_CIS_WIN_SIZE 4380 CONFIG_SYS_PCMCIA_CIS_WIN_SIZE
4382 CONFIG_SYS_PCMCIA_IO_BASE 4381 CONFIG_SYS_PCMCIA_IO_BASE
4383 CONFIG_SYS_PCMCIA_IO_WIN 4382 CONFIG_SYS_PCMCIA_IO_WIN
4384 CONFIG_SYS_PCMCIA_IO_WIN_SIZE 4383 CONFIG_SYS_PCMCIA_IO_WIN_SIZE
4385 CONFIG_SYS_PCMCIA_MEM_ADDR 4384 CONFIG_SYS_PCMCIA_MEM_ADDR
4386 CONFIG_SYS_PCMCIA_MEM_SIZE 4385 CONFIG_SYS_PCMCIA_MEM_SIZE
4387 CONFIG_SYS_PCMCIA_PBR0 4386 CONFIG_SYS_PCMCIA_PBR0
4388 CONFIG_SYS_PCMCIA_PBR1 4387 CONFIG_SYS_PCMCIA_PBR1
4389 CONFIG_SYS_PCMCIA_PBR2 4388 CONFIG_SYS_PCMCIA_PBR2
4390 CONFIG_SYS_PCMCIA_PBR3 4389 CONFIG_SYS_PCMCIA_PBR3
4391 CONFIG_SYS_PCMCIA_PBR4 4390 CONFIG_SYS_PCMCIA_PBR4
4392 CONFIG_SYS_PCMCIA_PBR5 4391 CONFIG_SYS_PCMCIA_PBR5
4393 CONFIG_SYS_PCMCIA_PBR6 4392 CONFIG_SYS_PCMCIA_PBR6
4394 CONFIG_SYS_PCMCIA_PBR7 4393 CONFIG_SYS_PCMCIA_PBR7
4395 CONFIG_SYS_PCMCIA_POR0 4394 CONFIG_SYS_PCMCIA_POR0
4396 CONFIG_SYS_PCMCIA_POR1 4395 CONFIG_SYS_PCMCIA_POR1
4397 CONFIG_SYS_PCMCIA_POR2 4396 CONFIG_SYS_PCMCIA_POR2
4398 CONFIG_SYS_PCMCIA_POR3 4397 CONFIG_SYS_PCMCIA_POR3
4399 CONFIG_SYS_PCMCIA_POR4 4398 CONFIG_SYS_PCMCIA_POR4
4400 CONFIG_SYS_PCMCIA_POR5 4399 CONFIG_SYS_PCMCIA_POR5
4401 CONFIG_SYS_PCMCIA_POR6 4400 CONFIG_SYS_PCMCIA_POR6
4402 CONFIG_SYS_PCMCIA_POR7 4401 CONFIG_SYS_PCMCIA_POR7
4403 CONFIG_SYS_PDCNT 4402 CONFIG_SYS_PDCNT
4404 CONFIG_SYS_PEHLPAR 4403 CONFIG_SYS_PEHLPAR
4405 CONFIG_SYS_PEPAR 4404 CONFIG_SYS_PEPAR
4406 CONFIG_SYS_PFPAR 4405 CONFIG_SYS_PFPAR
4407 CONFIG_SYS_PHYS_ADDR_HIGH 4406 CONFIG_SYS_PHYS_ADDR_HIGH
4408 CONFIG_SYS_PHY_UBOOT_BASE 4407 CONFIG_SYS_PHY_UBOOT_BASE
4409 CONFIG_SYS_PIB_BASE 4408 CONFIG_SYS_PIB_BASE
4410 CONFIG_SYS_PIB_WINDOW_SIZE 4409 CONFIG_SYS_PIB_WINDOW_SIZE
4411 CONFIG_SYS_PIOC_ASR_VAL 4410 CONFIG_SYS_PIOC_ASR_VAL
4412 CONFIG_SYS_PIOC_BSR_VAL 4411 CONFIG_SYS_PIOC_BSR_VAL
4413 CONFIG_SYS_PIOC_PDR_VAL 4412 CONFIG_SYS_PIOC_PDR_VAL
4414 CONFIG_SYS_PIOC_PDR_VAL1 4413 CONFIG_SYS_PIOC_PDR_VAL1
4415 CONFIG_SYS_PIOC_PPUDR_VAL 4414 CONFIG_SYS_PIOC_PPUDR_VAL
4416 CONFIG_SYS_PIOD_PDR_VAL1 4415 CONFIG_SYS_PIOD_PDR_VAL1
4417 CONFIG_SYS_PIOD_PPUDR_VAL 4416 CONFIG_SYS_PIOD_PPUDR_VAL
4418 CONFIG_SYS_PIO_MODE 4417 CONFIG_SYS_PIO_MODE
4419 CONFIG_SYS_PIT_BASE 4418 CONFIG_SYS_PIT_BASE
4420 CONFIG_SYS_PIT_PRESCALE 4419 CONFIG_SYS_PIT_PRESCALE
4421 CONFIG_SYS_PIXIS_VBOOT_ENABLE 4420 CONFIG_SYS_PIXIS_VBOOT_ENABLE
4422 CONFIG_SYS_PIXIS_VBOOT_MASK 4421 CONFIG_SYS_PIXIS_VBOOT_MASK
4423 CONFIG_SYS_PIXIS_VCFGEN0_ENABLE 4422 CONFIG_SYS_PIXIS_VCFGEN0_ENABLE
4424 CONFIG_SYS_PJPAR 4423 CONFIG_SYS_PJPAR
4425 CONFIG_SYS_PL310_BASE 4424 CONFIG_SYS_PL310_BASE
4426 CONFIG_SYS_PLATFORM_SRAM_BASE 4425 CONFIG_SYS_PLATFORM_SRAM_BASE
4427 CONFIG_SYS_PLATFORM_SRAM_BASE_PHYS 4426 CONFIG_SYS_PLATFORM_SRAM_BASE_PHYS
4428 CONFIG_SYS_PLATFORM_SRAM_SIZE 4427 CONFIG_SYS_PLATFORM_SRAM_SIZE
4429 CONFIG_SYS_PLLAR_VAL 4428 CONFIG_SYS_PLLAR_VAL
4430 CONFIG_SYS_PLLBR_VAL 4429 CONFIG_SYS_PLLBR_VAL
4431 CONFIG_SYS_PLLCR 4430 CONFIG_SYS_PLLCR
4432 CONFIG_SYS_PLL_BYPASS 4431 CONFIG_SYS_PLL_BYPASS
4433 CONFIG_SYS_PLL_FDR 4432 CONFIG_SYS_PLL_FDR
4434 CONFIG_SYS_PLL_ODR 4433 CONFIG_SYS_PLL_ODR
4435 CONFIG_SYS_PLL_SETTLING_TIME 4434 CONFIG_SYS_PLL_SETTLING_TIME
4436 CONFIG_SYS_PLUG_BASE 4435 CONFIG_SYS_PLUG_BASE
4437 CONFIG_SYS_PMAN 4436 CONFIG_SYS_PMAN
4438 CONFIG_SYS_PMC_BASE 4437 CONFIG_SYS_PMC_BASE
4439 CONFIG_SYS_PMC_BASE_PHYS 4438 CONFIG_SYS_PMC_BASE_PHYS
4440 CONFIG_SYS_PME_CLK 4439 CONFIG_SYS_PME_CLK
4441 CONFIG_SYS_PORTTC 4440 CONFIG_SYS_PORTTC
4442 CONFIG_SYS_POST_BSPEC1 4441 CONFIG_SYS_POST_BSPEC1
4443 CONFIG_SYS_POST_BSPEC2 4442 CONFIG_SYS_POST_BSPEC2
4444 CONFIG_SYS_POST_BSPEC3 4443 CONFIG_SYS_POST_BSPEC3
4445 CONFIG_SYS_POST_BSPEC4 4444 CONFIG_SYS_POST_BSPEC4
4446 CONFIG_SYS_POST_BSPEC5 4445 CONFIG_SYS_POST_BSPEC5
4447 CONFIG_SYS_POST_CACHE 4446 CONFIG_SYS_POST_CACHE
4448 CONFIG_SYS_POST_CODEC 4447 CONFIG_SYS_POST_CODEC
4449 CONFIG_SYS_POST_COPROC 4448 CONFIG_SYS_POST_COPROC
4450 CONFIG_SYS_POST_CPU 4449 CONFIG_SYS_POST_CPU
4451 CONFIG_SYS_POST_DSP 4450 CONFIG_SYS_POST_DSP
4452 CONFIG_SYS_POST_ECC 4451 CONFIG_SYS_POST_ECC
4453 CONFIG_SYS_POST_ETHER 4452 CONFIG_SYS_POST_ETHER
4454 CONFIG_SYS_POST_FLASH 4453 CONFIG_SYS_POST_FLASH
4455 CONFIG_SYS_POST_FLASH_END 4454 CONFIG_SYS_POST_FLASH_END
4456 CONFIG_SYS_POST_FLASH_NUM 4455 CONFIG_SYS_POST_FLASH_NUM
4457 CONFIG_SYS_POST_FLASH_START 4456 CONFIG_SYS_POST_FLASH_START
4458 CONFIG_SYS_POST_FPU 4457 CONFIG_SYS_POST_FPU
4459 CONFIG_SYS_POST_HOTKEYS_GPIO 4458 CONFIG_SYS_POST_HOTKEYS_GPIO
4460 CONFIG_SYS_POST_I2C 4459 CONFIG_SYS_POST_I2C
4461 CONFIG_SYS_POST_I2C_ADDRS 4460 CONFIG_SYS_POST_I2C_ADDRS
4462 CONFIG_SYS_POST_I2C_IGNORES 4461 CONFIG_SYS_POST_I2C_IGNORES
4463 CONFIG_SYS_POST_MEMORY 4462 CONFIG_SYS_POST_MEMORY
4464 CONFIG_SYS_POST_MEM_REGIONS 4463 CONFIG_SYS_POST_MEM_REGIONS
4465 CONFIG_SYS_POST_OCM 4464 CONFIG_SYS_POST_OCM
4466 CONFIG_SYS_POST_PREREL 4465 CONFIG_SYS_POST_PREREL
4467 CONFIG_SYS_POST_RTC 4466 CONFIG_SYS_POST_RTC
4468 CONFIG_SYS_POST_SPR 4467 CONFIG_SYS_POST_SPR
4469 CONFIG_SYS_POST_SYSMON 4468 CONFIG_SYS_POST_SYSMON
4470 CONFIG_SYS_POST_UART 4469 CONFIG_SYS_POST_UART
4471 CONFIG_SYS_POST_USB 4470 CONFIG_SYS_POST_USB
4472 CONFIG_SYS_POST_WATCHDOG 4471 CONFIG_SYS_POST_WATCHDOG
4473 CONFIG_SYS_POST_WORD_ADDR 4472 CONFIG_SYS_POST_WORD_ADDR
4474 CONFIG_SYS_PPC_DDR_WIMGE 4473 CONFIG_SYS_PPC_DDR_WIMGE
4475 CONFIG_SYS_PQSPAR 4474 CONFIG_SYS_PQSPAR
4476 CONFIG_SYS_PRELIM_OR_AM 4475 CONFIG_SYS_PRELIM_OR_AM
4477 CONFIG_SYS_PROMPT_HUSH_PS2 4476 CONFIG_SYS_PROMPT_HUSH_PS2
4478 CONFIG_SYS_PSDPAR 4477 CONFIG_SYS_PSDPAR
4479 CONFIG_SYS_PSSR_VAL 4478 CONFIG_SYS_PSSR_VAL
4480 CONFIG_SYS_PTCPAR 4479 CONFIG_SYS_PTCPAR
4481 CONFIG_SYS_PTDPAR 4480 CONFIG_SYS_PTDPAR
4482 CONFIG_SYS_PTL2_BITS 4481 CONFIG_SYS_PTL2_BITS
4483 CONFIG_SYS_PTV 4482 CONFIG_SYS_PTV
4484 CONFIG_SYS_PUAPAR 4483 CONFIG_SYS_PUAPAR
4485 CONFIG_SYS_QE_FMAN_FW_IN_MMC 4484 CONFIG_SYS_QE_FMAN_FW_IN_MMC
4486 CONFIG_SYS_QE_FMAN_FW_IN_NAND 4485 CONFIG_SYS_QE_FMAN_FW_IN_NAND
4487 CONFIG_SYS_QE_FMAN_FW_IN_NOR 4486 CONFIG_SYS_QE_FMAN_FW_IN_NOR
4488 CONFIG_SYS_QE_FMAN_FW_IN_REMOTE 4487 CONFIG_SYS_QE_FMAN_FW_IN_REMOTE
4489 CONFIG_SYS_QE_FMAN_FW_LENGTH 4488 CONFIG_SYS_QE_FMAN_FW_LENGTH
4490 CONFIG_SYS_QE_FW_ADDR 4489 CONFIG_SYS_QE_FW_ADDR
4491 CONFIG_SYS_QE_FW_IN_SPIFLASH 4490 CONFIG_SYS_QE_FW_IN_SPIFLASH
4492 CONFIG_SYS_QMAN_CENA_BASE 4491 CONFIG_SYS_QMAN_CENA_BASE
4493 CONFIG_SYS_QMAN_CENA_SIZE 4492 CONFIG_SYS_QMAN_CENA_SIZE
4494 CONFIG_SYS_QMAN_CINH_BASE 4493 CONFIG_SYS_QMAN_CINH_BASE
4495 CONFIG_SYS_QMAN_CINH_SIZE 4494 CONFIG_SYS_QMAN_CINH_SIZE
4496 CONFIG_SYS_QMAN_MEM_BASE 4495 CONFIG_SYS_QMAN_MEM_BASE
4497 CONFIG_SYS_QMAN_MEM_PHYS 4496 CONFIG_SYS_QMAN_MEM_PHYS
4498 CONFIG_SYS_QMAN_MEM_SIZE 4497 CONFIG_SYS_QMAN_MEM_SIZE
4499 CONFIG_SYS_QMAN_NUM_PORTALS 4498 CONFIG_SYS_QMAN_NUM_PORTALS
4500 CONFIG_SYS_QMAN_SP_CENA_SIZE 4499 CONFIG_SYS_QMAN_SP_CENA_SIZE
4501 CONFIG_SYS_QMAN_SP_CINH_SIZE 4500 CONFIG_SYS_QMAN_SP_CINH_SIZE
4502 CONFIG_SYS_QMAN_SWP_ISDR_REG 4501 CONFIG_SYS_QMAN_SWP_ISDR_REG
4503 CONFIG_SYS_QRIO_BASE 4502 CONFIG_SYS_QRIO_BASE
4504 CONFIG_SYS_QRIO_BASE_PHYS 4503 CONFIG_SYS_QRIO_BASE_PHYS
4505 CONFIG_SYS_QRIO_BR_PRELIM 4504 CONFIG_SYS_QRIO_BR_PRELIM
4506 CONFIG_SYS_QRIO_OR_PRELIM 4505 CONFIG_SYS_QRIO_OR_PRELIM
4507 CONFIG_SYS_R7780MP_OLD_FLASH 4506 CONFIG_SYS_R7780MP_OLD_FLASH
4508 CONFIG_SYS_RAMBOOT 4507 CONFIG_SYS_RAMBOOT
4509 CONFIG_SYS_RAM_BASE 4508 CONFIG_SYS_RAM_BASE
4510 CONFIG_SYS_RAM_CS 4509 CONFIG_SYS_RAM_CS
4511 CONFIG_SYS_RAM_FREQ_DIV 4510 CONFIG_SYS_RAM_FREQ_DIV
4512 CONFIG_SYS_RAM_SIZE 4511 CONFIG_SYS_RAM_SIZE
4513 CONFIG_SYS_RCAR_I2C0_BASE 4512 CONFIG_SYS_RCAR_I2C0_BASE
4514 CONFIG_SYS_RCAR_I2C0_SPEED 4513 CONFIG_SYS_RCAR_I2C0_SPEED
4515 CONFIG_SYS_RCAR_I2C1_BASE 4514 CONFIG_SYS_RCAR_I2C1_BASE
4516 CONFIG_SYS_RCAR_I2C1_SPEED 4515 CONFIG_SYS_RCAR_I2C1_SPEED
4517 CONFIG_SYS_RCAR_I2C2_BASE 4516 CONFIG_SYS_RCAR_I2C2_BASE
4518 CONFIG_SYS_RCAR_I2C2_SPEED 4517 CONFIG_SYS_RCAR_I2C2_SPEED
4519 CONFIG_SYS_RCAR_I2C3_BASE 4518 CONFIG_SYS_RCAR_I2C3_BASE
4520 CONFIG_SYS_RCAR_I2C3_SPEED 4519 CONFIG_SYS_RCAR_I2C3_SPEED
4521 CONFIG_SYS_RCWH_PCIHOST 4520 CONFIG_SYS_RCWH_PCIHOST
4522 CONFIG_SYS_READ_SPD 4521 CONFIG_SYS_READ_SPD
4523 CONFIG_SYS_REDUNDAND_ENVIRONMENT 4522 CONFIG_SYS_REDUNDAND_ENVIRONMENT
4524 CONFIG_SYS_RESET_ADDR 4523 CONFIG_SYS_RESET_ADDR
4525 CONFIG_SYS_RESET_ADDRESS 4524 CONFIG_SYS_RESET_ADDRESS
4526 CONFIG_SYS_RESET_SCTRL 4525 CONFIG_SYS_RESET_SCTRL
4527 CONFIG_SYS_RFD 4526 CONFIG_SYS_RFD
4528 CONFIG_SYS_RGMII1_PHY_ADDR 4527 CONFIG_SYS_RGMII1_PHY_ADDR
4529 CONFIG_SYS_RGMII2_PHY_ADDR 4528 CONFIG_SYS_RGMII2_PHY_ADDR
4530 CONFIG_SYS_RIO_MEM_BASE 4529 CONFIG_SYS_RIO_MEM_BASE
4531 CONFIG_SYS_RIO_MEM_BUS 4530 CONFIG_SYS_RIO_MEM_BUS
4532 CONFIG_SYS_RIO_MEM_PHYS 4531 CONFIG_SYS_RIO_MEM_PHYS
4533 CONFIG_SYS_RIO_MEM_SIZE 4532 CONFIG_SYS_RIO_MEM_SIZE
4534 CONFIG_SYS_RIO_MEM_VIRT 4533 CONFIG_SYS_RIO_MEM_VIRT
4535 CONFIG_SYS_ROM_BASE 4534 CONFIG_SYS_ROM_BASE
4536 CONFIG_SYS_RSTC_RMR_VAL 4535 CONFIG_SYS_RSTC_RMR_VAL
4537 CONFIG_SYS_RTC_BUS_NUM 4536 CONFIG_SYS_RTC_BUS_NUM
4538 CONFIG_SYS_RTC_CNT 4537 CONFIG_SYS_RTC_CNT
4539 CONFIG_SYS_RTC_OSCILLATOR 4538 CONFIG_SYS_RTC_OSCILLATOR
4540 CONFIG_SYS_RTC_PL031_BASE 4539 CONFIG_SYS_RTC_PL031_BASE
4541 CONFIG_SYS_RTC_REG_BASE_ADDR 4540 CONFIG_SYS_RTC_REG_BASE_ADDR
4542 CONFIG_SYS_RTC_SETUP 4541 CONFIG_SYS_RTC_SETUP
4543 CONFIG_SYS_RV3029_TCR 4542 CONFIG_SYS_RV3029_TCR
4544 CONFIG_SYS_RX_ETH_BUFFER 4543 CONFIG_SYS_RX_ETH_BUFFER
4545 CONFIG_SYS_SATA 4544 CONFIG_SYS_SATA
4546 CONFIG_SYS_SATA1 4545 CONFIG_SYS_SATA1
4547 CONFIG_SYS_SATA1_FLAGS 4546 CONFIG_SYS_SATA1_FLAGS
4548 CONFIG_SYS_SATA1_OFFSET 4547 CONFIG_SYS_SATA1_OFFSET
4549 CONFIG_SYS_SATA2 4548 CONFIG_SYS_SATA2
4550 CONFIG_SYS_SATA2_FLAGS 4549 CONFIG_SYS_SATA2_FLAGS
4551 CONFIG_SYS_SATA2_OFFSET 4550 CONFIG_SYS_SATA2_OFFSET
4552 CONFIG_SYS_SATA_ENV_DEV 4551 CONFIG_SYS_SATA_ENV_DEV
4553 CONFIG_SYS_SATA_FAT_BOOT_PARTITION 4552 CONFIG_SYS_SATA_FAT_BOOT_PARTITION
4554 CONFIG_SYS_SATA_MAX_DEVICE 4553 CONFIG_SYS_SATA_MAX_DEVICE
4555 CONFIG_SYS_SBFHDR_DATA_OFFSET 4554 CONFIG_SYS_SBFHDR_DATA_OFFSET
4556 CONFIG_SYS_SBFHDR_SIZE 4555 CONFIG_SYS_SBFHDR_SIZE
4557 CONFIG_SYS_SCCR_ENCCM 4556 CONFIG_SYS_SCCR_ENCCM
4558 CONFIG_SYS_SCCR_PCICM 4557 CONFIG_SYS_SCCR_PCICM
4559 CONFIG_SYS_SCCR_PCIEXP1CM 4558 CONFIG_SYS_SCCR_PCIEXP1CM
4560 CONFIG_SYS_SCCR_PCIEXP2CM 4559 CONFIG_SYS_SCCR_PCIEXP2CM
4561 CONFIG_SYS_SCCR_SATACM 4560 CONFIG_SYS_SCCR_SATACM
4562 CONFIG_SYS_SCCR_TSEC1CM 4561 CONFIG_SYS_SCCR_TSEC1CM
4563 CONFIG_SYS_SCCR_TSEC1ON 4562 CONFIG_SYS_SCCR_TSEC1ON
4564 CONFIG_SYS_SCCR_TSEC2CM 4563 CONFIG_SYS_SCCR_TSEC2CM
4565 CONFIG_SYS_SCCR_TSEC2ON 4564 CONFIG_SYS_SCCR_TSEC2ON
4566 CONFIG_SYS_SCCR_TSECCM 4565 CONFIG_SYS_SCCR_TSECCM
4567 CONFIG_SYS_SCCR_USBDRCM 4566 CONFIG_SYS_SCCR_USBDRCM
4568 CONFIG_SYS_SCCR_USBMPHCM 4567 CONFIG_SYS_SCCR_USBMPHCM
4569 CONFIG_SYS_SCR 4568 CONFIG_SYS_SCR
4570 CONFIG_SYS_SCRATCH_VA 4569 CONFIG_SYS_SCRATCH_VA
4571 CONFIG_SYS_SCSI_MAXDEVICE 4570 CONFIG_SYS_SCSI_MAXDEVICE
4572 CONFIG_SYS_SCSI_MAX_DEVICE 4571 CONFIG_SYS_SCSI_MAX_DEVICE
4573 CONFIG_SYS_SCSI_MAX_LUN 4572 CONFIG_SYS_SCSI_MAX_LUN
4574 CONFIG_SYS_SCSI_MAX_SCSI_ID 4573 CONFIG_SYS_SCSI_MAX_SCSI_ID
4575 CONFIG_SYS_SDHC_CLK 4574 CONFIG_SYS_SDHC_CLK
4576 CONFIG_SYS_SDHC_CLK_2_PLL 4575 CONFIG_SYS_SDHC_CLK_2_PLL
4577 CONFIG_SYS_SDIO0 4576 CONFIG_SYS_SDIO0
4578 CONFIG_SYS_SDIO0_MAX_CLK 4577 CONFIG_SYS_SDIO0_MAX_CLK
4579 CONFIG_SYS_SDIO1 4578 CONFIG_SYS_SDIO1
4580 CONFIG_SYS_SDIO1_MAX_CLK 4579 CONFIG_SYS_SDIO1_MAX_CLK
4581 CONFIG_SYS_SDIO2 4580 CONFIG_SYS_SDIO2
4582 CONFIG_SYS_SDIO2_MAX_CLK 4581 CONFIG_SYS_SDIO2_MAX_CLK
4583 CONFIG_SYS_SDIO3 4582 CONFIG_SYS_SDIO3
4584 CONFIG_SYS_SDIO3_MAX_CLK 4583 CONFIG_SYS_SDIO3_MAX_CLK
4585 CONFIG_SYS_SDIO_BASE0 4584 CONFIG_SYS_SDIO_BASE0
4586 CONFIG_SYS_SDIO_BASE1 4585 CONFIG_SYS_SDIO_BASE1
4587 CONFIG_SYS_SDIO_BASE2 4586 CONFIG_SYS_SDIO_BASE2
4588 CONFIG_SYS_SDIO_BASE3 4587 CONFIG_SYS_SDIO_BASE3
4589 CONFIG_SYS_SDRAM 4588 CONFIG_SYS_SDRAM
4590 CONFIG_SYS_SDRAM1 4589 CONFIG_SYS_SDRAM1
4591 CONFIG_SYS_SDRAM_BASE 4590 CONFIG_SYS_SDRAM_BASE
4592 CONFIG_SYS_SDRAM_BASE0 4591 CONFIG_SYS_SDRAM_BASE0
4593 CONFIG_SYS_SDRAM_BASE1 4592 CONFIG_SYS_SDRAM_BASE1
4594 CONFIG_SYS_SDRAM_BASE1xx 4593 CONFIG_SYS_SDRAM_BASE1xx
4595 CONFIG_SYS_SDRAM_BASE2 4594 CONFIG_SYS_SDRAM_BASE2
4596 CONFIG_SYS_SDRAM_CFG 4595 CONFIG_SYS_SDRAM_CFG
4597 CONFIG_SYS_SDRAM_CFG1 4596 CONFIG_SYS_SDRAM_CFG1
4598 CONFIG_SYS_SDRAM_CFG2 4597 CONFIG_SYS_SDRAM_CFG2
4599 CONFIG_SYS_SDRAM_CTRL 4598 CONFIG_SYS_SDRAM_CTRL
4600 CONFIG_SYS_SDRAM_DRVSTRENGTH 4599 CONFIG_SYS_SDRAM_DRVSTRENGTH
4601 CONFIG_SYS_SDRAM_DRV_STRENGTH 4600 CONFIG_SYS_SDRAM_DRV_STRENGTH
4602 CONFIG_SYS_SDRAM_EMOD 4601 CONFIG_SYS_SDRAM_EMOD
4603 CONFIG_SYS_SDRAM_LOWER 4602 CONFIG_SYS_SDRAM_LOWER
4604 CONFIG_SYS_SDRAM_MODE 4603 CONFIG_SYS_SDRAM_MODE
4605 CONFIG_SYS_SDRAM_SIZE 4604 CONFIG_SYS_SDRAM_SIZE
4606 CONFIG_SYS_SDRAM_SIZE0 4605 CONFIG_SYS_SDRAM_SIZE0
4607 CONFIG_SYS_SDRAM_SIZE1 4606 CONFIG_SYS_SDRAM_SIZE1
4608 CONFIG_SYS_SDRAM_SIZE_LAW 4607 CONFIG_SYS_SDRAM_SIZE_LAW
4609 CONFIG_SYS_SDRAM_UPPER 4608 CONFIG_SYS_SDRAM_UPPER
4610 CONFIG_SYS_SDRAM_VAL 4609 CONFIG_SYS_SDRAM_VAL
4611 CONFIG_SYS_SDRAM_VAL1 4610 CONFIG_SYS_SDRAM_VAL1
4612 CONFIG_SYS_SDRAM_VAL10 4611 CONFIG_SYS_SDRAM_VAL10
4613 CONFIG_SYS_SDRAM_VAL11 4612 CONFIG_SYS_SDRAM_VAL11
4614 CONFIG_SYS_SDRAM_VAL12 4613 CONFIG_SYS_SDRAM_VAL12
4615 CONFIG_SYS_SDRAM_VAL2 4614 CONFIG_SYS_SDRAM_VAL2
4616 CONFIG_SYS_SDRAM_VAL3 4615 CONFIG_SYS_SDRAM_VAL3
4617 CONFIG_SYS_SDRAM_VAL4 4616 CONFIG_SYS_SDRAM_VAL4
4618 CONFIG_SYS_SDRAM_VAL5 4617 CONFIG_SYS_SDRAM_VAL5
4619 CONFIG_SYS_SDRAM_VAL6 4618 CONFIG_SYS_SDRAM_VAL6
4620 CONFIG_SYS_SDRAM_VAL7 4619 CONFIG_SYS_SDRAM_VAL7
4621 CONFIG_SYS_SDRAM_VAL8 4620 CONFIG_SYS_SDRAM_VAL8
4622 CONFIG_SYS_SDRAM_VAL9 4621 CONFIG_SYS_SDRAM_VAL9
4623 CONFIG_SYS_SDRC_CR_VAL 4622 CONFIG_SYS_SDRC_CR_VAL
4624 CONFIG_SYS_SDRC_MDR_VAL 4623 CONFIG_SYS_SDRC_MDR_VAL
4625 CONFIG_SYS_SDRC_MR_VAL 4624 CONFIG_SYS_SDRC_MR_VAL
4626 CONFIG_SYS_SDRC_MR_VAL1 4625 CONFIG_SYS_SDRC_MR_VAL1
4627 CONFIG_SYS_SDRC_MR_VAL2 4626 CONFIG_SYS_SDRC_MR_VAL2
4628 CONFIG_SYS_SDRC_MR_VAL3 4627 CONFIG_SYS_SDRC_MR_VAL3
4629 CONFIG_SYS_SDRC_MR_VAL4 4628 CONFIG_SYS_SDRC_MR_VAL4
4630 CONFIG_SYS_SDRC_MR_VAL5 4629 CONFIG_SYS_SDRC_MR_VAL5
4631 CONFIG_SYS_SDRC_TR_VAL 4630 CONFIG_SYS_SDRC_TR_VAL
4632 CONFIG_SYS_SDRC_TR_VAL1 4631 CONFIG_SYS_SDRC_TR_VAL1
4633 CONFIG_SYS_SDRC_TR_VAL2 4632 CONFIG_SYS_SDRC_TR_VAL2
4634 CONFIG_SYS_SD_VOLTAGE 4633 CONFIG_SYS_SD_VOLTAGE
4635 CONFIG_SYS_SEC_MON_ADDR 4634 CONFIG_SYS_SEC_MON_ADDR
4636 CONFIG_SYS_SEC_MON_OFFSET 4635 CONFIG_SYS_SEC_MON_OFFSET
4637 CONFIG_SYS_SERIAL0 4636 CONFIG_SYS_SERIAL0
4638 CONFIG_SYS_SERIAL1 4637 CONFIG_SYS_SERIAL1
4639 CONFIG_SYS_SERIAL2 4638 CONFIG_SYS_SERIAL2
4640 CONFIG_SYS_SERIAL3 4639 CONFIG_SYS_SERIAL3
4641 CONFIG_SYS_SERIAL4 4640 CONFIG_SYS_SERIAL4
4642 CONFIG_SYS_SERIAL5 4641 CONFIG_SYS_SERIAL5
4643 CONFIG_SYS_SERIAL_BOOT 4642 CONFIG_SYS_SERIAL_BOOT
4644 CONFIG_SYS_SFP_ADDR 4643 CONFIG_SYS_SFP_ADDR
4645 CONFIG_SYS_SFP_OFFSET 4644 CONFIG_SYS_SFP_OFFSET
4646 CONFIG_SYS_SGMII1_PHY_ADDR 4645 CONFIG_SYS_SGMII1_PHY_ADDR
4647 CONFIG_SYS_SGMII2_PHY_ADDR 4646 CONFIG_SYS_SGMII2_PHY_ADDR
4648 CONFIG_SYS_SGMII3_PHY_ADDR 4647 CONFIG_SYS_SGMII3_PHY_ADDR
4649 CONFIG_SYS_SGMII_LINERATE_MHZ 4648 CONFIG_SYS_SGMII_LINERATE_MHZ
4650 CONFIG_SYS_SGMII_RATESCALE 4649 CONFIG_SYS_SGMII_RATESCALE
4651 CONFIG_SYS_SGMII_REFCLK_MHZ 4650 CONFIG_SYS_SGMII_REFCLK_MHZ
4652 CONFIG_SYS_SH_SDHI0_BASE 4651 CONFIG_SYS_SH_SDHI0_BASE
4653 CONFIG_SYS_SH_SDHI1_BASE 4652 CONFIG_SYS_SH_SDHI1_BASE
4654 CONFIG_SYS_SH_SDHI2_BASE 4653 CONFIG_SYS_SH_SDHI2_BASE
4655 CONFIG_SYS_SH_SDHI3_BASE 4654 CONFIG_SYS_SH_SDHI3_BASE
4656 CONFIG_SYS_SH_SDHI_NR_CHANNEL 4655 CONFIG_SYS_SH_SDHI_NR_CHANNEL
4657 CONFIG_SYS_SICRH 4656 CONFIG_SYS_SICRH
4658 CONFIG_SYS_SICRL 4657 CONFIG_SYS_SICRL
4659 CONFIG_SYS_SIL1178_I2C 4658 CONFIG_SYS_SIL1178_I2C
4660 CONFIG_SYS_SJA1000_BASE 4659 CONFIG_SYS_SJA1000_BASE
4661 CONFIG_SYS_SMC0_CYCLE0_VAL 4660 CONFIG_SYS_SMC0_CYCLE0_VAL
4662 CONFIG_SYS_SMC0_MODE0_VAL 4661 CONFIG_SYS_SMC0_MODE0_VAL
4663 CONFIG_SYS_SMC0_PULSE0_VAL 4662 CONFIG_SYS_SMC0_PULSE0_VAL
4664 CONFIG_SYS_SMC0_SETUP0_VAL 4663 CONFIG_SYS_SMC0_SETUP0_VAL
4665 CONFIG_SYS_SMC_CSR0_VAL 4664 CONFIG_SYS_SMC_CSR0_VAL
4666 CONFIG_SYS_SMI_BASE 4665 CONFIG_SYS_SMI_BASE
4667 CONFIG_SYS_SPANSION_BASE 4666 CONFIG_SYS_SPANSION_BASE
4668 CONFIG_SYS_SPANSION_BOOT 4667 CONFIG_SYS_SPANSION_BOOT
4669 CONFIG_SYS_SPCR_OPT 4668 CONFIG_SYS_SPCR_OPT
4670 CONFIG_SYS_SPCR_TSEC1EP 4669 CONFIG_SYS_SPCR_TSEC1EP
4671 CONFIG_SYS_SPCR_TSEC2EP 4670 CONFIG_SYS_SPCR_TSEC2EP
4672 CONFIG_SYS_SPCR_TSECEP 4671 CONFIG_SYS_SPCR_TSECEP
4673 CONFIG_SYS_SPD_BUS_NUM 4672 CONFIG_SYS_SPD_BUS_NUM
4674 CONFIG_SYS_SPI0 4673 CONFIG_SYS_SPI0
4675 CONFIG_SYS_SPI0_NUM_CS 4674 CONFIG_SYS_SPI0_NUM_CS
4676 CONFIG_SYS_SPI1 4675 CONFIG_SYS_SPI1
4677 CONFIG_SYS_SPI1_BASE 4676 CONFIG_SYS_SPI1_BASE
4678 CONFIG_SYS_SPI1_NUM_CS 4677 CONFIG_SYS_SPI1_NUM_CS
4679 CONFIG_SYS_SPI2 4678 CONFIG_SYS_SPI2
4680 CONFIG_SYS_SPI2_BASE 4679 CONFIG_SYS_SPI2_BASE
4681 CONFIG_SYS_SPI2_NUM_CS 4680 CONFIG_SYS_SPI2_NUM_CS
4682 CONFIG_SYS_SPI_ARGS_OFFS 4681 CONFIG_SYS_SPI_ARGS_OFFS
4683 CONFIG_SYS_SPI_ARGS_SIZE 4682 CONFIG_SYS_SPI_ARGS_SIZE
4684 CONFIG_SYS_SPI_BASE 4683 CONFIG_SYS_SPI_BASE
4685 CONFIG_SYS_SPI_CLK 4684 CONFIG_SYS_SPI_CLK
4686 CONFIG_SYS_SPI_FLASH_U_BOOT_DST 4685 CONFIG_SYS_SPI_FLASH_U_BOOT_DST
4687 CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS 4686 CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS
4688 CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE 4687 CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE
4689 CONFIG_SYS_SPI_FLASH_U_BOOT_START 4688 CONFIG_SYS_SPI_FLASH_U_BOOT_START
4690 CONFIG_SYS_SPI_KERNEL_OFFS 4689 CONFIG_SYS_SPI_KERNEL_OFFS
4691 CONFIG_SYS_SPI_MXC_WAIT 4690 CONFIG_SYS_SPI_MXC_WAIT
4692 CONFIG_SYS_SPI_RTC_DEVID 4691 CONFIG_SYS_SPI_RTC_DEVID
4693 CONFIG_SYS_SPI_ST_ENABLE_WP_PIN 4692 CONFIG_SYS_SPI_ST_ENABLE_WP_PIN
4694 CONFIG_SYS_SPI_U_BOOT_OFFS 4693 CONFIG_SYS_SPI_U_BOOT_OFFS
4695 CONFIG_SYS_SPI_U_BOOT_SIZE 4694 CONFIG_SYS_SPI_U_BOOT_SIZE
4696 CONFIG_SYS_SPI_WRITE_TOUT 4695 CONFIG_SYS_SPI_WRITE_TOUT
4697 CONFIG_SYS_SPL_ARGS_ADDR 4696 CONFIG_SYS_SPL_ARGS_ADDR
4698 CONFIG_SYS_SPL_LEN 4697 CONFIG_SYS_SPL_LEN
4699 CONFIG_SYS_SPL_MALLOC_SIZE 4698 CONFIG_SYS_SPL_MALLOC_SIZE
4700 CONFIG_SYS_SPL_MALLOC_START 4699 CONFIG_SYS_SPL_MALLOC_START
4701 CONFIG_SYS_SPR 4700 CONFIG_SYS_SPR
4702 CONFIG_SYS_SRAM_BASE 4701 CONFIG_SYS_SRAM_BASE
4703 CONFIG_SYS_SRAM_SIZE 4702 CONFIG_SYS_SRAM_SIZE
4704 CONFIG_SYS_SRAM_START 4703 CONFIG_SYS_SRAM_START
4705 CONFIG_SYS_SRIO 4704 CONFIG_SYS_SRIO
4706 CONFIG_SYS_SRIO1_MEM_BASE 4705 CONFIG_SYS_SRIO1_MEM_BASE
4707 CONFIG_SYS_SRIO1_MEM_BUS 4706 CONFIG_SYS_SRIO1_MEM_BUS
4708 CONFIG_SYS_SRIO1_MEM_PHYS 4707 CONFIG_SYS_SRIO1_MEM_PHYS
4709 CONFIG_SYS_SRIO1_MEM_PHYS_HIGH 4708 CONFIG_SYS_SRIO1_MEM_PHYS_HIGH
4710 CONFIG_SYS_SRIO1_MEM_PHYS_LOW 4709 CONFIG_SYS_SRIO1_MEM_PHYS_LOW
4711 CONFIG_SYS_SRIO1_MEM_SIZE 4710 CONFIG_SYS_SRIO1_MEM_SIZE
4712 CONFIG_SYS_SRIO1_MEM_VIRT 4711 CONFIG_SYS_SRIO1_MEM_VIRT
4713 CONFIG_SYS_SRIO2_MEM_PHYS 4712 CONFIG_SYS_SRIO2_MEM_PHYS
4714 CONFIG_SYS_SRIO2_MEM_SIZE 4713 CONFIG_SYS_SRIO2_MEM_SIZE
4715 CONFIG_SYS_SRIO2_MEM_VIRT 4714 CONFIG_SYS_SRIO2_MEM_VIRT
4716 CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR 4715 CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR
4717 CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR_PHYS 4716 CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR_PHYS
4718 CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR 4717 CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR
4719 CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR_PHYS 4718 CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR_PHYS
4720 CONFIG_SYS_SSD_BASE 4719 CONFIG_SYS_SSD_BASE
4721 CONFIG_SYS_SSD_BASE_PHYS 4720 CONFIG_SYS_SSD_BASE_PHYS
4722 CONFIG_SYS_SST_SECT 4721 CONFIG_SYS_SST_SECT
4723 CONFIG_SYS_SST_SECTSZ 4722 CONFIG_SYS_SST_SECTSZ
4724 CONFIG_SYS_STACK_SIZE 4723 CONFIG_SYS_STACK_SIZE
4725 CONFIG_SYS_STATUS_C 4724 CONFIG_SYS_STATUS_C
4726 CONFIG_SYS_STATUS_OK 4725 CONFIG_SYS_STATUS_OK
4727 CONFIG_SYS_STMICRO_BOOT 4726 CONFIG_SYS_STMICRO_BOOT
4728 CONFIG_SYS_SUPPORT_64BIT_DATA 4727 CONFIG_SYS_SUPPORT_64BIT_DATA
4729 CONFIG_SYS_SXCNFG_VAL 4728 CONFIG_SYS_SXCNFG_VAL
4730 CONFIG_SYS_SYSTEMACE_BASE 4729 CONFIG_SYS_SYSTEMACE_BASE
4731 CONFIG_SYS_SYSTEMACE_WIDTH 4730 CONFIG_SYS_SYSTEMACE_WIDTH
4732 CONFIG_SYS_TBIPA_VALUE 4731 CONFIG_SYS_TBIPA_VALUE
4733 CONFIG_SYS_TCLK 4732 CONFIG_SYS_TCLK
4734 CONFIG_SYS_TEXT_ADDR 4733 CONFIG_SYS_TEXT_ADDR
4735 CONFIG_SYS_TEXT_BASE_NOR 4734 CONFIG_SYS_TEXT_BASE_NOR
4736 CONFIG_SYS_TEXT_BASE_SPL 4735 CONFIG_SYS_TEXT_BASE_SPL
4737 CONFIG_SYS_TIMERBASE 4736 CONFIG_SYS_TIMERBASE
4738 CONFIG_SYS_TIMER_BASE 4737 CONFIG_SYS_TIMER_BASE
4739 CONFIG_SYS_TIMER_COUNTER 4738 CONFIG_SYS_TIMER_COUNTER
4740 CONFIG_SYS_TIMER_COUNTS_DOWN 4739 CONFIG_SYS_TIMER_COUNTS_DOWN
4741 CONFIG_SYS_TIMER_PRESCALER 4740 CONFIG_SYS_TIMER_PRESCALER
4742 CONFIG_SYS_TIMER_RATE 4741 CONFIG_SYS_TIMER_RATE
4743 CONFIG_SYS_TMPVIRT 4742 CONFIG_SYS_TMPVIRT
4744 CONFIG_SYS_TMRINTR_MASK 4743 CONFIG_SYS_TMRINTR_MASK
4745 CONFIG_SYS_TMRINTR_NO 4744 CONFIG_SYS_TMRINTR_NO
4746 CONFIG_SYS_TMRINTR_PEND 4745 CONFIG_SYS_TMRINTR_PEND
4747 CONFIG_SYS_TMRINTR_PRI 4746 CONFIG_SYS_TMRINTR_PRI
4748 CONFIG_SYS_TMRPND_REG 4747 CONFIG_SYS_TMRPND_REG
4749 CONFIG_SYS_TMR_BASE 4748 CONFIG_SYS_TMR_BASE
4750 CONFIG_SYS_TMU_CLK_DIV 4749 CONFIG_SYS_TMU_CLK_DIV
4751 CONFIG_SYS_TSEC1 4750 CONFIG_SYS_TSEC1
4752 CONFIG_SYS_TSEC1_OFFSET 4751 CONFIG_SYS_TSEC1_OFFSET
4753 CONFIG_SYS_TSEC2 4752 CONFIG_SYS_TSEC2
4754 CONFIG_SYS_TSEC2_OFFSET 4753 CONFIG_SYS_TSEC2_OFFSET
4755 CONFIG_SYS_TSEC3_OFFSET 4754 CONFIG_SYS_TSEC3_OFFSET
4756 CONFIG_SYS_TX_ETH_BUFFER 4755 CONFIG_SYS_TX_ETH_BUFFER
4757 CONFIG_SYS_UART1_ALT1_GPIO 4756 CONFIG_SYS_UART1_ALT1_GPIO
4758 CONFIG_SYS_UART1_PRI_GPIO 4757 CONFIG_SYS_UART1_PRI_GPIO
4759 CONFIG_SYS_UART2_ALT1_GPIO 4758 CONFIG_SYS_UART2_ALT1_GPIO
4760 CONFIG_SYS_UART2_ALT3_GPIO 4759 CONFIG_SYS_UART2_ALT3_GPIO
4761 CONFIG_SYS_UART2_PRI_GPIO 4760 CONFIG_SYS_UART2_PRI_GPIO
4762 CONFIG_SYS_UART_BASE 4761 CONFIG_SYS_UART_BASE
4763 CONFIG_SYS_UART_PORT 4762 CONFIG_SYS_UART_PORT
4764 CONFIG_SYS_UBOOT_BASE 4763 CONFIG_SYS_UBOOT_BASE
4765 CONFIG_SYS_UBOOT_END 4764 CONFIG_SYS_UBOOT_END
4766 CONFIG_SYS_UBOOT_START 4765 CONFIG_SYS_UBOOT_START
4767 CONFIG_SYS_UCC_RGMII_MODE 4766 CONFIG_SYS_UCC_RGMII_MODE
4768 CONFIG_SYS_UCC_RMII_MODE 4767 CONFIG_SYS_UCC_RMII_MODE
4769 CONFIG_SYS_UDELAY_BASE 4768 CONFIG_SYS_UDELAY_BASE
4770 CONFIG_SYS_UEC 4769 CONFIG_SYS_UEC
4771 CONFIG_SYS_UEC1_ETH_TYPE 4770 CONFIG_SYS_UEC1_ETH_TYPE
4772 CONFIG_SYS_UEC1_INTERFACE_SPEED 4771 CONFIG_SYS_UEC1_INTERFACE_SPEED
4773 CONFIG_SYS_UEC1_INTERFACE_TYPE 4772 CONFIG_SYS_UEC1_INTERFACE_TYPE
4774 CONFIG_SYS_UEC1_PHY_ADDR 4773 CONFIG_SYS_UEC1_PHY_ADDR
4775 CONFIG_SYS_UEC1_RX_CLK 4774 CONFIG_SYS_UEC1_RX_CLK
4776 CONFIG_SYS_UEC1_TX_CLK 4775 CONFIG_SYS_UEC1_TX_CLK
4777 CONFIG_SYS_UEC1_UCC_NUM 4776 CONFIG_SYS_UEC1_UCC_NUM
4778 CONFIG_SYS_UEC2_ETH_TYPE 4777 CONFIG_SYS_UEC2_ETH_TYPE
4779 CONFIG_SYS_UEC2_INTERFACE_SPEED 4778 CONFIG_SYS_UEC2_INTERFACE_SPEED
4780 CONFIG_SYS_UEC2_INTERFACE_TYPE 4779 CONFIG_SYS_UEC2_INTERFACE_TYPE
4781 CONFIG_SYS_UEC2_PHY_ADDR 4780 CONFIG_SYS_UEC2_PHY_ADDR
4782 CONFIG_SYS_UEC2_RX_CLK 4781 CONFIG_SYS_UEC2_RX_CLK
4783 CONFIG_SYS_UEC2_TX_CLK 4782 CONFIG_SYS_UEC2_TX_CLK
4784 CONFIG_SYS_UEC2_UCC_NUM 4783 CONFIG_SYS_UEC2_UCC_NUM
4785 CONFIG_SYS_UEC3_ETH_TYPE 4784 CONFIG_SYS_UEC3_ETH_TYPE
4786 CONFIG_SYS_UEC3_INTERFACE_SPEED 4785 CONFIG_SYS_UEC3_INTERFACE_SPEED
4787 CONFIG_SYS_UEC3_INTERFACE_TYPE 4786 CONFIG_SYS_UEC3_INTERFACE_TYPE
4788 CONFIG_SYS_UEC3_PHY_ADDR 4787 CONFIG_SYS_UEC3_PHY_ADDR
4789 CONFIG_SYS_UEC3_RX_CLK 4788 CONFIG_SYS_UEC3_RX_CLK
4790 CONFIG_SYS_UEC3_TX_CLK 4789 CONFIG_SYS_UEC3_TX_CLK
4791 CONFIG_SYS_UEC3_UCC_NUM 4790 CONFIG_SYS_UEC3_UCC_NUM
4792 CONFIG_SYS_UEC4_ETH_TYPE 4791 CONFIG_SYS_UEC4_ETH_TYPE
4793 CONFIG_SYS_UEC4_INTERFACE_SPEED 4792 CONFIG_SYS_UEC4_INTERFACE_SPEED
4794 CONFIG_SYS_UEC4_INTERFACE_TYPE 4793 CONFIG_SYS_UEC4_INTERFACE_TYPE
4795 CONFIG_SYS_UEC4_PHY_ADDR 4794 CONFIG_SYS_UEC4_PHY_ADDR
4796 CONFIG_SYS_UEC4_RX_CLK 4795 CONFIG_SYS_UEC4_RX_CLK
4797 CONFIG_SYS_UEC4_TX_CLK 4796 CONFIG_SYS_UEC4_TX_CLK
4798 CONFIG_SYS_UEC4_UCC_NUM 4797 CONFIG_SYS_UEC4_UCC_NUM
4799 CONFIG_SYS_UEC5_ETH_TYPE 4798 CONFIG_SYS_UEC5_ETH_TYPE
4800 CONFIG_SYS_UEC5_INTERFACE_SPEED 4799 CONFIG_SYS_UEC5_INTERFACE_SPEED
4801 CONFIG_SYS_UEC5_INTERFACE_TYPE 4800 CONFIG_SYS_UEC5_INTERFACE_TYPE
4802 CONFIG_SYS_UEC5_PHY_ADDR 4801 CONFIG_SYS_UEC5_PHY_ADDR
4803 CONFIG_SYS_UEC5_RX_CLK 4802 CONFIG_SYS_UEC5_RX_CLK
4804 CONFIG_SYS_UEC5_TX_CLK 4803 CONFIG_SYS_UEC5_TX_CLK
4805 CONFIG_SYS_UEC5_UCC_NUM 4804 CONFIG_SYS_UEC5_UCC_NUM
4806 CONFIG_SYS_UEC6_ETH_TYPE 4805 CONFIG_SYS_UEC6_ETH_TYPE
4807 CONFIG_SYS_UEC6_INTERFACE_SPEED 4806 CONFIG_SYS_UEC6_INTERFACE_SPEED
4808 CONFIG_SYS_UEC6_INTERFACE_TYPE 4807 CONFIG_SYS_UEC6_INTERFACE_TYPE
4809 CONFIG_SYS_UEC6_PHY_ADDR 4808 CONFIG_SYS_UEC6_PHY_ADDR
4810 CONFIG_SYS_UEC6_RX_CLK 4809 CONFIG_SYS_UEC6_RX_CLK
4811 CONFIG_SYS_UEC6_TX_CLK 4810 CONFIG_SYS_UEC6_TX_CLK
4812 CONFIG_SYS_UEC6_UCC_NUM 4811 CONFIG_SYS_UEC6_UCC_NUM
4813 CONFIG_SYS_UEC8_ETH_TYPE 4812 CONFIG_SYS_UEC8_ETH_TYPE
4814 CONFIG_SYS_UEC8_INTERFACE_SPEED 4813 CONFIG_SYS_UEC8_INTERFACE_SPEED
4815 CONFIG_SYS_UEC8_INTERFACE_TYPE 4814 CONFIG_SYS_UEC8_INTERFACE_TYPE
4816 CONFIG_SYS_UEC8_PHY_ADDR 4815 CONFIG_SYS_UEC8_PHY_ADDR
4817 CONFIG_SYS_UEC8_RX_CLK 4816 CONFIG_SYS_UEC8_RX_CLK
4818 CONFIG_SYS_UEC8_TX_CLK 4817 CONFIG_SYS_UEC8_TX_CLK
4819 CONFIG_SYS_UEC8_UCC_NUM 4818 CONFIG_SYS_UEC8_UCC_NUM
4820 CONFIG_SYS_UECx_PHY_ADDR 4819 CONFIG_SYS_UECx_PHY_ADDR
4821 CONFIG_SYS_UHC0_EHCI_BASE 4820 CONFIG_SYS_UHC0_EHCI_BASE
4822 CONFIG_SYS_UHC1_EHCI_BASE 4821 CONFIG_SYS_UHC1_EHCI_BASE
4823 CONFIG_SYS_ULB_CLK 4822 CONFIG_SYS_ULB_CLK
4824 CONFIG_SYS_UNIFY_CACHE 4823 CONFIG_SYS_UNIFY_CACHE
4825 CONFIG_SYS_UNSPEC_PHYID 4824 CONFIG_SYS_UNSPEC_PHYID
4826 CONFIG_SYS_UNSPEC_STRID 4825 CONFIG_SYS_UNSPEC_STRID
4827 CONFIG_SYS_USBCTRL 4826 CONFIG_SYS_USBCTRL
4828 CONFIG_SYS_USBD_BASE 4827 CONFIG_SYS_USBD_BASE
4829 CONFIG_SYS_USB_EHCI_CPU_INIT 4828 CONFIG_SYS_USB_EHCI_CPU_INIT
4830 CONFIG_SYS_USB_EHCI_REGS_BASE 4829 CONFIG_SYS_USB_EHCI_REGS_BASE
4831 CONFIG_SYS_USB_FAT_BOOT_PARTITION 4830 CONFIG_SYS_USB_FAT_BOOT_PARTITION
4832 CONFIG_SYS_USB_HOST 4831 CONFIG_SYS_USB_HOST
4833 CONFIG_SYS_USB_OHCI_BOARD_INIT 4832 CONFIG_SYS_USB_OHCI_BOARD_INIT
4834 CONFIG_SYS_USB_OHCI_CPU_INIT 4833 CONFIG_SYS_USB_OHCI_CPU_INIT
4835 CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 4834 CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS
4836 CONFIG_SYS_USB_OHCI_REGS_BASE 4835 CONFIG_SYS_USB_OHCI_REGS_BASE
4837 CONFIG_SYS_USB_OHCI_SLOT_NAME 4836 CONFIG_SYS_USB_OHCI_SLOT_NAME
4838 CONFIG_SYS_USER_SWITCHES_BASE 4837 CONFIG_SYS_USER_SWITCHES_BASE
4839 CONFIG_SYS_USE_BOOT_NORFLASH 4838 CONFIG_SYS_USE_BOOT_NORFLASH
4840 CONFIG_SYS_USE_DATAFLASH 4839 CONFIG_SYS_USE_DATAFLASH
4841 CONFIG_SYS_USE_DATAFLASH_CS0 4840 CONFIG_SYS_USE_DATAFLASH_CS0
4842 CONFIG_SYS_USE_DATAFLASH_CS1 4841 CONFIG_SYS_USE_DATAFLASH_CS1
4843 CONFIG_SYS_USE_DATAFLASH_CS3 4842 CONFIG_SYS_USE_DATAFLASH_CS3
4844 CONFIG_SYS_USE_DSPLINK 4843 CONFIG_SYS_USE_DSPLINK
4845 CONFIG_SYS_USE_FLASH 4844 CONFIG_SYS_USE_FLASH
4846 CONFIG_SYS_USE_MAIN_OSCILLATOR 4845 CONFIG_SYS_USE_MAIN_OSCILLATOR
4847 CONFIG_SYS_USE_MMC 4846 CONFIG_SYS_USE_MMC
4848 CONFIG_SYS_USE_MPC834XSYS_USB_PHY 4847 CONFIG_SYS_USE_MPC834XSYS_USB_PHY
4849 CONFIG_SYS_USE_NAND 4848 CONFIG_SYS_USE_NAND
4850 CONFIG_SYS_USE_NANDFLASH 4849 CONFIG_SYS_USE_NANDFLASH
4851 CONFIG_SYS_USE_NOR 4850 CONFIG_SYS_USE_NOR
4852 CONFIG_SYS_USE_NORFLASH 4851 CONFIG_SYS_USE_NORFLASH
4853 CONFIG_SYS_USE_SERIALFLASH 4852 CONFIG_SYS_USE_SERIALFLASH
4854 CONFIG_SYS_USE_SPIFLASH 4853 CONFIG_SYS_USE_SPIFLASH
4855 CONFIG_SYS_USR_EXCEP 4854 CONFIG_SYS_USR_EXCEP
4856 CONFIG_SYS_U_BOOT_OFFS 4855 CONFIG_SYS_U_BOOT_OFFS
4857 CONFIG_SYS_VA_BITS 4856 CONFIG_SYS_VA_BITS
4858 CONFIG_SYS_VCXK_ACKNOWLEDGE_DDR 4857 CONFIG_SYS_VCXK_ACKNOWLEDGE_DDR
4859 CONFIG_SYS_VCXK_ACKNOWLEDGE_PIN 4858 CONFIG_SYS_VCXK_ACKNOWLEDGE_PIN
4860 CONFIG_SYS_VCXK_ACKNOWLEDGE_PORT 4859 CONFIG_SYS_VCXK_ACKNOWLEDGE_PORT
4861 CONFIG_SYS_VCXK_AUTODETECT 4860 CONFIG_SYS_VCXK_AUTODETECT
4862 CONFIG_SYS_VCXK_BASE 4861 CONFIG_SYS_VCXK_BASE
4863 CONFIG_SYS_VCXK_DEFAULT_LINEALIGN 4862 CONFIG_SYS_VCXK_DEFAULT_LINEALIGN
4864 CONFIG_SYS_VCXK_DOUBLEBUFFERED 4863 CONFIG_SYS_VCXK_DOUBLEBUFFERED
4865 CONFIG_SYS_VCXK_ENABLE_DDR 4864 CONFIG_SYS_VCXK_ENABLE_DDR
4866 CONFIG_SYS_VCXK_ENABLE_PIN 4865 CONFIG_SYS_VCXK_ENABLE_PIN
4867 CONFIG_SYS_VCXK_ENABLE_PORT 4866 CONFIG_SYS_VCXK_ENABLE_PORT
4868 CONFIG_SYS_VCXK_INVERT_DDR 4867 CONFIG_SYS_VCXK_INVERT_DDR
4869 CONFIG_SYS_VCXK_INVERT_PIN 4868 CONFIG_SYS_VCXK_INVERT_PIN
4870 CONFIG_SYS_VCXK_INVERT_PORT 4869 CONFIG_SYS_VCXK_INVERT_PORT
4871 CONFIG_SYS_VCXK_REQUEST_DDR 4870 CONFIG_SYS_VCXK_REQUEST_DDR
4872 CONFIG_SYS_VCXK_REQUEST_PIN 4871 CONFIG_SYS_VCXK_REQUEST_PIN
4873 CONFIG_SYS_VCXK_REQUEST_PORT 4872 CONFIG_SYS_VCXK_REQUEST_PORT
4874 CONFIG_SYS_VCXK_RESET_DDR 4873 CONFIG_SYS_VCXK_RESET_DDR
4875 CONFIG_SYS_VCXK_RESET_PIN 4874 CONFIG_SYS_VCXK_RESET_PIN
4876 CONFIG_SYS_VCXK_RESET_PORT 4875 CONFIG_SYS_VCXK_RESET_PORT
4877 CONFIG_SYS_VGA_RAM_EN 4876 CONFIG_SYS_VGA_RAM_EN
4878 CONFIG_SYS_VIDEO 4877 CONFIG_SYS_VIDEO
4879 CONFIG_SYS_VIDEO_LOGO_MAX_SIZE 4878 CONFIG_SYS_VIDEO_LOGO_MAX_SIZE
4880 CONFIG_SYS_VSC7385_BASE 4879 CONFIG_SYS_VSC7385_BASE
4881 CONFIG_SYS_VSC7385_BASE_PHYS 4880 CONFIG_SYS_VSC7385_BASE_PHYS
4882 CONFIG_SYS_VSC7385_BR_PRELIM 4881 CONFIG_SYS_VSC7385_BR_PRELIM
4883 CONFIG_SYS_VSC7385_OR_PRELIM 4882 CONFIG_SYS_VSC7385_OR_PRELIM
4884 CONFIG_SYS_VSC7385_SIZE 4883 CONFIG_SYS_VSC7385_SIZE
4885 CONFIG_SYS_VXWORKS_MAC_PTR 4884 CONFIG_SYS_VXWORKS_MAC_PTR
4886 CONFIG_SYS_WATCHDOG_FREQ 4885 CONFIG_SYS_WATCHDOG_FREQ
4887 CONFIG_SYS_WATCHDOG_VALUE 4886 CONFIG_SYS_WATCHDOG_VALUE
4888 CONFIG_SYS_WDTC_WDMR_VAL 4887 CONFIG_SYS_WDTC_WDMR_VAL
4889 CONFIG_SYS_WDTTIMERBASE 4888 CONFIG_SYS_WDTTIMERBASE
4890 CONFIG_SYS_WDT_PERIOD_HIGH 4889 CONFIG_SYS_WDT_PERIOD_HIGH
4891 CONFIG_SYS_WDT_PERIOD_LOW 4890 CONFIG_SYS_WDT_PERIOD_LOW
4892 CONFIG_SYS_WINDOW1_BASE 4891 CONFIG_SYS_WINDOW1_BASE
4893 CONFIG_SYS_WRITE_SWAPPED_DATA 4892 CONFIG_SYS_WRITE_SWAPPED_DATA
4894 CONFIG_SYS_XHCI_USB1_ADDR 4893 CONFIG_SYS_XHCI_USB1_ADDR
4895 CONFIG_SYS_XHCI_USB2_ADDR 4894 CONFIG_SYS_XHCI_USB2_ADDR
4896 CONFIG_SYS_XHCI_USB3_ADDR 4895 CONFIG_SYS_XHCI_USB3_ADDR
4897 CONFIG_SYS_XILINX_SPI_LIST 4896 CONFIG_SYS_XILINX_SPI_LIST
4898 CONFIG_SYS_XIMG_LEN 4897 CONFIG_SYS_XIMG_LEN
4899 CONFIG_SYS_XWAY_EBU_BOOTCFG 4898 CONFIG_SYS_XWAY_EBU_BOOTCFG
4900 CONFIG_SYS_ZYNQ_QSPI_WAIT 4899 CONFIG_SYS_ZYNQ_QSPI_WAIT
4901 CONFIG_SYS_ZYNQ_SPI_WAIT 4900 CONFIG_SYS_ZYNQ_SPI_WAIT
4902 CONFIG_SYS_i2C_FSL 4901 CONFIG_SYS_i2C_FSL
4903 CONFIG_TAM3517_SETTINGS 4902 CONFIG_TAM3517_SETTINGS
4904 CONFIG_TAM3517_SW3_SETTINGS 4903 CONFIG_TAM3517_SW3_SETTINGS
4905 CONFIG_TCA642X 4904 CONFIG_TCA642X
4906 CONFIG_TEGRA_BOARD_STRING 4905 CONFIG_TEGRA_BOARD_STRING
4907 CONFIG_TEGRA_CLOCK_SCALING 4906 CONFIG_TEGRA_CLOCK_SCALING
4908 CONFIG_TEGRA_ENABLE_UARTA 4907 CONFIG_TEGRA_ENABLE_UARTA
4909 CONFIG_TEGRA_ENABLE_UARTB 4908 CONFIG_TEGRA_ENABLE_UARTB
4910 CONFIG_TEGRA_ENABLE_UARTC 4909 CONFIG_TEGRA_ENABLE_UARTC
4911 CONFIG_TEGRA_ENABLE_UARTD 4910 CONFIG_TEGRA_ENABLE_UARTD
4912 CONFIG_TEGRA_ENABLE_UARTE 4911 CONFIG_TEGRA_ENABLE_UARTE
4913 CONFIG_TEGRA_GPU 4912 CONFIG_TEGRA_GPU
4914 CONFIG_TEGRA_KEYBOARD 4913 CONFIG_TEGRA_KEYBOARD
4915 CONFIG_TEGRA_LP0 4914 CONFIG_TEGRA_LP0
4916 CONFIG_TEGRA_NAND 4915 CONFIG_TEGRA_NAND
4917 CONFIG_TEGRA_PMU 4916 CONFIG_TEGRA_PMU
4918 CONFIG_TEGRA_SLINK_CTRLS 4917 CONFIG_TEGRA_SLINK_CTRLS
4919 CONFIG_TEGRA_SPI 4918 CONFIG_TEGRA_SPI
4920 CONFIG_TEGRA_UARTA_GPU 4919 CONFIG_TEGRA_UARTA_GPU
4921 CONFIG_TEGRA_UARTA_SDIO1 4920 CONFIG_TEGRA_UARTA_SDIO1
4922 CONFIG_TEGRA_VDD_CORE_TPS62361B_SET3 4921 CONFIG_TEGRA_VDD_CORE_TPS62361B_SET3
4923 CONFIG_TEGRA_VDD_CORE_TPS62366A_SET1 4922 CONFIG_TEGRA_VDD_CORE_TPS62366A_SET1
4924 CONFIG_TESTPIN_MASK 4923 CONFIG_TESTPIN_MASK
4925 CONFIG_TESTPIN_REG 4924 CONFIG_TESTPIN_REG
4926 CONFIG_TEST_LIST_SORT 4925 CONFIG_TEST_LIST_SORT
4927 CONFIG_TFP410_I2C_ADDR 4926 CONFIG_TFP410_I2C_ADDR
4928 CONFIG_TFTP_BLOCKSIZE 4927 CONFIG_TFTP_BLOCKSIZE
4929 CONFIG_TFTP_FILE_NAME_MAX_LEN 4928 CONFIG_TFTP_FILE_NAME_MAX_LEN
4930 CONFIG_TFTP_PORT 4929 CONFIG_TFTP_PORT
4931 CONFIG_TFTP_TSIZE 4930 CONFIG_TFTP_TSIZE
4932 CONFIG_THOR_RESET_OFF 4931 CONFIG_THOR_RESET_OFF
4933 CONFIG_THUNDERX 4932 CONFIG_THUNDERX
4934 CONFIG_TIMESTAMP 4933 CONFIG_TIMESTAMP
4935 CONFIG_TIZEN 4934 CONFIG_TIZEN
4936 CONFIG_TI_KEYSTONE_SERDES 4935 CONFIG_TI_KEYSTONE_SERDES
4937 CONFIG_TI_KSNAV 4936 CONFIG_TI_KSNAV
4938 CONFIG_TI_SPI_MMAP 4937 CONFIG_TI_SPI_MMAP
4939 CONFIG_TMU_TIMER 4938 CONFIG_TMU_TIMER
4940 CONFIG_TPL_DRIVERS_MISC_SUPPORT 4939 CONFIG_TPL_DRIVERS_MISC_SUPPORT
4941 CONFIG_TPL_PAD_TO 4940 CONFIG_TPL_PAD_TO
4942 CONFIG_TPM_TIS_BASE_ADDRESS 4941 CONFIG_TPM_TIS_BASE_ADDRESS
4943 CONFIG_TPS6586X_POWER 4942 CONFIG_TPS6586X_POWER
4944 CONFIG_TQM834X 4943 CONFIG_TQM834X
4945 CONFIG_TRACE 4944 CONFIG_TRACE
4946 CONFIG_TRACE_BUFFER_SIZE 4945 CONFIG_TRACE_BUFFER_SIZE
4947 CONFIG_TRACE_EARLY 4946 CONFIG_TRACE_EARLY
4948 CONFIG_TRACE_EARLY_ADDR 4947 CONFIG_TRACE_EARLY_ADDR
4949 CONFIG_TRACE_EARLY_SIZE 4948 CONFIG_TRACE_EARLY_SIZE
4950 CONFIG_TRAILBLAZER 4949 CONFIG_TRAILBLAZER
4951 CONFIG_TRATS 4950 CONFIG_TRATS
4952 CONFIG_TSEC 4951 CONFIG_TSEC
4953 CONFIG_TSEC1 4952 CONFIG_TSEC1
4954 CONFIG_TSEC1_NAME 4953 CONFIG_TSEC1_NAME
4955 CONFIG_TSEC2 4954 CONFIG_TSEC2
4956 CONFIG_TSEC2_NAME 4955 CONFIG_TSEC2_NAME
4957 CONFIG_TSEC3 4956 CONFIG_TSEC3
4958 CONFIG_TSEC3_NAME 4957 CONFIG_TSEC3_NAME
4959 CONFIG_TSEC4 4958 CONFIG_TSEC4
4960 CONFIG_TSEC4_NAME 4959 CONFIG_TSEC4_NAME
4961 CONFIG_TSECV2 4960 CONFIG_TSECV2
4962 CONFIG_TSECV2_1 4961 CONFIG_TSECV2_1
4963 CONFIG_TSEC_ENET 4962 CONFIG_TSEC_ENET
4964 CONFIG_TSEC_TBI 4963 CONFIG_TSEC_TBI
4965 CONFIG_TSEC_TBICR_SETTINGS 4964 CONFIG_TSEC_TBICR_SETTINGS
4966 CONFIG_TSI108_ETH_NUM_PORTS 4965 CONFIG_TSI108_ETH_NUM_PORTS
4967 CONFIG_TUGE1 4966 CONFIG_TUGE1
4968 CONFIG_TULIP 4967 CONFIG_TULIP
4969 CONFIG_TULIP_FIX_DAVICOM 4968 CONFIG_TULIP_FIX_DAVICOM
4970 CONFIG_TULIP_SELECT_MEDIA 4969 CONFIG_TULIP_SELECT_MEDIA
4971 CONFIG_TULIP_USE_IO 4970 CONFIG_TULIP_USE_IO
4972 CONFIG_TUXX1 4971 CONFIG_TUXX1
4973 CONFIG_TWL4030_INPUT 4972 CONFIG_TWL4030_INPUT
4974 CONFIG_TWL4030_KEYPAD 4973 CONFIG_TWL4030_KEYPAD
4975 CONFIG_TWL4030_LED 4974 CONFIG_TWL4030_LED
4976 CONFIG_TWL4030_USB 4975 CONFIG_TWL4030_USB
4977 CONFIG_TWL6030_INPUT 4976 CONFIG_TWL6030_INPUT
4978 CONFIG_TWL6030_POWER 4977 CONFIG_TWL6030_POWER
4979 CONFIG_TWR 4978 CONFIG_TWR
4980 CONFIG_TWR_P1025 4979 CONFIG_TWR_P1025
4981 CONFIG_TX_DESCR_NUM 4980 CONFIG_TX_DESCR_NUM
4982 CONFIG_TZSW_RESERVED_DRAM_SIZE 4981 CONFIG_TZSW_RESERVED_DRAM_SIZE
4983 CONFIG_T_SH7706LSR 4982 CONFIG_T_SH7706LSR
4984 CONFIG_UART_BR_PRELIM 4983 CONFIG_UART_BR_PRELIM
4985 CONFIG_UART_OR_PRELIM 4984 CONFIG_UART_OR_PRELIM
4986 CONFIG_UBIBLOCK 4985 CONFIG_UBIBLOCK
4987 CONFIG_UBIFS_SILENCE_MSG 4986 CONFIG_UBIFS_SILENCE_MSG
4988 CONFIG_UBIFS_VOLUME 4987 CONFIG_UBIFS_VOLUME
4989 CONFIG_UBI_PART 4988 CONFIG_UBI_PART
4990 CONFIG_UBI_SILENCE_MSG 4989 CONFIG_UBI_SILENCE_MSG
4991 CONFIG_UBI_SIZE 4990 CONFIG_UBI_SIZE
4992 CONFIG_UBOOT1_ENV_ADDR 4991 CONFIG_UBOOT1_ENV_ADDR
4993 CONFIG_UBOOT2_ENV_ADDR 4992 CONFIG_UBOOT2_ENV_ADDR
4994 CONFIG_UBOOTPATH 4993 CONFIG_UBOOTPATH
4995 CONFIG_UBOOT_ENABLE_PADS_ALL 4994 CONFIG_UBOOT_ENABLE_PADS_ALL
4996 CONFIG_UBOOT_SECTOR_COUNT 4995 CONFIG_UBOOT_SECTOR_COUNT
4997 CONFIG_UBOOT_SECTOR_START 4996 CONFIG_UBOOT_SECTOR_START
4998 CONFIG_UCP1020 4997 CONFIG_UCP1020
4999 CONFIG_UCP1020_REV_1_3 4998 CONFIG_UCP1020_REV_1_3
5000 CONFIG_UDP_CHECKSUM 4999 CONFIG_UDP_CHECKSUM
5001 CONFIG_UEC_ETH 5000 CONFIG_UEC_ETH
5002 CONFIG_UEC_ETH1 5001 CONFIG_UEC_ETH1
5003 CONFIG_UEC_ETH2 5002 CONFIG_UEC_ETH2
5004 CONFIG_UEC_ETH3 5003 CONFIG_UEC_ETH3
5005 CONFIG_UEC_ETH4 5004 CONFIG_UEC_ETH4
5006 CONFIG_UEC_ETH5 5005 CONFIG_UEC_ETH5
5007 CONFIG_UEC_ETH6 5006 CONFIG_UEC_ETH6
5008 CONFIG_UEC_ETH7 5007 CONFIG_UEC_ETH7
5009 CONFIG_UEC_ETH8 5008 CONFIG_UEC_ETH8
5010 CONFIG_UID16 5009 CONFIG_UID16
5011 CONFIG_ULI526X 5010 CONFIG_ULI526X
5012 CONFIG_ULPI_REF_CLK 5011 CONFIG_ULPI_REF_CLK
5013 CONFIG_UMSDEVS 5012 CONFIG_UMSDEVS
5014 CONFIG_UNIPHIER_ETH 5013 CONFIG_UNIPHIER_ETH
5015 CONFIG_UPDATEB 5014 CONFIG_UPDATEB
5016 CONFIG_UPDATE_LOAD_ADDR 5015 CONFIG_UPDATE_LOAD_ADDR
5017 CONFIG_UPDATE_TFTP 5016 CONFIG_UPDATE_TFTP
5018 CONFIG_UPDATE_TFTP_CNT_MAX 5017 CONFIG_UPDATE_TFTP_CNT_MAX
5019 CONFIG_UPDATE_TFTP_MSEC_MAX 5018 CONFIG_UPDATE_TFTP_MSEC_MAX
5020 CONFIG_USART1 5019 CONFIG_USART1
5021 CONFIG_USART3 5020 CONFIG_USART3
5022 CONFIG_USART_BASE 5021 CONFIG_USART_BASE
5023 CONFIG_USART_ID 5022 CONFIG_USART_ID
5024 CONFIG_USBBOOTCOMMAND 5023 CONFIG_USBBOOTCOMMAND
5025 CONFIG_USBDEBUG 5024 CONFIG_USBDEBUG
5026 CONFIG_USBD_CONFIGURATION_STR 5025 CONFIG_USBD_CONFIGURATION_STR
5027 CONFIG_USBD_CTRL_INTERFACE_STR 5026 CONFIG_USBD_CTRL_INTERFACE_STR
5028 CONFIG_USBD_DATA_INTERFACE_STR 5027 CONFIG_USBD_DATA_INTERFACE_STR
5029 CONFIG_USBD_HS 5028 CONFIG_USBD_HS
5030 CONFIG_USBD_MANUFACTURER 5029 CONFIG_USBD_MANUFACTURER
5031 CONFIG_USBD_PRODUCTID 5030 CONFIG_USBD_PRODUCTID
5032 CONFIG_USBD_PRODUCTID_CDCACM 5031 CONFIG_USBD_PRODUCTID_CDCACM
5033 CONFIG_USBD_PRODUCTID_GSERIAL 5032 CONFIG_USBD_PRODUCTID_GSERIAL
5034 CONFIG_USBD_PRODUCT_NAME 5033 CONFIG_USBD_PRODUCT_NAME
5035 CONFIG_USBD_SERIAL_BULK_HS_PKTSIZE 5034 CONFIG_USBD_SERIAL_BULK_HS_PKTSIZE
5036 CONFIG_USBD_SERIAL_BULK_PKTSIZE 5035 CONFIG_USBD_SERIAL_BULK_PKTSIZE
5037 CONFIG_USBD_SERIAL_INT_ENDPOINT 5036 CONFIG_USBD_SERIAL_INT_ENDPOINT
5038 CONFIG_USBD_SERIAL_INT_PKTSIZE 5037 CONFIG_USBD_SERIAL_INT_PKTSIZE
5039 CONFIG_USBD_SERIAL_IN_ENDPOINT 5038 CONFIG_USBD_SERIAL_IN_ENDPOINT
5040 CONFIG_USBD_SERIAL_IN_PKTSIZE 5039 CONFIG_USBD_SERIAL_IN_PKTSIZE
5041 CONFIG_USBD_SERIAL_OUT_ENDPOINT 5040 CONFIG_USBD_SERIAL_OUT_ENDPOINT
5042 CONFIG_USBD_SERIAL_OUT_PKTSIZE 5041 CONFIG_USBD_SERIAL_OUT_PKTSIZE
5043 CONFIG_USBD_VENDORID 5042 CONFIG_USBD_VENDORID
5044 CONFIG_USBID_ADDR 5043 CONFIG_USBID_ADDR
5045 CONFIG_USBNET_DEV_ADDR 5044 CONFIG_USBNET_DEV_ADDR
5046 CONFIG_USBNET_HOST_ADDR 5045 CONFIG_USBNET_HOST_ADDR
5047 CONFIG_USBNET_MANUFACTURER 5046 CONFIG_USBNET_MANUFACTURER
5048 CONFIG_USBTTY 5047 CONFIG_USBTTY
5049 CONFIG_USB_AM35X 5048 CONFIG_USB_AM35X
5050 CONFIG_USB_ATMEL 5049 CONFIG_USB_ATMEL
5051 CONFIG_USB_ATMEL_CLK_SEL_PLLB 5050 CONFIG_USB_ATMEL_CLK_SEL_PLLB
5052 CONFIG_USB_ATMEL_CLK_SEL_UPLL 5051 CONFIG_USB_ATMEL_CLK_SEL_UPLL
5053 CONFIG_USB_BIN_FIXUP 5052 CONFIG_USB_BIN_FIXUP
5054 CONFIG_USB_BOOTING 5053 CONFIG_USB_BOOTING
5055 CONFIG_USB_CABLE_CHECK 5054 CONFIG_USB_CABLE_CHECK
5056 CONFIG_USB_DEVICE 5055 CONFIG_USB_DEVICE
5057 CONFIG_USB_DEV_BASE 5056 CONFIG_USB_DEV_BASE
5058 CONFIG_USB_DEV_PULLUP_GPIO 5057 CONFIG_USB_DEV_PULLUP_GPIO
5059 CONFIG_USB_DWC2_REG_ADDR 5058 CONFIG_USB_DWC2_REG_ADDR
5060 CONFIG_USB_EHCI_ARMADA100 5059 CONFIG_USB_EHCI_ARMADA100
5061 CONFIG_USB_EHCI_BASE 5060 CONFIG_USB_EHCI_BASE
5062 CONFIG_USB_EHCI_BASE_LIST 5061 CONFIG_USB_EHCI_BASE_LIST
5063 CONFIG_USB_EHCI_EXYNOS 5062 CONFIG_USB_EHCI_EXYNOS
5064 CONFIG_USB_EHCI_FARADAY 5063 CONFIG_USB_EHCI_FARADAY
5065 CONFIG_USB_EHCI_FSL 5064 CONFIG_USB_EHCI_FSL
5066 CONFIG_USB_EHCI_KIRKWOOD 5065 CONFIG_USB_EHCI_KIRKWOOD
5067 CONFIG_USB_EHCI_MX5 5066 CONFIG_USB_EHCI_MX5
5068 CONFIG_USB_EHCI_MXC 5067 CONFIG_USB_EHCI_MXC
5069 CONFIG_USB_EHCI_MXS 5068 CONFIG_USB_EHCI_MXS
5070 CONFIG_USB_EHCI_PCI 5069 CONFIG_USB_EHCI_PCI
5071 CONFIG_USB_EHCI_RMOBILE 5070 CONFIG_USB_EHCI_RMOBILE
5072 CONFIG_USB_EHCI_SPEAR 5071 CONFIG_USB_EHCI_SPEAR
5073 CONFIG_USB_EHCI_SUNXI 5072 CONFIG_USB_EHCI_SUNXI
5074 CONFIG_USB_EHCI_TEGRA 5073 CONFIG_USB_EHCI_TEGRA
5075 CONFIG_USB_EHCI_TXFIFO_THRESH 5074 CONFIG_USB_EHCI_TXFIFO_THRESH
5076 CONFIG_USB_EHCI_VCT 5075 CONFIG_USB_EHCI_VCT
5077 CONFIG_USB_EHCI_VF 5076 CONFIG_USB_EHCI_VF
5078 CONFIG_USB_ETHER 5077 CONFIG_USB_ETHER
5079 CONFIG_USB_ETHER_ASIX 5078 CONFIG_USB_ETHER_ASIX
5080 CONFIG_USB_ETHER_ASIX88179 5079 CONFIG_USB_ETHER_ASIX88179
5081 CONFIG_USB_ETHER_DM9601 5080 CONFIG_USB_ETHER_DM9601
5082 CONFIG_USB_ETHER_MCS7830 5081 CONFIG_USB_ETHER_MCS7830
5083 CONFIG_USB_ETHER_RNDIS 5082 CONFIG_USB_ETHER_RNDIS
5084 CONFIG_USB_ETHER_RTL8152 5083 CONFIG_USB_ETHER_RTL8152
5085 CONFIG_USB_ETHER_SMSC95XX 5084 CONFIG_USB_ETHER_SMSC95XX
5086 CONFIG_USB_ETHER_xxx 5085 CONFIG_USB_ETHER_xxx
5087 CONFIG_USB_ETH_CDC 5086 CONFIG_USB_ETH_CDC
5088 CONFIG_USB_ETH_QMULT 5087 CONFIG_USB_ETH_QMULT
5089 CONFIG_USB_ETH_RNDIS 5088 CONFIG_USB_ETH_RNDIS
5090 CONFIG_USB_ETH_SUBSET 5089 CONFIG_USB_ETH_SUBSET
5091 CONFIG_USB_EXT2_BOOT 5090 CONFIG_USB_EXT2_BOOT
5092 CONFIG_USB_FAT_BOOT 5091 CONFIG_USB_FAT_BOOT
5093 CONFIG_USB_FREQ 5092 CONFIG_USB_FREQ
5094 CONFIG_USB_FUNCTION_MASS_STORAGE 5093 CONFIG_USB_FUNCTION_MASS_STORAGE
5095 CONFIG_USB_FUNCTION_THOR 5094 CONFIG_USB_FUNCTION_THOR
5096 CONFIG_USB_GADGET_AMD5536UDC 5095 CONFIG_USB_GADGET_AMD5536UDC
5097 CONFIG_USB_GADGET_AT91 5096 CONFIG_USB_GADGET_AT91
5098 CONFIG_USB_GADGET_AU1X00 5097 CONFIG_USB_GADGET_AU1X00
5099 CONFIG_USB_GADGET_DUMMY_HCD 5098 CONFIG_USB_GADGET_DUMMY_HCD
5100 CONFIG_USB_GADGET_DWC2_OTG_PHY 5099 CONFIG_USB_GADGET_DWC2_OTG_PHY
5101 CONFIG_USB_GADGET_FOTG210 5100 CONFIG_USB_GADGET_FOTG210
5102 CONFIG_USB_GADGET_FSL_USB2 5101 CONFIG_USB_GADGET_FSL_USB2
5103 CONFIG_USB_GADGET_GOKU 5102 CONFIG_USB_GADGET_GOKU
5104 CONFIG_USB_GADGET_IMX 5103 CONFIG_USB_GADGET_IMX
5105 CONFIG_USB_GADGET_M66592 5104 CONFIG_USB_GADGET_M66592
5106 CONFIG_USB_GADGET_MASS_STORAGE 5105 CONFIG_USB_GADGET_MASS_STORAGE
5107 CONFIG_USB_GADGET_MQ11XX 5106 CONFIG_USB_GADGET_MQ11XX
5108 CONFIG_USB_GADGET_MUSBHSFC 5107 CONFIG_USB_GADGET_MUSBHSFC
5109 CONFIG_USB_GADGET_N9604 5108 CONFIG_USB_GADGET_N9604
5110 CONFIG_USB_GADGET_NET2280 5109 CONFIG_USB_GADGET_NET2280
5111 CONFIG_USB_GADGET_OMAP 5110 CONFIG_USB_GADGET_OMAP
5112 CONFIG_USB_GADGET_PXA27X 5111 CONFIG_USB_GADGET_PXA27X
5113 CONFIG_USB_GADGET_PXA2XX 5112 CONFIG_USB_GADGET_PXA2XX
5114 CONFIG_USB_GADGET_SA1100 5113 CONFIG_USB_GADGET_SA1100
5115 CONFIG_USB_GADGET_SUPERH 5114 CONFIG_USB_GADGET_SUPERH
5116 CONFIG_USB_GADGET_SX2 5115 CONFIG_USB_GADGET_SX2
5117 CONFIG_USB_HOST_ETHER 5116 CONFIG_USB_HOST_ETHER
5118 CONFIG_USB_HOST_XHCI_BASE 5117 CONFIG_USB_HOST_XHCI_BASE
5119 CONFIG_USB_INVENTRA_DMA 5118 CONFIG_USB_INVENTRA_DMA
5120 CONFIG_USB_ISP1301_I2C_ADDR 5119 CONFIG_USB_ISP1301_I2C_ADDR
5121 CONFIG_USB_MAX_CONTROLLER_COUNT 5120 CONFIG_USB_MAX_CONTROLLER_COUNT
5122 CONFIG_USB_MUSB_AM35X 5121 CONFIG_USB_MUSB_AM35X
5123 CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT 5122 CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
5124 CONFIG_USB_MUSB_DSPS 5123 CONFIG_USB_MUSB_DSPS
5125 CONFIG_USB_MUSB_HCD 5124 CONFIG_USB_MUSB_HCD
5126 CONFIG_USB_MUSB_OMAP2PLUS 5125 CONFIG_USB_MUSB_OMAP2PLUS
5127 CONFIG_USB_MUSB_PIO_ONLY 5126 CONFIG_USB_MUSB_PIO_ONLY
5128 CONFIG_USB_MUSB_TIMEOUT 5127 CONFIG_USB_MUSB_TIMEOUT
5129 CONFIG_USB_MUSB_TUSB6010 5128 CONFIG_USB_MUSB_TUSB6010
5130 CONFIG_USB_MUSB_UDC 5129 CONFIG_USB_MUSB_UDC
5131 CONFIG_USB_MUSB_UDD 5130 CONFIG_USB_MUSB_UDD
5132 CONFIG_USB_OHCI 5131 CONFIG_USB_OHCI
5133 CONFIG_USB_OHCI_EP93XX 5132 CONFIG_USB_OHCI_EP93XX
5134 CONFIG_USB_OHCI_LPC32XX 5133 CONFIG_USB_OHCI_LPC32XX
5135 CONFIG_USB_OHCI_NEW 5134 CONFIG_USB_OHCI_NEW
5136 CONFIG_USB_OHCI_SUNXI 5135 CONFIG_USB_OHCI_SUNXI
5137 CONFIG_USB_OMAP3 5136 CONFIG_USB_OMAP3
5138 CONFIG_USB_OTG 5137 CONFIG_USB_OTG
5139 CONFIG_USB_OTG_BLACKLIST_HUB 5138 CONFIG_USB_OTG_BLACKLIST_HUB
5140 CONFIG_USB_PHY_CFG_BASE 5139 CONFIG_USB_PHY_CFG_BASE
5141 CONFIG_USB_PHY_TYPE 5140 CONFIG_USB_PHY_TYPE
5142 CONFIG_USB_PXA25X_SMALL 5141 CONFIG_USB_PXA25X_SMALL
5143 CONFIG_USB_R8A66597_HCD 5142 CONFIG_USB_R8A66597_HCD
5144 CONFIG_USB_SERIALNO 5143 CONFIG_USB_SERIALNO
5145 CONFIG_USB_SS_BASE 5144 CONFIG_USB_SS_BASE
5146 CONFIG_USB_TI_CPPI_DMA 5145 CONFIG_USB_TI_CPPI_DMA
5147 CONFIG_USB_TTY 5146 CONFIG_USB_TTY
5148 CONFIG_USB_TUSB_OMAP_DMA 5147 CONFIG_USB_TUSB_OMAP_DMA
5149 CONFIG_USB_ULPI_TIMEOUT 5148 CONFIG_USB_ULPI_TIMEOUT
5150 CONFIG_USB_XHCI_EXYNOS 5149 CONFIG_USB_XHCI_EXYNOS
5151 CONFIG_USB_XHCI_FSL 5150 CONFIG_USB_XHCI_FSL
5152 CONFIG_USB_XHCI_KEYSTONE 5151 CONFIG_USB_XHCI_KEYSTONE
5153 CONFIG_USB_XHCI_OMAP 5152 CONFIG_USB_XHCI_OMAP
5154 CONFIG_USER_LOWLEVEL_INIT 5153 CONFIG_USER_LOWLEVEL_INIT
5155 CONFIG_USE_FDT 5154 CONFIG_USE_FDT
5156 CONFIG_USE_INTERRUPT 5155 CONFIG_USE_INTERRUPT
5157 CONFIG_USE_NAND 5156 CONFIG_USE_NAND
5158 CONFIG_USE_NOR 5157 CONFIG_USE_NOR
5159 CONFIG_USE_ONENAND_BOARD_INIT 5158 CONFIG_USE_ONENAND_BOARD_INIT
5160 CONFIG_USE_SPIFLASH 5159 CONFIG_USE_SPIFLASH
5161 CONFIG_USE_STDINT 5160 CONFIG_USE_STDINT
5162 CONFIG_UTBIPAR_INIT_TBIPA 5161 CONFIG_UTBIPAR_INIT_TBIPA
5163 CONFIG_U_BOOT_HDR_ADDR 5162 CONFIG_U_BOOT_HDR_ADDR
5164 CONFIG_U_BOOT_HDR_SIZE 5163 CONFIG_U_BOOT_HDR_SIZE
5165 CONFIG_U_QE 5164 CONFIG_U_QE
5166 CONFIG_VAL 5165 CONFIG_VAL
5167 CONFIG_VAR_SIZE_SPL 5166 CONFIG_VAR_SIZE_SPL
5168 CONFIG_VCT_NOR 5167 CONFIG_VCT_NOR
5169 CONFIG_VE8313 5168 CONFIG_VE8313
5170 CONFIG_VERY_BIG_RAM 5169 CONFIG_VERY_BIG_RAM
5171 CONFIG_VEXPRESS_EXTENDED_MEMORY_MAP 5170 CONFIG_VEXPRESS_EXTENDED_MEMORY_MAP
5172 CONFIG_VEXPRESS_ORIGINAL_MEMORY_MAP 5171 CONFIG_VEXPRESS_ORIGINAL_MEMORY_MAP
5173 CONFIG_VID 5172 CONFIG_VID
5174 CONFIG_VIDEO_BCM2835 5173 CONFIG_VIDEO_BCM2835
5175 CONFIG_VIDEO_BMP_GZIP 5174 CONFIG_VIDEO_BMP_GZIP
5176 CONFIG_VIDEO_BMP_LOGO 5175 CONFIG_VIDEO_BMP_LOGO
5177 CONFIG_VIDEO_BMP_RLE8 5176 CONFIG_VIDEO_BMP_RLE8
5178 CONFIG_VIDEO_CORALP 5177 CONFIG_VIDEO_CORALP
5179 CONFIG_VIDEO_DA8XX 5178 CONFIG_VIDEO_DA8XX
5180 CONFIG_VIDEO_DT_SIMPLEFB 5179 CONFIG_VIDEO_DT_SIMPLEFB
5181 CONFIG_VIDEO_FONT_4X6 5180 CONFIG_VIDEO_FONT_4X6
5182 CONFIG_VIDEO_LCD_I2C_BUS 5181 CONFIG_VIDEO_LCD_I2C_BUS
5183 CONFIG_VIDEO_LOGO 5182 CONFIG_VIDEO_LOGO
5184 CONFIG_VIDEO_MB862xx 5183 CONFIG_VIDEO_MB862xx
5185 CONFIG_VIDEO_MB862xx_ACCEL 5184 CONFIG_VIDEO_MB862xx_ACCEL
5186 CONFIG_VIDEO_MX3 5185 CONFIG_VIDEO_MX3
5187 CONFIG_VIDEO_MXS 5186 CONFIG_VIDEO_MXS
5188 CONFIG_VIDEO_MXS_MODE_SYSTEM 5187 CONFIG_VIDEO_MXS_MODE_SYSTEM
5189 CONFIG_VIDEO_OMAP3 5188 CONFIG_VIDEO_OMAP3
5190 CONFIG_VIDEO_ONBOARD 5189 CONFIG_VIDEO_ONBOARD
5191 CONFIG_VIDEO_STD_TIMINGS 5190 CONFIG_VIDEO_STD_TIMINGS
5192 CONFIG_VIDEO_SUNXI 5191 CONFIG_VIDEO_SUNXI
5193 CONFIG_VIDEO_VCXK 5192 CONFIG_VIDEO_VCXK
5194 CONFIG_VID_FLS_ENV 5193 CONFIG_VID_FLS_ENV
5195 CONFIG_VM86 5194 CONFIG_VM86
5196 CONFIG_VME8349 5195 CONFIG_VME8349
5197 CONFIG_VOIPAC_LCD 5196 CONFIG_VOIPAC_LCD
5198 CONFIG_VOL_MONITOR_INA220 5197 CONFIG_VOL_MONITOR_INA220
5199 CONFIG_VOL_MONITOR_IR36021_READ 5198 CONFIG_VOL_MONITOR_IR36021_READ
5200 CONFIG_VOL_MONITOR_IR36021_SET 5199 CONFIG_VOL_MONITOR_IR36021_SET
5201 CONFIG_VSC7385_ENET 5200 CONFIG_VSC7385_ENET
5202 CONFIG_VSC7385_IMAGE 5201 CONFIG_VSC7385_IMAGE
5203 CONFIG_VSC7385_IMAGE_SIZE 5202 CONFIG_VSC7385_IMAGE_SIZE
5204 CONFIG_VSC9953 5203 CONFIG_VSC9953
5205 CONFIG_VSC_CROSSBAR 5204 CONFIG_VSC_CROSSBAR
5206 CONFIG_WATCHDOG 5205 CONFIG_WATCHDOG
5207 CONFIG_WATCHDOG_BASEADDR 5206 CONFIG_WATCHDOG_BASEADDR
5208 CONFIG_WATCHDOG_IRQ 5207 CONFIG_WATCHDOG_IRQ
5209 CONFIG_WATCHDOG_NOWAYOUT 5208 CONFIG_WATCHDOG_NOWAYOUT
5210 CONFIG_WATCHDOG_PRESC 5209 CONFIG_WATCHDOG_PRESC
5211 CONFIG_WATCHDOG_RC 5210 CONFIG_WATCHDOG_RC
5212 CONFIG_WATCHDOG_TIMEOUT 5211 CONFIG_WATCHDOG_TIMEOUT
5213 CONFIG_WATCHDOG_TIMEOUT_MSECS 5212 CONFIG_WATCHDOG_TIMEOUT_MSECS
5214 CONFIG_WD_PERIOD 5213 CONFIG_WD_PERIOD
5215 CONFIG_X600 5214 CONFIG_X600
5216 CONFIG_X86EMU_DEBUG 5215 CONFIG_X86EMU_DEBUG
5217 CONFIG_X86EMU_RAW_IO 5216 CONFIG_X86EMU_RAW_IO
5218 CONFIG_X86_MRC_ADDR 5217 CONFIG_X86_MRC_ADDR
5219 CONFIG_X86_REFCODE_ADDR 5218 CONFIG_X86_REFCODE_ADDR
5220 CONFIG_X86_REFCODE_RUN_ADDR 5219 CONFIG_X86_REFCODE_RUN_ADDR
5221 CONFIG_XGI_XG22_BASE 5220 CONFIG_XGI_XG22_BASE
5222 CONFIG_XILINX_GPIO 5221 CONFIG_XILINX_GPIO
5223 CONFIG_XILINX_LL_TEMAC_CLK 5222 CONFIG_XILINX_LL_TEMAC_CLK
5224 CONFIG_XILINX_SPI_IDLE_VAL 5223 CONFIG_XILINX_SPI_IDLE_VAL
5225 CONFIG_XILINX_TB_WATCHDOG 5224 CONFIG_XILINX_TB_WATCHDOG
5226 CONFIG_XPEDITE5140 5225 CONFIG_XPEDITE5140
5227 CONFIG_XPEDITE5200 5226 CONFIG_XPEDITE5200
5228 CONFIG_XPEDITE550X 5227 CONFIG_XPEDITE550X
5229 CONFIG_XR16L2751 5228 CONFIG_XR16L2751
5230 CONFIG_XSENGINE 5229 CONFIG_XSENGINE
5231 CONFIG_XTFPGA 5230 CONFIG_XTFPGA
5232 CONFIG_YAFFSFS_PROVIDE_VALUES 5231 CONFIG_YAFFSFS_PROVIDE_VALUES
5233 CONFIG_YAFFS_AUTO_UNICODE 5232 CONFIG_YAFFS_AUTO_UNICODE
5234 CONFIG_YAFFS_CASE_INSENSITIVE 5233 CONFIG_YAFFS_CASE_INSENSITIVE
5235 CONFIG_YAFFS_DEFINES_TYPES 5234 CONFIG_YAFFS_DEFINES_TYPES
5236 CONFIG_YAFFS_DIRECT 5235 CONFIG_YAFFS_DIRECT
5237 CONFIG_YAFFS_PROVIDE_DEFS 5236 CONFIG_YAFFS_PROVIDE_DEFS
5238 CONFIG_YAFFS_UNICODE 5237 CONFIG_YAFFS_UNICODE
5239 CONFIG_YAFFS_UTIL 5238 CONFIG_YAFFS_UTIL
5240 CONFIG_YAFFS_WINCE 5239 CONFIG_YAFFS_WINCE
5241 CONFIG_YELLOW_LED 5240 CONFIG_YELLOW_LED
5242 CONFIG_ZC770_XM010 5241 CONFIG_ZC770_XM010
5243 CONFIG_ZC770_XM011 5242 CONFIG_ZC770_XM011
5244 CONFIG_ZC770_XM012 5243 CONFIG_ZC770_XM012
5245 CONFIG_ZC770_XM013 5244 CONFIG_ZC770_XM013
5246 CONFIG_ZLIB 5245 CONFIG_ZLIB
5247 CONFIG_ZLT 5246 CONFIG_ZLT
5248 CONFIG_ZM7300 5247 CONFIG_ZM7300
5249 CONFIG_ZYNQMP_EEPROM 5248 CONFIG_ZYNQMP_EEPROM
5250 CONFIG_ZYNQMP_XHCI_LIST 5249 CONFIG_ZYNQMP_XHCI_LIST
5251 CONFIG_ZYNQ_EEPROM 5250 CONFIG_ZYNQ_EEPROM
5252 CONFIG_ZYNQ_EEPROM_BUS 5251 CONFIG_ZYNQ_EEPROM_BUS
5253 CONFIG_ZYNQ_GEM_EEPROM_ADDR 5252 CONFIG_ZYNQ_GEM_EEPROM_ADDR
5254 CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET 5253 CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET
5255 CONFIG_ZYNQ_HISPD_BROKEN 5254 CONFIG_ZYNQ_HISPD_BROKEN
5256 CONFIG_ZYNQ_I2C0 5255 CONFIG_ZYNQ_I2C0
5257 CONFIG_ZYNQ_I2C1 5256 CONFIG_ZYNQ_I2C1
5258 CONFIG_ZYNQ_SDHCI0 5257 CONFIG_ZYNQ_SDHCI0
5259 CONFIG_ZYNQ_SDHCI1 5258 CONFIG_ZYNQ_SDHCI1
5260 CONFIG_ZYNQ_SDHCI_MAX_FREQ 5259 CONFIG_ZYNQ_SDHCI_MAX_FREQ
5261 CONFIG_ZYNQ_SDHCI_MIN_FREQ 5260 CONFIG_ZYNQ_SDHCI_MIN_FREQ
5262 CONFIG_ZYNQ_SERIAL 5261 CONFIG_ZYNQ_SERIAL
5263 CONFIG_eTSEC_MDIO_BUS 5262 CONFIG_eTSEC_MDIO_BUS
5264 5263