Commit b87ca80b9b1825b44341aa4bcd28c26a7860fd18

Authored by Simon Glass
Committed by Tom Rini
1 parent 5ecf8c6618

Convert CONFIG_CONSOLE_SCROLL_LINES to Kconfig

This converts the following to Kconfig:
   CONFIG_CONSOLE_SCROLL_LINES

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>

Showing 47 changed files with 37 additions and 30 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 candiate 1 for September 2010 release 130 U-Boot v2010.09-rc1 - Release candiate 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 /avr32 Files generic to AVR32 architecture 139 /avr32 Files generic to AVR32 architecture
140 /blackfin Files generic to Analog Devices Blackfin architecture 140 /blackfin Files generic to Analog Devices Blackfin architecture
141 /m68k Files generic to m68k architecture 141 /m68k Files generic to m68k architecture
142 /microblaze Files generic to microblaze architecture 142 /microblaze Files generic to microblaze architecture
143 /mips Files generic to MIPS architecture 143 /mips Files generic to MIPS architecture
144 /nds32 Files generic to NDS32 architecture 144 /nds32 Files generic to NDS32 architecture
145 /nios2 Files generic to Altera NIOS2 architecture 145 /nios2 Files generic to Altera NIOS2 architecture
146 /openrisc Files generic to OpenRISC architecture 146 /openrisc Files generic to OpenRISC architecture
147 /powerpc Files generic to PowerPC architecture 147 /powerpc Files generic to PowerPC architecture
148 /sandbox Files generic to HW-independent "sandbox" 148 /sandbox Files generic to HW-independent "sandbox"
149 /sh Files generic to SH architecture 149 /sh Files generic to SH architecture
150 /sparc Files generic to SPARC architecture 150 /sparc Files generic to SPARC architecture
151 /x86 Files generic to x86 architecture 151 /x86 Files generic to x86 architecture
152 /api Machine/arch independent API for external apps 152 /api Machine/arch independent API for external apps
153 /board Board dependent files 153 /board Board dependent files
154 /cmd U-Boot commands functions 154 /cmd U-Boot commands functions
155 /common Misc architecture independent functions 155 /common Misc architecture independent functions
156 /configs Board default configuration files 156 /configs Board default configuration files
157 /disk Code for disk drive partition handling 157 /disk Code for disk drive partition handling
158 /doc Documentation (don't expect too much) 158 /doc Documentation (don't expect too much)
159 /drivers Commonly used device drivers 159 /drivers Commonly used device drivers
160 /dts Contains Makefile for building internal U-Boot fdt. 160 /dts Contains Makefile for building internal U-Boot fdt.
161 /examples Example code for standalone applications, etc. 161 /examples Example code for standalone applications, etc.
162 /fs Filesystem code (cramfs, ext2, jffs2, etc.) 162 /fs Filesystem code (cramfs, ext2, jffs2, etc.)
163 /include Header Files 163 /include Header Files
164 /lib Library routines generic to all architectures 164 /lib Library routines generic to all architectures
165 /Licenses Various license files 165 /Licenses Various license files
166 /net Networking code 166 /net Networking code
167 /post Power On Self Test 167 /post Power On Self Test
168 /scripts Various build scripts and Makefiles 168 /scripts Various build scripts and Makefiles
169 /test Various unit test files 169 /test Various unit test files
170 /tools Tools to build S-Record or U-Boot images, etc. 170 /tools Tools to build S-Record or U-Boot images, etc.
171 171
172 Software Configuration: 172 Software Configuration:
173 ======================= 173 =======================
174 174
175 Configuration is usually done using C preprocessor defines; the 175 Configuration is usually done using C preprocessor defines; the
176 rationale behind that is to avoid dead code whenever possible. 176 rationale behind that is to avoid dead code whenever possible.
177 177
178 There are two classes of configuration variables: 178 There are two classes of configuration variables:
179 179
180 * Configuration _OPTIONS_: 180 * Configuration _OPTIONS_:
181 These are selectable by the user and have names beginning with 181 These are selectable by the user and have names beginning with
182 "CONFIG_". 182 "CONFIG_".
183 183
184 * Configuration _SETTINGS_: 184 * Configuration _SETTINGS_:
185 These depend on the hardware etc. and should not be meddled with if 185 These depend on the hardware etc. and should not be meddled with if
186 you don't know what you're doing; they have names beginning with 186 you don't know what you're doing; they have names beginning with
187 "CONFIG_SYS_". 187 "CONFIG_SYS_".
188 188
189 Previously, all configuration was done by hand, which involved creating 189 Previously, all configuration was done by hand, which involved creating
190 symbolic links and editing configuration files manually. More recently, 190 symbolic links and editing configuration files manually. More recently,
191 U-Boot has added the Kbuild infrastructure used by the Linux kernel, 191 U-Boot has added the Kbuild infrastructure used by the Linux kernel,
192 allowing you to use the "make menuconfig" command to configure your 192 allowing you to use the "make menuconfig" command to configure your
193 build. 193 build.
194 194
195 195
196 Selection of Processor Architecture and Board Type: 196 Selection of Processor Architecture and Board Type:
197 --------------------------------------------------- 197 ---------------------------------------------------
198 198
199 For all supported boards there are ready-to-use default 199 For all supported boards there are ready-to-use default
200 configurations available; just type "make <board_name>_defconfig". 200 configurations available; just type "make <board_name>_defconfig".
201 201
202 Example: For a TQM823L module type: 202 Example: For a TQM823L module type:
203 203
204 cd u-boot 204 cd u-boot
205 make TQM823L_defconfig 205 make TQM823L_defconfig
206 206
207 Note: If you're looking for the default configuration file for a board 207 Note: If you're looking for the default configuration file for a board
208 you're sure used to be there but is now missing, check the file 208 you're sure used to be there but is now missing, check the file
209 doc/README.scrapyard for a list of no longer supported boards. 209 doc/README.scrapyard for a list of no longer supported boards.
210 210
211 Sandbox Environment: 211 Sandbox Environment:
212 -------------------- 212 --------------------
213 213
214 U-Boot can be built natively to run on a Linux host using the 'sandbox' 214 U-Boot can be built natively to run on a Linux host using the 'sandbox'
215 board. This allows feature development which is not board- or architecture- 215 board. This allows feature development which is not board- or architecture-
216 specific to be undertaken on a native platform. The sandbox is also used to 216 specific to be undertaken on a native platform. The sandbox is also used to
217 run some of U-Boot's tests. 217 run some of U-Boot's tests.
218 218
219 See board/sandbox/README.sandbox for more details. 219 See board/sandbox/README.sandbox for more details.
220 220
221 221
222 Board Initialisation Flow: 222 Board Initialisation Flow:
223 -------------------------- 223 --------------------------
224 224
225 This is the intended start-up flow for boards. This should apply for both 225 This is the intended start-up flow for boards. This should apply for both
226 SPL and U-Boot proper (i.e. they both follow the same rules). 226 SPL and U-Boot proper (i.e. they both follow the same rules).
227 227
228 Note: "SPL" stands for "Secondary Program Loader," which is explained in 228 Note: "SPL" stands for "Secondary Program Loader," which is explained in
229 more detail later in this file. 229 more detail later in this file.
230 230
231 At present, SPL mostly uses a separate code path, but the function names 231 At present, SPL mostly uses a separate code path, but the function names
232 and roles of each function are the same. Some boards or architectures 232 and roles of each function are the same. Some boards or architectures
233 may not conform to this. At least most ARM boards which use 233 may not conform to this. At least most ARM boards which use
234 CONFIG_SPL_FRAMEWORK conform to this. 234 CONFIG_SPL_FRAMEWORK conform to this.
235 235
236 Execution typically starts with an architecture-specific (and possibly 236 Execution typically starts with an architecture-specific (and possibly
237 CPU-specific) start.S file, such as: 237 CPU-specific) start.S file, such as:
238 238
239 - arch/arm/cpu/armv7/start.S 239 - arch/arm/cpu/armv7/start.S
240 - arch/powerpc/cpu/mpc83xx/start.S 240 - arch/powerpc/cpu/mpc83xx/start.S
241 - arch/mips/cpu/start.S 241 - arch/mips/cpu/start.S
242 242
243 and so on. From there, three functions are called; the purpose and 243 and so on. From there, three functions are called; the purpose and
244 limitations of each of these functions are described below. 244 limitations of each of these functions are described below.
245 245
246 lowlevel_init(): 246 lowlevel_init():
247 - purpose: essential init to permit execution to reach board_init_f() 247 - purpose: essential init to permit execution to reach board_init_f()
248 - no global_data or BSS 248 - no global_data or BSS
249 - there is no stack (ARMv7 may have one but it will soon be removed) 249 - there is no stack (ARMv7 may have one but it will soon be removed)
250 - must not set up SDRAM or use console 250 - must not set up SDRAM or use console
251 - must only do the bare minimum to allow execution to continue to 251 - must only do the bare minimum to allow execution to continue to
252 board_init_f() 252 board_init_f()
253 - this is almost never needed 253 - this is almost never needed
254 - return normally from this function 254 - return normally from this function
255 255
256 board_init_f(): 256 board_init_f():
257 - purpose: set up the machine ready for running board_init_r(): 257 - purpose: set up the machine ready for running board_init_r():
258 i.e. SDRAM and serial UART 258 i.e. SDRAM and serial UART
259 - global_data is available 259 - global_data is available
260 - stack is in SRAM 260 - stack is in SRAM
261 - BSS is not available, so you cannot use global/static variables, 261 - BSS is not available, so you cannot use global/static variables,
262 only stack variables and global_data 262 only stack variables and global_data
263 263
264 Non-SPL-specific notes: 264 Non-SPL-specific notes:
265 - dram_init() is called to set up DRAM. If already done in SPL this 265 - dram_init() is called to set up DRAM. If already done in SPL this
266 can do nothing 266 can do nothing
267 267
268 SPL-specific notes: 268 SPL-specific notes:
269 - you can override the entire board_init_f() function with your own 269 - you can override the entire board_init_f() function with your own
270 version as needed. 270 version as needed.
271 - preloader_console_init() can be called here in extremis 271 - preloader_console_init() can be called here in extremis
272 - should set up SDRAM, and anything needed to make the UART work 272 - should set up SDRAM, and anything needed to make the UART work
273 - these is no need to clear BSS, it will be done by crt0.S 273 - these is no need to clear BSS, it will be done by crt0.S
274 - must return normally from this function (don't call board_init_r() 274 - must return normally from this function (don't call board_init_r()
275 directly) 275 directly)
276 276
277 Here the BSS is cleared. For SPL, if CONFIG_SPL_STACK_R is defined, then at 277 Here the BSS is cleared. For SPL, if CONFIG_SPL_STACK_R is defined, then at
278 this point the stack and global_data are relocated to below 278 this point the stack and global_data are relocated to below
279 CONFIG_SPL_STACK_R_ADDR. For non-SPL, U-Boot is relocated to run at the top of 279 CONFIG_SPL_STACK_R_ADDR. For non-SPL, U-Boot is relocated to run at the top of
280 memory. 280 memory.
281 281
282 board_init_r(): 282 board_init_r():
283 - purpose: main execution, common code 283 - purpose: main execution, common code
284 - global_data is available 284 - global_data is available
285 - SDRAM is available 285 - SDRAM is available
286 - BSS is available, all static/global variables can be used 286 - BSS is available, all static/global variables can be used
287 - execution eventually continues to main_loop() 287 - execution eventually continues to main_loop()
288 288
289 Non-SPL-specific notes: 289 Non-SPL-specific notes:
290 - U-Boot is relocated to the top of memory and is now running from 290 - U-Boot is relocated to the top of memory and is now running from
291 there. 291 there.
292 292
293 SPL-specific notes: 293 SPL-specific notes:
294 - stack is optionally in SDRAM, if CONFIG_SPL_STACK_R is defined and 294 - stack is optionally in SDRAM, if CONFIG_SPL_STACK_R is defined and
295 CONFIG_SPL_STACK_R_ADDR points into SDRAM 295 CONFIG_SPL_STACK_R_ADDR points into SDRAM
296 - preloader_console_init() can be called here - typically this is 296 - preloader_console_init() can be called here - typically this is
297 done by defining CONFIG_SPL_BOARD_INIT and then supplying a 297 done by defining CONFIG_SPL_BOARD_INIT and then supplying a
298 spl_board_init() function containing this call 298 spl_board_init() function containing this call
299 - loads U-Boot or (in falcon mode) Linux 299 - loads U-Boot or (in falcon mode) Linux
300 300
301 301
302 302
303 Configuration Options: 303 Configuration Options:
304 ---------------------- 304 ----------------------
305 305
306 Configuration depends on the combination of board and CPU type; all 306 Configuration depends on the combination of board and CPU type; all
307 such information is kept in a configuration file 307 such information is kept in a configuration file
308 "include/configs/<board_name>.h". 308 "include/configs/<board_name>.h".
309 309
310 Example: For a TQM823L module, all configuration settings are in 310 Example: For a TQM823L module, all configuration settings are in
311 "include/configs/TQM823L.h". 311 "include/configs/TQM823L.h".
312 312
313 313
314 Many of the options are named exactly as the corresponding Linux 314 Many of the options are named exactly as the corresponding Linux
315 kernel configuration options. The intention is to make it easier to 315 kernel configuration options. The intention is to make it easier to
316 build a config tool - later. 316 build a config tool - later.
317 317
318 318
319 The following options need to be configured: 319 The following options need to be configured:
320 320
321 - CPU Type: Define exactly one, e.g. CONFIG_MPC85XX. 321 - CPU Type: Define exactly one, e.g. CONFIG_MPC85XX.
322 322
323 - Board Type: Define exactly one, e.g. CONFIG_MPC8540ADS. 323 - Board Type: Define exactly one, e.g. CONFIG_MPC8540ADS.
324 324
325 - CPU Daughterboard Type: (if CONFIG_ATSTK1000 is defined) 325 - CPU Daughterboard Type: (if CONFIG_ATSTK1000 is defined)
326 Define exactly one, e.g. CONFIG_ATSTK1002 326 Define exactly one, e.g. CONFIG_ATSTK1002
327 327
328 - Marvell Family Member 328 - Marvell Family Member
329 CONFIG_SYS_MVFS - define it if you want to enable 329 CONFIG_SYS_MVFS - define it if you want to enable
330 multiple fs option at one time 330 multiple fs option at one time
331 for marvell soc family 331 for marvell soc family
332 332
333 - 8xx CPU Options: (if using an MPC8xx CPU) 333 - 8xx CPU Options: (if using an MPC8xx CPU)
334 CONFIG_8xx_GCLK_FREQ - deprecated: CPU clock if 334 CONFIG_8xx_GCLK_FREQ - deprecated: CPU clock if
335 get_gclk_freq() cannot work 335 get_gclk_freq() cannot work
336 e.g. if there is no 32KHz 336 e.g. if there is no 32KHz
337 reference PIT/RTC clock 337 reference PIT/RTC clock
338 CONFIG_8xx_OSCLK - PLL input clock (either EXTCLK 338 CONFIG_8xx_OSCLK - PLL input clock (either EXTCLK
339 or XTAL/EXTAL) 339 or XTAL/EXTAL)
340 340
341 - 859/866/885 CPU options: (if using a MPC859 or MPC866 or MPC885 CPU): 341 - 859/866/885 CPU options: (if using a MPC859 or MPC866 or MPC885 CPU):
342 CONFIG_SYS_8xx_CPUCLK_MIN 342 CONFIG_SYS_8xx_CPUCLK_MIN
343 CONFIG_SYS_8xx_CPUCLK_MAX 343 CONFIG_SYS_8xx_CPUCLK_MAX
344 CONFIG_8xx_CPUCLK_DEFAULT 344 CONFIG_8xx_CPUCLK_DEFAULT
345 See doc/README.MPC866 345 See doc/README.MPC866
346 346
347 CONFIG_SYS_MEASURE_CPUCLK 347 CONFIG_SYS_MEASURE_CPUCLK
348 348
349 Define this to measure the actual CPU clock instead 349 Define this to measure the actual CPU clock instead
350 of relying on the correctness of the configured 350 of relying on the correctness of the configured
351 values. Mostly useful for board bringup to make sure 351 values. Mostly useful for board bringup to make sure
352 the PLL is locked at the intended frequency. Note 352 the PLL is locked at the intended frequency. Note
353 that this requires a (stable) reference clock (32 kHz 353 that this requires a (stable) reference clock (32 kHz
354 RTC clock or CONFIG_SYS_8XX_XIN) 354 RTC clock or CONFIG_SYS_8XX_XIN)
355 355
356 CONFIG_SYS_DELAYED_ICACHE 356 CONFIG_SYS_DELAYED_ICACHE
357 357
358 Define this option if you want to enable the 358 Define this option if you want to enable the
359 ICache only when Code runs from RAM. 359 ICache only when Code runs from RAM.
360 360
361 - 85xx CPU Options: 361 - 85xx CPU Options:
362 CONFIG_SYS_PPC64 362 CONFIG_SYS_PPC64
363 363
364 Specifies that the core is a 64-bit PowerPC implementation (implements 364 Specifies that the core is a 64-bit PowerPC implementation (implements
365 the "64" category of the Power ISA). This is necessary for ePAPR 365 the "64" category of the Power ISA). This is necessary for ePAPR
366 compliance, among other possible reasons. 366 compliance, among other possible reasons.
367 367
368 CONFIG_SYS_FSL_TBCLK_DIV 368 CONFIG_SYS_FSL_TBCLK_DIV
369 369
370 Defines the core time base clock divider ratio compared to the 370 Defines the core time base clock divider ratio compared to the
371 system clock. On most PQ3 devices this is 8, on newer QorIQ 371 system clock. On most PQ3 devices this is 8, on newer QorIQ
372 devices it can be 16 or 32. The ratio varies from SoC to Soc. 372 devices it can be 16 or 32. The ratio varies from SoC to Soc.
373 373
374 CONFIG_SYS_FSL_PCIE_COMPAT 374 CONFIG_SYS_FSL_PCIE_COMPAT
375 375
376 Defines the string to utilize when trying to match PCIe device 376 Defines the string to utilize when trying to match PCIe device
377 tree nodes for the given platform. 377 tree nodes for the given platform.
378 378
379 CONFIG_SYS_PPC_E500_DEBUG_TLB 379 CONFIG_SYS_PPC_E500_DEBUG_TLB
380 380
381 Enables a temporary TLB entry to be used during boot to work 381 Enables a temporary TLB entry to be used during boot to work
382 around limitations in e500v1 and e500v2 external debugger 382 around limitations in e500v1 and e500v2 external debugger
383 support. This reduces the portions of the boot code where 383 support. This reduces the portions of the boot code where
384 breakpoints and single stepping do not work. The value of this 384 breakpoints and single stepping do not work. The value of this
385 symbol should be set to the TLB1 entry to be used for this 385 symbol should be set to the TLB1 entry to be used for this
386 purpose. 386 purpose.
387 387
388 CONFIG_SYS_FSL_ERRATUM_A004510 388 CONFIG_SYS_FSL_ERRATUM_A004510
389 389
390 Enables a workaround for erratum A004510. If set, 390 Enables a workaround for erratum A004510. If set,
391 then CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV and 391 then CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV and
392 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY must be set. 392 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY must be set.
393 393
394 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV 394 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV
395 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2 (optional) 395 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2 (optional)
396 396
397 Defines one or two SoC revisions (low 8 bits of SVR) 397 Defines one or two SoC revisions (low 8 bits of SVR)
398 for which the A004510 workaround should be applied. 398 for which the A004510 workaround should be applied.
399 399
400 The rest of SVR is either not relevant to the decision 400 The rest of SVR is either not relevant to the decision
401 of whether the erratum is present (e.g. p2040 versus 401 of whether the erratum is present (e.g. p2040 versus
402 p2041) or is implied by the build target, which controls 402 p2041) or is implied by the build target, which controls
403 whether CONFIG_SYS_FSL_ERRATUM_A004510 is set. 403 whether CONFIG_SYS_FSL_ERRATUM_A004510 is set.
404 404
405 See Freescale App Note 4493 for more information about 405 See Freescale App Note 4493 for more information about
406 this erratum. 406 this erratum.
407 407
408 CONFIG_A003399_NOR_WORKAROUND 408 CONFIG_A003399_NOR_WORKAROUND
409 Enables a workaround for IFC erratum A003399. It is only 409 Enables a workaround for IFC erratum A003399. It is only
410 required during NOR boot. 410 required during NOR boot.
411 411
412 CONFIG_A008044_WORKAROUND 412 CONFIG_A008044_WORKAROUND
413 Enables a workaround for T1040/T1042 erratum A008044. It is only 413 Enables a workaround for T1040/T1042 erratum A008044. It is only
414 required during NAND boot and valid for Rev 1.0 SoC revision 414 required during NAND boot and valid for Rev 1.0 SoC revision
415 415
416 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY 416 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY
417 417
418 This is the value to write into CCSR offset 0x18600 418 This is the value to write into CCSR offset 0x18600
419 according to the A004510 workaround. 419 according to the A004510 workaround.
420 420
421 CONFIG_SYS_FSL_DSP_DDR_ADDR 421 CONFIG_SYS_FSL_DSP_DDR_ADDR
422 This value denotes start offset of DDR memory which is 422 This value denotes start offset of DDR memory which is
423 connected exclusively to the DSP cores. 423 connected exclusively to the DSP cores.
424 424
425 CONFIG_SYS_FSL_DSP_M2_RAM_ADDR 425 CONFIG_SYS_FSL_DSP_M2_RAM_ADDR
426 This value denotes start offset of M2 memory 426 This value denotes start offset of M2 memory
427 which is directly connected to the DSP core. 427 which is directly connected to the DSP core.
428 428
429 CONFIG_SYS_FSL_DSP_M3_RAM_ADDR 429 CONFIG_SYS_FSL_DSP_M3_RAM_ADDR
430 This value denotes start offset of M3 memory which is directly 430 This value denotes start offset of M3 memory which is directly
431 connected to the DSP core. 431 connected to the DSP core.
432 432
433 CONFIG_SYS_FSL_DSP_CCSRBAR_DEFAULT 433 CONFIG_SYS_FSL_DSP_CCSRBAR_DEFAULT
434 This value denotes start offset of DSP CCSR space. 434 This value denotes start offset of DSP CCSR space.
435 435
436 CONFIG_SYS_FSL_SINGLE_SOURCE_CLK 436 CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
437 Single Source Clock is clocking mode present in some of FSL SoC's. 437 Single Source Clock is clocking mode present in some of FSL SoC's.
438 In this mode, a single differential clock is used to supply 438 In this mode, a single differential clock is used to supply
439 clocks to the sysclock, ddrclock and usbclock. 439 clocks to the sysclock, ddrclock and usbclock.
440 440
441 CONFIG_SYS_CPC_REINIT_F 441 CONFIG_SYS_CPC_REINIT_F
442 This CONFIG is defined when the CPC is configured as SRAM at the 442 This CONFIG is defined when the CPC is configured as SRAM at the
443 time of U-Boot entry and is required to be re-initialized. 443 time of U-Boot entry and is required to be re-initialized.
444 444
445 CONFIG_DEEP_SLEEP 445 CONFIG_DEEP_SLEEP
446 Indicates this SoC supports deep sleep feature. If deep sleep is 446 Indicates this SoC supports deep sleep feature. If deep sleep is
447 supported, core will start to execute uboot when wakes up. 447 supported, core will start to execute uboot when wakes up.
448 448
449 - Generic CPU options: 449 - Generic CPU options:
450 CONFIG_SYS_GENERIC_GLOBAL_DATA 450 CONFIG_SYS_GENERIC_GLOBAL_DATA
451 Defines global data is initialized in generic board board_init_f(). 451 Defines global data is initialized in generic board board_init_f().
452 If this macro is defined, global data is created and cleared in 452 If this macro is defined, global data is created and cleared in
453 generic board board_init_f(). Without this macro, architecture/board 453 generic board board_init_f(). Without this macro, architecture/board
454 should initialize global data before calling board_init_f(). 454 should initialize global data before calling board_init_f().
455 455
456 CONFIG_SYS_BIG_ENDIAN, CONFIG_SYS_LITTLE_ENDIAN 456 CONFIG_SYS_BIG_ENDIAN, CONFIG_SYS_LITTLE_ENDIAN
457 457
458 Defines the endianess of the CPU. Implementation of those 458 Defines the endianess of the CPU. Implementation of those
459 values is arch specific. 459 values is arch specific.
460 460
461 CONFIG_SYS_FSL_DDR 461 CONFIG_SYS_FSL_DDR
462 Freescale DDR driver in use. This type of DDR controller is 462 Freescale DDR driver in use. This type of DDR controller is
463 found in mpc83xx, mpc85xx, mpc86xx as well as some ARM core 463 found in mpc83xx, mpc85xx, mpc86xx as well as some ARM core
464 SoCs. 464 SoCs.
465 465
466 CONFIG_SYS_FSL_DDR_ADDR 466 CONFIG_SYS_FSL_DDR_ADDR
467 Freescale DDR memory-mapped register base. 467 Freescale DDR memory-mapped register base.
468 468
469 CONFIG_SYS_FSL_DDR_EMU 469 CONFIG_SYS_FSL_DDR_EMU
470 Specify emulator support for DDR. Some DDR features such as 470 Specify emulator support for DDR. Some DDR features such as
471 deskew training are not available. 471 deskew training are not available.
472 472
473 CONFIG_SYS_FSL_DDRC_GEN1 473 CONFIG_SYS_FSL_DDRC_GEN1
474 Freescale DDR1 controller. 474 Freescale DDR1 controller.
475 475
476 CONFIG_SYS_FSL_DDRC_GEN2 476 CONFIG_SYS_FSL_DDRC_GEN2
477 Freescale DDR2 controller. 477 Freescale DDR2 controller.
478 478
479 CONFIG_SYS_FSL_DDRC_GEN3 479 CONFIG_SYS_FSL_DDRC_GEN3
480 Freescale DDR3 controller. 480 Freescale DDR3 controller.
481 481
482 CONFIG_SYS_FSL_DDRC_GEN4 482 CONFIG_SYS_FSL_DDRC_GEN4
483 Freescale DDR4 controller. 483 Freescale DDR4 controller.
484 484
485 CONFIG_SYS_FSL_DDRC_ARM_GEN3 485 CONFIG_SYS_FSL_DDRC_ARM_GEN3
486 Freescale DDR3 controller for ARM-based SoCs. 486 Freescale DDR3 controller for ARM-based SoCs.
487 487
488 CONFIG_SYS_FSL_DDR1 488 CONFIG_SYS_FSL_DDR1
489 Board config to use DDR1. It can be enabled for SoCs with 489 Board config to use DDR1. It can be enabled for SoCs with
490 Freescale DDR1 or DDR2 controllers, depending on the board 490 Freescale DDR1 or DDR2 controllers, depending on the board
491 implemetation. 491 implemetation.
492 492
493 CONFIG_SYS_FSL_DDR2 493 CONFIG_SYS_FSL_DDR2
494 Board config to use DDR2. It can be enabled for SoCs with 494 Board config to use DDR2. It can be enabled for SoCs with
495 Freescale DDR2 or DDR3 controllers, depending on the board 495 Freescale DDR2 or DDR3 controllers, depending on the board
496 implementation. 496 implementation.
497 497
498 CONFIG_SYS_FSL_DDR3 498 CONFIG_SYS_FSL_DDR3
499 Board config to use DDR3. It can be enabled for SoCs with 499 Board config to use DDR3. It can be enabled for SoCs with
500 Freescale DDR3 or DDR3L controllers. 500 Freescale DDR3 or DDR3L controllers.
501 501
502 CONFIG_SYS_FSL_DDR3L 502 CONFIG_SYS_FSL_DDR3L
503 Board config to use DDR3L. It can be enabled for SoCs with 503 Board config to use DDR3L. It can be enabled for SoCs with
504 DDR3L controllers. 504 DDR3L controllers.
505 505
506 CONFIG_SYS_FSL_DDR4 506 CONFIG_SYS_FSL_DDR4
507 Board config to use DDR4. It can be enabled for SoCs with 507 Board config to use DDR4. It can be enabled for SoCs with
508 DDR4 controllers. 508 DDR4 controllers.
509 509
510 CONFIG_SYS_FSL_IFC_BE 510 CONFIG_SYS_FSL_IFC_BE
511 Defines the IFC controller register space as Big Endian 511 Defines the IFC controller register space as Big Endian
512 512
513 CONFIG_SYS_FSL_IFC_LE 513 CONFIG_SYS_FSL_IFC_LE
514 Defines the IFC controller register space as Little Endian 514 Defines the IFC controller register space as Little Endian
515 515
516 CONFIG_SYS_FSL_PBL_PBI 516 CONFIG_SYS_FSL_PBL_PBI
517 It enables addition of RCW (Power on reset configuration) in built image. 517 It enables addition of RCW (Power on reset configuration) in built image.
518 Please refer doc/README.pblimage for more details 518 Please refer doc/README.pblimage for more details
519 519
520 CONFIG_SYS_FSL_PBL_RCW 520 CONFIG_SYS_FSL_PBL_RCW
521 It adds PBI(pre-boot instructions) commands in u-boot build image. 521 It adds PBI(pre-boot instructions) commands in u-boot build image.
522 PBI commands can be used to configure SoC before it starts the execution. 522 PBI commands can be used to configure SoC before it starts the execution.
523 Please refer doc/README.pblimage for more details 523 Please refer doc/README.pblimage for more details
524 524
525 CONFIG_SPL_FSL_PBL 525 CONFIG_SPL_FSL_PBL
526 It adds a target to create boot binary having SPL binary in PBI format 526 It adds a target to create boot binary having SPL binary in PBI format
527 concatenated with u-boot binary. 527 concatenated with u-boot binary.
528 528
529 CONFIG_SYS_FSL_DDR_BE 529 CONFIG_SYS_FSL_DDR_BE
530 Defines the DDR controller register space as Big Endian 530 Defines the DDR controller register space as Big Endian
531 531
532 CONFIG_SYS_FSL_DDR_LE 532 CONFIG_SYS_FSL_DDR_LE
533 Defines the DDR controller register space as Little Endian 533 Defines the DDR controller register space as Little Endian
534 534
535 CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 535 CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY
536 Physical address from the view of DDR controllers. It is the 536 Physical address from the view of DDR controllers. It is the
537 same as CONFIG_SYS_DDR_SDRAM_BASE for all Power SoCs. But 537 same as CONFIG_SYS_DDR_SDRAM_BASE for all Power SoCs. But
538 it could be different for ARM SoCs. 538 it could be different for ARM SoCs.
539 539
540 CONFIG_SYS_FSL_DDR_INTLV_256B 540 CONFIG_SYS_FSL_DDR_INTLV_256B
541 DDR controller interleaving on 256-byte. This is a special 541 DDR controller interleaving on 256-byte. This is a special
542 interleaving mode, handled by Dickens for Freescale layerscape 542 interleaving mode, handled by Dickens for Freescale layerscape
543 SoCs with ARM core. 543 SoCs with ARM core.
544 544
545 CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS 545 CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS
546 Number of controllers used as main memory. 546 Number of controllers used as main memory.
547 547
548 CONFIG_SYS_FSL_OTHER_DDR_NUM_CTRLS 548 CONFIG_SYS_FSL_OTHER_DDR_NUM_CTRLS
549 Number of controllers used for other than main memory. 549 Number of controllers used for other than main memory.
550 550
551 CONFIG_SYS_FSL_HAS_DP_DDR 551 CONFIG_SYS_FSL_HAS_DP_DDR
552 Defines the SoC has DP-DDR used for DPAA. 552 Defines the SoC has DP-DDR used for DPAA.
553 553
554 CONFIG_SYS_FSL_SEC_BE 554 CONFIG_SYS_FSL_SEC_BE
555 Defines the SEC controller register space as Big Endian 555 Defines the SEC controller register space as Big Endian
556 556
557 CONFIG_SYS_FSL_SEC_LE 557 CONFIG_SYS_FSL_SEC_LE
558 Defines the SEC controller register space as Little Endian 558 Defines the SEC controller register space as Little Endian
559 559
560 - MIPS CPU options: 560 - MIPS CPU options:
561 CONFIG_SYS_INIT_SP_OFFSET 561 CONFIG_SYS_INIT_SP_OFFSET
562 562
563 Offset relative to CONFIG_SYS_SDRAM_BASE for initial stack 563 Offset relative to CONFIG_SYS_SDRAM_BASE for initial stack
564 pointer. This is needed for the temporary stack before 564 pointer. This is needed for the temporary stack before
565 relocation. 565 relocation.
566 566
567 CONFIG_SYS_MIPS_CACHE_MODE 567 CONFIG_SYS_MIPS_CACHE_MODE
568 568
569 Cache operation mode for the MIPS CPU. 569 Cache operation mode for the MIPS CPU.
570 See also arch/mips/include/asm/mipsregs.h. 570 See also arch/mips/include/asm/mipsregs.h.
571 Possible values are: 571 Possible values are:
572 CONF_CM_CACHABLE_NO_WA 572 CONF_CM_CACHABLE_NO_WA
573 CONF_CM_CACHABLE_WA 573 CONF_CM_CACHABLE_WA
574 CONF_CM_UNCACHED 574 CONF_CM_UNCACHED
575 CONF_CM_CACHABLE_NONCOHERENT 575 CONF_CM_CACHABLE_NONCOHERENT
576 CONF_CM_CACHABLE_CE 576 CONF_CM_CACHABLE_CE
577 CONF_CM_CACHABLE_COW 577 CONF_CM_CACHABLE_COW
578 CONF_CM_CACHABLE_CUW 578 CONF_CM_CACHABLE_CUW
579 CONF_CM_CACHABLE_ACCELERATED 579 CONF_CM_CACHABLE_ACCELERATED
580 580
581 CONFIG_SYS_XWAY_EBU_BOOTCFG 581 CONFIG_SYS_XWAY_EBU_BOOTCFG
582 582
583 Special option for Lantiq XWAY SoCs for booting from NOR flash. 583 Special option for Lantiq XWAY SoCs for booting from NOR flash.
584 See also arch/mips/cpu/mips32/start.S. 584 See also arch/mips/cpu/mips32/start.S.
585 585
586 CONFIG_XWAY_SWAP_BYTES 586 CONFIG_XWAY_SWAP_BYTES
587 587
588 Enable compilation of tools/xway-swap-bytes needed for Lantiq 588 Enable compilation of tools/xway-swap-bytes needed for Lantiq
589 XWAY SoCs for booting from NOR flash. The U-Boot image needs to 589 XWAY SoCs for booting from NOR flash. The U-Boot image needs to
590 be swapped if a flash programmer is used. 590 be swapped if a flash programmer is used.
591 591
592 - ARM options: 592 - ARM options:
593 CONFIG_SYS_EXCEPTION_VECTORS_HIGH 593 CONFIG_SYS_EXCEPTION_VECTORS_HIGH
594 594
595 Select high exception vectors of the ARM core, e.g., do not 595 Select high exception vectors of the ARM core, e.g., do not
596 clear the V bit of the c1 register of CP15. 596 clear the V bit of the c1 register of CP15.
597 597
598 CONFIG_SYS_THUMB_BUILD 598 CONFIG_SYS_THUMB_BUILD
599 599
600 Use this flag to build U-Boot using the Thumb instruction 600 Use this flag to build U-Boot using the Thumb instruction
601 set for ARM architectures. Thumb instruction set provides 601 set for ARM architectures. Thumb instruction set provides
602 better code density. For ARM architectures that support 602 better code density. For ARM architectures that support
603 Thumb2 this flag will result in Thumb2 code generated by 603 Thumb2 this flag will result in Thumb2 code generated by
604 GCC. 604 GCC.
605 605
606 CONFIG_ARM_ERRATA_716044 606 CONFIG_ARM_ERRATA_716044
607 CONFIG_ARM_ERRATA_742230 607 CONFIG_ARM_ERRATA_742230
608 CONFIG_ARM_ERRATA_743622 608 CONFIG_ARM_ERRATA_743622
609 CONFIG_ARM_ERRATA_751472 609 CONFIG_ARM_ERRATA_751472
610 CONFIG_ARM_ERRATA_761320 610 CONFIG_ARM_ERRATA_761320
611 CONFIG_ARM_ERRATA_773022 611 CONFIG_ARM_ERRATA_773022
612 CONFIG_ARM_ERRATA_774769 612 CONFIG_ARM_ERRATA_774769
613 CONFIG_ARM_ERRATA_794072 613 CONFIG_ARM_ERRATA_794072
614 614
615 If set, the workarounds for these ARM errata are applied early 615 If set, the workarounds for these ARM errata are applied early
616 during U-Boot startup. Note that these options force the 616 during U-Boot startup. Note that these options force the
617 workarounds to be applied; no CPU-type/version detection 617 workarounds to be applied; no CPU-type/version detection
618 exists, unlike the similar options in the Linux kernel. Do not 618 exists, unlike the similar options in the Linux kernel. Do not
619 set these options unless they apply! 619 set these options unless they apply!
620 620
621 COUNTER_FREQUENCY 621 COUNTER_FREQUENCY
622 Generic timer clock source frequency. 622 Generic timer clock source frequency.
623 623
624 COUNTER_FREQUENCY_REAL 624 COUNTER_FREQUENCY_REAL
625 Generic timer clock source frequency if the real clock is 625 Generic timer clock source frequency if the real clock is
626 different from COUNTER_FREQUENCY, and can only be determined 626 different from COUNTER_FREQUENCY, and can only be determined
627 at run time. 627 at run time.
628 628
629 NOTE: The following can be machine specific errata. These 629 NOTE: The following can be machine specific errata. These
630 do have ability to provide rudimentary version and machine 630 do have ability to provide rudimentary version and machine
631 specific checks, but expect no product checks. 631 specific checks, but expect no product checks.
632 CONFIG_ARM_ERRATA_430973 632 CONFIG_ARM_ERRATA_430973
633 CONFIG_ARM_ERRATA_454179 633 CONFIG_ARM_ERRATA_454179
634 CONFIG_ARM_ERRATA_621766 634 CONFIG_ARM_ERRATA_621766
635 CONFIG_ARM_ERRATA_798870 635 CONFIG_ARM_ERRATA_798870
636 CONFIG_ARM_ERRATA_801819 636 CONFIG_ARM_ERRATA_801819
637 637
638 - Tegra SoC options: 638 - Tegra SoC options:
639 CONFIG_TEGRA_SUPPORT_NON_SECURE 639 CONFIG_TEGRA_SUPPORT_NON_SECURE
640 640
641 Support executing U-Boot in non-secure (NS) mode. Certain 641 Support executing U-Boot in non-secure (NS) mode. Certain
642 impossible actions will be skipped if the CPU is in NS mode, 642 impossible actions will be skipped if the CPU is in NS mode,
643 such as ARM architectural timer initialization. 643 such as ARM architectural timer initialization.
644 644
645 - Linux Kernel Interface: 645 - Linux Kernel Interface:
646 CONFIG_CLOCKS_IN_MHZ 646 CONFIG_CLOCKS_IN_MHZ
647 647
648 U-Boot stores all clock information in Hz 648 U-Boot stores all clock information in Hz
649 internally. For binary compatibility with older Linux 649 internally. For binary compatibility with older Linux
650 kernels (which expect the clocks passed in the 650 kernels (which expect the clocks passed in the
651 bd_info data to be in MHz) the environment variable 651 bd_info data to be in MHz) the environment variable
652 "clocks_in_mhz" can be defined so that U-Boot 652 "clocks_in_mhz" can be defined so that U-Boot
653 converts clock data to MHZ before passing it to the 653 converts clock data to MHZ before passing it to the
654 Linux kernel. 654 Linux kernel.
655 When CONFIG_CLOCKS_IN_MHZ is defined, a definition of 655 When CONFIG_CLOCKS_IN_MHZ is defined, a definition of
656 "clocks_in_mhz=1" is automatically included in the 656 "clocks_in_mhz=1" is automatically included in the
657 default environment. 657 default environment.
658 658
659 CONFIG_MEMSIZE_IN_BYTES [relevant for MIPS only] 659 CONFIG_MEMSIZE_IN_BYTES [relevant for MIPS only]
660 660
661 When transferring memsize parameter to Linux, some versions 661 When transferring memsize parameter to Linux, some versions
662 expect it to be in bytes, others in MB. 662 expect it to be in bytes, others in MB.
663 Define CONFIG_MEMSIZE_IN_BYTES to make it in bytes. 663 Define CONFIG_MEMSIZE_IN_BYTES to make it in bytes.
664 664
665 CONFIG_OF_LIBFDT 665 CONFIG_OF_LIBFDT
666 666
667 New kernel versions are expecting firmware settings to be 667 New kernel versions are expecting firmware settings to be
668 passed using flattened device trees (based on open firmware 668 passed using flattened device trees (based on open firmware
669 concepts). 669 concepts).
670 670
671 CONFIG_OF_LIBFDT 671 CONFIG_OF_LIBFDT
672 * New libfdt-based support 672 * New libfdt-based support
673 * Adds the "fdt" command 673 * Adds the "fdt" command
674 * The bootm command automatically updates the fdt 674 * The bootm command automatically updates the fdt
675 675
676 OF_CPU - The proper name of the cpus node (only required for 676 OF_CPU - The proper name of the cpus node (only required for
677 MPC512X and MPC5xxx based boards). 677 MPC512X and MPC5xxx based boards).
678 OF_SOC - The proper name of the soc node (only required for 678 OF_SOC - The proper name of the soc node (only required for
679 MPC512X and MPC5xxx based boards). 679 MPC512X and MPC5xxx based boards).
680 OF_TBCLK - The timebase frequency. 680 OF_TBCLK - The timebase frequency.
681 OF_STDOUT_PATH - The path to the console device 681 OF_STDOUT_PATH - The path to the console device
682 682
683 boards with QUICC Engines require OF_QE to set UCC MAC 683 boards with QUICC Engines require OF_QE to set UCC MAC
684 addresses 684 addresses
685 685
686 CONFIG_OF_BOARD_SETUP 686 CONFIG_OF_BOARD_SETUP
687 687
688 Board code has addition modification that it wants to make 688 Board code has addition modification that it wants to make
689 to the flat device tree before handing it off to the kernel 689 to the flat device tree before handing it off to the kernel
690 690
691 CONFIG_OF_SYSTEM_SETUP 691 CONFIG_OF_SYSTEM_SETUP
692 692
693 Other code has addition modification that it wants to make 693 Other code has addition modification that it wants to make
694 to the flat device tree before handing it off to the kernel. 694 to the flat device tree before handing it off to the kernel.
695 This causes ft_system_setup() to be called before booting 695 This causes ft_system_setup() to be called before booting
696 the kernel. 696 the kernel.
697 697
698 CONFIG_OF_IDE_FIXUP 698 CONFIG_OF_IDE_FIXUP
699 699
700 U-Boot can detect if an IDE device is present or not. 700 U-Boot can detect if an IDE device is present or not.
701 If not, and this new config option is activated, U-Boot 701 If not, and this new config option is activated, U-Boot
702 removes the ATA node from the DTS before booting Linux, 702 removes the ATA node from the DTS before booting Linux,
703 so the Linux IDE driver does not probe the device and 703 so the Linux IDE driver does not probe the device and
704 crash. This is needed for buggy hardware (uc101) where 704 crash. This is needed for buggy hardware (uc101) where
705 no pull down resistor is connected to the signal IDE5V_DD7. 705 no pull down resistor is connected to the signal IDE5V_DD7.
706 706
707 CONFIG_MACH_TYPE [relevant for ARM only][mandatory] 707 CONFIG_MACH_TYPE [relevant for ARM only][mandatory]
708 708
709 This setting is mandatory for all boards that have only one 709 This setting is mandatory for all boards that have only one
710 machine type and must be used to specify the machine type 710 machine type and must be used to specify the machine type
711 number as it appears in the ARM machine registry 711 number as it appears in the ARM machine registry
712 (see http://www.arm.linux.org.uk/developer/machines/). 712 (see http://www.arm.linux.org.uk/developer/machines/).
713 Only boards that have multiple machine types supported 713 Only boards that have multiple machine types supported
714 in a single configuration file and the machine type is 714 in a single configuration file and the machine type is
715 runtime discoverable, do not have to use this setting. 715 runtime discoverable, do not have to use this setting.
716 716
717 - vxWorks boot parameters: 717 - vxWorks boot parameters:
718 718
719 bootvx constructs a valid bootline using the following 719 bootvx constructs a valid bootline using the following
720 environments variables: bootdev, bootfile, ipaddr, netmask, 720 environments variables: bootdev, bootfile, ipaddr, netmask,
721 serverip, gatewayip, hostname, othbootargs. 721 serverip, gatewayip, hostname, othbootargs.
722 It loads the vxWorks image pointed bootfile. 722 It loads the vxWorks image pointed bootfile.
723 723
724 Note: If a "bootargs" environment is defined, it will overwride 724 Note: If a "bootargs" environment is defined, it will overwride
725 the defaults discussed just above. 725 the defaults discussed just above.
726 726
727 - Cache Configuration: 727 - Cache Configuration:
728 CONFIG_SYS_ICACHE_OFF - Do not enable instruction cache in U-Boot 728 CONFIG_SYS_ICACHE_OFF - Do not enable instruction cache in U-Boot
729 CONFIG_SYS_DCACHE_OFF - Do not enable data cache in U-Boot 729 CONFIG_SYS_DCACHE_OFF - Do not enable data cache in U-Boot
730 CONFIG_SYS_L2CACHE_OFF- Do not enable L2 cache in U-Boot 730 CONFIG_SYS_L2CACHE_OFF- Do not enable L2 cache in U-Boot
731 731
732 - Cache Configuration for ARM: 732 - Cache Configuration for ARM:
733 CONFIG_SYS_L2_PL310 - Enable support for ARM PL310 L2 cache 733 CONFIG_SYS_L2_PL310 - Enable support for ARM PL310 L2 cache
734 controller 734 controller
735 CONFIG_SYS_PL310_BASE - Physical base address of PL310 735 CONFIG_SYS_PL310_BASE - Physical base address of PL310
736 controller register space 736 controller register space
737 737
738 - Serial Ports: 738 - Serial Ports:
739 CONFIG_PL010_SERIAL 739 CONFIG_PL010_SERIAL
740 740
741 Define this if you want support for Amba PrimeCell PL010 UARTs. 741 Define this if you want support for Amba PrimeCell PL010 UARTs.
742 742
743 CONFIG_PL011_SERIAL 743 CONFIG_PL011_SERIAL
744 744
745 Define this if you want support for Amba PrimeCell PL011 UARTs. 745 Define this if you want support for Amba PrimeCell PL011 UARTs.
746 746
747 CONFIG_PL011_CLOCK 747 CONFIG_PL011_CLOCK
748 748
749 If you have Amba PrimeCell PL011 UARTs, set this variable to 749 If you have Amba PrimeCell PL011 UARTs, set this variable to
750 the clock speed of the UARTs. 750 the clock speed of the UARTs.
751 751
752 CONFIG_PL01x_PORTS 752 CONFIG_PL01x_PORTS
753 753
754 If you have Amba PrimeCell PL010 or PL011 UARTs on your board, 754 If you have Amba PrimeCell PL010 or PL011 UARTs on your board,
755 define this to a list of base addresses for each (supported) 755 define this to a list of base addresses for each (supported)
756 port. See e.g. include/configs/versatile.h 756 port. See e.g. include/configs/versatile.h
757 757
758 CONFIG_SERIAL_HW_FLOW_CONTROL 758 CONFIG_SERIAL_HW_FLOW_CONTROL
759 759
760 Define this variable to enable hw flow control in serial driver. 760 Define this variable to enable hw flow control in serial driver.
761 Current user of this option is drivers/serial/nsl16550.c driver 761 Current user of this option is drivers/serial/nsl16550.c driver
762 762
763 - Console Interface: 763 - Console Interface:
764 Depending on board, define exactly one serial port 764 Depending on board, define exactly one serial port
765 (like CONFIG_8xx_CONS_SMC1, CONFIG_8xx_CONS_SMC2, 765 (like CONFIG_8xx_CONS_SMC1, CONFIG_8xx_CONS_SMC2,
766 CONFIG_8xx_CONS_SCC1, ...), or switch off the serial 766 CONFIG_8xx_CONS_SCC1, ...), or switch off the serial
767 console by defining CONFIG_8xx_CONS_NONE 767 console by defining CONFIG_8xx_CONS_NONE
768 768
769 Note: if CONFIG_8xx_CONS_NONE is defined, the serial 769 Note: if CONFIG_8xx_CONS_NONE is defined, the serial
770 port routines must be defined elsewhere 770 port routines must be defined elsewhere
771 (i.e. serial_init(), serial_getc(), ...) 771 (i.e. serial_init(), serial_getc(), ...)
772 772
773 - Console Baudrate: 773 - Console Baudrate:
774 CONFIG_BAUDRATE - in bps 774 CONFIG_BAUDRATE - in bps
775 Select one of the baudrates listed in 775 Select one of the baudrates listed in
776 CONFIG_SYS_BAUDRATE_TABLE, see below. 776 CONFIG_SYS_BAUDRATE_TABLE, see below.
777 CONFIG_SYS_BRGCLK_PRESCALE, baudrate prescale 777 CONFIG_SYS_BRGCLK_PRESCALE, baudrate prescale
778 778
779 - Console Rx buffer length 779 - Console Rx buffer length
780 With CONFIG_SYS_SMC_RXBUFLEN it is possible to define 780 With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
781 the maximum receive buffer length for the SMC. 781 the maximum receive buffer length for the SMC.
782 This option is actual only for 82xx and 8xx possible. 782 This option is actual only for 82xx and 8xx possible.
783 If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE 783 If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
784 must be defined, to setup the maximum idle timeout for 784 must be defined, to setup the maximum idle timeout for
785 the SMC. 785 the SMC.
786 786
787 - Autoboot Command: 787 - Autoboot Command:
788 CONFIG_BOOTCOMMAND 788 CONFIG_BOOTCOMMAND
789 Only needed when CONFIG_BOOTDELAY is enabled; 789 Only needed when CONFIG_BOOTDELAY is enabled;
790 define a command string that is automatically executed 790 define a command string that is automatically executed
791 when no character is read on the console interface 791 when no character is read on the console interface
792 within "Boot Delay" after reset. 792 within "Boot Delay" after reset.
793 793
794 CONFIG_BOOTARGS 794 CONFIG_BOOTARGS
795 This can be used to pass arguments to the bootm 795 This can be used to pass arguments to the bootm
796 command. The value of CONFIG_BOOTARGS goes into the 796 command. The value of CONFIG_BOOTARGS goes into the
797 environment value "bootargs". 797 environment value "bootargs".
798 798
799 CONFIG_RAMBOOT and CONFIG_NFSBOOT 799 CONFIG_RAMBOOT and CONFIG_NFSBOOT
800 The value of these goes into the environment as 800 The value of these goes into the environment as
801 "ramboot" and "nfsboot" respectively, and can be used 801 "ramboot" and "nfsboot" respectively, and can be used
802 as a convenience, when switching between booting from 802 as a convenience, when switching between booting from
803 RAM and NFS. 803 RAM and NFS.
804 804
805 - Bootcount: 805 - Bootcount:
806 CONFIG_BOOTCOUNT_LIMIT 806 CONFIG_BOOTCOUNT_LIMIT
807 Implements a mechanism for detecting a repeating reboot 807 Implements a mechanism for detecting a repeating reboot
808 cycle, see: 808 cycle, see:
809 http://www.denx.de/wiki/view/DULG/UBootBootCountLimit 809 http://www.denx.de/wiki/view/DULG/UBootBootCountLimit
810 810
811 CONFIG_BOOTCOUNT_ENV 811 CONFIG_BOOTCOUNT_ENV
812 If no softreset save registers are found on the hardware 812 If no softreset save registers are found on the hardware
813 "bootcount" is stored in the environment. To prevent a 813 "bootcount" is stored in the environment. To prevent a
814 saveenv on all reboots, the environment variable 814 saveenv on all reboots, the environment variable
815 "upgrade_available" is used. If "upgrade_available" is 815 "upgrade_available" is used. If "upgrade_available" is
816 0, "bootcount" is always 0, if "upgrade_available" is 816 0, "bootcount" is always 0, if "upgrade_available" is
817 1 "bootcount" is incremented in the environment. 817 1 "bootcount" is incremented in the environment.
818 So the Userspace Applikation must set the "upgrade_available" 818 So the Userspace Applikation must set the "upgrade_available"
819 and "bootcount" variable to 0, if a boot was successfully. 819 and "bootcount" variable to 0, if a boot was successfully.
820 820
821 - Pre-Boot Commands: 821 - Pre-Boot Commands:
822 CONFIG_PREBOOT 822 CONFIG_PREBOOT
823 823
824 When this option is #defined, the existence of the 824 When this option is #defined, the existence of the
825 environment variable "preboot" will be checked 825 environment variable "preboot" will be checked
826 immediately before starting the CONFIG_BOOTDELAY 826 immediately before starting the CONFIG_BOOTDELAY
827 countdown and/or running the auto-boot command resp. 827 countdown and/or running the auto-boot command resp.
828 entering interactive mode. 828 entering interactive mode.
829 829
830 This feature is especially useful when "preboot" is 830 This feature is especially useful when "preboot" is
831 automatically generated or modified. For an example 831 automatically generated or modified. For an example
832 see the LWMON board specific code: here "preboot" is 832 see the LWMON board specific code: here "preboot" is
833 modified when the user holds down a certain 833 modified when the user holds down a certain
834 combination of keys on the (special) keyboard when 834 combination of keys on the (special) keyboard when
835 booting the systems 835 booting the systems
836 836
837 - Serial Download Echo Mode: 837 - Serial Download Echo Mode:
838 CONFIG_LOADS_ECHO 838 CONFIG_LOADS_ECHO
839 If defined to 1, all characters received during a 839 If defined to 1, all characters received during a
840 serial download (using the "loads" command) are 840 serial download (using the "loads" command) are
841 echoed back. This might be needed by some terminal 841 echoed back. This might be needed by some terminal
842 emulations (like "cu"), but may as well just take 842 emulations (like "cu"), but may as well just take
843 time on others. This setting #define's the initial 843 time on others. This setting #define's the initial
844 value of the "loads_echo" environment variable. 844 value of the "loads_echo" environment variable.
845 845
846 - Kgdb Serial Baudrate: (if CONFIG_CMD_KGDB is defined) 846 - Kgdb Serial Baudrate: (if CONFIG_CMD_KGDB is defined)
847 CONFIG_KGDB_BAUDRATE 847 CONFIG_KGDB_BAUDRATE
848 Select one of the baudrates listed in 848 Select one of the baudrates listed in
849 CONFIG_SYS_BAUDRATE_TABLE, see below. 849 CONFIG_SYS_BAUDRATE_TABLE, see below.
850 850
851 - Monitor Functions: 851 - Monitor Functions:
852 Monitor commands can be included or excluded 852 Monitor commands can be included or excluded
853 from the build by using the #include files 853 from the build by using the #include files
854 <config_cmd_all.h> and #undef'ing unwanted 854 <config_cmd_all.h> and #undef'ing unwanted
855 commands, or adding #define's for wanted commands. 855 commands, or adding #define's for wanted commands.
856 856
857 The default command configuration includes all commands 857 The default command configuration includes all commands
858 except those marked below with a "*". 858 except those marked below with a "*".
859 859
860 CONFIG_CMD_AES AES 128 CBC encrypt/decrypt 860 CONFIG_CMD_AES AES 128 CBC encrypt/decrypt
861 CONFIG_CMD_ASKENV * ask for env variable 861 CONFIG_CMD_ASKENV * ask for env variable
862 CONFIG_CMD_BDI bdinfo 862 CONFIG_CMD_BDI bdinfo
863 CONFIG_CMD_BEDBUG * Include BedBug Debugger 863 CONFIG_CMD_BEDBUG * Include BedBug Debugger
864 CONFIG_CMD_BMP * BMP support 864 CONFIG_CMD_BMP * BMP support
865 CONFIG_CMD_BSP * Board specific commands 865 CONFIG_CMD_BSP * Board specific commands
866 CONFIG_CMD_BOOTD bootd 866 CONFIG_CMD_BOOTD bootd
867 CONFIG_CMD_BOOTI * ARM64 Linux kernel Image support 867 CONFIG_CMD_BOOTI * ARM64 Linux kernel Image support
868 CONFIG_CMD_CACHE * icache, dcache 868 CONFIG_CMD_CACHE * icache, dcache
869 CONFIG_CMD_CLK * clock command support 869 CONFIG_CMD_CLK * clock command support
870 CONFIG_CMD_CONSOLE coninfo 870 CONFIG_CMD_CONSOLE coninfo
871 CONFIG_CMD_CRC32 * crc32 871 CONFIG_CMD_CRC32 * crc32
872 CONFIG_CMD_DATE * support for RTC, date/time... 872 CONFIG_CMD_DATE * support for RTC, date/time...
873 CONFIG_CMD_DHCP * DHCP support 873 CONFIG_CMD_DHCP * DHCP support
874 CONFIG_CMD_DIAG * Diagnostics 874 CONFIG_CMD_DIAG * Diagnostics
875 CONFIG_CMD_DS4510 * ds4510 I2C gpio commands 875 CONFIG_CMD_DS4510 * ds4510 I2C gpio commands
876 CONFIG_CMD_DS4510_INFO * ds4510 I2C info command 876 CONFIG_CMD_DS4510_INFO * ds4510 I2C info command
877 CONFIG_CMD_DS4510_MEM * ds4510 I2C eeprom/sram commansd 877 CONFIG_CMD_DS4510_MEM * ds4510 I2C eeprom/sram commansd
878 CONFIG_CMD_DS4510_RST * ds4510 I2C rst command 878 CONFIG_CMD_DS4510_RST * ds4510 I2C rst command
879 CONFIG_CMD_DTT * Digital Therm and Thermostat 879 CONFIG_CMD_DTT * Digital Therm and Thermostat
880 CONFIG_CMD_ECHO echo arguments 880 CONFIG_CMD_ECHO echo arguments
881 CONFIG_CMD_EDITENV edit env variable 881 CONFIG_CMD_EDITENV edit env variable
882 CONFIG_CMD_EEPROM * EEPROM read/write support 882 CONFIG_CMD_EEPROM * EEPROM read/write support
883 CONFIG_CMD_EEPROM_LAYOUT* EEPROM layout aware commands 883 CONFIG_CMD_EEPROM_LAYOUT* EEPROM layout aware commands
884 CONFIG_CMD_ELF * bootelf, bootvx 884 CONFIG_CMD_ELF * bootelf, bootvx
885 CONFIG_CMD_ENV_CALLBACK * display details about env callbacks 885 CONFIG_CMD_ENV_CALLBACK * display details about env callbacks
886 CONFIG_CMD_ENV_FLAGS * display details about env flags 886 CONFIG_CMD_ENV_FLAGS * display details about env flags
887 CONFIG_CMD_ENV_EXISTS * check existence of env variable 887 CONFIG_CMD_ENV_EXISTS * check existence of env variable
888 CONFIG_CMD_EXPORTENV * export the environment 888 CONFIG_CMD_EXPORTENV * export the environment
889 CONFIG_CMD_EXT2 * ext2 command support 889 CONFIG_CMD_EXT2 * ext2 command support
890 CONFIG_CMD_EXT4 * ext4 command support 890 CONFIG_CMD_EXT4 * ext4 command support
891 CONFIG_CMD_FS_GENERIC * filesystem commands (e.g. load, ls) 891 CONFIG_CMD_FS_GENERIC * filesystem commands (e.g. load, ls)
892 that work for multiple fs types 892 that work for multiple fs types
893 CONFIG_CMD_FS_UUID * Look up a filesystem UUID 893 CONFIG_CMD_FS_UUID * Look up a filesystem UUID
894 CONFIG_CMD_SAVEENV saveenv 894 CONFIG_CMD_SAVEENV saveenv
895 CONFIG_CMD_FDC * Floppy Disk Support 895 CONFIG_CMD_FDC * Floppy Disk Support
896 CONFIG_CMD_FAT * FAT command support 896 CONFIG_CMD_FAT * FAT command support
897 CONFIG_CMD_FLASH flinfo, erase, protect 897 CONFIG_CMD_FLASH flinfo, erase, protect
898 CONFIG_CMD_FPGA FPGA device initialization support 898 CONFIG_CMD_FPGA FPGA device initialization support
899 CONFIG_CMD_FUSE * Device fuse support 899 CONFIG_CMD_FUSE * Device fuse support
900 CONFIG_CMD_GETTIME * Get time since boot 900 CONFIG_CMD_GETTIME * Get time since boot
901 CONFIG_CMD_GO * the 'go' command (exec code) 901 CONFIG_CMD_GO * the 'go' command (exec code)
902 CONFIG_CMD_GREPENV * search environment 902 CONFIG_CMD_GREPENV * search environment
903 CONFIG_CMD_HASH * calculate hash / digest 903 CONFIG_CMD_HASH * calculate hash / digest
904 CONFIG_CMD_I2C * I2C serial bus support 904 CONFIG_CMD_I2C * I2C serial bus support
905 CONFIG_CMD_IDE * IDE harddisk support 905 CONFIG_CMD_IDE * IDE harddisk support
906 CONFIG_CMD_IMI iminfo 906 CONFIG_CMD_IMI iminfo
907 CONFIG_CMD_IMLS List all images found in NOR flash 907 CONFIG_CMD_IMLS List all images found in NOR flash
908 CONFIG_CMD_IMLS_NAND * List all images found in NAND flash 908 CONFIG_CMD_IMLS_NAND * List all images found in NAND flash
909 CONFIG_CMD_IMMAP * IMMR dump support 909 CONFIG_CMD_IMMAP * IMMR dump support
910 CONFIG_CMD_IOTRACE * I/O tracing for debugging 910 CONFIG_CMD_IOTRACE * I/O tracing for debugging
911 CONFIG_CMD_IMPORTENV * import an environment 911 CONFIG_CMD_IMPORTENV * import an environment
912 CONFIG_CMD_INI * import data from an ini file into the env 912 CONFIG_CMD_INI * import data from an ini file into the env
913 CONFIG_CMD_IRQ * irqinfo 913 CONFIG_CMD_IRQ * irqinfo
914 CONFIG_CMD_ITEST Integer/string test of 2 values 914 CONFIG_CMD_ITEST Integer/string test of 2 values
915 CONFIG_CMD_JFFS2 * JFFS2 Support 915 CONFIG_CMD_JFFS2 * JFFS2 Support
916 CONFIG_CMD_KGDB * kgdb 916 CONFIG_CMD_KGDB * kgdb
917 CONFIG_CMD_LDRINFO * ldrinfo (display Blackfin loader) 917 CONFIG_CMD_LDRINFO * ldrinfo (display Blackfin loader)
918 CONFIG_CMD_LINK_LOCAL * link-local IP address auto-configuration 918 CONFIG_CMD_LINK_LOCAL * link-local IP address auto-configuration
919 (169.254.*.*) 919 (169.254.*.*)
920 CONFIG_CMD_LOADB loadb 920 CONFIG_CMD_LOADB loadb
921 CONFIG_CMD_LOADS loads 921 CONFIG_CMD_LOADS loads
922 CONFIG_CMD_MD5SUM * print md5 message digest 922 CONFIG_CMD_MD5SUM * print md5 message digest
923 (requires CONFIG_CMD_MEMORY and CONFIG_MD5) 923 (requires CONFIG_CMD_MEMORY and CONFIG_MD5)
924 CONFIG_CMD_MEMINFO * Display detailed memory information 924 CONFIG_CMD_MEMINFO * Display detailed memory information
925 CONFIG_CMD_MEMORY md, mm, nm, mw, cp, cmp, crc, base, 925 CONFIG_CMD_MEMORY md, mm, nm, mw, cp, cmp, crc, base,
926 loop, loopw 926 loop, loopw
927 CONFIG_CMD_MEMTEST * mtest 927 CONFIG_CMD_MEMTEST * mtest
928 CONFIG_CMD_MISC Misc functions like sleep etc 928 CONFIG_CMD_MISC Misc functions like sleep etc
929 CONFIG_CMD_MMC * MMC memory mapped support 929 CONFIG_CMD_MMC * MMC memory mapped support
930 CONFIG_CMD_MII * MII utility commands 930 CONFIG_CMD_MII * MII utility commands
931 CONFIG_CMD_MTDPARTS * MTD partition support 931 CONFIG_CMD_MTDPARTS * MTD partition support
932 CONFIG_CMD_NAND * NAND support 932 CONFIG_CMD_NAND * NAND support
933 CONFIG_CMD_NET bootp, tftpboot, rarpboot 933 CONFIG_CMD_NET bootp, tftpboot, rarpboot
934 CONFIG_CMD_NFS NFS support 934 CONFIG_CMD_NFS NFS support
935 CONFIG_CMD_PCA953X * PCA953x I2C gpio commands 935 CONFIG_CMD_PCA953X * PCA953x I2C gpio commands
936 CONFIG_CMD_PCA953X_INFO * PCA953x I2C gpio info command 936 CONFIG_CMD_PCA953X_INFO * PCA953x I2C gpio info command
937 CONFIG_CMD_PCI * pciinfo 937 CONFIG_CMD_PCI * pciinfo
938 CONFIG_CMD_PCMCIA * PCMCIA support 938 CONFIG_CMD_PCMCIA * PCMCIA support
939 CONFIG_CMD_PING * send ICMP ECHO_REQUEST to network 939 CONFIG_CMD_PING * send ICMP ECHO_REQUEST to network
940 host 940 host
941 CONFIG_CMD_PORTIO * Port I/O 941 CONFIG_CMD_PORTIO * Port I/O
942 CONFIG_CMD_READ * Read raw data from partition 942 CONFIG_CMD_READ * Read raw data from partition
943 CONFIG_CMD_REGINFO * Register dump 943 CONFIG_CMD_REGINFO * Register dump
944 CONFIG_CMD_RUN run command in env variable 944 CONFIG_CMD_RUN run command in env variable
945 CONFIG_CMD_SANDBOX * sb command to access sandbox features 945 CONFIG_CMD_SANDBOX * sb command to access sandbox features
946 CONFIG_CMD_SAVES * save S record dump 946 CONFIG_CMD_SAVES * save S record dump
947 CONFIG_SCSI * SCSI Support 947 CONFIG_SCSI * SCSI Support
948 CONFIG_CMD_SDRAM * print SDRAM configuration information 948 CONFIG_CMD_SDRAM * print SDRAM configuration information
949 (requires CONFIG_CMD_I2C) 949 (requires CONFIG_CMD_I2C)
950 CONFIG_CMD_SETGETDCR Support for DCR Register access 950 CONFIG_CMD_SETGETDCR Support for DCR Register access
951 (4xx only) 951 (4xx only)
952 CONFIG_CMD_SF * Read/write/erase SPI NOR flash 952 CONFIG_CMD_SF * Read/write/erase SPI NOR flash
953 CONFIG_CMD_SHA1SUM * print sha1 memory digest 953 CONFIG_CMD_SHA1SUM * print sha1 memory digest
954 (requires CONFIG_CMD_MEMORY) 954 (requires CONFIG_CMD_MEMORY)
955 CONFIG_CMD_SOFTSWITCH * Soft switch setting command for BF60x 955 CONFIG_CMD_SOFTSWITCH * Soft switch setting command for BF60x
956 CONFIG_CMD_SOURCE "source" command Support 956 CONFIG_CMD_SOURCE "source" command Support
957 CONFIG_CMD_SPI * SPI serial bus support 957 CONFIG_CMD_SPI * SPI serial bus support
958 CONFIG_CMD_TFTPSRV * TFTP transfer in server mode 958 CONFIG_CMD_TFTPSRV * TFTP transfer in server mode
959 CONFIG_CMD_TFTPPUT * TFTP put command (upload) 959 CONFIG_CMD_TFTPPUT * TFTP put command (upload)
960 CONFIG_CMD_TIME * run command and report execution time (ARM specific) 960 CONFIG_CMD_TIME * run command and report execution time (ARM specific)
961 CONFIG_CMD_TIMER * access to the system tick timer 961 CONFIG_CMD_TIMER * access to the system tick timer
962 CONFIG_CMD_USB * USB support 962 CONFIG_CMD_USB * USB support
963 CONFIG_CMD_CDP * Cisco Discover Protocol support 963 CONFIG_CMD_CDP * Cisco Discover Protocol support
964 CONFIG_CMD_MFSL * Microblaze FSL support 964 CONFIG_CMD_MFSL * Microblaze FSL support
965 CONFIG_CMD_XIMG Load part of Multi Image 965 CONFIG_CMD_XIMG Load part of Multi Image
966 CONFIG_CMD_UUID * Generate random UUID or GUID string 966 CONFIG_CMD_UUID * Generate random UUID or GUID string
967 967
968 EXAMPLE: If you want all functions except of network 968 EXAMPLE: If you want all functions except of network
969 support you can write: 969 support you can write:
970 970
971 #include "config_cmd_all.h" 971 #include "config_cmd_all.h"
972 #undef CONFIG_CMD_NET 972 #undef CONFIG_CMD_NET
973 973
974 Other Commands: 974 Other Commands:
975 fdt (flattened device tree) command: CONFIG_OF_LIBFDT 975 fdt (flattened device tree) command: CONFIG_OF_LIBFDT
976 976
977 Note: Don't enable the "icache" and "dcache" commands 977 Note: Don't enable the "icache" and "dcache" commands
978 (configuration option CONFIG_CMD_CACHE) unless you know 978 (configuration option CONFIG_CMD_CACHE) unless you know
979 what you (and your U-Boot users) are doing. Data 979 what you (and your U-Boot users) are doing. Data
980 cache cannot be enabled on systems like the 8xx or 980 cache cannot be enabled on systems like the 8xx or
981 8260 (where accesses to the IMMR region must be 981 8260 (where accesses to the IMMR region must be
982 uncached), and it cannot be disabled on all other 982 uncached), and it cannot be disabled on all other
983 systems where we (mis-) use the data cache to hold an 983 systems where we (mis-) use the data cache to hold an
984 initial stack and some data. 984 initial stack and some data.
985 985
986 986
987 XXX - this list needs to get updated! 987 XXX - this list needs to get updated!
988 988
989 - Removal of commands 989 - Removal of commands
990 If no commands are needed to boot, you can disable 990 If no commands are needed to boot, you can disable
991 CONFIG_CMDLINE to remove them. In this case, the command line 991 CONFIG_CMDLINE to remove them. In this case, the command line
992 will not be available, and when U-Boot wants to execute the 992 will not be available, and when U-Boot wants to execute the
993 boot command (on start-up) it will call board_run_command() 993 boot command (on start-up) it will call board_run_command()
994 instead. This can reduce image size significantly for very 994 instead. This can reduce image size significantly for very
995 simple boot procedures. 995 simple boot procedures.
996 996
997 - Regular expression support: 997 - Regular expression support:
998 CONFIG_REGEX 998 CONFIG_REGEX
999 If this variable is defined, U-Boot is linked against 999 If this variable is defined, U-Boot is linked against
1000 the SLRE (Super Light Regular Expression) library, 1000 the SLRE (Super Light Regular Expression) library,
1001 which adds regex support to some commands, as for 1001 which adds regex support to some commands, as for
1002 example "env grep" and "setexpr". 1002 example "env grep" and "setexpr".
1003 1003
1004 - Device tree: 1004 - Device tree:
1005 CONFIG_OF_CONTROL 1005 CONFIG_OF_CONTROL
1006 If this variable is defined, U-Boot will use a device tree 1006 If this variable is defined, U-Boot will use a device tree
1007 to configure its devices, instead of relying on statically 1007 to configure its devices, instead of relying on statically
1008 compiled #defines in the board file. This option is 1008 compiled #defines in the board file. This option is
1009 experimental and only available on a few boards. The device 1009 experimental and only available on a few boards. The device
1010 tree is available in the global data as gd->fdt_blob. 1010 tree is available in the global data as gd->fdt_blob.
1011 1011
1012 U-Boot needs to get its device tree from somewhere. This can 1012 U-Boot needs to get its device tree from somewhere. This can
1013 be done using one of the two options below: 1013 be done using one of the two options below:
1014 1014
1015 CONFIG_OF_EMBED 1015 CONFIG_OF_EMBED
1016 If this variable is defined, U-Boot will embed a device tree 1016 If this variable is defined, U-Boot will embed a device tree
1017 binary in its image. This device tree file should be in the 1017 binary in its image. This device tree file should be in the
1018 board directory and called <soc>-<board>.dts. The binary file 1018 board directory and called <soc>-<board>.dts. The binary file
1019 is then picked up in board_init_f() and made available through 1019 is then picked up in board_init_f() and made available through
1020 the global data structure as gd->blob. 1020 the global data structure as gd->blob.
1021 1021
1022 CONFIG_OF_SEPARATE 1022 CONFIG_OF_SEPARATE
1023 If this variable is defined, U-Boot will build a device tree 1023 If this variable is defined, U-Boot will build a device tree
1024 binary. It will be called u-boot.dtb. Architecture-specific 1024 binary. It will be called u-boot.dtb. Architecture-specific
1025 code will locate it at run-time. Generally this works by: 1025 code will locate it at run-time. Generally this works by:
1026 1026
1027 cat u-boot.bin u-boot.dtb >image.bin 1027 cat u-boot.bin u-boot.dtb >image.bin
1028 1028
1029 and in fact, U-Boot does this for you, creating a file called 1029 and in fact, U-Boot does this for you, creating a file called
1030 u-boot-dtb.bin which is useful in the common case. You can 1030 u-boot-dtb.bin which is useful in the common case. You can
1031 still use the individual files if you need something more 1031 still use the individual files if you need something more
1032 exotic. 1032 exotic.
1033 1033
1034 - Watchdog: 1034 - Watchdog:
1035 CONFIG_WATCHDOG 1035 CONFIG_WATCHDOG
1036 If this variable is defined, it enables watchdog 1036 If this variable is defined, it enables watchdog
1037 support for the SoC. There must be support in the SoC 1037 support for the SoC. There must be support in the SoC
1038 specific code for a watchdog. For the 8xx and 8260 1038 specific code for a watchdog. For the 8xx and 8260
1039 CPUs, the SIU Watchdog feature is enabled in the SYPCR 1039 CPUs, the SIU Watchdog feature is enabled in the SYPCR
1040 register. When supported for a specific SoC is 1040 register. When supported for a specific SoC is
1041 available, then no further board specific code should 1041 available, then no further board specific code should
1042 be needed to use it. 1042 be needed to use it.
1043 1043
1044 CONFIG_HW_WATCHDOG 1044 CONFIG_HW_WATCHDOG
1045 When using a watchdog circuitry external to the used 1045 When using a watchdog circuitry external to the used
1046 SoC, then define this variable and provide board 1046 SoC, then define this variable and provide board
1047 specific code for the "hw_watchdog_reset" function. 1047 specific code for the "hw_watchdog_reset" function.
1048 1048
1049 CONFIG_AT91_HW_WDT_TIMEOUT 1049 CONFIG_AT91_HW_WDT_TIMEOUT
1050 specify the timeout in seconds. default 2 seconds. 1050 specify the timeout in seconds. default 2 seconds.
1051 1051
1052 - U-Boot Version: 1052 - U-Boot Version:
1053 CONFIG_VERSION_VARIABLE 1053 CONFIG_VERSION_VARIABLE
1054 If this variable is defined, an environment variable 1054 If this variable is defined, an environment variable
1055 named "ver" is created by U-Boot showing the U-Boot 1055 named "ver" is created by U-Boot showing the U-Boot
1056 version as printed by the "version" command. 1056 version as printed by the "version" command.
1057 Any change to this variable will be reverted at the 1057 Any change to this variable will be reverted at the
1058 next reset. 1058 next reset.
1059 1059
1060 - Real-Time Clock: 1060 - Real-Time Clock:
1061 1061
1062 When CONFIG_CMD_DATE is selected, the type of the RTC 1062 When CONFIG_CMD_DATE is selected, the type of the RTC
1063 has to be selected, too. Define exactly one of the 1063 has to be selected, too. Define exactly one of the
1064 following options: 1064 following options:
1065 1065
1066 CONFIG_RTC_MPC8xx - use internal RTC of MPC8xx 1066 CONFIG_RTC_MPC8xx - use internal RTC of MPC8xx
1067 CONFIG_RTC_PCF8563 - use Philips PCF8563 RTC 1067 CONFIG_RTC_PCF8563 - use Philips PCF8563 RTC
1068 CONFIG_RTC_MC13XXX - use MC13783 or MC13892 RTC 1068 CONFIG_RTC_MC13XXX - use MC13783 or MC13892 RTC
1069 CONFIG_RTC_MC146818 - use MC146818 RTC 1069 CONFIG_RTC_MC146818 - use MC146818 RTC
1070 CONFIG_RTC_DS1307 - use Maxim, Inc. DS1307 RTC 1070 CONFIG_RTC_DS1307 - use Maxim, Inc. DS1307 RTC
1071 CONFIG_RTC_DS1337 - use Maxim, Inc. DS1337 RTC 1071 CONFIG_RTC_DS1337 - use Maxim, Inc. DS1337 RTC
1072 CONFIG_RTC_DS1338 - use Maxim, Inc. DS1338 RTC 1072 CONFIG_RTC_DS1338 - use Maxim, Inc. DS1338 RTC
1073 CONFIG_RTC_DS1339 - use Maxim, Inc. DS1339 RTC 1073 CONFIG_RTC_DS1339 - use Maxim, Inc. DS1339 RTC
1074 CONFIG_RTC_DS164x - use Dallas DS164x RTC 1074 CONFIG_RTC_DS164x - use Dallas DS164x RTC
1075 CONFIG_RTC_ISL1208 - use Intersil ISL1208 RTC 1075 CONFIG_RTC_ISL1208 - use Intersil ISL1208 RTC
1076 CONFIG_RTC_MAX6900 - use Maxim, Inc. MAX6900 RTC 1076 CONFIG_RTC_MAX6900 - use Maxim, Inc. MAX6900 RTC
1077 CONFIG_SYS_RTC_DS1337_NOOSC - Turn off the OSC output for DS1337 1077 CONFIG_SYS_RTC_DS1337_NOOSC - Turn off the OSC output for DS1337
1078 CONFIG_SYS_RV3029_TCR - enable trickle charger on 1078 CONFIG_SYS_RV3029_TCR - enable trickle charger on
1079 RV3029 RTC. 1079 RV3029 RTC.
1080 1080
1081 Note that if the RTC uses I2C, then the I2C interface 1081 Note that if the RTC uses I2C, then the I2C interface
1082 must also be configured. See I2C Support, below. 1082 must also be configured. See I2C Support, below.
1083 1083
1084 - GPIO Support: 1084 - GPIO Support:
1085 CONFIG_PCA953X - use NXP's PCA953X series I2C GPIO 1085 CONFIG_PCA953X - use NXP's PCA953X series I2C GPIO
1086 1086
1087 The CONFIG_SYS_I2C_PCA953X_WIDTH option specifies a list of 1087 The CONFIG_SYS_I2C_PCA953X_WIDTH option specifies a list of
1088 chip-ngpio pairs that tell the PCA953X driver the number of 1088 chip-ngpio pairs that tell the PCA953X driver the number of
1089 pins supported by a particular chip. 1089 pins supported by a particular chip.
1090 1090
1091 Note that if the GPIO device uses I2C, then the I2C interface 1091 Note that if the GPIO device uses I2C, then the I2C interface
1092 must also be configured. See I2C Support, below. 1092 must also be configured. See I2C Support, below.
1093 1093
1094 - I/O tracing: 1094 - I/O tracing:
1095 When CONFIG_IO_TRACE is selected, U-Boot intercepts all I/O 1095 When CONFIG_IO_TRACE is selected, U-Boot intercepts all I/O
1096 accesses and can checksum them or write a list of them out 1096 accesses and can checksum them or write a list of them out
1097 to memory. See the 'iotrace' command for details. This is 1097 to memory. See the 'iotrace' command for details. This is
1098 useful for testing device drivers since it can confirm that 1098 useful for testing device drivers since it can confirm that
1099 the driver behaves the same way before and after a code 1099 the driver behaves the same way before and after a code
1100 change. Currently this is supported on sandbox and arm. To 1100 change. Currently this is supported on sandbox and arm. To
1101 add support for your architecture, add '#include <iotrace.h>' 1101 add support for your architecture, add '#include <iotrace.h>'
1102 to the bottom of arch/<arch>/include/asm/io.h and test. 1102 to the bottom of arch/<arch>/include/asm/io.h and test.
1103 1103
1104 Example output from the 'iotrace stats' command is below. 1104 Example output from the 'iotrace stats' command is below.
1105 Note that if the trace buffer is exhausted, the checksum will 1105 Note that if the trace buffer is exhausted, the checksum will
1106 still continue to operate. 1106 still continue to operate.
1107 1107
1108 iotrace is enabled 1108 iotrace is enabled
1109 Start: 10000000 (buffer start address) 1109 Start: 10000000 (buffer start address)
1110 Size: 00010000 (buffer size) 1110 Size: 00010000 (buffer size)
1111 Offset: 00000120 (current buffer offset) 1111 Offset: 00000120 (current buffer offset)
1112 Output: 10000120 (start + offset) 1112 Output: 10000120 (start + offset)
1113 Count: 00000018 (number of trace records) 1113 Count: 00000018 (number of trace records)
1114 CRC32: 9526fb66 (CRC32 of all trace records) 1114 CRC32: 9526fb66 (CRC32 of all trace records)
1115 1115
1116 - Timestamp Support: 1116 - Timestamp Support:
1117 1117
1118 When CONFIG_TIMESTAMP is selected, the timestamp 1118 When CONFIG_TIMESTAMP is selected, the timestamp
1119 (date and time) of an image is printed by image 1119 (date and time) of an image is printed by image
1120 commands like bootm or iminfo. This option is 1120 commands like bootm or iminfo. This option is
1121 automatically enabled when you select CONFIG_CMD_DATE . 1121 automatically enabled when you select CONFIG_CMD_DATE .
1122 1122
1123 - Partition Labels (disklabels) Supported: 1123 - Partition Labels (disklabels) Supported:
1124 Zero or more of the following: 1124 Zero or more of the following:
1125 CONFIG_MAC_PARTITION Apple's MacOS partition table. 1125 CONFIG_MAC_PARTITION Apple's MacOS partition table.
1126 CONFIG_DOS_PARTITION MS Dos partition table, traditional on the 1126 CONFIG_DOS_PARTITION MS Dos partition table, traditional on the
1127 Intel architecture, USB sticks, etc. 1127 Intel architecture, USB sticks, etc.
1128 CONFIG_ISO_PARTITION ISO partition table, used on CDROM etc. 1128 CONFIG_ISO_PARTITION ISO partition table, used on CDROM etc.
1129 CONFIG_EFI_PARTITION GPT partition table, common when EFI is the 1129 CONFIG_EFI_PARTITION GPT partition table, common when EFI is the
1130 bootloader. Note 2TB partition limit; see 1130 bootloader. Note 2TB partition limit; see
1131 disk/part_efi.c 1131 disk/part_efi.c
1132 CONFIG_MTD_PARTITIONS Memory Technology Device partition table. 1132 CONFIG_MTD_PARTITIONS Memory Technology Device partition table.
1133 1133
1134 If IDE or SCSI support is enabled (CONFIG_CMD_IDE or 1134 If IDE or SCSI support is enabled (CONFIG_CMD_IDE or
1135 CONFIG_SCSI) you must configure support for at 1135 CONFIG_SCSI) you must configure support for at
1136 least one non-MTD partition type as well. 1136 least one non-MTD partition type as well.
1137 1137
1138 - IDE Reset method: 1138 - IDE Reset method:
1139 CONFIG_IDE_RESET_ROUTINE - this is defined in several 1139 CONFIG_IDE_RESET_ROUTINE - this is defined in several
1140 board configurations files but used nowhere! 1140 board configurations files but used nowhere!
1141 1141
1142 CONFIG_IDE_RESET - is this is defined, IDE Reset will 1142 CONFIG_IDE_RESET - is this is defined, IDE Reset will
1143 be performed by calling the function 1143 be performed by calling the function
1144 ide_set_reset(int reset) 1144 ide_set_reset(int reset)
1145 which has to be defined in a board specific file 1145 which has to be defined in a board specific file
1146 1146
1147 - ATAPI Support: 1147 - ATAPI Support:
1148 CONFIG_ATAPI 1148 CONFIG_ATAPI
1149 1149
1150 Set this to enable ATAPI support. 1150 Set this to enable ATAPI support.
1151 1151
1152 - LBA48 Support 1152 - LBA48 Support
1153 CONFIG_LBA48 1153 CONFIG_LBA48
1154 1154
1155 Set this to enable support for disks larger than 137GB 1155 Set this to enable support for disks larger than 137GB
1156 Also look at CONFIG_SYS_64BIT_LBA. 1156 Also look at CONFIG_SYS_64BIT_LBA.
1157 Whithout these , LBA48 support uses 32bit variables and will 'only' 1157 Whithout these , LBA48 support uses 32bit variables and will 'only'
1158 support disks up to 2.1TB. 1158 support disks up to 2.1TB.
1159 1159
1160 CONFIG_SYS_64BIT_LBA: 1160 CONFIG_SYS_64BIT_LBA:
1161 When enabled, makes the IDE subsystem use 64bit sector addresses. 1161 When enabled, makes the IDE subsystem use 64bit sector addresses.
1162 Default is 32bit. 1162 Default is 32bit.
1163 1163
1164 - SCSI Support: 1164 - SCSI Support:
1165 At the moment only there is only support for the 1165 At the moment only there is only support for the
1166 SYM53C8XX SCSI controller; define 1166 SYM53C8XX SCSI controller; define
1167 CONFIG_SCSI_SYM53C8XX to enable it. 1167 CONFIG_SCSI_SYM53C8XX to enable it.
1168 1168
1169 CONFIG_SYS_SCSI_MAX_LUN [8], CONFIG_SYS_SCSI_MAX_SCSI_ID [7] and 1169 CONFIG_SYS_SCSI_MAX_LUN [8], CONFIG_SYS_SCSI_MAX_SCSI_ID [7] and
1170 CONFIG_SYS_SCSI_MAX_DEVICE [CONFIG_SYS_SCSI_MAX_SCSI_ID * 1170 CONFIG_SYS_SCSI_MAX_DEVICE [CONFIG_SYS_SCSI_MAX_SCSI_ID *
1171 CONFIG_SYS_SCSI_MAX_LUN] can be adjusted to define the 1171 CONFIG_SYS_SCSI_MAX_LUN] can be adjusted to define the
1172 maximum numbers of LUNs, SCSI ID's and target 1172 maximum numbers of LUNs, SCSI ID's and target
1173 devices. 1173 devices.
1174 CONFIG_SYS_SCSI_SYM53C8XX_CCF to fix clock timing (80Mhz) 1174 CONFIG_SYS_SCSI_SYM53C8XX_CCF to fix clock timing (80Mhz)
1175 1175
1176 The environment variable 'scsidevs' is set to the number of 1176 The environment variable 'scsidevs' is set to the number of
1177 SCSI devices found during the last scan. 1177 SCSI devices found during the last scan.
1178 1178
1179 - NETWORK Support (PCI): 1179 - NETWORK Support (PCI):
1180 CONFIG_E1000 1180 CONFIG_E1000
1181 Support for Intel 8254x/8257x gigabit chips. 1181 Support for Intel 8254x/8257x gigabit chips.
1182 1182
1183 CONFIG_E1000_SPI 1183 CONFIG_E1000_SPI
1184 Utility code for direct access to the SPI bus on Intel 8257x. 1184 Utility code for direct access to the SPI bus on Intel 8257x.
1185 This does not do anything useful unless you set at least one 1185 This does not do anything useful unless you set at least one
1186 of CONFIG_CMD_E1000 or CONFIG_E1000_SPI_GENERIC. 1186 of CONFIG_CMD_E1000 or CONFIG_E1000_SPI_GENERIC.
1187 1187
1188 CONFIG_E1000_SPI_GENERIC 1188 CONFIG_E1000_SPI_GENERIC
1189 Allow generic access to the SPI bus on the Intel 8257x, for 1189 Allow generic access to the SPI bus on the Intel 8257x, for
1190 example with the "sspi" command. 1190 example with the "sspi" command.
1191 1191
1192 CONFIG_CMD_E1000 1192 CONFIG_CMD_E1000
1193 Management command for E1000 devices. When used on devices 1193 Management command for E1000 devices. When used on devices
1194 with SPI support you can reprogram the EEPROM from U-Boot. 1194 with SPI support you can reprogram the EEPROM from U-Boot.
1195 1195
1196 CONFIG_EEPRO100 1196 CONFIG_EEPRO100
1197 Support for Intel 82557/82559/82559ER chips. 1197 Support for Intel 82557/82559/82559ER chips.
1198 Optional CONFIG_EEPRO100_SROM_WRITE enables EEPROM 1198 Optional CONFIG_EEPRO100_SROM_WRITE enables EEPROM
1199 write routine for first time initialisation. 1199 write routine for first time initialisation.
1200 1200
1201 CONFIG_TULIP 1201 CONFIG_TULIP
1202 Support for Digital 2114x chips. 1202 Support for Digital 2114x chips.
1203 Optional CONFIG_TULIP_SELECT_MEDIA for board specific 1203 Optional CONFIG_TULIP_SELECT_MEDIA for board specific
1204 modem chip initialisation (KS8761/QS6611). 1204 modem chip initialisation (KS8761/QS6611).
1205 1205
1206 CONFIG_NATSEMI 1206 CONFIG_NATSEMI
1207 Support for National dp83815 chips. 1207 Support for National dp83815 chips.
1208 1208
1209 CONFIG_NS8382X 1209 CONFIG_NS8382X
1210 Support for National dp8382[01] gigabit chips. 1210 Support for National dp8382[01] gigabit chips.
1211 1211
1212 - NETWORK Support (other): 1212 - NETWORK Support (other):
1213 1213
1214 CONFIG_DRIVER_AT91EMAC 1214 CONFIG_DRIVER_AT91EMAC
1215 Support for AT91RM9200 EMAC. 1215 Support for AT91RM9200 EMAC.
1216 1216
1217 CONFIG_RMII 1217 CONFIG_RMII
1218 Define this to use reduced MII inteface 1218 Define this to use reduced MII inteface
1219 1219
1220 CONFIG_DRIVER_AT91EMAC_QUIET 1220 CONFIG_DRIVER_AT91EMAC_QUIET
1221 If this defined, the driver is quiet. 1221 If this defined, the driver is quiet.
1222 The driver doen't show link status messages. 1222 The driver doen't show link status messages.
1223 1223
1224 CONFIG_CALXEDA_XGMAC 1224 CONFIG_CALXEDA_XGMAC
1225 Support for the Calxeda XGMAC device 1225 Support for the Calxeda XGMAC device
1226 1226
1227 CONFIG_LAN91C96 1227 CONFIG_LAN91C96
1228 Support for SMSC's LAN91C96 chips. 1228 Support for SMSC's LAN91C96 chips.
1229 1229
1230 CONFIG_LAN91C96_USE_32_BIT 1230 CONFIG_LAN91C96_USE_32_BIT
1231 Define this to enable 32 bit addressing 1231 Define this to enable 32 bit addressing
1232 1232
1233 CONFIG_SMC91111 1233 CONFIG_SMC91111
1234 Support for SMSC's LAN91C111 chip 1234 Support for SMSC's LAN91C111 chip
1235 1235
1236 CONFIG_SMC91111_BASE 1236 CONFIG_SMC91111_BASE
1237 Define this to hold the physical address 1237 Define this to hold the physical address
1238 of the device (I/O space) 1238 of the device (I/O space)
1239 1239
1240 CONFIG_SMC_USE_32_BIT 1240 CONFIG_SMC_USE_32_BIT
1241 Define this if data bus is 32 bits 1241 Define this if data bus is 32 bits
1242 1242
1243 CONFIG_SMC_USE_IOFUNCS 1243 CONFIG_SMC_USE_IOFUNCS
1244 Define this to use i/o functions instead of macros 1244 Define this to use i/o functions instead of macros
1245 (some hardware wont work with macros) 1245 (some hardware wont work with macros)
1246 1246
1247 CONFIG_DRIVER_TI_EMAC 1247 CONFIG_DRIVER_TI_EMAC
1248 Support for davinci emac 1248 Support for davinci emac
1249 1249
1250 CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT 1250 CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT
1251 Define this if you have more then 3 PHYs. 1251 Define this if you have more then 3 PHYs.
1252 1252
1253 CONFIG_FTGMAC100 1253 CONFIG_FTGMAC100
1254 Support for Faraday's FTGMAC100 Gigabit SoC Ethernet 1254 Support for Faraday's FTGMAC100 Gigabit SoC Ethernet
1255 1255
1256 CONFIG_FTGMAC100_EGIGA 1256 CONFIG_FTGMAC100_EGIGA
1257 Define this to use GE link update with gigabit PHY. 1257 Define this to use GE link update with gigabit PHY.
1258 Define this if FTGMAC100 is connected to gigabit PHY. 1258 Define this if FTGMAC100 is connected to gigabit PHY.
1259 If your system has 10/100 PHY only, it might not occur 1259 If your system has 10/100 PHY only, it might not occur
1260 wrong behavior. Because PHY usually return timeout or 1260 wrong behavior. Because PHY usually return timeout or
1261 useless data when polling gigabit status and gigabit 1261 useless data when polling gigabit status and gigabit
1262 control registers. This behavior won't affect the 1262 control registers. This behavior won't affect the
1263 correctnessof 10/100 link speed update. 1263 correctnessof 10/100 link speed update.
1264 1264
1265 CONFIG_SMC911X 1265 CONFIG_SMC911X
1266 Support for SMSC's LAN911x and LAN921x chips 1266 Support for SMSC's LAN911x and LAN921x chips
1267 1267
1268 CONFIG_SMC911X_BASE 1268 CONFIG_SMC911X_BASE
1269 Define this to hold the physical address 1269 Define this to hold the physical address
1270 of the device (I/O space) 1270 of the device (I/O space)
1271 1271
1272 CONFIG_SMC911X_32_BIT 1272 CONFIG_SMC911X_32_BIT
1273 Define this if data bus is 32 bits 1273 Define this if data bus is 32 bits
1274 1274
1275 CONFIG_SMC911X_16_BIT 1275 CONFIG_SMC911X_16_BIT
1276 Define this if data bus is 16 bits. If your processor 1276 Define this if data bus is 16 bits. If your processor
1277 automatically converts one 32 bit word to two 16 bit 1277 automatically converts one 32 bit word to two 16 bit
1278 words you may also try CONFIG_SMC911X_32_BIT. 1278 words you may also try CONFIG_SMC911X_32_BIT.
1279 1279
1280 CONFIG_SH_ETHER 1280 CONFIG_SH_ETHER
1281 Support for Renesas on-chip Ethernet controller 1281 Support for Renesas on-chip Ethernet controller
1282 1282
1283 CONFIG_SH_ETHER_USE_PORT 1283 CONFIG_SH_ETHER_USE_PORT
1284 Define the number of ports to be used 1284 Define the number of ports to be used
1285 1285
1286 CONFIG_SH_ETHER_PHY_ADDR 1286 CONFIG_SH_ETHER_PHY_ADDR
1287 Define the ETH PHY's address 1287 Define the ETH PHY's address
1288 1288
1289 CONFIG_SH_ETHER_CACHE_WRITEBACK 1289 CONFIG_SH_ETHER_CACHE_WRITEBACK
1290 If this option is set, the driver enables cache flush. 1290 If this option is set, the driver enables cache flush.
1291 1291
1292 - PWM Support: 1292 - PWM Support:
1293 CONFIG_PWM_IMX 1293 CONFIG_PWM_IMX
1294 Support for PWM module on the imx6. 1294 Support for PWM module on the imx6.
1295 1295
1296 - TPM Support: 1296 - TPM Support:
1297 CONFIG_TPM 1297 CONFIG_TPM
1298 Support TPM devices. 1298 Support TPM devices.
1299 1299
1300 CONFIG_TPM_TIS_INFINEON 1300 CONFIG_TPM_TIS_INFINEON
1301 Support for Infineon i2c bus TPM devices. Only one device 1301 Support for Infineon i2c bus TPM devices. Only one device
1302 per system is supported at this time. 1302 per system is supported at this time.
1303 1303
1304 CONFIG_TPM_TIS_I2C_BURST_LIMITATION 1304 CONFIG_TPM_TIS_I2C_BURST_LIMITATION
1305 Define the burst count bytes upper limit 1305 Define the burst count bytes upper limit
1306 1306
1307 CONFIG_TPM_ST33ZP24 1307 CONFIG_TPM_ST33ZP24
1308 Support for STMicroelectronics TPM devices. Requires DM_TPM support. 1308 Support for STMicroelectronics TPM devices. Requires DM_TPM support.
1309 1309
1310 CONFIG_TPM_ST33ZP24_I2C 1310 CONFIG_TPM_ST33ZP24_I2C
1311 Support for STMicroelectronics ST33ZP24 I2C devices. 1311 Support for STMicroelectronics ST33ZP24 I2C devices.
1312 Requires TPM_ST33ZP24 and I2C. 1312 Requires TPM_ST33ZP24 and I2C.
1313 1313
1314 CONFIG_TPM_ST33ZP24_SPI 1314 CONFIG_TPM_ST33ZP24_SPI
1315 Support for STMicroelectronics ST33ZP24 SPI devices. 1315 Support for STMicroelectronics ST33ZP24 SPI devices.
1316 Requires TPM_ST33ZP24 and SPI. 1316 Requires TPM_ST33ZP24 and SPI.
1317 1317
1318 CONFIG_TPM_ATMEL_TWI 1318 CONFIG_TPM_ATMEL_TWI
1319 Support for Atmel TWI TPM device. Requires I2C support. 1319 Support for Atmel TWI TPM device. Requires I2C support.
1320 1320
1321 CONFIG_TPM_TIS_LPC 1321 CONFIG_TPM_TIS_LPC
1322 Support for generic parallel port TPM devices. Only one device 1322 Support for generic parallel port TPM devices. Only one device
1323 per system is supported at this time. 1323 per system is supported at this time.
1324 1324
1325 CONFIG_TPM_TIS_BASE_ADDRESS 1325 CONFIG_TPM_TIS_BASE_ADDRESS
1326 Base address where the generic TPM device is mapped 1326 Base address where the generic TPM device is mapped
1327 to. Contemporary x86 systems usually map it at 1327 to. Contemporary x86 systems usually map it at
1328 0xfed40000. 1328 0xfed40000.
1329 1329
1330 CONFIG_CMD_TPM 1330 CONFIG_CMD_TPM
1331 Add tpm monitor functions. 1331 Add tpm monitor functions.
1332 Requires CONFIG_TPM. If CONFIG_TPM_AUTH_SESSIONS is set, also 1332 Requires CONFIG_TPM. If CONFIG_TPM_AUTH_SESSIONS is set, also
1333 provides monitor access to authorized functions. 1333 provides monitor access to authorized functions.
1334 1334
1335 CONFIG_TPM 1335 CONFIG_TPM
1336 Define this to enable the TPM support library which provides 1336 Define this to enable the TPM support library which provides
1337 functional interfaces to some TPM commands. 1337 functional interfaces to some TPM commands.
1338 Requires support for a TPM device. 1338 Requires support for a TPM device.
1339 1339
1340 CONFIG_TPM_AUTH_SESSIONS 1340 CONFIG_TPM_AUTH_SESSIONS
1341 Define this to enable authorized functions in the TPM library. 1341 Define this to enable authorized functions in the TPM library.
1342 Requires CONFIG_TPM and CONFIG_SHA1. 1342 Requires CONFIG_TPM and CONFIG_SHA1.
1343 1343
1344 - USB Support: 1344 - USB Support:
1345 At the moment only the UHCI host controller is 1345 At the moment only the UHCI host controller is
1346 supported (PIP405, MIP405, MPC5200); define 1346 supported (PIP405, MIP405, MPC5200); define
1347 CONFIG_USB_UHCI to enable it. 1347 CONFIG_USB_UHCI to enable it.
1348 define CONFIG_USB_KEYBOARD to enable the USB Keyboard 1348 define CONFIG_USB_KEYBOARD to enable the USB Keyboard
1349 and define CONFIG_USB_STORAGE to enable the USB 1349 and define CONFIG_USB_STORAGE to enable the USB
1350 storage devices. 1350 storage devices.
1351 Note: 1351 Note:
1352 Supported are USB Keyboards and USB Floppy drives 1352 Supported are USB Keyboards and USB Floppy drives
1353 (TEAC FD-05PUB). 1353 (TEAC FD-05PUB).
1354 MPC5200 USB requires additional defines: 1354 MPC5200 USB requires additional defines:
1355 CONFIG_USB_CLOCK 1355 CONFIG_USB_CLOCK
1356 for 528 MHz Clock: 0x0001bbbb 1356 for 528 MHz Clock: 0x0001bbbb
1357 CONFIG_PSC3_USB 1357 CONFIG_PSC3_USB
1358 for USB on PSC3 1358 for USB on PSC3
1359 CONFIG_USB_CONFIG 1359 CONFIG_USB_CONFIG
1360 for differential drivers: 0x00001000 1360 for differential drivers: 0x00001000
1361 for single ended drivers: 0x00005000 1361 for single ended drivers: 0x00005000
1362 for differential drivers on PSC3: 0x00000100 1362 for differential drivers on PSC3: 0x00000100
1363 for single ended drivers on PSC3: 0x00004100 1363 for single ended drivers on PSC3: 0x00004100
1364 CONFIG_SYS_USB_EVENT_POLL 1364 CONFIG_SYS_USB_EVENT_POLL
1365 May be defined to allow interrupt polling 1365 May be defined to allow interrupt polling
1366 instead of using asynchronous interrupts 1366 instead of using asynchronous interrupts
1367 1367
1368 CONFIG_USB_EHCI_TXFIFO_THRESH enables setting of the 1368 CONFIG_USB_EHCI_TXFIFO_THRESH enables setting of the
1369 txfilltuning field in the EHCI controller on reset. 1369 txfilltuning field in the EHCI controller on reset.
1370 1370
1371 CONFIG_USB_DWC2_REG_ADDR the physical CPU address of the DWC2 1371 CONFIG_USB_DWC2_REG_ADDR the physical CPU address of the DWC2
1372 HW module registers. 1372 HW module registers.
1373 1373
1374 - USB Device: 1374 - USB Device:
1375 Define the below if you wish to use the USB console. 1375 Define the below if you wish to use the USB console.
1376 Once firmware is rebuilt from a serial console issue the 1376 Once firmware is rebuilt from a serial console issue the
1377 command "setenv stdin usbtty; setenv stdout usbtty" and 1377 command "setenv stdin usbtty; setenv stdout usbtty" and
1378 attach your USB cable. The Unix command "dmesg" should print 1378 attach your USB cable. The Unix command "dmesg" should print
1379 it has found a new device. The environment variable usbtty 1379 it has found a new device. The environment variable usbtty
1380 can be set to gserial or cdc_acm to enable your device to 1380 can be set to gserial or cdc_acm to enable your device to
1381 appear to a USB host as a Linux gserial device or a 1381 appear to a USB host as a Linux gserial device or a
1382 Common Device Class Abstract Control Model serial device. 1382 Common Device Class Abstract Control Model serial device.
1383 If you select usbtty = gserial you should be able to enumerate 1383 If you select usbtty = gserial you should be able to enumerate
1384 a Linux host by 1384 a Linux host by
1385 # modprobe usbserial vendor=0xVendorID product=0xProductID 1385 # modprobe usbserial vendor=0xVendorID product=0xProductID
1386 else if using cdc_acm, simply setting the environment 1386 else if using cdc_acm, simply setting the environment
1387 variable usbtty to be cdc_acm should suffice. The following 1387 variable usbtty to be cdc_acm should suffice. The following
1388 might be defined in YourBoardName.h 1388 might be defined in YourBoardName.h
1389 1389
1390 CONFIG_USB_DEVICE 1390 CONFIG_USB_DEVICE
1391 Define this to build a UDC device 1391 Define this to build a UDC device
1392 1392
1393 CONFIG_USB_TTY 1393 CONFIG_USB_TTY
1394 Define this to have a tty type of device available to 1394 Define this to have a tty type of device available to
1395 talk to the UDC device 1395 talk to the UDC device
1396 1396
1397 CONFIG_USBD_HS 1397 CONFIG_USBD_HS
1398 Define this to enable the high speed support for usb 1398 Define this to enable the high speed support for usb
1399 device and usbtty. If this feature is enabled, a routine 1399 device and usbtty. If this feature is enabled, a routine
1400 int is_usbd_high_speed(void) 1400 int is_usbd_high_speed(void)
1401 also needs to be defined by the driver to dynamically poll 1401 also needs to be defined by the driver to dynamically poll
1402 whether the enumeration has succeded at high speed or full 1402 whether the enumeration has succeded at high speed or full
1403 speed. 1403 speed.
1404 1404
1405 CONFIG_SYS_CONSOLE_IS_IN_ENV 1405 CONFIG_SYS_CONSOLE_IS_IN_ENV
1406 Define this if you want stdin, stdout &/or stderr to 1406 Define this if you want stdin, stdout &/or stderr to
1407 be set to usbtty. 1407 be set to usbtty.
1408 1408
1409 mpc8xx: 1409 mpc8xx:
1410 CONFIG_SYS_USB_EXTC_CLK 0xBLAH 1410 CONFIG_SYS_USB_EXTC_CLK 0xBLAH
1411 Derive USB clock from external clock "blah" 1411 Derive USB clock from external clock "blah"
1412 - CONFIG_SYS_USB_EXTC_CLK 0x02 1412 - CONFIG_SYS_USB_EXTC_CLK 0x02
1413 1413
1414 If you have a USB-IF assigned VendorID then you may wish to 1414 If you have a USB-IF assigned VendorID then you may wish to
1415 define your own vendor specific values either in BoardName.h 1415 define your own vendor specific values either in BoardName.h
1416 or directly in usbd_vendor_info.h. If you don't define 1416 or directly in usbd_vendor_info.h. If you don't define
1417 CONFIG_USBD_MANUFACTURER, CONFIG_USBD_PRODUCT_NAME, 1417 CONFIG_USBD_MANUFACTURER, CONFIG_USBD_PRODUCT_NAME,
1418 CONFIG_USBD_VENDORID and CONFIG_USBD_PRODUCTID, then U-Boot 1418 CONFIG_USBD_VENDORID and CONFIG_USBD_PRODUCTID, then U-Boot
1419 should pretend to be a Linux device to it's target host. 1419 should pretend to be a Linux device to it's target host.
1420 1420
1421 CONFIG_USBD_MANUFACTURER 1421 CONFIG_USBD_MANUFACTURER
1422 Define this string as the name of your company for 1422 Define this string as the name of your company for
1423 - CONFIG_USBD_MANUFACTURER "my company" 1423 - CONFIG_USBD_MANUFACTURER "my company"
1424 1424
1425 CONFIG_USBD_PRODUCT_NAME 1425 CONFIG_USBD_PRODUCT_NAME
1426 Define this string as the name of your product 1426 Define this string as the name of your product
1427 - CONFIG_USBD_PRODUCT_NAME "acme usb device" 1427 - CONFIG_USBD_PRODUCT_NAME "acme usb device"
1428 1428
1429 CONFIG_USBD_VENDORID 1429 CONFIG_USBD_VENDORID
1430 Define this as your assigned Vendor ID from the USB 1430 Define this as your assigned Vendor ID from the USB
1431 Implementors Forum. This *must* be a genuine Vendor ID 1431 Implementors Forum. This *must* be a genuine Vendor ID
1432 to avoid polluting the USB namespace. 1432 to avoid polluting the USB namespace.
1433 - CONFIG_USBD_VENDORID 0xFFFF 1433 - CONFIG_USBD_VENDORID 0xFFFF
1434 1434
1435 CONFIG_USBD_PRODUCTID 1435 CONFIG_USBD_PRODUCTID
1436 Define this as the unique Product ID 1436 Define this as the unique Product ID
1437 for your device 1437 for your device
1438 - CONFIG_USBD_PRODUCTID 0xFFFF 1438 - CONFIG_USBD_PRODUCTID 0xFFFF
1439 1439
1440 - ULPI Layer Support: 1440 - ULPI Layer Support:
1441 The ULPI (UTMI Low Pin (count) Interface) PHYs are supported via 1441 The ULPI (UTMI Low Pin (count) Interface) PHYs are supported via
1442 the generic ULPI layer. The generic layer accesses the ULPI PHY 1442 the generic ULPI layer. The generic layer accesses the ULPI PHY
1443 via the platform viewport, so you need both the genric layer and 1443 via the platform viewport, so you need both the genric layer and
1444 the viewport enabled. Currently only Chipidea/ARC based 1444 the viewport enabled. Currently only Chipidea/ARC based
1445 viewport is supported. 1445 viewport is supported.
1446 To enable the ULPI layer support, define CONFIG_USB_ULPI and 1446 To enable the ULPI layer support, define CONFIG_USB_ULPI and
1447 CONFIG_USB_ULPI_VIEWPORT in your board configuration file. 1447 CONFIG_USB_ULPI_VIEWPORT in your board configuration file.
1448 If your ULPI phy needs a different reference clock than the 1448 If your ULPI phy needs a different reference clock than the
1449 standard 24 MHz then you have to define CONFIG_ULPI_REF_CLK to 1449 standard 24 MHz then you have to define CONFIG_ULPI_REF_CLK to
1450 the appropriate value in Hz. 1450 the appropriate value in Hz.
1451 1451
1452 - MMC Support: 1452 - MMC Support:
1453 The MMC controller on the Intel PXA is supported. To 1453 The MMC controller on the Intel PXA is supported. To
1454 enable this define CONFIG_MMC. The MMC can be 1454 enable this define CONFIG_MMC. The MMC can be
1455 accessed from the boot prompt by mapping the device 1455 accessed from the boot prompt by mapping the device
1456 to physical memory similar to flash. Command line is 1456 to physical memory similar to flash. Command line is
1457 enabled with CONFIG_CMD_MMC. The MMC driver also works with 1457 enabled with CONFIG_CMD_MMC. The MMC driver also works with
1458 the FAT fs. This is enabled with CONFIG_CMD_FAT. 1458 the FAT fs. This is enabled with CONFIG_CMD_FAT.
1459 1459
1460 CONFIG_SH_MMCIF 1460 CONFIG_SH_MMCIF
1461 Support for Renesas on-chip MMCIF controller 1461 Support for Renesas on-chip MMCIF controller
1462 1462
1463 CONFIG_SH_MMCIF_ADDR 1463 CONFIG_SH_MMCIF_ADDR
1464 Define the base address of MMCIF registers 1464 Define the base address of MMCIF registers
1465 1465
1466 CONFIG_SH_MMCIF_CLK 1466 CONFIG_SH_MMCIF_CLK
1467 Define the clock frequency for MMCIF 1467 Define the clock frequency for MMCIF
1468 1468
1469 CONFIG_GENERIC_MMC 1469 CONFIG_GENERIC_MMC
1470 Enable the generic MMC driver 1470 Enable the generic MMC driver
1471 1471
1472 CONFIG_SUPPORT_EMMC_BOOT 1472 CONFIG_SUPPORT_EMMC_BOOT
1473 Enable some additional features of the eMMC boot partitions. 1473 Enable some additional features of the eMMC boot partitions.
1474 1474
1475 CONFIG_SUPPORT_EMMC_RPMB 1475 CONFIG_SUPPORT_EMMC_RPMB
1476 Enable the commands for reading, writing and programming the 1476 Enable the commands for reading, writing and programming the
1477 key for the Replay Protection Memory Block partition in eMMC. 1477 key for the Replay Protection Memory Block partition in eMMC.
1478 1478
1479 - USB Device Firmware Update (DFU) class support: 1479 - USB Device Firmware Update (DFU) class support:
1480 CONFIG_USB_FUNCTION_DFU 1480 CONFIG_USB_FUNCTION_DFU
1481 This enables the USB portion of the DFU USB class 1481 This enables the USB portion of the DFU USB class
1482 1482
1483 CONFIG_CMD_DFU 1483 CONFIG_CMD_DFU
1484 This enables the command "dfu" which is used to have 1484 This enables the command "dfu" which is used to have
1485 U-Boot create a DFU class device via USB. This command 1485 U-Boot create a DFU class device via USB. This command
1486 requires that the "dfu_alt_info" environment variable be 1486 requires that the "dfu_alt_info" environment variable be
1487 set and define the alt settings to expose to the host. 1487 set and define the alt settings to expose to the host.
1488 1488
1489 CONFIG_DFU_MMC 1489 CONFIG_DFU_MMC
1490 This enables support for exposing (e)MMC devices via DFU. 1490 This enables support for exposing (e)MMC devices via DFU.
1491 1491
1492 CONFIG_DFU_NAND 1492 CONFIG_DFU_NAND
1493 This enables support for exposing NAND devices via DFU. 1493 This enables support for exposing NAND devices via DFU.
1494 1494
1495 CONFIG_DFU_RAM 1495 CONFIG_DFU_RAM
1496 This enables support for exposing RAM via DFU. 1496 This enables support for exposing RAM via DFU.
1497 Note: DFU spec refer to non-volatile memory usage, but 1497 Note: DFU spec refer to non-volatile memory usage, but
1498 allow usages beyond the scope of spec - here RAM usage, 1498 allow usages beyond the scope of spec - here RAM usage,
1499 one that would help mostly the developer. 1499 one that would help mostly the developer.
1500 1500
1501 CONFIG_SYS_DFU_DATA_BUF_SIZE 1501 CONFIG_SYS_DFU_DATA_BUF_SIZE
1502 Dfu transfer uses a buffer before writing data to the 1502 Dfu transfer uses a buffer before writing data to the
1503 raw storage device. Make the size (in bytes) of this buffer 1503 raw storage device. Make the size (in bytes) of this buffer
1504 configurable. The size of this buffer is also configurable 1504 configurable. The size of this buffer is also configurable
1505 through the "dfu_bufsiz" environment variable. 1505 through the "dfu_bufsiz" environment variable.
1506 1506
1507 CONFIG_SYS_DFU_MAX_FILE_SIZE 1507 CONFIG_SYS_DFU_MAX_FILE_SIZE
1508 When updating files rather than the raw storage device, 1508 When updating files rather than the raw storage device,
1509 we use a static buffer to copy the file into and then write 1509 we use a static buffer to copy the file into and then write
1510 the buffer once we've been given the whole file. Define 1510 the buffer once we've been given the whole file. Define
1511 this to the maximum filesize (in bytes) for the buffer. 1511 this to the maximum filesize (in bytes) for the buffer.
1512 Default is 4 MiB if undefined. 1512 Default is 4 MiB if undefined.
1513 1513
1514 DFU_DEFAULT_POLL_TIMEOUT 1514 DFU_DEFAULT_POLL_TIMEOUT
1515 Poll timeout [ms], is the timeout a device can send to the 1515 Poll timeout [ms], is the timeout a device can send to the
1516 host. The host must wait for this timeout before sending 1516 host. The host must wait for this timeout before sending
1517 a subsequent DFU_GET_STATUS request to the device. 1517 a subsequent DFU_GET_STATUS request to the device.
1518 1518
1519 DFU_MANIFEST_POLL_TIMEOUT 1519 DFU_MANIFEST_POLL_TIMEOUT
1520 Poll timeout [ms], which the device sends to the host when 1520 Poll timeout [ms], which the device sends to the host when
1521 entering dfuMANIFEST state. Host waits this timeout, before 1521 entering dfuMANIFEST state. Host waits this timeout, before
1522 sending again an USB request to the device. 1522 sending again an USB request to the device.
1523 1523
1524 - USB Device Android Fastboot support: 1524 - USB Device Android Fastboot support:
1525 CONFIG_USB_FUNCTION_FASTBOOT 1525 CONFIG_USB_FUNCTION_FASTBOOT
1526 This enables the USB part of the fastboot gadget 1526 This enables the USB part of the fastboot gadget
1527 1527
1528 CONFIG_CMD_FASTBOOT 1528 CONFIG_CMD_FASTBOOT
1529 This enables the command "fastboot" which enables the Android 1529 This enables the command "fastboot" which enables the Android
1530 fastboot mode for the platform's USB device. Fastboot is a USB 1530 fastboot mode for the platform's USB device. Fastboot is a USB
1531 protocol for downloading images, flashing and device control 1531 protocol for downloading images, flashing and device control
1532 used on Android devices. 1532 used on Android devices.
1533 See doc/README.android-fastboot for more information. 1533 See doc/README.android-fastboot for more information.
1534 1534
1535 CONFIG_ANDROID_BOOT_IMAGE 1535 CONFIG_ANDROID_BOOT_IMAGE
1536 This enables support for booting images which use the Android 1536 This enables support for booting images which use the Android
1537 image format header. 1537 image format header.
1538 1538
1539 CONFIG_FASTBOOT_BUF_ADDR 1539 CONFIG_FASTBOOT_BUF_ADDR
1540 The fastboot protocol requires a large memory buffer for 1540 The fastboot protocol requires a large memory buffer for
1541 downloads. Define this to the starting RAM address to use for 1541 downloads. Define this to the starting RAM address to use for
1542 downloaded images. 1542 downloaded images.
1543 1543
1544 CONFIG_FASTBOOT_BUF_SIZE 1544 CONFIG_FASTBOOT_BUF_SIZE
1545 The fastboot protocol requires a large memory buffer for 1545 The fastboot protocol requires a large memory buffer for
1546 downloads. This buffer should be as large as possible for a 1546 downloads. This buffer should be as large as possible for a
1547 platform. Define this to the size available RAM for fastboot. 1547 platform. Define this to the size available RAM for fastboot.
1548 1548
1549 CONFIG_FASTBOOT_FLASH 1549 CONFIG_FASTBOOT_FLASH
1550 The fastboot protocol includes a "flash" command for writing 1550 The fastboot protocol includes a "flash" command for writing
1551 the downloaded image to a non-volatile storage device. Define 1551 the downloaded image to a non-volatile storage device. Define
1552 this to enable the "fastboot flash" command. 1552 this to enable the "fastboot flash" command.
1553 1553
1554 CONFIG_FASTBOOT_FLASH_MMC_DEV 1554 CONFIG_FASTBOOT_FLASH_MMC_DEV
1555 The fastboot "flash" command requires additional information 1555 The fastboot "flash" command requires additional information
1556 regarding the non-volatile storage device. Define this to 1556 regarding the non-volatile storage device. Define this to
1557 the eMMC device that fastboot should use to store the image. 1557 the eMMC device that fastboot should use to store the image.
1558 1558
1559 CONFIG_FASTBOOT_GPT_NAME 1559 CONFIG_FASTBOOT_GPT_NAME
1560 The fastboot "flash" command supports writing the downloaded 1560 The fastboot "flash" command supports writing the downloaded
1561 image to the Protective MBR and the Primary GUID Partition 1561 image to the Protective MBR and the Primary GUID Partition
1562 Table. (Additionally, this downloaded image is post-processed 1562 Table. (Additionally, this downloaded image is post-processed
1563 to generate and write the Backup GUID Partition Table.) 1563 to generate and write the Backup GUID Partition Table.)
1564 This occurs when the specified "partition name" on the 1564 This occurs when the specified "partition name" on the
1565 "fastboot flash" command line matches this value. 1565 "fastboot flash" command line matches this value.
1566 The default is "gpt" if undefined. 1566 The default is "gpt" if undefined.
1567 1567
1568 CONFIG_FASTBOOT_MBR_NAME 1568 CONFIG_FASTBOOT_MBR_NAME
1569 The fastboot "flash" command supports writing the downloaded 1569 The fastboot "flash" command supports writing the downloaded
1570 image to DOS MBR. 1570 image to DOS MBR.
1571 This occurs when the "partition name" specified on the 1571 This occurs when the "partition name" specified on the
1572 "fastboot flash" command line matches this value. 1572 "fastboot flash" command line matches this value.
1573 If not defined the default value "mbr" is used. 1573 If not defined the default value "mbr" is used.
1574 1574
1575 - Journaling Flash filesystem support: 1575 - Journaling Flash filesystem support:
1576 CONFIG_JFFS2_NAND 1576 CONFIG_JFFS2_NAND
1577 Define these for a default partition on a NAND device 1577 Define these for a default partition on a NAND device
1578 1578
1579 CONFIG_SYS_JFFS2_FIRST_SECTOR, 1579 CONFIG_SYS_JFFS2_FIRST_SECTOR,
1580 CONFIG_SYS_JFFS2_FIRST_BANK, CONFIG_SYS_JFFS2_NUM_BANKS 1580 CONFIG_SYS_JFFS2_FIRST_BANK, CONFIG_SYS_JFFS2_NUM_BANKS
1581 Define these for a default partition on a NOR device 1581 Define these for a default partition on a NOR device
1582 1582
1583 - FAT(File Allocation Table) filesystem write function support: 1583 - FAT(File Allocation Table) filesystem write function support:
1584 CONFIG_FAT_WRITE 1584 CONFIG_FAT_WRITE
1585 1585
1586 Define this to enable support for saving memory data as a 1586 Define this to enable support for saving memory data as a
1587 file in FAT formatted partition. 1587 file in FAT formatted partition.
1588 1588
1589 This will also enable the command "fatwrite" enabling the 1589 This will also enable the command "fatwrite" enabling the
1590 user to write files to FAT. 1590 user to write files to FAT.
1591 1591
1592 CBFS (Coreboot Filesystem) support 1592 CBFS (Coreboot Filesystem) support
1593 CONFIG_CMD_CBFS 1593 CONFIG_CMD_CBFS
1594 1594
1595 Define this to enable support for reading from a Coreboot 1595 Define this to enable support for reading from a Coreboot
1596 filesystem. Available commands are cbfsinit, cbfsinfo, cbfsls 1596 filesystem. Available commands are cbfsinit, cbfsinfo, cbfsls
1597 and cbfsload. 1597 and cbfsload.
1598 1598
1599 - FAT(File Allocation Table) filesystem cluster size: 1599 - FAT(File Allocation Table) filesystem cluster size:
1600 CONFIG_FS_FAT_MAX_CLUSTSIZE 1600 CONFIG_FS_FAT_MAX_CLUSTSIZE
1601 1601
1602 Define the max cluster size for fat operations else 1602 Define the max cluster size for fat operations else
1603 a default value of 65536 will be defined. 1603 a default value of 65536 will be defined.
1604 1604
1605 - Keyboard Support: 1605 - Keyboard Support:
1606 See Kconfig help for available keyboard drivers. 1606 See Kconfig help for available keyboard drivers.
1607 1607
1608 CONFIG_KEYBOARD 1608 CONFIG_KEYBOARD
1609 1609
1610 Define this to enable a custom keyboard support. 1610 Define this to enable a custom keyboard support.
1611 This simply calls drv_keyboard_init() which must be 1611 This simply calls drv_keyboard_init() which must be
1612 defined in your board-specific files. This option is deprecated 1612 defined in your board-specific files. This option is deprecated
1613 and is only used by novena. For new boards, use driver model 1613 and is only used by novena. For new boards, use driver model
1614 instead. 1614 instead.
1615 1615
1616 - Video support: 1616 - Video support:
1617 CONFIG_FSL_DIU_FB 1617 CONFIG_FSL_DIU_FB
1618 Enable the Freescale DIU video driver. Reference boards for 1618 Enable the Freescale DIU video driver. Reference boards for
1619 SOCs that have a DIU should define this macro to enable DIU 1619 SOCs that have a DIU should define this macro to enable DIU
1620 support, and should also define these other macros: 1620 support, and should also define these other macros:
1621 1621
1622 CONFIG_SYS_DIU_ADDR 1622 CONFIG_SYS_DIU_ADDR
1623 CONFIG_VIDEO 1623 CONFIG_VIDEO
1624 CONFIG_CMD_BMP 1624 CONFIG_CMD_BMP
1625 CONFIG_CFB_CONSOLE 1625 CONFIG_CFB_CONSOLE
1626 CONFIG_VIDEO_SW_CURSOR 1626 CONFIG_VIDEO_SW_CURSOR
1627 CONFIG_VGA_AS_SINGLE_DEVICE 1627 CONFIG_VGA_AS_SINGLE_DEVICE
1628 CONFIG_VIDEO_LOGO 1628 CONFIG_VIDEO_LOGO
1629 CONFIG_VIDEO_BMP_LOGO 1629 CONFIG_VIDEO_BMP_LOGO
1630 1630
1631 The DIU driver will look for the 'video-mode' environment 1631 The DIU driver will look for the 'video-mode' environment
1632 variable, and if defined, enable the DIU as a console during 1632 variable, and if defined, enable the DIU as a console during
1633 boot. See the documentation file doc/README.video for a 1633 boot. See the documentation file doc/README.video for a
1634 description of this variable. 1634 description of this variable.
1635 1635
1636 - LCD Support: CONFIG_LCD 1636 - LCD Support: CONFIG_LCD
1637 1637
1638 Define this to enable LCD support (for output to LCD 1638 Define this to enable LCD support (for output to LCD
1639 display); also select one of the supported displays 1639 display); also select one of the supported displays
1640 by defining one of these: 1640 by defining one of these:
1641 1641
1642 CONFIG_ATMEL_LCD: 1642 CONFIG_ATMEL_LCD:
1643 1643
1644 HITACHI TX09D70VM1CCA, 3.5", 240x320. 1644 HITACHI TX09D70VM1CCA, 3.5", 240x320.
1645 1645
1646 CONFIG_NEC_NL6448AC33: 1646 CONFIG_NEC_NL6448AC33:
1647 1647
1648 NEC NL6448AC33-18. Active, color, single scan. 1648 NEC NL6448AC33-18. Active, color, single scan.
1649 1649
1650 CONFIG_NEC_NL6448BC20 1650 CONFIG_NEC_NL6448BC20
1651 1651
1652 NEC NL6448BC20-08. 6.5", 640x480. 1652 NEC NL6448BC20-08. 6.5", 640x480.
1653 Active, color, single scan. 1653 Active, color, single scan.
1654 1654
1655 CONFIG_NEC_NL6448BC33_54 1655 CONFIG_NEC_NL6448BC33_54
1656 1656
1657 NEC NL6448BC33-54. 10.4", 640x480. 1657 NEC NL6448BC33-54. 10.4", 640x480.
1658 Active, color, single scan. 1658 Active, color, single scan.
1659 1659
1660 CONFIG_SHARP_16x9 1660 CONFIG_SHARP_16x9
1661 1661
1662 Sharp 320x240. Active, color, single scan. 1662 Sharp 320x240. Active, color, single scan.
1663 It isn't 16x9, and I am not sure what it is. 1663 It isn't 16x9, and I am not sure what it is.
1664 1664
1665 CONFIG_SHARP_LQ64D341 1665 CONFIG_SHARP_LQ64D341
1666 1666
1667 Sharp LQ64D341 display, 640x480. 1667 Sharp LQ64D341 display, 640x480.
1668 Active, color, single scan. 1668 Active, color, single scan.
1669 1669
1670 CONFIG_HLD1045 1670 CONFIG_HLD1045
1671 1671
1672 HLD1045 display, 640x480. 1672 HLD1045 display, 640x480.
1673 Active, color, single scan. 1673 Active, color, single scan.
1674 1674
1675 CONFIG_OPTREX_BW 1675 CONFIG_OPTREX_BW
1676 1676
1677 Optrex CBL50840-2 NF-FW 99 22 M5 1677 Optrex CBL50840-2 NF-FW 99 22 M5
1678 or 1678 or
1679 Hitachi LMG6912RPFC-00T 1679 Hitachi LMG6912RPFC-00T
1680 or 1680 or
1681 Hitachi SP14Q002 1681 Hitachi SP14Q002
1682 1682
1683 320x240. Black & white. 1683 320x240. Black & white.
1684 1684
1685 Normally display is black on white background; define 1685 Normally display is black on white background; define
1686 CONFIG_SYS_WHITE_ON_BLACK to get it inverted. 1686 CONFIG_SYS_WHITE_ON_BLACK to get it inverted.
1687 1687
1688 CONFIG_LCD_ALIGNMENT 1688 CONFIG_LCD_ALIGNMENT
1689 1689
1690 Normally the LCD is page-aligned (typically 4KB). If this is 1690 Normally the LCD is page-aligned (typically 4KB). If this is
1691 defined then the LCD will be aligned to this value instead. 1691 defined then the LCD will be aligned to this value instead.
1692 For ARM it is sometimes useful to use MMU_SECTION_SIZE 1692 For ARM it is sometimes useful to use MMU_SECTION_SIZE
1693 here, since it is cheaper to change data cache settings on 1693 here, since it is cheaper to change data cache settings on
1694 a per-section basis. 1694 a per-section basis.
1695 1695
1696 CONFIG_CONSOLE_SCROLL_LINES
1697
1698 When the console need to be scrolled, this is the number of
1699 lines to scroll by. It defaults to 1. Increasing this makes
1700 the console jump but can help speed up operation when scrolling
1701 is slow.
1702 1696
1703 CONFIG_LCD_ROTATION 1697 CONFIG_LCD_ROTATION
1704 1698
1705 Sometimes, for example if the display is mounted in portrait 1699 Sometimes, for example if the display is mounted in portrait
1706 mode or even if it's mounted landscape but rotated by 180degree, 1700 mode or even if it's mounted landscape but rotated by 180degree,
1707 we need to rotate our content of the display relative to the 1701 we need to rotate our content of the display relative to the
1708 framebuffer, so that user can read the messages which are 1702 framebuffer, so that user can read the messages which are
1709 printed out. 1703 printed out.
1710 Once CONFIG_LCD_ROTATION is defined, the lcd_console will be 1704 Once CONFIG_LCD_ROTATION is defined, the lcd_console will be
1711 initialized with a given rotation from "vl_rot" out of 1705 initialized with a given rotation from "vl_rot" out of
1712 "vidinfo_t" which is provided by the board specific code. 1706 "vidinfo_t" which is provided by the board specific code.
1713 The value for vl_rot is coded as following (matching to 1707 The value for vl_rot is coded as following (matching to
1714 fbcon=rotate:<n> linux-kernel commandline): 1708 fbcon=rotate:<n> linux-kernel commandline):
1715 0 = no rotation respectively 0 degree 1709 0 = no rotation respectively 0 degree
1716 1 = 90 degree rotation 1710 1 = 90 degree rotation
1717 2 = 180 degree rotation 1711 2 = 180 degree rotation
1718 3 = 270 degree rotation 1712 3 = 270 degree rotation
1719 1713
1720 If CONFIG_LCD_ROTATION is not defined, the console will be 1714 If CONFIG_LCD_ROTATION is not defined, the console will be
1721 initialized with 0degree rotation. 1715 initialized with 0degree rotation.
1722 1716
1723 CONFIG_LCD_BMP_RLE8 1717 CONFIG_LCD_BMP_RLE8
1724 1718
1725 Support drawing of RLE8-compressed bitmaps on the LCD. 1719 Support drawing of RLE8-compressed bitmaps on the LCD.
1726 1720
1727 CONFIG_I2C_EDID 1721 CONFIG_I2C_EDID
1728 1722
1729 Enables an 'i2c edid' command which can read EDID 1723 Enables an 'i2c edid' command which can read EDID
1730 information over I2C from an attached LCD display. 1724 information over I2C from an attached LCD display.
1731 1725
1732 - Splash Screen Support: CONFIG_SPLASH_SCREEN 1726 - Splash Screen Support: CONFIG_SPLASH_SCREEN
1733 1727
1734 If this option is set, the environment is checked for 1728 If this option is set, the environment is checked for
1735 a variable "splashimage". If found, the usual display 1729 a variable "splashimage". If found, the usual display
1736 of logo, copyright and system information on the LCD 1730 of logo, copyright and system information on the LCD
1737 is suppressed and the BMP image at the address 1731 is suppressed and the BMP image at the address
1738 specified in "splashimage" is loaded instead. The 1732 specified in "splashimage" is loaded instead. The
1739 console is redirected to the "nulldev", too. This 1733 console is redirected to the "nulldev", too. This
1740 allows for a "silent" boot where a splash screen is 1734 allows for a "silent" boot where a splash screen is
1741 loaded very quickly after power-on. 1735 loaded very quickly after power-on.
1742 1736
1743 CONFIG_SPLASHIMAGE_GUARD 1737 CONFIG_SPLASHIMAGE_GUARD
1744 1738
1745 If this option is set, then U-Boot will prevent the environment 1739 If this option is set, then U-Boot will prevent the environment
1746 variable "splashimage" from being set to a problematic address 1740 variable "splashimage" from being set to a problematic address
1747 (see doc/README.displaying-bmps). 1741 (see doc/README.displaying-bmps).
1748 This option is useful for targets where, due to alignment 1742 This option is useful for targets where, due to alignment
1749 restrictions, an improperly aligned BMP image will cause a data 1743 restrictions, an improperly aligned BMP image will cause a data
1750 abort. If you think you will not have problems with unaligned 1744 abort. If you think you will not have problems with unaligned
1751 accesses (for example because your toolchain prevents them) 1745 accesses (for example because your toolchain prevents them)
1752 there is no need to set this option. 1746 there is no need to set this option.
1753 1747
1754 CONFIG_SPLASH_SCREEN_ALIGN 1748 CONFIG_SPLASH_SCREEN_ALIGN
1755 1749
1756 If this option is set the splash image can be freely positioned 1750 If this option is set the splash image can be freely positioned
1757 on the screen. Environment variable "splashpos" specifies the 1751 on the screen. Environment variable "splashpos" specifies the
1758 position as "x,y". If a positive number is given it is used as 1752 position as "x,y". If a positive number is given it is used as
1759 number of pixel from left/top. If a negative number is given it 1753 number of pixel from left/top. If a negative number is given it
1760 is used as number of pixel from right/bottom. You can also 1754 is used as number of pixel from right/bottom. You can also
1761 specify 'm' for centering the image. 1755 specify 'm' for centering the image.
1762 1756
1763 Example: 1757 Example:
1764 setenv splashpos m,m 1758 setenv splashpos m,m
1765 => image at center of screen 1759 => image at center of screen
1766 1760
1767 setenv splashpos 30,20 1761 setenv splashpos 30,20
1768 => image at x = 30 and y = 20 1762 => image at x = 30 and y = 20
1769 1763
1770 setenv splashpos -10,m 1764 setenv splashpos -10,m
1771 => vertically centered image 1765 => vertically centered image
1772 at x = dspWidth - bmpWidth - 9 1766 at x = dspWidth - bmpWidth - 9
1773 1767
1774 - Gzip compressed BMP image support: CONFIG_VIDEO_BMP_GZIP 1768 - Gzip compressed BMP image support: CONFIG_VIDEO_BMP_GZIP
1775 1769
1776 If this option is set, additionally to standard BMP 1770 If this option is set, additionally to standard BMP
1777 images, gzipped BMP images can be displayed via the 1771 images, gzipped BMP images can be displayed via the
1778 splashscreen support or the bmp command. 1772 splashscreen support or the bmp command.
1779 1773
1780 - Run length encoded BMP image (RLE8) support: CONFIG_VIDEO_BMP_RLE8 1774 - Run length encoded BMP image (RLE8) support: CONFIG_VIDEO_BMP_RLE8
1781 1775
1782 If this option is set, 8-bit RLE compressed BMP images 1776 If this option is set, 8-bit RLE compressed BMP images
1783 can be displayed via the splashscreen support or the 1777 can be displayed via the splashscreen support or the
1784 bmp command. 1778 bmp command.
1785 1779
1786 - Do compressing for memory range: 1780 - Do compressing for memory range:
1787 CONFIG_CMD_ZIP 1781 CONFIG_CMD_ZIP
1788 1782
1789 If this option is set, it would use zlib deflate method 1783 If this option is set, it would use zlib deflate method
1790 to compress the specified memory at its best effort. 1784 to compress the specified memory at its best effort.
1791 1785
1792 - Compression support: 1786 - Compression support:
1793 CONFIG_GZIP 1787 CONFIG_GZIP
1794 1788
1795 Enabled by default to support gzip compressed images. 1789 Enabled by default to support gzip compressed images.
1796 1790
1797 CONFIG_BZIP2 1791 CONFIG_BZIP2
1798 1792
1799 If this option is set, support for bzip2 compressed 1793 If this option is set, support for bzip2 compressed
1800 images is included. If not, only uncompressed and gzip 1794 images is included. If not, only uncompressed and gzip
1801 compressed images are supported. 1795 compressed images are supported.
1802 1796
1803 NOTE: the bzip2 algorithm requires a lot of RAM, so 1797 NOTE: the bzip2 algorithm requires a lot of RAM, so
1804 the malloc area (as defined by CONFIG_SYS_MALLOC_LEN) should 1798 the malloc area (as defined by CONFIG_SYS_MALLOC_LEN) should
1805 be at least 4MB. 1799 be at least 4MB.
1806 1800
1807 CONFIG_LZMA 1801 CONFIG_LZMA
1808 1802
1809 If this option is set, support for lzma compressed 1803 If this option is set, support for lzma compressed
1810 images is included. 1804 images is included.
1811 1805
1812 Note: The LZMA algorithm adds between 2 and 4KB of code and it 1806 Note: The LZMA algorithm adds between 2 and 4KB of code and it
1813 requires an amount of dynamic memory that is given by the 1807 requires an amount of dynamic memory that is given by the
1814 formula: 1808 formula:
1815 1809
1816 (1846 + 768 << (lc + lp)) * sizeof(uint16) 1810 (1846 + 768 << (lc + lp)) * sizeof(uint16)
1817 1811
1818 Where lc and lp stand for, respectively, Literal context bits 1812 Where lc and lp stand for, respectively, Literal context bits
1819 and Literal pos bits. 1813 and Literal pos bits.
1820 1814
1821 This value is upper-bounded by 14MB in the worst case. Anyway, 1815 This value is upper-bounded by 14MB in the worst case. Anyway,
1822 for a ~4MB large kernel image, we have lc=3 and lp=0 for a 1816 for a ~4MB large kernel image, we have lc=3 and lp=0 for a
1823 total amount of (1846 + 768 << (3 + 0)) * 2 = ~41KB... that is 1817 total amount of (1846 + 768 << (3 + 0)) * 2 = ~41KB... that is
1824 a very small buffer. 1818 a very small buffer.
1825 1819
1826 Use the lzmainfo tool to determinate the lc and lp values and 1820 Use the lzmainfo tool to determinate the lc and lp values and
1827 then calculate the amount of needed dynamic memory (ensuring 1821 then calculate the amount of needed dynamic memory (ensuring
1828 the appropriate CONFIG_SYS_MALLOC_LEN value). 1822 the appropriate CONFIG_SYS_MALLOC_LEN value).
1829 1823
1830 CONFIG_LZO 1824 CONFIG_LZO
1831 1825
1832 If this option is set, support for LZO compressed images 1826 If this option is set, support for LZO compressed images
1833 is included. 1827 is included.
1834 1828
1835 - MII/PHY support: 1829 - MII/PHY support:
1836 CONFIG_PHY_ADDR 1830 CONFIG_PHY_ADDR
1837 1831
1838 The address of PHY on MII bus. 1832 The address of PHY on MII bus.
1839 1833
1840 CONFIG_PHY_CLOCK_FREQ (ppc4xx) 1834 CONFIG_PHY_CLOCK_FREQ (ppc4xx)
1841 1835
1842 The clock frequency of the MII bus 1836 The clock frequency of the MII bus
1843 1837
1844 CONFIG_PHY_GIGE 1838 CONFIG_PHY_GIGE
1845 1839
1846 If this option is set, support for speed/duplex 1840 If this option is set, support for speed/duplex
1847 detection of gigabit PHY is included. 1841 detection of gigabit PHY is included.
1848 1842
1849 CONFIG_PHY_RESET_DELAY 1843 CONFIG_PHY_RESET_DELAY
1850 1844
1851 Some PHY like Intel LXT971A need extra delay after 1845 Some PHY like Intel LXT971A need extra delay after
1852 reset before any MII register access is possible. 1846 reset before any MII register access is possible.
1853 For such PHY, set this option to the usec delay 1847 For such PHY, set this option to the usec delay
1854 required. (minimum 300usec for LXT971A) 1848 required. (minimum 300usec for LXT971A)
1855 1849
1856 CONFIG_PHY_CMD_DELAY (ppc4xx) 1850 CONFIG_PHY_CMD_DELAY (ppc4xx)
1857 1851
1858 Some PHY like Intel LXT971A need extra delay after 1852 Some PHY like Intel LXT971A need extra delay after
1859 command issued before MII status register can be read 1853 command issued before MII status register can be read
1860 1854
1861 - IP address: 1855 - IP address:
1862 CONFIG_IPADDR 1856 CONFIG_IPADDR
1863 1857
1864 Define a default value for the IP address to use for 1858 Define a default value for the IP address to use for
1865 the default Ethernet interface, in case this is not 1859 the default Ethernet interface, in case this is not
1866 determined through e.g. bootp. 1860 determined through e.g. bootp.
1867 (Environment variable "ipaddr") 1861 (Environment variable "ipaddr")
1868 1862
1869 - Server IP address: 1863 - Server IP address:
1870 CONFIG_SERVERIP 1864 CONFIG_SERVERIP
1871 1865
1872 Defines a default value for the IP address of a TFTP 1866 Defines a default value for the IP address of a TFTP
1873 server to contact when using the "tftboot" command. 1867 server to contact when using the "tftboot" command.
1874 (Environment variable "serverip") 1868 (Environment variable "serverip")
1875 1869
1876 CONFIG_KEEP_SERVERADDR 1870 CONFIG_KEEP_SERVERADDR
1877 1871
1878 Keeps the server's MAC address, in the env 'serveraddr' 1872 Keeps the server's MAC address, in the env 'serveraddr'
1879 for passing to bootargs (like Linux's netconsole option) 1873 for passing to bootargs (like Linux's netconsole option)
1880 1874
1881 - Gateway IP address: 1875 - Gateway IP address:
1882 CONFIG_GATEWAYIP 1876 CONFIG_GATEWAYIP
1883 1877
1884 Defines a default value for the IP address of the 1878 Defines a default value for the IP address of the
1885 default router where packets to other networks are 1879 default router where packets to other networks are
1886 sent to. 1880 sent to.
1887 (Environment variable "gatewayip") 1881 (Environment variable "gatewayip")
1888 1882
1889 - Subnet mask: 1883 - Subnet mask:
1890 CONFIG_NETMASK 1884 CONFIG_NETMASK
1891 1885
1892 Defines a default value for the subnet mask (or 1886 Defines a default value for the subnet mask (or
1893 routing prefix) which is used to determine if an IP 1887 routing prefix) which is used to determine if an IP
1894 address belongs to the local subnet or needs to be 1888 address belongs to the local subnet or needs to be
1895 forwarded through a router. 1889 forwarded through a router.
1896 (Environment variable "netmask") 1890 (Environment variable "netmask")
1897 1891
1898 - Multicast TFTP Mode: 1892 - Multicast TFTP Mode:
1899 CONFIG_MCAST_TFTP 1893 CONFIG_MCAST_TFTP
1900 1894
1901 Defines whether you want to support multicast TFTP as per 1895 Defines whether you want to support multicast TFTP as per
1902 rfc-2090; for example to work with atftp. Lets lots of targets 1896 rfc-2090; for example to work with atftp. Lets lots of targets
1903 tftp down the same boot image concurrently. Note: the Ethernet 1897 tftp down the same boot image concurrently. Note: the Ethernet
1904 driver in use must provide a function: mcast() to join/leave a 1898 driver in use must provide a function: mcast() to join/leave a
1905 multicast group. 1899 multicast group.
1906 1900
1907 - BOOTP Recovery Mode: 1901 - BOOTP Recovery Mode:
1908 CONFIG_BOOTP_RANDOM_DELAY 1902 CONFIG_BOOTP_RANDOM_DELAY
1909 1903
1910 If you have many targets in a network that try to 1904 If you have many targets in a network that try to
1911 boot using BOOTP, you may want to avoid that all 1905 boot using BOOTP, you may want to avoid that all
1912 systems send out BOOTP requests at precisely the same 1906 systems send out BOOTP requests at precisely the same
1913 moment (which would happen for instance at recovery 1907 moment (which would happen for instance at recovery
1914 from a power failure, when all systems will try to 1908 from a power failure, when all systems will try to
1915 boot, thus flooding the BOOTP server. Defining 1909 boot, thus flooding the BOOTP server. Defining
1916 CONFIG_BOOTP_RANDOM_DELAY causes a random delay to be 1910 CONFIG_BOOTP_RANDOM_DELAY causes a random delay to be
1917 inserted before sending out BOOTP requests. The 1911 inserted before sending out BOOTP requests. The
1918 following delays are inserted then: 1912 following delays are inserted then:
1919 1913
1920 1st BOOTP request: delay 0 ... 1 sec 1914 1st BOOTP request: delay 0 ... 1 sec
1921 2nd BOOTP request: delay 0 ... 2 sec 1915 2nd BOOTP request: delay 0 ... 2 sec
1922 3rd BOOTP request: delay 0 ... 4 sec 1916 3rd BOOTP request: delay 0 ... 4 sec
1923 4th and following 1917 4th and following
1924 BOOTP requests: delay 0 ... 8 sec 1918 BOOTP requests: delay 0 ... 8 sec
1925 1919
1926 CONFIG_BOOTP_ID_CACHE_SIZE 1920 CONFIG_BOOTP_ID_CACHE_SIZE
1927 1921
1928 BOOTP packets are uniquely identified using a 32-bit ID. The 1922 BOOTP packets are uniquely identified using a 32-bit ID. The
1929 server will copy the ID from client requests to responses and 1923 server will copy the ID from client requests to responses and
1930 U-Boot will use this to determine if it is the destination of 1924 U-Boot will use this to determine if it is the destination of
1931 an incoming response. Some servers will check that addresses 1925 an incoming response. Some servers will check that addresses
1932 aren't in use before handing them out (usually using an ARP 1926 aren't in use before handing them out (usually using an ARP
1933 ping) and therefore take up to a few hundred milliseconds to 1927 ping) and therefore take up to a few hundred milliseconds to
1934 respond. Network congestion may also influence the time it 1928 respond. Network congestion may also influence the time it
1935 takes for a response to make it back to the client. If that 1929 takes for a response to make it back to the client. If that
1936 time is too long, U-Boot will retransmit requests. In order 1930 time is too long, U-Boot will retransmit requests. In order
1937 to allow earlier responses to still be accepted after these 1931 to allow earlier responses to still be accepted after these
1938 retransmissions, U-Boot's BOOTP client keeps a small cache of 1932 retransmissions, U-Boot's BOOTP client keeps a small cache of
1939 IDs. The CONFIG_BOOTP_ID_CACHE_SIZE controls the size of this 1933 IDs. The CONFIG_BOOTP_ID_CACHE_SIZE controls the size of this
1940 cache. The default is to keep IDs for up to four outstanding 1934 cache. The default is to keep IDs for up to four outstanding
1941 requests. Increasing this will allow U-Boot to accept offers 1935 requests. Increasing this will allow U-Boot to accept offers
1942 from a BOOTP client in networks with unusually high latency. 1936 from a BOOTP client in networks with unusually high latency.
1943 1937
1944 - DHCP Advanced Options: 1938 - DHCP Advanced Options:
1945 You can fine tune the DHCP functionality by defining 1939 You can fine tune the DHCP functionality by defining
1946 CONFIG_BOOTP_* symbols: 1940 CONFIG_BOOTP_* symbols:
1947 1941
1948 CONFIG_BOOTP_SUBNETMASK 1942 CONFIG_BOOTP_SUBNETMASK
1949 CONFIG_BOOTP_GATEWAY 1943 CONFIG_BOOTP_GATEWAY
1950 CONFIG_BOOTP_HOSTNAME 1944 CONFIG_BOOTP_HOSTNAME
1951 CONFIG_BOOTP_NISDOMAIN 1945 CONFIG_BOOTP_NISDOMAIN
1952 CONFIG_BOOTP_BOOTPATH 1946 CONFIG_BOOTP_BOOTPATH
1953 CONFIG_BOOTP_BOOTFILESIZE 1947 CONFIG_BOOTP_BOOTFILESIZE
1954 CONFIG_BOOTP_DNS 1948 CONFIG_BOOTP_DNS
1955 CONFIG_BOOTP_DNS2 1949 CONFIG_BOOTP_DNS2
1956 CONFIG_BOOTP_SEND_HOSTNAME 1950 CONFIG_BOOTP_SEND_HOSTNAME
1957 CONFIG_BOOTP_NTPSERVER 1951 CONFIG_BOOTP_NTPSERVER
1958 CONFIG_BOOTP_TIMEOFFSET 1952 CONFIG_BOOTP_TIMEOFFSET
1959 CONFIG_BOOTP_VENDOREX 1953 CONFIG_BOOTP_VENDOREX
1960 CONFIG_BOOTP_MAY_FAIL 1954 CONFIG_BOOTP_MAY_FAIL
1961 1955
1962 CONFIG_BOOTP_SERVERIP - TFTP server will be the serverip 1956 CONFIG_BOOTP_SERVERIP - TFTP server will be the serverip
1963 environment variable, not the BOOTP server. 1957 environment variable, not the BOOTP server.
1964 1958
1965 CONFIG_BOOTP_MAY_FAIL - If the DHCP server is not found 1959 CONFIG_BOOTP_MAY_FAIL - If the DHCP server is not found
1966 after the configured retry count, the call will fail 1960 after the configured retry count, the call will fail
1967 instead of starting over. This can be used to fail over 1961 instead of starting over. This can be used to fail over
1968 to Link-local IP address configuration if the DHCP server 1962 to Link-local IP address configuration if the DHCP server
1969 is not available. 1963 is not available.
1970 1964
1971 CONFIG_BOOTP_DNS2 - If a DHCP client requests the DNS 1965 CONFIG_BOOTP_DNS2 - If a DHCP client requests the DNS
1972 serverip from a DHCP server, it is possible that more 1966 serverip from a DHCP server, it is possible that more
1973 than one DNS serverip is offered to the client. 1967 than one DNS serverip is offered to the client.
1974 If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS 1968 If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1975 serverip will be stored in the additional environment 1969 serverip will be stored in the additional environment
1976 variable "dnsip2". The first DNS serverip is always 1970 variable "dnsip2". The first DNS serverip is always
1977 stored in the variable "dnsip", when CONFIG_BOOTP_DNS 1971 stored in the variable "dnsip", when CONFIG_BOOTP_DNS
1978 is defined. 1972 is defined.
1979 1973
1980 CONFIG_BOOTP_SEND_HOSTNAME - Some DHCP servers are capable 1974 CONFIG_BOOTP_SEND_HOSTNAME - Some DHCP servers are capable
1981 to do a dynamic update of a DNS server. To do this, they 1975 to do a dynamic update of a DNS server. To do this, they
1982 need the hostname of the DHCP requester. 1976 need the hostname of the DHCP requester.
1983 If CONFIG_BOOTP_SEND_HOSTNAME is defined, the content 1977 If CONFIG_BOOTP_SEND_HOSTNAME is defined, the content
1984 of the "hostname" environment variable is passed as 1978 of the "hostname" environment variable is passed as
1985 option 12 to the DHCP server. 1979 option 12 to the DHCP server.
1986 1980
1987 CONFIG_BOOTP_DHCP_REQUEST_DELAY 1981 CONFIG_BOOTP_DHCP_REQUEST_DELAY
1988 1982
1989 A 32bit value in microseconds for a delay between 1983 A 32bit value in microseconds for a delay between
1990 receiving a "DHCP Offer" and sending the "DHCP Request". 1984 receiving a "DHCP Offer" and sending the "DHCP Request".
1991 This fixes a problem with certain DHCP servers that don't 1985 This fixes a problem with certain DHCP servers that don't
1992 respond 100% of the time to a "DHCP request". E.g. On an 1986 respond 100% of the time to a "DHCP request". E.g. On an
1993 AT91RM9200 processor running at 180MHz, this delay needed 1987 AT91RM9200 processor running at 180MHz, this delay needed
1994 to be *at least* 15,000 usec before a Windows Server 2003 1988 to be *at least* 15,000 usec before a Windows Server 2003
1995 DHCP server would reply 100% of the time. I recommend at 1989 DHCP server would reply 100% of the time. I recommend at
1996 least 50,000 usec to be safe. The alternative is to hope 1990 least 50,000 usec to be safe. The alternative is to hope
1997 that one of the retries will be successful but note that 1991 that one of the retries will be successful but note that
1998 the DHCP timeout and retry process takes a longer than 1992 the DHCP timeout and retry process takes a longer than
1999 this delay. 1993 this delay.
2000 1994
2001 - Link-local IP address negotiation: 1995 - Link-local IP address negotiation:
2002 Negotiate with other link-local clients on the local network 1996 Negotiate with other link-local clients on the local network
2003 for an address that doesn't require explicit configuration. 1997 for an address that doesn't require explicit configuration.
2004 This is especially useful if a DHCP server cannot be guaranteed 1998 This is especially useful if a DHCP server cannot be guaranteed
2005 to exist in all environments that the device must operate. 1999 to exist in all environments that the device must operate.
2006 2000
2007 See doc/README.link-local for more information. 2001 See doc/README.link-local for more information.
2008 2002
2009 - CDP Options: 2003 - CDP Options:
2010 CONFIG_CDP_DEVICE_ID 2004 CONFIG_CDP_DEVICE_ID
2011 2005
2012 The device id used in CDP trigger frames. 2006 The device id used in CDP trigger frames.
2013 2007
2014 CONFIG_CDP_DEVICE_ID_PREFIX 2008 CONFIG_CDP_DEVICE_ID_PREFIX
2015 2009
2016 A two character string which is prefixed to the MAC address 2010 A two character string which is prefixed to the MAC address
2017 of the device. 2011 of the device.
2018 2012
2019 CONFIG_CDP_PORT_ID 2013 CONFIG_CDP_PORT_ID
2020 2014
2021 A printf format string which contains the ascii name of 2015 A printf format string which contains the ascii name of
2022 the port. Normally is set to "eth%d" which sets 2016 the port. Normally is set to "eth%d" which sets
2023 eth0 for the first Ethernet, eth1 for the second etc. 2017 eth0 for the first Ethernet, eth1 for the second etc.
2024 2018
2025 CONFIG_CDP_CAPABILITIES 2019 CONFIG_CDP_CAPABILITIES
2026 2020
2027 A 32bit integer which indicates the device capabilities; 2021 A 32bit integer which indicates the device capabilities;
2028 0x00000010 for a normal host which does not forwards. 2022 0x00000010 for a normal host which does not forwards.
2029 2023
2030 CONFIG_CDP_VERSION 2024 CONFIG_CDP_VERSION
2031 2025
2032 An ascii string containing the version of the software. 2026 An ascii string containing the version of the software.
2033 2027
2034 CONFIG_CDP_PLATFORM 2028 CONFIG_CDP_PLATFORM
2035 2029
2036 An ascii string containing the name of the platform. 2030 An ascii string containing the name of the platform.
2037 2031
2038 CONFIG_CDP_TRIGGER 2032 CONFIG_CDP_TRIGGER
2039 2033
2040 A 32bit integer sent on the trigger. 2034 A 32bit integer sent on the trigger.
2041 2035
2042 CONFIG_CDP_POWER_CONSUMPTION 2036 CONFIG_CDP_POWER_CONSUMPTION
2043 2037
2044 A 16bit integer containing the power consumption of the 2038 A 16bit integer containing the power consumption of the
2045 device in .1 of milliwatts. 2039 device in .1 of milliwatts.
2046 2040
2047 CONFIG_CDP_APPLIANCE_VLAN_TYPE 2041 CONFIG_CDP_APPLIANCE_VLAN_TYPE
2048 2042
2049 A byte containing the id of the VLAN. 2043 A byte containing the id of the VLAN.
2050 2044
2051 - Status LED: CONFIG_STATUS_LED 2045 - Status LED: CONFIG_STATUS_LED
2052 2046
2053 Several configurations allow to display the current 2047 Several configurations allow to display the current
2054 status using a LED. For instance, the LED will blink 2048 status using a LED. For instance, the LED will blink
2055 fast while running U-Boot code, stop blinking as 2049 fast while running U-Boot code, stop blinking as
2056 soon as a reply to a BOOTP request was received, and 2050 soon as a reply to a BOOTP request was received, and
2057 start blinking slow once the Linux kernel is running 2051 start blinking slow once the Linux kernel is running
2058 (supported by a status LED driver in the Linux 2052 (supported by a status LED driver in the Linux
2059 kernel). Defining CONFIG_STATUS_LED enables this 2053 kernel). Defining CONFIG_STATUS_LED enables this
2060 feature in U-Boot. 2054 feature in U-Boot.
2061 2055
2062 Additional options: 2056 Additional options:
2063 2057
2064 CONFIG_GPIO_LED 2058 CONFIG_GPIO_LED
2065 The status LED can be connected to a GPIO pin. 2059 The status LED can be connected to a GPIO pin.
2066 In such cases, the gpio_led driver can be used as a 2060 In such cases, the gpio_led driver can be used as a
2067 status LED backend implementation. Define CONFIG_GPIO_LED 2061 status LED backend implementation. Define CONFIG_GPIO_LED
2068 to include the gpio_led driver in the U-Boot binary. 2062 to include the gpio_led driver in the U-Boot binary.
2069 2063
2070 CONFIG_GPIO_LED_INVERTED_TABLE 2064 CONFIG_GPIO_LED_INVERTED_TABLE
2071 Some GPIO connected LEDs may have inverted polarity in which 2065 Some GPIO connected LEDs may have inverted polarity in which
2072 case the GPIO high value corresponds to LED off state and 2066 case the GPIO high value corresponds to LED off state and
2073 GPIO low value corresponds to LED on state. 2067 GPIO low value corresponds to LED on state.
2074 In such cases CONFIG_GPIO_LED_INVERTED_TABLE may be defined 2068 In such cases CONFIG_GPIO_LED_INVERTED_TABLE may be defined
2075 with a list of GPIO LEDs that have inverted polarity. 2069 with a list of GPIO LEDs that have inverted polarity.
2076 2070
2077 - CAN Support: CONFIG_CAN_DRIVER 2071 - CAN Support: CONFIG_CAN_DRIVER
2078 2072
2079 Defining CONFIG_CAN_DRIVER enables CAN driver support 2073 Defining CONFIG_CAN_DRIVER enables CAN driver support
2080 on those systems that support this (optional) 2074 on those systems that support this (optional)
2081 feature, like the TQM8xxL modules. 2075 feature, like the TQM8xxL modules.
2082 2076
2083 - I2C Support: CONFIG_SYS_I2C 2077 - I2C Support: CONFIG_SYS_I2C
2084 2078
2085 This enable the NEW i2c subsystem, and will allow you to use 2079 This enable the NEW i2c subsystem, and will allow you to use
2086 i2c commands at the u-boot command line (as long as you set 2080 i2c commands at the u-boot command line (as long as you set
2087 CONFIG_CMD_I2C in CONFIG_COMMANDS) and communicate with i2c 2081 CONFIG_CMD_I2C in CONFIG_COMMANDS) and communicate with i2c
2088 based realtime clock chips or other i2c devices. See 2082 based realtime clock chips or other i2c devices. See
2089 common/cmd_i2c.c for a description of the command line 2083 common/cmd_i2c.c for a description of the command line
2090 interface. 2084 interface.
2091 2085
2092 ported i2c driver to the new framework: 2086 ported i2c driver to the new framework:
2093 - drivers/i2c/soft_i2c.c: 2087 - drivers/i2c/soft_i2c.c:
2094 - activate first bus with CONFIG_SYS_I2C_SOFT define 2088 - activate first bus with CONFIG_SYS_I2C_SOFT define
2095 CONFIG_SYS_I2C_SOFT_SPEED and CONFIG_SYS_I2C_SOFT_SLAVE 2089 CONFIG_SYS_I2C_SOFT_SPEED and CONFIG_SYS_I2C_SOFT_SLAVE
2096 for defining speed and slave address 2090 for defining speed and slave address
2097 - activate second bus with I2C_SOFT_DECLARATIONS2 define 2091 - activate second bus with I2C_SOFT_DECLARATIONS2 define
2098 CONFIG_SYS_I2C_SOFT_SPEED_2 and CONFIG_SYS_I2C_SOFT_SLAVE_2 2092 CONFIG_SYS_I2C_SOFT_SPEED_2 and CONFIG_SYS_I2C_SOFT_SLAVE_2
2099 for defining speed and slave address 2093 for defining speed and slave address
2100 - activate third bus with I2C_SOFT_DECLARATIONS3 define 2094 - activate third bus with I2C_SOFT_DECLARATIONS3 define
2101 CONFIG_SYS_I2C_SOFT_SPEED_3 and CONFIG_SYS_I2C_SOFT_SLAVE_3 2095 CONFIG_SYS_I2C_SOFT_SPEED_3 and CONFIG_SYS_I2C_SOFT_SLAVE_3
2102 for defining speed and slave address 2096 for defining speed and slave address
2103 - activate fourth bus with I2C_SOFT_DECLARATIONS4 define 2097 - activate fourth bus with I2C_SOFT_DECLARATIONS4 define
2104 CONFIG_SYS_I2C_SOFT_SPEED_4 and CONFIG_SYS_I2C_SOFT_SLAVE_4 2098 CONFIG_SYS_I2C_SOFT_SPEED_4 and CONFIG_SYS_I2C_SOFT_SLAVE_4
2105 for defining speed and slave address 2099 for defining speed and slave address
2106 2100
2107 - drivers/i2c/fsl_i2c.c: 2101 - drivers/i2c/fsl_i2c.c:
2108 - activate i2c driver with CONFIG_SYS_I2C_FSL 2102 - activate i2c driver with CONFIG_SYS_I2C_FSL
2109 define CONFIG_SYS_FSL_I2C_OFFSET for setting the register 2103 define CONFIG_SYS_FSL_I2C_OFFSET for setting the register
2110 offset CONFIG_SYS_FSL_I2C_SPEED for the i2c speed and 2104 offset CONFIG_SYS_FSL_I2C_SPEED for the i2c speed and
2111 CONFIG_SYS_FSL_I2C_SLAVE for the slave addr of the first 2105 CONFIG_SYS_FSL_I2C_SLAVE for the slave addr of the first
2112 bus. 2106 bus.
2113 - If your board supports a second fsl i2c bus, define 2107 - If your board supports a second fsl i2c bus, define
2114 CONFIG_SYS_FSL_I2C2_OFFSET for the register offset 2108 CONFIG_SYS_FSL_I2C2_OFFSET for the register offset
2115 CONFIG_SYS_FSL_I2C2_SPEED for the speed and 2109 CONFIG_SYS_FSL_I2C2_SPEED for the speed and
2116 CONFIG_SYS_FSL_I2C2_SLAVE for the slave address of the 2110 CONFIG_SYS_FSL_I2C2_SLAVE for the slave address of the
2117 second bus. 2111 second bus.
2118 2112
2119 - drivers/i2c/tegra_i2c.c: 2113 - drivers/i2c/tegra_i2c.c:
2120 - activate this driver with CONFIG_SYS_I2C_TEGRA 2114 - activate this driver with CONFIG_SYS_I2C_TEGRA
2121 - This driver adds 4 i2c buses with a fix speed from 2115 - This driver adds 4 i2c buses with a fix speed from
2122 100000 and the slave addr 0! 2116 100000 and the slave addr 0!
2123 2117
2124 - drivers/i2c/ppc4xx_i2c.c 2118 - drivers/i2c/ppc4xx_i2c.c
2125 - activate this driver with CONFIG_SYS_I2C_PPC4XX 2119 - activate this driver with CONFIG_SYS_I2C_PPC4XX
2126 - CONFIG_SYS_I2C_PPC4XX_CH0 activate hardware channel 0 2120 - CONFIG_SYS_I2C_PPC4XX_CH0 activate hardware channel 0
2127 - CONFIG_SYS_I2C_PPC4XX_CH1 activate hardware channel 1 2121 - CONFIG_SYS_I2C_PPC4XX_CH1 activate hardware channel 1
2128 2122
2129 - drivers/i2c/i2c_mxc.c 2123 - drivers/i2c/i2c_mxc.c
2130 - activate this driver with CONFIG_SYS_I2C_MXC 2124 - activate this driver with CONFIG_SYS_I2C_MXC
2131 - enable bus 1 with CONFIG_SYS_I2C_MXC_I2C1 2125 - enable bus 1 with CONFIG_SYS_I2C_MXC_I2C1
2132 - enable bus 2 with CONFIG_SYS_I2C_MXC_I2C2 2126 - enable bus 2 with CONFIG_SYS_I2C_MXC_I2C2
2133 - enable bus 3 with CONFIG_SYS_I2C_MXC_I2C3 2127 - enable bus 3 with CONFIG_SYS_I2C_MXC_I2C3
2134 - enable bus 4 with CONFIG_SYS_I2C_MXC_I2C4 2128 - enable bus 4 with CONFIG_SYS_I2C_MXC_I2C4
2135 - define speed for bus 1 with CONFIG_SYS_MXC_I2C1_SPEED 2129 - define speed for bus 1 with CONFIG_SYS_MXC_I2C1_SPEED
2136 - define slave for bus 1 with CONFIG_SYS_MXC_I2C1_SLAVE 2130 - define slave for bus 1 with CONFIG_SYS_MXC_I2C1_SLAVE
2137 - define speed for bus 2 with CONFIG_SYS_MXC_I2C2_SPEED 2131 - define speed for bus 2 with CONFIG_SYS_MXC_I2C2_SPEED
2138 - define slave for bus 2 with CONFIG_SYS_MXC_I2C2_SLAVE 2132 - define slave for bus 2 with CONFIG_SYS_MXC_I2C2_SLAVE
2139 - define speed for bus 3 with CONFIG_SYS_MXC_I2C3_SPEED 2133 - define speed for bus 3 with CONFIG_SYS_MXC_I2C3_SPEED
2140 - define slave for bus 3 with CONFIG_SYS_MXC_I2C3_SLAVE 2134 - define slave for bus 3 with CONFIG_SYS_MXC_I2C3_SLAVE
2141 - define speed for bus 4 with CONFIG_SYS_MXC_I2C4_SPEED 2135 - define speed for bus 4 with CONFIG_SYS_MXC_I2C4_SPEED
2142 - define slave for bus 4 with CONFIG_SYS_MXC_I2C4_SLAVE 2136 - define slave for bus 4 with CONFIG_SYS_MXC_I2C4_SLAVE
2143 If those defines are not set, default value is 100000 2137 If those defines are not set, default value is 100000
2144 for speed, and 0 for slave. 2138 for speed, and 0 for slave.
2145 2139
2146 - drivers/i2c/rcar_i2c.c: 2140 - drivers/i2c/rcar_i2c.c:
2147 - activate this driver with CONFIG_SYS_I2C_RCAR 2141 - activate this driver with CONFIG_SYS_I2C_RCAR
2148 - This driver adds 4 i2c buses 2142 - This driver adds 4 i2c buses
2149 2143
2150 - CONFIG_SYS_RCAR_I2C0_BASE for setting the register channel 0 2144 - CONFIG_SYS_RCAR_I2C0_BASE for setting the register channel 0
2151 - CONFIG_SYS_RCAR_I2C0_SPEED for for the speed channel 0 2145 - CONFIG_SYS_RCAR_I2C0_SPEED for for the speed channel 0
2152 - CONFIG_SYS_RCAR_I2C1_BASE for setting the register channel 1 2146 - CONFIG_SYS_RCAR_I2C1_BASE for setting the register channel 1
2153 - CONFIG_SYS_RCAR_I2C1_SPEED for for the speed channel 1 2147 - CONFIG_SYS_RCAR_I2C1_SPEED for for the speed channel 1
2154 - CONFIG_SYS_RCAR_I2C2_BASE for setting the register channel 2 2148 - CONFIG_SYS_RCAR_I2C2_BASE for setting the register channel 2
2155 - CONFIG_SYS_RCAR_I2C2_SPEED for for the speed channel 2 2149 - CONFIG_SYS_RCAR_I2C2_SPEED for for the speed channel 2
2156 - CONFIG_SYS_RCAR_I2C3_BASE for setting the register channel 3 2150 - CONFIG_SYS_RCAR_I2C3_BASE for setting the register channel 3
2157 - CONFIG_SYS_RCAR_I2C3_SPEED for for the speed channel 3 2151 - CONFIG_SYS_RCAR_I2C3_SPEED for for the speed channel 3
2158 - CONFIF_SYS_RCAR_I2C_NUM_CONTROLLERS for number of i2c buses 2152 - CONFIF_SYS_RCAR_I2C_NUM_CONTROLLERS for number of i2c buses
2159 2153
2160 - drivers/i2c/sh_i2c.c: 2154 - drivers/i2c/sh_i2c.c:
2161 - activate this driver with CONFIG_SYS_I2C_SH 2155 - activate this driver with CONFIG_SYS_I2C_SH
2162 - This driver adds from 2 to 5 i2c buses 2156 - This driver adds from 2 to 5 i2c buses
2163 2157
2164 - CONFIG_SYS_I2C_SH_BASE0 for setting the register channel 0 2158 - CONFIG_SYS_I2C_SH_BASE0 for setting the register channel 0
2165 - CONFIG_SYS_I2C_SH_SPEED0 for for the speed channel 0 2159 - CONFIG_SYS_I2C_SH_SPEED0 for for the speed channel 0
2166 - CONFIG_SYS_I2C_SH_BASE1 for setting the register channel 1 2160 - CONFIG_SYS_I2C_SH_BASE1 for setting the register channel 1
2167 - CONFIG_SYS_I2C_SH_SPEED1 for for the speed channel 1 2161 - CONFIG_SYS_I2C_SH_SPEED1 for for the speed channel 1
2168 - CONFIG_SYS_I2C_SH_BASE2 for setting the register channel 2 2162 - CONFIG_SYS_I2C_SH_BASE2 for setting the register channel 2
2169 - CONFIG_SYS_I2C_SH_SPEED2 for for the speed channel 2 2163 - CONFIG_SYS_I2C_SH_SPEED2 for for the speed channel 2
2170 - CONFIG_SYS_I2C_SH_BASE3 for setting the register channel 3 2164 - CONFIG_SYS_I2C_SH_BASE3 for setting the register channel 3
2171 - CONFIG_SYS_I2C_SH_SPEED3 for for the speed channel 3 2165 - CONFIG_SYS_I2C_SH_SPEED3 for for the speed channel 3
2172 - CONFIG_SYS_I2C_SH_BASE4 for setting the register channel 4 2166 - CONFIG_SYS_I2C_SH_BASE4 for setting the register channel 4
2173 - CONFIG_SYS_I2C_SH_SPEED4 for for the speed channel 4 2167 - CONFIG_SYS_I2C_SH_SPEED4 for for the speed channel 4
2174 - CONFIG_SYS_I2C_SH_NUM_CONTROLLERS for number of i2c buses 2168 - CONFIG_SYS_I2C_SH_NUM_CONTROLLERS for number of i2c buses
2175 2169
2176 - drivers/i2c/omap24xx_i2c.c 2170 - drivers/i2c/omap24xx_i2c.c
2177 - activate this driver with CONFIG_SYS_I2C_OMAP24XX 2171 - activate this driver with CONFIG_SYS_I2C_OMAP24XX
2178 - CONFIG_SYS_OMAP24_I2C_SPEED speed channel 0 2172 - CONFIG_SYS_OMAP24_I2C_SPEED speed channel 0
2179 - CONFIG_SYS_OMAP24_I2C_SLAVE slave addr channel 0 2173 - CONFIG_SYS_OMAP24_I2C_SLAVE slave addr channel 0
2180 - CONFIG_SYS_OMAP24_I2C_SPEED1 speed channel 1 2174 - CONFIG_SYS_OMAP24_I2C_SPEED1 speed channel 1
2181 - CONFIG_SYS_OMAP24_I2C_SLAVE1 slave addr channel 1 2175 - CONFIG_SYS_OMAP24_I2C_SLAVE1 slave addr channel 1
2182 - CONFIG_SYS_OMAP24_I2C_SPEED2 speed channel 2 2176 - CONFIG_SYS_OMAP24_I2C_SPEED2 speed channel 2
2183 - CONFIG_SYS_OMAP24_I2C_SLAVE2 slave addr channel 2 2177 - CONFIG_SYS_OMAP24_I2C_SLAVE2 slave addr channel 2
2184 - CONFIG_SYS_OMAP24_I2C_SPEED3 speed channel 3 2178 - CONFIG_SYS_OMAP24_I2C_SPEED3 speed channel 3
2185 - CONFIG_SYS_OMAP24_I2C_SLAVE3 slave addr channel 3 2179 - CONFIG_SYS_OMAP24_I2C_SLAVE3 slave addr channel 3
2186 - CONFIG_SYS_OMAP24_I2C_SPEED4 speed channel 4 2180 - CONFIG_SYS_OMAP24_I2C_SPEED4 speed channel 4
2187 - CONFIG_SYS_OMAP24_I2C_SLAVE4 slave addr channel 4 2181 - CONFIG_SYS_OMAP24_I2C_SLAVE4 slave addr channel 4
2188 2182
2189 - drivers/i2c/zynq_i2c.c 2183 - drivers/i2c/zynq_i2c.c
2190 - activate this driver with CONFIG_SYS_I2C_ZYNQ 2184 - activate this driver with CONFIG_SYS_I2C_ZYNQ
2191 - set CONFIG_SYS_I2C_ZYNQ_SPEED for speed setting 2185 - set CONFIG_SYS_I2C_ZYNQ_SPEED for speed setting
2192 - set CONFIG_SYS_I2C_ZYNQ_SLAVE for slave addr 2186 - set CONFIG_SYS_I2C_ZYNQ_SLAVE for slave addr
2193 2187
2194 - drivers/i2c/s3c24x0_i2c.c: 2188 - drivers/i2c/s3c24x0_i2c.c:
2195 - activate this driver with CONFIG_SYS_I2C_S3C24X0 2189 - activate this driver with CONFIG_SYS_I2C_S3C24X0
2196 - This driver adds i2c buses (11 for Exynos5250, Exynos5420 2190 - This driver adds i2c buses (11 for Exynos5250, Exynos5420
2197 9 i2c buses for Exynos4 and 1 for S3C24X0 SoCs from Samsung) 2191 9 i2c buses for Exynos4 and 1 for S3C24X0 SoCs from Samsung)
2198 with a fix speed from 100000 and the slave addr 0! 2192 with a fix speed from 100000 and the slave addr 0!
2199 2193
2200 - drivers/i2c/ihs_i2c.c 2194 - drivers/i2c/ihs_i2c.c
2201 - activate this driver with CONFIG_SYS_I2C_IHS 2195 - activate this driver with CONFIG_SYS_I2C_IHS
2202 - CONFIG_SYS_I2C_IHS_CH0 activate hardware channel 0 2196 - CONFIG_SYS_I2C_IHS_CH0 activate hardware channel 0
2203 - CONFIG_SYS_I2C_IHS_SPEED_0 speed channel 0 2197 - CONFIG_SYS_I2C_IHS_SPEED_0 speed channel 0
2204 - CONFIG_SYS_I2C_IHS_SLAVE_0 slave addr channel 0 2198 - CONFIG_SYS_I2C_IHS_SLAVE_0 slave addr channel 0
2205 - CONFIG_SYS_I2C_IHS_CH1 activate hardware channel 1 2199 - CONFIG_SYS_I2C_IHS_CH1 activate hardware channel 1
2206 - CONFIG_SYS_I2C_IHS_SPEED_1 speed channel 1 2200 - CONFIG_SYS_I2C_IHS_SPEED_1 speed channel 1
2207 - CONFIG_SYS_I2C_IHS_SLAVE_1 slave addr channel 1 2201 - CONFIG_SYS_I2C_IHS_SLAVE_1 slave addr channel 1
2208 - CONFIG_SYS_I2C_IHS_CH2 activate hardware channel 2 2202 - CONFIG_SYS_I2C_IHS_CH2 activate hardware channel 2
2209 - CONFIG_SYS_I2C_IHS_SPEED_2 speed channel 2 2203 - CONFIG_SYS_I2C_IHS_SPEED_2 speed channel 2
2210 - CONFIG_SYS_I2C_IHS_SLAVE_2 slave addr channel 2 2204 - CONFIG_SYS_I2C_IHS_SLAVE_2 slave addr channel 2
2211 - CONFIG_SYS_I2C_IHS_CH3 activate hardware channel 3 2205 - CONFIG_SYS_I2C_IHS_CH3 activate hardware channel 3
2212 - CONFIG_SYS_I2C_IHS_SPEED_3 speed channel 3 2206 - CONFIG_SYS_I2C_IHS_SPEED_3 speed channel 3
2213 - CONFIG_SYS_I2C_IHS_SLAVE_3 slave addr channel 3 2207 - CONFIG_SYS_I2C_IHS_SLAVE_3 slave addr channel 3
2214 - activate dual channel with CONFIG_SYS_I2C_IHS_DUAL 2208 - activate dual channel with CONFIG_SYS_I2C_IHS_DUAL
2215 - CONFIG_SYS_I2C_IHS_SPEED_0_1 speed channel 0_1 2209 - CONFIG_SYS_I2C_IHS_SPEED_0_1 speed channel 0_1
2216 - CONFIG_SYS_I2C_IHS_SLAVE_0_1 slave addr channel 0_1 2210 - CONFIG_SYS_I2C_IHS_SLAVE_0_1 slave addr channel 0_1
2217 - CONFIG_SYS_I2C_IHS_SPEED_1_1 speed channel 1_1 2211 - CONFIG_SYS_I2C_IHS_SPEED_1_1 speed channel 1_1
2218 - CONFIG_SYS_I2C_IHS_SLAVE_1_1 slave addr channel 1_1 2212 - CONFIG_SYS_I2C_IHS_SLAVE_1_1 slave addr channel 1_1
2219 - CONFIG_SYS_I2C_IHS_SPEED_2_1 speed channel 2_1 2213 - CONFIG_SYS_I2C_IHS_SPEED_2_1 speed channel 2_1
2220 - CONFIG_SYS_I2C_IHS_SLAVE_2_1 slave addr channel 2_1 2214 - CONFIG_SYS_I2C_IHS_SLAVE_2_1 slave addr channel 2_1
2221 - CONFIG_SYS_I2C_IHS_SPEED_3_1 speed channel 3_1 2215 - CONFIG_SYS_I2C_IHS_SPEED_3_1 speed channel 3_1
2222 - CONFIG_SYS_I2C_IHS_SLAVE_3_1 slave addr channel 3_1 2216 - CONFIG_SYS_I2C_IHS_SLAVE_3_1 slave addr channel 3_1
2223 2217
2224 additional defines: 2218 additional defines:
2225 2219
2226 CONFIG_SYS_NUM_I2C_BUSES 2220 CONFIG_SYS_NUM_I2C_BUSES
2227 Hold the number of i2c buses you want to use. 2221 Hold the number of i2c buses you want to use.
2228 2222
2229 CONFIG_SYS_I2C_DIRECT_BUS 2223 CONFIG_SYS_I2C_DIRECT_BUS
2230 define this, if you don't use i2c muxes on your hardware. 2224 define this, if you don't use i2c muxes on your hardware.
2231 if CONFIG_SYS_I2C_MAX_HOPS is not defined or == 0 you can 2225 if CONFIG_SYS_I2C_MAX_HOPS is not defined or == 0 you can
2232 omit this define. 2226 omit this define.
2233 2227
2234 CONFIG_SYS_I2C_MAX_HOPS 2228 CONFIG_SYS_I2C_MAX_HOPS
2235 define how many muxes are maximal consecutively connected 2229 define how many muxes are maximal consecutively connected
2236 on one i2c bus. If you not use i2c muxes, omit this 2230 on one i2c bus. If you not use i2c muxes, omit this
2237 define. 2231 define.
2238 2232
2239 CONFIG_SYS_I2C_BUSES 2233 CONFIG_SYS_I2C_BUSES
2240 hold a list of buses you want to use, only used if 2234 hold a list of buses you want to use, only used if
2241 CONFIG_SYS_I2C_DIRECT_BUS is not defined, for example 2235 CONFIG_SYS_I2C_DIRECT_BUS is not defined, for example
2242 a board with CONFIG_SYS_I2C_MAX_HOPS = 1 and 2236 a board with CONFIG_SYS_I2C_MAX_HOPS = 1 and
2243 CONFIG_SYS_NUM_I2C_BUSES = 9: 2237 CONFIG_SYS_NUM_I2C_BUSES = 9:
2244 2238
2245 CONFIG_SYS_I2C_BUSES {{0, {I2C_NULL_HOP}}, \ 2239 CONFIG_SYS_I2C_BUSES {{0, {I2C_NULL_HOP}}, \
2246 {0, {{I2C_MUX_PCA9547, 0x70, 1}}}, \ 2240 {0, {{I2C_MUX_PCA9547, 0x70, 1}}}, \
2247 {0, {{I2C_MUX_PCA9547, 0x70, 2}}}, \ 2241 {0, {{I2C_MUX_PCA9547, 0x70, 2}}}, \
2248 {0, {{I2C_MUX_PCA9547, 0x70, 3}}}, \ 2242 {0, {{I2C_MUX_PCA9547, 0x70, 3}}}, \
2249 {0, {{I2C_MUX_PCA9547, 0x70, 4}}}, \ 2243 {0, {{I2C_MUX_PCA9547, 0x70, 4}}}, \
2250 {0, {{I2C_MUX_PCA9547, 0x70, 5}}}, \ 2244 {0, {{I2C_MUX_PCA9547, 0x70, 5}}}, \
2251 {1, {I2C_NULL_HOP}}, \ 2245 {1, {I2C_NULL_HOP}}, \
2252 {1, {{I2C_MUX_PCA9544, 0x72, 1}}}, \ 2246 {1, {{I2C_MUX_PCA9544, 0x72, 1}}}, \
2253 {1, {{I2C_MUX_PCA9544, 0x72, 2}}}, \ 2247 {1, {{I2C_MUX_PCA9544, 0x72, 2}}}, \
2254 } 2248 }
2255 2249
2256 which defines 2250 which defines
2257 bus 0 on adapter 0 without a mux 2251 bus 0 on adapter 0 without a mux
2258 bus 1 on adapter 0 with a PCA9547 on address 0x70 port 1 2252 bus 1 on adapter 0 with a PCA9547 on address 0x70 port 1
2259 bus 2 on adapter 0 with a PCA9547 on address 0x70 port 2 2253 bus 2 on adapter 0 with a PCA9547 on address 0x70 port 2
2260 bus 3 on adapter 0 with a PCA9547 on address 0x70 port 3 2254 bus 3 on adapter 0 with a PCA9547 on address 0x70 port 3
2261 bus 4 on adapter 0 with a PCA9547 on address 0x70 port 4 2255 bus 4 on adapter 0 with a PCA9547 on address 0x70 port 4
2262 bus 5 on adapter 0 with a PCA9547 on address 0x70 port 5 2256 bus 5 on adapter 0 with a PCA9547 on address 0x70 port 5
2263 bus 6 on adapter 1 without a mux 2257 bus 6 on adapter 1 without a mux
2264 bus 7 on adapter 1 with a PCA9544 on address 0x72 port 1 2258 bus 7 on adapter 1 with a PCA9544 on address 0x72 port 1
2265 bus 8 on adapter 1 with a PCA9544 on address 0x72 port 2 2259 bus 8 on adapter 1 with a PCA9544 on address 0x72 port 2
2266 2260
2267 If you do not have i2c muxes on your board, omit this define. 2261 If you do not have i2c muxes on your board, omit this define.
2268 2262
2269 - Legacy I2C Support: CONFIG_HARD_I2C 2263 - Legacy I2C Support: CONFIG_HARD_I2C
2270 2264
2271 NOTE: It is intended to move drivers to CONFIG_SYS_I2C which 2265 NOTE: It is intended to move drivers to CONFIG_SYS_I2C which
2272 provides the following compelling advantages: 2266 provides the following compelling advantages:
2273 2267
2274 - more than one i2c adapter is usable 2268 - more than one i2c adapter is usable
2275 - approved multibus support 2269 - approved multibus support
2276 - better i2c mux support 2270 - better i2c mux support
2277 2271
2278 ** Please consider updating your I2C driver now. ** 2272 ** Please consider updating your I2C driver now. **
2279 2273
2280 These enable legacy I2C serial bus commands. Defining 2274 These enable legacy I2C serial bus commands. Defining
2281 CONFIG_HARD_I2C will include the appropriate I2C driver 2275 CONFIG_HARD_I2C will include the appropriate I2C driver
2282 for the selected CPU. 2276 for the selected CPU.
2283 2277
2284 This will allow you to use i2c commands at the u-boot 2278 This will allow you to use i2c commands at the u-boot
2285 command line (as long as you set CONFIG_CMD_I2C in 2279 command line (as long as you set CONFIG_CMD_I2C in
2286 CONFIG_COMMANDS) and communicate with i2c based realtime 2280 CONFIG_COMMANDS) and communicate with i2c based realtime
2287 clock chips. See common/cmd_i2c.c for a description of the 2281 clock chips. See common/cmd_i2c.c for a description of the
2288 command line interface. 2282 command line interface.
2289 2283
2290 CONFIG_HARD_I2C selects a hardware I2C controller. 2284 CONFIG_HARD_I2C selects a hardware I2C controller.
2291 2285
2292 There are several other quantities that must also be 2286 There are several other quantities that must also be
2293 defined when you define CONFIG_HARD_I2C. 2287 defined when you define CONFIG_HARD_I2C.
2294 2288
2295 In both cases you will need to define CONFIG_SYS_I2C_SPEED 2289 In both cases you will need to define CONFIG_SYS_I2C_SPEED
2296 to be the frequency (in Hz) at which you wish your i2c bus 2290 to be the frequency (in Hz) at which you wish your i2c bus
2297 to run and CONFIG_SYS_I2C_SLAVE to be the address of this node (ie 2291 to run and CONFIG_SYS_I2C_SLAVE to be the address of this node (ie
2298 the CPU's i2c node address). 2292 the CPU's i2c node address).
2299 2293
2300 Now, the u-boot i2c code for the mpc8xx 2294 Now, the u-boot i2c code for the mpc8xx
2301 (arch/powerpc/cpu/mpc8xx/i2c.c) sets the CPU up as a master node 2295 (arch/powerpc/cpu/mpc8xx/i2c.c) sets the CPU up as a master node
2302 and so its address should therefore be cleared to 0 (See, 2296 and so its address should therefore be cleared to 0 (See,
2303 eg, MPC823e User's Manual p.16-473). So, set 2297 eg, MPC823e User's Manual p.16-473). So, set
2304 CONFIG_SYS_I2C_SLAVE to 0. 2298 CONFIG_SYS_I2C_SLAVE to 0.
2305 2299
2306 CONFIG_SYS_I2C_INIT_MPC5XXX 2300 CONFIG_SYS_I2C_INIT_MPC5XXX
2307 2301
2308 When a board is reset during an i2c bus transfer 2302 When a board is reset during an i2c bus transfer
2309 chips might think that the current transfer is still 2303 chips might think that the current transfer is still
2310 in progress. Reset the slave devices by sending start 2304 in progress. Reset the slave devices by sending start
2311 commands until the slave device responds. 2305 commands until the slave device responds.
2312 2306
2313 That's all that's required for CONFIG_HARD_I2C. 2307 That's all that's required for CONFIG_HARD_I2C.
2314 2308
2315 If you use the software i2c interface (CONFIG_SYS_I2C_SOFT) 2309 If you use the software i2c interface (CONFIG_SYS_I2C_SOFT)
2316 then the following macros need to be defined (examples are 2310 then the following macros need to be defined (examples are
2317 from include/configs/lwmon.h): 2311 from include/configs/lwmon.h):
2318 2312
2319 I2C_INIT 2313 I2C_INIT
2320 2314
2321 (Optional). Any commands necessary to enable the I2C 2315 (Optional). Any commands necessary to enable the I2C
2322 controller or configure ports. 2316 controller or configure ports.
2323 2317
2324 eg: #define I2C_INIT (immr->im_cpm.cp_pbdir |= PB_SCL) 2318 eg: #define I2C_INIT (immr->im_cpm.cp_pbdir |= PB_SCL)
2325 2319
2326 I2C_PORT 2320 I2C_PORT
2327 2321
2328 (Only for MPC8260 CPU). The I/O port to use (the code 2322 (Only for MPC8260 CPU). The I/O port to use (the code
2329 assumes both bits are on the same port). Valid values 2323 assumes both bits are on the same port). Valid values
2330 are 0..3 for ports A..D. 2324 are 0..3 for ports A..D.
2331 2325
2332 I2C_ACTIVE 2326 I2C_ACTIVE
2333 2327
2334 The code necessary to make the I2C data line active 2328 The code necessary to make the I2C data line active
2335 (driven). If the data line is open collector, this 2329 (driven). If the data line is open collector, this
2336 define can be null. 2330 define can be null.
2337 2331
2338 eg: #define I2C_ACTIVE (immr->im_cpm.cp_pbdir |= PB_SDA) 2332 eg: #define I2C_ACTIVE (immr->im_cpm.cp_pbdir |= PB_SDA)
2339 2333
2340 I2C_TRISTATE 2334 I2C_TRISTATE
2341 2335
2342 The code necessary to make the I2C data line tri-stated 2336 The code necessary to make the I2C data line tri-stated
2343 (inactive). If the data line is open collector, this 2337 (inactive). If the data line is open collector, this
2344 define can be null. 2338 define can be null.
2345 2339
2346 eg: #define I2C_TRISTATE (immr->im_cpm.cp_pbdir &= ~PB_SDA) 2340 eg: #define I2C_TRISTATE (immr->im_cpm.cp_pbdir &= ~PB_SDA)
2347 2341
2348 I2C_READ 2342 I2C_READ
2349 2343
2350 Code that returns true if the I2C data line is high, 2344 Code that returns true if the I2C data line is high,
2351 false if it is low. 2345 false if it is low.
2352 2346
2353 eg: #define I2C_READ ((immr->im_cpm.cp_pbdat & PB_SDA) != 0) 2347 eg: #define I2C_READ ((immr->im_cpm.cp_pbdat & PB_SDA) != 0)
2354 2348
2355 I2C_SDA(bit) 2349 I2C_SDA(bit)
2356 2350
2357 If <bit> is true, sets the I2C data line high. If it 2351 If <bit> is true, sets the I2C data line high. If it
2358 is false, it clears it (low). 2352 is false, it clears it (low).
2359 2353
2360 eg: #define I2C_SDA(bit) \ 2354 eg: #define I2C_SDA(bit) \
2361 if(bit) immr->im_cpm.cp_pbdat |= PB_SDA; \ 2355 if(bit) immr->im_cpm.cp_pbdat |= PB_SDA; \
2362 else immr->im_cpm.cp_pbdat &= ~PB_SDA 2356 else immr->im_cpm.cp_pbdat &= ~PB_SDA
2363 2357
2364 I2C_SCL(bit) 2358 I2C_SCL(bit)
2365 2359
2366 If <bit> is true, sets the I2C clock line high. If it 2360 If <bit> is true, sets the I2C clock line high. If it
2367 is false, it clears it (low). 2361 is false, it clears it (low).
2368 2362
2369 eg: #define I2C_SCL(bit) \ 2363 eg: #define I2C_SCL(bit) \
2370 if(bit) immr->im_cpm.cp_pbdat |= PB_SCL; \ 2364 if(bit) immr->im_cpm.cp_pbdat |= PB_SCL; \
2371 else immr->im_cpm.cp_pbdat &= ~PB_SCL 2365 else immr->im_cpm.cp_pbdat &= ~PB_SCL
2372 2366
2373 I2C_DELAY 2367 I2C_DELAY
2374 2368
2375 This delay is invoked four times per clock cycle so this 2369 This delay is invoked four times per clock cycle so this
2376 controls the rate of data transfer. The data rate thus 2370 controls the rate of data transfer. The data rate thus
2377 is 1 / (I2C_DELAY * 4). Often defined to be something 2371 is 1 / (I2C_DELAY * 4). Often defined to be something
2378 like: 2372 like:
2379 2373
2380 #define I2C_DELAY udelay(2) 2374 #define I2C_DELAY udelay(2)
2381 2375
2382 CONFIG_SOFT_I2C_GPIO_SCL / CONFIG_SOFT_I2C_GPIO_SDA 2376 CONFIG_SOFT_I2C_GPIO_SCL / CONFIG_SOFT_I2C_GPIO_SDA
2383 2377
2384 If your arch supports the generic GPIO framework (asm/gpio.h), 2378 If your arch supports the generic GPIO framework (asm/gpio.h),
2385 then you may alternatively define the two GPIOs that are to be 2379 then you may alternatively define the two GPIOs that are to be
2386 used as SCL / SDA. Any of the previous I2C_xxx macros will 2380 used as SCL / SDA. Any of the previous I2C_xxx macros will
2387 have GPIO-based defaults assigned to them as appropriate. 2381 have GPIO-based defaults assigned to them as appropriate.
2388 2382
2389 You should define these to the GPIO value as given directly to 2383 You should define these to the GPIO value as given directly to
2390 the generic GPIO functions. 2384 the generic GPIO functions.
2391 2385
2392 CONFIG_SYS_I2C_INIT_BOARD 2386 CONFIG_SYS_I2C_INIT_BOARD
2393 2387
2394 When a board is reset during an i2c bus transfer 2388 When a board is reset during an i2c bus transfer
2395 chips might think that the current transfer is still 2389 chips might think that the current transfer is still
2396 in progress. On some boards it is possible to access 2390 in progress. On some boards it is possible to access
2397 the i2c SCLK line directly, either by using the 2391 the i2c SCLK line directly, either by using the
2398 processor pin as a GPIO or by having a second pin 2392 processor pin as a GPIO or by having a second pin
2399 connected to the bus. If this option is defined a 2393 connected to the bus. If this option is defined a
2400 custom i2c_init_board() routine in boards/xxx/board.c 2394 custom i2c_init_board() routine in boards/xxx/board.c
2401 is run early in the boot sequence. 2395 is run early in the boot sequence.
2402 2396
2403 CONFIG_SYS_I2C_BOARD_LATE_INIT 2397 CONFIG_SYS_I2C_BOARD_LATE_INIT
2404 2398
2405 An alternative to CONFIG_SYS_I2C_INIT_BOARD. If this option is 2399 An alternative to CONFIG_SYS_I2C_INIT_BOARD. If this option is
2406 defined a custom i2c_board_late_init() routine in 2400 defined a custom i2c_board_late_init() routine in
2407 boards/xxx/board.c is run AFTER the operations in i2c_init() 2401 boards/xxx/board.c is run AFTER the operations in i2c_init()
2408 is completed. This callpoint can be used to unreset i2c bus 2402 is completed. This callpoint can be used to unreset i2c bus
2409 using CPU i2c controller register accesses for CPUs whose i2c 2403 using CPU i2c controller register accesses for CPUs whose i2c
2410 controller provide such a method. It is called at the end of 2404 controller provide such a method. It is called at the end of
2411 i2c_init() to allow i2c_init operations to setup the i2c bus 2405 i2c_init() to allow i2c_init operations to setup the i2c bus
2412 controller on the CPU (e.g. setting bus speed & slave address). 2406 controller on the CPU (e.g. setting bus speed & slave address).
2413 2407
2414 CONFIG_I2CFAST (PPC405GP|PPC405EP only) 2408 CONFIG_I2CFAST (PPC405GP|PPC405EP only)
2415 2409
2416 This option enables configuration of bi_iic_fast[] flags 2410 This option enables configuration of bi_iic_fast[] flags
2417 in u-boot bd_info structure based on u-boot environment 2411 in u-boot bd_info structure based on u-boot environment
2418 variable "i2cfast". (see also i2cfast) 2412 variable "i2cfast". (see also i2cfast)
2419 2413
2420 CONFIG_I2C_MULTI_BUS 2414 CONFIG_I2C_MULTI_BUS
2421 2415
2422 This option allows the use of multiple I2C buses, each of which 2416 This option allows the use of multiple I2C buses, each of which
2423 must have a controller. At any point in time, only one bus is 2417 must have a controller. At any point in time, only one bus is
2424 active. To switch to a different bus, use the 'i2c dev' command. 2418 active. To switch to a different bus, use the 'i2c dev' command.
2425 Note that bus numbering is zero-based. 2419 Note that bus numbering is zero-based.
2426 2420
2427 CONFIG_SYS_I2C_NOPROBES 2421 CONFIG_SYS_I2C_NOPROBES
2428 2422
2429 This option specifies a list of I2C devices that will be skipped 2423 This option specifies a list of I2C devices that will be skipped
2430 when the 'i2c probe' command is issued. If CONFIG_I2C_MULTI_BUS 2424 when the 'i2c probe' command is issued. If CONFIG_I2C_MULTI_BUS
2431 is set, specify a list of bus-device pairs. Otherwise, specify 2425 is set, specify a list of bus-device pairs. Otherwise, specify
2432 a 1D array of device addresses 2426 a 1D array of device addresses
2433 2427
2434 e.g. 2428 e.g.
2435 #undef CONFIG_I2C_MULTI_BUS 2429 #undef CONFIG_I2C_MULTI_BUS
2436 #define CONFIG_SYS_I2C_NOPROBES {0x50,0x68} 2430 #define CONFIG_SYS_I2C_NOPROBES {0x50,0x68}
2437 2431
2438 will skip addresses 0x50 and 0x68 on a board with one I2C bus 2432 will skip addresses 0x50 and 0x68 on a board with one I2C bus
2439 2433
2440 #define CONFIG_I2C_MULTI_BUS 2434 #define CONFIG_I2C_MULTI_BUS
2441 #define CONFIG_SYS_I2C_NOPROBES {{0,0x50},{0,0x68},{1,0x54}} 2435 #define CONFIG_SYS_I2C_NOPROBES {{0,0x50},{0,0x68},{1,0x54}}
2442 2436
2443 will skip addresses 0x50 and 0x68 on bus 0 and address 0x54 on bus 1 2437 will skip addresses 0x50 and 0x68 on bus 0 and address 0x54 on bus 1
2444 2438
2445 CONFIG_SYS_SPD_BUS_NUM 2439 CONFIG_SYS_SPD_BUS_NUM
2446 2440
2447 If defined, then this indicates the I2C bus number for DDR SPD. 2441 If defined, then this indicates the I2C bus number for DDR SPD.
2448 If not defined, then U-Boot assumes that SPD is on I2C bus 0. 2442 If not defined, then U-Boot assumes that SPD is on I2C bus 0.
2449 2443
2450 CONFIG_SYS_RTC_BUS_NUM 2444 CONFIG_SYS_RTC_BUS_NUM
2451 2445
2452 If defined, then this indicates the I2C bus number for the RTC. 2446 If defined, then this indicates the I2C bus number for the RTC.
2453 If not defined, then U-Boot assumes that RTC is on I2C bus 0. 2447 If not defined, then U-Boot assumes that RTC is on I2C bus 0.
2454 2448
2455 CONFIG_SYS_DTT_BUS_NUM 2449 CONFIG_SYS_DTT_BUS_NUM
2456 2450
2457 If defined, then this indicates the I2C bus number for the DTT. 2451 If defined, then this indicates the I2C bus number for the DTT.
2458 If not defined, then U-Boot assumes that DTT is on I2C bus 0. 2452 If not defined, then U-Boot assumes that DTT is on I2C bus 0.
2459 2453
2460 CONFIG_SYS_I2C_DTT_ADDR: 2454 CONFIG_SYS_I2C_DTT_ADDR:
2461 2455
2462 If defined, specifies the I2C address of the DTT device. 2456 If defined, specifies the I2C address of the DTT device.
2463 If not defined, then U-Boot uses predefined value for 2457 If not defined, then U-Boot uses predefined value for
2464 specified DTT device. 2458 specified DTT device.
2465 2459
2466 CONFIG_SOFT_I2C_READ_REPEATED_START 2460 CONFIG_SOFT_I2C_READ_REPEATED_START
2467 2461
2468 defining this will force the i2c_read() function in 2462 defining this will force the i2c_read() function in
2469 the soft_i2c driver to perform an I2C repeated start 2463 the soft_i2c driver to perform an I2C repeated start
2470 between writing the address pointer and reading the 2464 between writing the address pointer and reading the
2471 data. If this define is omitted the default behaviour 2465 data. If this define is omitted the default behaviour
2472 of doing a stop-start sequence will be used. Most I2C 2466 of doing a stop-start sequence will be used. Most I2C
2473 devices can use either method, but some require one or 2467 devices can use either method, but some require one or
2474 the other. 2468 the other.
2475 2469
2476 - SPI Support: CONFIG_SPI 2470 - SPI Support: CONFIG_SPI
2477 2471
2478 Enables SPI driver (so far only tested with 2472 Enables SPI driver (so far only tested with
2479 SPI EEPROM, also an instance works with Crystal A/D and 2473 SPI EEPROM, also an instance works with Crystal A/D and
2480 D/As on the SACSng board) 2474 D/As on the SACSng board)
2481 2475
2482 CONFIG_SH_SPI 2476 CONFIG_SH_SPI
2483 2477
2484 Enables the driver for SPI controller on SuperH. Currently 2478 Enables the driver for SPI controller on SuperH. Currently
2485 only SH7757 is supported. 2479 only SH7757 is supported.
2486 2480
2487 CONFIG_SOFT_SPI 2481 CONFIG_SOFT_SPI
2488 2482
2489 Enables a software (bit-bang) SPI driver rather than 2483 Enables a software (bit-bang) SPI driver rather than
2490 using hardware support. This is a general purpose 2484 using hardware support. This is a general purpose
2491 driver that only requires three general I/O port pins 2485 driver that only requires three general I/O port pins
2492 (two outputs, one input) to function. If this is 2486 (two outputs, one input) to function. If this is
2493 defined, the board configuration must define several 2487 defined, the board configuration must define several
2494 SPI configuration items (port pins to use, etc). For 2488 SPI configuration items (port pins to use, etc). For
2495 an example, see include/configs/sacsng.h. 2489 an example, see include/configs/sacsng.h.
2496 2490
2497 CONFIG_HARD_SPI 2491 CONFIG_HARD_SPI
2498 2492
2499 Enables a hardware SPI driver for general-purpose reads 2493 Enables a hardware SPI driver for general-purpose reads
2500 and writes. As with CONFIG_SOFT_SPI, the board configuration 2494 and writes. As with CONFIG_SOFT_SPI, the board configuration
2501 must define a list of chip-select function pointers. 2495 must define a list of chip-select function pointers.
2502 Currently supported on some MPC8xxx processors. For an 2496 Currently supported on some MPC8xxx processors. For an
2503 example, see include/configs/mpc8349emds.h. 2497 example, see include/configs/mpc8349emds.h.
2504 2498
2505 CONFIG_MXC_SPI 2499 CONFIG_MXC_SPI
2506 2500
2507 Enables the driver for the SPI controllers on i.MX and MXC 2501 Enables the driver for the SPI controllers on i.MX and MXC
2508 SoCs. Currently i.MX31/35/51 are supported. 2502 SoCs. Currently i.MX31/35/51 are supported.
2509 2503
2510 CONFIG_SYS_SPI_MXC_WAIT 2504 CONFIG_SYS_SPI_MXC_WAIT
2511 Timeout for waiting until spi transfer completed. 2505 Timeout for waiting until spi transfer completed.
2512 default: (CONFIG_SYS_HZ/100) /* 10 ms */ 2506 default: (CONFIG_SYS_HZ/100) /* 10 ms */
2513 2507
2514 - FPGA Support: CONFIG_FPGA 2508 - FPGA Support: CONFIG_FPGA
2515 2509
2516 Enables FPGA subsystem. 2510 Enables FPGA subsystem.
2517 2511
2518 CONFIG_FPGA_<vendor> 2512 CONFIG_FPGA_<vendor>
2519 2513
2520 Enables support for specific chip vendors. 2514 Enables support for specific chip vendors.
2521 (ALTERA, XILINX) 2515 (ALTERA, XILINX)
2522 2516
2523 CONFIG_FPGA_<family> 2517 CONFIG_FPGA_<family>
2524 2518
2525 Enables support for FPGA family. 2519 Enables support for FPGA family.
2526 (SPARTAN2, SPARTAN3, VIRTEX2, CYCLONE2, ACEX1K, ACEX) 2520 (SPARTAN2, SPARTAN3, VIRTEX2, CYCLONE2, ACEX1K, ACEX)
2527 2521
2528 CONFIG_FPGA_COUNT 2522 CONFIG_FPGA_COUNT
2529 2523
2530 Specify the number of FPGA devices to support. 2524 Specify the number of FPGA devices to support.
2531 2525
2532 CONFIG_CMD_FPGA_LOADMK 2526 CONFIG_CMD_FPGA_LOADMK
2533 2527
2534 Enable support for fpga loadmk command 2528 Enable support for fpga loadmk command
2535 2529
2536 CONFIG_CMD_FPGA_LOADP 2530 CONFIG_CMD_FPGA_LOADP
2537 2531
2538 Enable support for fpga loadp command - load partial bitstream 2532 Enable support for fpga loadp command - load partial bitstream
2539 2533
2540 CONFIG_CMD_FPGA_LOADBP 2534 CONFIG_CMD_FPGA_LOADBP
2541 2535
2542 Enable support for fpga loadbp command - load partial bitstream 2536 Enable support for fpga loadbp command - load partial bitstream
2543 (Xilinx only) 2537 (Xilinx only)
2544 2538
2545 CONFIG_SYS_FPGA_PROG_FEEDBACK 2539 CONFIG_SYS_FPGA_PROG_FEEDBACK
2546 2540
2547 Enable printing of hash marks during FPGA configuration. 2541 Enable printing of hash marks during FPGA configuration.
2548 2542
2549 CONFIG_SYS_FPGA_CHECK_BUSY 2543 CONFIG_SYS_FPGA_CHECK_BUSY
2550 2544
2551 Enable checks on FPGA configuration interface busy 2545 Enable checks on FPGA configuration interface busy
2552 status by the configuration function. This option 2546 status by the configuration function. This option
2553 will require a board or device specific function to 2547 will require a board or device specific function to
2554 be written. 2548 be written.
2555 2549
2556 CONFIG_FPGA_DELAY 2550 CONFIG_FPGA_DELAY
2557 2551
2558 If defined, a function that provides delays in the FPGA 2552 If defined, a function that provides delays in the FPGA
2559 configuration driver. 2553 configuration driver.
2560 2554
2561 CONFIG_SYS_FPGA_CHECK_CTRLC 2555 CONFIG_SYS_FPGA_CHECK_CTRLC
2562 Allow Control-C to interrupt FPGA configuration 2556 Allow Control-C to interrupt FPGA configuration
2563 2557
2564 CONFIG_SYS_FPGA_CHECK_ERROR 2558 CONFIG_SYS_FPGA_CHECK_ERROR
2565 2559
2566 Check for configuration errors during FPGA bitfile 2560 Check for configuration errors during FPGA bitfile
2567 loading. For example, abort during Virtex II 2561 loading. For example, abort during Virtex II
2568 configuration if the INIT_B line goes low (which 2562 configuration if the INIT_B line goes low (which
2569 indicated a CRC error). 2563 indicated a CRC error).
2570 2564
2571 CONFIG_SYS_FPGA_WAIT_INIT 2565 CONFIG_SYS_FPGA_WAIT_INIT
2572 2566
2573 Maximum time to wait for the INIT_B line to de-assert 2567 Maximum time to wait for the INIT_B line to de-assert
2574 after PROB_B has been de-asserted during a Virtex II 2568 after PROB_B has been de-asserted during a Virtex II
2575 FPGA configuration sequence. The default time is 500 2569 FPGA configuration sequence. The default time is 500
2576 ms. 2570 ms.
2577 2571
2578 CONFIG_SYS_FPGA_WAIT_BUSY 2572 CONFIG_SYS_FPGA_WAIT_BUSY
2579 2573
2580 Maximum time to wait for BUSY to de-assert during 2574 Maximum time to wait for BUSY to de-assert during
2581 Virtex II FPGA configuration. The default is 5 ms. 2575 Virtex II FPGA configuration. The default is 5 ms.
2582 2576
2583 CONFIG_SYS_FPGA_WAIT_CONFIG 2577 CONFIG_SYS_FPGA_WAIT_CONFIG
2584 2578
2585 Time to wait after FPGA configuration. The default is 2579 Time to wait after FPGA configuration. The default is
2586 200 ms. 2580 200 ms.
2587 2581
2588 - Configuration Management: 2582 - Configuration Management:
2589 CONFIG_BUILD_TARGET 2583 CONFIG_BUILD_TARGET
2590 2584
2591 Some SoCs need special image types (e.g. U-Boot binary 2585 Some SoCs need special image types (e.g. U-Boot binary
2592 with a special header) as build targets. By defining 2586 with a special header) as build targets. By defining
2593 CONFIG_BUILD_TARGET in the SoC / board header, this 2587 CONFIG_BUILD_TARGET in the SoC / board header, this
2594 special image will be automatically built upon calling 2588 special image will be automatically built upon calling
2595 make / buildman. 2589 make / buildman.
2596 2590
2597 CONFIG_IDENT_STRING 2591 CONFIG_IDENT_STRING
2598 2592
2599 If defined, this string will be added to the U-Boot 2593 If defined, this string will be added to the U-Boot
2600 version information (U_BOOT_VERSION) 2594 version information (U_BOOT_VERSION)
2601 2595
2602 - Vendor Parameter Protection: 2596 - Vendor Parameter Protection:
2603 2597
2604 U-Boot considers the values of the environment 2598 U-Boot considers the values of the environment
2605 variables "serial#" (Board Serial Number) and 2599 variables "serial#" (Board Serial Number) and
2606 "ethaddr" (Ethernet Address) to be parameters that 2600 "ethaddr" (Ethernet Address) to be parameters that
2607 are set once by the board vendor / manufacturer, and 2601 are set once by the board vendor / manufacturer, and
2608 protects these variables from casual modification by 2602 protects these variables from casual modification by
2609 the user. Once set, these variables are read-only, 2603 the user. Once set, these variables are read-only,
2610 and write or delete attempts are rejected. You can 2604 and write or delete attempts are rejected. You can
2611 change this behaviour: 2605 change this behaviour:
2612 2606
2613 If CONFIG_ENV_OVERWRITE is #defined in your config 2607 If CONFIG_ENV_OVERWRITE is #defined in your config
2614 file, the write protection for vendor parameters is 2608 file, the write protection for vendor parameters is
2615 completely disabled. Anybody can change or delete 2609 completely disabled. Anybody can change or delete
2616 these parameters. 2610 these parameters.
2617 2611
2618 Alternatively, if you define _both_ an ethaddr in the 2612 Alternatively, if you define _both_ an ethaddr in the
2619 default env _and_ CONFIG_OVERWRITE_ETHADDR_ONCE, a default 2613 default env _and_ CONFIG_OVERWRITE_ETHADDR_ONCE, a default
2620 Ethernet address is installed in the environment, 2614 Ethernet address is installed in the environment,
2621 which can be changed exactly ONCE by the user. [The 2615 which can be changed exactly ONCE by the user. [The
2622 serial# is unaffected by this, i. e. it remains 2616 serial# is unaffected by this, i. e. it remains
2623 read-only.] 2617 read-only.]
2624 2618
2625 The same can be accomplished in a more flexible way 2619 The same can be accomplished in a more flexible way
2626 for any variable by configuring the type of access 2620 for any variable by configuring the type of access
2627 to allow for those variables in the ".flags" variable 2621 to allow for those variables in the ".flags" variable
2628 or define CONFIG_ENV_FLAGS_LIST_STATIC. 2622 or define CONFIG_ENV_FLAGS_LIST_STATIC.
2629 2623
2630 - Protected RAM: 2624 - Protected RAM:
2631 CONFIG_PRAM 2625 CONFIG_PRAM
2632 2626
2633 Define this variable to enable the reservation of 2627 Define this variable to enable the reservation of
2634 "protected RAM", i. e. RAM which is not overwritten 2628 "protected RAM", i. e. RAM which is not overwritten
2635 by U-Boot. Define CONFIG_PRAM to hold the number of 2629 by U-Boot. Define CONFIG_PRAM to hold the number of
2636 kB you want to reserve for pRAM. You can overwrite 2630 kB you want to reserve for pRAM. You can overwrite
2637 this default value by defining an environment 2631 this default value by defining an environment
2638 variable "pram" to the number of kB you want to 2632 variable "pram" to the number of kB you want to
2639 reserve. Note that the board info structure will 2633 reserve. Note that the board info structure will
2640 still show the full amount of RAM. If pRAM is 2634 still show the full amount of RAM. If pRAM is
2641 reserved, a new environment variable "mem" will 2635 reserved, a new environment variable "mem" will
2642 automatically be defined to hold the amount of 2636 automatically be defined to hold the amount of
2643 remaining RAM in a form that can be passed as boot 2637 remaining RAM in a form that can be passed as boot
2644 argument to Linux, for instance like that: 2638 argument to Linux, for instance like that:
2645 2639
2646 setenv bootargs ... mem=\${mem} 2640 setenv bootargs ... mem=\${mem}
2647 saveenv 2641 saveenv
2648 2642
2649 This way you can tell Linux not to use this memory, 2643 This way you can tell Linux not to use this memory,
2650 either, which results in a memory region that will 2644 either, which results in a memory region that will
2651 not be affected by reboots. 2645 not be affected by reboots.
2652 2646
2653 *WARNING* If your board configuration uses automatic 2647 *WARNING* If your board configuration uses automatic
2654 detection of the RAM size, you must make sure that 2648 detection of the RAM size, you must make sure that
2655 this memory test is non-destructive. So far, the 2649 this memory test is non-destructive. So far, the
2656 following board configurations are known to be 2650 following board configurations are known to be
2657 "pRAM-clean": 2651 "pRAM-clean":
2658 2652
2659 IVMS8, IVML24, SPD8xx, TQM8xxL, 2653 IVMS8, IVML24, SPD8xx, TQM8xxL,
2660 HERMES, IP860, RPXlite, LWMON, 2654 HERMES, IP860, RPXlite, LWMON,
2661 FLAGADM, TQM8260 2655 FLAGADM, TQM8260
2662 2656
2663 - Access to physical memory region (> 4GB) 2657 - Access to physical memory region (> 4GB)
2664 Some basic support is provided for operations on memory not 2658 Some basic support is provided for operations on memory not
2665 normally accessible to U-Boot - e.g. some architectures 2659 normally accessible to U-Boot - e.g. some architectures
2666 support access to more than 4GB of memory on 32-bit 2660 support access to more than 4GB of memory on 32-bit
2667 machines using physical address extension or similar. 2661 machines using physical address extension or similar.
2668 Define CONFIG_PHYSMEM to access this basic support, which 2662 Define CONFIG_PHYSMEM to access this basic support, which
2669 currently only supports clearing the memory. 2663 currently only supports clearing the memory.
2670 2664
2671 - Error Recovery: 2665 - Error Recovery:
2672 CONFIG_PANIC_HANG 2666 CONFIG_PANIC_HANG
2673 2667
2674 Define this variable to stop the system in case of a 2668 Define this variable to stop the system in case of a
2675 fatal error, so that you have to reset it manually. 2669 fatal error, so that you have to reset it manually.
2676 This is probably NOT a good idea for an embedded 2670 This is probably NOT a good idea for an embedded
2677 system where you want the system to reboot 2671 system where you want the system to reboot
2678 automatically as fast as possible, but it may be 2672 automatically as fast as possible, but it may be
2679 useful during development since you can try to debug 2673 useful during development since you can try to debug
2680 the conditions that lead to the situation. 2674 the conditions that lead to the situation.
2681 2675
2682 CONFIG_NET_RETRY_COUNT 2676 CONFIG_NET_RETRY_COUNT
2683 2677
2684 This variable defines the number of retries for 2678 This variable defines the number of retries for
2685 network operations like ARP, RARP, TFTP, or BOOTP 2679 network operations like ARP, RARP, TFTP, or BOOTP
2686 before giving up the operation. If not defined, a 2680 before giving up the operation. If not defined, a
2687 default value of 5 is used. 2681 default value of 5 is used.
2688 2682
2689 CONFIG_ARP_TIMEOUT 2683 CONFIG_ARP_TIMEOUT
2690 2684
2691 Timeout waiting for an ARP reply in milliseconds. 2685 Timeout waiting for an ARP reply in milliseconds.
2692 2686
2693 CONFIG_NFS_TIMEOUT 2687 CONFIG_NFS_TIMEOUT
2694 2688
2695 Timeout in milliseconds used in NFS protocol. 2689 Timeout in milliseconds used in NFS protocol.
2696 If you encounter "ERROR: Cannot umount" in nfs command, 2690 If you encounter "ERROR: Cannot umount" in nfs command,
2697 try longer timeout such as 2691 try longer timeout such as
2698 #define CONFIG_NFS_TIMEOUT 10000UL 2692 #define CONFIG_NFS_TIMEOUT 10000UL
2699 2693
2700 - Command Interpreter: 2694 - Command Interpreter:
2701 CONFIG_AUTO_COMPLETE 2695 CONFIG_AUTO_COMPLETE
2702 2696
2703 Enable auto completion of commands using TAB. 2697 Enable auto completion of commands using TAB.
2704 2698
2705 CONFIG_SYS_PROMPT_HUSH_PS2 2699 CONFIG_SYS_PROMPT_HUSH_PS2
2706 2700
2707 This defines the secondary prompt string, which is 2701 This defines the secondary prompt string, which is
2708 printed when the command interpreter needs more input 2702 printed when the command interpreter needs more input
2709 to complete a command. Usually "> ". 2703 to complete a command. Usually "> ".
2710 2704
2711 Note: 2705 Note:
2712 2706
2713 In the current implementation, the local variables 2707 In the current implementation, the local variables
2714 space and global environment variables space are 2708 space and global environment variables space are
2715 separated. Local variables are those you define by 2709 separated. Local variables are those you define by
2716 simply typing `name=value'. To access a local 2710 simply typing `name=value'. To access a local
2717 variable later on, you have write `$name' or 2711 variable later on, you have write `$name' or
2718 `${name}'; to execute the contents of a variable 2712 `${name}'; to execute the contents of a variable
2719 directly type `$name' at the command prompt. 2713 directly type `$name' at the command prompt.
2720 2714
2721 Global environment variables are those you use 2715 Global environment variables are those you use
2722 setenv/printenv to work with. To run a command stored 2716 setenv/printenv to work with. To run a command stored
2723 in such a variable, you need to use the run command, 2717 in such a variable, you need to use the run command,
2724 and you must not use the '$' sign to access them. 2718 and you must not use the '$' sign to access them.
2725 2719
2726 To store commands and special characters in a 2720 To store commands and special characters in a
2727 variable, please use double quotation marks 2721 variable, please use double quotation marks
2728 surrounding the whole text of the variable, instead 2722 surrounding the whole text of the variable, instead
2729 of the backslashes before semicolons and special 2723 of the backslashes before semicolons and special
2730 symbols. 2724 symbols.
2731 2725
2732 - Command Line Editing and History: 2726 - Command Line Editing and History:
2733 CONFIG_CMDLINE_EDITING 2727 CONFIG_CMDLINE_EDITING
2734 2728
2735 Enable editing and History functions for interactive 2729 Enable editing and History functions for interactive
2736 command line input operations 2730 command line input operations
2737 2731
2738 - Command Line PS1/PS2 support: 2732 - Command Line PS1/PS2 support:
2739 CONFIG_CMDLINE_PS_SUPPORT 2733 CONFIG_CMDLINE_PS_SUPPORT
2740 2734
2741 Enable support for changing the command prompt string 2735 Enable support for changing the command prompt string
2742 at run-time. Only static string is supported so far. 2736 at run-time. Only static string is supported so far.
2743 The string is obtained from environment variables PS1 2737 The string is obtained from environment variables PS1
2744 and PS2. 2738 and PS2.
2745 2739
2746 - Default Environment: 2740 - Default Environment:
2747 CONFIG_EXTRA_ENV_SETTINGS 2741 CONFIG_EXTRA_ENV_SETTINGS
2748 2742
2749 Define this to contain any number of null terminated 2743 Define this to contain any number of null terminated
2750 strings (variable = value pairs) that will be part of 2744 strings (variable = value pairs) that will be part of
2751 the default environment compiled into the boot image. 2745 the default environment compiled into the boot image.
2752 2746
2753 For example, place something like this in your 2747 For example, place something like this in your
2754 board's config file: 2748 board's config file:
2755 2749
2756 #define CONFIG_EXTRA_ENV_SETTINGS \ 2750 #define CONFIG_EXTRA_ENV_SETTINGS \
2757 "myvar1=value1\0" \ 2751 "myvar1=value1\0" \
2758 "myvar2=value2\0" 2752 "myvar2=value2\0"
2759 2753
2760 Warning: This method is based on knowledge about the 2754 Warning: This method is based on knowledge about the
2761 internal format how the environment is stored by the 2755 internal format how the environment is stored by the
2762 U-Boot code. This is NOT an official, exported 2756 U-Boot code. This is NOT an official, exported
2763 interface! Although it is unlikely that this format 2757 interface! Although it is unlikely that this format
2764 will change soon, there is no guarantee either. 2758 will change soon, there is no guarantee either.
2765 You better know what you are doing here. 2759 You better know what you are doing here.
2766 2760
2767 Note: overly (ab)use of the default environment is 2761 Note: overly (ab)use of the default environment is
2768 discouraged. Make sure to check other ways to preset 2762 discouraged. Make sure to check other ways to preset
2769 the environment like the "source" command or the 2763 the environment like the "source" command or the
2770 boot command first. 2764 boot command first.
2771 2765
2772 CONFIG_ENV_VARS_UBOOT_CONFIG 2766 CONFIG_ENV_VARS_UBOOT_CONFIG
2773 2767
2774 Define this in order to add variables describing the 2768 Define this in order to add variables describing the
2775 U-Boot build configuration to the default environment. 2769 U-Boot build configuration to the default environment.
2776 These will be named arch, cpu, board, vendor, and soc. 2770 These will be named arch, cpu, board, vendor, and soc.
2777 2771
2778 Enabling this option will cause the following to be defined: 2772 Enabling this option will cause the following to be defined:
2779 2773
2780 - CONFIG_SYS_ARCH 2774 - CONFIG_SYS_ARCH
2781 - CONFIG_SYS_CPU 2775 - CONFIG_SYS_CPU
2782 - CONFIG_SYS_BOARD 2776 - CONFIG_SYS_BOARD
2783 - CONFIG_SYS_VENDOR 2777 - CONFIG_SYS_VENDOR
2784 - CONFIG_SYS_SOC 2778 - CONFIG_SYS_SOC
2785 2779
2786 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG 2780 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
2787 2781
2788 Define this in order to add variables describing certain 2782 Define this in order to add variables describing certain
2789 run-time determined information about the hardware to the 2783 run-time determined information about the hardware to the
2790 environment. These will be named board_name, board_rev. 2784 environment. These will be named board_name, board_rev.
2791 2785
2792 CONFIG_DELAY_ENVIRONMENT 2786 CONFIG_DELAY_ENVIRONMENT
2793 2787
2794 Normally the environment is loaded when the board is 2788 Normally the environment is loaded when the board is
2795 initialised so that it is available to U-Boot. This inhibits 2789 initialised so that it is available to U-Boot. This inhibits
2796 that so that the environment is not available until 2790 that so that the environment is not available until
2797 explicitly loaded later by U-Boot code. With CONFIG_OF_CONTROL 2791 explicitly loaded later by U-Boot code. With CONFIG_OF_CONTROL
2798 this is instead controlled by the value of 2792 this is instead controlled by the value of
2799 /config/load-environment. 2793 /config/load-environment.
2800 2794
2801 - Parallel Flash support: 2795 - Parallel Flash support:
2802 CONFIG_SYS_NO_FLASH 2796 CONFIG_SYS_NO_FLASH
2803 2797
2804 Traditionally U-Boot was run on systems with parallel NOR 2798 Traditionally U-Boot was run on systems with parallel NOR
2805 flash. This option is used to disable support for parallel NOR 2799 flash. This option is used to disable support for parallel NOR
2806 flash. This option should be defined if the board does not have 2800 flash. This option should be defined if the board does not have
2807 parallel flash. 2801 parallel flash.
2808 2802
2809 If this option is not defined one of the generic flash drivers 2803 If this option is not defined one of the generic flash drivers
2810 (e.g. CONFIG_FLASH_CFI_DRIVER or CONFIG_ST_SMI) must be 2804 (e.g. CONFIG_FLASH_CFI_DRIVER or CONFIG_ST_SMI) must be
2811 selected or the board must provide an implementation of the 2805 selected or the board must provide an implementation of the
2812 flash API (see include/flash.h). 2806 flash API (see include/flash.h).
2813 2807
2814 - DataFlash Support: 2808 - DataFlash Support:
2815 CONFIG_HAS_DATAFLASH 2809 CONFIG_HAS_DATAFLASH
2816 2810
2817 Defining this option enables DataFlash features and 2811 Defining this option enables DataFlash features and
2818 allows to read/write in Dataflash via the standard 2812 allows to read/write in Dataflash via the standard
2819 commands cp, md... 2813 commands cp, md...
2820 2814
2821 - Serial Flash support 2815 - Serial Flash support
2822 CONFIG_CMD_SF 2816 CONFIG_CMD_SF
2823 2817
2824 Defining this option enables SPI flash commands 2818 Defining this option enables SPI flash commands
2825 'sf probe/read/write/erase/update'. 2819 'sf probe/read/write/erase/update'.
2826 2820
2827 Usage requires an initial 'probe' to define the serial 2821 Usage requires an initial 'probe' to define the serial
2828 flash parameters, followed by read/write/erase/update 2822 flash parameters, followed by read/write/erase/update
2829 commands. 2823 commands.
2830 2824
2831 The following defaults may be provided by the platform 2825 The following defaults may be provided by the platform
2832 to handle the common case when only a single serial 2826 to handle the common case when only a single serial
2833 flash is present on the system. 2827 flash is present on the system.
2834 2828
2835 CONFIG_SF_DEFAULT_BUS Bus identifier 2829 CONFIG_SF_DEFAULT_BUS Bus identifier
2836 CONFIG_SF_DEFAULT_CS Chip-select 2830 CONFIG_SF_DEFAULT_CS Chip-select
2837 CONFIG_SF_DEFAULT_MODE (see include/spi.h) 2831 CONFIG_SF_DEFAULT_MODE (see include/spi.h)
2838 CONFIG_SF_DEFAULT_SPEED in Hz 2832 CONFIG_SF_DEFAULT_SPEED in Hz
2839 2833
2840 CONFIG_CMD_SF_TEST 2834 CONFIG_CMD_SF_TEST
2841 2835
2842 Define this option to include a destructive SPI flash 2836 Define this option to include a destructive SPI flash
2843 test ('sf test'). 2837 test ('sf test').
2844 2838
2845 CONFIG_SF_DUAL_FLASH Dual flash memories 2839 CONFIG_SF_DUAL_FLASH Dual flash memories
2846 2840
2847 Define this option to use dual flash support where two flash 2841 Define this option to use dual flash support where two flash
2848 memories can be connected with a given cs line. 2842 memories can be connected with a given cs line.
2849 Currently Xilinx Zynq qspi supports these type of connections. 2843 Currently Xilinx Zynq qspi supports these type of connections.
2850 2844
2851 - SystemACE Support: 2845 - SystemACE Support:
2852 CONFIG_SYSTEMACE 2846 CONFIG_SYSTEMACE
2853 2847
2854 Adding this option adds support for Xilinx SystemACE 2848 Adding this option adds support for Xilinx SystemACE
2855 chips attached via some sort of local bus. The address 2849 chips attached via some sort of local bus. The address
2856 of the chip must also be defined in the 2850 of the chip must also be defined in the
2857 CONFIG_SYS_SYSTEMACE_BASE macro. For example: 2851 CONFIG_SYS_SYSTEMACE_BASE macro. For example:
2858 2852
2859 #define CONFIG_SYSTEMACE 2853 #define CONFIG_SYSTEMACE
2860 #define CONFIG_SYS_SYSTEMACE_BASE 0xf0000000 2854 #define CONFIG_SYS_SYSTEMACE_BASE 0xf0000000
2861 2855
2862 When SystemACE support is added, the "ace" device type 2856 When SystemACE support is added, the "ace" device type
2863 becomes available to the fat commands, i.e. fatls. 2857 becomes available to the fat commands, i.e. fatls.
2864 2858
2865 - TFTP Fixed UDP Port: 2859 - TFTP Fixed UDP Port:
2866 CONFIG_TFTP_PORT 2860 CONFIG_TFTP_PORT
2867 2861
2868 If this is defined, the environment variable tftpsrcp 2862 If this is defined, the environment variable tftpsrcp
2869 is used to supply the TFTP UDP source port value. 2863 is used to supply the TFTP UDP source port value.
2870 If tftpsrcp isn't defined, the normal pseudo-random port 2864 If tftpsrcp isn't defined, the normal pseudo-random port
2871 number generator is used. 2865 number generator is used.
2872 2866
2873 Also, the environment variable tftpdstp is used to supply 2867 Also, the environment variable tftpdstp is used to supply
2874 the TFTP UDP destination port value. If tftpdstp isn't 2868 the TFTP UDP destination port value. If tftpdstp isn't
2875 defined, the normal port 69 is used. 2869 defined, the normal port 69 is used.
2876 2870
2877 The purpose for tftpsrcp is to allow a TFTP server to 2871 The purpose for tftpsrcp is to allow a TFTP server to
2878 blindly start the TFTP transfer using the pre-configured 2872 blindly start the TFTP transfer using the pre-configured
2879 target IP address and UDP port. This has the effect of 2873 target IP address and UDP port. This has the effect of
2880 "punching through" the (Windows XP) firewall, allowing 2874 "punching through" the (Windows XP) firewall, allowing
2881 the remainder of the TFTP transfer to proceed normally. 2875 the remainder of the TFTP transfer to proceed normally.
2882 A better solution is to properly configure the firewall, 2876 A better solution is to properly configure the firewall,
2883 but sometimes that is not allowed. 2877 but sometimes that is not allowed.
2884 2878
2885 - Hashing support: 2879 - Hashing support:
2886 CONFIG_CMD_HASH 2880 CONFIG_CMD_HASH
2887 2881
2888 This enables a generic 'hash' command which can produce 2882 This enables a generic 'hash' command which can produce
2889 hashes / digests from a few algorithms (e.g. SHA1, SHA256). 2883 hashes / digests from a few algorithms (e.g. SHA1, SHA256).
2890 2884
2891 CONFIG_HASH_VERIFY 2885 CONFIG_HASH_VERIFY
2892 2886
2893 Enable the hash verify command (hash -v). This adds to code 2887 Enable the hash verify command (hash -v). This adds to code
2894 size a little. 2888 size a little.
2895 2889
2896 CONFIG_SHA1 - This option enables support of hashing using SHA1 2890 CONFIG_SHA1 - This option enables support of hashing using SHA1
2897 algorithm. The hash is calculated in software. 2891 algorithm. The hash is calculated in software.
2898 CONFIG_SHA256 - This option enables support of hashing using 2892 CONFIG_SHA256 - This option enables support of hashing using
2899 SHA256 algorithm. The hash is calculated in software. 2893 SHA256 algorithm. The hash is calculated in software.
2900 CONFIG_SHA_HW_ACCEL - This option enables hardware acceleration 2894 CONFIG_SHA_HW_ACCEL - This option enables hardware acceleration
2901 for SHA1/SHA256 hashing. 2895 for SHA1/SHA256 hashing.
2902 This affects the 'hash' command and also the 2896 This affects the 'hash' command and also the
2903 hash_lookup_algo() function. 2897 hash_lookup_algo() function.
2904 CONFIG_SHA_PROG_HW_ACCEL - This option enables 2898 CONFIG_SHA_PROG_HW_ACCEL - This option enables
2905 hardware-acceleration for SHA1/SHA256 progressive hashing. 2899 hardware-acceleration for SHA1/SHA256 progressive hashing.
2906 Data can be streamed in a block at a time and the hashing 2900 Data can be streamed in a block at a time and the hashing
2907 is performed in hardware. 2901 is performed in hardware.
2908 2902
2909 Note: There is also a sha1sum command, which should perhaps 2903 Note: There is also a sha1sum command, which should perhaps
2910 be deprecated in favour of 'hash sha1'. 2904 be deprecated in favour of 'hash sha1'.
2911 2905
2912 - Freescale i.MX specific commands: 2906 - Freescale i.MX specific commands:
2913 CONFIG_CMD_HDMIDETECT 2907 CONFIG_CMD_HDMIDETECT
2914 This enables 'hdmidet' command which returns true if an 2908 This enables 'hdmidet' command which returns true if an
2915 HDMI monitor is detected. This command is i.MX 6 specific. 2909 HDMI monitor is detected. This command is i.MX 6 specific.
2916 2910
2917 CONFIG_CMD_BMODE 2911 CONFIG_CMD_BMODE
2918 This enables the 'bmode' (bootmode) command for forcing 2912 This enables the 'bmode' (bootmode) command for forcing
2919 a boot from specific media. 2913 a boot from specific media.
2920 2914
2921 This is useful for forcing the ROM's usb downloader to 2915 This is useful for forcing the ROM's usb downloader to
2922 activate upon a watchdog reset which is nice when iterating 2916 activate upon a watchdog reset which is nice when iterating
2923 on U-Boot. Using the reset button or running bmode normal 2917 on U-Boot. Using the reset button or running bmode normal
2924 will set it back to normal. This command currently 2918 will set it back to normal. This command currently
2925 supports i.MX53 and i.MX6. 2919 supports i.MX53 and i.MX6.
2926 2920
2927 - bootcount support: 2921 - bootcount support:
2928 CONFIG_BOOTCOUNT_LIMIT 2922 CONFIG_BOOTCOUNT_LIMIT
2929 2923
2930 This enables the bootcounter support, see: 2924 This enables the bootcounter support, see:
2931 http://www.denx.de/wiki/DULG/UBootBootCountLimit 2925 http://www.denx.de/wiki/DULG/UBootBootCountLimit
2932 2926
2933 CONFIG_AT91SAM9XE 2927 CONFIG_AT91SAM9XE
2934 enable special bootcounter support on at91sam9xe based boards. 2928 enable special bootcounter support on at91sam9xe based boards.
2935 CONFIG_BLACKFIN 2929 CONFIG_BLACKFIN
2936 enable special bootcounter support on blackfin based boards. 2930 enable special bootcounter support on blackfin based boards.
2937 CONFIG_SOC_DA8XX 2931 CONFIG_SOC_DA8XX
2938 enable special bootcounter support on da850 based boards. 2932 enable special bootcounter support on da850 based boards.
2939 CONFIG_BOOTCOUNT_RAM 2933 CONFIG_BOOTCOUNT_RAM
2940 enable support for the bootcounter in RAM 2934 enable support for the bootcounter in RAM
2941 CONFIG_BOOTCOUNT_I2C 2935 CONFIG_BOOTCOUNT_I2C
2942 enable support for the bootcounter on an i2c (like RTC) device. 2936 enable support for the bootcounter on an i2c (like RTC) device.
2943 CONFIG_SYS_I2C_RTC_ADDR = i2c chip address 2937 CONFIG_SYS_I2C_RTC_ADDR = i2c chip address
2944 CONFIG_SYS_BOOTCOUNT_ADDR = i2c addr which is used for 2938 CONFIG_SYS_BOOTCOUNT_ADDR = i2c addr which is used for
2945 the bootcounter. 2939 the bootcounter.
2946 CONFIG_BOOTCOUNT_ALEN = address len 2940 CONFIG_BOOTCOUNT_ALEN = address len
2947 2941
2948 - Show boot progress: 2942 - Show boot progress:
2949 CONFIG_SHOW_BOOT_PROGRESS 2943 CONFIG_SHOW_BOOT_PROGRESS
2950 2944
2951 Defining this option allows to add some board- 2945 Defining this option allows to add some board-
2952 specific code (calling a user-provided function 2946 specific code (calling a user-provided function
2953 "show_boot_progress(int)") that enables you to show 2947 "show_boot_progress(int)") that enables you to show
2954 the system's boot progress on some display (for 2948 the system's boot progress on some display (for
2955 example, some LED's) on your board. At the moment, 2949 example, some LED's) on your board. At the moment,
2956 the following checkpoints are implemented: 2950 the following checkpoints are implemented:
2957 2951
2958 2952
2959 Legacy uImage format: 2953 Legacy uImage format:
2960 2954
2961 Arg Where When 2955 Arg Where When
2962 1 common/cmd_bootm.c before attempting to boot an image 2956 1 common/cmd_bootm.c before attempting to boot an image
2963 -1 common/cmd_bootm.c Image header has bad magic number 2957 -1 common/cmd_bootm.c Image header has bad magic number
2964 2 common/cmd_bootm.c Image header has correct magic number 2958 2 common/cmd_bootm.c Image header has correct magic number
2965 -2 common/cmd_bootm.c Image header has bad checksum 2959 -2 common/cmd_bootm.c Image header has bad checksum
2966 3 common/cmd_bootm.c Image header has correct checksum 2960 3 common/cmd_bootm.c Image header has correct checksum
2967 -3 common/cmd_bootm.c Image data has bad checksum 2961 -3 common/cmd_bootm.c Image data has bad checksum
2968 4 common/cmd_bootm.c Image data has correct checksum 2962 4 common/cmd_bootm.c Image data has correct checksum
2969 -4 common/cmd_bootm.c Image is for unsupported architecture 2963 -4 common/cmd_bootm.c Image is for unsupported architecture
2970 5 common/cmd_bootm.c Architecture check OK 2964 5 common/cmd_bootm.c Architecture check OK
2971 -5 common/cmd_bootm.c Wrong Image Type (not kernel, multi) 2965 -5 common/cmd_bootm.c Wrong Image Type (not kernel, multi)
2972 6 common/cmd_bootm.c Image Type check OK 2966 6 common/cmd_bootm.c Image Type check OK
2973 -6 common/cmd_bootm.c gunzip uncompression error 2967 -6 common/cmd_bootm.c gunzip uncompression error
2974 -7 common/cmd_bootm.c Unimplemented compression type 2968 -7 common/cmd_bootm.c Unimplemented compression type
2975 7 common/cmd_bootm.c Uncompression OK 2969 7 common/cmd_bootm.c Uncompression OK
2976 8 common/cmd_bootm.c No uncompress/copy overwrite error 2970 8 common/cmd_bootm.c No uncompress/copy overwrite error
2977 -9 common/cmd_bootm.c Unsupported OS (not Linux, BSD, VxWorks, QNX) 2971 -9 common/cmd_bootm.c Unsupported OS (not Linux, BSD, VxWorks, QNX)
2978 2972
2979 9 common/image.c Start initial ramdisk verification 2973 9 common/image.c Start initial ramdisk verification
2980 -10 common/image.c Ramdisk header has bad magic number 2974 -10 common/image.c Ramdisk header has bad magic number
2981 -11 common/image.c Ramdisk header has bad checksum 2975 -11 common/image.c Ramdisk header has bad checksum
2982 10 common/image.c Ramdisk header is OK 2976 10 common/image.c Ramdisk header is OK
2983 -12 common/image.c Ramdisk data has bad checksum 2977 -12 common/image.c Ramdisk data has bad checksum
2984 11 common/image.c Ramdisk data has correct checksum 2978 11 common/image.c Ramdisk data has correct checksum
2985 12 common/image.c Ramdisk verification complete, start loading 2979 12 common/image.c Ramdisk verification complete, start loading
2986 -13 common/image.c Wrong Image Type (not PPC Linux ramdisk) 2980 -13 common/image.c Wrong Image Type (not PPC Linux ramdisk)
2987 13 common/image.c Start multifile image verification 2981 13 common/image.c Start multifile image verification
2988 14 common/image.c No initial ramdisk, no multifile, continue. 2982 14 common/image.c No initial ramdisk, no multifile, continue.
2989 2983
2990 15 arch/<arch>/lib/bootm.c All preparation done, transferring control to OS 2984 15 arch/<arch>/lib/bootm.c All preparation done, transferring control to OS
2991 2985
2992 -30 arch/powerpc/lib/board.c Fatal error, hang the system 2986 -30 arch/powerpc/lib/board.c Fatal error, hang the system
2993 -31 post/post.c POST test failed, detected by post_output_backlog() 2987 -31 post/post.c POST test failed, detected by post_output_backlog()
2994 -32 post/post.c POST test failed, detected by post_run_single() 2988 -32 post/post.c POST test failed, detected by post_run_single()
2995 2989
2996 34 common/cmd_doc.c before loading a Image from a DOC device 2990 34 common/cmd_doc.c before loading a Image from a DOC device
2997 -35 common/cmd_doc.c Bad usage of "doc" command 2991 -35 common/cmd_doc.c Bad usage of "doc" command
2998 35 common/cmd_doc.c correct usage of "doc" command 2992 35 common/cmd_doc.c correct usage of "doc" command
2999 -36 common/cmd_doc.c No boot device 2993 -36 common/cmd_doc.c No boot device
3000 36 common/cmd_doc.c correct boot device 2994 36 common/cmd_doc.c correct boot device
3001 -37 common/cmd_doc.c Unknown Chip ID on boot device 2995 -37 common/cmd_doc.c Unknown Chip ID on boot device
3002 37 common/cmd_doc.c correct chip ID found, device available 2996 37 common/cmd_doc.c correct chip ID found, device available
3003 -38 common/cmd_doc.c Read Error on boot device 2997 -38 common/cmd_doc.c Read Error on boot device
3004 38 common/cmd_doc.c reading Image header from DOC device OK 2998 38 common/cmd_doc.c reading Image header from DOC device OK
3005 -39 common/cmd_doc.c Image header has bad magic number 2999 -39 common/cmd_doc.c Image header has bad magic number
3006 39 common/cmd_doc.c Image header has correct magic number 3000 39 common/cmd_doc.c Image header has correct magic number
3007 -40 common/cmd_doc.c Error reading Image from DOC device 3001 -40 common/cmd_doc.c Error reading Image from DOC device
3008 40 common/cmd_doc.c Image header has correct magic number 3002 40 common/cmd_doc.c Image header has correct magic number
3009 41 common/cmd_ide.c before loading a Image from a IDE device 3003 41 common/cmd_ide.c before loading a Image from a IDE device
3010 -42 common/cmd_ide.c Bad usage of "ide" command 3004 -42 common/cmd_ide.c Bad usage of "ide" command
3011 42 common/cmd_ide.c correct usage of "ide" command 3005 42 common/cmd_ide.c correct usage of "ide" command
3012 -43 common/cmd_ide.c No boot device 3006 -43 common/cmd_ide.c No boot device
3013 43 common/cmd_ide.c boot device found 3007 43 common/cmd_ide.c boot device found
3014 -44 common/cmd_ide.c Device not available 3008 -44 common/cmd_ide.c Device not available
3015 44 common/cmd_ide.c Device available 3009 44 common/cmd_ide.c Device available
3016 -45 common/cmd_ide.c wrong partition selected 3010 -45 common/cmd_ide.c wrong partition selected
3017 45 common/cmd_ide.c partition selected 3011 45 common/cmd_ide.c partition selected
3018 -46 common/cmd_ide.c Unknown partition table 3012 -46 common/cmd_ide.c Unknown partition table
3019 46 common/cmd_ide.c valid partition table found 3013 46 common/cmd_ide.c valid partition table found
3020 -47 common/cmd_ide.c Invalid partition type 3014 -47 common/cmd_ide.c Invalid partition type
3021 47 common/cmd_ide.c correct partition type 3015 47 common/cmd_ide.c correct partition type
3022 -48 common/cmd_ide.c Error reading Image Header on boot device 3016 -48 common/cmd_ide.c Error reading Image Header on boot device
3023 48 common/cmd_ide.c reading Image Header from IDE device OK 3017 48 common/cmd_ide.c reading Image Header from IDE device OK
3024 -49 common/cmd_ide.c Image header has bad magic number 3018 -49 common/cmd_ide.c Image header has bad magic number
3025 49 common/cmd_ide.c Image header has correct magic number 3019 49 common/cmd_ide.c Image header has correct magic number
3026 -50 common/cmd_ide.c Image header has bad checksum 3020 -50 common/cmd_ide.c Image header has bad checksum
3027 50 common/cmd_ide.c Image header has correct checksum 3021 50 common/cmd_ide.c Image header has correct checksum
3028 -51 common/cmd_ide.c Error reading Image from IDE device 3022 -51 common/cmd_ide.c Error reading Image from IDE device
3029 51 common/cmd_ide.c reading Image from IDE device OK 3023 51 common/cmd_ide.c reading Image from IDE device OK
3030 52 common/cmd_nand.c before loading a Image from a NAND device 3024 52 common/cmd_nand.c before loading a Image from a NAND device
3031 -53 common/cmd_nand.c Bad usage of "nand" command 3025 -53 common/cmd_nand.c Bad usage of "nand" command
3032 53 common/cmd_nand.c correct usage of "nand" command 3026 53 common/cmd_nand.c correct usage of "nand" command
3033 -54 common/cmd_nand.c No boot device 3027 -54 common/cmd_nand.c No boot device
3034 54 common/cmd_nand.c boot device found 3028 54 common/cmd_nand.c boot device found
3035 -55 common/cmd_nand.c Unknown Chip ID on boot device 3029 -55 common/cmd_nand.c Unknown Chip ID on boot device
3036 55 common/cmd_nand.c correct chip ID found, device available 3030 55 common/cmd_nand.c correct chip ID found, device available
3037 -56 common/cmd_nand.c Error reading Image Header on boot device 3031 -56 common/cmd_nand.c Error reading Image Header on boot device
3038 56 common/cmd_nand.c reading Image Header from NAND device OK 3032 56 common/cmd_nand.c reading Image Header from NAND device OK
3039 -57 common/cmd_nand.c Image header has bad magic number 3033 -57 common/cmd_nand.c Image header has bad magic number
3040 57 common/cmd_nand.c Image header has correct magic number 3034 57 common/cmd_nand.c Image header has correct magic number
3041 -58 common/cmd_nand.c Error reading Image from NAND device 3035 -58 common/cmd_nand.c Error reading Image from NAND device
3042 58 common/cmd_nand.c reading Image from NAND device OK 3036 58 common/cmd_nand.c reading Image from NAND device OK
3043 3037
3044 -60 common/env_common.c Environment has a bad CRC, using default 3038 -60 common/env_common.c Environment has a bad CRC, using default
3045 3039
3046 64 net/eth.c starting with Ethernet configuration. 3040 64 net/eth.c starting with Ethernet configuration.
3047 -64 net/eth.c no Ethernet found. 3041 -64 net/eth.c no Ethernet found.
3048 65 net/eth.c Ethernet found. 3042 65 net/eth.c Ethernet found.
3049 3043
3050 -80 common/cmd_net.c usage wrong 3044 -80 common/cmd_net.c usage wrong
3051 80 common/cmd_net.c before calling net_loop() 3045 80 common/cmd_net.c before calling net_loop()
3052 -81 common/cmd_net.c some error in net_loop() occurred 3046 -81 common/cmd_net.c some error in net_loop() occurred
3053 81 common/cmd_net.c net_loop() back without error 3047 81 common/cmd_net.c net_loop() back without error
3054 -82 common/cmd_net.c size == 0 (File with size 0 loaded) 3048 -82 common/cmd_net.c size == 0 (File with size 0 loaded)
3055 82 common/cmd_net.c trying automatic boot 3049 82 common/cmd_net.c trying automatic boot
3056 83 common/cmd_net.c running "source" command 3050 83 common/cmd_net.c running "source" command
3057 -83 common/cmd_net.c some error in automatic boot or "source" command 3051 -83 common/cmd_net.c some error in automatic boot or "source" command
3058 84 common/cmd_net.c end without errors 3052 84 common/cmd_net.c end without errors
3059 3053
3060 FIT uImage format: 3054 FIT uImage format:
3061 3055
3062 Arg Where When 3056 Arg Where When
3063 100 common/cmd_bootm.c Kernel FIT Image has correct format 3057 100 common/cmd_bootm.c Kernel FIT Image has correct format
3064 -100 common/cmd_bootm.c Kernel FIT Image has incorrect format 3058 -100 common/cmd_bootm.c Kernel FIT Image has incorrect format
3065 101 common/cmd_bootm.c No Kernel subimage unit name, using configuration 3059 101 common/cmd_bootm.c No Kernel subimage unit name, using configuration
3066 -101 common/cmd_bootm.c Can't get configuration for kernel subimage 3060 -101 common/cmd_bootm.c Can't get configuration for kernel subimage
3067 102 common/cmd_bootm.c Kernel unit name specified 3061 102 common/cmd_bootm.c Kernel unit name specified
3068 -103 common/cmd_bootm.c Can't get kernel subimage node offset 3062 -103 common/cmd_bootm.c Can't get kernel subimage node offset
3069 103 common/cmd_bootm.c Found configuration node 3063 103 common/cmd_bootm.c Found configuration node
3070 104 common/cmd_bootm.c Got kernel subimage node offset 3064 104 common/cmd_bootm.c Got kernel subimage node offset
3071 -104 common/cmd_bootm.c Kernel subimage hash verification failed 3065 -104 common/cmd_bootm.c Kernel subimage hash verification failed
3072 105 common/cmd_bootm.c Kernel subimage hash verification OK 3066 105 common/cmd_bootm.c Kernel subimage hash verification OK
3073 -105 common/cmd_bootm.c Kernel subimage is for unsupported architecture 3067 -105 common/cmd_bootm.c Kernel subimage is for unsupported architecture
3074 106 common/cmd_bootm.c Architecture check OK 3068 106 common/cmd_bootm.c Architecture check OK
3075 -106 common/cmd_bootm.c Kernel subimage has wrong type 3069 -106 common/cmd_bootm.c Kernel subimage has wrong type
3076 107 common/cmd_bootm.c Kernel subimage type OK 3070 107 common/cmd_bootm.c Kernel subimage type OK
3077 -107 common/cmd_bootm.c Can't get kernel subimage data/size 3071 -107 common/cmd_bootm.c Can't get kernel subimage data/size
3078 108 common/cmd_bootm.c Got kernel subimage data/size 3072 108 common/cmd_bootm.c Got kernel subimage data/size
3079 -108 common/cmd_bootm.c Wrong image type (not legacy, FIT) 3073 -108 common/cmd_bootm.c Wrong image type (not legacy, FIT)
3080 -109 common/cmd_bootm.c Can't get kernel subimage type 3074 -109 common/cmd_bootm.c Can't get kernel subimage type
3081 -110 common/cmd_bootm.c Can't get kernel subimage comp 3075 -110 common/cmd_bootm.c Can't get kernel subimage comp
3082 -111 common/cmd_bootm.c Can't get kernel subimage os 3076 -111 common/cmd_bootm.c Can't get kernel subimage os
3083 -112 common/cmd_bootm.c Can't get kernel subimage load address 3077 -112 common/cmd_bootm.c Can't get kernel subimage load address
3084 -113 common/cmd_bootm.c Image uncompress/copy overwrite error 3078 -113 common/cmd_bootm.c Image uncompress/copy overwrite error
3085 3079
3086 120 common/image.c Start initial ramdisk verification 3080 120 common/image.c Start initial ramdisk verification
3087 -120 common/image.c Ramdisk FIT image has incorrect format 3081 -120 common/image.c Ramdisk FIT image has incorrect format
3088 121 common/image.c Ramdisk FIT image has correct format 3082 121 common/image.c Ramdisk FIT image has correct format
3089 122 common/image.c No ramdisk subimage unit name, using configuration 3083 122 common/image.c No ramdisk subimage unit name, using configuration
3090 -122 common/image.c Can't get configuration for ramdisk subimage 3084 -122 common/image.c Can't get configuration for ramdisk subimage
3091 123 common/image.c Ramdisk unit name specified 3085 123 common/image.c Ramdisk unit name specified
3092 -124 common/image.c Can't get ramdisk subimage node offset 3086 -124 common/image.c Can't get ramdisk subimage node offset
3093 125 common/image.c Got ramdisk subimage node offset 3087 125 common/image.c Got ramdisk subimage node offset
3094 -125 common/image.c Ramdisk subimage hash verification failed 3088 -125 common/image.c Ramdisk subimage hash verification failed
3095 126 common/image.c Ramdisk subimage hash verification OK 3089 126 common/image.c Ramdisk subimage hash verification OK
3096 -126 common/image.c Ramdisk subimage for unsupported architecture 3090 -126 common/image.c Ramdisk subimage for unsupported architecture
3097 127 common/image.c Architecture check OK 3091 127 common/image.c Architecture check OK
3098 -127 common/image.c Can't get ramdisk subimage data/size 3092 -127 common/image.c Can't get ramdisk subimage data/size
3099 128 common/image.c Got ramdisk subimage data/size 3093 128 common/image.c Got ramdisk subimage data/size
3100 129 common/image.c Can't get ramdisk load address 3094 129 common/image.c Can't get ramdisk load address
3101 -129 common/image.c Got ramdisk load address 3095 -129 common/image.c Got ramdisk load address
3102 3096
3103 -130 common/cmd_doc.c Incorrect FIT image format 3097 -130 common/cmd_doc.c Incorrect FIT image format
3104 131 common/cmd_doc.c FIT image format OK 3098 131 common/cmd_doc.c FIT image format OK
3105 3099
3106 -140 common/cmd_ide.c Incorrect FIT image format 3100 -140 common/cmd_ide.c Incorrect FIT image format
3107 141 common/cmd_ide.c FIT image format OK 3101 141 common/cmd_ide.c FIT image format OK
3108 3102
3109 -150 common/cmd_nand.c Incorrect FIT image format 3103 -150 common/cmd_nand.c Incorrect FIT image format
3110 151 common/cmd_nand.c FIT image format OK 3104 151 common/cmd_nand.c FIT image format OK
3111 3105
3112 - legacy image format: 3106 - legacy image format:
3113 CONFIG_IMAGE_FORMAT_LEGACY 3107 CONFIG_IMAGE_FORMAT_LEGACY
3114 enables the legacy image format support in U-Boot. 3108 enables the legacy image format support in U-Boot.
3115 3109
3116 Default: 3110 Default:
3117 enabled if CONFIG_FIT_SIGNATURE is not defined. 3111 enabled if CONFIG_FIT_SIGNATURE is not defined.
3118 3112
3119 CONFIG_DISABLE_IMAGE_LEGACY 3113 CONFIG_DISABLE_IMAGE_LEGACY
3120 disable the legacy image format 3114 disable the legacy image format
3121 3115
3122 This define is introduced, as the legacy image format is 3116 This define is introduced, as the legacy image format is
3123 enabled per default for backward compatibility. 3117 enabled per default for backward compatibility.
3124 3118
3125 - FIT image support: 3119 - FIT image support:
3126 CONFIG_FIT_DISABLE_SHA256 3120 CONFIG_FIT_DISABLE_SHA256
3127 Supporting SHA256 hashes has quite an impact on binary size. 3121 Supporting SHA256 hashes has quite an impact on binary size.
3128 For constrained systems sha256 hash support can be disabled 3122 For constrained systems sha256 hash support can be disabled
3129 with this option. 3123 with this option.
3130 3124
3131 TODO(sjg@chromium.org): Adjust this option to be positive, 3125 TODO(sjg@chromium.org): Adjust this option to be positive,
3132 and move it to Kconfig 3126 and move it to Kconfig
3133 3127
3134 - Standalone program support: 3128 - Standalone program support:
3135 CONFIG_STANDALONE_LOAD_ADDR 3129 CONFIG_STANDALONE_LOAD_ADDR
3136 3130
3137 This option defines a board specific value for the 3131 This option defines a board specific value for the
3138 address where standalone program gets loaded, thus 3132 address where standalone program gets loaded, thus
3139 overwriting the architecture dependent default 3133 overwriting the architecture dependent default
3140 settings. 3134 settings.
3141 3135
3142 - Frame Buffer Address: 3136 - Frame Buffer Address:
3143 CONFIG_FB_ADDR 3137 CONFIG_FB_ADDR
3144 3138
3145 Define CONFIG_FB_ADDR if you want to use specific 3139 Define CONFIG_FB_ADDR if you want to use specific
3146 address for frame buffer. This is typically the case 3140 address for frame buffer. This is typically the case
3147 when using a graphics controller has separate video 3141 when using a graphics controller has separate video
3148 memory. U-Boot will then place the frame buffer at 3142 memory. U-Boot will then place the frame buffer at
3149 the given address instead of dynamically reserving it 3143 the given address instead of dynamically reserving it
3150 in system RAM by calling lcd_setmem(), which grabs 3144 in system RAM by calling lcd_setmem(), which grabs
3151 the memory for the frame buffer depending on the 3145 the memory for the frame buffer depending on the
3152 configured panel size. 3146 configured panel size.
3153 3147
3154 Please see board_init_f function. 3148 Please see board_init_f function.
3155 3149
3156 - Automatic software updates via TFTP server 3150 - Automatic software updates via TFTP server
3157 CONFIG_UPDATE_TFTP 3151 CONFIG_UPDATE_TFTP
3158 CONFIG_UPDATE_TFTP_CNT_MAX 3152 CONFIG_UPDATE_TFTP_CNT_MAX
3159 CONFIG_UPDATE_TFTP_MSEC_MAX 3153 CONFIG_UPDATE_TFTP_MSEC_MAX
3160 3154
3161 These options enable and control the auto-update feature; 3155 These options enable and control the auto-update feature;
3162 for a more detailed description refer to doc/README.update. 3156 for a more detailed description refer to doc/README.update.
3163 3157
3164 - MTD Support (mtdparts command, UBI support) 3158 - MTD Support (mtdparts command, UBI support)
3165 CONFIG_MTD_DEVICE 3159 CONFIG_MTD_DEVICE
3166 3160
3167 Adds the MTD device infrastructure from the Linux kernel. 3161 Adds the MTD device infrastructure from the Linux kernel.
3168 Needed for mtdparts command support. 3162 Needed for mtdparts command support.
3169 3163
3170 CONFIG_MTD_PARTITIONS 3164 CONFIG_MTD_PARTITIONS
3171 3165
3172 Adds the MTD partitioning infrastructure from the Linux 3166 Adds the MTD partitioning infrastructure from the Linux
3173 kernel. Needed for UBI support. 3167 kernel. Needed for UBI support.
3174 3168
3175 - UBI support 3169 - UBI support
3176 CONFIG_CMD_UBI 3170 CONFIG_CMD_UBI
3177 3171
3178 Adds commands for interacting with MTD partitions formatted 3172 Adds commands for interacting with MTD partitions formatted
3179 with the UBI flash translation layer 3173 with the UBI flash translation layer
3180 3174
3181 Requires also defining CONFIG_RBTREE 3175 Requires also defining CONFIG_RBTREE
3182 3176
3183 CONFIG_UBI_SILENCE_MSG 3177 CONFIG_UBI_SILENCE_MSG
3184 3178
3185 Make the verbose messages from UBI stop printing. This leaves 3179 Make the verbose messages from UBI stop printing. This leaves
3186 warnings and errors enabled. 3180 warnings and errors enabled.
3187 3181
3188 3182
3189 CONFIG_MTD_UBI_WL_THRESHOLD 3183 CONFIG_MTD_UBI_WL_THRESHOLD
3190 This parameter defines the maximum difference between the highest 3184 This parameter defines the maximum difference between the highest
3191 erase counter value and the lowest erase counter value of eraseblocks 3185 erase counter value and the lowest erase counter value of eraseblocks
3192 of UBI devices. When this threshold is exceeded, UBI starts performing 3186 of UBI devices. When this threshold is exceeded, UBI starts performing
3193 wear leveling by means of moving data from eraseblock with low erase 3187 wear leveling by means of moving data from eraseblock with low erase
3194 counter to eraseblocks with high erase counter. 3188 counter to eraseblocks with high erase counter.
3195 3189
3196 The default value should be OK for SLC NAND flashes, NOR flashes and 3190 The default value should be OK for SLC NAND flashes, NOR flashes and
3197 other flashes which have eraseblock life-cycle 100000 or more. 3191 other flashes which have eraseblock life-cycle 100000 or more.
3198 However, in case of MLC NAND flashes which typically have eraseblock 3192 However, in case of MLC NAND flashes which typically have eraseblock
3199 life-cycle less than 10000, the threshold should be lessened (e.g., 3193 life-cycle less than 10000, the threshold should be lessened (e.g.,
3200 to 128 or 256, although it does not have to be power of 2). 3194 to 128 or 256, although it does not have to be power of 2).
3201 3195
3202 default: 4096 3196 default: 4096
3203 3197
3204 CONFIG_MTD_UBI_BEB_LIMIT 3198 CONFIG_MTD_UBI_BEB_LIMIT
3205 This option specifies the maximum bad physical eraseblocks UBI 3199 This option specifies the maximum bad physical eraseblocks UBI
3206 expects on the MTD device (per 1024 eraseblocks). If the 3200 expects on the MTD device (per 1024 eraseblocks). If the
3207 underlying flash does not admit of bad eraseblocks (e.g. NOR 3201 underlying flash does not admit of bad eraseblocks (e.g. NOR
3208 flash), this value is ignored. 3202 flash), this value is ignored.
3209 3203
3210 NAND datasheets often specify the minimum and maximum NVM 3204 NAND datasheets often specify the minimum and maximum NVM
3211 (Number of Valid Blocks) for the flashes' endurance lifetime. 3205 (Number of Valid Blocks) for the flashes' endurance lifetime.
3212 The maximum expected bad eraseblocks per 1024 eraseblocks 3206 The maximum expected bad eraseblocks per 1024 eraseblocks
3213 then can be calculated as "1024 * (1 - MinNVB / MaxNVB)", 3207 then can be calculated as "1024 * (1 - MinNVB / MaxNVB)",
3214 which gives 20 for most NANDs (MaxNVB is basically the total 3208 which gives 20 for most NANDs (MaxNVB is basically the total
3215 count of eraseblocks on the chip). 3209 count of eraseblocks on the chip).
3216 3210
3217 To put it differently, if this value is 20, UBI will try to 3211 To put it differently, if this value is 20, UBI will try to
3218 reserve about 1.9% of physical eraseblocks for bad blocks 3212 reserve about 1.9% of physical eraseblocks for bad blocks
3219 handling. And that will be 1.9% of eraseblocks on the entire 3213 handling. And that will be 1.9% of eraseblocks on the entire
3220 NAND chip, not just the MTD partition UBI attaches. This means 3214 NAND chip, not just the MTD partition UBI attaches. This means
3221 that if you have, say, a NAND flash chip admits maximum 40 bad 3215 that if you have, say, a NAND flash chip admits maximum 40 bad
3222 eraseblocks, and it is split on two MTD partitions of the same 3216 eraseblocks, and it is split on two MTD partitions of the same
3223 size, UBI will reserve 40 eraseblocks when attaching a 3217 size, UBI will reserve 40 eraseblocks when attaching a
3224 partition. 3218 partition.
3225 3219
3226 default: 20 3220 default: 20
3227 3221
3228 CONFIG_MTD_UBI_FASTMAP 3222 CONFIG_MTD_UBI_FASTMAP
3229 Fastmap is a mechanism which allows attaching an UBI device 3223 Fastmap is a mechanism which allows attaching an UBI device
3230 in nearly constant time. Instead of scanning the whole MTD device it 3224 in nearly constant time. Instead of scanning the whole MTD device it
3231 only has to locate a checkpoint (called fastmap) on the device. 3225 only has to locate a checkpoint (called fastmap) on the device.
3232 The on-flash fastmap contains all information needed to attach 3226 The on-flash fastmap contains all information needed to attach
3233 the device. Using fastmap makes only sense on large devices where 3227 the device. Using fastmap makes only sense on large devices where
3234 attaching by scanning takes long. UBI will not automatically install 3228 attaching by scanning takes long. UBI will not automatically install
3235 a fastmap on old images, but you can set the UBI parameter 3229 a fastmap on old images, but you can set the UBI parameter
3236 CONFIG_MTD_UBI_FASTMAP_AUTOCONVERT to 1 if you want so. Please note 3230 CONFIG_MTD_UBI_FASTMAP_AUTOCONVERT to 1 if you want so. Please note
3237 that fastmap-enabled images are still usable with UBI implementations 3231 that fastmap-enabled images are still usable with UBI implementations
3238 without fastmap support. On typical flash devices the whole fastmap 3232 without fastmap support. On typical flash devices the whole fastmap
3239 fits into one PEB. UBI will reserve PEBs to hold two fastmaps. 3233 fits into one PEB. UBI will reserve PEBs to hold two fastmaps.
3240 3234
3241 CONFIG_MTD_UBI_FASTMAP_AUTOCONVERT 3235 CONFIG_MTD_UBI_FASTMAP_AUTOCONVERT
3242 Set this parameter to enable fastmap automatically on images 3236 Set this parameter to enable fastmap automatically on images
3243 without a fastmap. 3237 without a fastmap.
3244 default: 0 3238 default: 0
3245 3239
3246 CONFIG_MTD_UBI_FM_DEBUG 3240 CONFIG_MTD_UBI_FM_DEBUG
3247 Enable UBI fastmap debug 3241 Enable UBI fastmap debug
3248 default: 0 3242 default: 0
3249 3243
3250 - UBIFS support 3244 - UBIFS support
3251 CONFIG_CMD_UBIFS 3245 CONFIG_CMD_UBIFS
3252 3246
3253 Adds commands for interacting with UBI volumes formatted as 3247 Adds commands for interacting with UBI volumes formatted as
3254 UBIFS. UBIFS is read-only in u-boot. 3248 UBIFS. UBIFS is read-only in u-boot.
3255 3249
3256 Requires UBI support as well as CONFIG_LZO 3250 Requires UBI support as well as CONFIG_LZO
3257 3251
3258 CONFIG_UBIFS_SILENCE_MSG 3252 CONFIG_UBIFS_SILENCE_MSG
3259 3253
3260 Make the verbose messages from UBIFS stop printing. This leaves 3254 Make the verbose messages from UBIFS stop printing. This leaves
3261 warnings and errors enabled. 3255 warnings and errors enabled.
3262 3256
3263 - SPL framework 3257 - SPL framework
3264 CONFIG_SPL 3258 CONFIG_SPL
3265 Enable building of SPL globally. 3259 Enable building of SPL globally.
3266 3260
3267 CONFIG_SPL_LDSCRIPT 3261 CONFIG_SPL_LDSCRIPT
3268 LDSCRIPT for linking the SPL binary. 3262 LDSCRIPT for linking the SPL binary.
3269 3263
3270 CONFIG_SPL_MAX_FOOTPRINT 3264 CONFIG_SPL_MAX_FOOTPRINT
3271 Maximum size in memory allocated to the SPL, BSS included. 3265 Maximum size in memory allocated to the SPL, BSS included.
3272 When defined, the linker checks that the actual memory 3266 When defined, the linker checks that the actual memory
3273 used by SPL from _start to __bss_end does not exceed it. 3267 used by SPL from _start to __bss_end does not exceed it.
3274 CONFIG_SPL_MAX_FOOTPRINT and CONFIG_SPL_BSS_MAX_SIZE 3268 CONFIG_SPL_MAX_FOOTPRINT and CONFIG_SPL_BSS_MAX_SIZE
3275 must not be both defined at the same time. 3269 must not be both defined at the same time.
3276 3270
3277 CONFIG_SPL_MAX_SIZE 3271 CONFIG_SPL_MAX_SIZE
3278 Maximum size of the SPL image (text, data, rodata, and 3272 Maximum size of the SPL image (text, data, rodata, and
3279 linker lists sections), BSS excluded. 3273 linker lists sections), BSS excluded.
3280 When defined, the linker checks that the actual size does 3274 When defined, the linker checks that the actual size does
3281 not exceed it. 3275 not exceed it.
3282 3276
3283 CONFIG_SPL_TEXT_BASE 3277 CONFIG_SPL_TEXT_BASE
3284 TEXT_BASE for linking the SPL binary. 3278 TEXT_BASE for linking the SPL binary.
3285 3279
3286 CONFIG_SPL_RELOC_TEXT_BASE 3280 CONFIG_SPL_RELOC_TEXT_BASE
3287 Address to relocate to. If unspecified, this is equal to 3281 Address to relocate to. If unspecified, this is equal to
3288 CONFIG_SPL_TEXT_BASE (i.e. no relocation is done). 3282 CONFIG_SPL_TEXT_BASE (i.e. no relocation is done).
3289 3283
3290 CONFIG_SPL_BSS_START_ADDR 3284 CONFIG_SPL_BSS_START_ADDR
3291 Link address for the BSS within the SPL binary. 3285 Link address for the BSS within the SPL binary.
3292 3286
3293 CONFIG_SPL_BSS_MAX_SIZE 3287 CONFIG_SPL_BSS_MAX_SIZE
3294 Maximum size in memory allocated to the SPL BSS. 3288 Maximum size in memory allocated to the SPL BSS.
3295 When defined, the linker checks that the actual memory used 3289 When defined, the linker checks that the actual memory used
3296 by SPL from __bss_start to __bss_end does not exceed it. 3290 by SPL from __bss_start to __bss_end does not exceed it.
3297 CONFIG_SPL_MAX_FOOTPRINT and CONFIG_SPL_BSS_MAX_SIZE 3291 CONFIG_SPL_MAX_FOOTPRINT and CONFIG_SPL_BSS_MAX_SIZE
3298 must not be both defined at the same time. 3292 must not be both defined at the same time.
3299 3293
3300 CONFIG_SPL_STACK 3294 CONFIG_SPL_STACK
3301 Adress of the start of the stack SPL will use 3295 Adress of the start of the stack SPL will use
3302 3296
3303 CONFIG_SPL_PANIC_ON_RAW_IMAGE 3297 CONFIG_SPL_PANIC_ON_RAW_IMAGE
3304 When defined, SPL will panic() if the image it has 3298 When defined, SPL will panic() if the image it has
3305 loaded does not have a signature. 3299 loaded does not have a signature.
3306 Defining this is useful when code which loads images 3300 Defining this is useful when code which loads images
3307 in SPL cannot guarantee that absolutely all read errors 3301 in SPL cannot guarantee that absolutely all read errors
3308 will be caught. 3302 will be caught.
3309 An example is the LPC32XX MLC NAND driver, which will 3303 An example is the LPC32XX MLC NAND driver, which will
3310 consider that a completely unreadable NAND block is bad, 3304 consider that a completely unreadable NAND block is bad,
3311 and thus should be skipped silently. 3305 and thus should be skipped silently.
3312 3306
3313 CONFIG_SPL_ABORT_ON_RAW_IMAGE 3307 CONFIG_SPL_ABORT_ON_RAW_IMAGE
3314 When defined, SPL will proceed to another boot method 3308 When defined, SPL will proceed to another boot method
3315 if the image it has loaded does not have a signature. 3309 if the image it has loaded does not have a signature.
3316 3310
3317 CONFIG_SPL_RELOC_STACK 3311 CONFIG_SPL_RELOC_STACK
3318 Adress of the start of the stack SPL will use after 3312 Adress of the start of the stack SPL will use after
3319 relocation. If unspecified, this is equal to 3313 relocation. If unspecified, this is equal to
3320 CONFIG_SPL_STACK. 3314 CONFIG_SPL_STACK.
3321 3315
3322 CONFIG_SYS_SPL_MALLOC_START 3316 CONFIG_SYS_SPL_MALLOC_START
3323 Starting address of the malloc pool used in SPL. 3317 Starting address of the malloc pool used in SPL.
3324 When this option is set the full malloc is used in SPL and 3318 When this option is set the full malloc is used in SPL and
3325 it is set up by spl_init() and before that, the simple malloc() 3319 it is set up by spl_init() and before that, the simple malloc()
3326 can be used if CONFIG_SYS_MALLOC_F is defined. 3320 can be used if CONFIG_SYS_MALLOC_F is defined.
3327 3321
3328 CONFIG_SYS_SPL_MALLOC_SIZE 3322 CONFIG_SYS_SPL_MALLOC_SIZE
3329 The size of the malloc pool used in SPL. 3323 The size of the malloc pool used in SPL.
3330 3324
3331 CONFIG_SPL_FRAMEWORK 3325 CONFIG_SPL_FRAMEWORK
3332 Enable the SPL framework under common/. This framework 3326 Enable the SPL framework under common/. This framework
3333 supports MMC, NAND and YMODEM loading of U-Boot and NAND 3327 supports MMC, NAND and YMODEM loading of U-Boot and NAND
3334 NAND loading of the Linux Kernel. 3328 NAND loading of the Linux Kernel.
3335 3329
3336 CONFIG_SPL_OS_BOOT 3330 CONFIG_SPL_OS_BOOT
3337 Enable booting directly to an OS from SPL. 3331 Enable booting directly to an OS from SPL.
3338 See also: doc/README.falcon 3332 See also: doc/README.falcon
3339 3333
3340 CONFIG_SPL_DISPLAY_PRINT 3334 CONFIG_SPL_DISPLAY_PRINT
3341 For ARM, enable an optional function to print more information 3335 For ARM, enable an optional function to print more information
3342 about the running system. 3336 about the running system.
3343 3337
3344 CONFIG_SPL_INIT_MINIMAL 3338 CONFIG_SPL_INIT_MINIMAL
3345 Arch init code should be built for a very small image 3339 Arch init code should be built for a very small image
3346 3340
3347 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR, 3341 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR,
3348 CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS, 3342 CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS,
3349 Address and partition on the MMC to load U-Boot from 3343 Address and partition on the MMC to load U-Boot from
3350 when the MMC is being used in raw mode. 3344 when the MMC is being used in raw mode.
3351 3345
3352 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION 3346 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
3353 Partition on the MMC to load U-Boot from when the MMC is being 3347 Partition on the MMC to load U-Boot from when the MMC is being
3354 used in raw mode 3348 used in raw mode
3355 3349
3356 CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 3350 CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
3357 Sector to load kernel uImage from when MMC is being 3351 Sector to load kernel uImage from when MMC is being
3358 used in raw mode (for Falcon mode) 3352 used in raw mode (for Falcon mode)
3359 3353
3360 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR, 3354 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR,
3361 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 3355 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS
3362 Sector and number of sectors to load kernel argument 3356 Sector and number of sectors to load kernel argument
3363 parameters from when MMC is being used in raw mode 3357 parameters from when MMC is being used in raw mode
3364 (for falcon mode) 3358 (for falcon mode)
3365 3359
3366 CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 3360 CONFIG_SYS_MMCSD_FS_BOOT_PARTITION
3367 Partition on the MMC to load U-Boot from when the MMC is being 3361 Partition on the MMC to load U-Boot from when the MMC is being
3368 used in fs mode 3362 used in fs mode
3369 3363
3370 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME 3364 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME
3371 Filename to read to load U-Boot when reading from filesystem 3365 Filename to read to load U-Boot when reading from filesystem
3372 3366
3373 CONFIG_SPL_FS_LOAD_KERNEL_NAME 3367 CONFIG_SPL_FS_LOAD_KERNEL_NAME
3374 Filename to read to load kernel uImage when reading 3368 Filename to read to load kernel uImage when reading
3375 from filesystem (for Falcon mode) 3369 from filesystem (for Falcon mode)
3376 3370
3377 CONFIG_SPL_FS_LOAD_ARGS_NAME 3371 CONFIG_SPL_FS_LOAD_ARGS_NAME
3378 Filename to read to load kernel argument parameters 3372 Filename to read to load kernel argument parameters
3379 when reading from filesystem (for Falcon mode) 3373 when reading from filesystem (for Falcon mode)
3380 3374
3381 CONFIG_SPL_MPC83XX_WAIT_FOR_NAND 3375 CONFIG_SPL_MPC83XX_WAIT_FOR_NAND
3382 Set this for NAND SPL on PPC mpc83xx targets, so that 3376 Set this for NAND SPL on PPC mpc83xx targets, so that
3383 start.S waits for the rest of the SPL to load before 3377 start.S waits for the rest of the SPL to load before
3384 continuing (the hardware starts execution after just 3378 continuing (the hardware starts execution after just
3385 loading the first page rather than the full 4K). 3379 loading the first page rather than the full 4K).
3386 3380
3387 CONFIG_SPL_SKIP_RELOCATE 3381 CONFIG_SPL_SKIP_RELOCATE
3388 Avoid SPL relocation 3382 Avoid SPL relocation
3389 3383
3390 CONFIG_SPL_NAND_BASE 3384 CONFIG_SPL_NAND_BASE
3391 Include nand_base.c in the SPL. Requires 3385 Include nand_base.c in the SPL. Requires
3392 CONFIG_SPL_NAND_DRIVERS. 3386 CONFIG_SPL_NAND_DRIVERS.
3393 3387
3394 CONFIG_SPL_NAND_DRIVERS 3388 CONFIG_SPL_NAND_DRIVERS
3395 SPL uses normal NAND drivers, not minimal drivers. 3389 SPL uses normal NAND drivers, not minimal drivers.
3396 3390
3397 CONFIG_SPL_NAND_ECC 3391 CONFIG_SPL_NAND_ECC
3398 Include standard software ECC in the SPL 3392 Include standard software ECC in the SPL
3399 3393
3400 CONFIG_SPL_NAND_SIMPLE 3394 CONFIG_SPL_NAND_SIMPLE
3401 Support for NAND boot using simple NAND drivers that 3395 Support for NAND boot using simple NAND drivers that
3402 expose the cmd_ctrl() interface. 3396 expose the cmd_ctrl() interface.
3403 3397
3404 CONFIG_SPL_UBI 3398 CONFIG_SPL_UBI
3405 Support for a lightweight UBI (fastmap) scanner and 3399 Support for a lightweight UBI (fastmap) scanner and
3406 loader 3400 loader
3407 3401
3408 CONFIG_SPL_NAND_RAW_ONLY 3402 CONFIG_SPL_NAND_RAW_ONLY
3409 Support to boot only raw u-boot.bin images. Use this only 3403 Support to boot only raw u-boot.bin images. Use this only
3410 if you need to save space. 3404 if you need to save space.
3411 3405
3412 CONFIG_SPL_COMMON_INIT_DDR 3406 CONFIG_SPL_COMMON_INIT_DDR
3413 Set for common ddr init with serial presence detect in 3407 Set for common ddr init with serial presence detect in
3414 SPL binary. 3408 SPL binary.
3415 3409
3416 CONFIG_SYS_NAND_5_ADDR_CYCLE, CONFIG_SYS_NAND_PAGE_COUNT, 3410 CONFIG_SYS_NAND_5_ADDR_CYCLE, CONFIG_SYS_NAND_PAGE_COUNT,
3417 CONFIG_SYS_NAND_PAGE_SIZE, CONFIG_SYS_NAND_OOBSIZE, 3411 CONFIG_SYS_NAND_PAGE_SIZE, CONFIG_SYS_NAND_OOBSIZE,
3418 CONFIG_SYS_NAND_BLOCK_SIZE, CONFIG_SYS_NAND_BAD_BLOCK_POS, 3412 CONFIG_SYS_NAND_BLOCK_SIZE, CONFIG_SYS_NAND_BAD_BLOCK_POS,
3419 CONFIG_SYS_NAND_ECCPOS, CONFIG_SYS_NAND_ECCSIZE, 3413 CONFIG_SYS_NAND_ECCPOS, CONFIG_SYS_NAND_ECCSIZE,
3420 CONFIG_SYS_NAND_ECCBYTES 3414 CONFIG_SYS_NAND_ECCBYTES
3421 Defines the size and behavior of the NAND that SPL uses 3415 Defines the size and behavior of the NAND that SPL uses
3422 to read U-Boot 3416 to read U-Boot
3423 3417
3424 CONFIG_SPL_NAND_BOOT 3418 CONFIG_SPL_NAND_BOOT
3425 Add support NAND boot 3419 Add support NAND boot
3426 3420
3427 CONFIG_SYS_NAND_U_BOOT_OFFS 3421 CONFIG_SYS_NAND_U_BOOT_OFFS
3428 Location in NAND to read U-Boot from 3422 Location in NAND to read U-Boot from
3429 3423
3430 CONFIG_SYS_NAND_U_BOOT_DST 3424 CONFIG_SYS_NAND_U_BOOT_DST
3431 Location in memory to load U-Boot to 3425 Location in memory to load U-Boot to
3432 3426
3433 CONFIG_SYS_NAND_U_BOOT_SIZE 3427 CONFIG_SYS_NAND_U_BOOT_SIZE
3434 Size of image to load 3428 Size of image to load
3435 3429
3436 CONFIG_SYS_NAND_U_BOOT_START 3430 CONFIG_SYS_NAND_U_BOOT_START
3437 Entry point in loaded image to jump to 3431 Entry point in loaded image to jump to
3438 3432
3439 CONFIG_SYS_NAND_HW_ECC_OOBFIRST 3433 CONFIG_SYS_NAND_HW_ECC_OOBFIRST
3440 Define this if you need to first read the OOB and then the 3434 Define this if you need to first read the OOB and then the
3441 data. This is used, for example, on davinci platforms. 3435 data. This is used, for example, on davinci platforms.
3442 3436
3443 CONFIG_SPL_OMAP3_ID_NAND 3437 CONFIG_SPL_OMAP3_ID_NAND
3444 Support for an OMAP3-specific set of functions to return the 3438 Support for an OMAP3-specific set of functions to return the
3445 ID and MFR of the first attached NAND chip, if present. 3439 ID and MFR of the first attached NAND chip, if present.
3446 3440
3447 CONFIG_SPL_RAM_DEVICE 3441 CONFIG_SPL_RAM_DEVICE
3448 Support for running image already present in ram, in SPL binary 3442 Support for running image already present in ram, in SPL binary
3449 3443
3450 CONFIG_SPL_PAD_TO 3444 CONFIG_SPL_PAD_TO
3451 Image offset to which the SPL should be padded before appending 3445 Image offset to which the SPL should be padded before appending
3452 the SPL payload. By default, this is defined as 3446 the SPL payload. By default, this is defined as
3453 CONFIG_SPL_MAX_SIZE, or 0 if CONFIG_SPL_MAX_SIZE is undefined. 3447 CONFIG_SPL_MAX_SIZE, or 0 if CONFIG_SPL_MAX_SIZE is undefined.
3454 CONFIG_SPL_PAD_TO must be either 0, meaning to append the SPL 3448 CONFIG_SPL_PAD_TO must be either 0, meaning to append the SPL
3455 payload without any padding, or >= CONFIG_SPL_MAX_SIZE. 3449 payload without any padding, or >= CONFIG_SPL_MAX_SIZE.
3456 3450
3457 CONFIG_SPL_TARGET 3451 CONFIG_SPL_TARGET
3458 Final target image containing SPL and payload. Some SPLs 3452 Final target image containing SPL and payload. Some SPLs
3459 use an arch-specific makefile fragment instead, for 3453 use an arch-specific makefile fragment instead, for
3460 example if more than one image needs to be produced. 3454 example if more than one image needs to be produced.
3461 3455
3462 CONFIG_FIT_SPL_PRINT 3456 CONFIG_FIT_SPL_PRINT
3463 Printing information about a FIT image adds quite a bit of 3457 Printing information about a FIT image adds quite a bit of
3464 code to SPL. So this is normally disabled in SPL. Use this 3458 code to SPL. So this is normally disabled in SPL. Use this
3465 option to re-enable it. This will affect the output of the 3459 option to re-enable it. This will affect the output of the
3466 bootm command when booting a FIT image. 3460 bootm command when booting a FIT image.
3467 3461
3468 - TPL framework 3462 - TPL framework
3469 CONFIG_TPL 3463 CONFIG_TPL
3470 Enable building of TPL globally. 3464 Enable building of TPL globally.
3471 3465
3472 CONFIG_TPL_PAD_TO 3466 CONFIG_TPL_PAD_TO
3473 Image offset to which the TPL should be padded before appending 3467 Image offset to which the TPL should be padded before appending
3474 the TPL payload. By default, this is defined as 3468 the TPL payload. By default, this is defined as
3475 CONFIG_SPL_MAX_SIZE, or 0 if CONFIG_SPL_MAX_SIZE is undefined. 3469 CONFIG_SPL_MAX_SIZE, or 0 if CONFIG_SPL_MAX_SIZE is undefined.
3476 CONFIG_SPL_PAD_TO must be either 0, meaning to append the SPL 3470 CONFIG_SPL_PAD_TO must be either 0, meaning to append the SPL
3477 payload without any padding, or >= CONFIG_SPL_MAX_SIZE. 3471 payload without any padding, or >= CONFIG_SPL_MAX_SIZE.
3478 3472
3479 - Interrupt support (PPC): 3473 - Interrupt support (PPC):
3480 3474
3481 There are common interrupt_init() and timer_interrupt() 3475 There are common interrupt_init() and timer_interrupt()
3482 for all PPC archs. interrupt_init() calls interrupt_init_cpu() 3476 for all PPC archs. interrupt_init() calls interrupt_init_cpu()
3483 for CPU specific initialization. interrupt_init_cpu() 3477 for CPU specific initialization. interrupt_init_cpu()
3484 should set decrementer_count to appropriate value. If 3478 should set decrementer_count to appropriate value. If
3485 CPU resets decrementer automatically after interrupt 3479 CPU resets decrementer automatically after interrupt
3486 (ppc4xx) it should set decrementer_count to zero. 3480 (ppc4xx) it should set decrementer_count to zero.
3487 timer_interrupt() calls timer_interrupt_cpu() for CPU 3481 timer_interrupt() calls timer_interrupt_cpu() for CPU
3488 specific handling. If board has watchdog / status_led 3482 specific handling. If board has watchdog / status_led
3489 / other_activity_monitor it works automatically from 3483 / other_activity_monitor it works automatically from
3490 general timer_interrupt(). 3484 general timer_interrupt().
3491 3485
3492 3486
3493 Board initialization settings: 3487 Board initialization settings:
3494 ------------------------------ 3488 ------------------------------
3495 3489
3496 During Initialization u-boot calls a number of board specific functions 3490 During Initialization u-boot calls a number of board specific functions
3497 to allow the preparation of board specific prerequisites, e.g. pin setup 3491 to allow the preparation of board specific prerequisites, e.g. pin setup
3498 before drivers are initialized. To enable these callbacks the 3492 before drivers are initialized. To enable these callbacks the
3499 following configuration macros have to be defined. Currently this is 3493 following configuration macros have to be defined. Currently this is
3500 architecture specific, so please check arch/your_architecture/lib/board.c 3494 architecture specific, so please check arch/your_architecture/lib/board.c
3501 typically in board_init_f() and board_init_r(). 3495 typically in board_init_f() and board_init_r().
3502 3496
3503 - CONFIG_BOARD_EARLY_INIT_F: Call board_early_init_f() 3497 - CONFIG_BOARD_EARLY_INIT_F: Call board_early_init_f()
3504 - CONFIG_BOARD_EARLY_INIT_R: Call board_early_init_r() 3498 - CONFIG_BOARD_EARLY_INIT_R: Call board_early_init_r()
3505 - CONFIG_BOARD_LATE_INIT: Call board_late_init() 3499 - CONFIG_BOARD_LATE_INIT: Call board_late_init()
3506 - CONFIG_BOARD_POSTCLK_INIT: Call board_postclk_init() 3500 - CONFIG_BOARD_POSTCLK_INIT: Call board_postclk_init()
3507 3501
3508 Configuration Settings: 3502 Configuration Settings:
3509 ----------------------- 3503 -----------------------
3510 3504
3511 - CONFIG_SYS_SUPPORT_64BIT_DATA: Defined automatically if compiled as 64-bit. 3505 - CONFIG_SYS_SUPPORT_64BIT_DATA: Defined automatically if compiled as 64-bit.
3512 Optionally it can be defined to support 64-bit memory commands. 3506 Optionally it can be defined to support 64-bit memory commands.
3513 3507
3514 - CONFIG_SYS_LONGHELP: Defined when you want long help messages included; 3508 - CONFIG_SYS_LONGHELP: Defined when you want long help messages included;
3515 undefine this when you're short of memory. 3509 undefine this when you're short of memory.
3516 3510
3517 - CONFIG_SYS_HELP_CMD_WIDTH: Defined when you want to override the default 3511 - CONFIG_SYS_HELP_CMD_WIDTH: Defined when you want to override the default
3518 width of the commands listed in the 'help' command output. 3512 width of the commands listed in the 'help' command output.
3519 3513
3520 - CONFIG_SYS_PROMPT: This is what U-Boot prints on the console to 3514 - CONFIG_SYS_PROMPT: This is what U-Boot prints on the console to
3521 prompt for user input. 3515 prompt for user input.
3522 3516
3523 - CONFIG_SYS_CBSIZE: Buffer size for input from the Console 3517 - CONFIG_SYS_CBSIZE: Buffer size for input from the Console
3524 3518
3525 - CONFIG_SYS_PBSIZE: Buffer size for Console output 3519 - CONFIG_SYS_PBSIZE: Buffer size for Console output
3526 3520
3527 - CONFIG_SYS_MAXARGS: max. Number of arguments accepted for monitor commands 3521 - CONFIG_SYS_MAXARGS: max. Number of arguments accepted for monitor commands
3528 3522
3529 - CONFIG_SYS_BARGSIZE: Buffer size for Boot Arguments which are passed to 3523 - CONFIG_SYS_BARGSIZE: Buffer size for Boot Arguments which are passed to
3530 the application (usually a Linux kernel) when it is 3524 the application (usually a Linux kernel) when it is
3531 booted 3525 booted
3532 3526
3533 - CONFIG_SYS_BAUDRATE_TABLE: 3527 - CONFIG_SYS_BAUDRATE_TABLE:
3534 List of legal baudrate settings for this board. 3528 List of legal baudrate settings for this board.
3535 3529
3536 - CONFIG_SYS_CONSOLE_INFO_QUIET 3530 - CONFIG_SYS_CONSOLE_INFO_QUIET
3537 Suppress display of console information at boot. 3531 Suppress display of console information at boot.
3538 3532
3539 - CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE 3533 - CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
3540 Enable the call to overwrite_console(). 3534 Enable the call to overwrite_console().
3541 3535
3542 - CONFIG_SYS_CONSOLE_ENV_OVERWRITE 3536 - CONFIG_SYS_CONSOLE_ENV_OVERWRITE
3543 Enable overwrite of previous console environment settings. 3537 Enable overwrite of previous console environment settings.
3544 3538
3545 - CONFIG_SYS_MEMTEST_START, CONFIG_SYS_MEMTEST_END: 3539 - CONFIG_SYS_MEMTEST_START, CONFIG_SYS_MEMTEST_END:
3546 Begin and End addresses of the area used by the 3540 Begin and End addresses of the area used by the
3547 simple memory test. 3541 simple memory test.
3548 3542
3549 - CONFIG_SYS_ALT_MEMTEST: 3543 - CONFIG_SYS_ALT_MEMTEST:
3550 Enable an alternate, more extensive memory test. 3544 Enable an alternate, more extensive memory test.
3551 3545
3552 - CONFIG_SYS_MEMTEST_SCRATCH: 3546 - CONFIG_SYS_MEMTEST_SCRATCH:
3553 Scratch address used by the alternate memory test 3547 Scratch address used by the alternate memory test
3554 You only need to set this if address zero isn't writeable 3548 You only need to set this if address zero isn't writeable
3555 3549
3556 - CONFIG_SYS_MEM_RESERVE_SECURE 3550 - CONFIG_SYS_MEM_RESERVE_SECURE
3557 Only implemented for ARMv8 for now. 3551 Only implemented for ARMv8 for now.
3558 If defined, the size of CONFIG_SYS_MEM_RESERVE_SECURE memory 3552 If defined, the size of CONFIG_SYS_MEM_RESERVE_SECURE memory
3559 is substracted from total RAM and won't be reported to OS. 3553 is substracted from total RAM and won't be reported to OS.
3560 This memory can be used as secure memory. A variable 3554 This memory can be used as secure memory. A variable
3561 gd->arch.secure_ram is used to track the location. In systems 3555 gd->arch.secure_ram is used to track the location. In systems
3562 the RAM base is not zero, or RAM is divided into banks, 3556 the RAM base is not zero, or RAM is divided into banks,
3563 this variable needs to be recalcuated to get the address. 3557 this variable needs to be recalcuated to get the address.
3564 3558
3565 - CONFIG_SYS_MEM_TOP_HIDE: 3559 - CONFIG_SYS_MEM_TOP_HIDE:
3566 If CONFIG_SYS_MEM_TOP_HIDE is defined in the board config header, 3560 If CONFIG_SYS_MEM_TOP_HIDE is defined in the board config header,
3567 this specified memory area will get subtracted from the top 3561 this specified memory area will get subtracted from the top
3568 (end) of RAM and won't get "touched" at all by U-Boot. By 3562 (end) of RAM and won't get "touched" at all by U-Boot. By
3569 fixing up gd->ram_size the Linux kernel should gets passed 3563 fixing up gd->ram_size the Linux kernel should gets passed
3570 the now "corrected" memory size and won't touch it either. 3564 the now "corrected" memory size and won't touch it either.
3571 This should work for arch/ppc and arch/powerpc. Only Linux 3565 This should work for arch/ppc and arch/powerpc. Only Linux
3572 board ports in arch/powerpc with bootwrapper support that 3566 board ports in arch/powerpc with bootwrapper support that
3573 recalculate the memory size from the SDRAM controller setup 3567 recalculate the memory size from the SDRAM controller setup
3574 will have to get fixed in Linux additionally. 3568 will have to get fixed in Linux additionally.
3575 3569
3576 This option can be used as a workaround for the 440EPx/GRx 3570 This option can be used as a workaround for the 440EPx/GRx
3577 CHIP 11 errata where the last 256 bytes in SDRAM shouldn't 3571 CHIP 11 errata where the last 256 bytes in SDRAM shouldn't
3578 be touched. 3572 be touched.
3579 3573
3580 WARNING: Please make sure that this value is a multiple of 3574 WARNING: Please make sure that this value is a multiple of
3581 the Linux page size (normally 4k). If this is not the case, 3575 the Linux page size (normally 4k). If this is not the case,
3582 then the end address of the Linux memory will be located at a 3576 then the end address of the Linux memory will be located at a
3583 non page size aligned address and this could cause major 3577 non page size aligned address and this could cause major
3584 problems. 3578 problems.
3585 3579
3586 - CONFIG_SYS_LOADS_BAUD_CHANGE: 3580 - CONFIG_SYS_LOADS_BAUD_CHANGE:
3587 Enable temporary baudrate change while serial download 3581 Enable temporary baudrate change while serial download
3588 3582
3589 - CONFIG_SYS_SDRAM_BASE: 3583 - CONFIG_SYS_SDRAM_BASE:
3590 Physical start address of SDRAM. _Must_ be 0 here. 3584 Physical start address of SDRAM. _Must_ be 0 here.
3591 3585
3592 - CONFIG_SYS_FLASH_BASE: 3586 - CONFIG_SYS_FLASH_BASE:
3593 Physical start address of Flash memory. 3587 Physical start address of Flash memory.
3594 3588
3595 - CONFIG_SYS_MONITOR_BASE: 3589 - CONFIG_SYS_MONITOR_BASE:
3596 Physical start address of boot monitor code (set by 3590 Physical start address of boot monitor code (set by
3597 make config files to be same as the text base address 3591 make config files to be same as the text base address
3598 (CONFIG_SYS_TEXT_BASE) used when linking) - same as 3592 (CONFIG_SYS_TEXT_BASE) used when linking) - same as
3599 CONFIG_SYS_FLASH_BASE when booting from flash. 3593 CONFIG_SYS_FLASH_BASE when booting from flash.
3600 3594
3601 - CONFIG_SYS_MONITOR_LEN: 3595 - CONFIG_SYS_MONITOR_LEN:
3602 Size of memory reserved for monitor code, used to 3596 Size of memory reserved for monitor code, used to
3603 determine _at_compile_time_ (!) if the environment is 3597 determine _at_compile_time_ (!) if the environment is
3604 embedded within the U-Boot image, or in a separate 3598 embedded within the U-Boot image, or in a separate
3605 flash sector. 3599 flash sector.
3606 3600
3607 - CONFIG_SYS_MALLOC_LEN: 3601 - CONFIG_SYS_MALLOC_LEN:
3608 Size of DRAM reserved for malloc() use. 3602 Size of DRAM reserved for malloc() use.
3609 3603
3610 - CONFIG_SYS_MALLOC_F_LEN 3604 - CONFIG_SYS_MALLOC_F_LEN
3611 Size of the malloc() pool for use before relocation. If 3605 Size of the malloc() pool for use before relocation. If
3612 this is defined, then a very simple malloc() implementation 3606 this is defined, then a very simple malloc() implementation
3613 will become available before relocation. The address is just 3607 will become available before relocation. The address is just
3614 below the global data, and the stack is moved down to make 3608 below the global data, and the stack is moved down to make
3615 space. 3609 space.
3616 3610
3617 This feature allocates regions with increasing addresses 3611 This feature allocates regions with increasing addresses
3618 within the region. calloc() is supported, but realloc() 3612 within the region. calloc() is supported, but realloc()
3619 is not available. free() is supported but does nothing. 3613 is not available. free() is supported but does nothing.
3620 The memory will be freed (or in fact just forgotten) when 3614 The memory will be freed (or in fact just forgotten) when
3621 U-Boot relocates itself. 3615 U-Boot relocates itself.
3622 3616
3623 - CONFIG_SYS_MALLOC_SIMPLE 3617 - CONFIG_SYS_MALLOC_SIMPLE
3624 Provides a simple and small malloc() and calloc() for those 3618 Provides a simple and small malloc() and calloc() for those
3625 boards which do not use the full malloc in SPL (which is 3619 boards which do not use the full malloc in SPL (which is
3626 enabled with CONFIG_SYS_SPL_MALLOC_START). 3620 enabled with CONFIG_SYS_SPL_MALLOC_START).
3627 3621
3628 - CONFIG_SYS_NONCACHED_MEMORY: 3622 - CONFIG_SYS_NONCACHED_MEMORY:
3629 Size of non-cached memory area. This area of memory will be 3623 Size of non-cached memory area. This area of memory will be
3630 typically located right below the malloc() area and mapped 3624 typically located right below the malloc() area and mapped
3631 uncached in the MMU. This is useful for drivers that would 3625 uncached in the MMU. This is useful for drivers that would
3632 otherwise require a lot of explicit cache maintenance. For 3626 otherwise require a lot of explicit cache maintenance. For
3633 some drivers it's also impossible to properly maintain the 3627 some drivers it's also impossible to properly maintain the
3634 cache. For example if the regions that need to be flushed 3628 cache. For example if the regions that need to be flushed
3635 are not a multiple of the cache-line size, *and* padding 3629 are not a multiple of the cache-line size, *and* padding
3636 cannot be allocated between the regions to align them (i.e. 3630 cannot be allocated between the regions to align them (i.e.
3637 if the HW requires a contiguous array of regions, and the 3631 if the HW requires a contiguous array of regions, and the
3638 size of each region is not cache-aligned), then a flush of 3632 size of each region is not cache-aligned), then a flush of
3639 one region may result in overwriting data that hardware has 3633 one region may result in overwriting data that hardware has
3640 written to another region in the same cache-line. This can 3634 written to another region in the same cache-line. This can
3641 happen for example in network drivers where descriptors for 3635 happen for example in network drivers where descriptors for
3642 buffers are typically smaller than the CPU cache-line (e.g. 3636 buffers are typically smaller than the CPU cache-line (e.g.
3643 16 bytes vs. 32 or 64 bytes). 3637 16 bytes vs. 32 or 64 bytes).
3644 3638
3645 Non-cached memory is only supported on 32-bit ARM at present. 3639 Non-cached memory is only supported on 32-bit ARM at present.
3646 3640
3647 - CONFIG_SYS_BOOTM_LEN: 3641 - CONFIG_SYS_BOOTM_LEN:
3648 Normally compressed uImages are limited to an 3642 Normally compressed uImages are limited to an
3649 uncompressed size of 8 MBytes. If this is not enough, 3643 uncompressed size of 8 MBytes. If this is not enough,
3650 you can define CONFIG_SYS_BOOTM_LEN in your board config file 3644 you can define CONFIG_SYS_BOOTM_LEN in your board config file
3651 to adjust this setting to your needs. 3645 to adjust this setting to your needs.
3652 3646
3653 - CONFIG_SYS_BOOTMAPSZ: 3647 - CONFIG_SYS_BOOTMAPSZ:
3654 Maximum size of memory mapped by the startup code of 3648 Maximum size of memory mapped by the startup code of
3655 the Linux kernel; all data that must be processed by 3649 the Linux kernel; all data that must be processed by
3656 the Linux kernel (bd_info, boot arguments, FDT blob if 3650 the Linux kernel (bd_info, boot arguments, FDT blob if
3657 used) must be put below this limit, unless "bootm_low" 3651 used) must be put below this limit, unless "bootm_low"
3658 environment variable is defined and non-zero. In such case 3652 environment variable is defined and non-zero. In such case
3659 all data for the Linux kernel must be between "bootm_low" 3653 all data for the Linux kernel must be between "bootm_low"
3660 and "bootm_low" + CONFIG_SYS_BOOTMAPSZ. The environment 3654 and "bootm_low" + CONFIG_SYS_BOOTMAPSZ. The environment
3661 variable "bootm_mapsize" will override the value of 3655 variable "bootm_mapsize" will override the value of
3662 CONFIG_SYS_BOOTMAPSZ. If CONFIG_SYS_BOOTMAPSZ is undefined, 3656 CONFIG_SYS_BOOTMAPSZ. If CONFIG_SYS_BOOTMAPSZ is undefined,
3663 then the value in "bootm_size" will be used instead. 3657 then the value in "bootm_size" will be used instead.
3664 3658
3665 - CONFIG_SYS_BOOT_RAMDISK_HIGH: 3659 - CONFIG_SYS_BOOT_RAMDISK_HIGH:
3666 Enable initrd_high functionality. If defined then the 3660 Enable initrd_high functionality. If defined then the
3667 initrd_high feature is enabled and the bootm ramdisk subcommand 3661 initrd_high feature is enabled and the bootm ramdisk subcommand
3668 is enabled. 3662 is enabled.
3669 3663
3670 - CONFIG_SYS_BOOT_GET_CMDLINE: 3664 - CONFIG_SYS_BOOT_GET_CMDLINE:
3671 Enables allocating and saving kernel cmdline in space between 3665 Enables allocating and saving kernel cmdline in space between
3672 "bootm_low" and "bootm_low" + BOOTMAPSZ. 3666 "bootm_low" and "bootm_low" + BOOTMAPSZ.
3673 3667
3674 - CONFIG_SYS_BOOT_GET_KBD: 3668 - CONFIG_SYS_BOOT_GET_KBD:
3675 Enables allocating and saving a kernel copy of the bd_info in 3669 Enables allocating and saving a kernel copy of the bd_info in
3676 space between "bootm_low" and "bootm_low" + BOOTMAPSZ. 3670 space between "bootm_low" and "bootm_low" + BOOTMAPSZ.
3677 3671
3678 - CONFIG_SYS_MAX_FLASH_BANKS: 3672 - CONFIG_SYS_MAX_FLASH_BANKS:
3679 Max number of Flash memory banks 3673 Max number of Flash memory banks
3680 3674
3681 - CONFIG_SYS_MAX_FLASH_SECT: 3675 - CONFIG_SYS_MAX_FLASH_SECT:
3682 Max number of sectors on a Flash chip 3676 Max number of sectors on a Flash chip
3683 3677
3684 - CONFIG_SYS_FLASH_ERASE_TOUT: 3678 - CONFIG_SYS_FLASH_ERASE_TOUT:
3685 Timeout for Flash erase operations (in ms) 3679 Timeout for Flash erase operations (in ms)
3686 3680
3687 - CONFIG_SYS_FLASH_WRITE_TOUT: 3681 - CONFIG_SYS_FLASH_WRITE_TOUT:
3688 Timeout for Flash write operations (in ms) 3682 Timeout for Flash write operations (in ms)
3689 3683
3690 - CONFIG_SYS_FLASH_LOCK_TOUT 3684 - CONFIG_SYS_FLASH_LOCK_TOUT
3691 Timeout for Flash set sector lock bit operation (in ms) 3685 Timeout for Flash set sector lock bit operation (in ms)
3692 3686
3693 - CONFIG_SYS_FLASH_UNLOCK_TOUT 3687 - CONFIG_SYS_FLASH_UNLOCK_TOUT
3694 Timeout for Flash clear lock bits operation (in ms) 3688 Timeout for Flash clear lock bits operation (in ms)
3695 3689
3696 - CONFIG_SYS_FLASH_PROTECTION 3690 - CONFIG_SYS_FLASH_PROTECTION
3697 If defined, hardware flash sectors protection is used 3691 If defined, hardware flash sectors protection is used
3698 instead of U-Boot software protection. 3692 instead of U-Boot software protection.
3699 3693
3700 - CONFIG_SYS_DIRECT_FLASH_TFTP: 3694 - CONFIG_SYS_DIRECT_FLASH_TFTP:
3701 3695
3702 Enable TFTP transfers directly to flash memory; 3696 Enable TFTP transfers directly to flash memory;
3703 without this option such a download has to be 3697 without this option such a download has to be
3704 performed in two steps: (1) download to RAM, and (2) 3698 performed in two steps: (1) download to RAM, and (2)
3705 copy from RAM to flash. 3699 copy from RAM to flash.
3706 3700
3707 The two-step approach is usually more reliable, since 3701 The two-step approach is usually more reliable, since
3708 you can check if the download worked before you erase 3702 you can check if the download worked before you erase
3709 the flash, but in some situations (when system RAM is 3703 the flash, but in some situations (when system RAM is
3710 too limited to allow for a temporary copy of the 3704 too limited to allow for a temporary copy of the
3711 downloaded image) this option may be very useful. 3705 downloaded image) this option may be very useful.
3712 3706
3713 - CONFIG_SYS_FLASH_CFI: 3707 - CONFIG_SYS_FLASH_CFI:
3714 Define if the flash driver uses extra elements in the 3708 Define if the flash driver uses extra elements in the
3715 common flash structure for storing flash geometry. 3709 common flash structure for storing flash geometry.
3716 3710
3717 - CONFIG_FLASH_CFI_DRIVER 3711 - CONFIG_FLASH_CFI_DRIVER
3718 This option also enables the building of the cfi_flash driver 3712 This option also enables the building of the cfi_flash driver
3719 in the drivers directory 3713 in the drivers directory
3720 3714
3721 - CONFIG_FLASH_CFI_MTD 3715 - CONFIG_FLASH_CFI_MTD
3722 This option enables the building of the cfi_mtd driver 3716 This option enables the building of the cfi_mtd driver
3723 in the drivers directory. The driver exports CFI flash 3717 in the drivers directory. The driver exports CFI flash
3724 to the MTD layer. 3718 to the MTD layer.
3725 3719
3726 - CONFIG_SYS_FLASH_USE_BUFFER_WRITE 3720 - CONFIG_SYS_FLASH_USE_BUFFER_WRITE
3727 Use buffered writes to flash. 3721 Use buffered writes to flash.
3728 3722
3729 - CONFIG_FLASH_SPANSION_S29WS_N 3723 - CONFIG_FLASH_SPANSION_S29WS_N
3730 s29ws-n MirrorBit flash has non-standard addresses for buffered 3724 s29ws-n MirrorBit flash has non-standard addresses for buffered
3731 write commands. 3725 write commands.
3732 3726
3733 - CONFIG_SYS_FLASH_QUIET_TEST 3727 - CONFIG_SYS_FLASH_QUIET_TEST
3734 If this option is defined, the common CFI flash doesn't 3728 If this option is defined, the common CFI flash doesn't
3735 print it's warning upon not recognized FLASH banks. This 3729 print it's warning upon not recognized FLASH banks. This
3736 is useful, if some of the configured banks are only 3730 is useful, if some of the configured banks are only
3737 optionally available. 3731 optionally available.
3738 3732
3739 - CONFIG_FLASH_SHOW_PROGRESS 3733 - CONFIG_FLASH_SHOW_PROGRESS
3740 If defined (must be an integer), print out countdown 3734 If defined (must be an integer), print out countdown
3741 digits and dots. Recommended value: 45 (9..1) for 80 3735 digits and dots. Recommended value: 45 (9..1) for 80
3742 column displays, 15 (3..1) for 40 column displays. 3736 column displays, 15 (3..1) for 40 column displays.
3743 3737
3744 - CONFIG_FLASH_VERIFY 3738 - CONFIG_FLASH_VERIFY
3745 If defined, the content of the flash (destination) is compared 3739 If defined, the content of the flash (destination) is compared
3746 against the source after the write operation. An error message 3740 against the source after the write operation. An error message
3747 will be printed when the contents are not identical. 3741 will be printed when the contents are not identical.
3748 Please note that this option is useless in nearly all cases, 3742 Please note that this option is useless in nearly all cases,
3749 since such flash programming errors usually are detected earlier 3743 since such flash programming errors usually are detected earlier
3750 while unprotecting/erasing/programming. Please only enable 3744 while unprotecting/erasing/programming. Please only enable
3751 this option if you really know what you are doing. 3745 this option if you really know what you are doing.
3752 3746
3753 - CONFIG_SYS_RX_ETH_BUFFER: 3747 - CONFIG_SYS_RX_ETH_BUFFER:
3754 Defines the number of Ethernet receive buffers. On some 3748 Defines the number of Ethernet receive buffers. On some
3755 Ethernet controllers it is recommended to set this value 3749 Ethernet controllers it is recommended to set this value
3756 to 8 or even higher (EEPRO100 or 405 EMAC), since all 3750 to 8 or even higher (EEPRO100 or 405 EMAC), since all
3757 buffers can be full shortly after enabling the interface 3751 buffers can be full shortly after enabling the interface
3758 on high Ethernet traffic. 3752 on high Ethernet traffic.
3759 Defaults to 4 if not defined. 3753 Defaults to 4 if not defined.
3760 3754
3761 - CONFIG_ENV_MAX_ENTRIES 3755 - CONFIG_ENV_MAX_ENTRIES
3762 3756
3763 Maximum number of entries in the hash table that is used 3757 Maximum number of entries in the hash table that is used
3764 internally to store the environment settings. The default 3758 internally to store the environment settings. The default
3765 setting is supposed to be generous and should work in most 3759 setting is supposed to be generous and should work in most
3766 cases. This setting can be used to tune behaviour; see 3760 cases. This setting can be used to tune behaviour; see
3767 lib/hashtable.c for details. 3761 lib/hashtable.c for details.
3768 3762
3769 - CONFIG_ENV_FLAGS_LIST_DEFAULT 3763 - CONFIG_ENV_FLAGS_LIST_DEFAULT
3770 - CONFIG_ENV_FLAGS_LIST_STATIC 3764 - CONFIG_ENV_FLAGS_LIST_STATIC
3771 Enable validation of the values given to environment variables when 3765 Enable validation of the values given to environment variables when
3772 calling env set. Variables can be restricted to only decimal, 3766 calling env set. Variables can be restricted to only decimal,
3773 hexadecimal, or boolean. If CONFIG_CMD_NET is also defined, 3767 hexadecimal, or boolean. If CONFIG_CMD_NET is also defined,
3774 the variables can also be restricted to IP address or MAC address. 3768 the variables can also be restricted to IP address or MAC address.
3775 3769
3776 The format of the list is: 3770 The format of the list is:
3777 type_attribute = [s|d|x|b|i|m] 3771 type_attribute = [s|d|x|b|i|m]
3778 access_attribute = [a|r|o|c] 3772 access_attribute = [a|r|o|c]
3779 attributes = type_attribute[access_attribute] 3773 attributes = type_attribute[access_attribute]
3780 entry = variable_name[:attributes] 3774 entry = variable_name[:attributes]
3781 list = entry[,list] 3775 list = entry[,list]
3782 3776
3783 The type attributes are: 3777 The type attributes are:
3784 s - String (default) 3778 s - String (default)
3785 d - Decimal 3779 d - Decimal
3786 x - Hexadecimal 3780 x - Hexadecimal
3787 b - Boolean ([1yYtT|0nNfF]) 3781 b - Boolean ([1yYtT|0nNfF])
3788 i - IP address 3782 i - IP address
3789 m - MAC address 3783 m - MAC address
3790 3784
3791 The access attributes are: 3785 The access attributes are:
3792 a - Any (default) 3786 a - Any (default)
3793 r - Read-only 3787 r - Read-only
3794 o - Write-once 3788 o - Write-once
3795 c - Change-default 3789 c - Change-default
3796 3790
3797 - CONFIG_ENV_FLAGS_LIST_DEFAULT 3791 - CONFIG_ENV_FLAGS_LIST_DEFAULT
3798 Define this to a list (string) to define the ".flags" 3792 Define this to a list (string) to define the ".flags"
3799 environment variable in the default or embedded environment. 3793 environment variable in the default or embedded environment.
3800 3794
3801 - CONFIG_ENV_FLAGS_LIST_STATIC 3795 - CONFIG_ENV_FLAGS_LIST_STATIC
3802 Define this to a list (string) to define validation that 3796 Define this to a list (string) to define validation that
3803 should be done if an entry is not found in the ".flags" 3797 should be done if an entry is not found in the ".flags"
3804 environment variable. To override a setting in the static 3798 environment variable. To override a setting in the static
3805 list, simply add an entry for the same variable name to the 3799 list, simply add an entry for the same variable name to the
3806 ".flags" variable. 3800 ".flags" variable.
3807 3801
3808 If CONFIG_REGEX is defined, the variable_name above is evaluated as a 3802 If CONFIG_REGEX is defined, the variable_name above is evaluated as a
3809 regular expression. This allows multiple variables to define the same 3803 regular expression. This allows multiple variables to define the same
3810 flags without explicitly listing them for each variable. 3804 flags without explicitly listing them for each variable.
3811 3805
3812 - CONFIG_ENV_ACCESS_IGNORE_FORCE 3806 - CONFIG_ENV_ACCESS_IGNORE_FORCE
3813 If defined, don't allow the -f switch to env set override variable 3807 If defined, don't allow the -f switch to env set override variable
3814 access flags. 3808 access flags.
3815 3809
3816 - CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC (OMAP only) 3810 - CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC (OMAP only)
3817 This is set by OMAP boards for the max time that reset should 3811 This is set by OMAP boards for the max time that reset should
3818 be asserted. See doc/README.omap-reset-time for details on how 3812 be asserted. See doc/README.omap-reset-time for details on how
3819 the value can be calculated on a given board. 3813 the value can be calculated on a given board.
3820 3814
3821 - CONFIG_USE_STDINT 3815 - CONFIG_USE_STDINT
3822 If stdint.h is available with your toolchain you can define this 3816 If stdint.h is available with your toolchain you can define this
3823 option to enable it. You can provide option 'USE_STDINT=1' when 3817 option to enable it. You can provide option 'USE_STDINT=1' when
3824 building U-Boot to enable this. 3818 building U-Boot to enable this.
3825 3819
3826 The following definitions that deal with the placement and management 3820 The following definitions that deal with the placement and management
3827 of environment data (variable area); in general, we support the 3821 of environment data (variable area); in general, we support the
3828 following configurations: 3822 following configurations:
3829 3823
3830 - CONFIG_BUILD_ENVCRC: 3824 - CONFIG_BUILD_ENVCRC:
3831 3825
3832 Builds up envcrc with the target environment so that external utils 3826 Builds up envcrc with the target environment so that external utils
3833 may easily extract it and embed it in final U-Boot images. 3827 may easily extract it and embed it in final U-Boot images.
3834 3828
3835 - CONFIG_ENV_IS_IN_FLASH: 3829 - CONFIG_ENV_IS_IN_FLASH:
3836 3830
3837 Define this if the environment is in flash memory. 3831 Define this if the environment is in flash memory.
3838 3832
3839 a) The environment occupies one whole flash sector, which is 3833 a) The environment occupies one whole flash sector, which is
3840 "embedded" in the text segment with the U-Boot code. This 3834 "embedded" in the text segment with the U-Boot code. This
3841 happens usually with "bottom boot sector" or "top boot 3835 happens usually with "bottom boot sector" or "top boot
3842 sector" type flash chips, which have several smaller 3836 sector" type flash chips, which have several smaller
3843 sectors at the start or the end. For instance, such a 3837 sectors at the start or the end. For instance, such a
3844 layout can have sector sizes of 8, 2x4, 16, Nx32 kB. In 3838 layout can have sector sizes of 8, 2x4, 16, Nx32 kB. In
3845 such a case you would place the environment in one of the 3839 such a case you would place the environment in one of the
3846 4 kB sectors - with U-Boot code before and after it. With 3840 4 kB sectors - with U-Boot code before and after it. With
3847 "top boot sector" type flash chips, you would put the 3841 "top boot sector" type flash chips, you would put the
3848 environment in one of the last sectors, leaving a gap 3842 environment in one of the last sectors, leaving a gap
3849 between U-Boot and the environment. 3843 between U-Boot and the environment.
3850 3844
3851 - CONFIG_ENV_OFFSET: 3845 - CONFIG_ENV_OFFSET:
3852 3846
3853 Offset of environment data (variable area) to the 3847 Offset of environment data (variable area) to the
3854 beginning of flash memory; for instance, with bottom boot 3848 beginning of flash memory; for instance, with bottom boot
3855 type flash chips the second sector can be used: the offset 3849 type flash chips the second sector can be used: the offset
3856 for this sector is given here. 3850 for this sector is given here.
3857 3851
3858 CONFIG_ENV_OFFSET is used relative to CONFIG_SYS_FLASH_BASE. 3852 CONFIG_ENV_OFFSET is used relative to CONFIG_SYS_FLASH_BASE.
3859 3853
3860 - CONFIG_ENV_ADDR: 3854 - CONFIG_ENV_ADDR:
3861 3855
3862 This is just another way to specify the start address of 3856 This is just another way to specify the start address of
3863 the flash sector containing the environment (instead of 3857 the flash sector containing the environment (instead of
3864 CONFIG_ENV_OFFSET). 3858 CONFIG_ENV_OFFSET).
3865 3859
3866 - CONFIG_ENV_SECT_SIZE: 3860 - CONFIG_ENV_SECT_SIZE:
3867 3861
3868 Size of the sector containing the environment. 3862 Size of the sector containing the environment.
3869 3863
3870 3864
3871 b) Sometimes flash chips have few, equal sized, BIG sectors. 3865 b) Sometimes flash chips have few, equal sized, BIG sectors.
3872 In such a case you don't want to spend a whole sector for 3866 In such a case you don't want to spend a whole sector for
3873 the environment. 3867 the environment.
3874 3868
3875 - CONFIG_ENV_SIZE: 3869 - CONFIG_ENV_SIZE:
3876 3870
3877 If you use this in combination with CONFIG_ENV_IS_IN_FLASH 3871 If you use this in combination with CONFIG_ENV_IS_IN_FLASH
3878 and CONFIG_ENV_SECT_SIZE, you can specify to use only a part 3872 and CONFIG_ENV_SECT_SIZE, you can specify to use only a part
3879 of this flash sector for the environment. This saves 3873 of this flash sector for the environment. This saves
3880 memory for the RAM copy of the environment. 3874 memory for the RAM copy of the environment.
3881 3875
3882 It may also save flash memory if you decide to use this 3876 It may also save flash memory if you decide to use this
3883 when your environment is "embedded" within U-Boot code, 3877 when your environment is "embedded" within U-Boot code,
3884 since then the remainder of the flash sector could be used 3878 since then the remainder of the flash sector could be used
3885 for U-Boot code. It should be pointed out that this is 3879 for U-Boot code. It should be pointed out that this is
3886 STRONGLY DISCOURAGED from a robustness point of view: 3880 STRONGLY DISCOURAGED from a robustness point of view:
3887 updating the environment in flash makes it always 3881 updating the environment in flash makes it always
3888 necessary to erase the WHOLE sector. If something goes 3882 necessary to erase the WHOLE sector. If something goes
3889 wrong before the contents has been restored from a copy in 3883 wrong before the contents has been restored from a copy in
3890 RAM, your target system will be dead. 3884 RAM, your target system will be dead.
3891 3885
3892 - CONFIG_ENV_ADDR_REDUND 3886 - CONFIG_ENV_ADDR_REDUND
3893 CONFIG_ENV_SIZE_REDUND 3887 CONFIG_ENV_SIZE_REDUND
3894 3888
3895 These settings describe a second storage area used to hold 3889 These settings describe a second storage area used to hold
3896 a redundant copy of the environment data, so that there is 3890 a redundant copy of the environment data, so that there is
3897 a valid backup copy in case there is a power failure during 3891 a valid backup copy in case there is a power failure during
3898 a "saveenv" operation. 3892 a "saveenv" operation.
3899 3893
3900 BE CAREFUL! Any changes to the flash layout, and some changes to the 3894 BE CAREFUL! Any changes to the flash layout, and some changes to the
3901 source code will make it necessary to adapt <board>/u-boot.lds* 3895 source code will make it necessary to adapt <board>/u-boot.lds*
3902 accordingly! 3896 accordingly!
3903 3897
3904 3898
3905 - CONFIG_ENV_IS_IN_NVRAM: 3899 - CONFIG_ENV_IS_IN_NVRAM:
3906 3900
3907 Define this if you have some non-volatile memory device 3901 Define this if you have some non-volatile memory device
3908 (NVRAM, battery buffered SRAM) which you want to use for the 3902 (NVRAM, battery buffered SRAM) which you want to use for the
3909 environment. 3903 environment.
3910 3904
3911 - CONFIG_ENV_ADDR: 3905 - CONFIG_ENV_ADDR:
3912 - CONFIG_ENV_SIZE: 3906 - CONFIG_ENV_SIZE:
3913 3907
3914 These two #defines are used to determine the memory area you 3908 These two #defines are used to determine the memory area you
3915 want to use for environment. It is assumed that this memory 3909 want to use for environment. It is assumed that this memory
3916 can just be read and written to, without any special 3910 can just be read and written to, without any special
3917 provision. 3911 provision.
3918 3912
3919 BE CAREFUL! The first access to the environment happens quite early 3913 BE CAREFUL! The first access to the environment happens quite early
3920 in U-Boot initialization (when we try to get the setting of for the 3914 in U-Boot initialization (when we try to get the setting of for the
3921 console baudrate). You *MUST* have mapped your NVRAM area then, or 3915 console baudrate). You *MUST* have mapped your NVRAM area then, or
3922 U-Boot will hang. 3916 U-Boot will hang.
3923 3917
3924 Please note that even with NVRAM we still use a copy of the 3918 Please note that even with NVRAM we still use a copy of the
3925 environment in RAM: we could work on NVRAM directly, but we want to 3919 environment in RAM: we could work on NVRAM directly, but we want to
3926 keep settings there always unmodified except somebody uses "saveenv" 3920 keep settings there always unmodified except somebody uses "saveenv"
3927 to save the current settings. 3921 to save the current settings.
3928 3922
3929 3923
3930 - CONFIG_ENV_IS_IN_EEPROM: 3924 - CONFIG_ENV_IS_IN_EEPROM:
3931 3925
3932 Use this if you have an EEPROM or similar serial access 3926 Use this if you have an EEPROM or similar serial access
3933 device and a driver for it. 3927 device and a driver for it.
3934 3928
3935 - CONFIG_ENV_OFFSET: 3929 - CONFIG_ENV_OFFSET:
3936 - CONFIG_ENV_SIZE: 3930 - CONFIG_ENV_SIZE:
3937 3931
3938 These two #defines specify the offset and size of the 3932 These two #defines specify the offset and size of the
3939 environment area within the total memory of your EEPROM. 3933 environment area within the total memory of your EEPROM.
3940 3934
3941 - CONFIG_SYS_I2C_EEPROM_ADDR: 3935 - CONFIG_SYS_I2C_EEPROM_ADDR:
3942 If defined, specified the chip address of the EEPROM device. 3936 If defined, specified the chip address of the EEPROM device.
3943 The default address is zero. 3937 The default address is zero.
3944 3938
3945 - CONFIG_SYS_I2C_EEPROM_BUS: 3939 - CONFIG_SYS_I2C_EEPROM_BUS:
3946 If defined, specified the i2c bus of the EEPROM device. 3940 If defined, specified the i2c bus of the EEPROM device.
3947 3941
3948 - CONFIG_SYS_EEPROM_PAGE_WRITE_BITS: 3942 - CONFIG_SYS_EEPROM_PAGE_WRITE_BITS:
3949 If defined, the number of bits used to address bytes in a 3943 If defined, the number of bits used to address bytes in a
3950 single page in the EEPROM device. A 64 byte page, for example 3944 single page in the EEPROM device. A 64 byte page, for example
3951 would require six bits. 3945 would require six bits.
3952 3946
3953 - CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS: 3947 - CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS:
3954 If defined, the number of milliseconds to delay between 3948 If defined, the number of milliseconds to delay between
3955 page writes. The default is zero milliseconds. 3949 page writes. The default is zero milliseconds.
3956 3950
3957 - CONFIG_SYS_I2C_EEPROM_ADDR_LEN: 3951 - CONFIG_SYS_I2C_EEPROM_ADDR_LEN:
3958 The length in bytes of the EEPROM memory array address. Note 3952 The length in bytes of the EEPROM memory array address. Note
3959 that this is NOT the chip address length! 3953 that this is NOT the chip address length!
3960 3954
3961 - CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW: 3955 - CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW:
3962 EEPROM chips that implement "address overflow" are ones 3956 EEPROM chips that implement "address overflow" are ones
3963 like Catalyst 24WC04/08/16 which has 9/10/11 bits of 3957 like Catalyst 24WC04/08/16 which has 9/10/11 bits of
3964 address and the extra bits end up in the "chip address" bit 3958 address and the extra bits end up in the "chip address" bit
3965 slots. This makes a 24WC08 (1Kbyte) chip look like four 256 3959 slots. This makes a 24WC08 (1Kbyte) chip look like four 256
3966 byte chips. 3960 byte chips.
3967 3961
3968 Note that we consider the length of the address field to 3962 Note that we consider the length of the address field to
3969 still be one byte because the extra address bits are hidden 3963 still be one byte because the extra address bits are hidden
3970 in the chip address. 3964 in the chip address.
3971 3965
3972 - CONFIG_SYS_EEPROM_SIZE: 3966 - CONFIG_SYS_EEPROM_SIZE:
3973 The size in bytes of the EEPROM device. 3967 The size in bytes of the EEPROM device.
3974 3968
3975 - CONFIG_ENV_EEPROM_IS_ON_I2C 3969 - CONFIG_ENV_EEPROM_IS_ON_I2C
3976 define this, if you have I2C and SPI activated, and your 3970 define this, if you have I2C and SPI activated, and your
3977 EEPROM, which holds the environment, is on the I2C bus. 3971 EEPROM, which holds the environment, is on the I2C bus.
3978 3972
3979 - CONFIG_I2C_ENV_EEPROM_BUS 3973 - CONFIG_I2C_ENV_EEPROM_BUS
3980 if you have an Environment on an EEPROM reached over 3974 if you have an Environment on an EEPROM reached over
3981 I2C muxes, you can define here, how to reach this 3975 I2C muxes, you can define here, how to reach this
3982 EEPROM. For example: 3976 EEPROM. For example:
3983 3977
3984 #define CONFIG_I2C_ENV_EEPROM_BUS 1 3978 #define CONFIG_I2C_ENV_EEPROM_BUS 1
3985 3979
3986 EEPROM which holds the environment, is reached over 3980 EEPROM which holds the environment, is reached over
3987 a pca9547 i2c mux with address 0x70, channel 3. 3981 a pca9547 i2c mux with address 0x70, channel 3.
3988 3982
3989 - CONFIG_ENV_IS_IN_DATAFLASH: 3983 - CONFIG_ENV_IS_IN_DATAFLASH:
3990 3984
3991 Define this if you have a DataFlash memory device which you 3985 Define this if you have a DataFlash memory device which you
3992 want to use for the environment. 3986 want to use for the environment.
3993 3987
3994 - CONFIG_ENV_OFFSET: 3988 - CONFIG_ENV_OFFSET:
3995 - CONFIG_ENV_ADDR: 3989 - CONFIG_ENV_ADDR:
3996 - CONFIG_ENV_SIZE: 3990 - CONFIG_ENV_SIZE:
3997 3991
3998 These three #defines specify the offset and size of the 3992 These three #defines specify the offset and size of the
3999 environment area within the total memory of your DataFlash placed 3993 environment area within the total memory of your DataFlash placed
4000 at the specified address. 3994 at the specified address.
4001 3995
4002 - CONFIG_ENV_IS_IN_SPI_FLASH: 3996 - CONFIG_ENV_IS_IN_SPI_FLASH:
4003 3997
4004 Define this if you have a SPI Flash memory device which you 3998 Define this if you have a SPI Flash memory device which you
4005 want to use for the environment. 3999 want to use for the environment.
4006 4000
4007 - CONFIG_ENV_OFFSET: 4001 - CONFIG_ENV_OFFSET:
4008 - CONFIG_ENV_SIZE: 4002 - CONFIG_ENV_SIZE:
4009 4003
4010 These two #defines specify the offset and size of the 4004 These two #defines specify the offset and size of the
4011 environment area within the SPI Flash. CONFIG_ENV_OFFSET must be 4005 environment area within the SPI Flash. CONFIG_ENV_OFFSET must be
4012 aligned to an erase sector boundary. 4006 aligned to an erase sector boundary.
4013 4007
4014 - CONFIG_ENV_SECT_SIZE: 4008 - CONFIG_ENV_SECT_SIZE:
4015 4009
4016 Define the SPI flash's sector size. 4010 Define the SPI flash's sector size.
4017 4011
4018 - CONFIG_ENV_OFFSET_REDUND (optional): 4012 - CONFIG_ENV_OFFSET_REDUND (optional):
4019 4013
4020 This setting describes a second storage area of CONFIG_ENV_SIZE 4014 This setting describes a second storage area of CONFIG_ENV_SIZE
4021 size used to hold a redundant copy of the environment data, so 4015 size used to hold a redundant copy of the environment data, so
4022 that there is a valid backup copy in case there is a power failure 4016 that there is a valid backup copy in case there is a power failure
4023 during a "saveenv" operation. CONFIG_ENV_OFFSET_REDUND must be 4017 during a "saveenv" operation. CONFIG_ENV_OFFSET_REDUND must be
4024 aligned to an erase sector boundary. 4018 aligned to an erase sector boundary.
4025 4019
4026 - CONFIG_ENV_SPI_BUS (optional): 4020 - CONFIG_ENV_SPI_BUS (optional):
4027 - CONFIG_ENV_SPI_CS (optional): 4021 - CONFIG_ENV_SPI_CS (optional):
4028 4022
4029 Define the SPI bus and chip select. If not defined they will be 0. 4023 Define the SPI bus and chip select. If not defined they will be 0.
4030 4024
4031 - CONFIG_ENV_SPI_MAX_HZ (optional): 4025 - CONFIG_ENV_SPI_MAX_HZ (optional):
4032 4026
4033 Define the SPI max work clock. If not defined then use 1MHz. 4027 Define the SPI max work clock. If not defined then use 1MHz.
4034 4028
4035 - CONFIG_ENV_SPI_MODE (optional): 4029 - CONFIG_ENV_SPI_MODE (optional):
4036 4030
4037 Define the SPI work mode. If not defined then use SPI_MODE_3. 4031 Define the SPI work mode. If not defined then use SPI_MODE_3.
4038 4032
4039 - CONFIG_ENV_IS_IN_REMOTE: 4033 - CONFIG_ENV_IS_IN_REMOTE:
4040 4034
4041 Define this if you have a remote memory space which you 4035 Define this if you have a remote memory space which you
4042 want to use for the local device's environment. 4036 want to use for the local device's environment.
4043 4037
4044 - CONFIG_ENV_ADDR: 4038 - CONFIG_ENV_ADDR:
4045 - CONFIG_ENV_SIZE: 4039 - CONFIG_ENV_SIZE:
4046 4040
4047 These two #defines specify the address and size of the 4041 These two #defines specify the address and size of the
4048 environment area within the remote memory space. The 4042 environment area within the remote memory space. The
4049 local device can get the environment from remote memory 4043 local device can get the environment from remote memory
4050 space by SRIO or PCIE links. 4044 space by SRIO or PCIE links.
4051 4045
4052 BE CAREFUL! For some special cases, the local device can not use 4046 BE CAREFUL! For some special cases, the local device can not use
4053 "saveenv" command. For example, the local device will get the 4047 "saveenv" command. For example, the local device will get the
4054 environment stored in a remote NOR flash by SRIO or PCIE link, 4048 environment stored in a remote NOR flash by SRIO or PCIE link,
4055 but it can not erase, write this NOR flash by SRIO or PCIE interface. 4049 but it can not erase, write this NOR flash by SRIO or PCIE interface.
4056 4050
4057 - CONFIG_ENV_IS_IN_NAND: 4051 - CONFIG_ENV_IS_IN_NAND:
4058 4052
4059 Define this if you have a NAND device which you want to use 4053 Define this if you have a NAND device which you want to use
4060 for the environment. 4054 for the environment.
4061 4055
4062 - CONFIG_ENV_OFFSET: 4056 - CONFIG_ENV_OFFSET:
4063 - CONFIG_ENV_SIZE: 4057 - CONFIG_ENV_SIZE:
4064 4058
4065 These two #defines specify the offset and size of the environment 4059 These two #defines specify the offset and size of the environment
4066 area within the first NAND device. CONFIG_ENV_OFFSET must be 4060 area within the first NAND device. CONFIG_ENV_OFFSET must be
4067 aligned to an erase block boundary. 4061 aligned to an erase block boundary.
4068 4062
4069 - CONFIG_ENV_OFFSET_REDUND (optional): 4063 - CONFIG_ENV_OFFSET_REDUND (optional):
4070 4064
4071 This setting describes a second storage area of CONFIG_ENV_SIZE 4065 This setting describes a second storage area of CONFIG_ENV_SIZE
4072 size used to hold a redundant copy of the environment data, so 4066 size used to hold a redundant copy of the environment data, so
4073 that there is a valid backup copy in case there is a power failure 4067 that there is a valid backup copy in case there is a power failure
4074 during a "saveenv" operation. CONFIG_ENV_OFFSET_REDUND must be 4068 during a "saveenv" operation. CONFIG_ENV_OFFSET_REDUND must be
4075 aligned to an erase block boundary. 4069 aligned to an erase block boundary.
4076 4070
4077 - CONFIG_ENV_RANGE (optional): 4071 - CONFIG_ENV_RANGE (optional):
4078 4072
4079 Specifies the length of the region in which the environment 4073 Specifies the length of the region in which the environment
4080 can be written. This should be a multiple of the NAND device's 4074 can be written. This should be a multiple of the NAND device's
4081 block size. Specifying a range with more erase blocks than 4075 block size. Specifying a range with more erase blocks than
4082 are needed to hold CONFIG_ENV_SIZE allows bad blocks within 4076 are needed to hold CONFIG_ENV_SIZE allows bad blocks within
4083 the range to be avoided. 4077 the range to be avoided.
4084 4078
4085 - CONFIG_ENV_OFFSET_OOB (optional): 4079 - CONFIG_ENV_OFFSET_OOB (optional):
4086 4080
4087 Enables support for dynamically retrieving the offset of the 4081 Enables support for dynamically retrieving the offset of the
4088 environment from block zero's out-of-band data. The 4082 environment from block zero's out-of-band data. The
4089 "nand env.oob" command can be used to record this offset. 4083 "nand env.oob" command can be used to record this offset.
4090 Currently, CONFIG_ENV_OFFSET_REDUND is not supported when 4084 Currently, CONFIG_ENV_OFFSET_REDUND is not supported when
4091 using CONFIG_ENV_OFFSET_OOB. 4085 using CONFIG_ENV_OFFSET_OOB.
4092 4086
4093 - CONFIG_NAND_ENV_DST 4087 - CONFIG_NAND_ENV_DST
4094 4088
4095 Defines address in RAM to which the nand_spl code should copy the 4089 Defines address in RAM to which the nand_spl code should copy the
4096 environment. If redundant environment is used, it will be copied to 4090 environment. If redundant environment is used, it will be copied to
4097 CONFIG_NAND_ENV_DST + CONFIG_ENV_SIZE. 4091 CONFIG_NAND_ENV_DST + CONFIG_ENV_SIZE.
4098 4092
4099 - CONFIG_ENV_IS_IN_UBI: 4093 - CONFIG_ENV_IS_IN_UBI:
4100 4094
4101 Define this if you have an UBI volume that you want to use for the 4095 Define this if you have an UBI volume that you want to use for the
4102 environment. This has the benefit of wear-leveling the environment 4096 environment. This has the benefit of wear-leveling the environment
4103 accesses, which is important on NAND. 4097 accesses, which is important on NAND.
4104 4098
4105 - CONFIG_ENV_UBI_PART: 4099 - CONFIG_ENV_UBI_PART:
4106 4100
4107 Define this to a string that is the mtd partition containing the UBI. 4101 Define this to a string that is the mtd partition containing the UBI.
4108 4102
4109 - CONFIG_ENV_UBI_VOLUME: 4103 - CONFIG_ENV_UBI_VOLUME:
4110 4104
4111 Define this to the name of the volume that you want to store the 4105 Define this to the name of the volume that you want to store the
4112 environment in. 4106 environment in.
4113 4107
4114 - CONFIG_ENV_UBI_VOLUME_REDUND: 4108 - CONFIG_ENV_UBI_VOLUME_REDUND:
4115 4109
4116 Define this to the name of another volume to store a second copy of 4110 Define this to the name of another volume to store a second copy of
4117 the environment in. This will enable redundant environments in UBI. 4111 the environment in. This will enable redundant environments in UBI.
4118 It is assumed that both volumes are in the same MTD partition. 4112 It is assumed that both volumes are in the same MTD partition.
4119 4113
4120 - CONFIG_UBI_SILENCE_MSG 4114 - CONFIG_UBI_SILENCE_MSG
4121 - CONFIG_UBIFS_SILENCE_MSG 4115 - CONFIG_UBIFS_SILENCE_MSG
4122 4116
4123 You will probably want to define these to avoid a really noisy system 4117 You will probably want to define these to avoid a really noisy system
4124 when storing the env in UBI. 4118 when storing the env in UBI.
4125 4119
4126 - CONFIG_ENV_IS_IN_FAT: 4120 - CONFIG_ENV_IS_IN_FAT:
4127 Define this if you want to use the FAT file system for the environment. 4121 Define this if you want to use the FAT file system for the environment.
4128 4122
4129 - FAT_ENV_INTERFACE: 4123 - FAT_ENV_INTERFACE:
4130 4124
4131 Define this to a string that is the name of the block device. 4125 Define this to a string that is the name of the block device.
4132 4126
4133 - FAT_ENV_DEV_AND_PART: 4127 - FAT_ENV_DEV_AND_PART:
4134 4128
4135 Define this to a string to specify the partition of the device. It can 4129 Define this to a string to specify the partition of the device. It can
4136 be as following: 4130 be as following:
4137 4131
4138 "D:P", "D:0", "D", "D:" or "D:auto" (D, P are integers. And P >= 1) 4132 "D:P", "D:0", "D", "D:" or "D:auto" (D, P are integers. And P >= 1)
4139 - "D:P": device D partition P. Error occurs if device D has no 4133 - "D:P": device D partition P. Error occurs if device D has no
4140 partition table. 4134 partition table.
4141 - "D:0": device D. 4135 - "D:0": device D.
4142 - "D" or "D:": device D partition 1 if device D has partition 4136 - "D" or "D:": device D partition 1 if device D has partition
4143 table, or the whole device D if has no partition 4137 table, or the whole device D if has no partition
4144 table. 4138 table.
4145 - "D:auto": first partition in device D with bootable flag set. 4139 - "D:auto": first partition in device D with bootable flag set.
4146 If none, first valid partition in device D. If no 4140 If none, first valid partition in device D. If no
4147 partition table then means device D. 4141 partition table then means device D.
4148 4142
4149 - FAT_ENV_FILE: 4143 - FAT_ENV_FILE:
4150 4144
4151 It's a string of the FAT file name. This file use to store the 4145 It's a string of the FAT file name. This file use to store the
4152 environment. 4146 environment.
4153 4147
4154 - CONFIG_FAT_WRITE: 4148 - CONFIG_FAT_WRITE:
4155 This should be defined. Otherwise it cannot save the environment file. 4149 This should be defined. Otherwise it cannot save the environment file.
4156 4150
4157 - CONFIG_ENV_IS_IN_MMC: 4151 - CONFIG_ENV_IS_IN_MMC:
4158 4152
4159 Define this if you have an MMC device which you want to use for the 4153 Define this if you have an MMC device which you want to use for the
4160 environment. 4154 environment.
4161 4155
4162 - CONFIG_SYS_MMC_ENV_DEV: 4156 - CONFIG_SYS_MMC_ENV_DEV:
4163 4157
4164 Specifies which MMC device the environment is stored in. 4158 Specifies which MMC device the environment is stored in.
4165 4159
4166 - CONFIG_SYS_MMC_ENV_PART (optional): 4160 - CONFIG_SYS_MMC_ENV_PART (optional):
4167 4161
4168 Specifies which MMC partition the environment is stored in. If not 4162 Specifies which MMC partition the environment is stored in. If not
4169 set, defaults to partition 0, the user area. Common values might be 4163 set, defaults to partition 0, the user area. Common values might be
4170 1 (first MMC boot partition), 2 (second MMC boot partition). 4164 1 (first MMC boot partition), 2 (second MMC boot partition).
4171 4165
4172 - CONFIG_ENV_OFFSET: 4166 - CONFIG_ENV_OFFSET:
4173 - CONFIG_ENV_SIZE: 4167 - CONFIG_ENV_SIZE:
4174 4168
4175 These two #defines specify the offset and size of the environment 4169 These two #defines specify the offset and size of the environment
4176 area within the specified MMC device. 4170 area within the specified MMC device.
4177 4171
4178 If offset is positive (the usual case), it is treated as relative to 4172 If offset is positive (the usual case), it is treated as relative to
4179 the start of the MMC partition. If offset is negative, it is treated 4173 the start of the MMC partition. If offset is negative, it is treated
4180 as relative to the end of the MMC partition. This can be useful if 4174 as relative to the end of the MMC partition. This can be useful if
4181 your board may be fitted with different MMC devices, which have 4175 your board may be fitted with different MMC devices, which have
4182 different sizes for the MMC partitions, and you always want the 4176 different sizes for the MMC partitions, and you always want the
4183 environment placed at the very end of the partition, to leave the 4177 environment placed at the very end of the partition, to leave the
4184 maximum possible space before it, to store other data. 4178 maximum possible space before it, to store other data.
4185 4179
4186 These two values are in units of bytes, but must be aligned to an 4180 These two values are in units of bytes, but must be aligned to an
4187 MMC sector boundary. 4181 MMC sector boundary.
4188 4182
4189 - CONFIG_ENV_OFFSET_REDUND (optional): 4183 - CONFIG_ENV_OFFSET_REDUND (optional):
4190 4184
4191 Specifies a second storage area, of CONFIG_ENV_SIZE size, used to 4185 Specifies a second storage area, of CONFIG_ENV_SIZE size, used to
4192 hold a redundant copy of the environment data. This provides a 4186 hold a redundant copy of the environment data. This provides a
4193 valid backup copy in case the other copy is corrupted, e.g. due 4187 valid backup copy in case the other copy is corrupted, e.g. due
4194 to a power failure during a "saveenv" operation. 4188 to a power failure during a "saveenv" operation.
4195 4189
4196 This value may also be positive or negative; this is handled in the 4190 This value may also be positive or negative; this is handled in the
4197 same way as CONFIG_ENV_OFFSET. 4191 same way as CONFIG_ENV_OFFSET.
4198 4192
4199 This value is also in units of bytes, but must also be aligned to 4193 This value is also in units of bytes, but must also be aligned to
4200 an MMC sector boundary. 4194 an MMC sector boundary.
4201 4195
4202 - CONFIG_ENV_SIZE_REDUND (optional): 4196 - CONFIG_ENV_SIZE_REDUND (optional):
4203 4197
4204 This value need not be set, even when CONFIG_ENV_OFFSET_REDUND is 4198 This value need not be set, even when CONFIG_ENV_OFFSET_REDUND is
4205 set. If this value is set, it must be set to the same value as 4199 set. If this value is set, it must be set to the same value as
4206 CONFIG_ENV_SIZE. 4200 CONFIG_ENV_SIZE.
4207 4201
4208 - CONFIG_SYS_SPI_INIT_OFFSET 4202 - CONFIG_SYS_SPI_INIT_OFFSET
4209 4203
4210 Defines offset to the initial SPI buffer area in DPRAM. The 4204 Defines offset to the initial SPI buffer area in DPRAM. The
4211 area is used at an early stage (ROM part) if the environment 4205 area is used at an early stage (ROM part) if the environment
4212 is configured to reside in the SPI EEPROM: We need a 520 byte 4206 is configured to reside in the SPI EEPROM: We need a 520 byte
4213 scratch DPRAM area. It is used between the two initialization 4207 scratch DPRAM area. It is used between the two initialization
4214 calls (spi_init_f() and spi_init_r()). A value of 0xB00 seems 4208 calls (spi_init_f() and spi_init_r()). A value of 0xB00 seems
4215 to be a good choice since it makes it far enough from the 4209 to be a good choice since it makes it far enough from the
4216 start of the data area as well as from the stack pointer. 4210 start of the data area as well as from the stack pointer.
4217 4211
4218 Please note that the environment is read-only until the monitor 4212 Please note that the environment is read-only until the monitor
4219 has been relocated to RAM and a RAM copy of the environment has been 4213 has been relocated to RAM and a RAM copy of the environment has been
4220 created; also, when using EEPROM you will have to use getenv_f() 4214 created; also, when using EEPROM you will have to use getenv_f()
4221 until then to read environment variables. 4215 until then to read environment variables.
4222 4216
4223 The environment is protected by a CRC32 checksum. Before the monitor 4217 The environment is protected by a CRC32 checksum. Before the monitor
4224 is relocated into RAM, as a result of a bad CRC you will be working 4218 is relocated into RAM, as a result of a bad CRC you will be working
4225 with the compiled-in default environment - *silently*!!! [This is 4219 with the compiled-in default environment - *silently*!!! [This is
4226 necessary, because the first environment variable we need is the 4220 necessary, because the first environment variable we need is the
4227 "baudrate" setting for the console - if we have a bad CRC, we don't 4221 "baudrate" setting for the console - if we have a bad CRC, we don't
4228 have any device yet where we could complain.] 4222 have any device yet where we could complain.]
4229 4223
4230 Note: once the monitor has been relocated, then it will complain if 4224 Note: once the monitor has been relocated, then it will complain if
4231 the default environment is used; a new CRC is computed as soon as you 4225 the default environment is used; a new CRC is computed as soon as you
4232 use the "saveenv" command to store a valid environment. 4226 use the "saveenv" command to store a valid environment.
4233 4227
4234 - CONFIG_SYS_FAULT_ECHO_LINK_DOWN: 4228 - CONFIG_SYS_FAULT_ECHO_LINK_DOWN:
4235 Echo the inverted Ethernet link state to the fault LED. 4229 Echo the inverted Ethernet link state to the fault LED.
4236 4230
4237 Note: If this option is active, then CONFIG_SYS_FAULT_MII_ADDR 4231 Note: If this option is active, then CONFIG_SYS_FAULT_MII_ADDR
4238 also needs to be defined. 4232 also needs to be defined.
4239 4233
4240 - CONFIG_SYS_FAULT_MII_ADDR: 4234 - CONFIG_SYS_FAULT_MII_ADDR:
4241 MII address of the PHY to check for the Ethernet link state. 4235 MII address of the PHY to check for the Ethernet link state.
4242 4236
4243 - CONFIG_NS16550_MIN_FUNCTIONS: 4237 - CONFIG_NS16550_MIN_FUNCTIONS:
4244 Define this if you desire to only have use of the NS16550_init 4238 Define this if you desire to only have use of the NS16550_init
4245 and NS16550_putc functions for the serial driver located at 4239 and NS16550_putc functions for the serial driver located at
4246 drivers/serial/ns16550.c. This option is useful for saving 4240 drivers/serial/ns16550.c. This option is useful for saving
4247 space for already greatly restricted images, including but not 4241 space for already greatly restricted images, including but not
4248 limited to NAND_SPL configurations. 4242 limited to NAND_SPL configurations.
4249 4243
4250 - CONFIG_DISPLAY_BOARDINFO 4244 - CONFIG_DISPLAY_BOARDINFO
4251 Display information about the board that U-Boot is running on 4245 Display information about the board that U-Boot is running on
4252 when U-Boot starts up. The board function checkboard() is called 4246 when U-Boot starts up. The board function checkboard() is called
4253 to do this. 4247 to do this.
4254 4248
4255 - CONFIG_DISPLAY_BOARDINFO_LATE 4249 - CONFIG_DISPLAY_BOARDINFO_LATE
4256 Similar to the previous option, but display this information 4250 Similar to the previous option, but display this information
4257 later, once stdio is running and output goes to the LCD, if 4251 later, once stdio is running and output goes to the LCD, if
4258 present. 4252 present.
4259 4253
4260 - CONFIG_BOARD_SIZE_LIMIT: 4254 - CONFIG_BOARD_SIZE_LIMIT:
4261 Maximum size of the U-Boot image. When defined, the 4255 Maximum size of the U-Boot image. When defined, the
4262 build system checks that the actual size does not 4256 build system checks that the actual size does not
4263 exceed it. 4257 exceed it.
4264 4258
4265 Low Level (hardware related) configuration options: 4259 Low Level (hardware related) configuration options:
4266 --------------------------------------------------- 4260 ---------------------------------------------------
4267 4261
4268 - CONFIG_SYS_CACHELINE_SIZE: 4262 - CONFIG_SYS_CACHELINE_SIZE:
4269 Cache Line Size of the CPU. 4263 Cache Line Size of the CPU.
4270 4264
4271 - CONFIG_SYS_DEFAULT_IMMR: 4265 - CONFIG_SYS_DEFAULT_IMMR:
4272 Default address of the IMMR after system reset. 4266 Default address of the IMMR after system reset.
4273 4267
4274 Needed on some 8260 systems (MPC8260ADS, PQ2FADS-ZU, 4268 Needed on some 8260 systems (MPC8260ADS, PQ2FADS-ZU,
4275 and RPXsuper) to be able to adjust the position of 4269 and RPXsuper) to be able to adjust the position of
4276 the IMMR register after a reset. 4270 the IMMR register after a reset.
4277 4271
4278 - CONFIG_SYS_CCSRBAR_DEFAULT: 4272 - CONFIG_SYS_CCSRBAR_DEFAULT:
4279 Default (power-on reset) physical address of CCSR on Freescale 4273 Default (power-on reset) physical address of CCSR on Freescale
4280 PowerPC SOCs. 4274 PowerPC SOCs.
4281 4275
4282 - CONFIG_SYS_CCSRBAR: 4276 - CONFIG_SYS_CCSRBAR:
4283 Virtual address of CCSR. On a 32-bit build, this is typically 4277 Virtual address of CCSR. On a 32-bit build, this is typically
4284 the same value as CONFIG_SYS_CCSRBAR_DEFAULT. 4278 the same value as CONFIG_SYS_CCSRBAR_DEFAULT.
4285 4279
4286 CONFIG_SYS_DEFAULT_IMMR must also be set to this value, 4280 CONFIG_SYS_DEFAULT_IMMR must also be set to this value,
4287 for cross-platform code that uses that macro instead. 4281 for cross-platform code that uses that macro instead.
4288 4282
4289 - CONFIG_SYS_CCSRBAR_PHYS: 4283 - CONFIG_SYS_CCSRBAR_PHYS:
4290 Physical address of CCSR. CCSR can be relocated to a new 4284 Physical address of CCSR. CCSR can be relocated to a new
4291 physical address, if desired. In this case, this macro should 4285 physical address, if desired. In this case, this macro should
4292 be set to that address. Otherwise, it should be set to the 4286 be set to that address. Otherwise, it should be set to the
4293 same value as CONFIG_SYS_CCSRBAR_DEFAULT. For example, CCSR 4287 same value as CONFIG_SYS_CCSRBAR_DEFAULT. For example, CCSR
4294 is typically relocated on 36-bit builds. It is recommended 4288 is typically relocated on 36-bit builds. It is recommended
4295 that this macro be defined via the _HIGH and _LOW macros: 4289 that this macro be defined via the _HIGH and _LOW macros:
4296 4290
4297 #define CONFIG_SYS_CCSRBAR_PHYS ((CONFIG_SYS_CCSRBAR_PHYS_HIGH 4291 #define CONFIG_SYS_CCSRBAR_PHYS ((CONFIG_SYS_CCSRBAR_PHYS_HIGH
4298 * 1ull) << 32 | CONFIG_SYS_CCSRBAR_PHYS_LOW) 4292 * 1ull) << 32 | CONFIG_SYS_CCSRBAR_PHYS_LOW)
4299 4293
4300 - CONFIG_SYS_CCSRBAR_PHYS_HIGH: 4294 - CONFIG_SYS_CCSRBAR_PHYS_HIGH:
4301 Bits 33-36 of CONFIG_SYS_CCSRBAR_PHYS. This value is typically 4295 Bits 33-36 of CONFIG_SYS_CCSRBAR_PHYS. This value is typically
4302 either 0 (32-bit build) or 0xF (36-bit build). This macro is 4296 either 0 (32-bit build) or 0xF (36-bit build). This macro is
4303 used in assembly code, so it must not contain typecasts or 4297 used in assembly code, so it must not contain typecasts or
4304 integer size suffixes (e.g. "ULL"). 4298 integer size suffixes (e.g. "ULL").
4305 4299
4306 - CONFIG_SYS_CCSRBAR_PHYS_LOW: 4300 - CONFIG_SYS_CCSRBAR_PHYS_LOW:
4307 Lower 32-bits of CONFIG_SYS_CCSRBAR_PHYS. This macro is 4301 Lower 32-bits of CONFIG_SYS_CCSRBAR_PHYS. This macro is
4308 used in assembly code, so it must not contain typecasts or 4302 used in assembly code, so it must not contain typecasts or
4309 integer size suffixes (e.g. "ULL"). 4303 integer size suffixes (e.g. "ULL").
4310 4304
4311 - CONFIG_SYS_CCSR_DO_NOT_RELOCATE: 4305 - CONFIG_SYS_CCSR_DO_NOT_RELOCATE:
4312 If this macro is defined, then CONFIG_SYS_CCSRBAR_PHYS will be 4306 If this macro is defined, then CONFIG_SYS_CCSRBAR_PHYS will be
4313 forced to a value that ensures that CCSR is not relocated. 4307 forced to a value that ensures that CCSR is not relocated.
4314 4308
4315 - Floppy Disk Support: 4309 - Floppy Disk Support:
4316 CONFIG_SYS_FDC_DRIVE_NUMBER 4310 CONFIG_SYS_FDC_DRIVE_NUMBER
4317 4311
4318 the default drive number (default value 0) 4312 the default drive number (default value 0)
4319 4313
4320 CONFIG_SYS_ISA_IO_STRIDE 4314 CONFIG_SYS_ISA_IO_STRIDE
4321 4315
4322 defines the spacing between FDC chipset registers 4316 defines the spacing between FDC chipset registers
4323 (default value 1) 4317 (default value 1)
4324 4318
4325 CONFIG_SYS_ISA_IO_OFFSET 4319 CONFIG_SYS_ISA_IO_OFFSET
4326 4320
4327 defines the offset of register from address. It 4321 defines the offset of register from address. It
4328 depends on which part of the data bus is connected to 4322 depends on which part of the data bus is connected to
4329 the FDC chipset. (default value 0) 4323 the FDC chipset. (default value 0)
4330 4324
4331 If CONFIG_SYS_ISA_IO_STRIDE CONFIG_SYS_ISA_IO_OFFSET and 4325 If CONFIG_SYS_ISA_IO_STRIDE CONFIG_SYS_ISA_IO_OFFSET and
4332 CONFIG_SYS_FDC_DRIVE_NUMBER are undefined, they take their 4326 CONFIG_SYS_FDC_DRIVE_NUMBER are undefined, they take their
4333 default value. 4327 default value.
4334 4328
4335 if CONFIG_SYS_FDC_HW_INIT is defined, then the function 4329 if CONFIG_SYS_FDC_HW_INIT is defined, then the function
4336 fdc_hw_init() is called at the beginning of the FDC 4330 fdc_hw_init() is called at the beginning of the FDC
4337 setup. fdc_hw_init() must be provided by the board 4331 setup. fdc_hw_init() must be provided by the board
4338 source code. It is used to make hardware-dependent 4332 source code. It is used to make hardware-dependent
4339 initializations. 4333 initializations.
4340 4334
4341 - CONFIG_IDE_AHB: 4335 - CONFIG_IDE_AHB:
4342 Most IDE controllers were designed to be connected with PCI 4336 Most IDE controllers were designed to be connected with PCI
4343 interface. Only few of them were designed for AHB interface. 4337 interface. Only few of them were designed for AHB interface.
4344 When software is doing ATA command and data transfer to 4338 When software is doing ATA command and data transfer to
4345 IDE devices through IDE-AHB controller, some additional 4339 IDE devices through IDE-AHB controller, some additional
4346 registers accessing to these kind of IDE-AHB controller 4340 registers accessing to these kind of IDE-AHB controller
4347 is required. 4341 is required.
4348 4342
4349 - CONFIG_SYS_IMMR: Physical address of the Internal Memory. 4343 - CONFIG_SYS_IMMR: Physical address of the Internal Memory.
4350 DO NOT CHANGE unless you know exactly what you're 4344 DO NOT CHANGE unless you know exactly what you're
4351 doing! (11-4) [MPC8xx/82xx systems only] 4345 doing! (11-4) [MPC8xx/82xx systems only]
4352 4346
4353 - CONFIG_SYS_INIT_RAM_ADDR: 4347 - CONFIG_SYS_INIT_RAM_ADDR:
4354 4348
4355 Start address of memory area that can be used for 4349 Start address of memory area that can be used for
4356 initial data and stack; please note that this must be 4350 initial data and stack; please note that this must be
4357 writable memory that is working WITHOUT special 4351 writable memory that is working WITHOUT special
4358 initialization, i. e. you CANNOT use normal RAM which 4352 initialization, i. e. you CANNOT use normal RAM which
4359 will become available only after programming the 4353 will become available only after programming the
4360 memory controller and running certain initialization 4354 memory controller and running certain initialization
4361 sequences. 4355 sequences.
4362 4356
4363 U-Boot uses the following memory types: 4357 U-Boot uses the following memory types:
4364 - MPC8xx and MPC8260: IMMR (internal memory of the CPU) 4358 - MPC8xx and MPC8260: IMMR (internal memory of the CPU)
4365 - MPC824X: data cache 4359 - MPC824X: data cache
4366 - PPC4xx: data cache 4360 - PPC4xx: data cache
4367 4361
4368 - CONFIG_SYS_GBL_DATA_OFFSET: 4362 - CONFIG_SYS_GBL_DATA_OFFSET:
4369 4363
4370 Offset of the initial data structure in the memory 4364 Offset of the initial data structure in the memory
4371 area defined by CONFIG_SYS_INIT_RAM_ADDR. Usually 4365 area defined by CONFIG_SYS_INIT_RAM_ADDR. Usually
4372 CONFIG_SYS_GBL_DATA_OFFSET is chosen such that the initial 4366 CONFIG_SYS_GBL_DATA_OFFSET is chosen such that the initial
4373 data is located at the end of the available space 4367 data is located at the end of the available space
4374 (sometimes written as (CONFIG_SYS_INIT_RAM_SIZE - 4368 (sometimes written as (CONFIG_SYS_INIT_RAM_SIZE -
4375 GENERATED_GBL_DATA_SIZE), and the initial stack is just 4369 GENERATED_GBL_DATA_SIZE), and the initial stack is just
4376 below that area (growing from (CONFIG_SYS_INIT_RAM_ADDR + 4370 below that area (growing from (CONFIG_SYS_INIT_RAM_ADDR +
4377 CONFIG_SYS_GBL_DATA_OFFSET) downward. 4371 CONFIG_SYS_GBL_DATA_OFFSET) downward.
4378 4372
4379 Note: 4373 Note:
4380 On the MPC824X (or other systems that use the data 4374 On the MPC824X (or other systems that use the data
4381 cache for initial memory) the address chosen for 4375 cache for initial memory) the address chosen for
4382 CONFIG_SYS_INIT_RAM_ADDR is basically arbitrary - it must 4376 CONFIG_SYS_INIT_RAM_ADDR is basically arbitrary - it must
4383 point to an otherwise UNUSED address space between 4377 point to an otherwise UNUSED address space between
4384 the top of RAM and the start of the PCI space. 4378 the top of RAM and the start of the PCI space.
4385 4379
4386 - CONFIG_SYS_SIUMCR: SIU Module Configuration (11-6) 4380 - CONFIG_SYS_SIUMCR: SIU Module Configuration (11-6)
4387 4381
4388 - CONFIG_SYS_SYPCR: System Protection Control (11-9) 4382 - CONFIG_SYS_SYPCR: System Protection Control (11-9)
4389 4383
4390 - CONFIG_SYS_TBSCR: Time Base Status and Control (11-26) 4384 - CONFIG_SYS_TBSCR: Time Base Status and Control (11-26)
4391 4385
4392 - CONFIG_SYS_PISCR: Periodic Interrupt Status and Control (11-31) 4386 - CONFIG_SYS_PISCR: Periodic Interrupt Status and Control (11-31)
4393 4387
4394 - CONFIG_SYS_PLPRCR: PLL, Low-Power, and Reset Control Register (15-30) 4388 - CONFIG_SYS_PLPRCR: PLL, Low-Power, and Reset Control Register (15-30)
4395 4389
4396 - CONFIG_SYS_SCCR: System Clock and reset Control Register (15-27) 4390 - CONFIG_SYS_SCCR: System Clock and reset Control Register (15-27)
4397 4391
4398 - CONFIG_SYS_OR_TIMING_SDRAM: 4392 - CONFIG_SYS_OR_TIMING_SDRAM:
4399 SDRAM timing 4393 SDRAM timing
4400 4394
4401 - CONFIG_SYS_MAMR_PTA: 4395 - CONFIG_SYS_MAMR_PTA:
4402 periodic timer for refresh 4396 periodic timer for refresh
4403 4397
4404 - CONFIG_SYS_DER: Debug Event Register (37-47) 4398 - CONFIG_SYS_DER: Debug Event Register (37-47)
4405 4399
4406 - FLASH_BASE0_PRELIM, FLASH_BASE1_PRELIM, CONFIG_SYS_REMAP_OR_AM, 4400 - FLASH_BASE0_PRELIM, FLASH_BASE1_PRELIM, CONFIG_SYS_REMAP_OR_AM,
4407 CONFIG_SYS_PRELIM_OR_AM, CONFIG_SYS_OR_TIMING_FLASH, CONFIG_SYS_OR0_REMAP, 4401 CONFIG_SYS_PRELIM_OR_AM, CONFIG_SYS_OR_TIMING_FLASH, CONFIG_SYS_OR0_REMAP,
4408 CONFIG_SYS_OR0_PRELIM, CONFIG_SYS_BR0_PRELIM, CONFIG_SYS_OR1_REMAP, CONFIG_SYS_OR1_PRELIM, 4402 CONFIG_SYS_OR0_PRELIM, CONFIG_SYS_BR0_PRELIM, CONFIG_SYS_OR1_REMAP, CONFIG_SYS_OR1_PRELIM,
4409 CONFIG_SYS_BR1_PRELIM: 4403 CONFIG_SYS_BR1_PRELIM:
4410 Memory Controller Definitions: BR0/1 and OR0/1 (FLASH) 4404 Memory Controller Definitions: BR0/1 and OR0/1 (FLASH)
4411 4405
4412 - SDRAM_BASE2_PRELIM, SDRAM_BASE3_PRELIM, SDRAM_MAX_SIZE, 4406 - SDRAM_BASE2_PRELIM, SDRAM_BASE3_PRELIM, SDRAM_MAX_SIZE,
4413 CONFIG_SYS_OR_TIMING_SDRAM, CONFIG_SYS_OR2_PRELIM, CONFIG_SYS_BR2_PRELIM, 4407 CONFIG_SYS_OR_TIMING_SDRAM, CONFIG_SYS_OR2_PRELIM, CONFIG_SYS_BR2_PRELIM,
4414 CONFIG_SYS_OR3_PRELIM, CONFIG_SYS_BR3_PRELIM: 4408 CONFIG_SYS_OR3_PRELIM, CONFIG_SYS_BR3_PRELIM:
4415 Memory Controller Definitions: BR2/3 and OR2/3 (SDRAM) 4409 Memory Controller Definitions: BR2/3 and OR2/3 (SDRAM)
4416 4410
4417 - CONFIG_SYS_MAMR_PTA, CONFIG_SYS_MPTPR_2BK_4K, CONFIG_SYS_MPTPR_1BK_4K, CONFIG_SYS_MPTPR_2BK_8K, 4411 - CONFIG_SYS_MAMR_PTA, CONFIG_SYS_MPTPR_2BK_4K, CONFIG_SYS_MPTPR_1BK_4K, CONFIG_SYS_MPTPR_2BK_8K,
4418 CONFIG_SYS_MPTPR_1BK_8K, CONFIG_SYS_MAMR_8COL, CONFIG_SYS_MAMR_9COL: 4412 CONFIG_SYS_MPTPR_1BK_8K, CONFIG_SYS_MAMR_8COL, CONFIG_SYS_MAMR_9COL:
4419 Machine Mode Register and Memory Periodic Timer 4413 Machine Mode Register and Memory Periodic Timer
4420 Prescaler definitions (SDRAM timing) 4414 Prescaler definitions (SDRAM timing)
4421 4415
4422 - CONFIG_SYS_I2C_UCODE_PATCH, CONFIG_SYS_I2C_DPMEM_OFFSET [0x1FC0]: 4416 - CONFIG_SYS_I2C_UCODE_PATCH, CONFIG_SYS_I2C_DPMEM_OFFSET [0x1FC0]:
4423 enable I2C microcode relocation patch (MPC8xx); 4417 enable I2C microcode relocation patch (MPC8xx);
4424 define relocation offset in DPRAM [DSP2] 4418 define relocation offset in DPRAM [DSP2]
4425 4419
4426 - CONFIG_SYS_SMC_UCODE_PATCH, CONFIG_SYS_SMC_DPMEM_OFFSET [0x1FC0]: 4420 - CONFIG_SYS_SMC_UCODE_PATCH, CONFIG_SYS_SMC_DPMEM_OFFSET [0x1FC0]:
4427 enable SMC microcode relocation patch (MPC8xx); 4421 enable SMC microcode relocation patch (MPC8xx);
4428 define relocation offset in DPRAM [SMC1] 4422 define relocation offset in DPRAM [SMC1]
4429 4423
4430 - CONFIG_SYS_SPI_UCODE_PATCH, CONFIG_SYS_SPI_DPMEM_OFFSET [0x1FC0]: 4424 - CONFIG_SYS_SPI_UCODE_PATCH, CONFIG_SYS_SPI_DPMEM_OFFSET [0x1FC0]:
4431 enable SPI microcode relocation patch (MPC8xx); 4425 enable SPI microcode relocation patch (MPC8xx);
4432 define relocation offset in DPRAM [SCC4] 4426 define relocation offset in DPRAM [SCC4]
4433 4427
4434 - CONFIG_SYS_CPM_POST_WORD_ADDR: (MPC8xx, MPC8260 only) 4428 - CONFIG_SYS_CPM_POST_WORD_ADDR: (MPC8xx, MPC8260 only)
4435 Offset of the bootmode word in DPRAM used by post 4429 Offset of the bootmode word in DPRAM used by post
4436 (Power On Self Tests). This definition overrides 4430 (Power On Self Tests). This definition overrides
4437 #define'd default value in commproc.h resp. 4431 #define'd default value in commproc.h resp.
4438 cpm_8260.h. 4432 cpm_8260.h.
4439 4433
4440 - CONFIG_SYS_PCI_SLV_MEM_LOCAL, CONFIG_SYS_PCI_SLV_MEM_BUS, CONFIG_SYS_PICMR0_MASK_ATTRIB, 4434 - CONFIG_SYS_PCI_SLV_MEM_LOCAL, CONFIG_SYS_PCI_SLV_MEM_BUS, CONFIG_SYS_PICMR0_MASK_ATTRIB,
4441 CONFIG_SYS_PCI_MSTR0_LOCAL, CONFIG_SYS_PCIMSK0_MASK, CONFIG_SYS_PCI_MSTR1_LOCAL, 4435 CONFIG_SYS_PCI_MSTR0_LOCAL, CONFIG_SYS_PCIMSK0_MASK, CONFIG_SYS_PCI_MSTR1_LOCAL,
4442 CONFIG_SYS_PCIMSK1_MASK, CONFIG_SYS_PCI_MSTR_MEM_LOCAL, CONFIG_SYS_PCI_MSTR_MEM_BUS, 4436 CONFIG_SYS_PCIMSK1_MASK, CONFIG_SYS_PCI_MSTR_MEM_LOCAL, CONFIG_SYS_PCI_MSTR_MEM_BUS,
4443 CONFIG_SYS_CPU_PCI_MEM_START, CONFIG_SYS_PCI_MSTR_MEM_SIZE, CONFIG_SYS_POCMR0_MASK_ATTRIB, 4437 CONFIG_SYS_CPU_PCI_MEM_START, CONFIG_SYS_PCI_MSTR_MEM_SIZE, CONFIG_SYS_POCMR0_MASK_ATTRIB,
4444 CONFIG_SYS_PCI_MSTR_MEMIO_LOCAL, CONFIG_SYS_PCI_MSTR_MEMIO_BUS, CPU_PCI_MEMIO_START, 4438 CONFIG_SYS_PCI_MSTR_MEMIO_LOCAL, CONFIG_SYS_PCI_MSTR_MEMIO_BUS, CPU_PCI_MEMIO_START,
4445 CONFIG_SYS_PCI_MSTR_MEMIO_SIZE, CONFIG_SYS_POCMR1_MASK_ATTRIB, CONFIG_SYS_PCI_MSTR_IO_LOCAL, 4439 CONFIG_SYS_PCI_MSTR_MEMIO_SIZE, CONFIG_SYS_POCMR1_MASK_ATTRIB, CONFIG_SYS_PCI_MSTR_IO_LOCAL,
4446 CONFIG_SYS_PCI_MSTR_IO_BUS, CONFIG_SYS_CPU_PCI_IO_START, CONFIG_SYS_PCI_MSTR_IO_SIZE, 4440 CONFIG_SYS_PCI_MSTR_IO_BUS, CONFIG_SYS_CPU_PCI_IO_START, CONFIG_SYS_PCI_MSTR_IO_SIZE,
4447 CONFIG_SYS_POCMR2_MASK_ATTRIB: (MPC826x only) 4441 CONFIG_SYS_POCMR2_MASK_ATTRIB: (MPC826x only)
4448 Overrides the default PCI memory map in arch/powerpc/cpu/mpc8260/pci.c if set. 4442 Overrides the default PCI memory map in arch/powerpc/cpu/mpc8260/pci.c if set.
4449 4443
4450 - CONFIG_PCI_DISABLE_PCIE: 4444 - CONFIG_PCI_DISABLE_PCIE:
4451 Disable PCI-Express on systems where it is supported but not 4445 Disable PCI-Express on systems where it is supported but not
4452 required. 4446 required.
4453 4447
4454 - CONFIG_PCI_ENUM_ONLY 4448 - CONFIG_PCI_ENUM_ONLY
4455 Only scan through and get the devices on the buses. 4449 Only scan through and get the devices on the buses.
4456 Don't do any setup work, presumably because someone or 4450 Don't do any setup work, presumably because someone or
4457 something has already done it, and we don't need to do it 4451 something has already done it, and we don't need to do it
4458 a second time. Useful for platforms that are pre-booted 4452 a second time. Useful for platforms that are pre-booted
4459 by coreboot or similar. 4453 by coreboot or similar.
4460 4454
4461 - CONFIG_PCI_INDIRECT_BRIDGE: 4455 - CONFIG_PCI_INDIRECT_BRIDGE:
4462 Enable support for indirect PCI bridges. 4456 Enable support for indirect PCI bridges.
4463 4457
4464 - CONFIG_SYS_SRIO: 4458 - CONFIG_SYS_SRIO:
4465 Chip has SRIO or not 4459 Chip has SRIO or not
4466 4460
4467 - CONFIG_SRIO1: 4461 - CONFIG_SRIO1:
4468 Board has SRIO 1 port available 4462 Board has SRIO 1 port available
4469 4463
4470 - CONFIG_SRIO2: 4464 - CONFIG_SRIO2:
4471 Board has SRIO 2 port available 4465 Board has SRIO 2 port available
4472 4466
4473 - CONFIG_SRIO_PCIE_BOOT_MASTER 4467 - CONFIG_SRIO_PCIE_BOOT_MASTER
4474 Board can support master function for Boot from SRIO and PCIE 4468 Board can support master function for Boot from SRIO and PCIE
4475 4469
4476 - CONFIG_SYS_SRIOn_MEM_VIRT: 4470 - CONFIG_SYS_SRIOn_MEM_VIRT:
4477 Virtual Address of SRIO port 'n' memory region 4471 Virtual Address of SRIO port 'n' memory region
4478 4472
4479 - CONFIG_SYS_SRIOn_MEM_PHYS: 4473 - CONFIG_SYS_SRIOn_MEM_PHYS:
4480 Physical Address of SRIO port 'n' memory region 4474 Physical Address of SRIO port 'n' memory region
4481 4475
4482 - CONFIG_SYS_SRIOn_MEM_SIZE: 4476 - CONFIG_SYS_SRIOn_MEM_SIZE:
4483 Size of SRIO port 'n' memory region 4477 Size of SRIO port 'n' memory region
4484 4478
4485 - CONFIG_SYS_NAND_BUSWIDTH_16BIT 4479 - CONFIG_SYS_NAND_BUSWIDTH_16BIT
4486 Defined to tell the NAND controller that the NAND chip is using 4480 Defined to tell the NAND controller that the NAND chip is using
4487 a 16 bit bus. 4481 a 16 bit bus.
4488 Not all NAND drivers use this symbol. 4482 Not all NAND drivers use this symbol.
4489 Example of drivers that use it: 4483 Example of drivers that use it:
4490 - drivers/mtd/nand/ndfc.c 4484 - drivers/mtd/nand/ndfc.c
4491 - drivers/mtd/nand/mxc_nand.c 4485 - drivers/mtd/nand/mxc_nand.c
4492 4486
4493 - CONFIG_SYS_NDFC_EBC0_CFG 4487 - CONFIG_SYS_NDFC_EBC0_CFG
4494 Sets the EBC0_CFG register for the NDFC. If not defined 4488 Sets the EBC0_CFG register for the NDFC. If not defined
4495 a default value will be used. 4489 a default value will be used.
4496 4490
4497 - CONFIG_SPD_EEPROM 4491 - CONFIG_SPD_EEPROM
4498 Get DDR timing information from an I2C EEPROM. Common 4492 Get DDR timing information from an I2C EEPROM. Common
4499 with pluggable memory modules such as SODIMMs 4493 with pluggable memory modules such as SODIMMs
4500 4494
4501 SPD_EEPROM_ADDRESS 4495 SPD_EEPROM_ADDRESS
4502 I2C address of the SPD EEPROM 4496 I2C address of the SPD EEPROM
4503 4497
4504 - CONFIG_SYS_SPD_BUS_NUM 4498 - CONFIG_SYS_SPD_BUS_NUM
4505 If SPD EEPROM is on an I2C bus other than the first 4499 If SPD EEPROM is on an I2C bus other than the first
4506 one, specify here. Note that the value must resolve 4500 one, specify here. Note that the value must resolve
4507 to something your driver can deal with. 4501 to something your driver can deal with.
4508 4502
4509 - CONFIG_SYS_DDR_RAW_TIMING 4503 - CONFIG_SYS_DDR_RAW_TIMING
4510 Get DDR timing information from other than SPD. Common with 4504 Get DDR timing information from other than SPD. Common with
4511 soldered DDR chips onboard without SPD. DDR raw timing 4505 soldered DDR chips onboard without SPD. DDR raw timing
4512 parameters are extracted from datasheet and hard-coded into 4506 parameters are extracted from datasheet and hard-coded into
4513 header files or board specific files. 4507 header files or board specific files.
4514 4508
4515 - CONFIG_FSL_DDR_INTERACTIVE 4509 - CONFIG_FSL_DDR_INTERACTIVE
4516 Enable interactive DDR debugging. See doc/README.fsl-ddr. 4510 Enable interactive DDR debugging. See doc/README.fsl-ddr.
4517 4511
4518 - CONFIG_FSL_DDR_SYNC_REFRESH 4512 - CONFIG_FSL_DDR_SYNC_REFRESH
4519 Enable sync of refresh for multiple controllers. 4513 Enable sync of refresh for multiple controllers.
4520 4514
4521 - CONFIG_FSL_DDR_BIST 4515 - CONFIG_FSL_DDR_BIST
4522 Enable built-in memory test for Freescale DDR controllers. 4516 Enable built-in memory test for Freescale DDR controllers.
4523 4517
4524 - CONFIG_SYS_83XX_DDR_USES_CS0 4518 - CONFIG_SYS_83XX_DDR_USES_CS0
4525 Only for 83xx systems. If specified, then DDR should 4519 Only for 83xx systems. If specified, then DDR should
4526 be configured using CS0 and CS1 instead of CS2 and CS3. 4520 be configured using CS0 and CS1 instead of CS2 and CS3.
4527 4521
4528 - CONFIG_ETHER_ON_FEC[12] 4522 - CONFIG_ETHER_ON_FEC[12]
4529 Define to enable FEC[12] on a 8xx series processor. 4523 Define to enable FEC[12] on a 8xx series processor.
4530 4524
4531 - CONFIG_FEC[12]_PHY 4525 - CONFIG_FEC[12]_PHY
4532 Define to the hardcoded PHY address which corresponds 4526 Define to the hardcoded PHY address which corresponds
4533 to the given FEC; i. e. 4527 to the given FEC; i. e.
4534 #define CONFIG_FEC1_PHY 4 4528 #define CONFIG_FEC1_PHY 4
4535 means that the PHY with address 4 is connected to FEC1 4529 means that the PHY with address 4 is connected to FEC1
4536 4530
4537 When set to -1, means to probe for first available. 4531 When set to -1, means to probe for first available.
4538 4532
4539 - CONFIG_FEC[12]_PHY_NORXERR 4533 - CONFIG_FEC[12]_PHY_NORXERR
4540 The PHY does not have a RXERR line (RMII only). 4534 The PHY does not have a RXERR line (RMII only).
4541 (so program the FEC to ignore it). 4535 (so program the FEC to ignore it).
4542 4536
4543 - CONFIG_RMII 4537 - CONFIG_RMII
4544 Enable RMII mode for all FECs. 4538 Enable RMII mode for all FECs.
4545 Note that this is a global option, we can't 4539 Note that this is a global option, we can't
4546 have one FEC in standard MII mode and another in RMII mode. 4540 have one FEC in standard MII mode and another in RMII mode.
4547 4541
4548 - CONFIG_CRC32_VERIFY 4542 - CONFIG_CRC32_VERIFY
4549 Add a verify option to the crc32 command. 4543 Add a verify option to the crc32 command.
4550 The syntax is: 4544 The syntax is:
4551 4545
4552 => crc32 -v <address> <count> <crc32> 4546 => crc32 -v <address> <count> <crc32>
4553 4547
4554 Where address/count indicate a memory area 4548 Where address/count indicate a memory area
4555 and crc32 is the correct crc32 which the 4549 and crc32 is the correct crc32 which the
4556 area should have. 4550 area should have.
4557 4551
4558 - CONFIG_LOOPW 4552 - CONFIG_LOOPW
4559 Add the "loopw" memory command. This only takes effect if 4553 Add the "loopw" memory command. This only takes effect if
4560 the memory commands are activated globally (CONFIG_CMD_MEM). 4554 the memory commands are activated globally (CONFIG_CMD_MEM).
4561 4555
4562 - CONFIG_MX_CYCLIC 4556 - CONFIG_MX_CYCLIC
4563 Add the "mdc" and "mwc" memory commands. These are cyclic 4557 Add the "mdc" and "mwc" memory commands. These are cyclic
4564 "md/mw" commands. 4558 "md/mw" commands.
4565 Examples: 4559 Examples:
4566 4560
4567 => mdc.b 10 4 500 4561 => mdc.b 10 4 500
4568 This command will print 4 bytes (10,11,12,13) each 500 ms. 4562 This command will print 4 bytes (10,11,12,13) each 500 ms.
4569 4563
4570 => mwc.l 100 12345678 10 4564 => mwc.l 100 12345678 10
4571 This command will write 12345678 to address 100 all 10 ms. 4565 This command will write 12345678 to address 100 all 10 ms.
4572 4566
4573 This only takes effect if the memory commands are activated 4567 This only takes effect if the memory commands are activated
4574 globally (CONFIG_CMD_MEM). 4568 globally (CONFIG_CMD_MEM).
4575 4569
4576 - CONFIG_SKIP_LOWLEVEL_INIT 4570 - CONFIG_SKIP_LOWLEVEL_INIT
4577 [ARM, NDS32, MIPS only] If this variable is defined, then certain 4571 [ARM, NDS32, MIPS only] If this variable is defined, then certain
4578 low level initializations (like setting up the memory 4572 low level initializations (like setting up the memory
4579 controller) are omitted and/or U-Boot does not 4573 controller) are omitted and/or U-Boot does not
4580 relocate itself into RAM. 4574 relocate itself into RAM.
4581 4575
4582 Normally this variable MUST NOT be defined. The only 4576 Normally this variable MUST NOT be defined. The only
4583 exception is when U-Boot is loaded (to RAM) by some 4577 exception is when U-Boot is loaded (to RAM) by some
4584 other boot loader or by a debugger which performs 4578 other boot loader or by a debugger which performs
4585 these initializations itself. 4579 these initializations itself.
4586 4580
4587 - CONFIG_SKIP_LOWLEVEL_INIT_ONLY 4581 - CONFIG_SKIP_LOWLEVEL_INIT_ONLY
4588 [ARM926EJ-S only] This allows just the call to lowlevel_init() 4582 [ARM926EJ-S only] This allows just the call to lowlevel_init()
4589 to be skipped. The normal CP15 init (such as enabling the 4583 to be skipped. The normal CP15 init (such as enabling the
4590 instruction cache) is still performed. 4584 instruction cache) is still performed.
4591 4585
4592 - CONFIG_SPL_BUILD 4586 - CONFIG_SPL_BUILD
4593 Modifies the behaviour of start.S when compiling a loader 4587 Modifies the behaviour of start.S when compiling a loader
4594 that is executed before the actual U-Boot. E.g. when 4588 that is executed before the actual U-Boot. E.g. when
4595 compiling a NAND SPL. 4589 compiling a NAND SPL.
4596 4590
4597 - CONFIG_TPL_BUILD 4591 - CONFIG_TPL_BUILD
4598 Modifies the behaviour of start.S when compiling a loader 4592 Modifies the behaviour of start.S when compiling a loader
4599 that is executed after the SPL and before the actual U-Boot. 4593 that is executed after the SPL and before the actual U-Boot.
4600 It is loaded by the SPL. 4594 It is loaded by the SPL.
4601 4595
4602 - CONFIG_SYS_MPC85XX_NO_RESETVEC 4596 - CONFIG_SYS_MPC85XX_NO_RESETVEC
4603 Only for 85xx systems. If this variable is specified, the section 4597 Only for 85xx systems. If this variable is specified, the section
4604 .resetvec is not kept and the section .bootpg is placed in the 4598 .resetvec is not kept and the section .bootpg is placed in the
4605 previous 4k of the .text section. 4599 previous 4k of the .text section.
4606 4600
4607 - CONFIG_ARCH_MAP_SYSMEM 4601 - CONFIG_ARCH_MAP_SYSMEM
4608 Generally U-Boot (and in particular the md command) uses 4602 Generally U-Boot (and in particular the md command) uses
4609 effective address. It is therefore not necessary to regard 4603 effective address. It is therefore not necessary to regard
4610 U-Boot address as virtual addresses that need to be translated 4604 U-Boot address as virtual addresses that need to be translated
4611 to physical addresses. However, sandbox requires this, since 4605 to physical addresses. However, sandbox requires this, since
4612 it maintains its own little RAM buffer which contains all 4606 it maintains its own little RAM buffer which contains all
4613 addressable memory. This option causes some memory accesses 4607 addressable memory. This option causes some memory accesses
4614 to be mapped through map_sysmem() / unmap_sysmem(). 4608 to be mapped through map_sysmem() / unmap_sysmem().
4615 4609
4616 - CONFIG_USE_ARCH_MEMCPY 4610 - CONFIG_USE_ARCH_MEMCPY
4617 CONFIG_USE_ARCH_MEMSET 4611 CONFIG_USE_ARCH_MEMSET
4618 If these options are used a optimized version of memcpy/memset will 4612 If these options are used a optimized version of memcpy/memset will
4619 be used if available. These functions may be faster under some 4613 be used if available. These functions may be faster under some
4620 conditions but may increase the binary size. 4614 conditions but may increase the binary size.
4621 4615
4622 - CONFIG_X86_RESET_VECTOR 4616 - CONFIG_X86_RESET_VECTOR
4623 If defined, the x86 reset vector code is included. This is not 4617 If defined, the x86 reset vector code is included. This is not
4624 needed when U-Boot is running from Coreboot. 4618 needed when U-Boot is running from Coreboot.
4625 4619
4626 - CONFIG_SYS_MPUCLK 4620 - CONFIG_SYS_MPUCLK
4627 Defines the MPU clock speed (in MHz). 4621 Defines the MPU clock speed (in MHz).
4628 4622
4629 NOTE : currently only supported on AM335x platforms. 4623 NOTE : currently only supported on AM335x platforms.
4630 4624
4631 - CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC: 4625 - CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC:
4632 Enables the RTC32K OSC on AM33xx based plattforms 4626 Enables the RTC32K OSC on AM33xx based plattforms
4633 4627
4634 - CONFIG_SYS_NAND_NO_SUBPAGE_WRITE 4628 - CONFIG_SYS_NAND_NO_SUBPAGE_WRITE
4635 Option to disable subpage write in NAND driver 4629 Option to disable subpage write in NAND driver
4636 driver that uses this: 4630 driver that uses this:
4637 drivers/mtd/nand/davinci_nand.c 4631 drivers/mtd/nand/davinci_nand.c
4638 4632
4639 Freescale QE/FMAN Firmware Support: 4633 Freescale QE/FMAN Firmware Support:
4640 ----------------------------------- 4634 -----------------------------------
4641 4635
4642 The Freescale QUICCEngine (QE) and Frame Manager (FMAN) both support the 4636 The Freescale QUICCEngine (QE) and Frame Manager (FMAN) both support the
4643 loading of "firmware", which is encoded in the QE firmware binary format. 4637 loading of "firmware", which is encoded in the QE firmware binary format.
4644 This firmware often needs to be loaded during U-Boot booting, so macros 4638 This firmware often needs to be loaded during U-Boot booting, so macros
4645 are used to identify the storage device (NOR flash, SPI, etc) and the address 4639 are used to identify the storage device (NOR flash, SPI, etc) and the address
4646 within that device. 4640 within that device.
4647 4641
4648 - CONFIG_SYS_FMAN_FW_ADDR 4642 - CONFIG_SYS_FMAN_FW_ADDR
4649 The address in the storage device where the FMAN microcode is located. The 4643 The address in the storage device where the FMAN microcode is located. The
4650 meaning of this address depends on which CONFIG_SYS_QE_FW_IN_xxx macro 4644 meaning of this address depends on which CONFIG_SYS_QE_FW_IN_xxx macro
4651 is also specified. 4645 is also specified.
4652 4646
4653 - CONFIG_SYS_QE_FW_ADDR 4647 - CONFIG_SYS_QE_FW_ADDR
4654 The address in the storage device where the QE microcode is located. The 4648 The address in the storage device where the QE microcode is located. The
4655 meaning of this address depends on which CONFIG_SYS_QE_FW_IN_xxx macro 4649 meaning of this address depends on which CONFIG_SYS_QE_FW_IN_xxx macro
4656 is also specified. 4650 is also specified.
4657 4651
4658 - CONFIG_SYS_QE_FMAN_FW_LENGTH 4652 - CONFIG_SYS_QE_FMAN_FW_LENGTH
4659 The maximum possible size of the firmware. The firmware binary format 4653 The maximum possible size of the firmware. The firmware binary format
4660 has a field that specifies the actual size of the firmware, but it 4654 has a field that specifies the actual size of the firmware, but it
4661 might not be possible to read any part of the firmware unless some 4655 might not be possible to read any part of the firmware unless some
4662 local storage is allocated to hold the entire firmware first. 4656 local storage is allocated to hold the entire firmware first.
4663 4657
4664 - CONFIG_SYS_QE_FMAN_FW_IN_NOR 4658 - CONFIG_SYS_QE_FMAN_FW_IN_NOR
4665 Specifies that QE/FMAN firmware is located in NOR flash, mapped as 4659 Specifies that QE/FMAN firmware is located in NOR flash, mapped as
4666 normal addressable memory via the LBC. CONFIG_SYS_FMAN_FW_ADDR is the 4660 normal addressable memory via the LBC. CONFIG_SYS_FMAN_FW_ADDR is the
4667 virtual address in NOR flash. 4661 virtual address in NOR flash.
4668 4662
4669 - CONFIG_SYS_QE_FMAN_FW_IN_NAND 4663 - CONFIG_SYS_QE_FMAN_FW_IN_NAND
4670 Specifies that QE/FMAN firmware is located in NAND flash. 4664 Specifies that QE/FMAN firmware is located in NAND flash.
4671 CONFIG_SYS_FMAN_FW_ADDR is the offset within NAND flash. 4665 CONFIG_SYS_FMAN_FW_ADDR is the offset within NAND flash.
4672 4666
4673 - CONFIG_SYS_QE_FMAN_FW_IN_MMC 4667 - CONFIG_SYS_QE_FMAN_FW_IN_MMC
4674 Specifies that QE/FMAN firmware is located on the primary SD/MMC 4668 Specifies that QE/FMAN firmware is located on the primary SD/MMC
4675 device. CONFIG_SYS_FMAN_FW_ADDR is the byte offset on that device. 4669 device. CONFIG_SYS_FMAN_FW_ADDR is the byte offset on that device.
4676 4670
4677 - CONFIG_SYS_QE_FMAN_FW_IN_REMOTE 4671 - CONFIG_SYS_QE_FMAN_FW_IN_REMOTE
4678 Specifies that QE/FMAN firmware is located in the remote (master) 4672 Specifies that QE/FMAN firmware is located in the remote (master)
4679 memory space. CONFIG_SYS_FMAN_FW_ADDR is a virtual address which 4673 memory space. CONFIG_SYS_FMAN_FW_ADDR is a virtual address which
4680 can be mapped from slave TLB->slave LAW->slave SRIO or PCIE outbound 4674 can be mapped from slave TLB->slave LAW->slave SRIO or PCIE outbound
4681 window->master inbound window->master LAW->the ucode address in 4675 window->master inbound window->master LAW->the ucode address in
4682 master's memory space. 4676 master's memory space.
4683 4677
4684 Freescale Layerscape Management Complex Firmware Support: 4678 Freescale Layerscape Management Complex Firmware Support:
4685 --------------------------------------------------------- 4679 ---------------------------------------------------------
4686 The Freescale Layerscape Management Complex (MC) supports the loading of 4680 The Freescale Layerscape Management Complex (MC) supports the loading of
4687 "firmware". 4681 "firmware".
4688 This firmware often needs to be loaded during U-Boot booting, so macros 4682 This firmware often needs to be loaded during U-Boot booting, so macros
4689 are used to identify the storage device (NOR flash, SPI, etc) and the address 4683 are used to identify the storage device (NOR flash, SPI, etc) and the address
4690 within that device. 4684 within that device.
4691 4685
4692 - CONFIG_FSL_MC_ENET 4686 - CONFIG_FSL_MC_ENET
4693 Enable the MC driver for Layerscape SoCs. 4687 Enable the MC driver for Layerscape SoCs.
4694 4688
4695 Freescale Layerscape Debug Server Support: 4689 Freescale Layerscape Debug Server Support:
4696 ------------------------------------------- 4690 -------------------------------------------
4697 The Freescale Layerscape Debug Server Support supports the loading of 4691 The Freescale Layerscape Debug Server Support supports the loading of
4698 "Debug Server firmware" and triggering SP boot-rom. 4692 "Debug Server firmware" and triggering SP boot-rom.
4699 This firmware often needs to be loaded during U-Boot booting. 4693 This firmware often needs to be loaded during U-Boot booting.
4700 4694
4701 - CONFIG_SYS_MC_RSV_MEM_ALIGN 4695 - CONFIG_SYS_MC_RSV_MEM_ALIGN
4702 Define alignment of reserved memory MC requires 4696 Define alignment of reserved memory MC requires
4703 4697
4704 Reproducible builds 4698 Reproducible builds
4705 ------------------- 4699 -------------------
4706 4700
4707 In order to achieve reproducible builds, timestamps used in the U-Boot build 4701 In order to achieve reproducible builds, timestamps used in the U-Boot build
4708 process have to be set to a fixed value. 4702 process have to be set to a fixed value.
4709 4703
4710 This is done using the SOURCE_DATE_EPOCH environment variable. 4704 This is done using the SOURCE_DATE_EPOCH environment variable.
4711 SOURCE_DATE_EPOCH is to be set on the build host's shell, not as a configuration 4705 SOURCE_DATE_EPOCH is to be set on the build host's shell, not as a configuration
4712 option for U-Boot or an environment variable in U-Boot. 4706 option for U-Boot or an environment variable in U-Boot.
4713 4707
4714 SOURCE_DATE_EPOCH should be set to a number of seconds since the epoch, in UTC. 4708 SOURCE_DATE_EPOCH should be set to a number of seconds since the epoch, in UTC.
4715 4709
4716 Building the Software: 4710 Building the Software:
4717 ====================== 4711 ======================
4718 4712
4719 Building U-Boot has been tested in several native build environments 4713 Building U-Boot has been tested in several native build environments
4720 and in many different cross environments. Of course we cannot support 4714 and in many different cross environments. Of course we cannot support
4721 all possibly existing versions of cross development tools in all 4715 all possibly existing versions of cross development tools in all
4722 (potentially obsolete) versions. In case of tool chain problems we 4716 (potentially obsolete) versions. In case of tool chain problems we
4723 recommend to use the ELDK (see http://www.denx.de/wiki/DULG/ELDK) 4717 recommend to use the ELDK (see http://www.denx.de/wiki/DULG/ELDK)
4724 which is extensively used to build and test U-Boot. 4718 which is extensively used to build and test U-Boot.
4725 4719
4726 If you are not using a native environment, it is assumed that you 4720 If you are not using a native environment, it is assumed that you
4727 have GNU cross compiling tools available in your path. In this case, 4721 have GNU cross compiling tools available in your path. In this case,
4728 you must set the environment variable CROSS_COMPILE in your shell. 4722 you must set the environment variable CROSS_COMPILE in your shell.
4729 Note that no changes to the Makefile or any other source files are 4723 Note that no changes to the Makefile or any other source files are
4730 necessary. For example using the ELDK on a 4xx CPU, please enter: 4724 necessary. For example using the ELDK on a 4xx CPU, please enter:
4731 4725
4732 $ CROSS_COMPILE=ppc_4xx- 4726 $ CROSS_COMPILE=ppc_4xx-
4733 $ export CROSS_COMPILE 4727 $ export CROSS_COMPILE
4734 4728
4735 Note: If you wish to generate Windows versions of the utilities in 4729 Note: If you wish to generate Windows versions of the utilities in
4736 the tools directory you can use the MinGW toolchain 4730 the tools directory you can use the MinGW toolchain
4737 (http://www.mingw.org). Set your HOST tools to the MinGW 4731 (http://www.mingw.org). Set your HOST tools to the MinGW
4738 toolchain and execute 'make tools'. For example: 4732 toolchain and execute 'make tools'. For example:
4739 4733
4740 $ make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools 4734 $ make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
4741 4735
4742 Binaries such as tools/mkimage.exe will be created which can 4736 Binaries such as tools/mkimage.exe will be created which can
4743 be executed on computers running Windows. 4737 be executed on computers running Windows.
4744 4738
4745 U-Boot is intended to be simple to build. After installing the 4739 U-Boot is intended to be simple to build. After installing the
4746 sources you must configure U-Boot for one specific board type. This 4740 sources you must configure U-Boot for one specific board type. This
4747 is done by typing: 4741 is done by typing:
4748 4742
4749 make NAME_defconfig 4743 make NAME_defconfig
4750 4744
4751 where "NAME_defconfig" is the name of one of the existing configu- 4745 where "NAME_defconfig" is the name of one of the existing configu-
4752 rations; see boards.cfg for supported names. 4746 rations; see boards.cfg for supported names.
4753 4747
4754 Note: for some board special configuration names may exist; check if 4748 Note: for some board special configuration names may exist; check if
4755 additional information is available from the board vendor; for 4749 additional information is available from the board vendor; for
4756 instance, the TQM823L systems are available without (standard) 4750 instance, the TQM823L systems are available without (standard)
4757 or with LCD support. You can select such additional "features" 4751 or with LCD support. You can select such additional "features"
4758 when choosing the configuration, i. e. 4752 when choosing the configuration, i. e.
4759 4753
4760 make TQM823L_defconfig 4754 make TQM823L_defconfig
4761 - will configure for a plain TQM823L, i. e. no LCD support 4755 - will configure for a plain TQM823L, i. e. no LCD support
4762 4756
4763 make TQM823L_LCD_defconfig 4757 make TQM823L_LCD_defconfig
4764 - will configure for a TQM823L with U-Boot console on LCD 4758 - will configure for a TQM823L with U-Boot console on LCD
4765 4759
4766 etc. 4760 etc.
4767 4761
4768 4762
4769 Finally, type "make all", and you should get some working U-Boot 4763 Finally, type "make all", and you should get some working U-Boot
4770 images ready for download to / installation on your system: 4764 images ready for download to / installation on your system:
4771 4765
4772 - "u-boot.bin" is a raw binary image 4766 - "u-boot.bin" is a raw binary image
4773 - "u-boot" is an image in ELF binary format 4767 - "u-boot" is an image in ELF binary format
4774 - "u-boot.srec" is in Motorola S-Record format 4768 - "u-boot.srec" is in Motorola S-Record format
4775 4769
4776 By default the build is performed locally and the objects are saved 4770 By default the build is performed locally and the objects are saved
4777 in the source directory. One of the two methods can be used to change 4771 in the source directory. One of the two methods can be used to change
4778 this behavior and build U-Boot to some external directory: 4772 this behavior and build U-Boot to some external directory:
4779 4773
4780 1. Add O= to the make command line invocations: 4774 1. Add O= to the make command line invocations:
4781 4775
4782 make O=/tmp/build distclean 4776 make O=/tmp/build distclean
4783 make O=/tmp/build NAME_defconfig 4777 make O=/tmp/build NAME_defconfig
4784 make O=/tmp/build all 4778 make O=/tmp/build all
4785 4779
4786 2. Set environment variable KBUILD_OUTPUT to point to the desired location: 4780 2. Set environment variable KBUILD_OUTPUT to point to the desired location:
4787 4781
4788 export KBUILD_OUTPUT=/tmp/build 4782 export KBUILD_OUTPUT=/tmp/build
4789 make distclean 4783 make distclean
4790 make NAME_defconfig 4784 make NAME_defconfig
4791 make all 4785 make all
4792 4786
4793 Note that the command line "O=" setting overrides the KBUILD_OUTPUT environment 4787 Note that the command line "O=" setting overrides the KBUILD_OUTPUT environment
4794 variable. 4788 variable.
4795 4789
4796 4790
4797 Please be aware that the Makefiles assume you are using GNU make, so 4791 Please be aware that the Makefiles assume you are using GNU make, so
4798 for instance on NetBSD you might need to use "gmake" instead of 4792 for instance on NetBSD you might need to use "gmake" instead of
4799 native "make". 4793 native "make".
4800 4794
4801 4795
4802 If the system board that you have is not listed, then you will need 4796 If the system board that you have is not listed, then you will need
4803 to port U-Boot to your hardware platform. To do this, follow these 4797 to port U-Boot to your hardware platform. To do this, follow these
4804 steps: 4798 steps:
4805 4799
4806 1. Create a new directory to hold your board specific code. Add any 4800 1. Create a new directory to hold your board specific code. Add any
4807 files you need. In your board directory, you will need at least 4801 files you need. In your board directory, you will need at least
4808 the "Makefile" and a "<board>.c". 4802 the "Makefile" and a "<board>.c".
4809 2. Create a new configuration file "include/configs/<board>.h" for 4803 2. Create a new configuration file "include/configs/<board>.h" for
4810 your board. 4804 your board.
4811 3. If you're porting U-Boot to a new CPU, then also create a new 4805 3. If you're porting U-Boot to a new CPU, then also create a new
4812 directory to hold your CPU specific code. Add any files you need. 4806 directory to hold your CPU specific code. Add any files you need.
4813 4. Run "make <board>_defconfig" with your new name. 4807 4. Run "make <board>_defconfig" with your new name.
4814 5. Type "make", and you should get a working "u-boot.srec" file 4808 5. Type "make", and you should get a working "u-boot.srec" file
4815 to be installed on your target system. 4809 to be installed on your target system.
4816 6. Debug and solve any problems that might arise. 4810 6. Debug and solve any problems that might arise.
4817 [Of course, this last step is much harder than it sounds.] 4811 [Of course, this last step is much harder than it sounds.]
4818 4812
4819 4813
4820 Testing of U-Boot Modifications, Ports to New Hardware, etc.: 4814 Testing of U-Boot Modifications, Ports to New Hardware, etc.:
4821 ============================================================== 4815 ==============================================================
4822 4816
4823 If you have modified U-Boot sources (for instance added a new board 4817 If you have modified U-Boot sources (for instance added a new board
4824 or support for new devices, a new CPU, etc.) you are expected to 4818 or support for new devices, a new CPU, etc.) you are expected to
4825 provide feedback to the other developers. The feedback normally takes 4819 provide feedback to the other developers. The feedback normally takes
4826 the form of a "patch", i. e. a context diff against a certain (latest 4820 the form of a "patch", i. e. a context diff against a certain (latest
4827 official or latest in the git repository) version of U-Boot sources. 4821 official or latest in the git repository) version of U-Boot sources.
4828 4822
4829 But before you submit such a patch, please verify that your modifi- 4823 But before you submit such a patch, please verify that your modifi-
4830 cation did not break existing code. At least make sure that *ALL* of 4824 cation did not break existing code. At least make sure that *ALL* of
4831 the supported boards compile WITHOUT ANY compiler warnings. To do so, 4825 the supported boards compile WITHOUT ANY compiler warnings. To do so,
4832 just run the buildman script (tools/buildman/buildman), which will 4826 just run the buildman script (tools/buildman/buildman), which will
4833 configure and build U-Boot for ALL supported system. Be warned, this 4827 configure and build U-Boot for ALL supported system. Be warned, this
4834 will take a while. Please see the buildman README, or run 'buildman -H' 4828 will take a while. Please see the buildman README, or run 'buildman -H'
4835 for documentation. 4829 for documentation.
4836 4830
4837 4831
4838 See also "U-Boot Porting Guide" below. 4832 See also "U-Boot Porting Guide" below.
4839 4833
4840 4834
4841 Monitor Commands - Overview: 4835 Monitor Commands - Overview:
4842 ============================ 4836 ============================
4843 4837
4844 go - start application at address 'addr' 4838 go - start application at address 'addr'
4845 run - run commands in an environment variable 4839 run - run commands in an environment variable
4846 bootm - boot application image from memory 4840 bootm - boot application image from memory
4847 bootp - boot image via network using BootP/TFTP protocol 4841 bootp - boot image via network using BootP/TFTP protocol
4848 bootz - boot zImage from memory 4842 bootz - boot zImage from memory
4849 tftpboot- boot image via network using TFTP protocol 4843 tftpboot- boot image via network using TFTP protocol
4850 and env variables "ipaddr" and "serverip" 4844 and env variables "ipaddr" and "serverip"
4851 (and eventually "gatewayip") 4845 (and eventually "gatewayip")
4852 tftpput - upload a file via network using TFTP protocol 4846 tftpput - upload a file via network using TFTP protocol
4853 rarpboot- boot image via network using RARP/TFTP protocol 4847 rarpboot- boot image via network using RARP/TFTP protocol
4854 diskboot- boot from IDE devicebootd - boot default, i.e., run 'bootcmd' 4848 diskboot- boot from IDE devicebootd - boot default, i.e., run 'bootcmd'
4855 loads - load S-Record file over serial line 4849 loads - load S-Record file over serial line
4856 loadb - load binary file over serial line (kermit mode) 4850 loadb - load binary file over serial line (kermit mode)
4857 md - memory display 4851 md - memory display
4858 mm - memory modify (auto-incrementing) 4852 mm - memory modify (auto-incrementing)
4859 nm - memory modify (constant address) 4853 nm - memory modify (constant address)
4860 mw - memory write (fill) 4854 mw - memory write (fill)
4861 cp - memory copy 4855 cp - memory copy
4862 cmp - memory compare 4856 cmp - memory compare
4863 crc32 - checksum calculation 4857 crc32 - checksum calculation
4864 i2c - I2C sub-system 4858 i2c - I2C sub-system
4865 sspi - SPI utility commands 4859 sspi - SPI utility commands
4866 base - print or set address offset 4860 base - print or set address offset
4867 printenv- print environment variables 4861 printenv- print environment variables
4868 setenv - set environment variables 4862 setenv - set environment variables
4869 saveenv - save environment variables to persistent storage 4863 saveenv - save environment variables to persistent storage
4870 protect - enable or disable FLASH write protection 4864 protect - enable or disable FLASH write protection
4871 erase - erase FLASH memory 4865 erase - erase FLASH memory
4872 flinfo - print FLASH memory information 4866 flinfo - print FLASH memory information
4873 nand - NAND memory operations (see doc/README.nand) 4867 nand - NAND memory operations (see doc/README.nand)
4874 bdinfo - print Board Info structure 4868 bdinfo - print Board Info structure
4875 iminfo - print header information for application image 4869 iminfo - print header information for application image
4876 coninfo - print console devices and informations 4870 coninfo - print console devices and informations
4877 ide - IDE sub-system 4871 ide - IDE sub-system
4878 loop - infinite loop on address range 4872 loop - infinite loop on address range
4879 loopw - infinite write loop on address range 4873 loopw - infinite write loop on address range
4880 mtest - simple RAM test 4874 mtest - simple RAM test
4881 icache - enable or disable instruction cache 4875 icache - enable or disable instruction cache
4882 dcache - enable or disable data cache 4876 dcache - enable or disable data cache
4883 reset - Perform RESET of the CPU 4877 reset - Perform RESET of the CPU
4884 echo - echo args to console 4878 echo - echo args to console
4885 version - print monitor version 4879 version - print monitor version
4886 help - print online help 4880 help - print online help
4887 ? - alias for 'help' 4881 ? - alias for 'help'
4888 4882
4889 4883
4890 Monitor Commands - Detailed Description: 4884 Monitor Commands - Detailed Description:
4891 ======================================== 4885 ========================================
4892 4886
4893 TODO. 4887 TODO.
4894 4888
4895 For now: just type "help <command>". 4889 For now: just type "help <command>".
4896 4890
4897 4891
4898 Environment Variables: 4892 Environment Variables:
4899 ====================== 4893 ======================
4900 4894
4901 U-Boot supports user configuration using Environment Variables which 4895 U-Boot supports user configuration using Environment Variables which
4902 can be made persistent by saving to Flash memory. 4896 can be made persistent by saving to Flash memory.
4903 4897
4904 Environment Variables are set using "setenv", printed using 4898 Environment Variables are set using "setenv", printed using
4905 "printenv", and saved to Flash using "saveenv". Using "setenv" 4899 "printenv", and saved to Flash using "saveenv". Using "setenv"
4906 without a value can be used to delete a variable from the 4900 without a value can be used to delete a variable from the
4907 environment. As long as you don't save the environment you are 4901 environment. As long as you don't save the environment you are
4908 working with an in-memory copy. In case the Flash area containing the 4902 working with an in-memory copy. In case the Flash area containing the
4909 environment is erased by accident, a default environment is provided. 4903 environment is erased by accident, a default environment is provided.
4910 4904
4911 Some configuration options can be set using Environment Variables. 4905 Some configuration options can be set using Environment Variables.
4912 4906
4913 List of environment variables (most likely not complete): 4907 List of environment variables (most likely not complete):
4914 4908
4915 baudrate - see CONFIG_BAUDRATE 4909 baudrate - see CONFIG_BAUDRATE
4916 4910
4917 bootdelay - see CONFIG_BOOTDELAY 4911 bootdelay - see CONFIG_BOOTDELAY
4918 4912
4919 bootcmd - see CONFIG_BOOTCOMMAND 4913 bootcmd - see CONFIG_BOOTCOMMAND
4920 4914
4921 bootargs - Boot arguments when booting an RTOS image 4915 bootargs - Boot arguments when booting an RTOS image
4922 4916
4923 bootfile - Name of the image to load with TFTP 4917 bootfile - Name of the image to load with TFTP
4924 4918
4925 bootm_low - Memory range available for image processing in the bootm 4919 bootm_low - Memory range available for image processing in the bootm
4926 command can be restricted. This variable is given as 4920 command can be restricted. This variable is given as
4927 a hexadecimal number and defines lowest address allowed 4921 a hexadecimal number and defines lowest address allowed
4928 for use by the bootm command. See also "bootm_size" 4922 for use by the bootm command. See also "bootm_size"
4929 environment variable. Address defined by "bootm_low" is 4923 environment variable. Address defined by "bootm_low" is
4930 also the base of the initial memory mapping for the Linux 4924 also the base of the initial memory mapping for the Linux
4931 kernel -- see the description of CONFIG_SYS_BOOTMAPSZ and 4925 kernel -- see the description of CONFIG_SYS_BOOTMAPSZ and
4932 bootm_mapsize. 4926 bootm_mapsize.
4933 4927
4934 bootm_mapsize - Size of the initial memory mapping for the Linux kernel. 4928 bootm_mapsize - Size of the initial memory mapping for the Linux kernel.
4935 This variable is given as a hexadecimal number and it 4929 This variable is given as a hexadecimal number and it
4936 defines the size of the memory region starting at base 4930 defines the size of the memory region starting at base
4937 address bootm_low that is accessible by the Linux kernel 4931 address bootm_low that is accessible by the Linux kernel
4938 during early boot. If unset, CONFIG_SYS_BOOTMAPSZ is used 4932 during early boot. If unset, CONFIG_SYS_BOOTMAPSZ is used
4939 as the default value if it is defined, and bootm_size is 4933 as the default value if it is defined, and bootm_size is
4940 used otherwise. 4934 used otherwise.
4941 4935
4942 bootm_size - Memory range available for image processing in the bootm 4936 bootm_size - Memory range available for image processing in the bootm
4943 command can be restricted. This variable is given as 4937 command can be restricted. This variable is given as
4944 a hexadecimal number and defines the size of the region 4938 a hexadecimal number and defines the size of the region
4945 allowed for use by the bootm command. See also "bootm_low" 4939 allowed for use by the bootm command. See also "bootm_low"
4946 environment variable. 4940 environment variable.
4947 4941
4948 updatefile - Location of the software update file on a TFTP server, used 4942 updatefile - Location of the software update file on a TFTP server, used
4949 by the automatic software update feature. Please refer to 4943 by the automatic software update feature. Please refer to
4950 documentation in doc/README.update for more details. 4944 documentation in doc/README.update for more details.
4951 4945
4952 autoload - if set to "no" (any string beginning with 'n'), 4946 autoload - if set to "no" (any string beginning with 'n'),
4953 "bootp" will just load perform a lookup of the 4947 "bootp" will just load perform a lookup of the
4954 configuration from the BOOTP server, but not try to 4948 configuration from the BOOTP server, but not try to
4955 load any image using TFTP 4949 load any image using TFTP
4956 4950
4957 autostart - if set to "yes", an image loaded using the "bootp", 4951 autostart - if set to "yes", an image loaded using the "bootp",
4958 "rarpboot", "tftpboot" or "diskboot" commands will 4952 "rarpboot", "tftpboot" or "diskboot" commands will
4959 be automatically started (by internally calling 4953 be automatically started (by internally calling
4960 "bootm") 4954 "bootm")
4961 4955
4962 If set to "no", a standalone image passed to the 4956 If set to "no", a standalone image passed to the
4963 "bootm" command will be copied to the load address 4957 "bootm" command will be copied to the load address
4964 (and eventually uncompressed), but NOT be started. 4958 (and eventually uncompressed), but NOT be started.
4965 This can be used to load and uncompress arbitrary 4959 This can be used to load and uncompress arbitrary
4966 data. 4960 data.
4967 4961
4968 fdt_high - if set this restricts the maximum address that the 4962 fdt_high - if set this restricts the maximum address that the
4969 flattened device tree will be copied into upon boot. 4963 flattened device tree will be copied into upon boot.
4970 For example, if you have a system with 1 GB memory 4964 For example, if you have a system with 1 GB memory
4971 at physical address 0x10000000, while Linux kernel 4965 at physical address 0x10000000, while Linux kernel
4972 only recognizes the first 704 MB as low memory, you 4966 only recognizes the first 704 MB as low memory, you
4973 may need to set fdt_high as 0x3C000000 to have the 4967 may need to set fdt_high as 0x3C000000 to have the
4974 device tree blob be copied to the maximum address 4968 device tree blob be copied to the maximum address
4975 of the 704 MB low memory, so that Linux kernel can 4969 of the 704 MB low memory, so that Linux kernel can
4976 access it during the boot procedure. 4970 access it during the boot procedure.
4977 4971
4978 If this is set to the special value 0xFFFFFFFF then 4972 If this is set to the special value 0xFFFFFFFF then
4979 the fdt will not be copied at all on boot. For this 4973 the fdt will not be copied at all on boot. For this
4980 to work it must reside in writable memory, have 4974 to work it must reside in writable memory, have
4981 sufficient padding on the end of it for u-boot to 4975 sufficient padding on the end of it for u-boot to
4982 add the information it needs into it, and the memory 4976 add the information it needs into it, and the memory
4983 must be accessible by the kernel. 4977 must be accessible by the kernel.
4984 4978
4985 fdtcontroladdr- if set this is the address of the control flattened 4979 fdtcontroladdr- if set this is the address of the control flattened
4986 device tree used by U-Boot when CONFIG_OF_CONTROL is 4980 device tree used by U-Boot when CONFIG_OF_CONTROL is
4987 defined. 4981 defined.
4988 4982
4989 i2cfast - (PPC405GP|PPC405EP only) 4983 i2cfast - (PPC405GP|PPC405EP only)
4990 if set to 'y' configures Linux I2C driver for fast 4984 if set to 'y' configures Linux I2C driver for fast
4991 mode (400kHZ). This environment variable is used in 4985 mode (400kHZ). This environment variable is used in
4992 initialization code. So, for changes to be effective 4986 initialization code. So, for changes to be effective
4993 it must be saved and board must be reset. 4987 it must be saved and board must be reset.
4994 4988
4995 initrd_high - restrict positioning of initrd images: 4989 initrd_high - restrict positioning of initrd images:
4996 If this variable is not set, initrd images will be 4990 If this variable is not set, initrd images will be
4997 copied to the highest possible address in RAM; this 4991 copied to the highest possible address in RAM; this
4998 is usually what you want since it allows for 4992 is usually what you want since it allows for
4999 maximum initrd size. If for some reason you want to 4993 maximum initrd size. If for some reason you want to
5000 make sure that the initrd image is loaded below the 4994 make sure that the initrd image is loaded below the
5001 CONFIG_SYS_BOOTMAPSZ limit, you can set this environment 4995 CONFIG_SYS_BOOTMAPSZ limit, you can set this environment
5002 variable to a value of "no" or "off" or "0". 4996 variable to a value of "no" or "off" or "0".
5003 Alternatively, you can set it to a maximum upper 4997 Alternatively, you can set it to a maximum upper
5004 address to use (U-Boot will still check that it 4998 address to use (U-Boot will still check that it
5005 does not overwrite the U-Boot stack and data). 4999 does not overwrite the U-Boot stack and data).
5006 5000
5007 For instance, when you have a system with 16 MB 5001 For instance, when you have a system with 16 MB
5008 RAM, and want to reserve 4 MB from use by Linux, 5002 RAM, and want to reserve 4 MB from use by Linux,
5009 you can do this by adding "mem=12M" to the value of 5003 you can do this by adding "mem=12M" to the value of
5010 the "bootargs" variable. However, now you must make 5004 the "bootargs" variable. However, now you must make
5011 sure that the initrd image is placed in the first 5005 sure that the initrd image is placed in the first
5012 12 MB as well - this can be done with 5006 12 MB as well - this can be done with
5013 5007
5014 setenv initrd_high 00c00000 5008 setenv initrd_high 00c00000
5015 5009
5016 If you set initrd_high to 0xFFFFFFFF, this is an 5010 If you set initrd_high to 0xFFFFFFFF, this is an
5017 indication to U-Boot that all addresses are legal 5011 indication to U-Boot that all addresses are legal
5018 for the Linux kernel, including addresses in flash 5012 for the Linux kernel, including addresses in flash
5019 memory. In this case U-Boot will NOT COPY the 5013 memory. In this case U-Boot will NOT COPY the
5020 ramdisk at all. This may be useful to reduce the 5014 ramdisk at all. This may be useful to reduce the
5021 boot time on your system, but requires that this 5015 boot time on your system, but requires that this
5022 feature is supported by your Linux kernel. 5016 feature is supported by your Linux kernel.
5023 5017
5024 ipaddr - IP address; needed for tftpboot command 5018 ipaddr - IP address; needed for tftpboot command
5025 5019
5026 loadaddr - Default load address for commands like "bootp", 5020 loadaddr - Default load address for commands like "bootp",
5027 "rarpboot", "tftpboot", "loadb" or "diskboot" 5021 "rarpboot", "tftpboot", "loadb" or "diskboot"
5028 5022
5029 loads_echo - see CONFIG_LOADS_ECHO 5023 loads_echo - see CONFIG_LOADS_ECHO
5030 5024
5031 serverip - TFTP server IP address; needed for tftpboot command 5025 serverip - TFTP server IP address; needed for tftpboot command
5032 5026
5033 bootretry - see CONFIG_BOOT_RETRY_TIME 5027 bootretry - see CONFIG_BOOT_RETRY_TIME
5034 5028
5035 bootdelaykey - see CONFIG_AUTOBOOT_DELAY_STR 5029 bootdelaykey - see CONFIG_AUTOBOOT_DELAY_STR
5036 5030
5037 bootstopkey - see CONFIG_AUTOBOOT_STOP_STR 5031 bootstopkey - see CONFIG_AUTOBOOT_STOP_STR
5038 5032
5039 ethprime - controls which interface is used first. 5033 ethprime - controls which interface is used first.
5040 5034
5041 ethact - controls which interface is currently active. 5035 ethact - controls which interface is currently active.
5042 For example you can do the following 5036 For example you can do the following
5043 5037
5044 => setenv ethact FEC 5038 => setenv ethact FEC
5045 => ping 192.168.0.1 # traffic sent on FEC 5039 => ping 192.168.0.1 # traffic sent on FEC
5046 => setenv ethact SCC 5040 => setenv ethact SCC
5047 => ping 10.0.0.1 # traffic sent on SCC 5041 => ping 10.0.0.1 # traffic sent on SCC
5048 5042
5049 ethrotate - When set to "no" U-Boot does not go through all 5043 ethrotate - When set to "no" U-Boot does not go through all
5050 available network interfaces. 5044 available network interfaces.
5051 It just stays at the currently selected interface. 5045 It just stays at the currently selected interface.
5052 5046
5053 netretry - When set to "no" each network operation will 5047 netretry - When set to "no" each network operation will
5054 either succeed or fail without retrying. 5048 either succeed or fail without retrying.
5055 When set to "once" the network operation will 5049 When set to "once" the network operation will
5056 fail when all the available network interfaces 5050 fail when all the available network interfaces
5057 are tried once without success. 5051 are tried once without success.
5058 Useful on scripts which control the retry operation 5052 Useful on scripts which control the retry operation
5059 themselves. 5053 themselves.
5060 5054
5061 npe_ucode - set load address for the NPE microcode 5055 npe_ucode - set load address for the NPE microcode
5062 5056
5063 silent_linux - If set then Linux will be told to boot silently, by 5057 silent_linux - If set then Linux will be told to boot silently, by
5064 changing the console to be empty. If "yes" it will be 5058 changing the console to be empty. If "yes" it will be
5065 made silent. If "no" it will not be made silent. If 5059 made silent. If "no" it will not be made silent. If
5066 unset, then it will be made silent if the U-Boot console 5060 unset, then it will be made silent if the U-Boot console
5067 is silent. 5061 is silent.
5068 5062
5069 tftpsrcp - If this is set, the value is used for TFTP's 5063 tftpsrcp - If this is set, the value is used for TFTP's
5070 UDP source port. 5064 UDP source port.
5071 5065
5072 tftpdstp - If this is set, the value is used for TFTP's UDP 5066 tftpdstp - If this is set, the value is used for TFTP's UDP
5073 destination port instead of the Well Know Port 69. 5067 destination port instead of the Well Know Port 69.
5074 5068
5075 tftpblocksize - Block size to use for TFTP transfers; if not set, 5069 tftpblocksize - Block size to use for TFTP transfers; if not set,
5076 we use the TFTP server's default block size 5070 we use the TFTP server's default block size
5077 5071
5078 tftptimeout - Retransmission timeout for TFTP packets (in milli- 5072 tftptimeout - Retransmission timeout for TFTP packets (in milli-
5079 seconds, minimum value is 1000 = 1 second). Defines 5073 seconds, minimum value is 1000 = 1 second). Defines
5080 when a packet is considered to be lost so it has to 5074 when a packet is considered to be lost so it has to
5081 be retransmitted. The default is 5000 = 5 seconds. 5075 be retransmitted. The default is 5000 = 5 seconds.
5082 Lowering this value may make downloads succeed 5076 Lowering this value may make downloads succeed
5083 faster in networks with high packet loss rates or 5077 faster in networks with high packet loss rates or
5084 with unreliable TFTP servers. 5078 with unreliable TFTP servers.
5085 5079
5086 tftptimeoutcountmax - maximum count of TFTP timeouts (no 5080 tftptimeoutcountmax - maximum count of TFTP timeouts (no
5087 unit, minimum value = 0). Defines how many timeouts 5081 unit, minimum value = 0). Defines how many timeouts
5088 can happen during a single file transfer before that 5082 can happen during a single file transfer before that
5089 transfer is aborted. The default is 10, and 0 means 5083 transfer is aborted. The default is 10, and 0 means
5090 'no timeouts allowed'. Increasing this value may help 5084 'no timeouts allowed'. Increasing this value may help
5091 downloads succeed with high packet loss rates, or with 5085 downloads succeed with high packet loss rates, or with
5092 unreliable TFTP servers or client hardware. 5086 unreliable TFTP servers or client hardware.
5093 5087
5094 vlan - When set to a value < 4095 the traffic over 5088 vlan - When set to a value < 4095 the traffic over
5095 Ethernet is encapsulated/received over 802.1q 5089 Ethernet is encapsulated/received over 802.1q
5096 VLAN tagged frames. 5090 VLAN tagged frames.
5097 5091
5098 bootpretryperiod - Period during which BOOTP/DHCP sends retries. 5092 bootpretryperiod - Period during which BOOTP/DHCP sends retries.
5099 Unsigned value, in milliseconds. If not set, the period will 5093 Unsigned value, in milliseconds. If not set, the period will
5100 be either the default (28000), or a value based on 5094 be either the default (28000), or a value based on
5101 CONFIG_NET_RETRY_COUNT, if defined. This value has 5095 CONFIG_NET_RETRY_COUNT, if defined. This value has
5102 precedence over the valu based on CONFIG_NET_RETRY_COUNT. 5096 precedence over the valu based on CONFIG_NET_RETRY_COUNT.
5103 5097
5104 The following image location variables contain the location of images 5098 The following image location variables contain the location of images
5105 used in booting. The "Image" column gives the role of the image and is 5099 used in booting. The "Image" column gives the role of the image and is
5106 not an environment variable name. The other columns are environment 5100 not an environment variable name. The other columns are environment
5107 variable names. "File Name" gives the name of the file on a TFTP 5101 variable names. "File Name" gives the name of the file on a TFTP
5108 server, "RAM Address" gives the location in RAM the image will be 5102 server, "RAM Address" gives the location in RAM the image will be
5109 loaded to, and "Flash Location" gives the image's address in NOR 5103 loaded to, and "Flash Location" gives the image's address in NOR
5110 flash or offset in NAND flash. 5104 flash or offset in NAND flash.
5111 5105
5112 *Note* - these variables don't have to be defined for all boards, some 5106 *Note* - these variables don't have to be defined for all boards, some
5113 boards currently use other variables for these purposes, and some 5107 boards currently use other variables for these purposes, and some
5114 boards use these variables for other purposes. 5108 boards use these variables for other purposes.
5115 5109
5116 Image File Name RAM Address Flash Location 5110 Image File Name RAM Address Flash Location
5117 ----- --------- ----------- -------------- 5111 ----- --------- ----------- --------------
5118 u-boot u-boot u-boot_addr_r u-boot_addr 5112 u-boot u-boot u-boot_addr_r u-boot_addr
5119 Linux kernel bootfile kernel_addr_r kernel_addr 5113 Linux kernel bootfile kernel_addr_r kernel_addr
5120 device tree blob fdtfile fdt_addr_r fdt_addr 5114 device tree blob fdtfile fdt_addr_r fdt_addr
5121 ramdisk ramdiskfile ramdisk_addr_r ramdisk_addr 5115 ramdisk ramdiskfile ramdisk_addr_r ramdisk_addr
5122 5116
5123 The following environment variables may be used and automatically 5117 The following environment variables may be used and automatically
5124 updated by the network boot commands ("bootp" and "rarpboot"), 5118 updated by the network boot commands ("bootp" and "rarpboot"),
5125 depending the information provided by your boot server: 5119 depending the information provided by your boot server:
5126 5120
5127 bootfile - see above 5121 bootfile - see above
5128 dnsip - IP address of your Domain Name Server 5122 dnsip - IP address of your Domain Name Server
5129 dnsip2 - IP address of your secondary Domain Name Server 5123 dnsip2 - IP address of your secondary Domain Name Server
5130 gatewayip - IP address of the Gateway (Router) to use 5124 gatewayip - IP address of the Gateway (Router) to use
5131 hostname - Target hostname 5125 hostname - Target hostname
5132 ipaddr - see above 5126 ipaddr - see above
5133 netmask - Subnet Mask 5127 netmask - Subnet Mask
5134 rootpath - Pathname of the root filesystem on the NFS server 5128 rootpath - Pathname of the root filesystem on the NFS server
5135 serverip - see above 5129 serverip - see above
5136 5130
5137 5131
5138 There are two special Environment Variables: 5132 There are two special Environment Variables:
5139 5133
5140 serial# - contains hardware identification information such 5134 serial# - contains hardware identification information such
5141 as type string and/or serial number 5135 as type string and/or serial number
5142 ethaddr - Ethernet address 5136 ethaddr - Ethernet address
5143 5137
5144 These variables can be set only once (usually during manufacturing of 5138 These variables can be set only once (usually during manufacturing of
5145 the board). U-Boot refuses to delete or overwrite these variables 5139 the board). U-Boot refuses to delete or overwrite these variables
5146 once they have been set once. 5140 once they have been set once.
5147 5141
5148 5142
5149 Further special Environment Variables: 5143 Further special Environment Variables:
5150 5144
5151 ver - Contains the U-Boot version string as printed 5145 ver - Contains the U-Boot version string as printed
5152 with the "version" command. This variable is 5146 with the "version" command. This variable is
5153 readonly (see CONFIG_VERSION_VARIABLE). 5147 readonly (see CONFIG_VERSION_VARIABLE).
5154 5148
5155 5149
5156 Please note that changes to some configuration parameters may take 5150 Please note that changes to some configuration parameters may take
5157 only effect after the next boot (yes, that's just like Windoze :-). 5151 only effect after the next boot (yes, that's just like Windoze :-).
5158 5152
5159 5153
5160 Callback functions for environment variables: 5154 Callback functions for environment variables:
5161 --------------------------------------------- 5155 ---------------------------------------------
5162 5156
5163 For some environment variables, the behavior of u-boot needs to change 5157 For some environment variables, the behavior of u-boot needs to change
5164 when their values are changed. This functionality allows functions to 5158 when their values are changed. This functionality allows functions to
5165 be associated with arbitrary variables. On creation, overwrite, or 5159 be associated with arbitrary variables. On creation, overwrite, or
5166 deletion, the callback will provide the opportunity for some side 5160 deletion, the callback will provide the opportunity for some side
5167 effect to happen or for the change to be rejected. 5161 effect to happen or for the change to be rejected.
5168 5162
5169 The callbacks are named and associated with a function using the 5163 The callbacks are named and associated with a function using the
5170 U_BOOT_ENV_CALLBACK macro in your board or driver code. 5164 U_BOOT_ENV_CALLBACK macro in your board or driver code.
5171 5165
5172 These callbacks are associated with variables in one of two ways. The 5166 These callbacks are associated with variables in one of two ways. The
5173 static list can be added to by defining CONFIG_ENV_CALLBACK_LIST_STATIC 5167 static list can be added to by defining CONFIG_ENV_CALLBACK_LIST_STATIC
5174 in the board configuration to a string that defines a list of 5168 in the board configuration to a string that defines a list of
5175 associations. The list must be in the following format: 5169 associations. The list must be in the following format:
5176 5170
5177 entry = variable_name[:callback_name] 5171 entry = variable_name[:callback_name]
5178 list = entry[,list] 5172 list = entry[,list]
5179 5173
5180 If the callback name is not specified, then the callback is deleted. 5174 If the callback name is not specified, then the callback is deleted.
5181 Spaces are also allowed anywhere in the list. 5175 Spaces are also allowed anywhere in the list.
5182 5176
5183 Callbacks can also be associated by defining the ".callbacks" variable 5177 Callbacks can also be associated by defining the ".callbacks" variable
5184 with the same list format above. Any association in ".callbacks" will 5178 with the same list format above. Any association in ".callbacks" will
5185 override any association in the static list. You can define 5179 override any association in the static list. You can define
5186 CONFIG_ENV_CALLBACK_LIST_DEFAULT to a list (string) to define the 5180 CONFIG_ENV_CALLBACK_LIST_DEFAULT to a list (string) to define the
5187 ".callbacks" environment variable in the default or embedded environment. 5181 ".callbacks" environment variable in the default or embedded environment.
5188 5182
5189 If CONFIG_REGEX is defined, the variable_name above is evaluated as a 5183 If CONFIG_REGEX is defined, the variable_name above is evaluated as a
5190 regular expression. This allows multiple variables to be connected to 5184 regular expression. This allows multiple variables to be connected to
5191 the same callback without explicitly listing them all out. 5185 the same callback without explicitly listing them all out.
5192 5186
5193 5187
5194 Command Line Parsing: 5188 Command Line Parsing:
5195 ===================== 5189 =====================
5196 5190
5197 There are two different command line parsers available with U-Boot: 5191 There are two different command line parsers available with U-Boot:
5198 the old "simple" one, and the much more powerful "hush" shell: 5192 the old "simple" one, and the much more powerful "hush" shell:
5199 5193
5200 Old, simple command line parser: 5194 Old, simple command line parser:
5201 -------------------------------- 5195 --------------------------------
5202 5196
5203 - supports environment variables (through setenv / saveenv commands) 5197 - supports environment variables (through setenv / saveenv commands)
5204 - several commands on one line, separated by ';' 5198 - several commands on one line, separated by ';'
5205 - variable substitution using "... ${name} ..." syntax 5199 - variable substitution using "... ${name} ..." syntax
5206 - special characters ('$', ';') can be escaped by prefixing with '\', 5200 - special characters ('$', ';') can be escaped by prefixing with '\',
5207 for example: 5201 for example:
5208 setenv bootcmd bootm \${address} 5202 setenv bootcmd bootm \${address}
5209 - You can also escape text by enclosing in single apostrophes, for example: 5203 - You can also escape text by enclosing in single apostrophes, for example:
5210 setenv addip 'setenv bootargs $bootargs ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname::off' 5204 setenv addip 'setenv bootargs $bootargs ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname::off'
5211 5205
5212 Hush shell: 5206 Hush shell:
5213 ----------- 5207 -----------
5214 5208
5215 - similar to Bourne shell, with control structures like 5209 - similar to Bourne shell, with control structures like
5216 if...then...else...fi, for...do...done; while...do...done, 5210 if...then...else...fi, for...do...done; while...do...done,
5217 until...do...done, ... 5211 until...do...done, ...
5218 - supports environment ("global") variables (through setenv / saveenv 5212 - supports environment ("global") variables (through setenv / saveenv
5219 commands) and local shell variables (through standard shell syntax 5213 commands) and local shell variables (through standard shell syntax
5220 "name=value"); only environment variables can be used with "run" 5214 "name=value"); only environment variables can be used with "run"
5221 command 5215 command
5222 5216
5223 General rules: 5217 General rules:
5224 -------------- 5218 --------------
5225 5219
5226 (1) If a command line (or an environment variable executed by a "run" 5220 (1) If a command line (or an environment variable executed by a "run"
5227 command) contains several commands separated by semicolon, and 5221 command) contains several commands separated by semicolon, and
5228 one of these commands fails, then the remaining commands will be 5222 one of these commands fails, then the remaining commands will be
5229 executed anyway. 5223 executed anyway.
5230 5224
5231 (2) If you execute several variables with one call to run (i. e. 5225 (2) If you execute several variables with one call to run (i. e.
5232 calling run with a list of variables as arguments), any failing 5226 calling run with a list of variables as arguments), any failing
5233 command will cause "run" to terminate, i. e. the remaining 5227 command will cause "run" to terminate, i. e. the remaining
5234 variables are not executed. 5228 variables are not executed.
5235 5229
5236 Note for Redundant Ethernet Interfaces: 5230 Note for Redundant Ethernet Interfaces:
5237 ======================================= 5231 =======================================
5238 5232
5239 Some boards come with redundant Ethernet interfaces; U-Boot supports 5233 Some boards come with redundant Ethernet interfaces; U-Boot supports
5240 such configurations and is capable of automatic selection of a 5234 such configurations and is capable of automatic selection of a
5241 "working" interface when needed. MAC assignment works as follows: 5235 "working" interface when needed. MAC assignment works as follows:
5242 5236
5243 Network interfaces are numbered eth0, eth1, eth2, ... Corresponding 5237 Network interfaces are numbered eth0, eth1, eth2, ... Corresponding
5244 MAC addresses can be stored in the environment as "ethaddr" (=>eth0), 5238 MAC addresses can be stored in the environment as "ethaddr" (=>eth0),
5245 "eth1addr" (=>eth1), "eth2addr", ... 5239 "eth1addr" (=>eth1), "eth2addr", ...
5246 5240
5247 If the network interface stores some valid MAC address (for instance 5241 If the network interface stores some valid MAC address (for instance
5248 in SROM), this is used as default address if there is NO correspon- 5242 in SROM), this is used as default address if there is NO correspon-
5249 ding setting in the environment; if the corresponding environment 5243 ding setting in the environment; if the corresponding environment
5250 variable is set, this overrides the settings in the card; that means: 5244 variable is set, this overrides the settings in the card; that means:
5251 5245
5252 o If the SROM has a valid MAC address, and there is no address in the 5246 o If the SROM has a valid MAC address, and there is no address in the
5253 environment, the SROM's address is used. 5247 environment, the SROM's address is used.
5254 5248
5255 o If there is no valid address in the SROM, and a definition in the 5249 o If there is no valid address in the SROM, and a definition in the
5256 environment exists, then the value from the environment variable is 5250 environment exists, then the value from the environment variable is
5257 used. 5251 used.
5258 5252
5259 o If both the SROM and the environment contain a MAC address, and 5253 o If both the SROM and the environment contain a MAC address, and
5260 both addresses are the same, this MAC address is used. 5254 both addresses are the same, this MAC address is used.
5261 5255
5262 o If both the SROM and the environment contain a MAC address, and the 5256 o If both the SROM and the environment contain a MAC address, and the
5263 addresses differ, the value from the environment is used and a 5257 addresses differ, the value from the environment is used and a
5264 warning is printed. 5258 warning is printed.
5265 5259
5266 o If neither SROM nor the environment contain a MAC address, an error 5260 o If neither SROM nor the environment contain a MAC address, an error
5267 is raised. If CONFIG_NET_RANDOM_ETHADDR is defined, then in this case 5261 is raised. If CONFIG_NET_RANDOM_ETHADDR is defined, then in this case
5268 a random, locally-assigned MAC is used. 5262 a random, locally-assigned MAC is used.
5269 5263
5270 If Ethernet drivers implement the 'write_hwaddr' function, valid MAC addresses 5264 If Ethernet drivers implement the 'write_hwaddr' function, valid MAC addresses
5271 will be programmed into hardware as part of the initialization process. This 5265 will be programmed into hardware as part of the initialization process. This
5272 may be skipped by setting the appropriate 'ethmacskip' environment variable. 5266 may be skipped by setting the appropriate 'ethmacskip' environment variable.
5273 The naming convention is as follows: 5267 The naming convention is as follows:
5274 "ethmacskip" (=>eth0), "eth1macskip" (=>eth1) etc. 5268 "ethmacskip" (=>eth0), "eth1macskip" (=>eth1) etc.
5275 5269
5276 Image Formats: 5270 Image Formats:
5277 ============== 5271 ==============
5278 5272
5279 U-Boot is capable of booting (and performing other auxiliary operations on) 5273 U-Boot is capable of booting (and performing other auxiliary operations on)
5280 images in two formats: 5274 images in two formats:
5281 5275
5282 New uImage format (FIT) 5276 New uImage format (FIT)
5283 ----------------------- 5277 -----------------------
5284 5278
5285 Flexible and powerful format based on Flattened Image Tree -- FIT (similar 5279 Flexible and powerful format based on Flattened Image Tree -- FIT (similar
5286 to Flattened Device Tree). It allows the use of images with multiple 5280 to Flattened Device Tree). It allows the use of images with multiple
5287 components (several kernels, ramdisks, etc.), with contents protected by 5281 components (several kernels, ramdisks, etc.), with contents protected by
5288 SHA1, MD5 or CRC32. More details are found in the doc/uImage.FIT directory. 5282 SHA1, MD5 or CRC32. More details are found in the doc/uImage.FIT directory.
5289 5283
5290 5284
5291 Old uImage format 5285 Old uImage format
5292 ----------------- 5286 -----------------
5293 5287
5294 Old image format is based on binary files which can be basically anything, 5288 Old image format is based on binary files which can be basically anything,
5295 preceded by a special header; see the definitions in include/image.h for 5289 preceded by a special header; see the definitions in include/image.h for
5296 details; basically, the header defines the following image properties: 5290 details; basically, the header defines the following image properties:
5297 5291
5298 * Target Operating System (Provisions for OpenBSD, NetBSD, FreeBSD, 5292 * Target Operating System (Provisions for OpenBSD, NetBSD, FreeBSD,
5299 4.4BSD, Linux, SVR4, Esix, Solaris, Irix, SCO, Dell, NCR, VxWorks, 5293 4.4BSD, Linux, SVR4, Esix, Solaris, Irix, SCO, Dell, NCR, VxWorks,
5300 LynxOS, pSOS, QNX, RTEMS, INTEGRITY; 5294 LynxOS, pSOS, QNX, RTEMS, INTEGRITY;
5301 Currently supported: Linux, NetBSD, VxWorks, QNX, RTEMS, LynxOS, 5295 Currently supported: Linux, NetBSD, VxWorks, QNX, RTEMS, LynxOS,
5302 INTEGRITY). 5296 INTEGRITY).
5303 * Target CPU Architecture (Provisions for Alpha, ARM, AVR32, Intel x86, 5297 * Target CPU Architecture (Provisions for Alpha, ARM, AVR32, Intel x86,
5304 IA64, MIPS, NDS32, Nios II, PowerPC, IBM S390, SuperH, Sparc, Sparc 64 Bit; 5298 IA64, MIPS, NDS32, Nios II, PowerPC, IBM S390, SuperH, Sparc, Sparc 64 Bit;
5305 Currently supported: ARM, AVR32, Intel x86, MIPS, NDS32, Nios II, PowerPC). 5299 Currently supported: ARM, AVR32, Intel x86, MIPS, NDS32, Nios II, PowerPC).
5306 * Compression Type (uncompressed, gzip, bzip2) 5300 * Compression Type (uncompressed, gzip, bzip2)
5307 * Load Address 5301 * Load Address
5308 * Entry Point 5302 * Entry Point
5309 * Image Name 5303 * Image Name
5310 * Image Timestamp 5304 * Image Timestamp
5311 5305
5312 The header is marked by a special Magic Number, and both the header 5306 The header is marked by a special Magic Number, and both the header
5313 and the data portions of the image are secured against corruption by 5307 and the data portions of the image are secured against corruption by
5314 CRC32 checksums. 5308 CRC32 checksums.
5315 5309
5316 5310
5317 Linux Support: 5311 Linux Support:
5318 ============== 5312 ==============
5319 5313
5320 Although U-Boot should support any OS or standalone application 5314 Although U-Boot should support any OS or standalone application
5321 easily, the main focus has always been on Linux during the design of 5315 easily, the main focus has always been on Linux during the design of
5322 U-Boot. 5316 U-Boot.
5323 5317
5324 U-Boot includes many features that so far have been part of some 5318 U-Boot includes many features that so far have been part of some
5325 special "boot loader" code within the Linux kernel. Also, any 5319 special "boot loader" code within the Linux kernel. Also, any
5326 "initrd" images to be used are no longer part of one big Linux image; 5320 "initrd" images to be used are no longer part of one big Linux image;
5327 instead, kernel and "initrd" are separate images. This implementation 5321 instead, kernel and "initrd" are separate images. This implementation
5328 serves several purposes: 5322 serves several purposes:
5329 5323
5330 - the same features can be used for other OS or standalone 5324 - the same features can be used for other OS or standalone
5331 applications (for instance: using compressed images to reduce the 5325 applications (for instance: using compressed images to reduce the
5332 Flash memory footprint) 5326 Flash memory footprint)
5333 5327
5334 - it becomes much easier to port new Linux kernel versions because 5328 - it becomes much easier to port new Linux kernel versions because
5335 lots of low-level, hardware dependent stuff are done by U-Boot 5329 lots of low-level, hardware dependent stuff are done by U-Boot
5336 5330
5337 - the same Linux kernel image can now be used with different "initrd" 5331 - the same Linux kernel image can now be used with different "initrd"
5338 images; of course this also means that different kernel images can 5332 images; of course this also means that different kernel images can
5339 be run with the same "initrd". This makes testing easier (you don't 5333 be run with the same "initrd". This makes testing easier (you don't
5340 have to build a new "zImage.initrd" Linux image when you just 5334 have to build a new "zImage.initrd" Linux image when you just
5341 change a file in your "initrd"). Also, a field-upgrade of the 5335 change a file in your "initrd"). Also, a field-upgrade of the
5342 software is easier now. 5336 software is easier now.
5343 5337
5344 5338
5345 Linux HOWTO: 5339 Linux HOWTO:
5346 ============ 5340 ============
5347 5341
5348 Porting Linux to U-Boot based systems: 5342 Porting Linux to U-Boot based systems:
5349 --------------------------------------- 5343 ---------------------------------------
5350 5344
5351 U-Boot cannot save you from doing all the necessary modifications to 5345 U-Boot cannot save you from doing all the necessary modifications to
5352 configure the Linux device drivers for use with your target hardware 5346 configure the Linux device drivers for use with your target hardware
5353 (no, we don't intend to provide a full virtual machine interface to 5347 (no, we don't intend to provide a full virtual machine interface to
5354 Linux :-). 5348 Linux :-).
5355 5349
5356 But now you can ignore ALL boot loader code (in arch/powerpc/mbxboot). 5350 But now you can ignore ALL boot loader code (in arch/powerpc/mbxboot).
5357 5351
5358 Just make sure your machine specific header file (for instance 5352 Just make sure your machine specific header file (for instance
5359 include/asm-ppc/tqm8xx.h) includes the same definition of the Board 5353 include/asm-ppc/tqm8xx.h) includes the same definition of the Board
5360 Information structure as we define in include/asm-<arch>/u-boot.h, 5354 Information structure as we define in include/asm-<arch>/u-boot.h,
5361 and make sure that your definition of IMAP_ADDR uses the same value 5355 and make sure that your definition of IMAP_ADDR uses the same value
5362 as your U-Boot configuration in CONFIG_SYS_IMMR. 5356 as your U-Boot configuration in CONFIG_SYS_IMMR.
5363 5357
5364 Note that U-Boot now has a driver model, a unified model for drivers. 5358 Note that U-Boot now has a driver model, a unified model for drivers.
5365 If you are adding a new driver, plumb it into driver model. If there 5359 If you are adding a new driver, plumb it into driver model. If there
5366 is no uclass available, you are encouraged to create one. See 5360 is no uclass available, you are encouraged to create one. See
5367 doc/driver-model. 5361 doc/driver-model.
5368 5362
5369 5363
5370 Configuring the Linux kernel: 5364 Configuring the Linux kernel:
5371 ----------------------------- 5365 -----------------------------
5372 5366
5373 No specific requirements for U-Boot. Make sure you have some root 5367 No specific requirements for U-Boot. Make sure you have some root
5374 device (initial ramdisk, NFS) for your target system. 5368 device (initial ramdisk, NFS) for your target system.
5375 5369
5376 5370
5377 Building a Linux Image: 5371 Building a Linux Image:
5378 ----------------------- 5372 -----------------------
5379 5373
5380 With U-Boot, "normal" build targets like "zImage" or "bzImage" are 5374 With U-Boot, "normal" build targets like "zImage" or "bzImage" are
5381 not used. If you use recent kernel source, a new build target 5375 not used. If you use recent kernel source, a new build target
5382 "uImage" will exist which automatically builds an image usable by 5376 "uImage" will exist which automatically builds an image usable by
5383 U-Boot. Most older kernels also have support for a "pImage" target, 5377 U-Boot. Most older kernels also have support for a "pImage" target,
5384 which was introduced for our predecessor project PPCBoot and uses a 5378 which was introduced for our predecessor project PPCBoot and uses a
5385 100% compatible format. 5379 100% compatible format.
5386 5380
5387 Example: 5381 Example:
5388 5382
5389 make TQM850L_defconfig 5383 make TQM850L_defconfig
5390 make oldconfig 5384 make oldconfig
5391 make dep 5385 make dep
5392 make uImage 5386 make uImage
5393 5387
5394 The "uImage" build target uses a special tool (in 'tools/mkimage') to 5388 The "uImage" build target uses a special tool (in 'tools/mkimage') to
5395 encapsulate a compressed Linux kernel image with header information, 5389 encapsulate a compressed Linux kernel image with header information,
5396 CRC32 checksum etc. for use with U-Boot. This is what we are doing: 5390 CRC32 checksum etc. for use with U-Boot. This is what we are doing:
5397 5391
5398 * build a standard "vmlinux" kernel image (in ELF binary format): 5392 * build a standard "vmlinux" kernel image (in ELF binary format):
5399 5393
5400 * convert the kernel into a raw binary image: 5394 * convert the kernel into a raw binary image:
5401 5395
5402 ${CROSS_COMPILE}-objcopy -O binary \ 5396 ${CROSS_COMPILE}-objcopy -O binary \
5403 -R .note -R .comment \ 5397 -R .note -R .comment \
5404 -S vmlinux linux.bin 5398 -S vmlinux linux.bin
5405 5399
5406 * compress the binary image: 5400 * compress the binary image:
5407 5401
5408 gzip -9 linux.bin 5402 gzip -9 linux.bin
5409 5403
5410 * package compressed binary image for U-Boot: 5404 * package compressed binary image for U-Boot:
5411 5405
5412 mkimage -A ppc -O linux -T kernel -C gzip \ 5406 mkimage -A ppc -O linux -T kernel -C gzip \
5413 -a 0 -e 0 -n "Linux Kernel Image" \ 5407 -a 0 -e 0 -n "Linux Kernel Image" \
5414 -d linux.bin.gz uImage 5408 -d linux.bin.gz uImage
5415 5409
5416 5410
5417 The "mkimage" tool can also be used to create ramdisk images for use 5411 The "mkimage" tool can also be used to create ramdisk images for use
5418 with U-Boot, either separated from the Linux kernel image, or 5412 with U-Boot, either separated from the Linux kernel image, or
5419 combined into one file. "mkimage" encapsulates the images with a 64 5413 combined into one file. "mkimage" encapsulates the images with a 64
5420 byte header containing information about target architecture, 5414 byte header containing information about target architecture,
5421 operating system, image type, compression method, entry points, time 5415 operating system, image type, compression method, entry points, time
5422 stamp, CRC32 checksums, etc. 5416 stamp, CRC32 checksums, etc.
5423 5417
5424 "mkimage" can be called in two ways: to verify existing images and 5418 "mkimage" can be called in two ways: to verify existing images and
5425 print the header information, or to build new images. 5419 print the header information, or to build new images.
5426 5420
5427 In the first form (with "-l" option) mkimage lists the information 5421 In the first form (with "-l" option) mkimage lists the information
5428 contained in the header of an existing U-Boot image; this includes 5422 contained in the header of an existing U-Boot image; this includes
5429 checksum verification: 5423 checksum verification:
5430 5424
5431 tools/mkimage -l image 5425 tools/mkimage -l image
5432 -l ==> list image header information 5426 -l ==> list image header information
5433 5427
5434 The second form (with "-d" option) is used to build a U-Boot image 5428 The second form (with "-d" option) is used to build a U-Boot image
5435 from a "data file" which is used as image payload: 5429 from a "data file" which is used as image payload:
5436 5430
5437 tools/mkimage -A arch -O os -T type -C comp -a addr -e ep \ 5431 tools/mkimage -A arch -O os -T type -C comp -a addr -e ep \
5438 -n name -d data_file image 5432 -n name -d data_file image
5439 -A ==> set architecture to 'arch' 5433 -A ==> set architecture to 'arch'
5440 -O ==> set operating system to 'os' 5434 -O ==> set operating system to 'os'
5441 -T ==> set image type to 'type' 5435 -T ==> set image type to 'type'
5442 -C ==> set compression type 'comp' 5436 -C ==> set compression type 'comp'
5443 -a ==> set load address to 'addr' (hex) 5437 -a ==> set load address to 'addr' (hex)
5444 -e ==> set entry point to 'ep' (hex) 5438 -e ==> set entry point to 'ep' (hex)
5445 -n ==> set image name to 'name' 5439 -n ==> set image name to 'name'
5446 -d ==> use image data from 'datafile' 5440 -d ==> use image data from 'datafile'
5447 5441
5448 Right now, all Linux kernels for PowerPC systems use the same load 5442 Right now, all Linux kernels for PowerPC systems use the same load
5449 address (0x00000000), but the entry point address depends on the 5443 address (0x00000000), but the entry point address depends on the
5450 kernel version: 5444 kernel version:
5451 5445
5452 - 2.2.x kernels have the entry point at 0x0000000C, 5446 - 2.2.x kernels have the entry point at 0x0000000C,
5453 - 2.3.x and later kernels have the entry point at 0x00000000. 5447 - 2.3.x and later kernels have the entry point at 0x00000000.
5454 5448
5455 So a typical call to build a U-Boot image would read: 5449 So a typical call to build a U-Boot image would read:
5456 5450
5457 -> tools/mkimage -n '2.4.4 kernel for TQM850L' \ 5451 -> tools/mkimage -n '2.4.4 kernel for TQM850L' \
5458 > -A ppc -O linux -T kernel -C gzip -a 0 -e 0 \ 5452 > -A ppc -O linux -T kernel -C gzip -a 0 -e 0 \
5459 > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux.gz \ 5453 > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux.gz \
5460 > examples/uImage.TQM850L 5454 > examples/uImage.TQM850L
5461 Image Name: 2.4.4 kernel for TQM850L 5455 Image Name: 2.4.4 kernel for TQM850L
5462 Created: Wed Jul 19 02:34:59 2000 5456 Created: Wed Jul 19 02:34:59 2000
5463 Image Type: PowerPC Linux Kernel Image (gzip compressed) 5457 Image Type: PowerPC Linux Kernel Image (gzip compressed)
5464 Data Size: 335725 Bytes = 327.86 kB = 0.32 MB 5458 Data Size: 335725 Bytes = 327.86 kB = 0.32 MB
5465 Load Address: 0x00000000 5459 Load Address: 0x00000000
5466 Entry Point: 0x00000000 5460 Entry Point: 0x00000000
5467 5461
5468 To verify the contents of the image (or check for corruption): 5462 To verify the contents of the image (or check for corruption):
5469 5463
5470 -> tools/mkimage -l examples/uImage.TQM850L 5464 -> tools/mkimage -l examples/uImage.TQM850L
5471 Image Name: 2.4.4 kernel for TQM850L 5465 Image Name: 2.4.4 kernel for TQM850L
5472 Created: Wed Jul 19 02:34:59 2000 5466 Created: Wed Jul 19 02:34:59 2000
5473 Image Type: PowerPC Linux Kernel Image (gzip compressed) 5467 Image Type: PowerPC Linux Kernel Image (gzip compressed)
5474 Data Size: 335725 Bytes = 327.86 kB = 0.32 MB 5468 Data Size: 335725 Bytes = 327.86 kB = 0.32 MB
5475 Load Address: 0x00000000 5469 Load Address: 0x00000000
5476 Entry Point: 0x00000000 5470 Entry Point: 0x00000000
5477 5471
5478 NOTE: for embedded systems where boot time is critical you can trade 5472 NOTE: for embedded systems where boot time is critical you can trade
5479 speed for memory and install an UNCOMPRESSED image instead: this 5473 speed for memory and install an UNCOMPRESSED image instead: this
5480 needs more space in Flash, but boots much faster since it does not 5474 needs more space in Flash, but boots much faster since it does not
5481 need to be uncompressed: 5475 need to be uncompressed:
5482 5476
5483 -> gunzip /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux.gz 5477 -> gunzip /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux.gz
5484 -> tools/mkimage -n '2.4.4 kernel for TQM850L' \ 5478 -> tools/mkimage -n '2.4.4 kernel for TQM850L' \
5485 > -A ppc -O linux -T kernel -C none -a 0 -e 0 \ 5479 > -A ppc -O linux -T kernel -C none -a 0 -e 0 \
5486 > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux \ 5480 > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/powerpc/coffboot/vmlinux \
5487 > examples/uImage.TQM850L-uncompressed 5481 > examples/uImage.TQM850L-uncompressed
5488 Image Name: 2.4.4 kernel for TQM850L 5482 Image Name: 2.4.4 kernel for TQM850L
5489 Created: Wed Jul 19 02:34:59 2000 5483 Created: Wed Jul 19 02:34:59 2000
5490 Image Type: PowerPC Linux Kernel Image (uncompressed) 5484 Image Type: PowerPC Linux Kernel Image (uncompressed)
5491 Data Size: 792160 Bytes = 773.59 kB = 0.76 MB 5485 Data Size: 792160 Bytes = 773.59 kB = 0.76 MB
5492 Load Address: 0x00000000 5486 Load Address: 0x00000000
5493 Entry Point: 0x00000000 5487 Entry Point: 0x00000000
5494 5488
5495 5489
5496 Similar you can build U-Boot images from a 'ramdisk.image.gz' file 5490 Similar you can build U-Boot images from a 'ramdisk.image.gz' file
5497 when your kernel is intended to use an initial ramdisk: 5491 when your kernel is intended to use an initial ramdisk:
5498 5492
5499 -> tools/mkimage -n 'Simple Ramdisk Image' \ 5493 -> tools/mkimage -n 'Simple Ramdisk Image' \
5500 > -A ppc -O linux -T ramdisk -C gzip \ 5494 > -A ppc -O linux -T ramdisk -C gzip \
5501 > -d /LinuxPPC/images/SIMPLE-ramdisk.image.gz examples/simple-initrd 5495 > -d /LinuxPPC/images/SIMPLE-ramdisk.image.gz examples/simple-initrd
5502 Image Name: Simple Ramdisk Image 5496 Image Name: Simple Ramdisk Image
5503 Created: Wed Jan 12 14:01:50 2000 5497 Created: Wed Jan 12 14:01:50 2000
5504 Image Type: PowerPC Linux RAMDisk Image (gzip compressed) 5498 Image Type: PowerPC Linux RAMDisk Image (gzip compressed)
5505 Data Size: 566530 Bytes = 553.25 kB = 0.54 MB 5499 Data Size: 566530 Bytes = 553.25 kB = 0.54 MB
5506 Load Address: 0x00000000 5500 Load Address: 0x00000000
5507 Entry Point: 0x00000000 5501 Entry Point: 0x00000000
5508 5502
5509 The "dumpimage" is a tool to disassemble images built by mkimage. Its "-i" 5503 The "dumpimage" is a tool to disassemble images built by mkimage. Its "-i"
5510 option performs the converse operation of the mkimage's second form (the "-d" 5504 option performs the converse operation of the mkimage's second form (the "-d"
5511 option). Given an image built by mkimage, the dumpimage extracts a "data file" 5505 option). Given an image built by mkimage, the dumpimage extracts a "data file"
5512 from the image: 5506 from the image:
5513 5507
5514 tools/dumpimage -i image -T type -p position data_file 5508 tools/dumpimage -i image -T type -p position data_file
5515 -i ==> extract from the 'image' a specific 'data_file' 5509 -i ==> extract from the 'image' a specific 'data_file'
5516 -T ==> set image type to 'type' 5510 -T ==> set image type to 'type'
5517 -p ==> 'position' (starting at 0) of the 'data_file' inside the 'image' 5511 -p ==> 'position' (starting at 0) of the 'data_file' inside the 'image'
5518 5512
5519 5513
5520 Installing a Linux Image: 5514 Installing a Linux Image:
5521 ------------------------- 5515 -------------------------
5522 5516
5523 To downloading a U-Boot image over the serial (console) interface, 5517 To downloading a U-Boot image over the serial (console) interface,
5524 you must convert the image to S-Record format: 5518 you must convert the image to S-Record format:
5525 5519
5526 objcopy -I binary -O srec examples/image examples/image.srec 5520 objcopy -I binary -O srec examples/image examples/image.srec
5527 5521
5528 The 'objcopy' does not understand the information in the U-Boot 5522 The 'objcopy' does not understand the information in the U-Boot
5529 image header, so the resulting S-Record file will be relative to 5523 image header, so the resulting S-Record file will be relative to
5530 address 0x00000000. To load it to a given address, you need to 5524 address 0x00000000. To load it to a given address, you need to
5531 specify the target address as 'offset' parameter with the 'loads' 5525 specify the target address as 'offset' parameter with the 'loads'
5532 command. 5526 command.
5533 5527
5534 Example: install the image to address 0x40100000 (which on the 5528 Example: install the image to address 0x40100000 (which on the
5535 TQM8xxL is in the first Flash bank): 5529 TQM8xxL is in the first Flash bank):
5536 5530
5537 => erase 40100000 401FFFFF 5531 => erase 40100000 401FFFFF
5538 5532
5539 .......... done 5533 .......... done
5540 Erased 8 sectors 5534 Erased 8 sectors
5541 5535
5542 => loads 40100000 5536 => loads 40100000
5543 ## Ready for S-Record download ... 5537 ## Ready for S-Record download ...
5544 ~>examples/image.srec 5538 ~>examples/image.srec
5545 1 2 3 4 5 6 7 8 9 10 11 12 13 ... 5539 1 2 3 4 5 6 7 8 9 10 11 12 13 ...
5546 ... 5540 ...
5547 15989 15990 15991 15992 5541 15989 15990 15991 15992
5548 [file transfer complete] 5542 [file transfer complete]
5549 [connected] 5543 [connected]
5550 ## Start Addr = 0x00000000 5544 ## Start Addr = 0x00000000
5551 5545
5552 5546
5553 You can check the success of the download using the 'iminfo' command; 5547 You can check the success of the download using the 'iminfo' command;
5554 this includes a checksum verification so you can be sure no data 5548 this includes a checksum verification so you can be sure no data
5555 corruption happened: 5549 corruption happened:
5556 5550
5557 => imi 40100000 5551 => imi 40100000
5558 5552
5559 ## Checking Image at 40100000 ... 5553 ## Checking Image at 40100000 ...
5560 Image Name: 2.2.13 for initrd on TQM850L 5554 Image Name: 2.2.13 for initrd on TQM850L
5561 Image Type: PowerPC Linux Kernel Image (gzip compressed) 5555 Image Type: PowerPC Linux Kernel Image (gzip compressed)
5562 Data Size: 335725 Bytes = 327 kB = 0 MB 5556 Data Size: 335725 Bytes = 327 kB = 0 MB
5563 Load Address: 00000000 5557 Load Address: 00000000
5564 Entry Point: 0000000c 5558 Entry Point: 0000000c
5565 Verifying Checksum ... OK 5559 Verifying Checksum ... OK
5566 5560
5567 5561
5568 Boot Linux: 5562 Boot Linux:
5569 ----------- 5563 -----------
5570 5564
5571 The "bootm" command is used to boot an application that is stored in 5565 The "bootm" command is used to boot an application that is stored in
5572 memory (RAM or Flash). In case of a Linux kernel image, the contents 5566 memory (RAM or Flash). In case of a Linux kernel image, the contents
5573 of the "bootargs" environment variable is passed to the kernel as 5567 of the "bootargs" environment variable is passed to the kernel as
5574 parameters. You can check and modify this variable using the 5568 parameters. You can check and modify this variable using the
5575 "printenv" and "setenv" commands: 5569 "printenv" and "setenv" commands:
5576 5570
5577 5571
5578 => printenv bootargs 5572 => printenv bootargs
5579 bootargs=root=/dev/ram 5573 bootargs=root=/dev/ram
5580 5574
5581 => setenv bootargs root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2 5575 => setenv bootargs root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2
5582 5576
5583 => printenv bootargs 5577 => printenv bootargs
5584 bootargs=root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2 5578 bootargs=root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2
5585 5579
5586 => bootm 40020000 5580 => bootm 40020000
5587 ## Booting Linux kernel at 40020000 ... 5581 ## Booting Linux kernel at 40020000 ...
5588 Image Name: 2.2.13 for NFS on TQM850L 5582 Image Name: 2.2.13 for NFS on TQM850L
5589 Image Type: PowerPC Linux Kernel Image (gzip compressed) 5583 Image Type: PowerPC Linux Kernel Image (gzip compressed)
5590 Data Size: 381681 Bytes = 372 kB = 0 MB 5584 Data Size: 381681 Bytes = 372 kB = 0 MB
5591 Load Address: 00000000 5585 Load Address: 00000000
5592 Entry Point: 0000000c 5586 Entry Point: 0000000c
5593 Verifying Checksum ... OK 5587 Verifying Checksum ... OK
5594 Uncompressing Kernel Image ... OK 5588 Uncompressing Kernel Image ... OK
5595 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 5589 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
5596 Boot arguments: root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2 5590 Boot arguments: root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2
5597 time_init: decrementer frequency = 187500000/60 5591 time_init: decrementer frequency = 187500000/60
5598 Calibrating delay loop... 49.77 BogoMIPS 5592 Calibrating delay loop... 49.77 BogoMIPS
5599 Memory: 15208k available (700k kernel code, 444k data, 32k init) [c0000000,c1000000] 5593 Memory: 15208k available (700k kernel code, 444k data, 32k init) [c0000000,c1000000]
5600 ... 5594 ...
5601 5595
5602 If you want to boot a Linux kernel with initial RAM disk, you pass 5596 If you want to boot a Linux kernel with initial RAM disk, you pass
5603 the memory addresses of both the kernel and the initrd image (PPBCOOT 5597 the memory addresses of both the kernel and the initrd image (PPBCOOT
5604 format!) to the "bootm" command: 5598 format!) to the "bootm" command:
5605 5599
5606 => imi 40100000 40200000 5600 => imi 40100000 40200000
5607 5601
5608 ## Checking Image at 40100000 ... 5602 ## Checking Image at 40100000 ...
5609 Image Name: 2.2.13 for initrd on TQM850L 5603 Image Name: 2.2.13 for initrd on TQM850L
5610 Image Type: PowerPC Linux Kernel Image (gzip compressed) 5604 Image Type: PowerPC Linux Kernel Image (gzip compressed)
5611 Data Size: 335725 Bytes = 327 kB = 0 MB 5605 Data Size: 335725 Bytes = 327 kB = 0 MB
5612 Load Address: 00000000 5606 Load Address: 00000000
5613 Entry Point: 0000000c 5607 Entry Point: 0000000c
5614 Verifying Checksum ... OK 5608 Verifying Checksum ... OK
5615 5609
5616 ## Checking Image at 40200000 ... 5610 ## Checking Image at 40200000 ...
5617 Image Name: Simple Ramdisk Image 5611 Image Name: Simple Ramdisk Image
5618 Image Type: PowerPC Linux RAMDisk Image (gzip compressed) 5612 Image Type: PowerPC Linux RAMDisk Image (gzip compressed)
5619 Data Size: 566530 Bytes = 553 kB = 0 MB 5613 Data Size: 566530 Bytes = 553 kB = 0 MB
5620 Load Address: 00000000 5614 Load Address: 00000000
5621 Entry Point: 00000000 5615 Entry Point: 00000000
5622 Verifying Checksum ... OK 5616 Verifying Checksum ... OK
5623 5617
5624 => bootm 40100000 40200000 5618 => bootm 40100000 40200000
5625 ## Booting Linux kernel at 40100000 ... 5619 ## Booting Linux kernel at 40100000 ...
5626 Image Name: 2.2.13 for initrd on TQM850L 5620 Image Name: 2.2.13 for initrd on TQM850L
5627 Image Type: PowerPC Linux Kernel Image (gzip compressed) 5621 Image Type: PowerPC Linux Kernel Image (gzip compressed)
5628 Data Size: 335725 Bytes = 327 kB = 0 MB 5622 Data Size: 335725 Bytes = 327 kB = 0 MB
5629 Load Address: 00000000 5623 Load Address: 00000000
5630 Entry Point: 0000000c 5624 Entry Point: 0000000c
5631 Verifying Checksum ... OK 5625 Verifying Checksum ... OK
5632 Uncompressing Kernel Image ... OK 5626 Uncompressing Kernel Image ... OK
5633 ## Loading RAMDisk Image at 40200000 ... 5627 ## Loading RAMDisk Image at 40200000 ...
5634 Image Name: Simple Ramdisk Image 5628 Image Name: Simple Ramdisk Image
5635 Image Type: PowerPC Linux RAMDisk Image (gzip compressed) 5629 Image Type: PowerPC Linux RAMDisk Image (gzip compressed)
5636 Data Size: 566530 Bytes = 553 kB = 0 MB 5630 Data Size: 566530 Bytes = 553 kB = 0 MB
5637 Load Address: 00000000 5631 Load Address: 00000000
5638 Entry Point: 00000000 5632 Entry Point: 00000000
5639 Verifying Checksum ... OK 5633 Verifying Checksum ... OK
5640 Loading Ramdisk ... OK 5634 Loading Ramdisk ... OK
5641 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 5635 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
5642 Boot arguments: root=/dev/ram 5636 Boot arguments: root=/dev/ram
5643 time_init: decrementer frequency = 187500000/60 5637 time_init: decrementer frequency = 187500000/60
5644 Calibrating delay loop... 49.77 BogoMIPS 5638 Calibrating delay loop... 49.77 BogoMIPS
5645 ... 5639 ...
5646 RAMDISK: Compressed image found at block 0 5640 RAMDISK: Compressed image found at block 0
5647 VFS: Mounted root (ext2 filesystem). 5641 VFS: Mounted root (ext2 filesystem).
5648 5642
5649 bash# 5643 bash#
5650 5644
5651 Boot Linux and pass a flat device tree: 5645 Boot Linux and pass a flat device tree:
5652 ----------- 5646 -----------
5653 5647
5654 First, U-Boot must be compiled with the appropriate defines. See the section 5648 First, U-Boot must be compiled with the appropriate defines. See the section
5655 titled "Linux Kernel Interface" above for a more in depth explanation. The 5649 titled "Linux Kernel Interface" above for a more in depth explanation. The
5656 following is an example of how to start a kernel and pass an updated 5650 following is an example of how to start a kernel and pass an updated
5657 flat device tree: 5651 flat device tree:
5658 5652
5659 => print oftaddr 5653 => print oftaddr
5660 oftaddr=0x300000 5654 oftaddr=0x300000
5661 => print oft 5655 => print oft
5662 oft=oftrees/mpc8540ads.dtb 5656 oft=oftrees/mpc8540ads.dtb
5663 => tftp $oftaddr $oft 5657 => tftp $oftaddr $oft
5664 Speed: 1000, full duplex 5658 Speed: 1000, full duplex
5665 Using TSEC0 device 5659 Using TSEC0 device
5666 TFTP from server 192.168.1.1; our IP address is 192.168.1.101 5660 TFTP from server 192.168.1.1; our IP address is 192.168.1.101
5667 Filename 'oftrees/mpc8540ads.dtb'. 5661 Filename 'oftrees/mpc8540ads.dtb'.
5668 Load address: 0x300000 5662 Load address: 0x300000
5669 Loading: # 5663 Loading: #
5670 done 5664 done
5671 Bytes transferred = 4106 (100a hex) 5665 Bytes transferred = 4106 (100a hex)
5672 => tftp $loadaddr $bootfile 5666 => tftp $loadaddr $bootfile
5673 Speed: 1000, full duplex 5667 Speed: 1000, full duplex
5674 Using TSEC0 device 5668 Using TSEC0 device
5675 TFTP from server 192.168.1.1; our IP address is 192.168.1.2 5669 TFTP from server 192.168.1.1; our IP address is 192.168.1.2
5676 Filename 'uImage'. 5670 Filename 'uImage'.
5677 Load address: 0x200000 5671 Load address: 0x200000
5678 Loading:############ 5672 Loading:############
5679 done 5673 done
5680 Bytes transferred = 1029407 (fb51f hex) 5674 Bytes transferred = 1029407 (fb51f hex)
5681 => print loadaddr 5675 => print loadaddr
5682 loadaddr=200000 5676 loadaddr=200000
5683 => print oftaddr 5677 => print oftaddr
5684 oftaddr=0x300000 5678 oftaddr=0x300000
5685 => bootm $loadaddr - $oftaddr 5679 => bootm $loadaddr - $oftaddr
5686 ## Booting image at 00200000 ... 5680 ## Booting image at 00200000 ...
5687 Image Name: Linux-2.6.17-dirty 5681 Image Name: Linux-2.6.17-dirty
5688 Image Type: PowerPC Linux Kernel Image (gzip compressed) 5682 Image Type: PowerPC Linux Kernel Image (gzip compressed)
5689 Data Size: 1029343 Bytes = 1005.2 kB 5683 Data Size: 1029343 Bytes = 1005.2 kB
5690 Load Address: 00000000 5684 Load Address: 00000000
5691 Entry Point: 00000000 5685 Entry Point: 00000000
5692 Verifying Checksum ... OK 5686 Verifying Checksum ... OK
5693 Uncompressing Kernel Image ... OK 5687 Uncompressing Kernel Image ... OK
5694 Booting using flat device tree at 0x300000 5688 Booting using flat device tree at 0x300000
5695 Using MPC85xx ADS machine description 5689 Using MPC85xx ADS machine description
5696 Memory CAM mapping: CAM0=256Mb, CAM1=256Mb, CAM2=0Mb residual: 0Mb 5690 Memory CAM mapping: CAM0=256Mb, CAM1=256Mb, CAM2=0Mb residual: 0Mb
5697 [snip] 5691 [snip]
5698 5692
5699 5693
5700 More About U-Boot Image Types: 5694 More About U-Boot Image Types:
5701 ------------------------------ 5695 ------------------------------
5702 5696
5703 U-Boot supports the following image types: 5697 U-Boot supports the following image types:
5704 5698
5705 "Standalone Programs" are directly runnable in the environment 5699 "Standalone Programs" are directly runnable in the environment
5706 provided by U-Boot; it is expected that (if they behave 5700 provided by U-Boot; it is expected that (if they behave
5707 well) you can continue to work in U-Boot after return from 5701 well) you can continue to work in U-Boot after return from
5708 the Standalone Program. 5702 the Standalone Program.
5709 "OS Kernel Images" are usually images of some Embedded OS which 5703 "OS Kernel Images" are usually images of some Embedded OS which
5710 will take over control completely. Usually these programs 5704 will take over control completely. Usually these programs
5711 will install their own set of exception handlers, device 5705 will install their own set of exception handlers, device
5712 drivers, set up the MMU, etc. - this means, that you cannot 5706 drivers, set up the MMU, etc. - this means, that you cannot
5713 expect to re-enter U-Boot except by resetting the CPU. 5707 expect to re-enter U-Boot except by resetting the CPU.
5714 "RAMDisk Images" are more or less just data blocks, and their 5708 "RAMDisk Images" are more or less just data blocks, and their
5715 parameters (address, size) are passed to an OS kernel that is 5709 parameters (address, size) are passed to an OS kernel that is
5716 being started. 5710 being started.
5717 "Multi-File Images" contain several images, typically an OS 5711 "Multi-File Images" contain several images, typically an OS
5718 (Linux) kernel image and one or more data images like 5712 (Linux) kernel image and one or more data images like
5719 RAMDisks. This construct is useful for instance when you want 5713 RAMDisks. This construct is useful for instance when you want
5720 to boot over the network using BOOTP etc., where the boot 5714 to boot over the network using BOOTP etc., where the boot
5721 server provides just a single image file, but you want to get 5715 server provides just a single image file, but you want to get
5722 for instance an OS kernel and a RAMDisk image. 5716 for instance an OS kernel and a RAMDisk image.
5723 5717
5724 "Multi-File Images" start with a list of image sizes, each 5718 "Multi-File Images" start with a list of image sizes, each
5725 image size (in bytes) specified by an "uint32_t" in network 5719 image size (in bytes) specified by an "uint32_t" in network
5726 byte order. This list is terminated by an "(uint32_t)0". 5720 byte order. This list is terminated by an "(uint32_t)0".
5727 Immediately after the terminating 0 follow the images, one by 5721 Immediately after the terminating 0 follow the images, one by
5728 one, all aligned on "uint32_t" boundaries (size rounded up to 5722 one, all aligned on "uint32_t" boundaries (size rounded up to
5729 a multiple of 4 bytes). 5723 a multiple of 4 bytes).
5730 5724
5731 "Firmware Images" are binary images containing firmware (like 5725 "Firmware Images" are binary images containing firmware (like
5732 U-Boot or FPGA images) which usually will be programmed to 5726 U-Boot or FPGA images) which usually will be programmed to
5733 flash memory. 5727 flash memory.
5734 5728
5735 "Script files" are command sequences that will be executed by 5729 "Script files" are command sequences that will be executed by
5736 U-Boot's command interpreter; this feature is especially 5730 U-Boot's command interpreter; this feature is especially
5737 useful when you configure U-Boot to use a real shell (hush) 5731 useful when you configure U-Boot to use a real shell (hush)
5738 as command interpreter. 5732 as command interpreter.
5739 5733
5740 Booting the Linux zImage: 5734 Booting the Linux zImage:
5741 ------------------------- 5735 -------------------------
5742 5736
5743 On some platforms, it's possible to boot Linux zImage. This is done 5737 On some platforms, it's possible to boot Linux zImage. This is done
5744 using the "bootz" command. The syntax of "bootz" command is the same 5738 using the "bootz" command. The syntax of "bootz" command is the same
5745 as the syntax of "bootm" command. 5739 as the syntax of "bootm" command.
5746 5740
5747 Note, defining the CONFIG_SUPPORT_RAW_INITRD allows user to supply 5741 Note, defining the CONFIG_SUPPORT_RAW_INITRD allows user to supply
5748 kernel with raw initrd images. The syntax is slightly different, the 5742 kernel with raw initrd images. The syntax is slightly different, the
5749 address of the initrd must be augmented by it's size, in the following 5743 address of the initrd must be augmented by it's size, in the following
5750 format: "<initrd addres>:<initrd size>". 5744 format: "<initrd addres>:<initrd size>".
5751 5745
5752 5746
5753 Standalone HOWTO: 5747 Standalone HOWTO:
5754 ================= 5748 =================
5755 5749
5756 One of the features of U-Boot is that you can dynamically load and 5750 One of the features of U-Boot is that you can dynamically load and
5757 run "standalone" applications, which can use some resources of 5751 run "standalone" applications, which can use some resources of
5758 U-Boot like console I/O functions or interrupt services. 5752 U-Boot like console I/O functions or interrupt services.
5759 5753
5760 Two simple examples are included with the sources: 5754 Two simple examples are included with the sources:
5761 5755
5762 "Hello World" Demo: 5756 "Hello World" Demo:
5763 ------------------- 5757 -------------------
5764 5758
5765 'examples/hello_world.c' contains a small "Hello World" Demo 5759 'examples/hello_world.c' contains a small "Hello World" Demo
5766 application; it is automatically compiled when you build U-Boot. 5760 application; it is automatically compiled when you build U-Boot.
5767 It's configured to run at address 0x00040004, so you can play with it 5761 It's configured to run at address 0x00040004, so you can play with it
5768 like that: 5762 like that:
5769 5763
5770 => loads 5764 => loads
5771 ## Ready for S-Record download ... 5765 ## Ready for S-Record download ...
5772 ~>examples/hello_world.srec 5766 ~>examples/hello_world.srec
5773 1 2 3 4 5 6 7 8 9 10 11 ... 5767 1 2 3 4 5 6 7 8 9 10 11 ...
5774 [file transfer complete] 5768 [file transfer complete]
5775 [connected] 5769 [connected]
5776 ## Start Addr = 0x00040004 5770 ## Start Addr = 0x00040004
5777 5771
5778 => go 40004 Hello World! This is a test. 5772 => go 40004 Hello World! This is a test.
5779 ## Starting application at 0x00040004 ... 5773 ## Starting application at 0x00040004 ...
5780 Hello World 5774 Hello World
5781 argc = 7 5775 argc = 7
5782 argv[0] = "40004" 5776 argv[0] = "40004"
5783 argv[1] = "Hello" 5777 argv[1] = "Hello"
5784 argv[2] = "World!" 5778 argv[2] = "World!"
5785 argv[3] = "This" 5779 argv[3] = "This"
5786 argv[4] = "is" 5780 argv[4] = "is"
5787 argv[5] = "a" 5781 argv[5] = "a"
5788 argv[6] = "test." 5782 argv[6] = "test."
5789 argv[7] = "<NULL>" 5783 argv[7] = "<NULL>"
5790 Hit any key to exit ... 5784 Hit any key to exit ...
5791 5785
5792 ## Application terminated, rc = 0x0 5786 ## Application terminated, rc = 0x0
5793 5787
5794 Another example, which demonstrates how to register a CPM interrupt 5788 Another example, which demonstrates how to register a CPM interrupt
5795 handler with the U-Boot code, can be found in 'examples/timer.c'. 5789 handler with the U-Boot code, can be found in 'examples/timer.c'.
5796 Here, a CPM timer is set up to generate an interrupt every second. 5790 Here, a CPM timer is set up to generate an interrupt every second.
5797 The interrupt service routine is trivial, just printing a '.' 5791 The interrupt service routine is trivial, just printing a '.'
5798 character, but this is just a demo program. The application can be 5792 character, but this is just a demo program. The application can be
5799 controlled by the following keys: 5793 controlled by the following keys:
5800 5794
5801 ? - print current values og the CPM Timer registers 5795 ? - print current values og the CPM Timer registers
5802 b - enable interrupts and start timer 5796 b - enable interrupts and start timer
5803 e - stop timer and disable interrupts 5797 e - stop timer and disable interrupts
5804 q - quit application 5798 q - quit application
5805 5799
5806 => loads 5800 => loads
5807 ## Ready for S-Record download ... 5801 ## Ready for S-Record download ...
5808 ~>examples/timer.srec 5802 ~>examples/timer.srec
5809 1 2 3 4 5 6 7 8 9 10 11 ... 5803 1 2 3 4 5 6 7 8 9 10 11 ...
5810 [file transfer complete] 5804 [file transfer complete]
5811 [connected] 5805 [connected]
5812 ## Start Addr = 0x00040004 5806 ## Start Addr = 0x00040004
5813 5807
5814 => go 40004 5808 => go 40004
5815 ## Starting application at 0x00040004 ... 5809 ## Starting application at 0x00040004 ...
5816 TIMERS=0xfff00980 5810 TIMERS=0xfff00980
5817 Using timer 1 5811 Using timer 1
5818 tgcr @ 0xfff00980, tmr @ 0xfff00990, trr @ 0xfff00994, tcr @ 0xfff00998, tcn @ 0xfff0099c, ter @ 0xfff009b0 5812 tgcr @ 0xfff00980, tmr @ 0xfff00990, trr @ 0xfff00994, tcr @ 0xfff00998, tcn @ 0xfff0099c, ter @ 0xfff009b0
5819 5813
5820 Hit 'b': 5814 Hit 'b':
5821 [q, b, e, ?] Set interval 1000000 us 5815 [q, b, e, ?] Set interval 1000000 us
5822 Enabling timer 5816 Enabling timer
5823 Hit '?': 5817 Hit '?':
5824 [q, b, e, ?] ........ 5818 [q, b, e, ?] ........
5825 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0xef6, ter=0x0 5819 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0xef6, ter=0x0
5826 Hit '?': 5820 Hit '?':
5827 [q, b, e, ?] . 5821 [q, b, e, ?] .
5828 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x2ad4, ter=0x0 5822 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x2ad4, ter=0x0
5829 Hit '?': 5823 Hit '?':
5830 [q, b, e, ?] . 5824 [q, b, e, ?] .
5831 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x1efc, ter=0x0 5825 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x1efc, ter=0x0
5832 Hit '?': 5826 Hit '?':
5833 [q, b, e, ?] . 5827 [q, b, e, ?] .
5834 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x169d, ter=0x0 5828 tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x169d, ter=0x0
5835 Hit 'e': 5829 Hit 'e':
5836 [q, b, e, ?] ...Stopping timer 5830 [q, b, e, ?] ...Stopping timer
5837 Hit 'q': 5831 Hit 'q':
5838 [q, b, e, ?] ## Application terminated, rc = 0x0 5832 [q, b, e, ?] ## Application terminated, rc = 0x0
5839 5833
5840 5834
5841 Minicom warning: 5835 Minicom warning:
5842 ================ 5836 ================
5843 5837
5844 Over time, many people have reported problems when trying to use the 5838 Over time, many people have reported problems when trying to use the
5845 "minicom" terminal emulation program for serial download. I (wd) 5839 "minicom" terminal emulation program for serial download. I (wd)
5846 consider minicom to be broken, and recommend not to use it. Under 5840 consider minicom to be broken, and recommend not to use it. Under
5847 Unix, I recommend to use C-Kermit for general purpose use (and 5841 Unix, I recommend to use C-Kermit for general purpose use (and
5848 especially for kermit binary protocol download ("loadb" command), and 5842 especially for kermit binary protocol download ("loadb" command), and
5849 use "cu" for S-Record download ("loads" command). See 5843 use "cu" for S-Record download ("loads" command). See
5850 http://www.denx.de/wiki/view/DULG/SystemSetup#Section_4.3. 5844 http://www.denx.de/wiki/view/DULG/SystemSetup#Section_4.3.
5851 for help with kermit. 5845 for help with kermit.
5852 5846
5853 5847
5854 Nevertheless, if you absolutely want to use it try adding this 5848 Nevertheless, if you absolutely want to use it try adding this
5855 configuration to your "File transfer protocols" section: 5849 configuration to your "File transfer protocols" section:
5856 5850
5857 Name Program Name U/D FullScr IO-Red. Multi 5851 Name Program Name U/D FullScr IO-Red. Multi
5858 X kermit /usr/bin/kermit -i -l %l -s Y U Y N N 5852 X kermit /usr/bin/kermit -i -l %l -s Y U Y N N
5859 Y kermit /usr/bin/kermit -i -l %l -r N D Y N N 5853 Y kermit /usr/bin/kermit -i -l %l -r N D Y N N
5860 5854
5861 5855
5862 NetBSD Notes: 5856 NetBSD Notes:
5863 ============= 5857 =============
5864 5858
5865 Starting at version 0.9.2, U-Boot supports NetBSD both as host 5859 Starting at version 0.9.2, U-Boot supports NetBSD both as host
5866 (build U-Boot) and target system (boots NetBSD/mpc8xx). 5860 (build U-Boot) and target system (boots NetBSD/mpc8xx).
5867 5861
5868 Building requires a cross environment; it is known to work on 5862 Building requires a cross environment; it is known to work on
5869 NetBSD/i386 with the cross-powerpc-netbsd-1.3 package (you will also 5863 NetBSD/i386 with the cross-powerpc-netbsd-1.3 package (you will also
5870 need gmake since the Makefiles are not compatible with BSD make). 5864 need gmake since the Makefiles are not compatible with BSD make).
5871 Note that the cross-powerpc package does not install include files; 5865 Note that the cross-powerpc package does not install include files;
5872 attempting to build U-Boot will fail because <machine/ansi.h> is 5866 attempting to build U-Boot will fail because <machine/ansi.h> is
5873 missing. This file has to be installed and patched manually: 5867 missing. This file has to be installed and patched manually:
5874 5868
5875 # cd /usr/pkg/cross/powerpc-netbsd/include 5869 # cd /usr/pkg/cross/powerpc-netbsd/include
5876 # mkdir powerpc 5870 # mkdir powerpc
5877 # ln -s powerpc machine 5871 # ln -s powerpc machine
5878 # cp /usr/src/sys/arch/powerpc/include/ansi.h powerpc/ansi.h 5872 # cp /usr/src/sys/arch/powerpc/include/ansi.h powerpc/ansi.h
5879 # ${EDIT} powerpc/ansi.h ## must remove __va_list, _BSD_VA_LIST 5873 # ${EDIT} powerpc/ansi.h ## must remove __va_list, _BSD_VA_LIST
5880 5874
5881 Native builds *don't* work due to incompatibilities between native 5875 Native builds *don't* work due to incompatibilities between native
5882 and U-Boot include files. 5876 and U-Boot include files.
5883 5877
5884 Booting assumes that (the first part of) the image booted is a 5878 Booting assumes that (the first part of) the image booted is a
5885 stage-2 loader which in turn loads and then invokes the kernel 5879 stage-2 loader which in turn loads and then invokes the kernel
5886 proper. Loader sources will eventually appear in the NetBSD source 5880 proper. Loader sources will eventually appear in the NetBSD source
5887 tree (probably in sys/arc/mpc8xx/stand/u-boot_stage2/); in the 5881 tree (probably in sys/arc/mpc8xx/stand/u-boot_stage2/); in the
5888 meantime, see ftp://ftp.denx.de/pub/u-boot/ppcboot_stage2.tar.gz 5882 meantime, see ftp://ftp.denx.de/pub/u-boot/ppcboot_stage2.tar.gz
5889 5883
5890 5884
5891 Implementation Internals: 5885 Implementation Internals:
5892 ========================= 5886 =========================
5893 5887
5894 The following is not intended to be a complete description of every 5888 The following is not intended to be a complete description of every
5895 implementation detail. However, it should help to understand the 5889 implementation detail. However, it should help to understand the
5896 inner workings of U-Boot and make it easier to port it to custom 5890 inner workings of U-Boot and make it easier to port it to custom
5897 hardware. 5891 hardware.
5898 5892
5899 5893
5900 Initial Stack, Global Data: 5894 Initial Stack, Global Data:
5901 --------------------------- 5895 ---------------------------
5902 5896
5903 The implementation of U-Boot is complicated by the fact that U-Boot 5897 The implementation of U-Boot is complicated by the fact that U-Boot
5904 starts running out of ROM (flash memory), usually without access to 5898 starts running out of ROM (flash memory), usually without access to
5905 system RAM (because the memory controller is not initialized yet). 5899 system RAM (because the memory controller is not initialized yet).
5906 This means that we don't have writable Data or BSS segments, and BSS 5900 This means that we don't have writable Data or BSS segments, and BSS
5907 is not initialized as zero. To be able to get a C environment working 5901 is not initialized as zero. To be able to get a C environment working
5908 at all, we have to allocate at least a minimal stack. Implementation 5902 at all, we have to allocate at least a minimal stack. Implementation
5909 options for this are defined and restricted by the CPU used: Some CPU 5903 options for this are defined and restricted by the CPU used: Some CPU
5910 models provide on-chip memory (like the IMMR area on MPC8xx and 5904 models provide on-chip memory (like the IMMR area on MPC8xx and
5911 MPC826x processors), on others (parts of) the data cache can be 5905 MPC826x processors), on others (parts of) the data cache can be
5912 locked as (mis-) used as memory, etc. 5906 locked as (mis-) used as memory, etc.
5913 5907
5914 Chris Hallinan posted a good summary of these issues to the 5908 Chris Hallinan posted a good summary of these issues to the
5915 U-Boot mailing list: 5909 U-Boot mailing list:
5916 5910
5917 Subject: RE: [U-Boot-Users] RE: More On Memory Bank x (nothingness)? 5911 Subject: RE: [U-Boot-Users] RE: More On Memory Bank x (nothingness)?
5918 From: "Chris Hallinan" <clh@net1plus.com> 5912 From: "Chris Hallinan" <clh@net1plus.com>
5919 Date: Mon, 10 Feb 2003 16:43:46 -0500 (22:43 MET) 5913 Date: Mon, 10 Feb 2003 16:43:46 -0500 (22:43 MET)
5920 ... 5914 ...
5921 5915
5922 Correct me if I'm wrong, folks, but the way I understand it 5916 Correct me if I'm wrong, folks, but the way I understand it
5923 is this: Using DCACHE as initial RAM for Stack, etc, does not 5917 is this: Using DCACHE as initial RAM for Stack, etc, does not
5924 require any physical RAM backing up the cache. The cleverness 5918 require any physical RAM backing up the cache. The cleverness
5925 is that the cache is being used as a temporary supply of 5919 is that the cache is being used as a temporary supply of
5926 necessary storage before the SDRAM controller is setup. It's 5920 necessary storage before the SDRAM controller is setup. It's
5927 beyond the scope of this list to explain the details, but you 5921 beyond the scope of this list to explain the details, but you
5928 can see how this works by studying the cache architecture and 5922 can see how this works by studying the cache architecture and
5929 operation in the architecture and processor-specific manuals. 5923 operation in the architecture and processor-specific manuals.
5930 5924
5931 OCM is On Chip Memory, which I believe the 405GP has 4K. It 5925 OCM is On Chip Memory, which I believe the 405GP has 4K. It
5932 is another option for the system designer to use as an 5926 is another option for the system designer to use as an
5933 initial stack/RAM area prior to SDRAM being available. Either 5927 initial stack/RAM area prior to SDRAM being available. Either
5934 option should work for you. Using CS 4 should be fine if your 5928 option should work for you. Using CS 4 should be fine if your
5935 board designers haven't used it for something that would 5929 board designers haven't used it for something that would
5936 cause you grief during the initial boot! It is frequently not 5930 cause you grief during the initial boot! It is frequently not
5937 used. 5931 used.
5938 5932
5939 CONFIG_SYS_INIT_RAM_ADDR should be somewhere that won't interfere 5933 CONFIG_SYS_INIT_RAM_ADDR should be somewhere that won't interfere
5940 with your processor/board/system design. The default value 5934 with your processor/board/system design. The default value
5941 you will find in any recent u-boot distribution in 5935 you will find in any recent u-boot distribution in
5942 walnut.h should work for you. I'd set it to a value larger 5936 walnut.h should work for you. I'd set it to a value larger
5943 than your SDRAM module. If you have a 64MB SDRAM module, set 5937 than your SDRAM module. If you have a 64MB SDRAM module, set
5944 it above 400_0000. Just make sure your board has no resources 5938 it above 400_0000. Just make sure your board has no resources
5945 that are supposed to respond to that address! That code in 5939 that are supposed to respond to that address! That code in
5946 start.S has been around a while and should work as is when 5940 start.S has been around a while and should work as is when
5947 you get the config right. 5941 you get the config right.
5948 5942
5949 -Chris Hallinan 5943 -Chris Hallinan
5950 DS4.COM, Inc. 5944 DS4.COM, Inc.
5951 5945
5952 It is essential to remember this, since it has some impact on the C 5946 It is essential to remember this, since it has some impact on the C
5953 code for the initialization procedures: 5947 code for the initialization procedures:
5954 5948
5955 * Initialized global data (data segment) is read-only. Do not attempt 5949 * Initialized global data (data segment) is read-only. Do not attempt
5956 to write it. 5950 to write it.
5957 5951
5958 * Do not use any uninitialized global data (or implicitly initialized 5952 * Do not use any uninitialized global data (or implicitly initialized
5959 as zero data - BSS segment) at all - this is undefined, initiali- 5953 as zero data - BSS segment) at all - this is undefined, initiali-
5960 zation is performed later (when relocating to RAM). 5954 zation is performed later (when relocating to RAM).
5961 5955
5962 * Stack space is very limited. Avoid big data buffers or things like 5956 * Stack space is very limited. Avoid big data buffers or things like
5963 that. 5957 that.
5964 5958
5965 Having only the stack as writable memory limits means we cannot use 5959 Having only the stack as writable memory limits means we cannot use
5966 normal global data to share information between the code. But it 5960 normal global data to share information between the code. But it
5967 turned out that the implementation of U-Boot can be greatly 5961 turned out that the implementation of U-Boot can be greatly
5968 simplified by making a global data structure (gd_t) available to all 5962 simplified by making a global data structure (gd_t) available to all
5969 functions. We could pass a pointer to this data as argument to _all_ 5963 functions. We could pass a pointer to this data as argument to _all_
5970 functions, but this would bloat the code. Instead we use a feature of 5964 functions, but this would bloat the code. Instead we use a feature of
5971 the GCC compiler (Global Register Variables) to share the data: we 5965 the GCC compiler (Global Register Variables) to share the data: we
5972 place a pointer (gd) to the global data into a register which we 5966 place a pointer (gd) to the global data into a register which we
5973 reserve for this purpose. 5967 reserve for this purpose.
5974 5968
5975 When choosing a register for such a purpose we are restricted by the 5969 When choosing a register for such a purpose we are restricted by the
5976 relevant (E)ABI specifications for the current architecture, and by 5970 relevant (E)ABI specifications for the current architecture, and by
5977 GCC's implementation. 5971 GCC's implementation.
5978 5972
5979 For PowerPC, the following registers have specific use: 5973 For PowerPC, the following registers have specific use:
5980 R1: stack pointer 5974 R1: stack pointer
5981 R2: reserved for system use 5975 R2: reserved for system use
5982 R3-R4: parameter passing and return values 5976 R3-R4: parameter passing and return values
5983 R5-R10: parameter passing 5977 R5-R10: parameter passing
5984 R13: small data area pointer 5978 R13: small data area pointer
5985 R30: GOT pointer 5979 R30: GOT pointer
5986 R31: frame pointer 5980 R31: frame pointer
5987 5981
5988 (U-Boot also uses R12 as internal GOT pointer. r12 5982 (U-Boot also uses R12 as internal GOT pointer. r12
5989 is a volatile register so r12 needs to be reset when 5983 is a volatile register so r12 needs to be reset when
5990 going back and forth between asm and C) 5984 going back and forth between asm and C)
5991 5985
5992 ==> U-Boot will use R2 to hold a pointer to the global data 5986 ==> U-Boot will use R2 to hold a pointer to the global data
5993 5987
5994 Note: on PPC, we could use a static initializer (since the 5988 Note: on PPC, we could use a static initializer (since the
5995 address of the global data structure is known at compile time), 5989 address of the global data structure is known at compile time),
5996 but it turned out that reserving a register results in somewhat 5990 but it turned out that reserving a register results in somewhat
5997 smaller code - although the code savings are not that big (on 5991 smaller code - although the code savings are not that big (on
5998 average for all boards 752 bytes for the whole U-Boot image, 5992 average for all boards 752 bytes for the whole U-Boot image,
5999 624 text + 127 data). 5993 624 text + 127 data).
6000 5994
6001 On Blackfin, the normal C ABI (except for P3) is followed as documented here: 5995 On Blackfin, the normal C ABI (except for P3) is followed as documented here:
6002 http://docs.blackfin.uclinux.org/doku.php?id=application_binary_interface 5996 http://docs.blackfin.uclinux.org/doku.php?id=application_binary_interface
6003 5997
6004 ==> U-Boot will use P3 to hold a pointer to the global data 5998 ==> U-Boot will use P3 to hold a pointer to the global data
6005 5999
6006 On ARM, the following registers are used: 6000 On ARM, the following registers are used:
6007 6001
6008 R0: function argument word/integer result 6002 R0: function argument word/integer result
6009 R1-R3: function argument word 6003 R1-R3: function argument word
6010 R9: platform specific 6004 R9: platform specific
6011 R10: stack limit (used only if stack checking is enabled) 6005 R10: stack limit (used only if stack checking is enabled)
6012 R11: argument (frame) pointer 6006 R11: argument (frame) pointer
6013 R12: temporary workspace 6007 R12: temporary workspace
6014 R13: stack pointer 6008 R13: stack pointer
6015 R14: link register 6009 R14: link register
6016 R15: program counter 6010 R15: program counter
6017 6011
6018 ==> U-Boot will use R9 to hold a pointer to the global data 6012 ==> U-Boot will use R9 to hold a pointer to the global data
6019 6013
6020 Note: on ARM, only R_ARM_RELATIVE relocations are supported. 6014 Note: on ARM, only R_ARM_RELATIVE relocations are supported.
6021 6015
6022 On Nios II, the ABI is documented here: 6016 On Nios II, the ABI is documented here:
6023 http://www.altera.com/literature/hb/nios2/n2cpu_nii51016.pdf 6017 http://www.altera.com/literature/hb/nios2/n2cpu_nii51016.pdf
6024 6018
6025 ==> U-Boot will use gp to hold a pointer to the global data 6019 ==> U-Boot will use gp to hold a pointer to the global data
6026 6020
6027 Note: on Nios II, we give "-G0" option to gcc and don't use gp 6021 Note: on Nios II, we give "-G0" option to gcc and don't use gp
6028 to access small data sections, so gp is free. 6022 to access small data sections, so gp is free.
6029 6023
6030 On NDS32, the following registers are used: 6024 On NDS32, the following registers are used:
6031 6025
6032 R0-R1: argument/return 6026 R0-R1: argument/return
6033 R2-R5: argument 6027 R2-R5: argument
6034 R15: temporary register for assembler 6028 R15: temporary register for assembler
6035 R16: trampoline register 6029 R16: trampoline register
6036 R28: frame pointer (FP) 6030 R28: frame pointer (FP)
6037 R29: global pointer (GP) 6031 R29: global pointer (GP)
6038 R30: link register (LP) 6032 R30: link register (LP)
6039 R31: stack pointer (SP) 6033 R31: stack pointer (SP)
6040 PC: program counter (PC) 6034 PC: program counter (PC)
6041 6035
6042 ==> U-Boot will use R10 to hold a pointer to the global data 6036 ==> U-Boot will use R10 to hold a pointer to the global data
6043 6037
6044 NOTE: DECLARE_GLOBAL_DATA_PTR must be used with file-global scope, 6038 NOTE: DECLARE_GLOBAL_DATA_PTR must be used with file-global scope,
6045 or current versions of GCC may "optimize" the code too much. 6039 or current versions of GCC may "optimize" the code too much.
6046 6040
6047 Memory Management: 6041 Memory Management:
6048 ------------------ 6042 ------------------
6049 6043
6050 U-Boot runs in system state and uses physical addresses, i.e. the 6044 U-Boot runs in system state and uses physical addresses, i.e. the
6051 MMU is not used either for address mapping nor for memory protection. 6045 MMU is not used either for address mapping nor for memory protection.
6052 6046
6053 The available memory is mapped to fixed addresses using the memory 6047 The available memory is mapped to fixed addresses using the memory
6054 controller. In this process, a contiguous block is formed for each 6048 controller. In this process, a contiguous block is formed for each
6055 memory type (Flash, SDRAM, SRAM), even when it consists of several 6049 memory type (Flash, SDRAM, SRAM), even when it consists of several
6056 physical memory banks. 6050 physical memory banks.
6057 6051
6058 U-Boot is installed in the first 128 kB of the first Flash bank (on 6052 U-Boot is installed in the first 128 kB of the first Flash bank (on
6059 TQM8xxL modules this is the range 0x40000000 ... 0x4001FFFF). After 6053 TQM8xxL modules this is the range 0x40000000 ... 0x4001FFFF). After
6060 booting and sizing and initializing DRAM, the code relocates itself 6054 booting and sizing and initializing DRAM, the code relocates itself
6061 to the upper end of DRAM. Immediately below the U-Boot code some 6055 to the upper end of DRAM. Immediately below the U-Boot code some
6062 memory is reserved for use by malloc() [see CONFIG_SYS_MALLOC_LEN 6056 memory is reserved for use by malloc() [see CONFIG_SYS_MALLOC_LEN
6063 configuration setting]. Below that, a structure with global Board 6057 configuration setting]. Below that, a structure with global Board
6064 Info data is placed, followed by the stack (growing downward). 6058 Info data is placed, followed by the stack (growing downward).
6065 6059
6066 Additionally, some exception handler code is copied to the low 8 kB 6060 Additionally, some exception handler code is copied to the low 8 kB
6067 of DRAM (0x00000000 ... 0x00001FFF). 6061 of DRAM (0x00000000 ... 0x00001FFF).
6068 6062
6069 So a typical memory configuration with 16 MB of DRAM could look like 6063 So a typical memory configuration with 16 MB of DRAM could look like
6070 this: 6064 this:
6071 6065
6072 0x0000 0000 Exception Vector code 6066 0x0000 0000 Exception Vector code
6073 : 6067 :
6074 0x0000 1FFF 6068 0x0000 1FFF
6075 0x0000 2000 Free for Application Use 6069 0x0000 2000 Free for Application Use
6076 : 6070 :
6077 : 6071 :
6078 6072
6079 : 6073 :
6080 : 6074 :
6081 0x00FB FF20 Monitor Stack (Growing downward) 6075 0x00FB FF20 Monitor Stack (Growing downward)
6082 0x00FB FFAC Board Info Data and permanent copy of global data 6076 0x00FB FFAC Board Info Data and permanent copy of global data
6083 0x00FC 0000 Malloc Arena 6077 0x00FC 0000 Malloc Arena
6084 : 6078 :
6085 0x00FD FFFF 6079 0x00FD FFFF
6086 0x00FE 0000 RAM Copy of Monitor Code 6080 0x00FE 0000 RAM Copy of Monitor Code
6087 ... eventually: LCD or video framebuffer 6081 ... eventually: LCD or video framebuffer
6088 ... eventually: pRAM (Protected RAM - unchanged by reset) 6082 ... eventually: pRAM (Protected RAM - unchanged by reset)
6089 0x00FF FFFF [End of RAM] 6083 0x00FF FFFF [End of RAM]
6090 6084
6091 6085
6092 System Initialization: 6086 System Initialization:
6093 ---------------------- 6087 ----------------------
6094 6088
6095 In the reset configuration, U-Boot starts at the reset entry point 6089 In the reset configuration, U-Boot starts at the reset entry point
6096 (on most PowerPC systems at address 0x00000100). Because of the reset 6090 (on most PowerPC systems at address 0x00000100). Because of the reset
6097 configuration for CS0# this is a mirror of the on board Flash memory. 6091 configuration for CS0# this is a mirror of the on board Flash memory.
6098 To be able to re-map memory U-Boot then jumps to its link address. 6092 To be able to re-map memory U-Boot then jumps to its link address.
6099 To be able to implement the initialization code in C, a (small!) 6093 To be able to implement the initialization code in C, a (small!)
6100 initial stack is set up in the internal Dual Ported RAM (in case CPUs 6094 initial stack is set up in the internal Dual Ported RAM (in case CPUs
6101 which provide such a feature like MPC8xx or MPC8260), or in a locked 6095 which provide such a feature like MPC8xx or MPC8260), or in a locked
6102 part of the data cache. After that, U-Boot initializes the CPU core, 6096 part of the data cache. After that, U-Boot initializes the CPU core,
6103 the caches and the SIU. 6097 the caches and the SIU.
6104 6098
6105 Next, all (potentially) available memory banks are mapped using a 6099 Next, all (potentially) available memory banks are mapped using a
6106 preliminary mapping. For example, we put them on 512 MB boundaries 6100 preliminary mapping. For example, we put them on 512 MB boundaries
6107 (multiples of 0x20000000: SDRAM on 0x00000000 and 0x20000000, Flash 6101 (multiples of 0x20000000: SDRAM on 0x00000000 and 0x20000000, Flash
6108 on 0x40000000 and 0x60000000, SRAM on 0x80000000). Then UPM A is 6102 on 0x40000000 and 0x60000000, SRAM on 0x80000000). Then UPM A is
6109 programmed for SDRAM access. Using the temporary configuration, a 6103 programmed for SDRAM access. Using the temporary configuration, a
6110 simple memory test is run that determines the size of the SDRAM 6104 simple memory test is run that determines the size of the SDRAM
6111 banks. 6105 banks.
6112 6106
6113 When there is more than one SDRAM bank, and the banks are of 6107 When there is more than one SDRAM bank, and the banks are of
6114 different size, the largest is mapped first. For equal size, the first 6108 different size, the largest is mapped first. For equal size, the first
6115 bank (CS2#) is mapped first. The first mapping is always for address 6109 bank (CS2#) is mapped first. The first mapping is always for address
6116 0x00000000, with any additional banks following immediately to create 6110 0x00000000, with any additional banks following immediately to create
6117 contiguous memory starting from 0. 6111 contiguous memory starting from 0.
6118 6112
6119 Then, the monitor installs itself at the upper end of the SDRAM area 6113 Then, the monitor installs itself at the upper end of the SDRAM area
6120 and allocates memory for use by malloc() and for the global Board 6114 and allocates memory for use by malloc() and for the global Board
6121 Info data; also, the exception vector code is copied to the low RAM 6115 Info data; also, the exception vector code is copied to the low RAM
6122 pages, and the final stack is set up. 6116 pages, and the final stack is set up.
6123 6117
6124 Only after this relocation will you have a "normal" C environment; 6118 Only after this relocation will you have a "normal" C environment;
6125 until that you are restricted in several ways, mostly because you are 6119 until that you are restricted in several ways, mostly because you are
6126 running from ROM, and because the code will have to be relocated to a 6120 running from ROM, and because the code will have to be relocated to a
6127 new address in RAM. 6121 new address in RAM.
6128 6122
6129 6123
6130 U-Boot Porting Guide: 6124 U-Boot Porting Guide:
6131 ---------------------- 6125 ----------------------
6132 6126
6133 [Based on messages by Jerry Van Baren in the U-Boot-Users mailing 6127 [Based on messages by Jerry Van Baren in the U-Boot-Users mailing
6134 list, October 2002] 6128 list, October 2002]
6135 6129
6136 6130
6137 int main(int argc, char *argv[]) 6131 int main(int argc, char *argv[])
6138 { 6132 {
6139 sighandler_t no_more_time; 6133 sighandler_t no_more_time;
6140 6134
6141 signal(SIGALRM, no_more_time); 6135 signal(SIGALRM, no_more_time);
6142 alarm(PROJECT_DEADLINE - toSec (3 * WEEK)); 6136 alarm(PROJECT_DEADLINE - toSec (3 * WEEK));
6143 6137
6144 if (available_money > available_manpower) { 6138 if (available_money > available_manpower) {
6145 Pay consultant to port U-Boot; 6139 Pay consultant to port U-Boot;
6146 return 0; 6140 return 0;
6147 } 6141 }
6148 6142
6149 Download latest U-Boot source; 6143 Download latest U-Boot source;
6150 6144
6151 Subscribe to u-boot mailing list; 6145 Subscribe to u-boot mailing list;
6152 6146
6153 if (clueless) 6147 if (clueless)
6154 email("Hi, I am new to U-Boot, how do I get started?"); 6148 email("Hi, I am new to U-Boot, how do I get started?");
6155 6149
6156 while (learning) { 6150 while (learning) {
6157 Read the README file in the top level directory; 6151 Read the README file in the top level directory;
6158 Read http://www.denx.de/twiki/bin/view/DULG/Manual; 6152 Read http://www.denx.de/twiki/bin/view/DULG/Manual;
6159 Read applicable doc/*.README; 6153 Read applicable doc/*.README;
6160 Read the source, Luke; 6154 Read the source, Luke;
6161 /* find . -name "*.[chS]" | xargs grep -i <keyword> */ 6155 /* find . -name "*.[chS]" | xargs grep -i <keyword> */
6162 } 6156 }
6163 6157
6164 if (available_money > toLocalCurrency ($2500)) 6158 if (available_money > toLocalCurrency ($2500))
6165 Buy a BDI3000; 6159 Buy a BDI3000;
6166 else 6160 else
6167 Add a lot of aggravation and time; 6161 Add a lot of aggravation and time;
6168 6162
6169 if (a similar board exists) { /* hopefully... */ 6163 if (a similar board exists) { /* hopefully... */
6170 cp -a board/<similar> board/<myboard> 6164 cp -a board/<similar> board/<myboard>
6171 cp include/configs/<similar>.h include/configs/<myboard>.h 6165 cp include/configs/<similar>.h include/configs/<myboard>.h
6172 } else { 6166 } else {
6173 Create your own board support subdirectory; 6167 Create your own board support subdirectory;
6174 Create your own board include/configs/<myboard>.h file; 6168 Create your own board include/configs/<myboard>.h file;
6175 } 6169 }
6176 Edit new board/<myboard> files 6170 Edit new board/<myboard> files
6177 Edit new include/configs/<myboard>.h 6171 Edit new include/configs/<myboard>.h
6178 6172
6179 while (!accepted) { 6173 while (!accepted) {
6180 while (!running) { 6174 while (!running) {
6181 do { 6175 do {
6182 Add / modify source code; 6176 Add / modify source code;
6183 } until (compiles); 6177 } until (compiles);
6184 Debug; 6178 Debug;
6185 if (clueless) 6179 if (clueless)
6186 email("Hi, I am having problems..."); 6180 email("Hi, I am having problems...");
6187 } 6181 }
6188 Send patch file to the U-Boot email list; 6182 Send patch file to the U-Boot email list;
6189 if (reasonable critiques) 6183 if (reasonable critiques)
6190 Incorporate improvements from email list code review; 6184 Incorporate improvements from email list code review;
6191 else 6185 else
6192 Defend code as written; 6186 Defend code as written;
6193 } 6187 }
6194 6188
6195 return 0; 6189 return 0;
6196 } 6190 }
6197 6191
6198 void no_more_time (int sig) 6192 void no_more_time (int sig)
6199 { 6193 {
6200 hire_a_guru(); 6194 hire_a_guru();
6201 } 6195 }
6202 6196
6203 6197
6204 Coding Standards: 6198 Coding Standards:
6205 ----------------- 6199 -----------------
6206 6200
6207 All contributions to U-Boot should conform to the Linux kernel 6201 All contributions to U-Boot should conform to the Linux kernel
6208 coding style; see the file "Documentation/CodingStyle" and the script 6202 coding style; see the file "Documentation/CodingStyle" and the script
6209 "scripts/Lindent" in your Linux kernel source directory. 6203 "scripts/Lindent" in your Linux kernel source directory.
6210 6204
6211 Source files originating from a different project (for example the 6205 Source files originating from a different project (for example the
6212 MTD subsystem) are generally exempt from these guidelines and are not 6206 MTD subsystem) are generally exempt from these guidelines and are not
6213 reformatted to ease subsequent migration to newer versions of those 6207 reformatted to ease subsequent migration to newer versions of those
6214 sources. 6208 sources.
6215 6209
6216 Please note that U-Boot is implemented in C (and to some small parts in 6210 Please note that U-Boot is implemented in C (and to some small parts in
6217 Assembler); no C++ is used, so please do not use C++ style comments (//) 6211 Assembler); no C++ is used, so please do not use C++ style comments (//)
6218 in your code. 6212 in your code.
6219 6213
6220 Please also stick to the following formatting rules: 6214 Please also stick to the following formatting rules:
6221 - remove any trailing white space 6215 - remove any trailing white space
6222 - use TAB characters for indentation and vertical alignment, not spaces 6216 - use TAB characters for indentation and vertical alignment, not spaces
6223 - make sure NOT to use DOS '\r\n' line feeds 6217 - make sure NOT to use DOS '\r\n' line feeds
6224 - do not add more than 2 consecutive empty lines to source files 6218 - do not add more than 2 consecutive empty lines to source files
6225 - do not add trailing empty lines to source files 6219 - do not add trailing empty lines to source files
6226 6220
6227 Submissions which do not conform to the standards may be returned 6221 Submissions which do not conform to the standards may be returned
6228 with a request to reformat the changes. 6222 with a request to reformat the changes.
6229 6223
6230 6224
6231 Submitting Patches: 6225 Submitting Patches:
6232 ------------------- 6226 -------------------
6233 6227
6234 Since the number of patches for U-Boot is growing, we need to 6228 Since the number of patches for U-Boot is growing, we need to
6235 establish some rules. Submissions which do not conform to these rules 6229 establish some rules. Submissions which do not conform to these rules
6236 may be rejected, even when they contain important and valuable stuff. 6230 may be rejected, even when they contain important and valuable stuff.
6237 6231
6238 Please see http://www.denx.de/wiki/U-Boot/Patches for details. 6232 Please see http://www.denx.de/wiki/U-Boot/Patches for details.
6239 6233
6240 Patches shall be sent to the u-boot mailing list <u-boot@lists.denx.de>; 6234 Patches shall be sent to the u-boot mailing list <u-boot@lists.denx.de>;
6241 see http://lists.denx.de/mailman/listinfo/u-boot 6235 see http://lists.denx.de/mailman/listinfo/u-boot
6242 6236
6243 When you send a patch, please include the following information with 6237 When you send a patch, please include the following information with
6244 it: 6238 it:
6245 6239
6246 * For bug fixes: a description of the bug and how your patch fixes 6240 * For bug fixes: a description of the bug and how your patch fixes
6247 this bug. Please try to include a way of demonstrating that the 6241 this bug. Please try to include a way of demonstrating that the
6248 patch actually fixes something. 6242 patch actually fixes something.
6249 6243
6250 * For new features: a description of the feature and your 6244 * For new features: a description of the feature and your
6251 implementation. 6245 implementation.
6252 6246
6253 * A CHANGELOG entry as plaintext (separate from the patch) 6247 * A CHANGELOG entry as plaintext (separate from the patch)
6254 6248
6255 * For major contributions, add a MAINTAINERS file with your 6249 * For major contributions, add a MAINTAINERS file with your
6256 information and associated file and directory references. 6250 information and associated file and directory references.
6257 6251
6258 * When you add support for a new board, don't forget to add a 6252 * When you add support for a new board, don't forget to add a
6259 maintainer e-mail address to the boards.cfg file, too. 6253 maintainer e-mail address to the boards.cfg file, too.
6260 6254
6261 * If your patch adds new configuration options, don't forget to 6255 * If your patch adds new configuration options, don't forget to
6262 document these in the README file. 6256 document these in the README file.
6263 6257
6264 * The patch itself. If you are using git (which is *strongly* 6258 * The patch itself. If you are using git (which is *strongly*
6265 recommended) you can easily generate the patch using the 6259 recommended) you can easily generate the patch using the
6266 "git format-patch". If you then use "git send-email" to send it to 6260 "git format-patch". If you then use "git send-email" to send it to
6267 the U-Boot mailing list, you will avoid most of the common problems 6261 the U-Boot mailing list, you will avoid most of the common problems
6268 with some other mail clients. 6262 with some other mail clients.
6269 6263
6270 If you cannot use git, use "diff -purN OLD NEW". If your version of 6264 If you cannot use git, use "diff -purN OLD NEW". If your version of
6271 diff does not support these options, then get the latest version of 6265 diff does not support these options, then get the latest version of
6272 GNU diff. 6266 GNU diff.
6273 6267
6274 The current directory when running this command shall be the parent 6268 The current directory when running this command shall be the parent
6275 directory of the U-Boot source tree (i. e. please make sure that 6269 directory of the U-Boot source tree (i. e. please make sure that
6276 your patch includes sufficient directory information for the 6270 your patch includes sufficient directory information for the
6277 affected files). 6271 affected files).
6278 6272
6279 We prefer patches as plain text. MIME attachments are discouraged, 6273 We prefer patches as plain text. MIME attachments are discouraged,
6280 and compressed attachments must not be used. 6274 and compressed attachments must not be used.
6281 6275
6282 * If one logical set of modifications affects or creates several 6276 * If one logical set of modifications affects or creates several
6283 files, all these changes shall be submitted in a SINGLE patch file. 6277 files, all these changes shall be submitted in a SINGLE patch file.
6284 6278
6285 * Changesets that contain different, unrelated modifications shall be 6279 * Changesets that contain different, unrelated modifications shall be
6286 submitted as SEPARATE patches, one patch per changeset. 6280 submitted as SEPARATE patches, one patch per changeset.
6287 6281
6288 6282
6289 Notes: 6283 Notes:
6290 6284
6291 * Before sending the patch, run the buildman script on your patched 6285 * Before sending the patch, run the buildman script on your patched
6292 source tree and make sure that no errors or warnings are reported 6286 source tree and make sure that no errors or warnings are reported
6293 for any of the boards. 6287 for any of the boards.
6294 6288
6295 * Keep your modifications to the necessary minimum: A patch 6289 * Keep your modifications to the necessary minimum: A patch
6296 containing several unrelated changes or arbitrary reformats will be 6290 containing several unrelated changes or arbitrary reformats will be
6297 returned with a request to re-formatting / split it. 6291 returned with a request to re-formatting / split it.
6298 6292
6299 * If you modify existing code, make sure that your new code does not 6293 * If you modify existing code, make sure that your new code does not
6300 add to the memory footprint of the code ;-) Small is beautiful! 6294 add to the memory footprint of the code ;-) Small is beautiful!
6301 When adding new features, these should compile conditionally only 6295 When adding new features, these should compile conditionally only
6302 (using #ifdef), and the resulting code with the new feature 6296 (using #ifdef), and the resulting code with the new feature
6303 disabled must not need more memory than the old code without your 6297 disabled must not need more memory than the old code without your
6304 modification. 6298 modification.
6305 6299
6306 * Remember that there is a size limit of 100 kB per message on the 6300 * Remember that there is a size limit of 100 kB per message on the
6307 u-boot mailing list. Bigger patches will be moderated. If they are 6301 u-boot mailing list. Bigger patches will be moderated. If they are
6308 reasonable and not too big, they will be acknowledged. But patches 6302 reasonable and not too big, they will be acknowledged. But patches
6309 bigger than the size limit should be avoided. 6303 bigger than the size limit should be avoided.
6310 6304
configs/bayleybay_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_VENDOR_INTEL=y 2 CONFIG_VENDOR_INTEL=y
3 CONFIG_DEFAULT_DEVICE_TREE="bayleybay" 3 CONFIG_DEFAULT_DEVICE_TREE="bayleybay"
4 CONFIG_TARGET_BAYLEYBAY=y 4 CONFIG_TARGET_BAYLEYBAY=y
5 CONFIG_INTERNAL_UART=y 5 CONFIG_INTERNAL_UART=y
6 CONFIG_HAVE_INTEL_ME=y 6 CONFIG_HAVE_INTEL_ME=y
7 CONFIG_ENABLE_MRC_CACHE=y 7 CONFIG_ENABLE_MRC_CACHE=y
8 CONFIG_SMP=y 8 CONFIG_SMP=y
9 CONFIG_HAVE_VGA_BIOS=y 9 CONFIG_HAVE_VGA_BIOS=y
10 CONFIG_VGA_BIOS_ADDR=0xfffa0000 10 CONFIG_VGA_BIOS_ADDR=0xfffa0000
11 CONFIG_GENERATE_PIRQ_TABLE=y 11 CONFIG_GENERATE_PIRQ_TABLE=y
12 CONFIG_GENERATE_MP_TABLE=y 12 CONFIG_GENERATE_MP_TABLE=y
13 CONFIG_GENERATE_ACPI_TABLE=y 13 CONFIG_GENERATE_ACPI_TABLE=y
14 CONFIG_SEABIOS=y 14 CONFIG_SEABIOS=y
15 CONFIG_FIT=y 15 CONFIG_FIT=y
16 CONFIG_BOOTSTAGE=y 16 CONFIG_BOOTSTAGE=y
17 CONFIG_BOOTSTAGE_REPORT=y 17 CONFIG_BOOTSTAGE_REPORT=y
18 CONFIG_HUSH_PARSER=y 18 CONFIG_HUSH_PARSER=y
19 CONFIG_CMD_CPU=y 19 CONFIG_CMD_CPU=y
20 # CONFIG_CMD_IMLS is not set 20 # CONFIG_CMD_IMLS is not set
21 # CONFIG_CMD_FLASH is not set 21 # CONFIG_CMD_FLASH is not set
22 CONFIG_CMD_MMC=y 22 CONFIG_CMD_MMC=y
23 CONFIG_CMD_SF=y 23 CONFIG_CMD_SF=y
24 CONFIG_CMD_SPI=y 24 CONFIG_CMD_SPI=y
25 CONFIG_CMD_USB=y 25 CONFIG_CMD_USB=y
26 CONFIG_CMD_GPIO=y 26 CONFIG_CMD_GPIO=y
27 # CONFIG_CMD_SETEXPR is not set 27 # CONFIG_CMD_SETEXPR is not set
28 CONFIG_CMD_DHCP=y 28 CONFIG_CMD_DHCP=y
29 # CONFIG_CMD_NFS is not set 29 # CONFIG_CMD_NFS is not set
30 CONFIG_CMD_PING=y 30 CONFIG_CMD_PING=y
31 CONFIG_CMD_TIME=y 31 CONFIG_CMD_TIME=y
32 CONFIG_CMD_BOOTSTAGE=y 32 CONFIG_CMD_BOOTSTAGE=y
33 CONFIG_CMD_EXT2=y 33 CONFIG_CMD_EXT2=y
34 CONFIG_CMD_EXT4=y 34 CONFIG_CMD_EXT4=y
35 CONFIG_CMD_EXT4_WRITE=y 35 CONFIG_CMD_EXT4_WRITE=y
36 CONFIG_CMD_FAT=y 36 CONFIG_CMD_FAT=y
37 CONFIG_CMD_FS_GENERIC=y 37 CONFIG_CMD_FS_GENERIC=y
38 CONFIG_OF_CONTROL=y 38 CONFIG_OF_CONTROL=y
39 CONFIG_REGMAP=y 39 CONFIG_REGMAP=y
40 CONFIG_SYSCON=y 40 CONFIG_SYSCON=y
41 CONFIG_CPU=y 41 CONFIG_CPU=y
42 CONFIG_SPI_FLASH=y 42 CONFIG_SPI_FLASH=y
43 CONFIG_SPI_FLASH_GIGADEVICE=y 43 CONFIG_SPI_FLASH_GIGADEVICE=y
44 CONFIG_SPI_FLASH_MACRONIX=y 44 CONFIG_SPI_FLASH_MACRONIX=y
45 CONFIG_SPI_FLASH_WINBOND=y 45 CONFIG_SPI_FLASH_WINBOND=y
46 CONFIG_DM_ETH=y 46 CONFIG_DM_ETH=y
47 CONFIG_E1000=y 47 CONFIG_E1000=y
48 CONFIG_DM_PCI=y 48 CONFIG_DM_PCI=y
49 CONFIG_DM_RTC=y 49 CONFIG_DM_RTC=y
50 CONFIG_SYS_NS16550=y 50 CONFIG_SYS_NS16550=y
51 CONFIG_ICH_SPI=y 51 CONFIG_ICH_SPI=y
52 CONFIG_TIMER=y 52 CONFIG_TIMER=y
53 CONFIG_USB=y 53 CONFIG_USB=y
54 CONFIG_DM_USB=y 54 CONFIG_DM_USB=y
55 CONFIG_USB_STORAGE=y 55 CONFIG_USB_STORAGE=y
56 CONFIG_DM_VIDEO=y 56 CONFIG_DM_VIDEO=y
57 CONFIG_VIDEO_VESA=y 57 CONFIG_VIDEO_VESA=y
58 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 58 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
59 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y 59 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y
60 CONFIG_CFB_CONSOLE=y 60 CONFIG_CFB_CONSOLE=y
61 CONFIG_CONSOLE_SCROLL_LINES=5
61 CONFIG_USE_PRIVATE_LIBGCC=y 62 CONFIG_USE_PRIVATE_LIBGCC=y
62 63
configs/chromebook_jerry_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_ARCH_ROCKCHIP=y 2 CONFIG_ARCH_ROCKCHIP=y
3 CONFIG_SYS_MALLOC_F_LEN=0x2000 3 CONFIG_SYS_MALLOC_F_LEN=0x2000
4 CONFIG_SPL_I2C_SUPPORT=y 4 CONFIG_SPL_I2C_SUPPORT=y
5 # CONFIG_SPL_MMC_SUPPORT is not set 5 # CONFIG_SPL_MMC_SUPPORT is not set
6 CONFIG_SPL_POWER_SUPPORT=y 6 CONFIG_SPL_POWER_SUPPORT=y
7 CONFIG_ROCKCHIP_RK3288=y 7 CONFIG_ROCKCHIP_RK3288=y
8 CONFIG_TARGET_CHROMEBOOK_JERRY=y 8 CONFIG_TARGET_CHROMEBOOK_JERRY=y
9 CONFIG_ROCKCHIP_FAST_SPL=y 9 CONFIG_ROCKCHIP_FAST_SPL=y
10 CONFIG_SPL_SPI_FLASH_SUPPORT=y 10 CONFIG_SPL_SPI_FLASH_SUPPORT=y
11 CONFIG_SPL_SPI_SUPPORT=y 11 CONFIG_SPL_SPI_SUPPORT=y
12 CONFIG_SPL_STACK_R_ADDR=0x80000 12 CONFIG_SPL_STACK_R_ADDR=0x80000
13 CONFIG_DEFAULT_DEVICE_TREE="rk3288-jerry" 13 CONFIG_DEFAULT_DEVICE_TREE="rk3288-jerry"
14 CONFIG_SILENT_CONSOLE=y 14 CONFIG_SILENT_CONSOLE=y
15 # CONFIG_DISPLAY_CPUINFO is not set 15 # CONFIG_DISPLAY_CPUINFO is not set
16 CONFIG_SPL_STACK_R=y 16 CONFIG_SPL_STACK_R=y
17 CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000 17 CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
18 CONFIG_HUSH_PARSER=y 18 CONFIG_HUSH_PARSER=y
19 CONFIG_CMD_BOOTZ=y 19 CONFIG_CMD_BOOTZ=y
20 # CONFIG_CMD_IMLS is not set 20 # CONFIG_CMD_IMLS is not set
21 CONFIG_CMD_MMC=y 21 CONFIG_CMD_MMC=y
22 CONFIG_CMD_SF=y 22 CONFIG_CMD_SF=y
23 CONFIG_CMD_SPI=y 23 CONFIG_CMD_SPI=y
24 CONFIG_CMD_I2C=y 24 CONFIG_CMD_I2C=y
25 CONFIG_CMD_GPIO=y 25 CONFIG_CMD_GPIO=y
26 # CONFIG_CMD_SETEXPR is not set 26 # CONFIG_CMD_SETEXPR is not set
27 CONFIG_CMD_DHCP=y 27 CONFIG_CMD_DHCP=y
28 CONFIG_CMD_MII=y 28 CONFIG_CMD_MII=y
29 CONFIG_CMD_PING=y 29 CONFIG_CMD_PING=y
30 CONFIG_CMD_CACHE=y 30 CONFIG_CMD_CACHE=y
31 CONFIG_CMD_TIME=y 31 CONFIG_CMD_TIME=y
32 CONFIG_CMD_PMIC=y 32 CONFIG_CMD_PMIC=y
33 CONFIG_CMD_REGULATOR=y 33 CONFIG_CMD_REGULATOR=y
34 CONFIG_CMD_EXT2=y 34 CONFIG_CMD_EXT2=y
35 CONFIG_CMD_EXT4=y 35 CONFIG_CMD_EXT4=y
36 CONFIG_CMD_FAT=y 36 CONFIG_CMD_FAT=y
37 CONFIG_CMD_FS_GENERIC=y 37 CONFIG_CMD_FS_GENERIC=y
38 CONFIG_SPL_OF_CONTROL=y 38 CONFIG_SPL_OF_CONTROL=y
39 CONFIG_OF_SPL_REMOVE_PROPS="pinctrl-0 pinctrl-names clock-names interrupt-parent" 39 CONFIG_OF_SPL_REMOVE_PROPS="pinctrl-0 pinctrl-names clock-names interrupt-parent"
40 CONFIG_REGMAP=y 40 CONFIG_REGMAP=y
41 CONFIG_SPL_REGMAP=y 41 CONFIG_SPL_REGMAP=y
42 CONFIG_SYSCON=y 42 CONFIG_SYSCON=y
43 CONFIG_SPL_SYSCON=y 43 CONFIG_SPL_SYSCON=y
44 # CONFIG_SPL_SIMPLE_BUS is not set 44 # CONFIG_SPL_SIMPLE_BUS is not set
45 CONFIG_CLK=y 45 CONFIG_CLK=y
46 CONFIG_SPL_CLK=y 46 CONFIG_SPL_CLK=y
47 CONFIG_ROCKCHIP_GPIO=y 47 CONFIG_ROCKCHIP_GPIO=y
48 CONFIG_I2C_CROS_EC_TUNNEL=y 48 CONFIG_I2C_CROS_EC_TUNNEL=y
49 CONFIG_SYS_I2C_ROCKCHIP=y 49 CONFIG_SYS_I2C_ROCKCHIP=y
50 CONFIG_I2C_MUX=y 50 CONFIG_I2C_MUX=y
51 CONFIG_DM_KEYBOARD=y 51 CONFIG_DM_KEYBOARD=y
52 CONFIG_CROS_EC_KEYB=y 52 CONFIG_CROS_EC_KEYB=y
53 CONFIG_CROS_EC=y 53 CONFIG_CROS_EC=y
54 CONFIG_CROS_EC_SPI=y 54 CONFIG_CROS_EC_SPI=y
55 CONFIG_PWRSEQ=y 55 CONFIG_PWRSEQ=y
56 CONFIG_ROCKCHIP_DWMMC=y 56 CONFIG_ROCKCHIP_DWMMC=y
57 CONFIG_PINCTRL=y 57 CONFIG_PINCTRL=y
58 CONFIG_SPL_PINCTRL=y 58 CONFIG_SPL_PINCTRL=y
59 # CONFIG_SPL_PINCTRL_FULL is not set 59 # CONFIG_SPL_PINCTRL_FULL is not set
60 CONFIG_ROCKCHIP_RK3288_PINCTRL=y 60 CONFIG_ROCKCHIP_RK3288_PINCTRL=y
61 CONFIG_DM_PMIC=y 61 CONFIG_DM_PMIC=y
62 # CONFIG_SPL_PMIC_CHILDREN is not set 62 # CONFIG_SPL_PMIC_CHILDREN is not set
63 CONFIG_PMIC_RK808=y 63 CONFIG_PMIC_RK808=y
64 CONFIG_DM_REGULATOR_FIXED=y 64 CONFIG_DM_REGULATOR_FIXED=y
65 CONFIG_REGULATOR_RK808=y 65 CONFIG_REGULATOR_RK808=y
66 CONFIG_PWM_ROCKCHIP=y 66 CONFIG_PWM_ROCKCHIP=y
67 CONFIG_RAM=y 67 CONFIG_RAM=y
68 CONFIG_SPL_RAM=y 68 CONFIG_SPL_RAM=y
69 CONFIG_DEBUG_UART=y 69 CONFIG_DEBUG_UART=y
70 CONFIG_DEBUG_UART_BASE=0xff690000 70 CONFIG_DEBUG_UART_BASE=0xff690000
71 CONFIG_DEBUG_UART_CLOCK=24000000 71 CONFIG_DEBUG_UART_CLOCK=24000000
72 CONFIG_DEBUG_UART_SHIFT=2 72 CONFIG_DEBUG_UART_SHIFT=2
73 CONFIG_SYS_NS16550=y 73 CONFIG_SYS_NS16550=y
74 CONFIG_ROCKCHIP_SPI=y 74 CONFIG_ROCKCHIP_SPI=y
75 CONFIG_SYSRESET=y 75 CONFIG_SYSRESET=y
76 CONFIG_DM_VIDEO=y 76 CONFIG_DM_VIDEO=y
77 CONFIG_DISPLAY=y 77 CONFIG_DISPLAY=y
78 CONFIG_VIDEO_ROCKCHIP=y 78 CONFIG_VIDEO_ROCKCHIP=y
79 CONFIG_CONSOLE_SCROLL_LINES=10
79 CONFIG_USE_TINY_PRINTF=y 80 CONFIG_USE_TINY_PRINTF=y
80 CONFIG_CMD_DHRYSTONE=y 81 CONFIG_CMD_DHRYSTONE=y
81 CONFIG_ERRNO_STR=y 82 CONFIG_ERRNO_STR=y
82 83
configs/chromebook_link_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_SYS_MALLOC_F_LEN=0x1800 2 CONFIG_SYS_MALLOC_F_LEN=0x1800
3 CONFIG_VENDOR_GOOGLE=y 3 CONFIG_VENDOR_GOOGLE=y
4 CONFIG_DEFAULT_DEVICE_TREE="chromebook_link" 4 CONFIG_DEFAULT_DEVICE_TREE="chromebook_link"
5 CONFIG_TARGET_CHROMEBOOK_LINK=y 5 CONFIG_TARGET_CHROMEBOOK_LINK=y
6 CONFIG_ENABLE_MRC_CACHE=y 6 CONFIG_ENABLE_MRC_CACHE=y
7 CONFIG_HAVE_MRC=y 7 CONFIG_HAVE_MRC=y
8 CONFIG_SMP=y 8 CONFIG_SMP=y
9 CONFIG_HAVE_VGA_BIOS=y 9 CONFIG_HAVE_VGA_BIOS=y
10 CONFIG_FIT=y 10 CONFIG_FIT=y
11 CONFIG_BOOTSTAGE=y 11 CONFIG_BOOTSTAGE=y
12 CONFIG_BOOTSTAGE_REPORT=y 12 CONFIG_BOOTSTAGE_REPORT=y
13 CONFIG_HUSH_PARSER=y 13 CONFIG_HUSH_PARSER=y
14 CONFIG_CMD_CPU=y 14 CONFIG_CMD_CPU=y
15 # CONFIG_CMD_IMLS is not set 15 # CONFIG_CMD_IMLS is not set
16 # CONFIG_CMD_FLASH is not set 16 # CONFIG_CMD_FLASH is not set
17 CONFIG_CMD_SF=y 17 CONFIG_CMD_SF=y
18 CONFIG_CMD_SPI=y 18 CONFIG_CMD_SPI=y
19 CONFIG_CMD_USB=y 19 CONFIG_CMD_USB=y
20 CONFIG_CMD_GPIO=y 20 CONFIG_CMD_GPIO=y
21 # CONFIG_CMD_SETEXPR is not set 21 # CONFIG_CMD_SETEXPR is not set
22 CONFIG_CMD_DHCP=y 22 CONFIG_CMD_DHCP=y
23 # CONFIG_CMD_NFS is not set 23 # CONFIG_CMD_NFS is not set
24 CONFIG_CMD_PING=y 24 CONFIG_CMD_PING=y
25 CONFIG_CMD_TIME=y 25 CONFIG_CMD_TIME=y
26 CONFIG_CMD_BOOTSTAGE=y 26 CONFIG_CMD_BOOTSTAGE=y
27 CONFIG_CMD_TPM=y 27 CONFIG_CMD_TPM=y
28 CONFIG_CMD_TPM_TEST=y 28 CONFIG_CMD_TPM_TEST=y
29 CONFIG_CMD_EXT2=y 29 CONFIG_CMD_EXT2=y
30 CONFIG_CMD_EXT4=y 30 CONFIG_CMD_EXT4=y
31 CONFIG_CMD_EXT4_WRITE=y 31 CONFIG_CMD_EXT4_WRITE=y
32 CONFIG_CMD_FAT=y 32 CONFIG_CMD_FAT=y
33 CONFIG_CMD_FS_GENERIC=y 33 CONFIG_CMD_FS_GENERIC=y
34 CONFIG_OF_CONTROL=y 34 CONFIG_OF_CONTROL=y
35 CONFIG_REGMAP=y 35 CONFIG_REGMAP=y
36 CONFIG_SYSCON=y 36 CONFIG_SYSCON=y
37 CONFIG_CPU=y 37 CONFIG_CPU=y
38 CONFIG_DM_I2C=y 38 CONFIG_DM_I2C=y
39 CONFIG_SYS_I2C_INTEL=y 39 CONFIG_SYS_I2C_INTEL=y
40 CONFIG_CROS_EC=y 40 CONFIG_CROS_EC=y
41 CONFIG_CROS_EC_LPC=y 41 CONFIG_CROS_EC_LPC=y
42 CONFIG_SPI_FLASH=y 42 CONFIG_SPI_FLASH=y
43 CONFIG_SPI_FLASH_GIGADEVICE=y 43 CONFIG_SPI_FLASH_GIGADEVICE=y
44 CONFIG_SPI_FLASH_MACRONIX=y 44 CONFIG_SPI_FLASH_MACRONIX=y
45 CONFIG_SPI_FLASH_WINBOND=y 45 CONFIG_SPI_FLASH_WINBOND=y
46 CONFIG_DM_PCI=y 46 CONFIG_DM_PCI=y
47 CONFIG_DM_RTC=y 47 CONFIG_DM_RTC=y
48 CONFIG_DEBUG_UART=y 48 CONFIG_DEBUG_UART=y
49 CONFIG_DEBUG_UART_BASE=0x3f8 49 CONFIG_DEBUG_UART_BASE=0x3f8
50 CONFIG_DEBUG_UART_CLOCK=1843200 50 CONFIG_DEBUG_UART_CLOCK=1843200
51 CONFIG_DEBUG_UART_BOARD_INIT=y 51 CONFIG_DEBUG_UART_BOARD_INIT=y
52 CONFIG_SYS_NS16550=y 52 CONFIG_SYS_NS16550=y
53 CONFIG_ICH_SPI=y 53 CONFIG_ICH_SPI=y
54 CONFIG_TIMER=y 54 CONFIG_TIMER=y
55 CONFIG_TPM_TIS_LPC=y 55 CONFIG_TPM_TIS_LPC=y
56 CONFIG_USB=y 56 CONFIG_USB=y
57 CONFIG_DM_USB=y 57 CONFIG_DM_USB=y
58 CONFIG_USB_STORAGE=y 58 CONFIG_USB_STORAGE=y
59 CONFIG_DM_VIDEO=y 59 CONFIG_DM_VIDEO=y
60 CONFIG_VIDEO_VESA=y 60 CONFIG_VIDEO_VESA=y
61 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 61 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
62 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y 62 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y
63 CONFIG_VIDEO_IVYBRIDGE_IGD=y 63 CONFIG_VIDEO_IVYBRIDGE_IGD=y
64 CONFIG_CFB_CONSOLE=y 64 CONFIG_CFB_CONSOLE=y
65 CONFIG_CONSOLE_SCROLL_LINES=5
65 CONFIG_USE_PRIVATE_LIBGCC=y 66 CONFIG_USE_PRIVATE_LIBGCC=y
66 CONFIG_TPM=y 67 CONFIG_TPM=y
67 68
configs/chromebook_samus_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_SYS_MALLOC_F_LEN=0x1800 2 CONFIG_SYS_MALLOC_F_LEN=0x1800
3 CONFIG_VENDOR_GOOGLE=y 3 CONFIG_VENDOR_GOOGLE=y
4 CONFIG_DEFAULT_DEVICE_TREE="chromebook_samus" 4 CONFIG_DEFAULT_DEVICE_TREE="chromebook_samus"
5 CONFIG_TARGET_CHROMEBOOK_SAMUS=y 5 CONFIG_TARGET_CHROMEBOOK_SAMUS=y
6 CONFIG_ENABLE_MRC_CACHE=y 6 CONFIG_ENABLE_MRC_CACHE=y
7 CONFIG_HAVE_MRC=y 7 CONFIG_HAVE_MRC=y
8 CONFIG_HAVE_REFCODE=y 8 CONFIG_HAVE_REFCODE=y
9 CONFIG_SMP=y 9 CONFIG_SMP=y
10 CONFIG_HAVE_VGA_BIOS=y 10 CONFIG_HAVE_VGA_BIOS=y
11 CONFIG_BOOTSTAGE=y 11 CONFIG_BOOTSTAGE=y
12 CONFIG_BOOTSTAGE_REPORT=y 12 CONFIG_BOOTSTAGE_REPORT=y
13 CONFIG_HUSH_PARSER=y 13 CONFIG_HUSH_PARSER=y
14 CONFIG_CMD_CPU=y 14 CONFIG_CMD_CPU=y
15 # CONFIG_CMD_IMLS is not set 15 # CONFIG_CMD_IMLS is not set
16 # CONFIG_CMD_FLASH is not set 16 # CONFIG_CMD_FLASH is not set
17 CONFIG_CMD_SF=y 17 CONFIG_CMD_SF=y
18 CONFIG_CMD_SPI=y 18 CONFIG_CMD_SPI=y
19 CONFIG_CMD_USB=y 19 CONFIG_CMD_USB=y
20 CONFIG_CMD_GPIO=y 20 CONFIG_CMD_GPIO=y
21 # CONFIG_CMD_SETEXPR is not set 21 # CONFIG_CMD_SETEXPR is not set
22 CONFIG_CMD_DHCP=y 22 CONFIG_CMD_DHCP=y
23 # CONFIG_CMD_NFS is not set 23 # CONFIG_CMD_NFS is not set
24 CONFIG_CMD_PING=y 24 CONFIG_CMD_PING=y
25 CONFIG_CMD_TIME=y 25 CONFIG_CMD_TIME=y
26 CONFIG_CMD_BOOTSTAGE=y 26 CONFIG_CMD_BOOTSTAGE=y
27 CONFIG_CMD_TPM=y 27 CONFIG_CMD_TPM=y
28 CONFIG_CMD_TPM_TEST=y 28 CONFIG_CMD_TPM_TEST=y
29 CONFIG_CMD_EXT2=y 29 CONFIG_CMD_EXT2=y
30 CONFIG_CMD_EXT4=y 30 CONFIG_CMD_EXT4=y
31 CONFIG_CMD_EXT4_WRITE=y 31 CONFIG_CMD_EXT4_WRITE=y
32 CONFIG_CMD_FAT=y 32 CONFIG_CMD_FAT=y
33 CONFIG_CMD_FS_GENERIC=y 33 CONFIG_CMD_FS_GENERIC=y
34 CONFIG_OF_CONTROL=y 34 CONFIG_OF_CONTROL=y
35 CONFIG_REGMAP=y 35 CONFIG_REGMAP=y
36 CONFIG_SYSCON=y 36 CONFIG_SYSCON=y
37 CONFIG_CPU=y 37 CONFIG_CPU=y
38 CONFIG_INTEL_BROADWELL_GPIO=y 38 CONFIG_INTEL_BROADWELL_GPIO=y
39 CONFIG_CROS_EC=y 39 CONFIG_CROS_EC=y
40 CONFIG_CROS_EC_LPC=y 40 CONFIG_CROS_EC_LPC=y
41 CONFIG_SPI_FLASH=y 41 CONFIG_SPI_FLASH=y
42 CONFIG_SPI_FLASH_GIGADEVICE=y 42 CONFIG_SPI_FLASH_GIGADEVICE=y
43 CONFIG_SPI_FLASH_MACRONIX=y 43 CONFIG_SPI_FLASH_MACRONIX=y
44 CONFIG_SPI_FLASH_WINBOND=y 44 CONFIG_SPI_FLASH_WINBOND=y
45 CONFIG_DM_PCI=y 45 CONFIG_DM_PCI=y
46 CONFIG_DM_RTC=y 46 CONFIG_DM_RTC=y
47 CONFIG_DEBUG_UART=y 47 CONFIG_DEBUG_UART=y
48 CONFIG_DEBUG_UART_BASE=0x3f8 48 CONFIG_DEBUG_UART_BASE=0x3f8
49 CONFIG_DEBUG_UART_CLOCK=1843200 49 CONFIG_DEBUG_UART_CLOCK=1843200
50 CONFIG_DEBUG_UART_BOARD_INIT=y 50 CONFIG_DEBUG_UART_BOARD_INIT=y
51 CONFIG_SYS_NS16550=y 51 CONFIG_SYS_NS16550=y
52 CONFIG_ICH_SPI=y 52 CONFIG_ICH_SPI=y
53 CONFIG_TIMER=y 53 CONFIG_TIMER=y
54 CONFIG_TPM_TIS_LPC=y 54 CONFIG_TPM_TIS_LPC=y
55 CONFIG_USB=y 55 CONFIG_USB=y
56 CONFIG_DM_USB=y 56 CONFIG_DM_USB=y
57 CONFIG_USB_STORAGE=y 57 CONFIG_USB_STORAGE=y
58 CONFIG_DM_VIDEO=y 58 CONFIG_DM_VIDEO=y
59 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 59 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
60 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y 60 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y
61 CONFIG_VIDEO_BROADWELL_IGD=y 61 CONFIG_VIDEO_BROADWELL_IGD=y
62 CONFIG_CONSOLE_SCROLL_LINES=5
62 CONFIG_USE_PRIVATE_LIBGCC=y 63 CONFIG_USE_PRIVATE_LIBGCC=y
63 CONFIG_TPM=y 64 CONFIG_TPM=y
64 65
configs/chromebox_panther_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_VENDOR_GOOGLE=y 2 CONFIG_VENDOR_GOOGLE=y
3 CONFIG_DEFAULT_DEVICE_TREE="chromebox_panther" 3 CONFIG_DEFAULT_DEVICE_TREE="chromebox_panther"
4 CONFIG_TARGET_CHROMEBOX_PANTHER=y 4 CONFIG_TARGET_CHROMEBOX_PANTHER=y
5 CONFIG_ENABLE_MRC_CACHE=y 5 CONFIG_ENABLE_MRC_CACHE=y
6 CONFIG_HAVE_MRC=y 6 CONFIG_HAVE_MRC=y
7 CONFIG_HAVE_VGA_BIOS=y 7 CONFIG_HAVE_VGA_BIOS=y
8 CONFIG_FIT=y 8 CONFIG_FIT=y
9 CONFIG_BOOTSTAGE=y 9 CONFIG_BOOTSTAGE=y
10 CONFIG_BOOTSTAGE_REPORT=y 10 CONFIG_BOOTSTAGE_REPORT=y
11 CONFIG_HUSH_PARSER=y 11 CONFIG_HUSH_PARSER=y
12 # CONFIG_CMD_IMLS is not set 12 # CONFIG_CMD_IMLS is not set
13 # CONFIG_CMD_FLASH is not set 13 # CONFIG_CMD_FLASH is not set
14 CONFIG_CMD_SF=y 14 CONFIG_CMD_SF=y
15 CONFIG_CMD_SPI=y 15 CONFIG_CMD_SPI=y
16 CONFIG_CMD_USB=y 16 CONFIG_CMD_USB=y
17 CONFIG_CMD_GPIO=y 17 CONFIG_CMD_GPIO=y
18 # CONFIG_CMD_SETEXPR is not set 18 # CONFIG_CMD_SETEXPR is not set
19 CONFIG_CMD_DHCP=y 19 CONFIG_CMD_DHCP=y
20 # CONFIG_CMD_NFS is not set 20 # CONFIG_CMD_NFS is not set
21 CONFIG_CMD_PING=y 21 CONFIG_CMD_PING=y
22 CONFIG_CMD_TIME=y 22 CONFIG_CMD_TIME=y
23 CONFIG_CMD_BOOTSTAGE=y 23 CONFIG_CMD_BOOTSTAGE=y
24 CONFIG_CMD_TPM=y 24 CONFIG_CMD_TPM=y
25 CONFIG_CMD_TPM_TEST=y 25 CONFIG_CMD_TPM_TEST=y
26 CONFIG_CMD_EXT2=y 26 CONFIG_CMD_EXT2=y
27 CONFIG_CMD_EXT4=y 27 CONFIG_CMD_EXT4=y
28 CONFIG_CMD_EXT4_WRITE=y 28 CONFIG_CMD_EXT4_WRITE=y
29 CONFIG_CMD_FAT=y 29 CONFIG_CMD_FAT=y
30 CONFIG_CMD_FS_GENERIC=y 30 CONFIG_CMD_FS_GENERIC=y
31 CONFIG_OF_CONTROL=y 31 CONFIG_OF_CONTROL=y
32 CONFIG_REGMAP=y 32 CONFIG_REGMAP=y
33 CONFIG_SYSCON=y 33 CONFIG_SYSCON=y
34 CONFIG_CROS_EC=y 34 CONFIG_CROS_EC=y
35 CONFIG_CROS_EC_LPC=y 35 CONFIG_CROS_EC_LPC=y
36 CONFIG_SPI_FLASH=y 36 CONFIG_SPI_FLASH=y
37 CONFIG_SPI_FLASH_GIGADEVICE=y 37 CONFIG_SPI_FLASH_GIGADEVICE=y
38 CONFIG_SPI_FLASH_MACRONIX=y 38 CONFIG_SPI_FLASH_MACRONIX=y
39 CONFIG_SPI_FLASH_WINBOND=y 39 CONFIG_SPI_FLASH_WINBOND=y
40 CONFIG_DM_ETH=y 40 CONFIG_DM_ETH=y
41 CONFIG_RTL8169=y 41 CONFIG_RTL8169=y
42 CONFIG_DM_PCI=y 42 CONFIG_DM_PCI=y
43 CONFIG_DM_RTC=y 43 CONFIG_DM_RTC=y
44 CONFIG_SYS_NS16550=y 44 CONFIG_SYS_NS16550=y
45 CONFIG_ICH_SPI=y 45 CONFIG_ICH_SPI=y
46 CONFIG_TIMER=y 46 CONFIG_TIMER=y
47 CONFIG_TPM_TIS_LPC=y 47 CONFIG_TPM_TIS_LPC=y
48 CONFIG_USB=y 48 CONFIG_USB=y
49 CONFIG_DM_USB=y 49 CONFIG_DM_USB=y
50 CONFIG_USB_STORAGE=y 50 CONFIG_USB_STORAGE=y
51 CONFIG_DM_VIDEO=y 51 CONFIG_DM_VIDEO=y
52 CONFIG_VIDEO_VESA=y 52 CONFIG_VIDEO_VESA=y
53 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 53 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
54 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y 54 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y
55 CONFIG_CFB_CONSOLE=y 55 CONFIG_CFB_CONSOLE=y
56 CONFIG_CONSOLE_SCROLL_LINES=5
56 CONFIG_USE_PRIVATE_LIBGCC=y 57 CONFIG_USE_PRIVATE_LIBGCC=y
57 CONFIG_TPM=y 58 CONFIG_TPM=y
58 59
configs/colibri_t20_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_TEGRA=y 2 CONFIG_TEGRA=y
3 CONFIG_TEGRA20=y 3 CONFIG_TEGRA20=y
4 CONFIG_TARGET_COLIBRI_T20=y 4 CONFIG_TARGET_COLIBRI_T20=y
5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-colibri" 5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-colibri"
6 CONFIG_OF_SYSTEM_SETUP=y 6 CONFIG_OF_SYSTEM_SETUP=y
7 CONFIG_HUSH_PARSER=y 7 CONFIG_HUSH_PARSER=y
8 CONFIG_SYS_PROMPT="Colibri T20 # " 8 CONFIG_SYS_PROMPT="Colibri T20 # "
9 CONFIG_CMD_BOOTZ=y 9 CONFIG_CMD_BOOTZ=y
10 # CONFIG_CMD_IMI is not set 10 # CONFIG_CMD_IMI is not set
11 # CONFIG_CMD_IMLS is not set 11 # CONFIG_CMD_IMLS is not set
12 # CONFIG_CMD_FLASH is not set 12 # CONFIG_CMD_FLASH is not set
13 CONFIG_CMD_MMC=y 13 CONFIG_CMD_MMC=y
14 CONFIG_CMD_I2C=y 14 CONFIG_CMD_I2C=y
15 CONFIG_CMD_USB=y 15 CONFIG_CMD_USB=y
16 CONFIG_CMD_DFU=y 16 CONFIG_CMD_DFU=y
17 CONFIG_CMD_USB_MASS_STORAGE=y 17 CONFIG_CMD_USB_MASS_STORAGE=y
18 # CONFIG_CMD_FPGA is not set 18 # CONFIG_CMD_FPGA is not set
19 CONFIG_CMD_GPIO=y 19 CONFIG_CMD_GPIO=y
20 CONFIG_CMD_DHCP=y 20 CONFIG_CMD_DHCP=y
21 # CONFIG_CMD_NFS is not set 21 # CONFIG_CMD_NFS is not set
22 CONFIG_CMD_MII=y 22 CONFIG_CMD_MII=y
23 CONFIG_CMD_PING=y 23 CONFIG_CMD_PING=y
24 CONFIG_CMD_CACHE=y 24 CONFIG_CMD_CACHE=y
25 CONFIG_CMD_PMIC=y 25 CONFIG_CMD_PMIC=y
26 CONFIG_CMD_REGULATOR=y 26 CONFIG_CMD_REGULATOR=y
27 CONFIG_CMD_EXT2=y 27 CONFIG_CMD_EXT2=y
28 CONFIG_CMD_EXT4=y 28 CONFIG_CMD_EXT4=y
29 CONFIG_CMD_EXT4_WRITE=y 29 CONFIG_CMD_EXT4_WRITE=y
30 CONFIG_CMD_FAT=y 30 CONFIG_CMD_FAT=y
31 CONFIG_CMD_FS_GENERIC=y 31 CONFIG_CMD_FS_GENERIC=y
32 CONFIG_CMD_UBI=y 32 CONFIG_CMD_UBI=y
33 CONFIG_SPL_DM=y 33 CONFIG_SPL_DM=y
34 # CONFIG_BLK is not set 34 # CONFIG_BLK is not set
35 CONFIG_DFU_MMC=y 35 CONFIG_DFU_MMC=y
36 CONFIG_DFU_RAM=y 36 CONFIG_DFU_RAM=y
37 # CONFIG_DM_MMC_OPS is not set 37 # CONFIG_DM_MMC_OPS is not set
38 CONFIG_MTD_UBI_FASTMAP=y 38 CONFIG_MTD_UBI_FASTMAP=y
39 CONFIG_DM_PMIC=y 39 CONFIG_DM_PMIC=y
40 CONFIG_DM_REGULATOR=y 40 CONFIG_DM_REGULATOR=y
41 CONFIG_DM_REGULATOR_FIXED=y 41 CONFIG_DM_REGULATOR_FIXED=y
42 CONFIG_PWM_TEGRA=y 42 CONFIG_PWM_TEGRA=y
43 CONFIG_SYS_NS16550=y 43 CONFIG_SYS_NS16550=y
44 CONFIG_USB=y 44 CONFIG_USB=y
45 CONFIG_DM_USB=y 45 CONFIG_DM_USB=y
46 CONFIG_USB_ULPI_VIEWPORT=y 46 CONFIG_USB_ULPI_VIEWPORT=y
47 CONFIG_USB_ULPI=y 47 CONFIG_USB_ULPI=y
48 CONFIG_USB_STORAGE=y 48 CONFIG_USB_STORAGE=y
49 CONFIG_USB_GADGET=y 49 CONFIG_USB_GADGET=y
50 CONFIG_CI_UDC=y 50 CONFIG_CI_UDC=y
51 CONFIG_USB_GADGET_DOWNLOAD=y 51 CONFIG_USB_GADGET_DOWNLOAD=y
52 CONFIG_G_DNL_MANUFACTURER="NVIDIA" 52 CONFIG_G_DNL_MANUFACTURER="NVIDIA"
53 CONFIG_G_DNL_VENDOR_NUM=0x0955 53 CONFIG_G_DNL_VENDOR_NUM=0x0955
54 CONFIG_G_DNL_PRODUCT_NUM=0x701a 54 CONFIG_G_DNL_PRODUCT_NUM=0x701a
55 CONFIG_DM_VIDEO=y 55 CONFIG_DM_VIDEO=y
56 CONFIG_VIDEO_TEGRA20=y 56 CONFIG_VIDEO_TEGRA20=y
57 CONFIG_CONSOLE_SCROLL_LINES=10
57 58
configs/conga-qeval20-qa3-e3845-internal-uart_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_VENDOR_CONGATEC=y 2 CONFIG_VENDOR_CONGATEC=y
3 CONFIG_TARGET_CONGA_QEVAL20_QA3_E3845=y 3 CONFIG_TARGET_CONGA_QEVAL20_QA3_E3845=y
4 CONFIG_DEFAULT_DEVICE_TREE="conga-qeval20-qa3-e3845" 4 CONFIG_DEFAULT_DEVICE_TREE="conga-qeval20-qa3-e3845"
5 CONFIG_INTERNAL_UART=y 5 CONFIG_INTERNAL_UART=y
6 CONFIG_HAVE_INTEL_ME=y 6 CONFIG_HAVE_INTEL_ME=y
7 CONFIG_ENABLE_MRC_CACHE=y 7 CONFIG_ENABLE_MRC_CACHE=y
8 CONFIG_SMP=y 8 CONFIG_SMP=y
9 CONFIG_HAVE_VGA_BIOS=y 9 CONFIG_HAVE_VGA_BIOS=y
10 CONFIG_GENERATE_PIRQ_TABLE=y 10 CONFIG_GENERATE_PIRQ_TABLE=y
11 CONFIG_GENERATE_MP_TABLE=y 11 CONFIG_GENERATE_MP_TABLE=y
12 CONFIG_GENERATE_ACPI_TABLE=y 12 CONFIG_GENERATE_ACPI_TABLE=y
13 CONFIG_SEABIOS=y 13 CONFIG_SEABIOS=y
14 CONFIG_FIT=y 14 CONFIG_FIT=y
15 CONFIG_FIT_SIGNATURE=y 15 CONFIG_FIT_SIGNATURE=y
16 CONFIG_BOOTSTAGE=y 16 CONFIG_BOOTSTAGE=y
17 CONFIG_BOOTSTAGE_REPORT=y 17 CONFIG_BOOTSTAGE_REPORT=y
18 CONFIG_HUSH_PARSER=y 18 CONFIG_HUSH_PARSER=y
19 CONFIG_CMD_CPU=y 19 CONFIG_CMD_CPU=y
20 # CONFIG_CMD_IMLS is not set 20 # CONFIG_CMD_IMLS is not set
21 # CONFIG_CMD_FLASH is not set 21 # CONFIG_CMD_FLASH is not set
22 CONFIG_CMD_MMC=y 22 CONFIG_CMD_MMC=y
23 CONFIG_CMD_SF=y 23 CONFIG_CMD_SF=y
24 CONFIG_CMD_SPI=y 24 CONFIG_CMD_SPI=y
25 CONFIG_CMD_I2C=y 25 CONFIG_CMD_I2C=y
26 CONFIG_CMD_USB=y 26 CONFIG_CMD_USB=y
27 CONFIG_CMD_GPIO=y 27 CONFIG_CMD_GPIO=y
28 # CONFIG_CMD_SETEXPR is not set 28 # CONFIG_CMD_SETEXPR is not set
29 CONFIG_CMD_DHCP=y 29 CONFIG_CMD_DHCP=y
30 # CONFIG_CMD_NFS is not set 30 # CONFIG_CMD_NFS is not set
31 CONFIG_CMD_PING=y 31 CONFIG_CMD_PING=y
32 CONFIG_CMD_TIME=y 32 CONFIG_CMD_TIME=y
33 CONFIG_CMD_BOOTSTAGE=y 33 CONFIG_CMD_BOOTSTAGE=y
34 CONFIG_CMD_EXT2=y 34 CONFIG_CMD_EXT2=y
35 CONFIG_CMD_EXT4=y 35 CONFIG_CMD_EXT4=y
36 CONFIG_CMD_EXT4_WRITE=y 36 CONFIG_CMD_EXT4_WRITE=y
37 CONFIG_CMD_FAT=y 37 CONFIG_CMD_FAT=y
38 CONFIG_CMD_FS_GENERIC=y 38 CONFIG_CMD_FS_GENERIC=y
39 CONFIG_OF_CONTROL=y 39 CONFIG_OF_CONTROL=y
40 CONFIG_REGMAP=y 40 CONFIG_REGMAP=y
41 CONFIG_SYSCON=y 41 CONFIG_SYSCON=y
42 CONFIG_CPU=y 42 CONFIG_CPU=y
43 CONFIG_DM_I2C=y 43 CONFIG_DM_I2C=y
44 CONFIG_SYS_I2C_INTEL=y 44 CONFIG_SYS_I2C_INTEL=y
45 CONFIG_WINBOND_W83627=y 45 CONFIG_WINBOND_W83627=y
46 CONFIG_SPI_FLASH=y 46 CONFIG_SPI_FLASH=y
47 CONFIG_SPI_FLASH_GIGADEVICE=y 47 CONFIG_SPI_FLASH_GIGADEVICE=y
48 CONFIG_SPI_FLASH_MACRONIX=y 48 CONFIG_SPI_FLASH_MACRONIX=y
49 CONFIG_SPI_FLASH_STMICRO=y 49 CONFIG_SPI_FLASH_STMICRO=y
50 CONFIG_SPI_FLASH_WINBOND=y 50 CONFIG_SPI_FLASH_WINBOND=y
51 CONFIG_DM_ETH=y 51 CONFIG_DM_ETH=y
52 CONFIG_E1000=y 52 CONFIG_E1000=y
53 CONFIG_DM_PCI=y 53 CONFIG_DM_PCI=y
54 CONFIG_DM_RTC=y 54 CONFIG_DM_RTC=y
55 CONFIG_DEBUG_UART=y 55 CONFIG_DEBUG_UART=y
56 CONFIG_DEBUG_UART_BASE=0x3f8 56 CONFIG_DEBUG_UART_BASE=0x3f8
57 CONFIG_DEBUG_UART_CLOCK=1843200 57 CONFIG_DEBUG_UART_CLOCK=1843200
58 CONFIG_SYS_NS16550=y 58 CONFIG_SYS_NS16550=y
59 CONFIG_ICH_SPI=y 59 CONFIG_ICH_SPI=y
60 CONFIG_TIMER=y 60 CONFIG_TIMER=y
61 CONFIG_USB=y 61 CONFIG_USB=y
62 CONFIG_DM_USB=y 62 CONFIG_DM_USB=y
63 CONFIG_USB_STORAGE=y 63 CONFIG_USB_STORAGE=y
64 CONFIG_DM_VIDEO=y 64 CONFIG_DM_VIDEO=y
65 CONFIG_VIDEO_VESA=y 65 CONFIG_VIDEO_VESA=y
66 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 66 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
67 CONFIG_FRAMEBUFFER_VESA_MODE_114=y 67 CONFIG_FRAMEBUFFER_VESA_MODE_114=y
68 CONFIG_CFB_CONSOLE=y 68 CONFIG_CFB_CONSOLE=y
69 CONFIG_CONSOLE_SCROLL_LINES=5
69 CONFIG_USE_PRIVATE_LIBGCC=y 70 CONFIG_USE_PRIVATE_LIBGCC=y
70 71
configs/conga-qeval20-qa3-e3845_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_VENDOR_CONGATEC=y 2 CONFIG_VENDOR_CONGATEC=y
3 CONFIG_TARGET_CONGA_QEVAL20_QA3_E3845=y 3 CONFIG_TARGET_CONGA_QEVAL20_QA3_E3845=y
4 CONFIG_DEFAULT_DEVICE_TREE="conga-qeval20-qa3-e3845" 4 CONFIG_DEFAULT_DEVICE_TREE="conga-qeval20-qa3-e3845"
5 CONFIG_HAVE_INTEL_ME=y 5 CONFIG_HAVE_INTEL_ME=y
6 CONFIG_ENABLE_MRC_CACHE=y 6 CONFIG_ENABLE_MRC_CACHE=y
7 CONFIG_SMP=y 7 CONFIG_SMP=y
8 CONFIG_HAVE_VGA_BIOS=y 8 CONFIG_HAVE_VGA_BIOS=y
9 CONFIG_GENERATE_PIRQ_TABLE=y 9 CONFIG_GENERATE_PIRQ_TABLE=y
10 CONFIG_GENERATE_MP_TABLE=y 10 CONFIG_GENERATE_MP_TABLE=y
11 CONFIG_GENERATE_ACPI_TABLE=y 11 CONFIG_GENERATE_ACPI_TABLE=y
12 CONFIG_SEABIOS=y 12 CONFIG_SEABIOS=y
13 CONFIG_FIT=y 13 CONFIG_FIT=y
14 CONFIG_FIT_SIGNATURE=y 14 CONFIG_FIT_SIGNATURE=y
15 CONFIG_BOOTSTAGE=y 15 CONFIG_BOOTSTAGE=y
16 CONFIG_BOOTSTAGE_REPORT=y 16 CONFIG_BOOTSTAGE_REPORT=y
17 CONFIG_HUSH_PARSER=y 17 CONFIG_HUSH_PARSER=y
18 CONFIG_CMD_CPU=y 18 CONFIG_CMD_CPU=y
19 # CONFIG_CMD_IMLS is not set 19 # CONFIG_CMD_IMLS is not set
20 # CONFIG_CMD_FLASH is not set 20 # CONFIG_CMD_FLASH is not set
21 CONFIG_CMD_MMC=y 21 CONFIG_CMD_MMC=y
22 CONFIG_CMD_SF=y 22 CONFIG_CMD_SF=y
23 CONFIG_CMD_SPI=y 23 CONFIG_CMD_SPI=y
24 CONFIG_CMD_I2C=y 24 CONFIG_CMD_I2C=y
25 CONFIG_CMD_USB=y 25 CONFIG_CMD_USB=y
26 CONFIG_CMD_GPIO=y 26 CONFIG_CMD_GPIO=y
27 # CONFIG_CMD_SETEXPR is not set 27 # CONFIG_CMD_SETEXPR is not set
28 CONFIG_CMD_DHCP=y 28 CONFIG_CMD_DHCP=y
29 # CONFIG_CMD_NFS is not set 29 # CONFIG_CMD_NFS is not set
30 CONFIG_CMD_PING=y 30 CONFIG_CMD_PING=y
31 CONFIG_CMD_TIME=y 31 CONFIG_CMD_TIME=y
32 CONFIG_CMD_BOOTSTAGE=y 32 CONFIG_CMD_BOOTSTAGE=y
33 CONFIG_CMD_EXT2=y 33 CONFIG_CMD_EXT2=y
34 CONFIG_CMD_EXT4=y 34 CONFIG_CMD_EXT4=y
35 CONFIG_CMD_EXT4_WRITE=y 35 CONFIG_CMD_EXT4_WRITE=y
36 CONFIG_CMD_FAT=y 36 CONFIG_CMD_FAT=y
37 CONFIG_CMD_FS_GENERIC=y 37 CONFIG_CMD_FS_GENERIC=y
38 CONFIG_OF_CONTROL=y 38 CONFIG_OF_CONTROL=y
39 CONFIG_REGMAP=y 39 CONFIG_REGMAP=y
40 CONFIG_SYSCON=y 40 CONFIG_SYSCON=y
41 CONFIG_CPU=y 41 CONFIG_CPU=y
42 CONFIG_DM_I2C=y 42 CONFIG_DM_I2C=y
43 CONFIG_SYS_I2C_INTEL=y 43 CONFIG_SYS_I2C_INTEL=y
44 CONFIG_WINBOND_W83627=y 44 CONFIG_WINBOND_W83627=y
45 CONFIG_SPI_FLASH=y 45 CONFIG_SPI_FLASH=y
46 CONFIG_SPI_FLASH_GIGADEVICE=y 46 CONFIG_SPI_FLASH_GIGADEVICE=y
47 CONFIG_SPI_FLASH_MACRONIX=y 47 CONFIG_SPI_FLASH_MACRONIX=y
48 CONFIG_SPI_FLASH_STMICRO=y 48 CONFIG_SPI_FLASH_STMICRO=y
49 CONFIG_SPI_FLASH_WINBOND=y 49 CONFIG_SPI_FLASH_WINBOND=y
50 CONFIG_DM_ETH=y 50 CONFIG_DM_ETH=y
51 CONFIG_E1000=y 51 CONFIG_E1000=y
52 CONFIG_DM_PCI=y 52 CONFIG_DM_PCI=y
53 CONFIG_DM_RTC=y 53 CONFIG_DM_RTC=y
54 CONFIG_DEBUG_UART=y 54 CONFIG_DEBUG_UART=y
55 CONFIG_DEBUG_UART_BASE=0x3f8 55 CONFIG_DEBUG_UART_BASE=0x3f8
56 CONFIG_DEBUG_UART_CLOCK=1843200 56 CONFIG_DEBUG_UART_CLOCK=1843200
57 CONFIG_SYS_NS16550=y 57 CONFIG_SYS_NS16550=y
58 CONFIG_ICH_SPI=y 58 CONFIG_ICH_SPI=y
59 CONFIG_TIMER=y 59 CONFIG_TIMER=y
60 CONFIG_USB=y 60 CONFIG_USB=y
61 CONFIG_DM_USB=y 61 CONFIG_DM_USB=y
62 CONFIG_USB_STORAGE=y 62 CONFIG_USB_STORAGE=y
63 CONFIG_DM_VIDEO=y 63 CONFIG_DM_VIDEO=y
64 CONFIG_VIDEO_VESA=y 64 CONFIG_VIDEO_VESA=y
65 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 65 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
66 CONFIG_FRAMEBUFFER_VESA_MODE_114=y 66 CONFIG_FRAMEBUFFER_VESA_MODE_114=y
67 CONFIG_CFB_CONSOLE=y 67 CONFIG_CFB_CONSOLE=y
68 CONFIG_CONSOLE_SCROLL_LINES=5
68 CONFIG_USE_PRIVATE_LIBGCC=y 69 CONFIG_USE_PRIVATE_LIBGCC=y
69 70
configs/coreboot-x86_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_VENDOR_COREBOOT=y 2 CONFIG_VENDOR_COREBOOT=y
3 CONFIG_TARGET_COREBOOT=y 3 CONFIG_TARGET_COREBOOT=y
4 CONFIG_FIT=y 4 CONFIG_FIT=y
5 CONFIG_BOOTSTAGE=y 5 CONFIG_BOOTSTAGE=y
6 CONFIG_BOOTSTAGE_REPORT=y 6 CONFIG_BOOTSTAGE_REPORT=y
7 CONFIG_HUSH_PARSER=y 7 CONFIG_HUSH_PARSER=y
8 # CONFIG_CMD_IMLS is not set 8 # CONFIG_CMD_IMLS is not set
9 # CONFIG_CMD_FLASH is not set 9 # CONFIG_CMD_FLASH is not set
10 CONFIG_CMD_SF=y 10 CONFIG_CMD_SF=y
11 CONFIG_CMD_SPI=y 11 CONFIG_CMD_SPI=y
12 CONFIG_CMD_USB=y 12 CONFIG_CMD_USB=y
13 # CONFIG_CMD_SETEXPR is not set 13 # CONFIG_CMD_SETEXPR is not set
14 CONFIG_CMD_DHCP=y 14 CONFIG_CMD_DHCP=y
15 # CONFIG_CMD_NFS is not set 15 # CONFIG_CMD_NFS is not set
16 CONFIG_CMD_PING=y 16 CONFIG_CMD_PING=y
17 CONFIG_CMD_TIME=y 17 CONFIG_CMD_TIME=y
18 CONFIG_CMD_BOOTSTAGE=y 18 CONFIG_CMD_BOOTSTAGE=y
19 CONFIG_CMD_TPM=y 19 CONFIG_CMD_TPM=y
20 CONFIG_CMD_TPM_TEST=y 20 CONFIG_CMD_TPM_TEST=y
21 CONFIG_CMD_EXT2=y 21 CONFIG_CMD_EXT2=y
22 CONFIG_CMD_EXT4=y 22 CONFIG_CMD_EXT4=y
23 CONFIG_CMD_EXT4_WRITE=y 23 CONFIG_CMD_EXT4_WRITE=y
24 CONFIG_CMD_FAT=y 24 CONFIG_CMD_FAT=y
25 CONFIG_CMD_FS_GENERIC=y 25 CONFIG_CMD_FS_GENERIC=y
26 CONFIG_OF_CONTROL=y 26 CONFIG_OF_CONTROL=y
27 CONFIG_REGMAP=y 27 CONFIG_REGMAP=y
28 CONFIG_SYSCON=y 28 CONFIG_SYSCON=y
29 CONFIG_SPI_FLASH=y 29 CONFIG_SPI_FLASH=y
30 CONFIG_SPI_FLASH_GIGADEVICE=y 30 CONFIG_SPI_FLASH_GIGADEVICE=y
31 CONFIG_SPI_FLASH_MACRONIX=y 31 CONFIG_SPI_FLASH_MACRONIX=y
32 CONFIG_SPI_FLASH_WINBOND=y 32 CONFIG_SPI_FLASH_WINBOND=y
33 CONFIG_DM_ETH=y 33 CONFIG_DM_ETH=y
34 CONFIG_E1000=y 34 CONFIG_E1000=y
35 CONFIG_DM_PCI=y 35 CONFIG_DM_PCI=y
36 CONFIG_DM_RTC=y 36 CONFIG_DM_RTC=y
37 CONFIG_SYS_NS16550=y 37 CONFIG_SYS_NS16550=y
38 CONFIG_TIMER=y 38 CONFIG_TIMER=y
39 CONFIG_TPM_TIS_LPC=y 39 CONFIG_TPM_TIS_LPC=y
40 CONFIG_USB=y 40 CONFIG_USB=y
41 CONFIG_DM_USB=y 41 CONFIG_DM_USB=y
42 CONFIG_USB_STORAGE=y 42 CONFIG_USB_STORAGE=y
43 CONFIG_DM_VIDEO=y 43 CONFIG_DM_VIDEO=y
44 CONFIG_VIDEO_COREBOOT=y 44 CONFIG_VIDEO_COREBOOT=y
45 CONFIG_CONSOLE_SCROLL_LINES=5
45 CONFIG_USE_PRIVATE_LIBGCC=y 46 CONFIG_USE_PRIVATE_LIBGCC=y
46 CONFIG_TPM=y 47 CONFIG_TPM=y
47 48
configs/crownbay_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_MAX_CPUS=2 2 CONFIG_MAX_CPUS=2
3 CONFIG_VENDOR_INTEL=y 3 CONFIG_VENDOR_INTEL=y
4 CONFIG_DEFAULT_DEVICE_TREE="crownbay" 4 CONFIG_DEFAULT_DEVICE_TREE="crownbay"
5 CONFIG_TARGET_CROWNBAY=y 5 CONFIG_TARGET_CROWNBAY=y
6 CONFIG_SMP=y 6 CONFIG_SMP=y
7 CONFIG_HAVE_VGA_BIOS=y 7 CONFIG_HAVE_VGA_BIOS=y
8 CONFIG_GENERATE_PIRQ_TABLE=y 8 CONFIG_GENERATE_PIRQ_TABLE=y
9 CONFIG_GENERATE_MP_TABLE=y 9 CONFIG_GENERATE_MP_TABLE=y
10 CONFIG_FIT=y 10 CONFIG_FIT=y
11 CONFIG_HUSH_PARSER=y 11 CONFIG_HUSH_PARSER=y
12 CONFIG_CMD_CPU=y 12 CONFIG_CMD_CPU=y
13 # CONFIG_CMD_IMLS is not set 13 # CONFIG_CMD_IMLS is not set
14 # CONFIG_CMD_FLASH is not set 14 # CONFIG_CMD_FLASH is not set
15 CONFIG_CMD_MMC=y 15 CONFIG_CMD_MMC=y
16 CONFIG_CMD_SF=y 16 CONFIG_CMD_SF=y
17 CONFIG_CMD_SPI=y 17 CONFIG_CMD_SPI=y
18 CONFIG_CMD_USB=y 18 CONFIG_CMD_USB=y
19 CONFIG_CMD_GPIO=y 19 CONFIG_CMD_GPIO=y
20 # CONFIG_CMD_SETEXPR is not set 20 # CONFIG_CMD_SETEXPR is not set
21 CONFIG_CMD_DHCP=y 21 CONFIG_CMD_DHCP=y
22 # CONFIG_CMD_NFS is not set 22 # CONFIG_CMD_NFS is not set
23 CONFIG_CMD_PING=y 23 CONFIG_CMD_PING=y
24 CONFIG_CMD_TIME=y 24 CONFIG_CMD_TIME=y
25 CONFIG_CMD_EXT2=y 25 CONFIG_CMD_EXT2=y
26 CONFIG_CMD_EXT4=y 26 CONFIG_CMD_EXT4=y
27 CONFIG_CMD_EXT4_WRITE=y 27 CONFIG_CMD_EXT4_WRITE=y
28 CONFIG_CMD_FAT=y 28 CONFIG_CMD_FAT=y
29 CONFIG_CMD_FS_GENERIC=y 29 CONFIG_CMD_FS_GENERIC=y
30 CONFIG_OF_CONTROL=y 30 CONFIG_OF_CONTROL=y
31 CONFIG_REGMAP=y 31 CONFIG_REGMAP=y
32 CONFIG_SYSCON=y 32 CONFIG_SYSCON=y
33 CONFIG_CPU=y 33 CONFIG_CPU=y
34 CONFIG_SPI_FLASH=y 34 CONFIG_SPI_FLASH=y
35 CONFIG_SPI_FLASH_GIGADEVICE=y 35 CONFIG_SPI_FLASH_GIGADEVICE=y
36 CONFIG_SPI_FLASH_MACRONIX=y 36 CONFIG_SPI_FLASH_MACRONIX=y
37 CONFIG_SPI_FLASH_SST=y 37 CONFIG_SPI_FLASH_SST=y
38 CONFIG_SPI_FLASH_WINBOND=y 38 CONFIG_SPI_FLASH_WINBOND=y
39 CONFIG_DM_ETH=y 39 CONFIG_DM_ETH=y
40 CONFIG_E1000=y 40 CONFIG_E1000=y
41 CONFIG_PCH_GBE=y 41 CONFIG_PCH_GBE=y
42 CONFIG_DM_PCI=y 42 CONFIG_DM_PCI=y
43 CONFIG_DM_RTC=y 43 CONFIG_DM_RTC=y
44 CONFIG_SYS_NS16550=y 44 CONFIG_SYS_NS16550=y
45 CONFIG_ICH_SPI=y 45 CONFIG_ICH_SPI=y
46 CONFIG_TIMER=y 46 CONFIG_TIMER=y
47 CONFIG_USB=y 47 CONFIG_USB=y
48 CONFIG_DM_USB=y 48 CONFIG_DM_USB=y
49 CONFIG_USB_STORAGE=y 49 CONFIG_USB_STORAGE=y
50 CONFIG_DM_VIDEO=y 50 CONFIG_DM_VIDEO=y
51 CONFIG_VIDEO_VESA=y 51 CONFIG_VIDEO_VESA=y
52 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 52 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
53 CONFIG_CFB_CONSOLE=y 53 CONFIG_CFB_CONSOLE=y
54 CONFIG_CONSOLE_SCROLL_LINES=5
54 CONFIG_USE_PRIVATE_LIBGCC=y 55 CONFIG_USE_PRIVATE_LIBGCC=y
55 56
configs/dfi-bt700-q7x-151_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_VENDOR_DFI=y 2 CONFIG_VENDOR_DFI=y
3 CONFIG_DEFAULT_DEVICE_TREE="dfi-bt700-q7x-151" 3 CONFIG_DEFAULT_DEVICE_TREE="dfi-bt700-q7x-151"
4 CONFIG_TARGET_DFI_BT700=y 4 CONFIG_TARGET_DFI_BT700=y
5 CONFIG_HAVE_INTEL_ME=y 5 CONFIG_HAVE_INTEL_ME=y
6 CONFIG_ENABLE_MRC_CACHE=y 6 CONFIG_ENABLE_MRC_CACHE=y
7 CONFIG_SMP=y 7 CONFIG_SMP=y
8 CONFIG_HAVE_VGA_BIOS=y 8 CONFIG_HAVE_VGA_BIOS=y
9 CONFIG_GENERATE_PIRQ_TABLE=y 9 CONFIG_GENERATE_PIRQ_TABLE=y
10 CONFIG_GENERATE_MP_TABLE=y 10 CONFIG_GENERATE_MP_TABLE=y
11 CONFIG_GENERATE_ACPI_TABLE=y 11 CONFIG_GENERATE_ACPI_TABLE=y
12 CONFIG_SEABIOS=y 12 CONFIG_SEABIOS=y
13 CONFIG_FIT=y 13 CONFIG_FIT=y
14 CONFIG_FIT_SIGNATURE=y 14 CONFIG_FIT_SIGNATURE=y
15 CONFIG_BOOTSTAGE=y 15 CONFIG_BOOTSTAGE=y
16 CONFIG_BOOTSTAGE_REPORT=y 16 CONFIG_BOOTSTAGE_REPORT=y
17 CONFIG_HUSH_PARSER=y 17 CONFIG_HUSH_PARSER=y
18 CONFIG_CMD_CPU=y 18 CONFIG_CMD_CPU=y
19 # CONFIG_CMD_IMLS is not set 19 # CONFIG_CMD_IMLS is not set
20 # CONFIG_CMD_FLASH is not set 20 # CONFIG_CMD_FLASH is not set
21 CONFIG_CMD_MMC=y 21 CONFIG_CMD_MMC=y
22 CONFIG_CMD_SF=y 22 CONFIG_CMD_SF=y
23 CONFIG_CMD_SPI=y 23 CONFIG_CMD_SPI=y
24 CONFIG_CMD_USB=y 24 CONFIG_CMD_USB=y
25 CONFIG_CMD_GPIO=y 25 CONFIG_CMD_GPIO=y
26 # CONFIG_CMD_SETEXPR is not set 26 # CONFIG_CMD_SETEXPR is not set
27 CONFIG_CMD_DHCP=y 27 CONFIG_CMD_DHCP=y
28 # CONFIG_CMD_NFS is not set 28 # CONFIG_CMD_NFS is not set
29 CONFIG_CMD_PING=y 29 CONFIG_CMD_PING=y
30 CONFIG_CMD_TIME=y 30 CONFIG_CMD_TIME=y
31 CONFIG_CMD_BOOTSTAGE=y 31 CONFIG_CMD_BOOTSTAGE=y
32 CONFIG_CMD_EXT2=y 32 CONFIG_CMD_EXT2=y
33 CONFIG_CMD_EXT4=y 33 CONFIG_CMD_EXT4=y
34 CONFIG_CMD_EXT4_WRITE=y 34 CONFIG_CMD_EXT4_WRITE=y
35 CONFIG_CMD_FAT=y 35 CONFIG_CMD_FAT=y
36 CONFIG_CMD_FS_GENERIC=y 36 CONFIG_CMD_FS_GENERIC=y
37 CONFIG_OF_CONTROL=y 37 CONFIG_OF_CONTROL=y
38 CONFIG_REGMAP=y 38 CONFIG_REGMAP=y
39 CONFIG_SYSCON=y 39 CONFIG_SYSCON=y
40 CONFIG_CPU=y 40 CONFIG_CPU=y
41 CONFIG_DM_I2C=y 41 CONFIG_DM_I2C=y
42 CONFIG_NUVOTON_NCT6102D=y 42 CONFIG_NUVOTON_NCT6102D=y
43 CONFIG_SPI_FLASH=y 43 CONFIG_SPI_FLASH=y
44 CONFIG_SPI_FLASH_GIGADEVICE=y 44 CONFIG_SPI_FLASH_GIGADEVICE=y
45 CONFIG_SPI_FLASH_MACRONIX=y 45 CONFIG_SPI_FLASH_MACRONIX=y
46 CONFIG_SPI_FLASH_STMICRO=y 46 CONFIG_SPI_FLASH_STMICRO=y
47 CONFIG_SPI_FLASH_WINBOND=y 47 CONFIG_SPI_FLASH_WINBOND=y
48 CONFIG_DM_ETH=y 48 CONFIG_DM_ETH=y
49 CONFIG_E1000=y 49 CONFIG_E1000=y
50 CONFIG_DM_PCI=y 50 CONFIG_DM_PCI=y
51 CONFIG_DM_RTC=y 51 CONFIG_DM_RTC=y
52 CONFIG_DEBUG_UART=y 52 CONFIG_DEBUG_UART=y
53 CONFIG_DEBUG_UART_BASE=0x3f8 53 CONFIG_DEBUG_UART_BASE=0x3f8
54 CONFIG_DEBUG_UART_CLOCK=1843200 54 CONFIG_DEBUG_UART_CLOCK=1843200
55 CONFIG_SYS_NS16550=y 55 CONFIG_SYS_NS16550=y
56 CONFIG_ICH_SPI=y 56 CONFIG_ICH_SPI=y
57 CONFIG_TIMER=y 57 CONFIG_TIMER=y
58 CONFIG_USB=y 58 CONFIG_USB=y
59 CONFIG_DM_USB=y 59 CONFIG_DM_USB=y
60 CONFIG_USB_STORAGE=y 60 CONFIG_USB_STORAGE=y
61 CONFIG_DM_VIDEO=y 61 CONFIG_DM_VIDEO=y
62 CONFIG_VIDEO_VESA=y 62 CONFIG_VIDEO_VESA=y
63 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 63 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
64 CONFIG_FRAMEBUFFER_VESA_MODE_114=y 64 CONFIG_FRAMEBUFFER_VESA_MODE_114=y
65 CONFIG_CFB_CONSOLE=y 65 CONFIG_CFB_CONSOLE=y
66 CONFIG_CONSOLE_SCROLL_LINES=5
66 CONFIG_USE_PRIVATE_LIBGCC=y 67 CONFIG_USE_PRIVATE_LIBGCC=y
67 68
configs/firefly-rk3288_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_ARCH_ROCKCHIP=y 2 CONFIG_ARCH_ROCKCHIP=y
3 CONFIG_SYS_MALLOC_F_LEN=0x2000 3 CONFIG_SYS_MALLOC_F_LEN=0x2000
4 CONFIG_ROCKCHIP_RK3288=y 4 CONFIG_ROCKCHIP_RK3288=y
5 CONFIG_TARGET_FIREFLY_RK3288=y 5 CONFIG_TARGET_FIREFLY_RK3288=y
6 CONFIG_SPL_STACK_R_ADDR=0x80000 6 CONFIG_SPL_STACK_R_ADDR=0x80000
7 CONFIG_DEFAULT_DEVICE_TREE="rk3288-firefly" 7 CONFIG_DEFAULT_DEVICE_TREE="rk3288-firefly"
8 CONFIG_SILENT_CONSOLE=y 8 CONFIG_SILENT_CONSOLE=y
9 # CONFIG_DISPLAY_CPUINFO is not set 9 # CONFIG_DISPLAY_CPUINFO is not set
10 CONFIG_SPL_STACK_R=y 10 CONFIG_SPL_STACK_R=y
11 CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000 11 CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
12 CONFIG_HUSH_PARSER=y 12 CONFIG_HUSH_PARSER=y
13 CONFIG_CMD_BOOTZ=y 13 CONFIG_CMD_BOOTZ=y
14 # CONFIG_CMD_IMLS is not set 14 # CONFIG_CMD_IMLS is not set
15 CONFIG_CMD_MMC=y 15 CONFIG_CMD_MMC=y
16 CONFIG_CMD_SF=y 16 CONFIG_CMD_SF=y
17 CONFIG_CMD_SPI=y 17 CONFIG_CMD_SPI=y
18 CONFIG_CMD_I2C=y 18 CONFIG_CMD_I2C=y
19 CONFIG_CMD_GPIO=y 19 CONFIG_CMD_GPIO=y
20 # CONFIG_CMD_SETEXPR is not set 20 # CONFIG_CMD_SETEXPR is not set
21 CONFIG_CMD_DHCP=y 21 CONFIG_CMD_DHCP=y
22 CONFIG_CMD_MII=y 22 CONFIG_CMD_MII=y
23 CONFIG_CMD_PING=y 23 CONFIG_CMD_PING=y
24 CONFIG_CMD_CACHE=y 24 CONFIG_CMD_CACHE=y
25 CONFIG_CMD_TIME=y 25 CONFIG_CMD_TIME=y
26 CONFIG_CMD_PMIC=y 26 CONFIG_CMD_PMIC=y
27 CONFIG_CMD_REGULATOR=y 27 CONFIG_CMD_REGULATOR=y
28 CONFIG_CMD_EXT2=y 28 CONFIG_CMD_EXT2=y
29 CONFIG_CMD_EXT4=y 29 CONFIG_CMD_EXT4=y
30 CONFIG_CMD_FAT=y 30 CONFIG_CMD_FAT=y
31 CONFIG_CMD_FS_GENERIC=y 31 CONFIG_CMD_FS_GENERIC=y
32 CONFIG_SPL_OF_CONTROL=y 32 CONFIG_SPL_OF_CONTROL=y
33 CONFIG_OF_SPL_REMOVE_PROPS="pinctrl-0 pinctrl-names clock-names interrupt-parent assigned-clocks assigned-clock-rates assigned-clock-parents" 33 CONFIG_OF_SPL_REMOVE_PROPS="pinctrl-0 pinctrl-names clock-names interrupt-parent assigned-clocks assigned-clock-rates assigned-clock-parents"
34 CONFIG_SPL_OF_PLATDATA=y 34 CONFIG_SPL_OF_PLATDATA=y
35 CONFIG_REGMAP=y 35 CONFIG_REGMAP=y
36 CONFIG_SPL_REGMAP=y 36 CONFIG_SPL_REGMAP=y
37 CONFIG_SYSCON=y 37 CONFIG_SYSCON=y
38 CONFIG_SPL_SYSCON=y 38 CONFIG_SPL_SYSCON=y
39 # CONFIG_SPL_SIMPLE_BUS is not set 39 # CONFIG_SPL_SIMPLE_BUS is not set
40 CONFIG_CLK=y 40 CONFIG_CLK=y
41 CONFIG_SPL_CLK=y 41 CONFIG_SPL_CLK=y
42 CONFIG_ROCKCHIP_GPIO=y 42 CONFIG_ROCKCHIP_GPIO=y
43 CONFIG_SYS_I2C_ROCKCHIP=y 43 CONFIG_SYS_I2C_ROCKCHIP=y
44 CONFIG_LED=y 44 CONFIG_LED=y
45 CONFIG_LED_GPIO=y 45 CONFIG_LED_GPIO=y
46 CONFIG_ROCKCHIP_DWMMC=y 46 CONFIG_ROCKCHIP_DWMMC=y
47 CONFIG_PINCTRL=y 47 CONFIG_PINCTRL=y
48 CONFIG_SPL_PINCTRL=y 48 CONFIG_SPL_PINCTRL=y
49 # CONFIG_SPL_PINCTRL_FULL is not set 49 # CONFIG_SPL_PINCTRL_FULL is not set
50 CONFIG_ROCKCHIP_RK3288_PINCTRL=y 50 CONFIG_ROCKCHIP_RK3288_PINCTRL=y
51 CONFIG_DM_PMIC=y 51 CONFIG_DM_PMIC=y
52 # CONFIG_SPL_PMIC_CHILDREN is not set 52 # CONFIG_SPL_PMIC_CHILDREN is not set
53 CONFIG_PMIC_ACT8846=y 53 CONFIG_PMIC_ACT8846=y
54 CONFIG_REGULATOR_ACT8846=y 54 CONFIG_REGULATOR_ACT8846=y
55 CONFIG_DM_REGULATOR_FIXED=y 55 CONFIG_DM_REGULATOR_FIXED=y
56 CONFIG_PWM_ROCKCHIP=y 56 CONFIG_PWM_ROCKCHIP=y
57 CONFIG_RAM=y 57 CONFIG_RAM=y
58 CONFIG_SPL_RAM=y 58 CONFIG_SPL_RAM=y
59 CONFIG_DEBUG_UART=y 59 CONFIG_DEBUG_UART=y
60 CONFIG_DEBUG_UART_BASE=0xff690000 60 CONFIG_DEBUG_UART_BASE=0xff690000
61 CONFIG_DEBUG_UART_CLOCK=24000000 61 CONFIG_DEBUG_UART_CLOCK=24000000
62 CONFIG_DEBUG_UART_SHIFT=2 62 CONFIG_DEBUG_UART_SHIFT=2
63 CONFIG_SYS_NS16550=y 63 CONFIG_SYS_NS16550=y
64 CONFIG_ROCKCHIP_SERIAL=y 64 CONFIG_ROCKCHIP_SERIAL=y
65 CONFIG_SYSRESET=y 65 CONFIG_SYSRESET=y
66 CONFIG_DM_VIDEO=y 66 CONFIG_DM_VIDEO=y
67 CONFIG_DISPLAY=y 67 CONFIG_DISPLAY=y
68 CONFIG_VIDEO_ROCKCHIP=y 68 CONFIG_VIDEO_ROCKCHIP=y
69 CONFIG_CONSOLE_SCROLL_LINES=10
69 CONFIG_USE_TINY_PRINTF=y 70 CONFIG_USE_TINY_PRINTF=y
70 CONFIG_CMD_DHRYSTONE=y 71 CONFIG_CMD_DHRYSTONE=y
71 CONFIG_ERRNO_STR=y 72 CONFIG_ERRNO_STR=y
72 # CONFIG_SPL_OF_LIBFDT is not set 73 # CONFIG_SPL_OF_LIBFDT is not set
73 74
configs/harmony_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_TEGRA=y 2 CONFIG_TEGRA=y
3 CONFIG_TEGRA20=y 3 CONFIG_TEGRA20=y
4 CONFIG_TARGET_HARMONY=y 4 CONFIG_TARGET_HARMONY=y
5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-harmony" 5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-harmony"
6 CONFIG_OF_SYSTEM_SETUP=y 6 CONFIG_OF_SYSTEM_SETUP=y
7 CONFIG_HUSH_PARSER=y 7 CONFIG_HUSH_PARSER=y
8 CONFIG_SYS_PROMPT="Tegra20 (Harmony) # " 8 CONFIG_SYS_PROMPT="Tegra20 (Harmony) # "
9 CONFIG_CMD_BOOTZ=y 9 CONFIG_CMD_BOOTZ=y
10 # CONFIG_CMD_IMI is not set 10 # CONFIG_CMD_IMI is not set
11 # CONFIG_CMD_IMLS is not set 11 # CONFIG_CMD_IMLS is not set
12 # CONFIG_CMD_FLASH is not set 12 # CONFIG_CMD_FLASH is not set
13 CONFIG_CMD_MMC=y 13 CONFIG_CMD_MMC=y
14 CONFIG_CMD_USB=y 14 CONFIG_CMD_USB=y
15 # CONFIG_CMD_FPGA is not set 15 # CONFIG_CMD_FPGA is not set
16 CONFIG_CMD_GPIO=y 16 CONFIG_CMD_GPIO=y
17 # CONFIG_CMD_SETEXPR is not set 17 # CONFIG_CMD_SETEXPR is not set
18 CONFIG_CMD_DHCP=y 18 CONFIG_CMD_DHCP=y
19 # CONFIG_CMD_NFS is not set 19 # CONFIG_CMD_NFS is not set
20 CONFIG_CMD_MII=y 20 CONFIG_CMD_MII=y
21 CONFIG_CMD_PING=y 21 CONFIG_CMD_PING=y
22 CONFIG_CMD_PMIC=y 22 CONFIG_CMD_PMIC=y
23 CONFIG_CMD_REGULATOR=y 23 CONFIG_CMD_REGULATOR=y
24 CONFIG_CMD_EXT2=y 24 CONFIG_CMD_EXT2=y
25 CONFIG_CMD_EXT4=y 25 CONFIG_CMD_EXT4=y
26 CONFIG_CMD_EXT4_WRITE=y 26 CONFIG_CMD_EXT4_WRITE=y
27 CONFIG_CMD_FAT=y 27 CONFIG_CMD_FAT=y
28 CONFIG_CMD_FS_GENERIC=y 28 CONFIG_CMD_FS_GENERIC=y
29 CONFIG_SPL_DM=y 29 CONFIG_SPL_DM=y
30 # CONFIG_BLK is not set 30 # CONFIG_BLK is not set
31 # CONFIG_DM_MMC_OPS is not set 31 # CONFIG_DM_MMC_OPS is not set
32 CONFIG_DM_PMIC=y 32 CONFIG_DM_PMIC=y
33 CONFIG_DM_REGULATOR=y 33 CONFIG_DM_REGULATOR=y
34 CONFIG_DM_REGULATOR_FIXED=y 34 CONFIG_DM_REGULATOR_FIXED=y
35 CONFIG_PWM_TEGRA=y 35 CONFIG_PWM_TEGRA=y
36 CONFIG_SYS_NS16550=y 36 CONFIG_SYS_NS16550=y
37 CONFIG_USB=y 37 CONFIG_USB=y
38 CONFIG_DM_USB=y 38 CONFIG_DM_USB=y
39 CONFIG_USB_ULPI_VIEWPORT=y 39 CONFIG_USB_ULPI_VIEWPORT=y
40 CONFIG_USB_ULPI=y 40 CONFIG_USB_ULPI=y
41 CONFIG_USB_STORAGE=y 41 CONFIG_USB_STORAGE=y
42 CONFIG_DM_VIDEO=y 42 CONFIG_DM_VIDEO=y
43 CONFIG_VIDEO_TEGRA20=y 43 CONFIG_VIDEO_TEGRA20=y
44 CONFIG_CONSOLE_SCROLL_LINES=10
44 45
configs/minnowmax_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_VENDOR_INTEL=y 2 CONFIG_VENDOR_INTEL=y
3 CONFIG_DEFAULT_DEVICE_TREE="minnowmax" 3 CONFIG_DEFAULT_DEVICE_TREE="minnowmax"
4 CONFIG_TARGET_MINNOWMAX=y 4 CONFIG_TARGET_MINNOWMAX=y
5 CONFIG_INTERNAL_UART=y 5 CONFIG_INTERNAL_UART=y
6 CONFIG_HAVE_INTEL_ME=y 6 CONFIG_HAVE_INTEL_ME=y
7 CONFIG_ENABLE_MRC_CACHE=y 7 CONFIG_ENABLE_MRC_CACHE=y
8 CONFIG_SMP=y 8 CONFIG_SMP=y
9 CONFIG_HAVE_VGA_BIOS=y 9 CONFIG_HAVE_VGA_BIOS=y
10 CONFIG_GENERATE_PIRQ_TABLE=y 10 CONFIG_GENERATE_PIRQ_TABLE=y
11 CONFIG_GENERATE_MP_TABLE=y 11 CONFIG_GENERATE_MP_TABLE=y
12 CONFIG_GENERATE_ACPI_TABLE=y 12 CONFIG_GENERATE_ACPI_TABLE=y
13 CONFIG_SEABIOS=y 13 CONFIG_SEABIOS=y
14 CONFIG_FIT=y 14 CONFIG_FIT=y
15 CONFIG_FIT_SIGNATURE=y 15 CONFIG_FIT_SIGNATURE=y
16 CONFIG_BOOTSTAGE=y 16 CONFIG_BOOTSTAGE=y
17 CONFIG_BOOTSTAGE_REPORT=y 17 CONFIG_BOOTSTAGE_REPORT=y
18 CONFIG_HUSH_PARSER=y 18 CONFIG_HUSH_PARSER=y
19 CONFIG_CMD_CPU=y 19 CONFIG_CMD_CPU=y
20 # CONFIG_CMD_IMLS is not set 20 # CONFIG_CMD_IMLS is not set
21 # CONFIG_CMD_FLASH is not set 21 # CONFIG_CMD_FLASH is not set
22 CONFIG_CMD_MMC=y 22 CONFIG_CMD_MMC=y
23 CONFIG_CMD_SF=y 23 CONFIG_CMD_SF=y
24 CONFIG_CMD_SPI=y 24 CONFIG_CMD_SPI=y
25 CONFIG_CMD_USB=y 25 CONFIG_CMD_USB=y
26 CONFIG_CMD_GPIO=y 26 CONFIG_CMD_GPIO=y
27 # CONFIG_CMD_SETEXPR is not set 27 # CONFIG_CMD_SETEXPR is not set
28 CONFIG_CMD_DHCP=y 28 CONFIG_CMD_DHCP=y
29 # CONFIG_CMD_NFS is not set 29 # CONFIG_CMD_NFS is not set
30 CONFIG_CMD_PING=y 30 CONFIG_CMD_PING=y
31 CONFIG_CMD_TIME=y 31 CONFIG_CMD_TIME=y
32 CONFIG_CMD_BOOTSTAGE=y 32 CONFIG_CMD_BOOTSTAGE=y
33 CONFIG_CMD_EXT2=y 33 CONFIG_CMD_EXT2=y
34 CONFIG_CMD_EXT4=y 34 CONFIG_CMD_EXT4=y
35 CONFIG_CMD_EXT4_WRITE=y 35 CONFIG_CMD_EXT4_WRITE=y
36 CONFIG_CMD_FAT=y 36 CONFIG_CMD_FAT=y
37 CONFIG_CMD_FS_GENERIC=y 37 CONFIG_CMD_FS_GENERIC=y
38 CONFIG_OF_CONTROL=y 38 CONFIG_OF_CONTROL=y
39 CONFIG_REGMAP=y 39 CONFIG_REGMAP=y
40 CONFIG_SYSCON=y 40 CONFIG_SYSCON=y
41 CONFIG_CPU=y 41 CONFIG_CPU=y
42 CONFIG_SPI_FLASH=y 42 CONFIG_SPI_FLASH=y
43 CONFIG_SPI_FLASH_GIGADEVICE=y 43 CONFIG_SPI_FLASH_GIGADEVICE=y
44 CONFIG_SPI_FLASH_MACRONIX=y 44 CONFIG_SPI_FLASH_MACRONIX=y
45 CONFIG_SPI_FLASH_STMICRO=y 45 CONFIG_SPI_FLASH_STMICRO=y
46 CONFIG_SPI_FLASH_WINBOND=y 46 CONFIG_SPI_FLASH_WINBOND=y
47 CONFIG_DM_ETH=y 47 CONFIG_DM_ETH=y
48 CONFIG_RTL8169=y 48 CONFIG_RTL8169=y
49 CONFIG_DM_PCI=y 49 CONFIG_DM_PCI=y
50 CONFIG_DM_RTC=y 50 CONFIG_DM_RTC=y
51 CONFIG_DEBUG_UART=y 51 CONFIG_DEBUG_UART=y
52 CONFIG_DEBUG_UART_BASE=0x3f8 52 CONFIG_DEBUG_UART_BASE=0x3f8
53 CONFIG_DEBUG_UART_CLOCK=1843200 53 CONFIG_DEBUG_UART_CLOCK=1843200
54 CONFIG_SYS_NS16550=y 54 CONFIG_SYS_NS16550=y
55 CONFIG_ICH_SPI=y 55 CONFIG_ICH_SPI=y
56 CONFIG_TIMER=y 56 CONFIG_TIMER=y
57 CONFIG_USB=y 57 CONFIG_USB=y
58 CONFIG_DM_USB=y 58 CONFIG_DM_USB=y
59 CONFIG_USB_STORAGE=y 59 CONFIG_USB_STORAGE=y
60 CONFIG_DM_VIDEO=y 60 CONFIG_DM_VIDEO=y
61 CONFIG_VIDEO_VESA=y 61 CONFIG_VIDEO_VESA=y
62 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 62 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
63 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y 63 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y
64 CONFIG_CFB_CONSOLE=y 64 CONFIG_CFB_CONSOLE=y
65 CONFIG_CONSOLE_SCROLL_LINES=5
65 CONFIG_USE_PRIVATE_LIBGCC=y 66 CONFIG_USE_PRIVATE_LIBGCC=y
66 67
configs/paz00_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_TEGRA=y 2 CONFIG_TEGRA=y
3 CONFIG_TEGRA20=y 3 CONFIG_TEGRA20=y
4 CONFIG_TARGET_PAZ00=y 4 CONFIG_TARGET_PAZ00=y
5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-paz00" 5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-paz00"
6 CONFIG_OF_SYSTEM_SETUP=y 6 CONFIG_OF_SYSTEM_SETUP=y
7 CONFIG_HUSH_PARSER=y 7 CONFIG_HUSH_PARSER=y
8 CONFIG_SYS_PROMPT="Tegra20 (Paz00) MOD # " 8 CONFIG_SYS_PROMPT="Tegra20 (Paz00) MOD # "
9 CONFIG_CMD_BOOTZ=y 9 CONFIG_CMD_BOOTZ=y
10 # CONFIG_CMD_IMI is not set 10 # CONFIG_CMD_IMI is not set
11 # CONFIG_CMD_IMLS is not set 11 # CONFIG_CMD_IMLS is not set
12 # CONFIG_CMD_FLASH is not set 12 # CONFIG_CMD_FLASH is not set
13 CONFIG_CMD_MMC=y 13 CONFIG_CMD_MMC=y
14 CONFIG_CMD_USB=y 14 CONFIG_CMD_USB=y
15 # CONFIG_CMD_FPGA is not set 15 # CONFIG_CMD_FPGA is not set
16 CONFIG_CMD_GPIO=y 16 CONFIG_CMD_GPIO=y
17 # CONFIG_CMD_SETEXPR is not set 17 # CONFIG_CMD_SETEXPR is not set
18 CONFIG_CMD_DHCP=y 18 CONFIG_CMD_DHCP=y
19 # CONFIG_CMD_NFS is not set 19 # CONFIG_CMD_NFS is not set
20 CONFIG_CMD_MII=y 20 CONFIG_CMD_MII=y
21 CONFIG_CMD_PING=y 21 CONFIG_CMD_PING=y
22 CONFIG_CMD_PMIC=y 22 CONFIG_CMD_PMIC=y
23 CONFIG_CMD_REGULATOR=y 23 CONFIG_CMD_REGULATOR=y
24 CONFIG_CMD_EXT2=y 24 CONFIG_CMD_EXT2=y
25 CONFIG_CMD_EXT4=y 25 CONFIG_CMD_EXT4=y
26 CONFIG_CMD_EXT4_WRITE=y 26 CONFIG_CMD_EXT4_WRITE=y
27 CONFIG_CMD_FAT=y 27 CONFIG_CMD_FAT=y
28 CONFIG_CMD_FS_GENERIC=y 28 CONFIG_CMD_FS_GENERIC=y
29 CONFIG_SPL_DM=y 29 CONFIG_SPL_DM=y
30 # CONFIG_BLK is not set 30 # CONFIG_BLK is not set
31 # CONFIG_DM_MMC_OPS is not set 31 # CONFIG_DM_MMC_OPS is not set
32 CONFIG_DM_PMIC=y 32 CONFIG_DM_PMIC=y
33 CONFIG_DM_REGULATOR=y 33 CONFIG_DM_REGULATOR=y
34 CONFIG_DM_REGULATOR_FIXED=y 34 CONFIG_DM_REGULATOR_FIXED=y
35 CONFIG_PWM_TEGRA=y 35 CONFIG_PWM_TEGRA=y
36 CONFIG_SYS_NS16550=y 36 CONFIG_SYS_NS16550=y
37 CONFIG_USB=y 37 CONFIG_USB=y
38 CONFIG_DM_USB=y 38 CONFIG_DM_USB=y
39 CONFIG_USB_STORAGE=y 39 CONFIG_USB_STORAGE=y
40 CONFIG_DM_VIDEO=y 40 CONFIG_DM_VIDEO=y
41 CONFIG_VIDEO_TEGRA20=y 41 CONFIG_VIDEO_TEGRA20=y
42 CONFIG_CONSOLE_SCROLL_LINES=10
42 43
configs/qemu-x86_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_MAX_CPUS=2 2 CONFIG_MAX_CPUS=2
3 CONFIG_DEFAULT_DEVICE_TREE="qemu-x86_i440fx" 3 CONFIG_DEFAULT_DEVICE_TREE="qemu-x86_i440fx"
4 CONFIG_SMP=y 4 CONFIG_SMP=y
5 CONFIG_GENERATE_PIRQ_TABLE=y 5 CONFIG_GENERATE_PIRQ_TABLE=y
6 CONFIG_GENERATE_MP_TABLE=y 6 CONFIG_GENERATE_MP_TABLE=y
7 CONFIG_GENERATE_ACPI_TABLE=y 7 CONFIG_GENERATE_ACPI_TABLE=y
8 CONFIG_FIT=y 8 CONFIG_FIT=y
9 CONFIG_BOOTSTAGE=y 9 CONFIG_BOOTSTAGE=y
10 CONFIG_BOOTSTAGE_REPORT=y 10 CONFIG_BOOTSTAGE_REPORT=y
11 CONFIG_HUSH_PARSER=y 11 CONFIG_HUSH_PARSER=y
12 CONFIG_CMD_CPU=y 12 CONFIG_CMD_CPU=y
13 # CONFIG_CMD_IMLS is not set 13 # CONFIG_CMD_IMLS is not set
14 # CONFIG_CMD_FLASH is not set 14 # CONFIG_CMD_FLASH is not set
15 CONFIG_CMD_SF=y 15 CONFIG_CMD_SF=y
16 CONFIG_CMD_SPI=y 16 CONFIG_CMD_SPI=y
17 CONFIG_CMD_USB=y 17 CONFIG_CMD_USB=y
18 # CONFIG_CMD_SETEXPR is not set 18 # CONFIG_CMD_SETEXPR is not set
19 CONFIG_CMD_DHCP=y 19 CONFIG_CMD_DHCP=y
20 # CONFIG_CMD_NFS is not set 20 # CONFIG_CMD_NFS is not set
21 CONFIG_CMD_PING=y 21 CONFIG_CMD_PING=y
22 CONFIG_CMD_TIME=y 22 CONFIG_CMD_TIME=y
23 CONFIG_CMD_QFW=y 23 CONFIG_CMD_QFW=y
24 CONFIG_CMD_BOOTSTAGE=y 24 CONFIG_CMD_BOOTSTAGE=y
25 CONFIG_CMD_EXT2=y 25 CONFIG_CMD_EXT2=y
26 CONFIG_CMD_EXT4=y 26 CONFIG_CMD_EXT4=y
27 CONFIG_CMD_EXT4_WRITE=y 27 CONFIG_CMD_EXT4_WRITE=y
28 CONFIG_CMD_FAT=y 28 CONFIG_CMD_FAT=y
29 CONFIG_CMD_FS_GENERIC=y 29 CONFIG_CMD_FS_GENERIC=y
30 CONFIG_OF_CONTROL=y 30 CONFIG_OF_CONTROL=y
31 CONFIG_REGMAP=y 31 CONFIG_REGMAP=y
32 CONFIG_SYSCON=y 32 CONFIG_SYSCON=y
33 CONFIG_CPU=y 33 CONFIG_CPU=y
34 CONFIG_SPI_FLASH=y 34 CONFIG_SPI_FLASH=y
35 CONFIG_SPI_FLASH_GIGADEVICE=y 35 CONFIG_SPI_FLASH_GIGADEVICE=y
36 CONFIG_SPI_FLASH_MACRONIX=y 36 CONFIG_SPI_FLASH_MACRONIX=y
37 CONFIG_SPI_FLASH_WINBOND=y 37 CONFIG_SPI_FLASH_WINBOND=y
38 CONFIG_DM_ETH=y 38 CONFIG_DM_ETH=y
39 CONFIG_E1000=y 39 CONFIG_E1000=y
40 CONFIG_DM_PCI=y 40 CONFIG_DM_PCI=y
41 CONFIG_DM_RTC=y 41 CONFIG_DM_RTC=y
42 CONFIG_SYS_NS16550=y 42 CONFIG_SYS_NS16550=y
43 CONFIG_TIMER=y 43 CONFIG_TIMER=y
44 CONFIG_USB=y 44 CONFIG_USB=y
45 CONFIG_DM_USB=y 45 CONFIG_DM_USB=y
46 CONFIG_USB_STORAGE=y 46 CONFIG_USB_STORAGE=y
47 CONFIG_DM_VIDEO=y 47 CONFIG_DM_VIDEO=y
48 CONFIG_VIDEO_VESA=y 48 CONFIG_VIDEO_VESA=y
49 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 49 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
50 CONFIG_FRAMEBUFFER_VESA_MODE_111=y 50 CONFIG_FRAMEBUFFER_VESA_MODE_111=y
51 CONFIG_CFB_CONSOLE=y 51 CONFIG_CFB_CONSOLE=y
52 CONFIG_CONSOLE_SCROLL_LINES=5
52 CONFIG_USE_PRIVATE_LIBGCC=y 53 CONFIG_USE_PRIVATE_LIBGCC=y
53 54
configs/qemu-x86_efi_payload32_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_MAX_CPUS=2 2 CONFIG_MAX_CPUS=2
3 CONFIG_DEFAULT_DEVICE_TREE="qemu-x86_i440fx" 3 CONFIG_DEFAULT_DEVICE_TREE="qemu-x86_i440fx"
4 CONFIG_SMP=y 4 CONFIG_SMP=y
5 CONFIG_FIT=y 5 CONFIG_FIT=y
6 CONFIG_BOOTSTAGE=y 6 CONFIG_BOOTSTAGE=y
7 CONFIG_BOOTSTAGE_REPORT=y 7 CONFIG_BOOTSTAGE_REPORT=y
8 CONFIG_HUSH_PARSER=y 8 CONFIG_HUSH_PARSER=y
9 CONFIG_CMD_CPU=y 9 CONFIG_CMD_CPU=y
10 # CONFIG_CMD_IMLS is not set 10 # CONFIG_CMD_IMLS is not set
11 # CONFIG_CMD_FLASH is not set 11 # CONFIG_CMD_FLASH is not set
12 CONFIG_CMD_SF=y 12 CONFIG_CMD_SF=y
13 CONFIG_CMD_SPI=y 13 CONFIG_CMD_SPI=y
14 CONFIG_CMD_USB=y 14 CONFIG_CMD_USB=y
15 # CONFIG_CMD_SETEXPR is not set 15 # CONFIG_CMD_SETEXPR is not set
16 CONFIG_CMD_DHCP=y 16 CONFIG_CMD_DHCP=y
17 # CONFIG_CMD_NFS is not set 17 # CONFIG_CMD_NFS is not set
18 CONFIG_CMD_PING=y 18 CONFIG_CMD_PING=y
19 CONFIG_CMD_TIME=y 19 CONFIG_CMD_TIME=y
20 CONFIG_CMD_QFW=y 20 CONFIG_CMD_QFW=y
21 CONFIG_CMD_BOOTSTAGE=y 21 CONFIG_CMD_BOOTSTAGE=y
22 CONFIG_CMD_EXT2=y 22 CONFIG_CMD_EXT2=y
23 CONFIG_CMD_EXT4=y 23 CONFIG_CMD_EXT4=y
24 CONFIG_CMD_EXT4_WRITE=y 24 CONFIG_CMD_EXT4_WRITE=y
25 CONFIG_CMD_FAT=y 25 CONFIG_CMD_FAT=y
26 CONFIG_CMD_FS_GENERIC=y 26 CONFIG_CMD_FS_GENERIC=y
27 CONFIG_OF_CONTROL=y 27 CONFIG_OF_CONTROL=y
28 CONFIG_REGMAP=y 28 CONFIG_REGMAP=y
29 CONFIG_SYSCON=y 29 CONFIG_SYSCON=y
30 CONFIG_CPU=y 30 CONFIG_CPU=y
31 CONFIG_SPI_FLASH=y 31 CONFIG_SPI_FLASH=y
32 CONFIG_SPI_FLASH_GIGADEVICE=y 32 CONFIG_SPI_FLASH_GIGADEVICE=y
33 CONFIG_SPI_FLASH_MACRONIX=y 33 CONFIG_SPI_FLASH_MACRONIX=y
34 CONFIG_SPI_FLASH_WINBOND=y 34 CONFIG_SPI_FLASH_WINBOND=y
35 CONFIG_DM_ETH=y 35 CONFIG_DM_ETH=y
36 CONFIG_E1000=y 36 CONFIG_E1000=y
37 CONFIG_DM_PCI=y 37 CONFIG_DM_PCI=y
38 CONFIG_DM_RTC=y 38 CONFIG_DM_RTC=y
39 CONFIG_SYS_NS16550=y 39 CONFIG_SYS_NS16550=y
40 CONFIG_TIMER=y 40 CONFIG_TIMER=y
41 CONFIG_USB=y 41 CONFIG_USB=y
42 CONFIG_DM_USB=y 42 CONFIG_DM_USB=y
43 CONFIG_USB_STORAGE=y 43 CONFIG_USB_STORAGE=y
44 CONFIG_DM_VIDEO=y 44 CONFIG_DM_VIDEO=y
45 CONFIG_VIDEO_VESA=y 45 CONFIG_VIDEO_VESA=y
46 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 46 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
47 CONFIG_FRAMEBUFFER_VESA_MODE_111=y 47 CONFIG_FRAMEBUFFER_VESA_MODE_111=y
48 CONFIG_CFB_CONSOLE=y 48 CONFIG_CFB_CONSOLE=y
49 CONFIG_CONSOLE_SCROLL_LINES=5
49 CONFIG_USE_PRIVATE_LIBGCC=y 50 CONFIG_USE_PRIVATE_LIBGCC=y
50 CONFIG_EFI=y 51 CONFIG_EFI=y
51 CONFIG_EFI_STUB=y 52 CONFIG_EFI_STUB=y
52 53
configs/qemu-x86_efi_payload64_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_MAX_CPUS=2 2 CONFIG_MAX_CPUS=2
3 CONFIG_DEFAULT_DEVICE_TREE="qemu-x86_i440fx" 3 CONFIG_DEFAULT_DEVICE_TREE="qemu-x86_i440fx"
4 CONFIG_SMP=y 4 CONFIG_SMP=y
5 CONFIG_FIT=y 5 CONFIG_FIT=y
6 CONFIG_BOOTSTAGE=y 6 CONFIG_BOOTSTAGE=y
7 CONFIG_BOOTSTAGE_REPORT=y 7 CONFIG_BOOTSTAGE_REPORT=y
8 CONFIG_HUSH_PARSER=y 8 CONFIG_HUSH_PARSER=y
9 CONFIG_CMD_CPU=y 9 CONFIG_CMD_CPU=y
10 # CONFIG_CMD_IMLS is not set 10 # CONFIG_CMD_IMLS is not set
11 # CONFIG_CMD_FLASH is not set 11 # CONFIG_CMD_FLASH is not set
12 CONFIG_CMD_SF=y 12 CONFIG_CMD_SF=y
13 CONFIG_CMD_SPI=y 13 CONFIG_CMD_SPI=y
14 CONFIG_CMD_USB=y 14 CONFIG_CMD_USB=y
15 # CONFIG_CMD_SETEXPR is not set 15 # CONFIG_CMD_SETEXPR is not set
16 CONFIG_CMD_DHCP=y 16 CONFIG_CMD_DHCP=y
17 # CONFIG_CMD_NFS is not set 17 # CONFIG_CMD_NFS is not set
18 CONFIG_CMD_PING=y 18 CONFIG_CMD_PING=y
19 CONFIG_CMD_TIME=y 19 CONFIG_CMD_TIME=y
20 CONFIG_CMD_QFW=y 20 CONFIG_CMD_QFW=y
21 CONFIG_CMD_BOOTSTAGE=y 21 CONFIG_CMD_BOOTSTAGE=y
22 CONFIG_CMD_EXT2=y 22 CONFIG_CMD_EXT2=y
23 CONFIG_CMD_EXT4=y 23 CONFIG_CMD_EXT4=y
24 CONFIG_CMD_EXT4_WRITE=y 24 CONFIG_CMD_EXT4_WRITE=y
25 CONFIG_CMD_FAT=y 25 CONFIG_CMD_FAT=y
26 CONFIG_CMD_FS_GENERIC=y 26 CONFIG_CMD_FS_GENERIC=y
27 CONFIG_OF_CONTROL=y 27 CONFIG_OF_CONTROL=y
28 CONFIG_REGMAP=y 28 CONFIG_REGMAP=y
29 CONFIG_SYSCON=y 29 CONFIG_SYSCON=y
30 CONFIG_CPU=y 30 CONFIG_CPU=y
31 CONFIG_SPI_FLASH=y 31 CONFIG_SPI_FLASH=y
32 CONFIG_SPI_FLASH_GIGADEVICE=y 32 CONFIG_SPI_FLASH_GIGADEVICE=y
33 CONFIG_SPI_FLASH_MACRONIX=y 33 CONFIG_SPI_FLASH_MACRONIX=y
34 CONFIG_SPI_FLASH_WINBOND=y 34 CONFIG_SPI_FLASH_WINBOND=y
35 CONFIG_DM_ETH=y 35 CONFIG_DM_ETH=y
36 CONFIG_E1000=y 36 CONFIG_E1000=y
37 CONFIG_DM_PCI=y 37 CONFIG_DM_PCI=y
38 CONFIG_DM_RTC=y 38 CONFIG_DM_RTC=y
39 CONFIG_SYS_NS16550=y 39 CONFIG_SYS_NS16550=y
40 CONFIG_TIMER=y 40 CONFIG_TIMER=y
41 CONFIG_USB=y 41 CONFIG_USB=y
42 CONFIG_DM_USB=y 42 CONFIG_DM_USB=y
43 CONFIG_USB_STORAGE=y 43 CONFIG_USB_STORAGE=y
44 CONFIG_DM_VIDEO=y 44 CONFIG_DM_VIDEO=y
45 CONFIG_VIDEO_VESA=y 45 CONFIG_VIDEO_VESA=y
46 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 46 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
47 CONFIG_FRAMEBUFFER_VESA_MODE_111=y 47 CONFIG_FRAMEBUFFER_VESA_MODE_111=y
48 CONFIG_CFB_CONSOLE=y 48 CONFIG_CFB_CONSOLE=y
49 CONFIG_CONSOLE_SCROLL_LINES=5
49 CONFIG_USE_PRIVATE_LIBGCC=y 50 CONFIG_USE_PRIVATE_LIBGCC=y
50 CONFIG_EFI=y 51 CONFIG_EFI=y
51 CONFIG_EFI_STUB=y 52 CONFIG_EFI_STUB=y
52 CONFIG_EFI_STUB_64BIT=y 53 CONFIG_EFI_STUB_64BIT=y
53 54
configs/rock2_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_ARCH_ROCKCHIP=y 2 CONFIG_ARCH_ROCKCHIP=y
3 CONFIG_SYS_MALLOC_F_LEN=0x2000 3 CONFIG_SYS_MALLOC_F_LEN=0x2000
4 # CONFIG_SPL_MMC_SUPPORT is not set 4 # CONFIG_SPL_MMC_SUPPORT is not set
5 CONFIG_ROCKCHIP_RK3288=y 5 CONFIG_ROCKCHIP_RK3288=y
6 CONFIG_ROCKCHIP_SPL_BACK_TO_BROM=y 6 CONFIG_ROCKCHIP_SPL_BACK_TO_BROM=y
7 CONFIG_TARGET_ROCK2=y 7 CONFIG_TARGET_ROCK2=y
8 CONFIG_SPL_STACK_R_ADDR=0x80000 8 CONFIG_SPL_STACK_R_ADDR=0x80000
9 CONFIG_DEFAULT_DEVICE_TREE="rk3288-rock2-square" 9 CONFIG_DEFAULT_DEVICE_TREE="rk3288-rock2-square"
10 CONFIG_SILENT_CONSOLE=y 10 CONFIG_SILENT_CONSOLE=y
11 # CONFIG_DISPLAY_CPUINFO is not set 11 # CONFIG_DISPLAY_CPUINFO is not set
12 CONFIG_SPL_STACK_R=y 12 CONFIG_SPL_STACK_R=y
13 CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000 13 CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
14 CONFIG_HUSH_PARSER=y 14 CONFIG_HUSH_PARSER=y
15 CONFIG_CMD_BOOTZ=y 15 CONFIG_CMD_BOOTZ=y
16 # CONFIG_CMD_IMLS is not set 16 # CONFIG_CMD_IMLS is not set
17 CONFIG_CMD_MMC=y 17 CONFIG_CMD_MMC=y
18 CONFIG_CMD_SF=y 18 CONFIG_CMD_SF=y
19 CONFIG_CMD_SPI=y 19 CONFIG_CMD_SPI=y
20 CONFIG_CMD_I2C=y 20 CONFIG_CMD_I2C=y
21 CONFIG_CMD_GPIO=y 21 CONFIG_CMD_GPIO=y
22 # CONFIG_CMD_SETEXPR is not set 22 # CONFIG_CMD_SETEXPR is not set
23 CONFIG_CMD_DHCP=y 23 CONFIG_CMD_DHCP=y
24 CONFIG_CMD_MII=y 24 CONFIG_CMD_MII=y
25 CONFIG_CMD_PING=y 25 CONFIG_CMD_PING=y
26 CONFIG_CMD_CACHE=y 26 CONFIG_CMD_CACHE=y
27 CONFIG_CMD_TIME=y 27 CONFIG_CMD_TIME=y
28 CONFIG_CMD_PMIC=y 28 CONFIG_CMD_PMIC=y
29 CONFIG_CMD_REGULATOR=y 29 CONFIG_CMD_REGULATOR=y
30 CONFIG_CMD_EXT2=y 30 CONFIG_CMD_EXT2=y
31 CONFIG_CMD_EXT4=y 31 CONFIG_CMD_EXT4=y
32 CONFIG_CMD_FAT=y 32 CONFIG_CMD_FAT=y
33 CONFIG_CMD_FS_GENERIC=y 33 CONFIG_CMD_FS_GENERIC=y
34 CONFIG_SPL_OF_CONTROL=y 34 CONFIG_SPL_OF_CONTROL=y
35 CONFIG_OF_SPL_REMOVE_PROPS="pinctrl-0 pinctrl-names clock-names interrupt-parent" 35 CONFIG_OF_SPL_REMOVE_PROPS="pinctrl-0 pinctrl-names clock-names interrupt-parent"
36 CONFIG_REGMAP=y 36 CONFIG_REGMAP=y
37 CONFIG_SPL_REGMAP=y 37 CONFIG_SPL_REGMAP=y
38 CONFIG_SYSCON=y 38 CONFIG_SYSCON=y
39 CONFIG_SPL_SYSCON=y 39 CONFIG_SPL_SYSCON=y
40 # CONFIG_SPL_SIMPLE_BUS is not set 40 # CONFIG_SPL_SIMPLE_BUS is not set
41 CONFIG_CLK=y 41 CONFIG_CLK=y
42 CONFIG_SPL_CLK=y 42 CONFIG_SPL_CLK=y
43 CONFIG_ROCKCHIP_GPIO=y 43 CONFIG_ROCKCHIP_GPIO=y
44 CONFIG_SYS_I2C_ROCKCHIP=y 44 CONFIG_SYS_I2C_ROCKCHIP=y
45 CONFIG_ROCKCHIP_DWMMC=y 45 CONFIG_ROCKCHIP_DWMMC=y
46 CONFIG_PINCTRL=y 46 CONFIG_PINCTRL=y
47 CONFIG_SPL_PINCTRL=y 47 CONFIG_SPL_PINCTRL=y
48 # CONFIG_SPL_PINCTRL_FULL is not set 48 # CONFIG_SPL_PINCTRL_FULL is not set
49 CONFIG_ROCKCHIP_RK3288_PINCTRL=y 49 CONFIG_ROCKCHIP_RK3288_PINCTRL=y
50 CONFIG_DM_PMIC=y 50 CONFIG_DM_PMIC=y
51 # CONFIG_SPL_PMIC_CHILDREN is not set 51 # CONFIG_SPL_PMIC_CHILDREN is not set
52 CONFIG_PMIC_ACT8846=y 52 CONFIG_PMIC_ACT8846=y
53 CONFIG_REGULATOR_ACT8846=y 53 CONFIG_REGULATOR_ACT8846=y
54 CONFIG_DM_REGULATOR_FIXED=y 54 CONFIG_DM_REGULATOR_FIXED=y
55 CONFIG_PWM_ROCKCHIP=y 55 CONFIG_PWM_ROCKCHIP=y
56 CONFIG_RAM=y 56 CONFIG_RAM=y
57 CONFIG_SPL_RAM=y 57 CONFIG_SPL_RAM=y
58 CONFIG_DEBUG_UART=y 58 CONFIG_DEBUG_UART=y
59 CONFIG_DEBUG_UART_BASE=0xff690000 59 CONFIG_DEBUG_UART_BASE=0xff690000
60 CONFIG_DEBUG_UART_CLOCK=24000000 60 CONFIG_DEBUG_UART_CLOCK=24000000
61 CONFIG_DEBUG_UART_SHIFT=2 61 CONFIG_DEBUG_UART_SHIFT=2
62 CONFIG_SYS_NS16550=y 62 CONFIG_SYS_NS16550=y
63 CONFIG_SYSRESET=y 63 CONFIG_SYSRESET=y
64 CONFIG_DM_VIDEO=y 64 CONFIG_DM_VIDEO=y
65 CONFIG_DISPLAY=y 65 CONFIG_DISPLAY=y
66 CONFIG_VIDEO_ROCKCHIP=y 66 CONFIG_VIDEO_ROCKCHIP=y
67 CONFIG_CONSOLE_SCROLL_LINES=10
67 CONFIG_USE_TINY_PRINTF=y 68 CONFIG_USE_TINY_PRINTF=y
68 CONFIG_CMD_DHRYSTONE=y 69 CONFIG_CMD_DHRYSTONE=y
69 CONFIG_ERRNO_STR=y 70 CONFIG_ERRNO_STR=y
70 71
configs/rpi_2_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_ARCH_BCM283X=y 2 CONFIG_ARCH_BCM283X=y
3 CONFIG_TARGET_RPI_2=y 3 CONFIG_TARGET_RPI_2=y
4 CONFIG_OF_BOARD_SETUP=y 4 CONFIG_OF_BOARD_SETUP=y
5 # CONFIG_DISPLAY_CPUINFO is not set 5 # CONFIG_DISPLAY_CPUINFO is not set
6 # CONFIG_DISPLAY_BOARDINFO is not set 6 # CONFIG_DISPLAY_BOARDINFO is not set
7 CONFIG_HUSH_PARSER=y 7 CONFIG_HUSH_PARSER=y
8 CONFIG_SYS_PROMPT="U-Boot> " 8 CONFIG_SYS_PROMPT="U-Boot> "
9 CONFIG_CMD_BOOTZ=y 9 CONFIG_CMD_BOOTZ=y
10 # CONFIG_CMD_IMLS is not set 10 # CONFIG_CMD_IMLS is not set
11 # CONFIG_CMD_FLASH is not set 11 # CONFIG_CMD_FLASH is not set
12 CONFIG_CMD_MMC=y 12 CONFIG_CMD_MMC=y
13 CONFIG_CMD_USB=y 13 CONFIG_CMD_USB=y
14 # CONFIG_CMD_FPGA is not set 14 # CONFIG_CMD_FPGA is not set
15 CONFIG_CMD_GPIO=y 15 CONFIG_CMD_GPIO=y
16 CONFIG_CMD_DHCP=y 16 CONFIG_CMD_DHCP=y
17 CONFIG_CMD_MII=y 17 CONFIG_CMD_MII=y
18 CONFIG_CMD_PING=y 18 CONFIG_CMD_PING=y
19 CONFIG_CMD_EXT2=y 19 CONFIG_CMD_EXT2=y
20 CONFIG_CMD_EXT4=y 20 CONFIG_CMD_EXT4=y
21 CONFIG_CMD_FAT=y 21 CONFIG_CMD_FAT=y
22 CONFIG_CMD_FS_GENERIC=y 22 CONFIG_CMD_FS_GENERIC=y
23 CONFIG_USB=y 23 CONFIG_USB=y
24 CONFIG_USB_STORAGE=y 24 CONFIG_USB_STORAGE=y
25 CONFIG_CONSOLE_SCROLL_LINES=10
25 CONFIG_LCD=y 26 CONFIG_LCD=y
26 CONFIG_PHYS_TO_BUS=y 27 CONFIG_PHYS_TO_BUS=y
27 CONFIG_OF_LIBFDT=y 28 CONFIG_OF_LIBFDT=y
28 29
configs/rpi_3_32b_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_ARCH_BCM283X=y 2 CONFIG_ARCH_BCM283X=y
3 CONFIG_TARGET_RPI_3_32B=y 3 CONFIG_TARGET_RPI_3_32B=y
4 CONFIG_SYS_MALLOC_F_LEN=0x2000 4 CONFIG_SYS_MALLOC_F_LEN=0x2000
5 CONFIG_OF_BOARD_SETUP=y 5 CONFIG_OF_BOARD_SETUP=y
6 # CONFIG_DISPLAY_CPUINFO is not set 6 # CONFIG_DISPLAY_CPUINFO is not set
7 # CONFIG_DISPLAY_BOARDINFO is not set 7 # CONFIG_DISPLAY_BOARDINFO is not set
8 CONFIG_HUSH_PARSER=y 8 CONFIG_HUSH_PARSER=y
9 CONFIG_SYS_PROMPT="U-Boot> " 9 CONFIG_SYS_PROMPT="U-Boot> "
10 CONFIG_CMD_BOOTZ=y 10 CONFIG_CMD_BOOTZ=y
11 # CONFIG_CMD_IMLS is not set 11 # CONFIG_CMD_IMLS is not set
12 # CONFIG_CMD_FLASH is not set 12 # CONFIG_CMD_FLASH is not set
13 CONFIG_CMD_MMC=y 13 CONFIG_CMD_MMC=y
14 CONFIG_CMD_USB=y 14 CONFIG_CMD_USB=y
15 # CONFIG_CMD_FPGA is not set 15 # CONFIG_CMD_FPGA is not set
16 CONFIG_CMD_GPIO=y 16 CONFIG_CMD_GPIO=y
17 CONFIG_CMD_DHCP=y 17 CONFIG_CMD_DHCP=y
18 CONFIG_CMD_MII=y 18 CONFIG_CMD_MII=y
19 CONFIG_CMD_PING=y 19 CONFIG_CMD_PING=y
20 CONFIG_CMD_EXT2=y 20 CONFIG_CMD_EXT2=y
21 CONFIG_CMD_EXT4=y 21 CONFIG_CMD_EXT4=y
22 CONFIG_CMD_FAT=y 22 CONFIG_CMD_FAT=y
23 CONFIG_CMD_FS_GENERIC=y 23 CONFIG_CMD_FS_GENERIC=y
24 # CONFIG_REQUIRE_SERIAL_CONSOLE is not set 24 # CONFIG_REQUIRE_SERIAL_CONSOLE is not set
25 CONFIG_USB=y 25 CONFIG_USB=y
26 CONFIG_USB_STORAGE=y 26 CONFIG_USB_STORAGE=y
27 CONFIG_CONSOLE_SCROLL_LINES=10
27 CONFIG_LCD=y 28 CONFIG_LCD=y
28 CONFIG_PHYS_TO_BUS=y 29 CONFIG_PHYS_TO_BUS=y
29 CONFIG_OF_LIBFDT=y 30 CONFIG_OF_LIBFDT=y
30 31
configs/rpi_3_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_ARCH_BCM283X=y 2 CONFIG_ARCH_BCM283X=y
3 CONFIG_TARGET_RPI_3=y 3 CONFIG_TARGET_RPI_3=y
4 CONFIG_SYS_MALLOC_F_LEN=0x2000 4 CONFIG_SYS_MALLOC_F_LEN=0x2000
5 CONFIG_OF_BOARD_SETUP=y 5 CONFIG_OF_BOARD_SETUP=y
6 # CONFIG_DISPLAY_CPUINFO is not set 6 # CONFIG_DISPLAY_CPUINFO is not set
7 # CONFIG_DISPLAY_BOARDINFO is not set 7 # CONFIG_DISPLAY_BOARDINFO is not set
8 CONFIG_HUSH_PARSER=y 8 CONFIG_HUSH_PARSER=y
9 CONFIG_SYS_PROMPT="U-Boot> " 9 CONFIG_SYS_PROMPT="U-Boot> "
10 # CONFIG_CMD_IMLS is not set 10 # CONFIG_CMD_IMLS is not set
11 # CONFIG_CMD_FLASH is not set 11 # CONFIG_CMD_FLASH is not set
12 CONFIG_CMD_MMC=y 12 CONFIG_CMD_MMC=y
13 CONFIG_CMD_USB=y 13 CONFIG_CMD_USB=y
14 # CONFIG_CMD_FPGA is not set 14 # CONFIG_CMD_FPGA is not set
15 CONFIG_CMD_GPIO=y 15 CONFIG_CMD_GPIO=y
16 CONFIG_CMD_DHCP=y 16 CONFIG_CMD_DHCP=y
17 CONFIG_CMD_MII=y 17 CONFIG_CMD_MII=y
18 CONFIG_CMD_PING=y 18 CONFIG_CMD_PING=y
19 CONFIG_CMD_EXT2=y 19 CONFIG_CMD_EXT2=y
20 CONFIG_CMD_EXT4=y 20 CONFIG_CMD_EXT4=y
21 CONFIG_CMD_FAT=y 21 CONFIG_CMD_FAT=y
22 CONFIG_CMD_FS_GENERIC=y 22 CONFIG_CMD_FS_GENERIC=y
23 # CONFIG_REQUIRE_SERIAL_CONSOLE is not set 23 # CONFIG_REQUIRE_SERIAL_CONSOLE is not set
24 CONFIG_USB=y 24 CONFIG_USB=y
25 CONFIG_USB_STORAGE=y 25 CONFIG_USB_STORAGE=y
26 CONFIG_CONSOLE_SCROLL_LINES=10
26 CONFIG_LCD=y 27 CONFIG_LCD=y
27 CONFIG_PHYS_TO_BUS=y 28 CONFIG_PHYS_TO_BUS=y
28 CONFIG_OF_LIBFDT=y 29 CONFIG_OF_LIBFDT=y
29 30
configs/rpi_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_ARCH_BCM283X=y 2 CONFIG_ARCH_BCM283X=y
3 CONFIG_TARGET_RPI=y 3 CONFIG_TARGET_RPI=y
4 CONFIG_OF_BOARD_SETUP=y 4 CONFIG_OF_BOARD_SETUP=y
5 # CONFIG_DISPLAY_CPUINFO is not set 5 # CONFIG_DISPLAY_CPUINFO is not set
6 # CONFIG_DISPLAY_BOARDINFO is not set 6 # CONFIG_DISPLAY_BOARDINFO is not set
7 CONFIG_HUSH_PARSER=y 7 CONFIG_HUSH_PARSER=y
8 CONFIG_SYS_PROMPT="U-Boot> " 8 CONFIG_SYS_PROMPT="U-Boot> "
9 CONFIG_CMD_BOOTZ=y 9 CONFIG_CMD_BOOTZ=y
10 # CONFIG_CMD_IMLS is not set 10 # CONFIG_CMD_IMLS is not set
11 # CONFIG_CMD_FLASH is not set 11 # CONFIG_CMD_FLASH is not set
12 CONFIG_CMD_MMC=y 12 CONFIG_CMD_MMC=y
13 CONFIG_CMD_USB=y 13 CONFIG_CMD_USB=y
14 # CONFIG_CMD_FPGA is not set 14 # CONFIG_CMD_FPGA is not set
15 CONFIG_CMD_GPIO=y 15 CONFIG_CMD_GPIO=y
16 CONFIG_CMD_DHCP=y 16 CONFIG_CMD_DHCP=y
17 CONFIG_CMD_MII=y 17 CONFIG_CMD_MII=y
18 CONFIG_CMD_PING=y 18 CONFIG_CMD_PING=y
19 CONFIG_CMD_EXT2=y 19 CONFIG_CMD_EXT2=y
20 CONFIG_CMD_EXT4=y 20 CONFIG_CMD_EXT4=y
21 CONFIG_CMD_FAT=y 21 CONFIG_CMD_FAT=y
22 CONFIG_CMD_FS_GENERIC=y 22 CONFIG_CMD_FS_GENERIC=y
23 CONFIG_USB=y 23 CONFIG_USB=y
24 CONFIG_USB_STORAGE=y 24 CONFIG_USB_STORAGE=y
25 CONFIG_CONSOLE_SCROLL_LINES=10
25 CONFIG_LCD=y 26 CONFIG_LCD=y
26 CONFIG_PHYS_TO_BUS=y 27 CONFIG_PHYS_TO_BUS=y
27 CONFIG_OF_LIBFDT=y 28 CONFIG_OF_LIBFDT=y
28 29
configs/seaboard_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_TEGRA=y 2 CONFIG_TEGRA=y
3 CONFIG_TEGRA20=y 3 CONFIG_TEGRA20=y
4 CONFIG_TARGET_SEABOARD=y 4 CONFIG_TARGET_SEABOARD=y
5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-seaboard" 5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-seaboard"
6 CONFIG_OF_SYSTEM_SETUP=y 6 CONFIG_OF_SYSTEM_SETUP=y
7 CONFIG_HUSH_PARSER=y 7 CONFIG_HUSH_PARSER=y
8 CONFIG_SYS_PROMPT="Tegra20 (SeaBoard) # " 8 CONFIG_SYS_PROMPT="Tegra20 (SeaBoard) # "
9 CONFIG_CMD_BOOTZ=y 9 CONFIG_CMD_BOOTZ=y
10 # CONFIG_CMD_IMI is not set 10 # CONFIG_CMD_IMI is not set
11 # CONFIG_CMD_IMLS is not set 11 # CONFIG_CMD_IMLS is not set
12 # CONFIG_CMD_FLASH is not set 12 # CONFIG_CMD_FLASH is not set
13 CONFIG_CMD_MMC=y 13 CONFIG_CMD_MMC=y
14 CONFIG_CMD_I2C=y 14 CONFIG_CMD_I2C=y
15 CONFIG_CMD_USB=y 15 CONFIG_CMD_USB=y
16 # CONFIG_CMD_FPGA is not set 16 # CONFIG_CMD_FPGA is not set
17 CONFIG_CMD_GPIO=y 17 CONFIG_CMD_GPIO=y
18 # CONFIG_CMD_SETEXPR is not set 18 # CONFIG_CMD_SETEXPR is not set
19 CONFIG_CMD_DHCP=y 19 CONFIG_CMD_DHCP=y
20 # CONFIG_CMD_NFS is not set 20 # CONFIG_CMD_NFS is not set
21 CONFIG_CMD_MII=y 21 CONFIG_CMD_MII=y
22 CONFIG_CMD_PING=y 22 CONFIG_CMD_PING=y
23 CONFIG_CMD_PMIC=y 23 CONFIG_CMD_PMIC=y
24 CONFIG_CMD_REGULATOR=y 24 CONFIG_CMD_REGULATOR=y
25 CONFIG_CMD_EXT2=y 25 CONFIG_CMD_EXT2=y
26 CONFIG_CMD_EXT4=y 26 CONFIG_CMD_EXT4=y
27 CONFIG_CMD_EXT4_WRITE=y 27 CONFIG_CMD_EXT4_WRITE=y
28 CONFIG_CMD_FAT=y 28 CONFIG_CMD_FAT=y
29 CONFIG_CMD_FS_GENERIC=y 29 CONFIG_CMD_FS_GENERIC=y
30 CONFIG_SPL_DM=y 30 CONFIG_SPL_DM=y
31 # CONFIG_BLK is not set 31 # CONFIG_BLK is not set
32 # CONFIG_DM_MMC_OPS is not set 32 # CONFIG_DM_MMC_OPS is not set
33 CONFIG_DM_PMIC=y 33 CONFIG_DM_PMIC=y
34 CONFIG_DM_REGULATOR=y 34 CONFIG_DM_REGULATOR=y
35 CONFIG_DM_REGULATOR_FIXED=y 35 CONFIG_DM_REGULATOR_FIXED=y
36 CONFIG_PWM_TEGRA=y 36 CONFIG_PWM_TEGRA=y
37 CONFIG_SYS_NS16550=y 37 CONFIG_SYS_NS16550=y
38 CONFIG_USB=y 38 CONFIG_USB=y
39 CONFIG_DM_USB=y 39 CONFIG_DM_USB=y
40 CONFIG_USB_ULPI_VIEWPORT=y 40 CONFIG_USB_ULPI_VIEWPORT=y
41 CONFIG_USB_ULPI=y 41 CONFIG_USB_ULPI=y
42 CONFIG_USB_STORAGE=y 42 CONFIG_USB_STORAGE=y
43 CONFIG_DM_VIDEO=y 43 CONFIG_DM_VIDEO=y
44 CONFIG_VIDEO_TEGRA20=y 44 CONFIG_VIDEO_TEGRA20=y
45 CONFIG_CONSOLE_SCROLL_LINES=10
45 46
configs/som-db5800-som-6867_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_VENDOR_ADVANTECH=y 2 CONFIG_VENDOR_ADVANTECH=y
3 CONFIG_TARGET_SOM_DB5800_SOM_6867=y 3 CONFIG_TARGET_SOM_DB5800_SOM_6867=y
4 CONFIG_DEFAULT_DEVICE_TREE="baytrail_som-db5800-som-6867" 4 CONFIG_DEFAULT_DEVICE_TREE="baytrail_som-db5800-som-6867"
5 CONFIG_HAVE_INTEL_ME=y 5 CONFIG_HAVE_INTEL_ME=y
6 CONFIG_ENABLE_MRC_CACHE=y 6 CONFIG_ENABLE_MRC_CACHE=y
7 CONFIG_SMP=y 7 CONFIG_SMP=y
8 CONFIG_HAVE_VGA_BIOS=y 8 CONFIG_HAVE_VGA_BIOS=y
9 CONFIG_GENERATE_PIRQ_TABLE=y 9 CONFIG_GENERATE_PIRQ_TABLE=y
10 CONFIG_GENERATE_MP_TABLE=y 10 CONFIG_GENERATE_MP_TABLE=y
11 CONFIG_GENERATE_ACPI_TABLE=y 11 CONFIG_GENERATE_ACPI_TABLE=y
12 CONFIG_SEABIOS=y 12 CONFIG_SEABIOS=y
13 CONFIG_FIT=y 13 CONFIG_FIT=y
14 CONFIG_FIT_SIGNATURE=y 14 CONFIG_FIT_SIGNATURE=y
15 CONFIG_BOOTSTAGE=y 15 CONFIG_BOOTSTAGE=y
16 CONFIG_BOOTSTAGE_REPORT=y 16 CONFIG_BOOTSTAGE_REPORT=y
17 CONFIG_HUSH_PARSER=y 17 CONFIG_HUSH_PARSER=y
18 CONFIG_CMD_CPU=y 18 CONFIG_CMD_CPU=y
19 # CONFIG_CMD_IMLS is not set 19 # CONFIG_CMD_IMLS is not set
20 # CONFIG_CMD_FLASH is not set 20 # CONFIG_CMD_FLASH is not set
21 CONFIG_CMD_SF=y 21 CONFIG_CMD_SF=y
22 CONFIG_CMD_SPI=y 22 CONFIG_CMD_SPI=y
23 CONFIG_CMD_USB=y 23 CONFIG_CMD_USB=y
24 CONFIG_CMD_GPIO=y 24 CONFIG_CMD_GPIO=y
25 # CONFIG_CMD_SETEXPR is not set 25 # CONFIG_CMD_SETEXPR is not set
26 CONFIG_CMD_DHCP=y 26 CONFIG_CMD_DHCP=y
27 # CONFIG_CMD_NFS is not set 27 # CONFIG_CMD_NFS is not set
28 CONFIG_CMD_PING=y 28 CONFIG_CMD_PING=y
29 CONFIG_CMD_TIME=y 29 CONFIG_CMD_TIME=y
30 CONFIG_CMD_BOOTSTAGE=y 30 CONFIG_CMD_BOOTSTAGE=y
31 CONFIG_CMD_EXT2=y 31 CONFIG_CMD_EXT2=y
32 CONFIG_CMD_EXT4=y 32 CONFIG_CMD_EXT4=y
33 CONFIG_CMD_EXT4_WRITE=y 33 CONFIG_CMD_EXT4_WRITE=y
34 CONFIG_CMD_FAT=y 34 CONFIG_CMD_FAT=y
35 CONFIG_CMD_FS_GENERIC=y 35 CONFIG_CMD_FS_GENERIC=y
36 CONFIG_OF_CONTROL=y 36 CONFIG_OF_CONTROL=y
37 CONFIG_REGMAP=y 37 CONFIG_REGMAP=y
38 CONFIG_SYSCON=y 38 CONFIG_SYSCON=y
39 CONFIG_CPU=y 39 CONFIG_CPU=y
40 CONFIG_SPI_FLASH=y 40 CONFIG_SPI_FLASH=y
41 CONFIG_SPI_FLASH_GIGADEVICE=y 41 CONFIG_SPI_FLASH_GIGADEVICE=y
42 CONFIG_SPI_FLASH_MACRONIX=y 42 CONFIG_SPI_FLASH_MACRONIX=y
43 CONFIG_SPI_FLASH_STMICRO=y 43 CONFIG_SPI_FLASH_STMICRO=y
44 CONFIG_SPI_FLASH_WINBOND=y 44 CONFIG_SPI_FLASH_WINBOND=y
45 CONFIG_DM_ETH=y 45 CONFIG_DM_ETH=y
46 CONFIG_E1000=y 46 CONFIG_E1000=y
47 CONFIG_DM_PCI=y 47 CONFIG_DM_PCI=y
48 CONFIG_DM_RTC=y 48 CONFIG_DM_RTC=y
49 CONFIG_DEBUG_UART=y 49 CONFIG_DEBUG_UART=y
50 CONFIG_DEBUG_UART_BASE=0x3f8 50 CONFIG_DEBUG_UART_BASE=0x3f8
51 CONFIG_DEBUG_UART_CLOCK=1843200 51 CONFIG_DEBUG_UART_CLOCK=1843200
52 CONFIG_SYS_NS16550=y 52 CONFIG_SYS_NS16550=y
53 CONFIG_ICH_SPI=y 53 CONFIG_ICH_SPI=y
54 CONFIG_TIMER=y 54 CONFIG_TIMER=y
55 CONFIG_USB=y 55 CONFIG_USB=y
56 CONFIG_DM_USB=y 56 CONFIG_DM_USB=y
57 CONFIG_USB_STORAGE=y 57 CONFIG_USB_STORAGE=y
58 CONFIG_DM_VIDEO=y 58 CONFIG_DM_VIDEO=y
59 CONFIG_VIDEO_VESA=y 59 CONFIG_VIDEO_VESA=y
60 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 60 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
61 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y 61 CONFIG_FRAMEBUFFER_VESA_MODE_11A=y
62 CONFIG_CFB_CONSOLE=y 62 CONFIG_CFB_CONSOLE=y
63 CONFIG_CONSOLE_SCROLL_LINES=5
63 CONFIG_USE_PRIVATE_LIBGCC=y 64 CONFIG_USE_PRIVATE_LIBGCC=y
64 65
configs/theadorable-x86-dfi-bt700_defconfig
1 CONFIG_X86=y 1 CONFIG_X86=y
2 CONFIG_VENDOR_DFI=y 2 CONFIG_VENDOR_DFI=y
3 CONFIG_DEFAULT_DEVICE_TREE="theadorable-x86-dfi-bt700" 3 CONFIG_DEFAULT_DEVICE_TREE="theadorable-x86-dfi-bt700"
4 CONFIG_TARGET_DFI_BT700=y 4 CONFIG_TARGET_DFI_BT700=y
5 CONFIG_HAVE_INTEL_ME=y 5 CONFIG_HAVE_INTEL_ME=y
6 CONFIG_ENABLE_MRC_CACHE=y 6 CONFIG_ENABLE_MRC_CACHE=y
7 CONFIG_SMP=y 7 CONFIG_SMP=y
8 CONFIG_HAVE_VGA_BIOS=y 8 CONFIG_HAVE_VGA_BIOS=y
9 CONFIG_GENERATE_PIRQ_TABLE=y 9 CONFIG_GENERATE_PIRQ_TABLE=y
10 CONFIG_GENERATE_MP_TABLE=y 10 CONFIG_GENERATE_MP_TABLE=y
11 CONFIG_GENERATE_ACPI_TABLE=y 11 CONFIG_GENERATE_ACPI_TABLE=y
12 CONFIG_SEABIOS=y 12 CONFIG_SEABIOS=y
13 CONFIG_FIT=y 13 CONFIG_FIT=y
14 CONFIG_FIT_SIGNATURE=y 14 CONFIG_FIT_SIGNATURE=y
15 CONFIG_BOOTSTAGE=y 15 CONFIG_BOOTSTAGE=y
16 CONFIG_BOOTSTAGE_REPORT=y 16 CONFIG_BOOTSTAGE_REPORT=y
17 CONFIG_HUSH_PARSER=y 17 CONFIG_HUSH_PARSER=y
18 CONFIG_CMD_CPU=y 18 CONFIG_CMD_CPU=y
19 # CONFIG_CMD_IMLS is not set 19 # CONFIG_CMD_IMLS is not set
20 # CONFIG_CMD_FLASH is not set 20 # CONFIG_CMD_FLASH is not set
21 CONFIG_CMD_MMC=y 21 CONFIG_CMD_MMC=y
22 CONFIG_CMD_SF=y 22 CONFIG_CMD_SF=y
23 CONFIG_CMD_SPI=y 23 CONFIG_CMD_SPI=y
24 CONFIG_CMD_USB=y 24 CONFIG_CMD_USB=y
25 CONFIG_CMD_GPIO=y 25 CONFIG_CMD_GPIO=y
26 # CONFIG_CMD_SETEXPR is not set 26 # CONFIG_CMD_SETEXPR is not set
27 CONFIG_CMD_DHCP=y 27 CONFIG_CMD_DHCP=y
28 # CONFIG_CMD_NFS is not set 28 # CONFIG_CMD_NFS is not set
29 CONFIG_CMD_PING=y 29 CONFIG_CMD_PING=y
30 CONFIG_CMD_TIME=y 30 CONFIG_CMD_TIME=y
31 CONFIG_CMD_BOOTSTAGE=y 31 CONFIG_CMD_BOOTSTAGE=y
32 CONFIG_CMD_EXT2=y 32 CONFIG_CMD_EXT2=y
33 CONFIG_CMD_EXT4=y 33 CONFIG_CMD_EXT4=y
34 CONFIG_CMD_EXT4_WRITE=y 34 CONFIG_CMD_EXT4_WRITE=y
35 CONFIG_CMD_FAT=y 35 CONFIG_CMD_FAT=y
36 CONFIG_CMD_FS_GENERIC=y 36 CONFIG_CMD_FS_GENERIC=y
37 CONFIG_OF_CONTROL=y 37 CONFIG_OF_CONTROL=y
38 CONFIG_REGMAP=y 38 CONFIG_REGMAP=y
39 CONFIG_SYSCON=y 39 CONFIG_SYSCON=y
40 CONFIG_CPU=y 40 CONFIG_CPU=y
41 CONFIG_DM_I2C=y 41 CONFIG_DM_I2C=y
42 CONFIG_NUVOTON_NCT6102D=y 42 CONFIG_NUVOTON_NCT6102D=y
43 CONFIG_SPI_FLASH=y 43 CONFIG_SPI_FLASH=y
44 CONFIG_SPI_FLASH_GIGADEVICE=y 44 CONFIG_SPI_FLASH_GIGADEVICE=y
45 CONFIG_SPI_FLASH_MACRONIX=y 45 CONFIG_SPI_FLASH_MACRONIX=y
46 CONFIG_SPI_FLASH_STMICRO=y 46 CONFIG_SPI_FLASH_STMICRO=y
47 CONFIG_SPI_FLASH_WINBOND=y 47 CONFIG_SPI_FLASH_WINBOND=y
48 CONFIG_DM_ETH=y 48 CONFIG_DM_ETH=y
49 CONFIG_E1000=y 49 CONFIG_E1000=y
50 CONFIG_DM_PCI=y 50 CONFIG_DM_PCI=y
51 CONFIG_DM_RTC=y 51 CONFIG_DM_RTC=y
52 CONFIG_SYS_NS16550=y 52 CONFIG_SYS_NS16550=y
53 CONFIG_ICH_SPI=y 53 CONFIG_ICH_SPI=y
54 CONFIG_TIMER=y 54 CONFIG_TIMER=y
55 CONFIG_USB=y 55 CONFIG_USB=y
56 CONFIG_DM_USB=y 56 CONFIG_DM_USB=y
57 CONFIG_USB_STORAGE=y 57 CONFIG_USB_STORAGE=y
58 CONFIG_DM_VIDEO=y 58 CONFIG_DM_VIDEO=y
59 CONFIG_VIDEO_VESA=y 59 CONFIG_VIDEO_VESA=y
60 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y 60 CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
61 CONFIG_FRAMEBUFFER_VESA_MODE_114=y 61 CONFIG_FRAMEBUFFER_VESA_MODE_114=y
62 CONFIG_CFB_CONSOLE=y 62 CONFIG_CFB_CONSOLE=y
63 CONFIG_CONSOLE_SCROLL_LINES=5
63 CONFIG_USE_PRIVATE_LIBGCC=y 64 CONFIG_USE_PRIVATE_LIBGCC=y
64 65
configs/ventana_defconfig
1 CONFIG_ARM=y 1 CONFIG_ARM=y
2 CONFIG_TEGRA=y 2 CONFIG_TEGRA=y
3 CONFIG_TEGRA20=y 3 CONFIG_TEGRA20=y
4 CONFIG_TARGET_VENTANA=y 4 CONFIG_TARGET_VENTANA=y
5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-ventana" 5 CONFIG_DEFAULT_DEVICE_TREE="tegra20-ventana"
6 CONFIG_OF_SYSTEM_SETUP=y 6 CONFIG_OF_SYSTEM_SETUP=y
7 CONFIG_HUSH_PARSER=y 7 CONFIG_HUSH_PARSER=y
8 CONFIG_SYS_PROMPT="Tegra20 (Ventana) # " 8 CONFIG_SYS_PROMPT="Tegra20 (Ventana) # "
9 CONFIG_CMD_BOOTZ=y 9 CONFIG_CMD_BOOTZ=y
10 # CONFIG_CMD_IMI is not set 10 # CONFIG_CMD_IMI is not set
11 # CONFIG_CMD_IMLS is not set 11 # CONFIG_CMD_IMLS is not set
12 # CONFIG_CMD_FLASH is not set 12 # CONFIG_CMD_FLASH is not set
13 CONFIG_CMD_MMC=y 13 CONFIG_CMD_MMC=y
14 CONFIG_CMD_USB=y 14 CONFIG_CMD_USB=y
15 # CONFIG_CMD_FPGA is not set 15 # CONFIG_CMD_FPGA is not set
16 CONFIG_CMD_GPIO=y 16 CONFIG_CMD_GPIO=y
17 # CONFIG_CMD_SETEXPR is not set 17 # CONFIG_CMD_SETEXPR is not set
18 CONFIG_CMD_DHCP=y 18 CONFIG_CMD_DHCP=y
19 # CONFIG_CMD_NFS is not set 19 # CONFIG_CMD_NFS is not set
20 CONFIG_CMD_MII=y 20 CONFIG_CMD_MII=y
21 CONFIG_CMD_PING=y 21 CONFIG_CMD_PING=y
22 CONFIG_CMD_PMIC=y 22 CONFIG_CMD_PMIC=y
23 CONFIG_CMD_REGULATOR=y 23 CONFIG_CMD_REGULATOR=y
24 CONFIG_CMD_EXT2=y 24 CONFIG_CMD_EXT2=y
25 CONFIG_CMD_EXT4=y 25 CONFIG_CMD_EXT4=y
26 CONFIG_CMD_EXT4_WRITE=y 26 CONFIG_CMD_EXT4_WRITE=y
27 CONFIG_CMD_FAT=y 27 CONFIG_CMD_FAT=y
28 CONFIG_CMD_FS_GENERIC=y 28 CONFIG_CMD_FS_GENERIC=y
29 CONFIG_SPL_DM=y 29 CONFIG_SPL_DM=y
30 # CONFIG_BLK is not set 30 # CONFIG_BLK is not set
31 # CONFIG_DM_MMC_OPS is not set 31 # CONFIG_DM_MMC_OPS is not set
32 CONFIG_DM_PMIC=y 32 CONFIG_DM_PMIC=y
33 CONFIG_DM_REGULATOR=y 33 CONFIG_DM_REGULATOR=y
34 CONFIG_DM_REGULATOR_FIXED=y 34 CONFIG_DM_REGULATOR_FIXED=y
35 CONFIG_PWM_TEGRA=y 35 CONFIG_PWM_TEGRA=y
36 CONFIG_SYS_NS16550=y 36 CONFIG_SYS_NS16550=y
37 CONFIG_USB=y 37 CONFIG_USB=y
38 CONFIG_DM_USB=y 38 CONFIG_DM_USB=y
39 CONFIG_USB_ULPI_VIEWPORT=y 39 CONFIG_USB_ULPI_VIEWPORT=y
40 CONFIG_USB_ULPI=y 40 CONFIG_USB_ULPI=y
41 CONFIG_USB_STORAGE=y 41 CONFIG_USB_STORAGE=y
42 CONFIG_DM_VIDEO=y 42 CONFIG_DM_VIDEO=y
43 CONFIG_VIDEO_TEGRA20=y 43 CONFIG_VIDEO_TEGRA20=y
44 CONFIG_CONSOLE_SCROLL_LINES=10
44 45
drivers/video/Kconfig
1 # 1 #
2 # Video configuration 2 # Video configuration
3 # 3 #
4 4
5 menu "Graphics support" 5 menu "Graphics support"
6 6
7 config DM_VIDEO 7 config DM_VIDEO
8 bool "Enable driver model support for LCD/video" 8 bool "Enable driver model support for LCD/video"
9 depends on DM 9 depends on DM
10 help 10 help
11 This enables driver model for LCD and video devices. These support 11 This enables driver model for LCD and video devices. These support
12 a bitmap display of various sizes and depths which can be drawn on 12 a bitmap display of various sizes and depths which can be drawn on
13 to display a command-line console or splash screen. Enabling this 13 to display a command-line console or splash screen. Enabling this
14 option compiles in the video uclass and routes all LCD/video access 14 option compiles in the video uclass and routes all LCD/video access
15 through this. 15 through this.
16 16
17 config VIDEO_BPP8 17 config VIDEO_BPP8
18 bool "Support 8-bit-per-pixel displays" 18 bool "Support 8-bit-per-pixel displays"
19 depends on DM_VIDEO 19 depends on DM_VIDEO
20 default y if DM_VIDEO 20 default y if DM_VIDEO
21 help 21 help
22 Support drawing text and bitmaps onto a 8-bit-per-pixel display. 22 Support drawing text and bitmaps onto a 8-bit-per-pixel display.
23 Enabling this will include code to support this display. Without 23 Enabling this will include code to support this display. Without
24 this option, such displays will not be supported and console output 24 this option, such displays will not be supported and console output
25 will be empty. 25 will be empty.
26 26
27 config VIDEO_BPP16 27 config VIDEO_BPP16
28 bool "Support 16-bit-per-pixel displays" 28 bool "Support 16-bit-per-pixel displays"
29 depends on DM_VIDEO 29 depends on DM_VIDEO
30 default y if DM_VIDEO 30 default y if DM_VIDEO
31 help 31 help
32 Support drawing text and bitmaps onto a 16-bit-per-pixel display. 32 Support drawing text and bitmaps onto a 16-bit-per-pixel display.
33 Enabling this will include code to support this display. Without 33 Enabling this will include code to support this display. Without
34 this option, such displays will not be supported and console output 34 this option, such displays will not be supported and console output
35 will be empty. 35 will be empty.
36 36
37 config VIDEO_BPP32 37 config VIDEO_BPP32
38 bool "Support 32-bit-per-pixel displays" 38 bool "Support 32-bit-per-pixel displays"
39 depends on DM_VIDEO 39 depends on DM_VIDEO
40 default y if DM_VIDEO 40 default y if DM_VIDEO
41 help 41 help
42 Support drawing text and bitmaps onto a 32-bit-per-pixel display. 42 Support drawing text and bitmaps onto a 32-bit-per-pixel display.
43 Enabling this will include code to support this display. Without 43 Enabling this will include code to support this display. Without
44 this option, such displays will not be supported and console output 44 this option, such displays will not be supported and console output
45 will be empty. 45 will be empty.
46 46
47 config CONSOLE_NORMAL 47 config CONSOLE_NORMAL
48 bool "Support a simple text console" 48 bool "Support a simple text console"
49 depends on DM_VIDEO 49 depends on DM_VIDEO
50 default y if DM_VIDEO 50 default y if DM_VIDEO
51 help 51 help
52 Support drawing text on the frame buffer console so that it can be 52 Support drawing text on the frame buffer console so that it can be
53 used as a console. Rotation is not supported by this driver (see 53 used as a console. Rotation is not supported by this driver (see
54 CONFIG_CONSOLE_ROTATION for that). A built-in 8x16 font is used 54 CONFIG_CONSOLE_ROTATION for that). A built-in 8x16 font is used
55 for the display. 55 for the display.
56 56
57 config CONSOLE_ROTATION 57 config CONSOLE_ROTATION
58 bool "Support rotated displays" 58 bool "Support rotated displays"
59 depends on DM_VIDEO 59 depends on DM_VIDEO
60 help 60 help
61 Sometimes, for example if the display is mounted in portrait 61 Sometimes, for example if the display is mounted in portrait
62 mode or even if it's mounted landscape but rotated by 180degree, 62 mode or even if it's mounted landscape but rotated by 180degree,
63 we need to rotate our content of the display relative to the 63 we need to rotate our content of the display relative to the
64 framebuffer, so that user can read the messages which are 64 framebuffer, so that user can read the messages which are
65 printed out. Enable this option to include a text driver which can 65 printed out. Enable this option to include a text driver which can
66 support this. The rotation is set by the 'rot' parameter in 66 support this. The rotation is set by the 'rot' parameter in
67 struct video_priv: 0=unrotated, 1=90 degrees clockwise, 2=180 67 struct video_priv: 0=unrotated, 1=90 degrees clockwise, 2=180
68 degrees, 3=270 degrees. 68 degrees, 3=270 degrees.
69 69
70 config CONSOLE_TRUETYPE 70 config CONSOLE_TRUETYPE
71 bool "Support a console that uses TrueType fonts" 71 bool "Support a console that uses TrueType fonts"
72 depends on DM_VIDEO 72 depends on DM_VIDEO
73 help 73 help
74 TrueTrype fonts can provide outline-drawing capability rather than 74 TrueTrype fonts can provide outline-drawing capability rather than
75 needing to provide a bitmap for each font and size that is needed. 75 needing to provide a bitmap for each font and size that is needed.
76 With this option you can adjust the text size and use a variety of 76 With this option you can adjust the text size and use a variety of
77 fonts. Note that this is noticeably slower than with normal console. 77 fonts. Note that this is noticeably slower than with normal console.
78 78
79 config CONSOLE_TRUETYPE_SIZE 79 config CONSOLE_TRUETYPE_SIZE
80 int "TrueType font size" 80 int "TrueType font size"
81 depends on CONSOLE_TRUETYPE 81 depends on CONSOLE_TRUETYPE
82 default 18 82 default 18
83 help 83 help
84 This sets the font size for the console. The size is measured in 84 This sets the font size for the console. The size is measured in
85 pixels and is the nominal height of a character. Note that fonts 85 pixels and is the nominal height of a character. Note that fonts
86 are commonly measured in 'points', being 1/72 inch (about 3.52mm). 86 are commonly measured in 'points', being 1/72 inch (about 3.52mm).
87 However that measurement depends on the size of your display and 87 However that measurement depends on the size of your display and
88 there is no standard display density. At present there is not a 88 there is no standard display density. At present there is not a
89 method to select the display's physical size, which would allow 89 method to select the display's physical size, which would allow
90 U-Boot to calculate the correct font size. 90 U-Boot to calculate the correct font size.
91 91
92 source "drivers/video/fonts/Kconfig" 92 source "drivers/video/fonts/Kconfig"
93 93
94 config VIDCONSOLE_AS_LCD 94 config VIDCONSOLE_AS_LCD
95 bool "Use 'vidconsole' when 'lcd' is seen in stdout" 95 bool "Use 'vidconsole' when 'lcd' is seen in stdout"
96 depends on DM_VIDEO 96 depends on DM_VIDEO
97 help 97 help
98 This is a work-around for boards which have 'lcd' in their stdout 98 This is a work-around for boards which have 'lcd' in their stdout
99 environment variable, but have moved to use driver model for video. 99 environment variable, but have moved to use driver model for video.
100 In this case the console will no-longer work. While it is possible 100 In this case the console will no-longer work. While it is possible
101 to update the environment, the breakage may be confusing for users. 101 to update the environment, the breakage may be confusing for users.
102 This option will be removed around the end of 2016. 102 This option will be removed around the end of 2016.
103 103
104 config VIDEO_COREBOOT 104 config VIDEO_COREBOOT
105 bool "Enable coreboot framebuffer driver support" 105 bool "Enable coreboot framebuffer driver support"
106 depends on X86 && SYS_COREBOOT 106 depends on X86 && SYS_COREBOOT
107 help 107 help
108 Turn on this option to enable a framebuffer driver when U-Boot is 108 Turn on this option to enable a framebuffer driver when U-Boot is
109 loaded by coreboot where the graphics device is configured by 109 loaded by coreboot where the graphics device is configured by
110 coreboot already. This can in principle be used with any platform 110 coreboot already. This can in principle be used with any platform
111 that coreboot supports. 111 that coreboot supports.
112 112
113 config VIDEO_VESA 113 config VIDEO_VESA
114 bool "Enable VESA video driver support" 114 bool "Enable VESA video driver support"
115 default n 115 default n
116 help 116 help
117 Turn on this option to enable a very simple driver which uses vesa 117 Turn on this option to enable a very simple driver which uses vesa
118 to discover the video mode and then provides a frame buffer for use 118 to discover the video mode and then provides a frame buffer for use
119 by U-Boot. This can in principle be used with any platform that 119 by U-Boot. This can in principle be used with any platform that
120 supports PCI and video cards that support VESA BIOS Extension (VBE). 120 supports PCI and video cards that support VESA BIOS Extension (VBE).
121 121
122 config FRAMEBUFFER_SET_VESA_MODE 122 config FRAMEBUFFER_SET_VESA_MODE
123 bool "Set framebuffer graphics resolution" 123 bool "Set framebuffer graphics resolution"
124 depends on VIDEO_VESA || VIDEO_BROADWELL_IGD 124 depends on VIDEO_VESA || VIDEO_BROADWELL_IGD
125 help 125 help
126 Set VESA/native framebuffer mode (needed for bootsplash and graphical 126 Set VESA/native framebuffer mode (needed for bootsplash and graphical
127 framebuffer console) 127 framebuffer console)
128 128
129 choice 129 choice
130 prompt "framebuffer graphics resolution" 130 prompt "framebuffer graphics resolution"
131 default FRAMEBUFFER_VESA_MODE_117 131 default FRAMEBUFFER_VESA_MODE_117
132 depends on FRAMEBUFFER_SET_VESA_MODE 132 depends on FRAMEBUFFER_SET_VESA_MODE
133 help 133 help
134 This option sets the resolution used for the U-Boot framebuffer (and 134 This option sets the resolution used for the U-Boot framebuffer (and
135 bootsplash screen). 135 bootsplash screen).
136 136
137 config FRAMEBUFFER_VESA_MODE_100 137 config FRAMEBUFFER_VESA_MODE_100
138 bool "640x400 256-color" 138 bool "640x400 256-color"
139 139
140 config FRAMEBUFFER_VESA_MODE_101 140 config FRAMEBUFFER_VESA_MODE_101
141 bool "640x480 256-color" 141 bool "640x480 256-color"
142 142
143 config FRAMEBUFFER_VESA_MODE_102 143 config FRAMEBUFFER_VESA_MODE_102
144 bool "800x600 16-color" 144 bool "800x600 16-color"
145 145
146 config FRAMEBUFFER_VESA_MODE_103 146 config FRAMEBUFFER_VESA_MODE_103
147 bool "800x600 256-color" 147 bool "800x600 256-color"
148 148
149 config FRAMEBUFFER_VESA_MODE_104 149 config FRAMEBUFFER_VESA_MODE_104
150 bool "1024x768 16-color" 150 bool "1024x768 16-color"
151 151
152 config FRAMEBUFFER_VESA_MODE_105 152 config FRAMEBUFFER_VESA_MODE_105
153 bool "1024x768 256-color" 153 bool "1024x768 256-color"
154 154
155 config FRAMEBUFFER_VESA_MODE_106 155 config FRAMEBUFFER_VESA_MODE_106
156 bool "1280x1024 16-color" 156 bool "1280x1024 16-color"
157 157
158 config FRAMEBUFFER_VESA_MODE_107 158 config FRAMEBUFFER_VESA_MODE_107
159 bool "1280x1024 256-color" 159 bool "1280x1024 256-color"
160 160
161 config FRAMEBUFFER_VESA_MODE_108 161 config FRAMEBUFFER_VESA_MODE_108
162 bool "80x60 text" 162 bool "80x60 text"
163 163
164 config FRAMEBUFFER_VESA_MODE_109 164 config FRAMEBUFFER_VESA_MODE_109
165 bool "132x25 text" 165 bool "132x25 text"
166 166
167 config FRAMEBUFFER_VESA_MODE_10A 167 config FRAMEBUFFER_VESA_MODE_10A
168 bool "132x43 text" 168 bool "132x43 text"
169 169
170 config FRAMEBUFFER_VESA_MODE_10B 170 config FRAMEBUFFER_VESA_MODE_10B
171 bool "132x50 text" 171 bool "132x50 text"
172 172
173 config FRAMEBUFFER_VESA_MODE_10C 173 config FRAMEBUFFER_VESA_MODE_10C
174 bool "132x60 text" 174 bool "132x60 text"
175 175
176 config FRAMEBUFFER_VESA_MODE_10D 176 config FRAMEBUFFER_VESA_MODE_10D
177 bool "320x200 32k-color (1:5:5:5)" 177 bool "320x200 32k-color (1:5:5:5)"
178 178
179 config FRAMEBUFFER_VESA_MODE_10E 179 config FRAMEBUFFER_VESA_MODE_10E
180 bool "320x200 64k-color (5:6:5)" 180 bool "320x200 64k-color (5:6:5)"
181 181
182 config FRAMEBUFFER_VESA_MODE_10F 182 config FRAMEBUFFER_VESA_MODE_10F
183 bool "320x200 16.8M-color (8:8:8)" 183 bool "320x200 16.8M-color (8:8:8)"
184 184
185 config FRAMEBUFFER_VESA_MODE_110 185 config FRAMEBUFFER_VESA_MODE_110
186 bool "640x480 32k-color (1:5:5:5)" 186 bool "640x480 32k-color (1:5:5:5)"
187 187
188 config FRAMEBUFFER_VESA_MODE_111 188 config FRAMEBUFFER_VESA_MODE_111
189 bool "640x480 64k-color (5:6:5)" 189 bool "640x480 64k-color (5:6:5)"
190 190
191 config FRAMEBUFFER_VESA_MODE_112 191 config FRAMEBUFFER_VESA_MODE_112
192 bool "640x480 16.8M-color (8:8:8)" 192 bool "640x480 16.8M-color (8:8:8)"
193 193
194 config FRAMEBUFFER_VESA_MODE_113 194 config FRAMEBUFFER_VESA_MODE_113
195 bool "800x600 32k-color (1:5:5:5)" 195 bool "800x600 32k-color (1:5:5:5)"
196 196
197 config FRAMEBUFFER_VESA_MODE_114 197 config FRAMEBUFFER_VESA_MODE_114
198 bool "800x600 64k-color (5:6:5)" 198 bool "800x600 64k-color (5:6:5)"
199 199
200 config FRAMEBUFFER_VESA_MODE_115 200 config FRAMEBUFFER_VESA_MODE_115
201 bool "800x600 16.8M-color (8:8:8)" 201 bool "800x600 16.8M-color (8:8:8)"
202 202
203 config FRAMEBUFFER_VESA_MODE_116 203 config FRAMEBUFFER_VESA_MODE_116
204 bool "1024x768 32k-color (1:5:5:5)" 204 bool "1024x768 32k-color (1:5:5:5)"
205 205
206 config FRAMEBUFFER_VESA_MODE_117 206 config FRAMEBUFFER_VESA_MODE_117
207 bool "1024x768 64k-color (5:6:5)" 207 bool "1024x768 64k-color (5:6:5)"
208 208
209 config FRAMEBUFFER_VESA_MODE_118 209 config FRAMEBUFFER_VESA_MODE_118
210 bool "1024x768 16.8M-color (8:8:8)" 210 bool "1024x768 16.8M-color (8:8:8)"
211 211
212 config FRAMEBUFFER_VESA_MODE_119 212 config FRAMEBUFFER_VESA_MODE_119
213 bool "1280x1024 32k-color (1:5:5:5)" 213 bool "1280x1024 32k-color (1:5:5:5)"
214 214
215 config FRAMEBUFFER_VESA_MODE_11A 215 config FRAMEBUFFER_VESA_MODE_11A
216 bool "1280x1024 64k-color (5:6:5)" 216 bool "1280x1024 64k-color (5:6:5)"
217 217
218 config FRAMEBUFFER_VESA_MODE_11B 218 config FRAMEBUFFER_VESA_MODE_11B
219 bool "1280x1024 16.8M-color (8:8:8)" 219 bool "1280x1024 16.8M-color (8:8:8)"
220 220
221 config FRAMEBUFFER_VESA_MODE_USER 221 config FRAMEBUFFER_VESA_MODE_USER
222 bool "Manually select VESA mode" 222 bool "Manually select VESA mode"
223 223
224 endchoice 224 endchoice
225 225
226 # Map the config names to an integer (KB). 226 # Map the config names to an integer (KB).
227 config FRAMEBUFFER_VESA_MODE 227 config FRAMEBUFFER_VESA_MODE
228 prompt "VESA mode" if FRAMEBUFFER_VESA_MODE_USER 228 prompt "VESA mode" if FRAMEBUFFER_VESA_MODE_USER
229 hex 229 hex
230 default 0x100 if FRAMEBUFFER_VESA_MODE_100 230 default 0x100 if FRAMEBUFFER_VESA_MODE_100
231 default 0x101 if FRAMEBUFFER_VESA_MODE_101 231 default 0x101 if FRAMEBUFFER_VESA_MODE_101
232 default 0x102 if FRAMEBUFFER_VESA_MODE_102 232 default 0x102 if FRAMEBUFFER_VESA_MODE_102
233 default 0x103 if FRAMEBUFFER_VESA_MODE_103 233 default 0x103 if FRAMEBUFFER_VESA_MODE_103
234 default 0x104 if FRAMEBUFFER_VESA_MODE_104 234 default 0x104 if FRAMEBUFFER_VESA_MODE_104
235 default 0x105 if FRAMEBUFFER_VESA_MODE_105 235 default 0x105 if FRAMEBUFFER_VESA_MODE_105
236 default 0x106 if FRAMEBUFFER_VESA_MODE_106 236 default 0x106 if FRAMEBUFFER_VESA_MODE_106
237 default 0x107 if FRAMEBUFFER_VESA_MODE_107 237 default 0x107 if FRAMEBUFFER_VESA_MODE_107
238 default 0x108 if FRAMEBUFFER_VESA_MODE_108 238 default 0x108 if FRAMEBUFFER_VESA_MODE_108
239 default 0x109 if FRAMEBUFFER_VESA_MODE_109 239 default 0x109 if FRAMEBUFFER_VESA_MODE_109
240 default 0x10A if FRAMEBUFFER_VESA_MODE_10A 240 default 0x10A if FRAMEBUFFER_VESA_MODE_10A
241 default 0x10B if FRAMEBUFFER_VESA_MODE_10B 241 default 0x10B if FRAMEBUFFER_VESA_MODE_10B
242 default 0x10C if FRAMEBUFFER_VESA_MODE_10C 242 default 0x10C if FRAMEBUFFER_VESA_MODE_10C
243 default 0x10D if FRAMEBUFFER_VESA_MODE_10D 243 default 0x10D if FRAMEBUFFER_VESA_MODE_10D
244 default 0x10E if FRAMEBUFFER_VESA_MODE_10E 244 default 0x10E if FRAMEBUFFER_VESA_MODE_10E
245 default 0x10F if FRAMEBUFFER_VESA_MODE_10F 245 default 0x10F if FRAMEBUFFER_VESA_MODE_10F
246 default 0x110 if FRAMEBUFFER_VESA_MODE_110 246 default 0x110 if FRAMEBUFFER_VESA_MODE_110
247 default 0x111 if FRAMEBUFFER_VESA_MODE_111 247 default 0x111 if FRAMEBUFFER_VESA_MODE_111
248 default 0x112 if FRAMEBUFFER_VESA_MODE_112 248 default 0x112 if FRAMEBUFFER_VESA_MODE_112
249 default 0x113 if FRAMEBUFFER_VESA_MODE_113 249 default 0x113 if FRAMEBUFFER_VESA_MODE_113
250 default 0x114 if FRAMEBUFFER_VESA_MODE_114 250 default 0x114 if FRAMEBUFFER_VESA_MODE_114
251 default 0x115 if FRAMEBUFFER_VESA_MODE_115 251 default 0x115 if FRAMEBUFFER_VESA_MODE_115
252 default 0x116 if FRAMEBUFFER_VESA_MODE_116 252 default 0x116 if FRAMEBUFFER_VESA_MODE_116
253 default 0x117 if FRAMEBUFFER_VESA_MODE_117 253 default 0x117 if FRAMEBUFFER_VESA_MODE_117
254 default 0x118 if FRAMEBUFFER_VESA_MODE_118 254 default 0x118 if FRAMEBUFFER_VESA_MODE_118
255 default 0x119 if FRAMEBUFFER_VESA_MODE_119 255 default 0x119 if FRAMEBUFFER_VESA_MODE_119
256 default 0x11A if FRAMEBUFFER_VESA_MODE_11A 256 default 0x11A if FRAMEBUFFER_VESA_MODE_11A
257 default 0x11B if FRAMEBUFFER_VESA_MODE_11B 257 default 0x11B if FRAMEBUFFER_VESA_MODE_11B
258 default 0x117 if FRAMEBUFFER_VESA_MODE_USER 258 default 0x117 if FRAMEBUFFER_VESA_MODE_USER
259 259
260 config VIDEO_LCD_ANX9804 260 config VIDEO_LCD_ANX9804
261 bool "ANX9804 bridge chip" 261 bool "ANX9804 bridge chip"
262 default n 262 default n
263 ---help--- 263 ---help---
264 Support for the ANX9804 bridge chip, which can take pixel data coming 264 Support for the ANX9804 bridge chip, which can take pixel data coming
265 from a parallel LCD interface and translate it on the fy into a DP 265 from a parallel LCD interface and translate it on the fy into a DP
266 interface for driving eDP TFT displays. It uses I2C for configuration. 266 interface for driving eDP TFT displays. It uses I2C for configuration.
267 267
268 config VIDEO_LCD_SSD2828 268 config VIDEO_LCD_SSD2828
269 bool "SSD2828 bridge chip" 269 bool "SSD2828 bridge chip"
270 default n 270 default n
271 ---help--- 271 ---help---
272 Support for the SSD2828 bridge chip, which can take pixel data coming 272 Support for the SSD2828 bridge chip, which can take pixel data coming
273 from a parallel LCD interface and translate it on the fly into MIPI DSI 273 from a parallel LCD interface and translate it on the fly into MIPI DSI
274 interface for driving a MIPI compatible LCD panel. It uses SPI for 274 interface for driving a MIPI compatible LCD panel. It uses SPI for
275 configuration. 275 configuration.
276 276
277 config VIDEO_LCD_SSD2828_TX_CLK 277 config VIDEO_LCD_SSD2828_TX_CLK
278 int "SSD2828 TX_CLK frequency (in MHz)" 278 int "SSD2828 TX_CLK frequency (in MHz)"
279 depends on VIDEO_LCD_SSD2828 279 depends on VIDEO_LCD_SSD2828
280 default 0 280 default 0
281 ---help--- 281 ---help---
282 The frequency of the crystal, which is clocking SSD2828. It may be 282 The frequency of the crystal, which is clocking SSD2828. It may be
283 anything in the 8MHz-30MHz range and the exact value should be 283 anything in the 8MHz-30MHz range and the exact value should be
284 retrieved from the board schematics. Or in the case of Allwinner 284 retrieved from the board schematics. Or in the case of Allwinner
285 hardware, it can be usually found as 'lcd_xtal_freq' variable in 285 hardware, it can be usually found as 'lcd_xtal_freq' variable in
286 FEX files. It can be also set to 0 for selecting PCLK from the 286 FEX files. It can be also set to 0 for selecting PCLK from the
287 parallel LCD interface instead of TX_CLK as the PLL clock source. 287 parallel LCD interface instead of TX_CLK as the PLL clock source.
288 288
289 config VIDEO_LCD_SSD2828_RESET 289 config VIDEO_LCD_SSD2828_RESET
290 string "RESET pin of SSD2828" 290 string "RESET pin of SSD2828"
291 depends on VIDEO_LCD_SSD2828 291 depends on VIDEO_LCD_SSD2828
292 default "" 292 default ""
293 ---help--- 293 ---help---
294 The reset pin of SSD2828 chip. This takes a string in the format 294 The reset pin of SSD2828 chip. This takes a string in the format
295 understood by 'name_to_gpio' function, e.g. PH1 for pin 1 of port H. 295 understood by 'name_to_gpio' function, e.g. PH1 for pin 1 of port H.
296 296
297 config VIDEO_LCD_HITACHI_TX18D42VM 297 config VIDEO_LCD_HITACHI_TX18D42VM
298 bool "Hitachi tx18d42vm LVDS LCD panel support" 298 bool "Hitachi tx18d42vm LVDS LCD panel support"
299 depends on VIDEO 299 depends on VIDEO
300 default n 300 default n
301 ---help--- 301 ---help---
302 Support for Hitachi tx18d42vm LVDS LCD panels, these panels have a 302 Support for Hitachi tx18d42vm LVDS LCD panels, these panels have a
303 lcd controller which needs to be initialized over SPI, once that is 303 lcd controller which needs to be initialized over SPI, once that is
304 done they work like a regular LVDS panel. 304 done they work like a regular LVDS panel.
305 305
306 config VIDEO_LCD_SPI_CS 306 config VIDEO_LCD_SPI_CS
307 string "SPI CS pin for LCD related config job" 307 string "SPI CS pin for LCD related config job"
308 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM 308 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM
309 default "" 309 default ""
310 ---help--- 310 ---help---
311 This is one of the SPI communication pins, involved in setting up a 311 This is one of the SPI communication pins, involved in setting up a
312 working LCD configuration. The exact role of SPI may differ for 312 working LCD configuration. The exact role of SPI may differ for
313 different hardware setups. The option takes a string in the format 313 different hardware setups. The option takes a string in the format
314 understood by 'name_to_gpio' function, e.g. PH1 for pin 1 of port H. 314 understood by 'name_to_gpio' function, e.g. PH1 for pin 1 of port H.
315 315
316 config VIDEO_LCD_SPI_SCLK 316 config VIDEO_LCD_SPI_SCLK
317 string "SPI SCLK pin for LCD related config job" 317 string "SPI SCLK pin for LCD related config job"
318 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM 318 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM
319 default "" 319 default ""
320 ---help--- 320 ---help---
321 This is one of the SPI communication pins, involved in setting up a 321 This is one of the SPI communication pins, involved in setting up a
322 working LCD configuration. The exact role of SPI may differ for 322 working LCD configuration. The exact role of SPI may differ for
323 different hardware setups. The option takes a string in the format 323 different hardware setups. The option takes a string in the format
324 understood by 'name_to_gpio' function, e.g. PH1 for pin 1 of port H. 324 understood by 'name_to_gpio' function, e.g. PH1 for pin 1 of port H.
325 325
326 config VIDEO_LCD_SPI_MOSI 326 config VIDEO_LCD_SPI_MOSI
327 string "SPI MOSI pin for LCD related config job" 327 string "SPI MOSI pin for LCD related config job"
328 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM 328 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM
329 default "" 329 default ""
330 ---help--- 330 ---help---
331 This is one of the SPI communication pins, involved in setting up a 331 This is one of the SPI communication pins, involved in setting up a
332 working LCD configuration. The exact role of SPI may differ for 332 working LCD configuration. The exact role of SPI may differ for
333 different hardware setups. The option takes a string in the format 333 different hardware setups. The option takes a string in the format
334 understood by 'name_to_gpio' function, e.g. PH1 for pin 1 of port H. 334 understood by 'name_to_gpio' function, e.g. PH1 for pin 1 of port H.
335 335
336 config VIDEO_LCD_SPI_MISO 336 config VIDEO_LCD_SPI_MISO
337 string "SPI MISO pin for LCD related config job (optional)" 337 string "SPI MISO pin for LCD related config job (optional)"
338 depends on VIDEO_LCD_SSD2828 338 depends on VIDEO_LCD_SSD2828
339 default "" 339 default ""
340 ---help--- 340 ---help---
341 This is one of the SPI communication pins, involved in setting up a 341 This is one of the SPI communication pins, involved in setting up a
342 working LCD configuration. The exact role of SPI may differ for 342 working LCD configuration. The exact role of SPI may differ for
343 different hardware setups. If wired up, this pin may provide additional 343 different hardware setups. If wired up, this pin may provide additional
344 useful functionality. Such as bi-directional communication with the 344 useful functionality. Such as bi-directional communication with the
345 hardware and LCD panel id retrieval (if the panel can report it). The 345 hardware and LCD panel id retrieval (if the panel can report it). The
346 option takes a string in the format understood by 'name_to_gpio' 346 option takes a string in the format understood by 'name_to_gpio'
347 function, e.g. PH1 for pin 1 of port H. 347 function, e.g. PH1 for pin 1 of port H.
348 348
349 config VIDEO_MVEBU 349 config VIDEO_MVEBU
350 bool "Armada XP LCD controller" 350 bool "Armada XP LCD controller"
351 default n 351 default n
352 ---help--- 352 ---help---
353 Support for the LCD controller integrated in the Marvell 353 Support for the LCD controller integrated in the Marvell
354 Armada XP SoC. 354 Armada XP SoC.
355 355
356 config I2C_EDID 356 config I2C_EDID
357 bool "Enable EDID library" 357 bool "Enable EDID library"
358 depends on DM_I2C 358 depends on DM_I2C
359 default n 359 default n
360 help 360 help
361 This enables library for accessing EDID data from an LCD panel. 361 This enables library for accessing EDID data from an LCD panel.
362 362
363 config DISPLAY 363 config DISPLAY
364 bool "Enable Display support" 364 bool "Enable Display support"
365 depends on DM 365 depends on DM
366 default n 366 default n
367 select I2C_EDID 367 select I2C_EDID
368 help 368 help
369 This supports drivers that provide a display, such as eDP (Embedded 369 This supports drivers that provide a display, such as eDP (Embedded
370 DisplayPort) and HDMI (High Definition Multimedia Interface). 370 DisplayPort) and HDMI (High Definition Multimedia Interface).
371 The devices provide a simple interface to start up the display, 371 The devices provide a simple interface to start up the display,
372 read display information and enable it. 372 read display information and enable it.
373 373
374 config VIDEO_BROADWELL_IGD 374 config VIDEO_BROADWELL_IGD
375 bool "Enable Intel Broadwell integrated graphics device" 375 bool "Enable Intel Broadwell integrated graphics device"
376 depends on X86 376 depends on X86
377 help 377 help
378 This enables support for integrated graphics on Intel broadwell 378 This enables support for integrated graphics on Intel broadwell
379 devices. Initialisation is mostly performed by a VGA boot ROM, with 379 devices. Initialisation is mostly performed by a VGA boot ROM, with
380 some setup handled by U-Boot itself. The graphics adaptor works as 380 some setup handled by U-Boot itself. The graphics adaptor works as
381 a VESA device and supports LCD panels, eDP and LVDS outputs. 381 a VESA device and supports LCD panels, eDP and LVDS outputs.
382 Configuration of most aspects of device operation is performed using 382 Configuration of most aspects of device operation is performed using
383 a special tool which configures the VGA ROM, but the graphics 383 a special tool which configures the VGA ROM, but the graphics
384 resolution can be selected in U-Boot. 384 resolution can be selected in U-Boot.
385 385
386 config VIDEO_IVYBRIDGE_IGD 386 config VIDEO_IVYBRIDGE_IGD
387 bool "Enable Intel Ivybridge integration graphics support" 387 bool "Enable Intel Ivybridge integration graphics support"
388 depends on X86 388 depends on X86
389 help 389 help
390 This enables support for integrated graphics on Intel ivybridge 390 This enables support for integrated graphics on Intel ivybridge
391 devices. Initialisation is mostly performed by a VGA boot ROM, with 391 devices. Initialisation is mostly performed by a VGA boot ROM, with
392 some setup handled by U-Boot itself. The graphics adaptor works as 392 some setup handled by U-Boot itself. The graphics adaptor works as
393 a VESA device and supports LCD panels, eDP and LVDS outputs. 393 a VESA device and supports LCD panels, eDP and LVDS outputs.
394 Configuration of most aspects of device operation is performed using 394 Configuration of most aspects of device operation is performed using
395 a special tool which configures the VGA ROM, but the graphics 395 a special tool which configures the VGA ROM, but the graphics
396 resolution can be selected in U-Boot. 396 resolution can be selected in U-Boot.
397 397
398 config VIDEO_ROCKCHIP 398 config VIDEO_ROCKCHIP
399 bool "Enable Rockchip video support" 399 bool "Enable Rockchip video support"
400 depends on DM_VIDEO 400 depends on DM_VIDEO
401 help 401 help
402 Rockchip SoCs provide video output capabilities for High-Definition 402 Rockchip SoCs provide video output capabilities for High-Definition
403 Multimedia Interface (HDMI), Low-voltage Differential Signalling 403 Multimedia Interface (HDMI), Low-voltage Differential Signalling
404 (LVDS), embedded DisplayPort (eDP) and Display Serial Interface 404 (LVDS), embedded DisplayPort (eDP) and Display Serial Interface
405 (DSI). This driver supports the on-chip video output device, and 405 (DSI). This driver supports the on-chip video output device, and
406 targets the Rockchip RK3288. 406 targets the Rockchip RK3288.
407 407
408 config VIDEO_SANDBOX_SDL 408 config VIDEO_SANDBOX_SDL
409 bool "Enable sandbox video console using SDL" 409 bool "Enable sandbox video console using SDL"
410 depends on SANDBOX 410 depends on SANDBOX
411 help 411 help
412 When using sandbox you can enable an emulated LCD display which 412 When using sandbox you can enable an emulated LCD display which
413 appears as an SDL (Simple DirectMedia Layer) window. This is a 413 appears as an SDL (Simple DirectMedia Layer) window. This is a
414 console device and can display stdout output. Within U-Boot is is 414 console device and can display stdout output. Within U-Boot is is
415 a normal bitmap display and can display images as well as text. 415 a normal bitmap display and can display images as well as text.
416 416
417 config VIDEO_TEGRA20 417 config VIDEO_TEGRA20
418 bool "Enable LCD support on Tegra20" 418 bool "Enable LCD support on Tegra20"
419 depends on OF_CONTROL 419 depends on OF_CONTROL
420 help 420 help
421 Tegra20 supports video output to an attached LCD panel as well as 421 Tegra20 supports video output to an attached LCD panel as well as
422 other options such as HDMI. Only the LCD is supported in U-Boot. 422 other options such as HDMI. Only the LCD is supported in U-Boot.
423 This option enables this support which can be used on devices which 423 This option enables this support which can be used on devices which
424 have an LCD display connected. 424 have an LCD display connected.
425 425
426 config VIDEO_TEGRA124 426 config VIDEO_TEGRA124
427 bool "Enable video support on Tegra124" 427 bool "Enable video support on Tegra124"
428 depends on DM_VIDEO 428 depends on DM_VIDEO
429 help 429 help
430 Tegra124 supports many video output options including eDP and 430 Tegra124 supports many video output options including eDP and
431 HDMI. At present only eDP is supported by U-Boot. This option 431 HDMI. At present only eDP is supported by U-Boot. This option
432 enables this support which can be used on devices which 432 enables this support which can be used on devices which
433 have an eDP display connected. 433 have an eDP display connected.
434 434
435 source "drivers/video/bridge/Kconfig" 435 source "drivers/video/bridge/Kconfig"
436 436
437 config VIDEO 437 config VIDEO
438 bool "Enable legacy video support" 438 bool "Enable legacy video support"
439 depends on !DM_VIDEO 439 depends on !DM_VIDEO
440 help 440 help
441 Define this for video support, without using driver model. Some 441 Define this for video support, without using driver model. Some
442 drivers use this because they are not yet converted to driver 442 drivers use this because they are not yet converted to driver
443 model. Video drivers typically provide a colour text console and 443 model. Video drivers typically provide a colour text console and
444 cursor. 444 cursor.
445 445
446 config CFB_CONSOLE 446 config CFB_CONSOLE
447 bool "Enable colour frame buffer console" 447 bool "Enable colour frame buffer console"
448 depends on VIDEO 448 depends on VIDEO
449 default y if VIDEO 449 default y if VIDEO
450 help 450 help
451 Enables the colour frame buffer driver. This supports colour 451 Enables the colour frame buffer driver. This supports colour
452 output on a bitmap display from an in-memory frame buffer. 452 output on a bitmap display from an in-memory frame buffer.
453 Several colour devices are supported along with various options to 453 Several colour devices are supported along with various options to
454 adjust the supported features. The driver is implemented in 454 adjust the supported features. The driver is implemented in
455 cfb_console.c 455 cfb_console.c
456 456
457 The following defines are needed (cf. smiLynxEM, i8042) 457 The following defines are needed (cf. smiLynxEM, i8042)
458 VIDEO_FB_LITTLE_ENDIAN graphic memory organisation 458 VIDEO_FB_LITTLE_ENDIAN graphic memory organisation
459 (default big endian) 459 (default big endian)
460 VIDEO_HW_RECTFILL graphic chip supports 460 VIDEO_HW_RECTFILL graphic chip supports
461 rectangle fill (cf. smiLynxEM) 461 rectangle fill (cf. smiLynxEM)
462 VIDEO_HW_BITBLT graphic chip supports 462 VIDEO_HW_BITBLT graphic chip supports
463 bit-blit (cf. smiLynxEM) 463 bit-blit (cf. smiLynxEM)
464 VIDEO_VISIBLE_COLS visible pixel columns (cols=pitch) 464 VIDEO_VISIBLE_COLS visible pixel columns (cols=pitch)
465 VIDEO_VISIBLE_ROWS visible pixel rows 465 VIDEO_VISIBLE_ROWS visible pixel rows
466 VIDEO_PIXEL_SIZE bytes per pixel 466 VIDEO_PIXEL_SIZE bytes per pixel
467 VIDEO_DATA_FORMAT graphic data format 467 VIDEO_DATA_FORMAT graphic data format
468 (0-5, cf. cfb_console.c) 468 (0-5, cf. cfb_console.c)
469 VIDEO_FB_ADRS framebuffer address 469 VIDEO_FB_ADRS framebuffer address
470 VIDEO_KBD_INIT_FCT keyboard int fct (i.e. rx51_kp_init()) 470 VIDEO_KBD_INIT_FCT keyboard int fct (i.e. rx51_kp_init())
471 VIDEO_TSTC_FCT test char fct (i.e. rx51_kp_tstc) 471 VIDEO_TSTC_FCT test char fct (i.e. rx51_kp_tstc)
472 VIDEO_GETC_FCT get char fct (i.e. rx51_kp_getc) 472 VIDEO_GETC_FCT get char fct (i.e. rx51_kp_getc)
473 CONFIG_VIDEO_LOGO display Linux logo in upper left corner 473 CONFIG_VIDEO_LOGO display Linux logo in upper left corner
474 CONFIG_VIDEO_BMP_LOGO use bmp_logo.h instead of linux_logo.h 474 CONFIG_VIDEO_BMP_LOGO use bmp_logo.h instead of linux_logo.h
475 for logo. Requires CONFIG_VIDEO_LOGO 475 for logo. Requires CONFIG_VIDEO_LOGO
476 CONFIG_CONSOLE_EXTRA_INFO 476 CONFIG_CONSOLE_EXTRA_INFO
477 additional board info beside 477 additional board info beside
478 the logo 478 the logo
479 CONFIG_HIDE_LOGO_VERSION 479 CONFIG_HIDE_LOGO_VERSION
480 do not display bootloader 480 do not display bootloader
481 version string 481 version string
482 482
483 When CONFIG_CFB_CONSOLE is defined, the video console is the 483 When CONFIG_CFB_CONSOLE is defined, the video console is the
484 default console. The serial console can be forced by setting the 484 default console. The serial console can be forced by setting the
485 environment 'console=serial'. 485 environment 'console=serial'.
486 486
487 config CFB_CONSOLE_ANSI 487 config CFB_CONSOLE_ANSI
488 bool "Support ANSI escape sequences" 488 bool "Support ANSI escape sequences"
489 depends on CFB_CONSOLE 489 depends on CFB_CONSOLE
490 help 490 help
491 This allows the colour buffer frame buffer driver to support 491 This allows the colour buffer frame buffer driver to support
492 a limited number of ANSI escape sequences (cursor control, 492 a limited number of ANSI escape sequences (cursor control,
493 erase functions and limited graphics rendition control). Normal 493 erase functions and limited graphics rendition control). Normal
494 output from U-Boot will pass through this filter. 494 output from U-Boot will pass through this filter.
495 495
496 config VGA_AS_SINGLE_DEVICE 496 config VGA_AS_SINGLE_DEVICE
497 bool "Set the video as an output-only device" 497 bool "Set the video as an output-only device"
498 depends on CFB_CONSOLE 498 depends on CFB_CONSOLE
499 default y 499 default y
500 help 500 help
501 If enable the framebuffer device will be initialized as an 501 If enable the framebuffer device will be initialized as an
502 output-only device. The Keyboard driver will not be set up. This 502 output-only device. The Keyboard driver will not be set up. This
503 may be used if you have no keyboard device, or more than one 503 may be used if you have no keyboard device, or more than one
504 (USB Keyboard, AT Keyboard). 504 (USB Keyboard, AT Keyboard).
505 505
506 config VIDEO_SW_CURSOR 506 config VIDEO_SW_CURSOR
507 bool "Enable a software cursor" 507 bool "Enable a software cursor"
508 depends on CFB_CONSOLE 508 depends on CFB_CONSOLE
509 default y if CFB_CONSOLE 509 default y if CFB_CONSOLE
510 help 510 help
511 This draws a cursor after the last character. No blinking is 511 This draws a cursor after the last character. No blinking is
512 provided. This makes it possible to see the current cursor 512 provided. This makes it possible to see the current cursor
513 position when entering text on the console. It is recommended to 513 position when entering text on the console. It is recommended to
514 enable this. 514 enable this.
515 515
516 config CONSOLE_EXTRA_INFO 516 config CONSOLE_EXTRA_INFO
517 bool "Display additional board information" 517 bool "Display additional board information"
518 depends on CFB_CONSOLE 518 depends on CFB_CONSOLE
519 help 519 help
520 Display additional board information strings that normally go to 520 Display additional board information strings that normally go to
521 the serial port. When this option is enabled, a board-specific 521 the serial port. When this option is enabled, a board-specific
522 function video_get_info_str() is called to get the string for 522 function video_get_info_str() is called to get the string for
523 each line of the display. The function should return the string, 523 each line of the display. The function should return the string,
524 which can be empty if there is nothing to display for that line. 524 which can be empty if there is nothing to display for that line.
525 525
526 config CONSOLE_SCROLL_LINES
527 int "Number of lines to scroll the console by"
528 depends on CFB_CONSOLE || DM_VIDEO || LCD
529 default 1
530 help
531 When the console need to be scrolled, this is the number of
532 lines to scroll by. It defaults to 1. Increasing this makes the
533 console jump but can help speed up operation when scrolling
534 is slow.
535
526 config VIDEO_CT69000 536 config VIDEO_CT69000
527 bool "Enable Chips & Technologies 69000 video driver" 537 bool "Enable Chips & Technologies 69000 video driver"
528 depends on VIDEO 538 depends on VIDEO
529 help 539 help
530 This enables a frame buffer driver for the Chips & Technologies 540 This enables a frame buffer driver for the Chips & Technologies
531 ct69000, a fairly old graphics device (circa 2000) which is used 541 ct69000, a fairly old graphics device (circa 2000) which is used
532 on some hardware. It operates over the ISA bus, and supports 542 on some hardware. It operates over the ISA bus, and supports
533 some acceleration features. 543 some acceleration features.
534 544
535 For the CT69000 and SMI_LYNXEM drivers, videomode is 545 For the CT69000 and SMI_LYNXEM drivers, videomode is
536 selected via environment 'videomode'. Two different ways 546 selected via environment 'videomode'. Two different ways
537 are possible: 547 are possible:
538 - "videomode=num" 'num' is a standard LiLo mode numbers. 548 - "videomode=num" 'num' is a standard LiLo mode numbers.
539 Following standard modes are supported (* is default): 549 Following standard modes are supported (* is default):
540 550
541 Colors 640x480 800x600 1024x768 1152x864 1280x1024 551 Colors 640x480 800x600 1024x768 1152x864 1280x1024
542 -------------+--------------------------------------------- 552 -------------+---------------------------------------------
543 8 bits | 0x301* 0x303 0x305 0x161 0x307 553 8 bits | 0x301* 0x303 0x305 0x161 0x307
544 15 bits | 0x310 0x313 0x316 0x162 0x319 554 15 bits | 0x310 0x313 0x316 0x162 0x319
545 16 bits | 0x311 0x314 0x317 0x163 0x31A 555 16 bits | 0x311 0x314 0x317 0x163 0x31A
546 24 bits | 0x312 0x315 0x318 ? 0x31B 556 24 bits | 0x312 0x315 0x318 ? 0x31B
547 -------------+--------------------------------------------- 557 -------------+---------------------------------------------
548 (i.e. setenv videomode 317; saveenv; reset;) 558 (i.e. setenv videomode 317; saveenv; reset;)
549 559
550 - "videomode=bootargs" all the video parameters are parsed 560 - "videomode=bootargs" all the video parameters are parsed
551 from the bootargs. (See drivers/video/videomodes.c) 561 from the bootargs. (See drivers/video/videomodes.c)
552 562
553 config SYS_CONSOLE_BG_COL 563 config SYS_CONSOLE_BG_COL
554 hex "Background colour" 564 hex "Background colour"
555 depends on CFB_CONSOLE || VIDEO_CT69000 565 depends on CFB_CONSOLE || VIDEO_CT69000
556 default 0x00 566 default 0x00
557 help 567 help
558 Defines the background colour for the console. The value is from 568 Defines the background colour for the console. The value is from
559 0x00 to 0xff and the meaning depends on the graphics card. 569 0x00 to 0xff and the meaning depends on the graphics card.
560 Typically, 0x00 means black and 0xff means white. Do not set 570 Typically, 0x00 means black and 0xff means white. Do not set
561 the background and foreground to the same colour or you will see 571 the background and foreground to the same colour or you will see
562 nothing. 572 nothing.
563 573
564 config SYS_CONSOLE_FG_COL 574 config SYS_CONSOLE_FG_COL
565 hex "Foreground colour" 575 hex "Foreground colour"
566 depends on CFB_CONSOLE || VIDEO_CT69000 576 depends on CFB_CONSOLE || VIDEO_CT69000
567 default 0xa0 577 default 0xa0
568 help 578 help
569 Defines the foreground colour for the console. The value is from 579 Defines the foreground colour for the console. The value is from
570 0x00 to 0xff and the meaning depends on the graphics card. 580 0x00 to 0xff and the meaning depends on the graphics card.
571 Typically, 0x00 means black and 0xff means white. Do not set 581 Typically, 0x00 means black and 0xff means white. Do not set
572 the background and foreground to the same colour or you will see 582 the background and foreground to the same colour or you will see
573 nothing. 583 nothing.
574 584
575 config LCD 585 config LCD
576 bool "Enable legacy LCD support" 586 bool "Enable legacy LCD support"
577 help 587 help
578 Define this to enable LCD support (for output to LCD display). 588 Define this to enable LCD support (for output to LCD display).
579 You will also need to select an LCD driver using an additional 589 You will also need to select an LCD driver using an additional
580 CONFIG option. See the README for details. Drives which have been 590 CONFIG option. See the README for details. Drives which have been
581 converted to driver model will instead used CONFIG_DM_VIDEO. 591 converted to driver model will instead used CONFIG_DM_VIDEO.
582 592
583 endmenu 593 endmenu
584 594
include/configs/chromebook_jerry.h
1 /* 1 /*
2 * (C) Copyright 2015 Google, Inc 2 * (C) Copyright 2015 Google, Inc
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 #ifndef __CONFIG_H 7 #ifndef __CONFIG_H
8 #define __CONFIG_H 8 #define __CONFIG_H
9 9
10 #define ROCKCHIP_DEVICE_SETTINGS \ 10 #define ROCKCHIP_DEVICE_SETTINGS \
11 "stdin=serial,cros-ec-keyb\0" \ 11 "stdin=serial,cros-ec-keyb\0" \
12 "stdout=serial,vidconsole\0" \ 12 "stdout=serial,vidconsole\0" \
13 "stderr=serial,vidconsole\0" 13 "stderr=serial,vidconsole\0"
14 14
15 #include <configs/rk3288_common.h> 15 #include <configs/rk3288_common.h>
16 16
17 #define CONFIG_ENV_IS_NOWHERE 17 #define CONFIG_ENV_IS_NOWHERE
18 #define CONFIG_SPL_SPI_LOAD 18 #define CONFIG_SPL_SPI_LOAD
19 #define CONFIG_SPI_FLASH_GIGADEVICE 19 #define CONFIG_SPI_FLASH_GIGADEVICE
20 20
21 #define CONFIG_CMD_SF_TEST 21 #define CONFIG_CMD_SF_TEST
22 22
23 #define CONFIG_KEYBOARD 23 #define CONFIG_KEYBOARD
24 24
25 #define CONFIG_SYS_WHITE_ON_BLACK 25 #define CONFIG_SYS_WHITE_ON_BLACK
26 #define CONFIG_CONSOLE_SCROLL_LINES 10
27 26
28 #endif 27 #endif
29 28
include/configs/colibri_pxa270.h
1 /* 1 /*
2 * Toradex Colibri PXA270 configuration file 2 * Toradex Colibri PXA270 configuration file
3 * 3 *
4 * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com> 4 * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
5 * Copyright (C) 2015 Marcel Ziswiler <marcel@ziswiler.com> 5 * Copyright (C) 2015 Marcel Ziswiler <marcel@ziswiler.com>
6 * 6 *
7 * SPDX-License-Identifier: GPL-2.0+ 7 * SPDX-License-Identifier: GPL-2.0+
8 */ 8 */
9 9
10 #ifndef __CONFIG_H 10 #ifndef __CONFIG_H
11 #define __CONFIG_H 11 #define __CONFIG_H
12 12
13 /* 13 /*
14 * High Level Board Configuration Options 14 * High Level Board Configuration Options
15 */ 15 */
16 #define CONFIG_CPU_PXA27X 1 /* Marvell PXA270 CPU */ 16 #define CONFIG_CPU_PXA27X 1 /* Marvell PXA270 CPU */
17 #define CONFIG_SYS_TEXT_BASE 0x0 17 #define CONFIG_SYS_TEXT_BASE 0x0
18 /* Avoid overwriting factory configuration block */ 18 /* Avoid overwriting factory configuration block */
19 #define CONFIG_BOARD_SIZE_LIMIT 0x40000 19 #define CONFIG_BOARD_SIZE_LIMIT 0x40000
20 20
21 /* We will never enable dcache because we have to setup MMU first */ 21 /* We will never enable dcache because we have to setup MMU first */
22 #define CONFIG_SYS_DCACHE_OFF 22 #define CONFIG_SYS_DCACHE_OFF
23 23
24 /* 24 /*
25 * Environment settings 25 * Environment settings
26 */ 26 */
27 #define CONFIG_ENV_OVERWRITE 27 #define CONFIG_ENV_OVERWRITE
28 #define CONFIG_SYS_MALLOC_LEN (128 * 1024) 28 #define CONFIG_SYS_MALLOC_LEN (128 * 1024)
29 #define CONFIG_ARCH_CPU_INIT 29 #define CONFIG_ARCH_CPU_INIT
30 #define CONFIG_BOOTCOMMAND \ 30 #define CONFIG_BOOTCOMMAND \
31 "if fatload mmc 0 0xa0000000 uImage; then " \ 31 "if fatload mmc 0 0xa0000000 uImage; then " \
32 "bootm 0xa0000000; " \ 32 "bootm 0xa0000000; " \
33 "fi; " \ 33 "fi; " \
34 "if usb reset && fatload usb 0 0xa0000000 uImage; then " \ 34 "if usb reset && fatload usb 0 0xa0000000 uImage; then " \
35 "bootm 0xa0000000; " \ 35 "bootm 0xa0000000; " \
36 "fi; " \ 36 "fi; " \
37 "bootm 0xc0000;" 37 "bootm 0xc0000;"
38 #define CONFIG_BOOTARGS "console=tty0 console=ttyS0,115200" 38 #define CONFIG_BOOTARGS "console=tty0 console=ttyS0,115200"
39 #define CONFIG_TIMESTAMP 39 #define CONFIG_TIMESTAMP
40 #define CONFIG_CMDLINE_TAG 40 #define CONFIG_CMDLINE_TAG
41 #define CONFIG_SETUP_MEMORY_TAGS 41 #define CONFIG_SETUP_MEMORY_TAGS
42 #define CONFIG_LZMA /* LZMA compression support */ 42 #define CONFIG_LZMA /* LZMA compression support */
43 43
44 /* 44 /*
45 * Serial Console Configuration 45 * Serial Console Configuration
46 */ 46 */
47 #define CONFIG_PXA_SERIAL 47 #define CONFIG_PXA_SERIAL
48 #define CONFIG_FFUART 1 48 #define CONFIG_FFUART 1
49 #define CONFIG_CONS_INDEX 3 49 #define CONFIG_CONS_INDEX 3
50 #define CONFIG_BAUDRATE 115200 50 #define CONFIG_BAUDRATE 115200
51 51
52 /* 52 /*
53 * Bootloader Components Configuration 53 * Bootloader Components Configuration
54 */ 54 */
55 #define CONFIG_CMD_ENV 55 #define CONFIG_CMD_ENV
56 56
57 /* I2C support */ 57 /* I2C support */
58 #ifdef CONFIG_SYS_I2C 58 #ifdef CONFIG_SYS_I2C
59 #define CONFIG_SYS_I2C_PXA 59 #define CONFIG_SYS_I2C_PXA
60 #define CONFIG_PXA_STD_I2C 60 #define CONFIG_PXA_STD_I2C
61 #define CONFIG_PXA_PWR_I2C 61 #define CONFIG_PXA_PWR_I2C
62 #define CONFIG_SYS_I2C_SPEED 100000 62 #define CONFIG_SYS_I2C_SPEED 100000
63 #endif 63 #endif
64 64
65 /* LCD support */ 65 /* LCD support */
66 #ifdef CONFIG_LCD 66 #ifdef CONFIG_LCD
67 #define CONFIG_PXA_LCD 67 #define CONFIG_PXA_LCD
68 #define CONFIG_PXA_VGA 68 #define CONFIG_PXA_VGA
69 #define CONFIG_SYS_WHITE_ON_BLACK 69 #define CONFIG_SYS_WHITE_ON_BLACK
70 #define CONFIG_CONSOLE_SCROLL_LINES 10
71 #define CONFIG_CMD_BMP 70 #define CONFIG_CMD_BMP
72 #define CONFIG_LCD_LOGO 71 #define CONFIG_LCD_LOGO
73 #endif 72 #endif
74 73
75 /* 74 /*
76 * Networking Configuration 75 * Networking Configuration
77 */ 76 */
78 #ifdef CONFIG_CMD_NET 77 #ifdef CONFIG_CMD_NET
79 78
80 #define CONFIG_DRIVER_DM9000 1 79 #define CONFIG_DRIVER_DM9000 1
81 #define CONFIG_DM9000_BASE 0x08000000 80 #define CONFIG_DM9000_BASE 0x08000000
82 #define DM9000_IO (CONFIG_DM9000_BASE) 81 #define DM9000_IO (CONFIG_DM9000_BASE)
83 #define DM9000_DATA (CONFIG_DM9000_BASE + 4) 82 #define DM9000_DATA (CONFIG_DM9000_BASE + 4)
84 #define CONFIG_NET_RETRY_COUNT 10 83 #define CONFIG_NET_RETRY_COUNT 10
85 84
86 #define CONFIG_BOOTP_BOOTFILESIZE 85 #define CONFIG_BOOTP_BOOTFILESIZE
87 #define CONFIG_BOOTP_BOOTPATH 86 #define CONFIG_BOOTP_BOOTPATH
88 #define CONFIG_BOOTP_GATEWAY 87 #define CONFIG_BOOTP_GATEWAY
89 #define CONFIG_BOOTP_HOSTNAME 88 #define CONFIG_BOOTP_HOSTNAME
90 #endif 89 #endif
91 90
92 #undef CONFIG_SYS_LONGHELP /* Saves 10 KB */ 91 #undef CONFIG_SYS_LONGHELP /* Saves 10 KB */
93 #define CONFIG_SYS_CBSIZE 256 92 #define CONFIG_SYS_CBSIZE 256
94 #define CONFIG_SYS_PBSIZE \ 93 #define CONFIG_SYS_PBSIZE \
95 (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) 94 (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
96 #define CONFIG_SYS_MAXARGS 16 95 #define CONFIG_SYS_MAXARGS 16
97 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 96 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
98 #define CONFIG_SYS_DEVICE_NULLDEV 1 97 #define CONFIG_SYS_DEVICE_NULLDEV 1
99 #define CONFIG_CMDLINE_EDITING 1 98 #define CONFIG_CMDLINE_EDITING 1
100 #define CONFIG_AUTO_COMPLETE 1 99 #define CONFIG_AUTO_COMPLETE 1
101 100
102 /* 101 /*
103 * Clock Configuration 102 * Clock Configuration
104 */ 103 */
105 #define CONFIG_SYS_CPUSPEED 0x290 /* 520MHz */ 104 #define CONFIG_SYS_CPUSPEED 0x290 /* 520MHz */
106 105
107 /* 106 /*
108 * DRAM Map 107 * DRAM Map
109 */ 108 */
110 #define CONFIG_NR_DRAM_BANKS 1 /* We have 1 bank of DRAM */ 109 #define CONFIG_NR_DRAM_BANKS 1 /* We have 1 bank of DRAM */
111 #define PHYS_SDRAM_1 0xa0000000 /* SDRAM Bank #1 */ 110 #define PHYS_SDRAM_1 0xa0000000 /* SDRAM Bank #1 */
112 #define PHYS_SDRAM_1_SIZE 0x04000000 /* 64 MB */ 111 #define PHYS_SDRAM_1_SIZE 0x04000000 /* 64 MB */
113 112
114 #define CONFIG_SYS_DRAM_BASE 0xa0000000 /* CS0 */ 113 #define CONFIG_SYS_DRAM_BASE 0xa0000000 /* CS0 */
115 #define CONFIG_SYS_DRAM_SIZE 0x04000000 /* 64 MB DRAM */ 114 #define CONFIG_SYS_DRAM_SIZE 0x04000000 /* 64 MB DRAM */
116 115
117 #define CONFIG_SYS_MEMTEST_START 0xa0400000 /* memtest works on */ 116 #define CONFIG_SYS_MEMTEST_START 0xa0400000 /* memtest works on */
118 #define CONFIG_SYS_MEMTEST_END 0xa0800000 /* 4 ... 8 MB in DRAM */ 117 #define CONFIG_SYS_MEMTEST_END 0xa0800000 /* 4 ... 8 MB in DRAM */
119 118
120 #define CONFIG_SYS_LOAD_ADDR PHYS_SDRAM_1 119 #define CONFIG_SYS_LOAD_ADDR PHYS_SDRAM_1
121 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 120 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
122 #define CONFIG_SYS_INIT_SP_ADDR 0x5c010000 121 #define CONFIG_SYS_INIT_SP_ADDR 0x5c010000
123 122
124 /* 123 /*
125 * NOR FLASH 124 * NOR FLASH
126 */ 125 */
127 #ifdef CONFIG_CMD_FLASH 126 #ifdef CONFIG_CMD_FLASH
128 #define PHYS_FLASH_1 0x00000000 /* Flash Bank #1 */ 127 #define PHYS_FLASH_1 0x00000000 /* Flash Bank #1 */
129 #define PHYS_FLASH_SIZE 0x02000000 /* 32 MB */ 128 #define PHYS_FLASH_SIZE 0x02000000 /* 32 MB */
130 #define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1 129 #define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
131 130
132 #define CONFIG_SYS_FLASH_CFI 131 #define CONFIG_SYS_FLASH_CFI
133 #define CONFIG_FLASH_CFI_DRIVER 1 132 #define CONFIG_FLASH_CFI_DRIVER 1
134 #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_32BIT 133 #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_32BIT
135 134
136 #define CONFIG_SYS_MAX_FLASH_SECT (4 + 255) 135 #define CONFIG_SYS_MAX_FLASH_SECT (4 + 255)
137 #define CONFIG_SYS_MAX_FLASH_BANKS 1 136 #define CONFIG_SYS_MAX_FLASH_BANKS 1
138 137
139 #define CONFIG_SYS_FLASH_ERASE_TOUT (25 * CONFIG_SYS_HZ) 138 #define CONFIG_SYS_FLASH_ERASE_TOUT (25 * CONFIG_SYS_HZ)
140 #define CONFIG_SYS_FLASH_WRITE_TOUT (25 * CONFIG_SYS_HZ) 139 #define CONFIG_SYS_FLASH_WRITE_TOUT (25 * CONFIG_SYS_HZ)
141 #define CONFIG_SYS_FLASH_LOCK_TOUT (25 * CONFIG_SYS_HZ) 140 #define CONFIG_SYS_FLASH_LOCK_TOUT (25 * CONFIG_SYS_HZ)
142 #define CONFIG_SYS_FLASH_UNLOCK_TOUT (25 * CONFIG_SYS_HZ) 141 #define CONFIG_SYS_FLASH_UNLOCK_TOUT (25 * CONFIG_SYS_HZ)
143 142
144 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 143 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
145 #define CONFIG_SYS_FLASH_PROTECTION 1 144 #define CONFIG_SYS_FLASH_PROTECTION 1
146 145
147 #define CONFIG_ENV_IS_IN_FLASH 1 146 #define CONFIG_ENV_IS_IN_FLASH 1
148 147
149 #else /* No flash */ 148 #else /* No flash */
150 #define CONFIG_SYS_NO_FLASH 149 #define CONFIG_SYS_NO_FLASH
151 #define CONFIG_ENV_IS_NOWHERE 150 #define CONFIG_ENV_IS_NOWHERE
152 #endif 151 #endif
153 152
154 #define CONFIG_SYS_MONITOR_BASE 0x0 153 #define CONFIG_SYS_MONITOR_BASE 0x0
155 #define CONFIG_SYS_MONITOR_LEN 0x40000 154 #define CONFIG_SYS_MONITOR_LEN 0x40000
156 155
157 /* Skip factory configuration block */ 156 /* Skip factory configuration block */
158 #define CONFIG_ENV_ADDR \ 157 #define CONFIG_ENV_ADDR \
159 (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN + 0x40000) 158 (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN + 0x40000)
160 #define CONFIG_ENV_SIZE 0x40000 159 #define CONFIG_ENV_SIZE 0x40000
161 #define CONFIG_ENV_SECT_SIZE 0x40000 160 #define CONFIG_ENV_SECT_SIZE 0x40000
162 161
163 /* 162 /*
164 * GPIO settings 163 * GPIO settings
165 */ 164 */
166 #define CONFIG_SYS_GPSR0_VAL 0x00000000 165 #define CONFIG_SYS_GPSR0_VAL 0x00000000
167 #define CONFIG_SYS_GPSR1_VAL 0x00020000 166 #define CONFIG_SYS_GPSR1_VAL 0x00020000
168 #define CONFIG_SYS_GPSR2_VAL 0x0002c000 167 #define CONFIG_SYS_GPSR2_VAL 0x0002c000
169 #define CONFIG_SYS_GPSR3_VAL 0x00000000 168 #define CONFIG_SYS_GPSR3_VAL 0x00000000
170 169
171 #define CONFIG_SYS_GPCR0_VAL 0x00000000 170 #define CONFIG_SYS_GPCR0_VAL 0x00000000
172 #define CONFIG_SYS_GPCR1_VAL 0x00000000 171 #define CONFIG_SYS_GPCR1_VAL 0x00000000
173 #define CONFIG_SYS_GPCR2_VAL 0x00000000 172 #define CONFIG_SYS_GPCR2_VAL 0x00000000
174 #define CONFIG_SYS_GPCR3_VAL 0x00000000 173 #define CONFIG_SYS_GPCR3_VAL 0x00000000
175 174
176 #define CONFIG_SYS_GPDR0_VAL 0xc8008000 175 #define CONFIG_SYS_GPDR0_VAL 0xc8008000
177 #define CONFIG_SYS_GPDR1_VAL 0xfc02a981 176 #define CONFIG_SYS_GPDR1_VAL 0xfc02a981
178 #define CONFIG_SYS_GPDR2_VAL 0x92c3ffff 177 #define CONFIG_SYS_GPDR2_VAL 0x92c3ffff
179 #define CONFIG_SYS_GPDR3_VAL 0x0061e804 178 #define CONFIG_SYS_GPDR3_VAL 0x0061e804
180 179
181 #define CONFIG_SYS_GAFR0_L_VAL 0x80100000 180 #define CONFIG_SYS_GAFR0_L_VAL 0x80100000
182 #define CONFIG_SYS_GAFR0_U_VAL 0xa5c00010 181 #define CONFIG_SYS_GAFR0_U_VAL 0xa5c00010
183 #define CONFIG_SYS_GAFR1_L_VAL 0x6992901a 182 #define CONFIG_SYS_GAFR1_L_VAL 0x6992901a
184 #define CONFIG_SYS_GAFR1_U_VAL 0xaaa50008 183 #define CONFIG_SYS_GAFR1_U_VAL 0xaaa50008
185 #define CONFIG_SYS_GAFR2_L_VAL 0xaaaaaaaa 184 #define CONFIG_SYS_GAFR2_L_VAL 0xaaaaaaaa
186 #define CONFIG_SYS_GAFR2_U_VAL 0x4109a002 185 #define CONFIG_SYS_GAFR2_U_VAL 0x4109a002
187 #define CONFIG_SYS_GAFR3_L_VAL 0x54000310 186 #define CONFIG_SYS_GAFR3_L_VAL 0x54000310
188 #define CONFIG_SYS_GAFR3_U_VAL 0x00005401 187 #define CONFIG_SYS_GAFR3_U_VAL 0x00005401
189 188
190 #define CONFIG_SYS_PSSR_VAL 0x30 189 #define CONFIG_SYS_PSSR_VAL 0x30
191 190
192 /* 191 /*
193 * Clock settings 192 * Clock settings
194 */ 193 */
195 #define CONFIG_SYS_CKEN 0x00500240 194 #define CONFIG_SYS_CKEN 0x00500240
196 #define CONFIG_SYS_CCCR 0x02000290 195 #define CONFIG_SYS_CCCR 0x02000290
197 196
198 /* 197 /*
199 * Memory settings 198 * Memory settings
200 */ 199 */
201 #define CONFIG_SYS_MSC0_VAL 0x9ee1c5f2 200 #define CONFIG_SYS_MSC0_VAL 0x9ee1c5f2
202 #define CONFIG_SYS_MSC1_VAL 0x9ee1f994 201 #define CONFIG_SYS_MSC1_VAL 0x9ee1f994
203 #define CONFIG_SYS_MSC2_VAL 0x9ee19ee1 202 #define CONFIG_SYS_MSC2_VAL 0x9ee19ee1
204 #define CONFIG_SYS_MDCNFG_VAL 0x090009c9 203 #define CONFIG_SYS_MDCNFG_VAL 0x090009c9
205 #define CONFIG_SYS_MDREFR_VAL 0x2003a031 204 #define CONFIG_SYS_MDREFR_VAL 0x2003a031
206 #define CONFIG_SYS_MDMRS_VAL 0x00220022 205 #define CONFIG_SYS_MDMRS_VAL 0x00220022
207 #define CONFIG_SYS_FLYCNFG_VAL 0x00010001 206 #define CONFIG_SYS_FLYCNFG_VAL 0x00010001
208 #define CONFIG_SYS_SXCNFG_VAL 0x40044004 207 #define CONFIG_SYS_SXCNFG_VAL 0x40044004
209 208
210 /* 209 /*
211 * PCMCIA and CF Interfaces 210 * PCMCIA and CF Interfaces
212 */ 211 */
213 #define CONFIG_SYS_MECR_VAL 0x00000000 212 #define CONFIG_SYS_MECR_VAL 0x00000000
214 #define CONFIG_SYS_MCMEM0_VAL 0x00028307 213 #define CONFIG_SYS_MCMEM0_VAL 0x00028307
215 #define CONFIG_SYS_MCMEM1_VAL 0x00014307 214 #define CONFIG_SYS_MCMEM1_VAL 0x00014307
216 #define CONFIG_SYS_MCATT0_VAL 0x00038787 215 #define CONFIG_SYS_MCATT0_VAL 0x00038787
217 #define CONFIG_SYS_MCATT1_VAL 0x0001c787 216 #define CONFIG_SYS_MCATT1_VAL 0x0001c787
218 #define CONFIG_SYS_MCIO0_VAL 0x0002830f 217 #define CONFIG_SYS_MCIO0_VAL 0x0002830f
219 #define CONFIG_SYS_MCIO1_VAL 0x0001430f 218 #define CONFIG_SYS_MCIO1_VAL 0x0001430f
220 219
221 #include "pxa-common.h" 220 #include "pxa-common.h"
222 221
223 #endif /* __CONFIG_H */ 222 #endif /* __CONFIG_H */
224 223
include/configs/colibri_t20.h
1 /* 1 /*
2 * Copyright (C) 2012 Lucas Stach 2 * Copyright (C) 2012 Lucas Stach
3 * 3 *
4 * Configuration settings for the Toradex Colibri T20 modules. 4 * Configuration settings for the Toradex Colibri T20 modules.
5 * 5 *
6 * SPDX-License-Identifier: GPL-2.0+ 6 * SPDX-License-Identifier: GPL-2.0+
7 */ 7 */
8 8
9 #ifndef __CONFIG_H 9 #ifndef __CONFIG_H
10 #define __CONFIG_H 10 #define __CONFIG_H
11 11
12 #include "tegra20-common.h" 12 #include "tegra20-common.h"
13 13
14 #define CONFIG_ARCH_MISC_INIT 14 #define CONFIG_ARCH_MISC_INIT
15 15
16 /* High-level configuration options */ 16 /* High-level configuration options */
17 #define CONFIG_TEGRA_BOARD_STRING "Toradex Colibri T20" 17 #define CONFIG_TEGRA_BOARD_STRING "Toradex Colibri T20"
18 18
19 /* Board-specific serial config */ 19 /* Board-specific serial config */
20 #define CONFIG_TEGRA_ENABLE_UARTA 20 #define CONFIG_TEGRA_ENABLE_UARTA
21 #define CONFIG_TEGRA_UARTA_SDIO1 21 #define CONFIG_TEGRA_UARTA_SDIO1
22 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE 22 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
23 23
24 #define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T20 24 #define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T20
25 25
26 /* I2C */ 26 /* I2C */
27 #define CONFIG_SYS_I2C_TEGRA 27 #define CONFIG_SYS_I2C_TEGRA
28 28
29 /* SD/MMC support */ 29 /* SD/MMC support */
30 #define CONFIG_MMC 30 #define CONFIG_MMC
31 #define CONFIG_GENERIC_MMC 31 #define CONFIG_GENERIC_MMC
32 #define CONFIG_TEGRA_MMC 32 #define CONFIG_TEGRA_MMC
33 33
34 /* USB host support */ 34 /* USB host support */
35 #define CONFIG_USB_EHCI 35 #define CONFIG_USB_EHCI
36 #define CONFIG_USB_EHCI_TEGRA 36 #define CONFIG_USB_EHCI_TEGRA
37 #define CONFIG_USB_MAX_CONTROLLER_COUNT 3 37 #define CONFIG_USB_MAX_CONTROLLER_COUNT 3
38 38
39 /* USB networking support */ 39 /* USB networking support */
40 #define CONFIG_USB_HOST_ETHER 40 #define CONFIG_USB_HOST_ETHER
41 #define CONFIG_USB_ETHER_ASIX 41 #define CONFIG_USB_ETHER_ASIX
42 42
43 /* General networking support */ 43 /* General networking support */
44 #define CONFIG_IP_DEFRAG 44 #define CONFIG_IP_DEFRAG
45 #define CONFIG_TFTP_BLOCKSIZE 1536 45 #define CONFIG_TFTP_BLOCKSIZE 1536
46 #define CONFIG_TFTP_TSIZE 46 #define CONFIG_TFTP_TSIZE
47 47
48 /* LCD support */ 48 /* LCD support */
49 #define CONFIG_SYS_WHITE_ON_BLACK 49 #define CONFIG_SYS_WHITE_ON_BLACK
50 #define CONFIG_CONSOLE_SCROLL_LINES 10
51 #define CONFIG_CMD_BMP 50 #define CONFIG_CMD_BMP
52 #define CONFIG_LCD_LOGO 51 #define CONFIG_LCD_LOGO
53 52
54 /* NAND support */ 53 /* NAND support */
55 #define CONFIG_CMD_NAND 54 #define CONFIG_CMD_NAND
56 #define CONFIG_TEGRA_NAND 55 #define CONFIG_TEGRA_NAND
57 #define CONFIG_SYS_MAX_NAND_DEVICE 1 56 #define CONFIG_SYS_MAX_NAND_DEVICE 1
58 57
59 /* Dynamic MTD partition support */ 58 /* Dynamic MTD partition support */
60 #define CONFIG_CMD_MTDPARTS /* Enable 'mtdparts' command line support */ 59 #define CONFIG_CMD_MTDPARTS /* Enable 'mtdparts' command line support */
61 #define CONFIG_MTD_PARTITIONS 60 #define CONFIG_MTD_PARTITIONS
62 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ 61 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
63 #define MTDIDS_DEFAULT "nand0=tegra_nand" 62 #define MTDIDS_DEFAULT "nand0=tegra_nand"
64 #define MTDPARTS_DEFAULT "mtdparts=tegra_nand:" \ 63 #define MTDPARTS_DEFAULT "mtdparts=tegra_nand:" \
65 "2m(u-boot)ro," \ 64 "2m(u-boot)ro," \
66 "1m(u-boot-env)," \ 65 "1m(u-boot-env)," \
67 "1m(cfgblock)ro," \ 66 "1m(cfgblock)ro," \
68 "-(ubi)" 67 "-(ubi)"
69 68
70 /* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */ 69 /* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */
71 #define CONFIG_ENV_IS_IN_NAND 70 #define CONFIG_ENV_IS_IN_NAND
72 #define CONFIG_ENV_OFFSET (SZ_2M) 71 #define CONFIG_ENV_OFFSET (SZ_2M)
73 #undef CONFIG_ENV_SIZE /* undef size from tegra20-common.h */ 72 #undef CONFIG_ENV_SIZE /* undef size from tegra20-common.h */
74 #define CONFIG_ENV_SIZE (SZ_64K) 73 #define CONFIG_ENV_SIZE (SZ_64K)
75 74
76 /* UBI */ 75 /* UBI */
77 #define CONFIG_CMD_UBIFS /* increases size by almost 60 KB */ 76 #define CONFIG_CMD_UBIFS /* increases size by almost 60 KB */
78 #define CONFIG_LZO 77 #define CONFIG_LZO
79 #define CONFIG_RBTREE 78 #define CONFIG_RBTREE
80 79
81 /* Debug commands */ 80 /* Debug commands */
82 81
83 /* Miscellaneous commands */ 82 /* Miscellaneous commands */
84 #define CONFIG_FAT_WRITE 83 #define CONFIG_FAT_WRITE
85 84
86 #define BOARD_EXTRA_ENV_SETTINGS \ 85 #define BOARD_EXTRA_ENV_SETTINGS \
87 "mtdparts=" MTDPARTS_DEFAULT "\0" 86 "mtdparts=" MTDPARTS_DEFAULT "\0"
88 87
89 /* Increase console I/O buffer size */ 88 /* Increase console I/O buffer size */
90 #undef CONFIG_SYS_CBSIZE 89 #undef CONFIG_SYS_CBSIZE
91 #define CONFIG_SYS_CBSIZE 1024 90 #define CONFIG_SYS_CBSIZE 1024
92 91
93 /* Increase arguments buffer size */ 92 /* Increase arguments buffer size */
94 #undef CONFIG_SYS_BARGSIZE 93 #undef CONFIG_SYS_BARGSIZE
95 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 94 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
96 95
97 /* Increase print buffer size */ 96 /* Increase print buffer size */
98 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 97 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
99 98
100 /* Increase maximum number of arguments */ 99 /* Increase maximum number of arguments */
101 #undef CONFIG_SYS_MAXARGS 100 #undef CONFIG_SYS_MAXARGS
102 #define CONFIG_SYS_MAXARGS 32 101 #define CONFIG_SYS_MAXARGS 32
103 102
104 #include "tegra-common-usb-gadget.h" 103 #include "tegra-common-usb-gadget.h"
105 #include "tegra-common-post.h" 104 #include "tegra-common-post.h"
106 105
107 #endif /* __CONFIG_H */ 106 #endif /* __CONFIG_H */
108 107
include/configs/evb_rk3288.h
1 /* 1 /*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd 2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 #ifndef __CONFIG_H 7 #ifndef __CONFIG_H
8 #define __CONFIG_H 8 #define __CONFIG_H
9 9
10 #define ROCKCHIP_DEVICE_SETTINGS 10 #define ROCKCHIP_DEVICE_SETTINGS
11 #include <configs/rk3288_common.h> 11 #include <configs/rk3288_common.h>
12 12
13 #define CONFIG_ENV_IS_IN_MMC 13 #define CONFIG_ENV_IS_IN_MMC
14 #define CONFIG_SYS_MMC_ENV_DEV 1 14 #define CONFIG_SYS_MMC_ENV_DEV 1
15 /* SPL @ 32k for ~36k 15 /* SPL @ 32k for ~36k
16 * ENV @ 96k 16 * ENV @ 96k
17 * u-boot @ 128K 17 * u-boot @ 128K
18 */ 18 */
19 #define CONFIG_ENV_OFFSET (96 * 1024) 19 #define CONFIG_ENV_OFFSET (96 * 1024)
20 20
21 #define CONFIG_SYS_WHITE_ON_BLACK 21 #define CONFIG_SYS_WHITE_ON_BLACK
22 #define CONFIG_CONSOLE_SCROLL_LINES 10
23 22
24 #endif 23 #endif
25 24
include/configs/evb_rk3399.h
1 /* 1 /*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd 2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 #ifndef __EVB_RK3399_H 7 #ifndef __EVB_RK3399_H
8 #define __EVB_RK3399_H 8 #define __EVB_RK3399_H
9 9
10 #include <configs/rk3399_common.h> 10 #include <configs/rk3399_common.h>
11 11
12 #define CONFIG_ENV_IS_IN_MMC 12 #define CONFIG_ENV_IS_IN_MMC
13 #define CONFIG_SYS_MMC_ENV_DEV 0 13 #define CONFIG_SYS_MMC_ENV_DEV 0
14 /* 14 /*
15 * SPL @ 32k for ~36k 15 * SPL @ 32k for ~36k
16 * ENV @ 96k 16 * ENV @ 96k
17 * u-boot @ 128K 17 * u-boot @ 128K
18 */ 18 */
19 #define CONFIG_ENV_OFFSET (96 * 1024) 19 #define CONFIG_ENV_OFFSET (96 * 1024)
20 20
21 #define SDRAM_BANK_SIZE (2UL << 30) 21 #define SDRAM_BANK_SIZE (2UL << 30)
22 22
23 #define CONFIG_SYS_WHITE_ON_BLACK 23 #define CONFIG_SYS_WHITE_ON_BLACK
24 #define CONFIG_CONSOLE_SCROLL_LINES 10
25 24
26 #endif 25 #endif
27 26
include/configs/fennec_rk3288.h
1 /* 1 /*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd 2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 #ifndef __CONFIG_H 7 #ifndef __CONFIG_H
8 #define __CONFIG_H 8 #define __CONFIG_H
9 9
10 #define ROCKCHIP_DEVICE_SETTINGS 10 #define ROCKCHIP_DEVICE_SETTINGS
11 #include <configs/rk3288_common.h> 11 #include <configs/rk3288_common.h>
12 12
13 #define CONFIG_ENV_IS_IN_MMC 13 #define CONFIG_ENV_IS_IN_MMC
14 #define CONFIG_SYS_MMC_ENV_DEV 1 14 #define CONFIG_SYS_MMC_ENV_DEV 1
15 /* SPL @ 32k for ~36k 15 /* SPL @ 32k for ~36k
16 * ENV @ 96k 16 * ENV @ 96k
17 * u-boot @ 128K 17 * u-boot @ 128K
18 */ 18 */
19 #define CONFIG_ENV_OFFSET (96 * 1024) 19 #define CONFIG_ENV_OFFSET (96 * 1024)
20 20
21 #define CONFIG_SYS_WHITE_ON_BLACK 21 #define CONFIG_SYS_WHITE_ON_BLACK
22 #define CONFIG_CONSOLE_SCROLL_LINES 10
23 22
24 #endif 23 #endif
25 24
include/configs/firefly-rk3288.h
1 /* 1 /*
2 * (C) Copyright 2015 Google, Inc 2 * (C) Copyright 2015 Google, Inc
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 #ifndef __CONFIG_H 7 #ifndef __CONFIG_H
8 #define __CONFIG_H 8 #define __CONFIG_H
9 9
10 #define ROCKCHIP_DEVICE_SETTINGS \ 10 #define ROCKCHIP_DEVICE_SETTINGS \
11 "stdin=serial,cros-ec-keyb\0" \ 11 "stdin=serial,cros-ec-keyb\0" \
12 "stdout=serial,vidconsole\0" \ 12 "stdout=serial,vidconsole\0" \
13 "stderr=serial,vidconsole\0" 13 "stderr=serial,vidconsole\0"
14 14
15 #include <configs/rk3288_common.h> 15 #include <configs/rk3288_common.h>
16 16
17 #define CONFIG_ENV_IS_IN_MMC 17 #define CONFIG_ENV_IS_IN_MMC
18 #define CONFIG_SYS_MMC_ENV_DEV 0 18 #define CONFIG_SYS_MMC_ENV_DEV 0
19 /* SPL @ 32k for ~36k 19 /* SPL @ 32k for ~36k
20 * ENV @ 96k 20 * ENV @ 96k
21 * u-boot @ 128K 21 * u-boot @ 128K
22 */ 22 */
23 #define CONFIG_ENV_OFFSET (96 * 1024) 23 #define CONFIG_ENV_OFFSET (96 * 1024)
24 24
25 #define CONFIG_SYS_WHITE_ON_BLACK 25 #define CONFIG_SYS_WHITE_ON_BLACK
26 #define CONFIG_CONSOLE_SCROLL_LINES 10
27 26
28 #endif 27 #endif
29 28
include/configs/harmony.h
1 /* 1 /*
2 * (C) Copyright 2010-2012 2 * (C) Copyright 2010-2012
3 * NVIDIA Corporation <www.nvidia.com> 3 * NVIDIA Corporation <www.nvidia.com>
4 * 4 *
5 * SPDX-License-Identifier: GPL-2.0+ 5 * SPDX-License-Identifier: GPL-2.0+
6 */ 6 */
7 7
8 #ifndef __CONFIG_H 8 #ifndef __CONFIG_H
9 #define __CONFIG_H 9 #define __CONFIG_H
10 10
11 #include <linux/sizes.h> 11 #include <linux/sizes.h>
12 #include "tegra20-common.h" 12 #include "tegra20-common.h"
13 13
14 /* High-level configuration options */ 14 /* High-level configuration options */
15 #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Harmony" 15 #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Harmony"
16 16
17 /* Board-specific serial config */ 17 /* Board-specific serial config */
18 #define CONFIG_TEGRA_ENABLE_UARTD 18 #define CONFIG_TEGRA_ENABLE_UARTD
19 19
20 /* UARTD: keyboard satellite board UART, default */ 20 /* UARTD: keyboard satellite board UART, default */
21 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE 21 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
22 #ifdef CONFIG_TEGRA_ENABLE_UARTA 22 #ifdef CONFIG_TEGRA_ENABLE_UARTA
23 /* UARTA: debug board UART */ 23 /* UARTA: debug board UART */
24 #define CONFIG_SYS_NS16550_COM2 NV_PA_APB_UARTA_BASE 24 #define CONFIG_SYS_NS16550_COM2 NV_PA_APB_UARTA_BASE
25 #endif 25 #endif
26 26
27 #define CONFIG_MACH_TYPE MACH_TYPE_HARMONY 27 #define CONFIG_MACH_TYPE MACH_TYPE_HARMONY
28 28
29 /* SD/MMC */ 29 /* SD/MMC */
30 #define CONFIG_MMC 30 #define CONFIG_MMC
31 #define CONFIG_GENERIC_MMC 31 #define CONFIG_GENERIC_MMC
32 #define CONFIG_TEGRA_MMC 32 #define CONFIG_TEGRA_MMC
33 33
34 /* NAND support */ 34 /* NAND support */
35 #define CONFIG_CMD_NAND 35 #define CONFIG_CMD_NAND
36 #define CONFIG_TEGRA_NAND 36 #define CONFIG_TEGRA_NAND
37 #define CONFIG_SYS_MAX_NAND_DEVICE 1 37 #define CONFIG_SYS_MAX_NAND_DEVICE 1
38 38
39 /* Environment in NAND (which is 512M), aligned to start of last sector */ 39 /* Environment in NAND (which is 512M), aligned to start of last sector */
40 #define CONFIG_ENV_IS_IN_NAND 40 #define CONFIG_ENV_IS_IN_NAND
41 #define CONFIG_ENV_OFFSET (SZ_512M - SZ_128K) /* 128K sector size */ 41 #define CONFIG_ENV_OFFSET (SZ_512M - SZ_128K) /* 128K sector size */
42 42
43 /* USB Host support */ 43 /* USB Host support */
44 #define CONFIG_USB_EHCI 44 #define CONFIG_USB_EHCI
45 #define CONFIG_USB_EHCI_TEGRA 45 #define CONFIG_USB_EHCI_TEGRA
46 46
47 /* USB networking support */ 47 /* USB networking support */
48 #define CONFIG_USB_HOST_ETHER 48 #define CONFIG_USB_HOST_ETHER
49 #define CONFIG_USB_ETHER_ASIX 49 #define CONFIG_USB_ETHER_ASIX
50 #define CONFIG_USB_ETHER_MCS7830 50 #define CONFIG_USB_ETHER_MCS7830
51 #define CONFIG_USB_ETHER_SMSC95XX 51 #define CONFIG_USB_ETHER_SMSC95XX
52 52
53 /* General networking support */ 53 /* General networking support */
54 54
55 /* LCD support */ 55 /* LCD support */
56 #define CONFIG_SYS_WHITE_ON_BLACK 56 #define CONFIG_SYS_WHITE_ON_BLACK
57 #define CONFIG_CONSOLE_SCROLL_LINES 10
58 57
59 #include "tegra-common-post.h" 58 #include "tegra-common-post.h"
60 59
61 #endif /* __CONFIG_H */ 60 #endif /* __CONFIG_H */
62 61
include/configs/miniarm_rk3288.h
1 /* 1 /*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd 2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 #ifndef __CONFIG_H 7 #ifndef __CONFIG_H
8 #define __CONFIG_H 8 #define __CONFIG_H
9 9
10 #define ROCKCHIP_DEVICE_SETTINGS 10 #define ROCKCHIP_DEVICE_SETTINGS
11 #include <configs/rk3288_common.h> 11 #include <configs/rk3288_common.h>
12 12
13 #undef BOOT_TARGET_DEVICES 13 #undef BOOT_TARGET_DEVICES
14 14
15 #define BOOT_TARGET_DEVICES(func) \ 15 #define BOOT_TARGET_DEVICES(func) \
16 func(MMC, mmc, 0) 16 func(MMC, mmc, 0)
17 17
18 #define CONFIG_ENV_IS_IN_MMC 18 #define CONFIG_ENV_IS_IN_MMC
19 #define CONFIG_SYS_MMC_ENV_DEV 0 19 #define CONFIG_SYS_MMC_ENV_DEV 0
20 /* SPL @ 32k for ~36k 20 /* SPL @ 32k for ~36k
21 * ENV @ 96k 21 * ENV @ 96k
22 * u-boot @ 128K 22 * u-boot @ 128K
23 */ 23 */
24 #define CONFIG_ENV_OFFSET (96 * 1024) 24 #define CONFIG_ENV_OFFSET (96 * 1024)
25 25
26 #define CONFIG_SYS_WHITE_ON_BLACK 26 #define CONFIG_SYS_WHITE_ON_BLACK
27 #define CONFIG_CONSOLE_SCROLL_LINES 10
28 27
29 #endif 28 #endif
30 29
include/configs/paz00.h
1 /* 1 /*
2 * Copyright (c) 2010-2012 NVIDIA CORPORATION. All rights reserved. 2 * Copyright (c) 2010-2012 NVIDIA CORPORATION. All rights reserved.
3 * 3 *
4 * See file CREDITS for list of people who contributed to this 4 * See file CREDITS for list of people who contributed to this
5 * project. 5 * project.
6 * 6 *
7 * SPDX-License-Identifier: GPL-2.0 7 * SPDX-License-Identifier: GPL-2.0
8 */ 8 */
9 9
10 #ifndef __CONFIG_H 10 #ifndef __CONFIG_H
11 #define __CONFIG_H 11 #define __CONFIG_H
12 12
13 #include <linux/sizes.h> 13 #include <linux/sizes.h>
14 #include "tegra20-common.h" 14 #include "tegra20-common.h"
15 15
16 /* High-level configuration options */ 16 /* High-level configuration options */
17 #define CONFIG_TEGRA_BOARD_STRING "Compal Paz00" 17 #define CONFIG_TEGRA_BOARD_STRING "Compal Paz00"
18 18
19 /* Board-specific serial config */ 19 /* Board-specific serial config */
20 #define CONFIG_TEGRA_ENABLE_UARTA 20 #define CONFIG_TEGRA_ENABLE_UARTA
21 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE 21 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
22 22
23 #define CONFIG_MACH_TYPE MACH_TYPE_PAZ00 23 #define CONFIG_MACH_TYPE MACH_TYPE_PAZ00
24 24
25 /* SD/MMC */ 25 /* SD/MMC */
26 #define CONFIG_MMC 26 #define CONFIG_MMC
27 #define CONFIG_GENERIC_MMC 27 #define CONFIG_GENERIC_MMC
28 #define CONFIG_TEGRA_MMC 28 #define CONFIG_TEGRA_MMC
29 29
30 /* Environment in eMMC, at the end of 2nd "boot sector" */ 30 /* Environment in eMMC, at the end of 2nd "boot sector" */
31 #define CONFIG_ENV_IS_IN_MMC 31 #define CONFIG_ENV_IS_IN_MMC
32 #define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE) 32 #define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE)
33 #define CONFIG_SYS_MMC_ENV_DEV 0 33 #define CONFIG_SYS_MMC_ENV_DEV 0
34 #define CONFIG_SYS_MMC_ENV_PART 2 34 #define CONFIG_SYS_MMC_ENV_PART 2
35 35
36 /* USB Host support */ 36 /* USB Host support */
37 #define CONFIG_USB_EHCI 37 #define CONFIG_USB_EHCI
38 #define CONFIG_USB_EHCI_TEGRA 38 #define CONFIG_USB_EHCI_TEGRA
39 39
40 /* USB networking support */ 40 /* USB networking support */
41 #define CONFIG_USB_HOST_ETHER 41 #define CONFIG_USB_HOST_ETHER
42 #define CONFIG_USB_ETHER_ASIX 42 #define CONFIG_USB_ETHER_ASIX
43 43
44 /* General networking support */ 44 /* General networking support */
45 45
46 /* LCD support */ 46 /* LCD support */
47 #define CONFIG_SYS_WHITE_ON_BLACK 47 #define CONFIG_SYS_WHITE_ON_BLACK
48 #define CONFIG_CONSOLE_SCROLL_LINES 10
49 48
50 #include "tegra-common-post.h" 49 #include "tegra-common-post.h"
51 50
52 #endif /* __CONFIG_H */ 51 #endif /* __CONFIG_H */
53 52
include/configs/popmetal_rk3288.h
1 /* 1 /*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd 2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 #ifndef __CONFIG_H 7 #ifndef __CONFIG_H
8 #define __CONFIG_H 8 #define __CONFIG_H
9 9
10 #define ROCKCHIP_DEVICE_SETTINGS 10 #define ROCKCHIP_DEVICE_SETTINGS
11 #include <configs/rk3288_common.h> 11 #include <configs/rk3288_common.h>
12 12
13 #define CONFIG_ENV_IS_IN_MMC 13 #define CONFIG_ENV_IS_IN_MMC
14 #define CONFIG_SYS_MMC_ENV_DEV 1 14 #define CONFIG_SYS_MMC_ENV_DEV 1
15 /* SPL @ 32k for ~36k 15 /* SPL @ 32k for ~36k
16 * ENV @ 96k 16 * ENV @ 96k
17 * u-boot @ 128K 17 * u-boot @ 128K
18 */ 18 */
19 #define CONFIG_ENV_OFFSET (96 * 1024) 19 #define CONFIG_ENV_OFFSET (96 * 1024)
20 20
21 #define CONFIG_SYS_WHITE_ON_BLACK 21 #define CONFIG_SYS_WHITE_ON_BLACK
22 #define CONFIG_CONSOLE_SCROLL_LINES 10
23 22
24 #endif 23 #endif
25 24
include/configs/rock2.h
1 /* 1 /*
2 * (C) Copyright 2015 Google, Inc 2 * (C) Copyright 2015 Google, Inc
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 #ifndef __CONFIG_H 7 #ifndef __CONFIG_H
8 #define __CONFIG_H 8 #define __CONFIG_H
9 9
10 #define ROCKCHIP_DEVICE_SETTINGS \ 10 #define ROCKCHIP_DEVICE_SETTINGS \
11 "stdin=serial,cros-ec-keyb\0" \ 11 "stdin=serial,cros-ec-keyb\0" \
12 "stdout=serial,vidconsole\0" \ 12 "stdout=serial,vidconsole\0" \
13 "stderr=serial,vidconsole\0" 13 "stderr=serial,vidconsole\0"
14 14
15 #include <configs/rk3288_common.h> 15 #include <configs/rk3288_common.h>
16 16
17 #define CONFIG_ENV_IS_IN_MMC 17 #define CONFIG_ENV_IS_IN_MMC
18 #define CONFIG_SYS_MMC_ENV_DEV 0 18 #define CONFIG_SYS_MMC_ENV_DEV 0
19 19
20 #ifdef CONFIG_ROCKCHIP_SPL_BACK_TO_BROM 20 #ifdef CONFIG_ROCKCHIP_SPL_BACK_TO_BROM
21 /* SPL @ 32k for 34k 21 /* SPL @ 32k for 34k
22 * u-boot directly after @ 68k for 400k or so 22 * u-boot directly after @ 68k for 400k or so
23 * ENV @ 992k 23 * ENV @ 992k
24 */ 24 */
25 #define CONFIG_ENV_OFFSET ((1024-32) * 1024) 25 #define CONFIG_ENV_OFFSET ((1024-32) * 1024)
26 #else 26 #else
27 /* SPL @ 32k for ~36k 27 /* SPL @ 32k for ~36k
28 * ENV @ 96k 28 * ENV @ 96k
29 * u-boot @ 128K 29 * u-boot @ 128K
30 */ 30 */
31 #define CONFIG_ENV_OFFSET (96 * 1024) 31 #define CONFIG_ENV_OFFSET (96 * 1024)
32 #endif 32 #endif
33 33
34 #define CONFIG_SYS_WHITE_ON_BLACK 34 #define CONFIG_SYS_WHITE_ON_BLACK
35 #define CONFIG_CONSOLE_SCROLL_LINES 10
36 35
37 #endif 36 #endif
38 37
include/configs/rpi.h
1 /* 1 /*
2 * (C) Copyright 2012-2016 Stephen Warren 2 * (C) Copyright 2012-2016 Stephen Warren
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0 4 * SPDX-License-Identifier: GPL-2.0
5 */ 5 */
6 6
7 #ifndef __CONFIG_H 7 #ifndef __CONFIG_H
8 #define __CONFIG_H 8 #define __CONFIG_H
9 9
10 #include <linux/sizes.h> 10 #include <linux/sizes.h>
11 #include <asm/arch/timer.h> 11 #include <asm/arch/timer.h>
12 12
13 #if defined(CONFIG_TARGET_RPI_2) || defined(CONFIG_TARGET_RPI_3_32B) 13 #if defined(CONFIG_TARGET_RPI_2) || defined(CONFIG_TARGET_RPI_3_32B)
14 #define CONFIG_SKIP_LOWLEVEL_INIT 14 #define CONFIG_SKIP_LOWLEVEL_INIT
15 #endif 15 #endif
16 16
17 /* Architecture, CPU, etc.*/ 17 /* Architecture, CPU, etc.*/
18 #define CONFIG_ARCH_CPU_INIT 18 #define CONFIG_ARCH_CPU_INIT
19 #define CONFIG_BOARD_EARLY_INIT_F 19 #define CONFIG_BOARD_EARLY_INIT_F
20 20
21 /* Use SoC timer for AArch32, but architected timer for AArch64 */ 21 /* Use SoC timer for AArch32, but architected timer for AArch64 */
22 #ifndef CONFIG_ARM64 22 #ifndef CONFIG_ARM64
23 #define CONFIG_SYS_TIMER_RATE 1000000 23 #define CONFIG_SYS_TIMER_RATE 1000000
24 #define CONFIG_SYS_TIMER_COUNTER \ 24 #define CONFIG_SYS_TIMER_COUNTER \
25 (&((struct bcm2835_timer_regs *)BCM2835_TIMER_PHYSADDR)->clo) 25 (&((struct bcm2835_timer_regs *)BCM2835_TIMER_PHYSADDR)->clo)
26 #endif 26 #endif
27 27
28 /* 28 /*
29 * 2835 is a SKU in a series for which the 2708 is the first or primary SoC, 29 * 2835 is a SKU in a series for which the 2708 is the first or primary SoC,
30 * so 2708 has historically been used rather than a dedicated 2835 ID. 30 * so 2708 has historically been used rather than a dedicated 2835 ID.
31 * 31 *
32 * We don't define a machine type for bcm2709/bcm2836 since the RPi Foundation 32 * We don't define a machine type for bcm2709/bcm2836 since the RPi Foundation
33 * chose to use someone else's previously registered machine ID (3139, MX51_GGC) 33 * chose to use someone else's previously registered machine ID (3139, MX51_GGC)
34 * rather than obtaining a valid ID:-/ 34 * rather than obtaining a valid ID:-/
35 * 35 *
36 * For the bcm2837, hopefully a machine type is not needed, since everything 36 * For the bcm2837, hopefully a machine type is not needed, since everything
37 * is DT. 37 * is DT.
38 */ 38 */
39 #ifdef CONFIG_BCM2835 39 #ifdef CONFIG_BCM2835
40 #define CONFIG_MACH_TYPE MACH_TYPE_BCM2708 40 #define CONFIG_MACH_TYPE MACH_TYPE_BCM2708
41 #endif 41 #endif
42 42
43 /* Memory layout */ 43 /* Memory layout */
44 #define CONFIG_NR_DRAM_BANKS 1 44 #define CONFIG_NR_DRAM_BANKS 1
45 #define CONFIG_SYS_SDRAM_BASE 0x00000000 45 #define CONFIG_SYS_SDRAM_BASE 0x00000000
46 #ifdef CONFIG_ARM64 46 #ifdef CONFIG_ARM64
47 #define CONFIG_SYS_TEXT_BASE 0x00080000 47 #define CONFIG_SYS_TEXT_BASE 0x00080000
48 #else 48 #else
49 #define CONFIG_SYS_TEXT_BASE 0x00008000 49 #define CONFIG_SYS_TEXT_BASE 0x00008000
50 #endif 50 #endif
51 #define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE 51 #define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
52 /* 52 /*
53 * The board really has 256M. However, the VC (VideoCore co-processor) shares 53 * The board really has 256M. However, the VC (VideoCore co-processor) shares
54 * the RAM, and uses a configurable portion at the top. We tell U-Boot that a 54 * the RAM, and uses a configurable portion at the top. We tell U-Boot that a
55 * smaller amount of RAM is present in order to avoid stomping on the area 55 * smaller amount of RAM is present in order to avoid stomping on the area
56 * the VC uses. 56 * the VC uses.
57 */ 57 */
58 #define CONFIG_SYS_SDRAM_SIZE SZ_128M 58 #define CONFIG_SYS_SDRAM_SIZE SZ_128M
59 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \ 59 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \
60 CONFIG_SYS_SDRAM_SIZE - \ 60 CONFIG_SYS_SDRAM_SIZE - \
61 GENERATED_GBL_DATA_SIZE) 61 GENERATED_GBL_DATA_SIZE)
62 #define CONFIG_SYS_MALLOC_LEN SZ_4M 62 #define CONFIG_SYS_MALLOC_LEN SZ_4M
63 #define CONFIG_SYS_MEMTEST_START 0x00100000 63 #define CONFIG_SYS_MEMTEST_START 0x00100000
64 #define CONFIG_SYS_MEMTEST_END 0x00200000 64 #define CONFIG_SYS_MEMTEST_END 0x00200000
65 #define CONFIG_LOADADDR 0x00200000 65 #define CONFIG_LOADADDR 0x00200000
66 66
67 /* Flash */ 67 /* Flash */
68 #define CONFIG_SYS_NO_FLASH 68 #define CONFIG_SYS_NO_FLASH
69 69
70 /* Devices */ 70 /* Devices */
71 /* GPIO */ 71 /* GPIO */
72 #define CONFIG_BCM2835_GPIO 72 #define CONFIG_BCM2835_GPIO
73 /* LCD */ 73 /* LCD */
74 #define CONFIG_LCD_DT_SIMPLEFB 74 #define CONFIG_LCD_DT_SIMPLEFB
75 #define LCD_BPP LCD_COLOR16 75 #define LCD_BPP LCD_COLOR16
76 /* 76 /*
77 * Prevent allocation of RAM for FB; the real FB address is queried 77 * Prevent allocation of RAM for FB; the real FB address is queried
78 * dynamically from the VideoCore co-processor, and comes from RAM 78 * dynamically from the VideoCore co-processor, and comes from RAM
79 * not owned by the ARM CPU. 79 * not owned by the ARM CPU.
80 */ 80 */
81 #define CONFIG_FB_ADDR 0 81 #define CONFIG_FB_ADDR 0
82 #define CONFIG_VIDEO_BCM2835 82 #define CONFIG_VIDEO_BCM2835
83 #define CONFIG_SYS_WHITE_ON_BLACK 83 #define CONFIG_SYS_WHITE_ON_BLACK
84 #define CONFIG_CONSOLE_SCROLL_LINES 10
85 84
86 /* SD/MMC configuration */ 85 /* SD/MMC configuration */
87 #define CONFIG_GENERIC_MMC 86 #define CONFIG_GENERIC_MMC
88 #define CONFIG_MMC 87 #define CONFIG_MMC
89 #define CONFIG_SDHCI 88 #define CONFIG_SDHCI
90 #define CONFIG_MMC_SDHCI_IO_ACCESSORS 89 #define CONFIG_MMC_SDHCI_IO_ACCESSORS
91 #define CONFIG_BCM2835_SDHCI 90 #define CONFIG_BCM2835_SDHCI
92 91
93 #ifdef CONFIG_CMD_USB 92 #ifdef CONFIG_CMD_USB
94 #define CONFIG_USB_DWC2 93 #define CONFIG_USB_DWC2
95 #ifndef CONFIG_BCM2835 94 #ifndef CONFIG_BCM2835
96 #define CONFIG_USB_DWC2_REG_ADDR 0x3f980000 95 #define CONFIG_USB_DWC2_REG_ADDR 0x3f980000
97 #else 96 #else
98 #define CONFIG_USB_DWC2_REG_ADDR 0x20980000 97 #define CONFIG_USB_DWC2_REG_ADDR 0x20980000
99 #endif 98 #endif
100 #define CONFIG_USB_HOST_ETHER 99 #define CONFIG_USB_HOST_ETHER
101 #define CONFIG_USB_ETHER_SMSC95XX 100 #define CONFIG_USB_ETHER_SMSC95XX
102 #define CONFIG_TFTP_TSIZE 101 #define CONFIG_TFTP_TSIZE
103 #define CONFIG_MISC_INIT_R 102 #define CONFIG_MISC_INIT_R
104 #define CONFIG_USB_KEYBOARD 103 #define CONFIG_USB_KEYBOARD
105 #define CONFIG_SYS_USB_EVENT_POLL 104 #define CONFIG_SYS_USB_EVENT_POLL
106 #define CONFIG_SYS_STDIO_DEREGISTER 105 #define CONFIG_SYS_STDIO_DEREGISTER
107 #endif 106 #endif
108 107
109 /* Console UART */ 108 /* Console UART */
110 #ifdef CONFIG_BCM2837 109 #ifdef CONFIG_BCM2837
111 #define CONFIG_BCM283X_MU_SERIAL 110 #define CONFIG_BCM283X_MU_SERIAL
112 #else 111 #else
113 #define CONFIG_PL01X_SERIAL 112 #define CONFIG_PL01X_SERIAL
114 #endif 113 #endif
115 #define CONFIG_CONS_INDEX 0 114 #define CONFIG_CONS_INDEX 0
116 #define CONFIG_BAUDRATE 115200 115 #define CONFIG_BAUDRATE 115200
117 116
118 /* Console configuration */ 117 /* Console configuration */
119 #define CONFIG_SYS_CBSIZE 1024 118 #define CONFIG_SYS_CBSIZE 1024
120 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ 119 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
121 sizeof(CONFIG_SYS_PROMPT) + 16) 120 sizeof(CONFIG_SYS_PROMPT) + 16)
122 121
123 /* Environment */ 122 /* Environment */
124 #define CONFIG_ENV_SIZE SZ_16K 123 #define CONFIG_ENV_SIZE SZ_16K
125 #define CONFIG_ENV_IS_IN_FAT 124 #define CONFIG_ENV_IS_IN_FAT
126 #define FAT_ENV_INTERFACE "mmc" 125 #define FAT_ENV_INTERFACE "mmc"
127 #define FAT_ENV_DEVICE_AND_PART "0:1" 126 #define FAT_ENV_DEVICE_AND_PART "0:1"
128 #define FAT_ENV_FILE "uboot.env" 127 #define FAT_ENV_FILE "uboot.env"
129 #define CONFIG_FAT_WRITE 128 #define CONFIG_FAT_WRITE
130 #define CONFIG_ENV_VARS_UBOOT_CONFIG 129 #define CONFIG_ENV_VARS_UBOOT_CONFIG
131 #define CONFIG_SYS_LOAD_ADDR 0x1000000 130 #define CONFIG_SYS_LOAD_ADDR 0x1000000
132 #define CONFIG_PREBOOT "usb start" 131 #define CONFIG_PREBOOT "usb start"
133 132
134 /* Shell */ 133 /* Shell */
135 #define CONFIG_SYS_MAXARGS 16 134 #define CONFIG_SYS_MAXARGS 16
136 #define CONFIG_COMMAND_HISTORY 135 #define CONFIG_COMMAND_HISTORY
137 136
138 /* Commands */ 137 /* Commands */
139 #define CONFIG_PARTITION_UUIDS 138 #define CONFIG_PARTITION_UUIDS
140 #define CONFIG_CMD_PART 139 #define CONFIG_CMD_PART
141 140
142 /* ATAGs support for bootm/bootz */ 141 /* ATAGs support for bootm/bootz */
143 #define CONFIG_SETUP_MEMORY_TAGS 142 #define CONFIG_SETUP_MEMORY_TAGS
144 #define CONFIG_CMDLINE_TAG 143 #define CONFIG_CMDLINE_TAG
145 #define CONFIG_INITRD_TAG 144 #define CONFIG_INITRD_TAG
146 145
147 #include <config_distro_defaults.h> 146 #include <config_distro_defaults.h>
148 147
149 /* Environment */ 148 /* Environment */
150 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG 149 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
151 #define ENV_DEVICE_SETTINGS \ 150 #define ENV_DEVICE_SETTINGS \
152 "stdin=serial,usbkbd\0" \ 151 "stdin=serial,usbkbd\0" \
153 "stdout=serial,lcd\0" \ 152 "stdout=serial,lcd\0" \
154 "stderr=serial,lcd\0" 153 "stderr=serial,lcd\0"
155 154
156 /* 155 /*
157 * Memory layout for where various images get loaded by boot scripts: 156 * Memory layout for where various images get loaded by boot scripts:
158 * 157 *
159 * I suspect address 0 is used as the SMP pen on the RPi2, so avoid this. 158 * I suspect address 0 is used as the SMP pen on the RPi2, so avoid this.
160 * 159 *
161 * fdt_addr_r simply shouldn't overlap anything else. However, the RPi's 160 * fdt_addr_r simply shouldn't overlap anything else. However, the RPi's
162 * binary firmware loads a DT to address 0x100, so we choose this address to 161 * binary firmware loads a DT to address 0x100, so we choose this address to
163 * match it. This allows custom boot scripts to pass this DT on to Linux 162 * match it. This allows custom boot scripts to pass this DT on to Linux
164 * simply by not over-writing the data at this address. When using U-Boot, 163 * simply by not over-writing the data at this address. When using U-Boot,
165 * U-Boot (and scripts it executes) typicaly ignore the DT loaded by the FW 164 * U-Boot (and scripts it executes) typicaly ignore the DT loaded by the FW
166 * and loads its own DT from disk (triggered by boot.scr or extlinux.conf). 165 * and loads its own DT from disk (triggered by boot.scr or extlinux.conf).
167 * 166 *
168 * pxefile_addr_r can be pretty much anywhere that doesn't conflict with 167 * pxefile_addr_r can be pretty much anywhere that doesn't conflict with
169 * something else. Put it low in memory to avoid conflicts. 168 * something else. Put it low in memory to avoid conflicts.
170 * 169 *
171 * kernel_addr_r must be within the first 128M of RAM in order for the 170 * kernel_addr_r must be within the first 128M of RAM in order for the
172 * kernel's CONFIG_AUTO_ZRELADDR option to work. Since the kernel will 171 * kernel's CONFIG_AUTO_ZRELADDR option to work. Since the kernel will
173 * decompress itself to 0x8000 after the start of RAM, kernel_addr_r 172 * decompress itself to 0x8000 after the start of RAM, kernel_addr_r
174 * should not overlap that area, or the kernel will have to copy itself 173 * should not overlap that area, or the kernel will have to copy itself
175 * somewhere else before decompression. Similarly, the address of any other 174 * somewhere else before decompression. Similarly, the address of any other
176 * data passed to the kernel shouldn't overlap the start of RAM. Pushing 175 * data passed to the kernel shouldn't overlap the start of RAM. Pushing
177 * this up to 16M allows for a sizable kernel to be decompressed below the 176 * this up to 16M allows for a sizable kernel to be decompressed below the
178 * compressed load address. 177 * compressed load address.
179 * 178 *
180 * scriptaddr can be pretty much anywhere that doesn't conflict with something 179 * scriptaddr can be pretty much anywhere that doesn't conflict with something
181 * else. Choosing 32M allows for the compressed kernel to be up to 16M. 180 * else. Choosing 32M allows for the compressed kernel to be up to 16M.
182 * 181 *
183 * ramdisk_addr_r simply shouldn't overlap anything else. Choosing 33M allows 182 * ramdisk_addr_r simply shouldn't overlap anything else. Choosing 33M allows
184 * for any boot script to be up to 1M, which is hopefully plenty. 183 * for any boot script to be up to 1M, which is hopefully plenty.
185 */ 184 */
186 #define ENV_MEM_LAYOUT_SETTINGS \ 185 #define ENV_MEM_LAYOUT_SETTINGS \
187 "fdt_high=ffffffff\0" \ 186 "fdt_high=ffffffff\0" \
188 "initrd_high=ffffffff\0" \ 187 "initrd_high=ffffffff\0" \
189 "fdt_addr_r=0x00000100\0" \ 188 "fdt_addr_r=0x00000100\0" \
190 "pxefile_addr_r=0x00100000\0" \ 189 "pxefile_addr_r=0x00100000\0" \
191 "kernel_addr_r=0x01000000\0" \ 190 "kernel_addr_r=0x01000000\0" \
192 "scriptaddr=0x02000000\0" \ 191 "scriptaddr=0x02000000\0" \
193 "ramdisk_addr_r=0x02100000\0" \ 192 "ramdisk_addr_r=0x02100000\0" \
194 193
195 #define BOOT_TARGET_DEVICES(func) \ 194 #define BOOT_TARGET_DEVICES(func) \
196 func(MMC, mmc, 0) \ 195 func(MMC, mmc, 0) \
197 func(USB, usb, 0) \ 196 func(USB, usb, 0) \
198 func(PXE, pxe, na) \ 197 func(PXE, pxe, na) \
199 func(DHCP, dhcp, na) 198 func(DHCP, dhcp, na)
200 #include <config_distro_bootcmd.h> 199 #include <config_distro_bootcmd.h>
201 200
202 #define CONFIG_EXTRA_ENV_SETTINGS \ 201 #define CONFIG_EXTRA_ENV_SETTINGS \
203 "dhcpuboot=usb start; dhcp u-boot.uimg; bootm\0" \ 202 "dhcpuboot=usb start; dhcp u-boot.uimg; bootm\0" \
204 ENV_DEVICE_SETTINGS \ 203 ENV_DEVICE_SETTINGS \
205 ENV_MEM_LAYOUT_SETTINGS \ 204 ENV_MEM_LAYOUT_SETTINGS \
206 BOOTENV 205 BOOTENV
207 206
208 207
209 #endif 208 #endif
210 209
include/configs/seaboard.h
1 /* 1 /*
2 * (C) Copyright 2010,2011 2 * (C) Copyright 2010,2011
3 * NVIDIA Corporation <www.nvidia.com> 3 * NVIDIA Corporation <www.nvidia.com>
4 * 4 *
5 * SPDX-License-Identifier: GPL-2.0+ 5 * SPDX-License-Identifier: GPL-2.0+
6 */ 6 */
7 7
8 #ifndef __CONFIG_H 8 #ifndef __CONFIG_H
9 #define __CONFIG_H 9 #define __CONFIG_H
10 10
11 #include <linux/sizes.h> 11 #include <linux/sizes.h>
12 12
13 /* LP0 suspend / resume */ 13 /* LP0 suspend / resume */
14 #define CONFIG_TEGRA_LP0 14 #define CONFIG_TEGRA_LP0
15 #define CONFIG_AES 15 #define CONFIG_AES
16 #define CONFIG_TEGRA_PMU 16 #define CONFIG_TEGRA_PMU
17 #define CONFIG_TPS6586X_POWER 17 #define CONFIG_TPS6586X_POWER
18 #define CONFIG_TEGRA_CLOCK_SCALING 18 #define CONFIG_TEGRA_CLOCK_SCALING
19 19
20 #include "tegra20-common.h" 20 #include "tegra20-common.h"
21 21
22 /* High-level configuration options */ 22 /* High-level configuration options */
23 #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Seaboard" 23 #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Seaboard"
24 24
25 /* Board-specific serial config */ 25 /* Board-specific serial config */
26 #define CONFIG_TEGRA_ENABLE_UARTD 26 #define CONFIG_TEGRA_ENABLE_UARTD
27 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE 27 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
28 28
29 #define CONFIG_MACH_TYPE MACH_TYPE_SEABOARD 29 #define CONFIG_MACH_TYPE MACH_TYPE_SEABOARD
30 30
31 /* I2C */ 31 /* I2C */
32 #define CONFIG_SYS_I2C_TEGRA 32 #define CONFIG_SYS_I2C_TEGRA
33 33
34 /* SD/MMC */ 34 /* SD/MMC */
35 #define CONFIG_MMC 35 #define CONFIG_MMC
36 #define CONFIG_GENERIC_MMC 36 #define CONFIG_GENERIC_MMC
37 #define CONFIG_TEGRA_MMC 37 #define CONFIG_TEGRA_MMC
38 38
39 /* Environment in eMMC, at the end of 2nd "boot sector" */ 39 /* Environment in eMMC, at the end of 2nd "boot sector" */
40 #define CONFIG_ENV_IS_IN_MMC 40 #define CONFIG_ENV_IS_IN_MMC
41 #define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE) 41 #define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE)
42 #define CONFIG_SYS_MMC_ENV_DEV 0 42 #define CONFIG_SYS_MMC_ENV_DEV 0
43 #define CONFIG_SYS_MMC_ENV_PART 2 43 #define CONFIG_SYS_MMC_ENV_PART 2
44 44
45 /* USB Host support */ 45 /* USB Host support */
46 #define CONFIG_USB_EHCI 46 #define CONFIG_USB_EHCI
47 #define CONFIG_USB_EHCI_TEGRA 47 #define CONFIG_USB_EHCI_TEGRA
48 48
49 /* USB networking support */ 49 /* USB networking support */
50 #define CONFIG_USB_HOST_ETHER 50 #define CONFIG_USB_HOST_ETHER
51 #define CONFIG_USB_ETHER_ASIX 51 #define CONFIG_USB_ETHER_ASIX
52 52
53 /* General networking support */ 53 /* General networking support */
54 54
55 /* Enable keyboard */ 55 /* Enable keyboard */
56 #define CONFIG_TEGRA_KEYBOARD 56 #define CONFIG_TEGRA_KEYBOARD
57 #define CONFIG_KEYBOARD 57 #define CONFIG_KEYBOARD
58 58
59 /* USB keyboard */ 59 /* USB keyboard */
60 #define CONFIG_USB_KEYBOARD 60 #define CONFIG_USB_KEYBOARD
61 61
62 /* LCD support */ 62 /* LCD support */
63 #define CONFIG_SYS_WHITE_ON_BLACK 63 #define CONFIG_SYS_WHITE_ON_BLACK
64 #define CONFIG_CONSOLE_SCROLL_LINES 10
65 64
66 /* NAND support */ 65 /* NAND support */
67 #define CONFIG_CMD_NAND 66 #define CONFIG_CMD_NAND
68 #define CONFIG_TEGRA_NAND 67 #define CONFIG_TEGRA_NAND
69 68
70 /* Max number of NAND devices */ 69 /* Max number of NAND devices */
71 #define CONFIG_SYS_MAX_NAND_DEVICE 1 70 #define CONFIG_SYS_MAX_NAND_DEVICE 1
72 71
73 #include "tegra-common-post.h" 72 #include "tegra-common-post.h"
74 73
75 #endif /* __CONFIG_H */ 74 #endif /* __CONFIG_H */
76 75
include/configs/ventana.h
1 /* 1 /*
2 * (C) Copyright 2010,2011 2 * (C) Copyright 2010,2011
3 * NVIDIA Corporation <www.nvidia.com> 3 * NVIDIA Corporation <www.nvidia.com>
4 * 4 *
5 * SPDX-License-Identifier: GPL-2.0+ 5 * SPDX-License-Identifier: GPL-2.0+
6 */ 6 */
7 7
8 #ifndef __CONFIG_H 8 #ifndef __CONFIG_H
9 #define __CONFIG_H 9 #define __CONFIG_H
10 10
11 #include <linux/sizes.h> 11 #include <linux/sizes.h>
12 #include "tegra20-common.h" 12 #include "tegra20-common.h"
13 13
14 /* High-level configuration options */ 14 /* High-level configuration options */
15 #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Ventana" 15 #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Ventana"
16 16
17 /* Board-specific serial config */ 17 /* Board-specific serial config */
18 #define CONFIG_TEGRA_ENABLE_UARTD 18 #define CONFIG_TEGRA_ENABLE_UARTD
19 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE 19 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
20 20
21 #define CONFIG_MACH_TYPE MACH_TYPE_VENTANA 21 #define CONFIG_MACH_TYPE MACH_TYPE_VENTANA
22 22
23 /* SD/MMC */ 23 /* SD/MMC */
24 #define CONFIG_MMC 24 #define CONFIG_MMC
25 #define CONFIG_GENERIC_MMC 25 #define CONFIG_GENERIC_MMC
26 #define CONFIG_TEGRA_MMC 26 #define CONFIG_TEGRA_MMC
27 27
28 /* Environment in eMMC, at the end of 2nd "boot sector" */ 28 /* Environment in eMMC, at the end of 2nd "boot sector" */
29 #define CONFIG_ENV_IS_IN_MMC 29 #define CONFIG_ENV_IS_IN_MMC
30 #define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE) 30 #define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE)
31 #define CONFIG_SYS_MMC_ENV_DEV 0 31 #define CONFIG_SYS_MMC_ENV_DEV 0
32 #define CONFIG_SYS_MMC_ENV_PART 2 32 #define CONFIG_SYS_MMC_ENV_PART 2
33 33
34 /* USB Host support */ 34 /* USB Host support */
35 #define CONFIG_USB_EHCI 35 #define CONFIG_USB_EHCI
36 #define CONFIG_USB_EHCI_TEGRA 36 #define CONFIG_USB_EHCI_TEGRA
37 37
38 /* USB networking support */ 38 /* USB networking support */
39 #define CONFIG_USB_HOST_ETHER 39 #define CONFIG_USB_HOST_ETHER
40 #define CONFIG_USB_ETHER_ASIX 40 #define CONFIG_USB_ETHER_ASIX
41 41
42 /* General networking support */ 42 /* General networking support */
43 43
44 /* USB keyboard */ 44 /* USB keyboard */
45 #define CONFIG_USB_KEYBOARD 45 #define CONFIG_USB_KEYBOARD
46 46
47 /* LCD support */ 47 /* LCD support */
48 #define CONFIG_SYS_WHITE_ON_BLACK 48 #define CONFIG_SYS_WHITE_ON_BLACK
49 #define CONFIG_CONSOLE_SCROLL_LINES 10
50 49
51 #include "tegra-common-post.h" 50 #include "tegra-common-post.h"
52 51
53 #endif /* __CONFIG_H */ 52 #endif /* __CONFIG_H */
54 53
include/configs/x86-common.h
1 /* 1 /*
2 * Copyright (c) 2011 The Chromium OS Authors. 2 * Copyright (c) 2011 The Chromium OS Authors.
3 * (C) Copyright 2008 3 * (C) Copyright 2008
4 * Graeme Russ, graeme.russ@gmail.com. 4 * Graeme Russ, graeme.russ@gmail.com.
5 * 5 *
6 * SPDX-License-Identifier: GPL-2.0+ 6 * SPDX-License-Identifier: GPL-2.0+
7 */ 7 */
8 8
9 #include <asm/ibmpc.h> 9 #include <asm/ibmpc.h>
10 10
11 #ifndef __CONFIG_X86_COMMON_H 11 #ifndef __CONFIG_X86_COMMON_H
12 #define __CONFIG_X86_COMMON_H 12 #define __CONFIG_X86_COMMON_H
13 13
14 /* 14 /*
15 * High Level Configuration Options 15 * High Level Configuration Options
16 * (easy to change) 16 * (easy to change)
17 */ 17 */
18 #define CONFIG_SHOW_BOOT_PROGRESS 18 #define CONFIG_SHOW_BOOT_PROGRESS
19 #define CONFIG_ZBOOT_32 19 #define CONFIG_ZBOOT_32
20 #define CONFIG_PHYSMEM 20 #define CONFIG_PHYSMEM
21 #define CONFIG_DISPLAY_BOARDINFO_LATE 21 #define CONFIG_DISPLAY_BOARDINFO_LATE
22 #define CONFIG_LAST_STAGE_INIT 22 #define CONFIG_LAST_STAGE_INIT
23 #define CONFIG_NR_DRAM_BANKS 8 23 #define CONFIG_NR_DRAM_BANKS 8
24 24
25 #define CONFIG_LMB 25 #define CONFIG_LMB
26 26
27 #define CONFIG_LZO 27 #define CONFIG_LZO
28 #undef CONFIG_ZLIB 28 #undef CONFIG_ZLIB
29 #undef CONFIG_GZIP 29 #undef CONFIG_GZIP
30 #define CONFIG_SYS_BOOTM_LEN (16 << 20) 30 #define CONFIG_SYS_BOOTM_LEN (16 << 20)
31 31
32 /* SATA AHCI storage */ 32 /* SATA AHCI storage */
33 33
34 #define CONFIG_SCSI_AHCI 34 #define CONFIG_SCSI_AHCI
35 #ifdef CONFIG_SCSI_AHCI 35 #ifdef CONFIG_SCSI_AHCI
36 #define CONFIG_LIBATA 36 #define CONFIG_LIBATA
37 #define CONFIG_LBA48 37 #define CONFIG_LBA48
38 #define CONFIG_SYS_64BIT_LBA 38 #define CONFIG_SYS_64BIT_LBA
39 39
40 #define CONFIG_SYS_SCSI_MAX_SCSI_ID 2 40 #define CONFIG_SYS_SCSI_MAX_SCSI_ID 2
41 #define CONFIG_SYS_SCSI_MAX_LUN 1 41 #define CONFIG_SYS_SCSI_MAX_LUN 1
42 #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \ 42 #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
43 CONFIG_SYS_SCSI_MAX_LUN) 43 CONFIG_SYS_SCSI_MAX_LUN)
44 #endif 44 #endif
45 45
46 /* Generic TPM interfaced through LPC bus */ 46 /* Generic TPM interfaced through LPC bus */
47 #define CONFIG_TPM_TIS_BASE_ADDRESS 0xfed40000 47 #define CONFIG_TPM_TIS_BASE_ADDRESS 0xfed40000
48 48
49 /*----------------------------------------------------------------------- 49 /*-----------------------------------------------------------------------
50 * Real Time Clock Configuration 50 * Real Time Clock Configuration
51 */ 51 */
52 #define CONFIG_RTC_MC146818 52 #define CONFIG_RTC_MC146818
53 #define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0 53 #define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0
54 #define CONFIG_SYS_ISA_IO CONFIG_SYS_ISA_IO_BASE_ADDRESS 54 #define CONFIG_SYS_ISA_IO CONFIG_SYS_ISA_IO_BASE_ADDRESS
55 55
56 /*----------------------------------------------------------------------- 56 /*-----------------------------------------------------------------------
57 * Serial Configuration 57 * Serial Configuration
58 */ 58 */
59 #define CONFIG_BAUDRATE 115200 59 #define CONFIG_BAUDRATE 115200
60 #define CONFIG_SYS_BAUDRATE_TABLE {300, 600, 1200, 2400, 4800, \ 60 #define CONFIG_SYS_BAUDRATE_TABLE {300, 600, 1200, 2400, 4800, \
61 9600, 19200, 38400, 115200} 61 9600, 19200, 38400, 115200}
62 #define CONFIG_SYS_NS16550_PORT_MAPPED 62 #define CONFIG_SYS_NS16550_PORT_MAPPED
63 63
64 #define CONFIG_SYS_STDIO_DEREGISTER 64 #define CONFIG_SYS_STDIO_DEREGISTER
65 65
66 #define CONFIG_CMDLINE_EDITING 66 #define CONFIG_CMDLINE_EDITING
67 #define CONFIG_COMMAND_HISTORY 67 #define CONFIG_COMMAND_HISTORY
68 #define CONFIG_AUTO_COMPLETE 68 #define CONFIG_AUTO_COMPLETE
69 69
70 #define CONFIG_SUPPORT_VFAT 70 #define CONFIG_SUPPORT_VFAT
71 71
72 /************************************************************ 72 /************************************************************
73 * DISK Partition support 73 * DISK Partition support
74 ************************************************************/ 74 ************************************************************/
75 #define CONFIG_EFI_PARTITION 75 #define CONFIG_EFI_PARTITION
76 #define CONFIG_DOS_PARTITION 76 #define CONFIG_DOS_PARTITION
77 #define CONFIG_MAC_PARTITION 77 #define CONFIG_MAC_PARTITION
78 #define CONFIG_ISO_PARTITION /* Experimental */ 78 #define CONFIG_ISO_PARTITION /* Experimental */
79 79
80 #define CONFIG_CMD_PART 80 #define CONFIG_CMD_PART
81 #ifdef CONFIG_SYS_COREBOOT 81 #ifdef CONFIG_SYS_COREBOOT
82 #define CONFIG_CMD_CBFS 82 #define CONFIG_CMD_CBFS
83 #endif 83 #endif
84 #define CONFIG_PARTITION_UUIDS 84 #define CONFIG_PARTITION_UUIDS
85 85
86 #define CONFIG_SYS_CONSOLE_INFO_QUIET 86 #define CONFIG_SYS_CONSOLE_INFO_QUIET
87 87
88 /* x86 GPIOs are accessed through a PCI device */ 88 /* x86 GPIOs are accessed through a PCI device */
89 #define CONFIG_INTEL_ICH6_GPIO 89 #define CONFIG_INTEL_ICH6_GPIO
90 90
91 /*----------------------------------------------------------------------- 91 /*-----------------------------------------------------------------------
92 * Command line configuration. 92 * Command line configuration.
93 */ 93 */
94 #define CONFIG_CMD_DATE 94 #define CONFIG_CMD_DATE
95 #define CONFIG_CMD_FPGA_LOADMK 95 #define CONFIG_CMD_FPGA_LOADMK
96 #define CONFIG_CMD_IO 96 #define CONFIG_CMD_IO
97 #define CONFIG_CMD_IRQ 97 #define CONFIG_CMD_IRQ
98 #define CONFIG_CMD_PCI 98 #define CONFIG_CMD_PCI
99 #define CONFIG_CMD_GETTIME 99 #define CONFIG_CMD_GETTIME
100 #define CONFIG_SCSI 100 #define CONFIG_SCSI
101 101
102 #define CONFIG_CMD_ZBOOT 102 #define CONFIG_CMD_ZBOOT
103 103
104 #define CONFIG_BOOTARGS \ 104 #define CONFIG_BOOTARGS \
105 "root=/dev/sdb3 init=/sbin/init rootwait ro" 105 "root=/dev/sdb3 init=/sbin/init rootwait ro"
106 #define CONFIG_BOOTCOMMAND \ 106 #define CONFIG_BOOTCOMMAND \
107 "ext2load scsi 0:3 01000000 /boot/vmlinuz; zboot 01000000" 107 "ext2load scsi 0:3 01000000 /boot/vmlinuz; zboot 01000000"
108 108
109 #if defined(CONFIG_CMD_KGDB) 109 #if defined(CONFIG_CMD_KGDB)
110 #define CONFIG_KGDB_BAUDRATE 115200 110 #define CONFIG_KGDB_BAUDRATE 115200
111 #endif 111 #endif
112 112
113 /* 113 /*
114 * Miscellaneous configurable options 114 * Miscellaneous configurable options
115 */ 115 */
116 #define CONFIG_SYS_LONGHELP 116 #define CONFIG_SYS_LONGHELP
117 #define CONFIG_SYS_CBSIZE 512 117 #define CONFIG_SYS_CBSIZE 512
118 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ 118 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
119 sizeof(CONFIG_SYS_PROMPT) + \ 119 sizeof(CONFIG_SYS_PROMPT) + \
120 16) 120 16)
121 #define CONFIG_SYS_MAXARGS 16 121 #define CONFIG_SYS_MAXARGS 16
122 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 122 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
123 123
124 #define CONFIG_SYS_MEMTEST_START 0x00100000 124 #define CONFIG_SYS_MEMTEST_START 0x00100000
125 #define CONFIG_SYS_MEMTEST_END 0x01000000 125 #define CONFIG_SYS_MEMTEST_END 0x01000000
126 #define CONFIG_SYS_LOAD_ADDR 0x20000000 126 #define CONFIG_SYS_LOAD_ADDR 0x20000000
127 127
128 /*----------------------------------------------------------------------- 128 /*-----------------------------------------------------------------------
129 * Video Configuration
130 */
131 #define CONFIG_CONSOLE_SCROLL_LINES 5
132
133 /*-----------------------------------------------------------------------
134 * CPU Features 129 * CPU Features
135 */ 130 */
136 131
137 #define CONFIG_SYS_STACK_SIZE (32 * 1024) 132 #define CONFIG_SYS_STACK_SIZE (32 * 1024)
138 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE 133 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
139 #define CONFIG_SYS_MALLOC_LEN 0x200000 134 #define CONFIG_SYS_MALLOC_LEN 0x200000
140 135
141 /* allow to overwrite serial and ethaddr */ 136 /* allow to overwrite serial and ethaddr */
142 #define CONFIG_ENV_OVERWRITE 137 #define CONFIG_ENV_OVERWRITE
143 138
144 /*----------------------------------------------------------------------- 139 /*-----------------------------------------------------------------------
145 * FLASH configuration 140 * FLASH configuration
146 */ 141 */
147 #define CONFIG_SYS_NO_FLASH 142 #define CONFIG_SYS_NO_FLASH
148 #define CONFIG_CMD_SF_TEST 143 #define CONFIG_CMD_SF_TEST
149 #define CONFIG_SPI 144 #define CONFIG_SPI
150 145
151 /*----------------------------------------------------------------------- 146 /*-----------------------------------------------------------------------
152 * Environment configuration 147 * Environment configuration
153 */ 148 */
154 #define CONFIG_ENV_IS_IN_SPI_FLASH 149 #define CONFIG_ENV_IS_IN_SPI_FLASH
155 #define CONFIG_ENV_SIZE 0x01000 150 #define CONFIG_ENV_SIZE 0x01000
156 151
157 /*----------------------------------------------------------------------- 152 /*-----------------------------------------------------------------------
158 * PCI configuration 153 * PCI configuration
159 */ 154 */
160 #define CONFIG_PCI 155 #define CONFIG_PCI
161 #define CONFIG_PCI_CONFIG_HOST_BRIDGE 156 #define CONFIG_PCI_CONFIG_HOST_BRIDGE
162 157
163 /*----------------------------------------------------------------------- 158 /*-----------------------------------------------------------------------
164 * USB configuration 159 * USB configuration
165 */ 160 */
166 #define CONFIG_USB_EHCI 161 #define CONFIG_USB_EHCI
167 #define CONFIG_USB_EHCI_PCI 162 #define CONFIG_USB_EHCI_PCI
168 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 12 163 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 12
169 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 164 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
170 #define CONFIG_USB_KEYBOARD 165 #define CONFIG_USB_KEYBOARD
171 #define CONFIG_SYS_USB_EVENT_POLL 166 #define CONFIG_SYS_USB_EVENT_POLL
172 167
173 #define CONFIG_USB_HOST_ETHER 168 #define CONFIG_USB_HOST_ETHER
174 #define CONFIG_USB_ETHER_ASIX 169 #define CONFIG_USB_ETHER_ASIX
175 #define CONFIG_USB_ETHER_SMSC95XX 170 #define CONFIG_USB_ETHER_SMSC95XX
176 #define CONFIG_TFTP_TSIZE 171 #define CONFIG_TFTP_TSIZE
177 #define CONFIG_BOOTP_BOOTFILESIZE 172 #define CONFIG_BOOTP_BOOTFILESIZE
178 #define CONFIG_BOOTP_BOOTPATH 173 #define CONFIG_BOOTP_BOOTPATH
179 #define CONFIG_BOOTP_GATEWAY 174 #define CONFIG_BOOTP_GATEWAY
180 #define CONFIG_BOOTP_HOSTNAME 175 #define CONFIG_BOOTP_HOSTNAME
181 176
182 /* Default environment */ 177 /* Default environment */
183 #define CONFIG_ROOTPATH "/opt/nfsroot" 178 #define CONFIG_ROOTPATH "/opt/nfsroot"
184 #define CONFIG_HOSTNAME x86 179 #define CONFIG_HOSTNAME x86
185 #define CONFIG_BOOTFILE "bzImage" 180 #define CONFIG_BOOTFILE "bzImage"
186 #define CONFIG_LOADADDR 0x1000000 181 #define CONFIG_LOADADDR 0x1000000
187 #define CONFIG_RAMDISK_ADDR 0x4000000 182 #define CONFIG_RAMDISK_ADDR 0x4000000
188 #ifdef CONFIG_GENERATE_ACPI_TABLE 183 #ifdef CONFIG_GENERATE_ACPI_TABLE
189 #define CONFIG_OTHBOOTARGS "othbootargs=\0" 184 #define CONFIG_OTHBOOTARGS "othbootargs=\0"
190 #else 185 #else
191 #define CONFIG_OTHBOOTARGS "othbootargs=acpi=off\0" 186 #define CONFIG_OTHBOOTARGS "othbootargs=acpi=off\0"
192 #endif 187 #endif
193 188
194 #define CONFIG_EXTRA_ENV_SETTINGS \ 189 #define CONFIG_EXTRA_ENV_SETTINGS \
195 CONFIG_STD_DEVICES_SETTINGS \ 190 CONFIG_STD_DEVICES_SETTINGS \
196 "pciconfighost=1\0" \ 191 "pciconfighost=1\0" \
197 "netdev=eth0\0" \ 192 "netdev=eth0\0" \
198 "consoledev=ttyS0\0" \ 193 "consoledev=ttyS0\0" \
199 CONFIG_OTHBOOTARGS \ 194 CONFIG_OTHBOOTARGS \
200 "ramdiskaddr=0x4000000\0" \ 195 "ramdiskaddr=0x4000000\0" \
201 "ramdiskfile=initramfs.gz\0" 196 "ramdiskfile=initramfs.gz\0"
202 197
203 #define CONFIG_RAMBOOTCOMMAND \ 198 #define CONFIG_RAMBOOTCOMMAND \
204 "setenv bootargs root=/dev/ram rw " \ 199 "setenv bootargs root=/dev/ram rw " \
205 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \ 200 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
206 "console=$consoledev,$baudrate $othbootargs;" \ 201 "console=$consoledev,$baudrate $othbootargs;" \
207 "tftpboot $loadaddr $bootfile;" \ 202 "tftpboot $loadaddr $bootfile;" \
208 "tftpboot $ramdiskaddr $ramdiskfile;" \ 203 "tftpboot $ramdiskaddr $ramdiskfile;" \
209 "zboot $loadaddr 0 $ramdiskaddr $filesize" 204 "zboot $loadaddr 0 $ramdiskaddr $filesize"
210 205
211 #define CONFIG_NFSBOOTCOMMAND \ 206 #define CONFIG_NFSBOOTCOMMAND \
212 "setenv bootargs root=/dev/nfs rw " \ 207 "setenv bootargs root=/dev/nfs rw " \
213 "nfsroot=$serverip:$rootpath " \ 208 "nfsroot=$serverip:$rootpath " \
214 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \ 209 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
215 "console=$consoledev,$baudrate $othbootargs;" \ 210 "console=$consoledev,$baudrate $othbootargs;" \
216 "tftpboot $loadaddr $bootfile;" \ 211 "tftpboot $loadaddr $bootfile;" \
217 "zboot $loadaddr" 212 "zboot $loadaddr"
218 213
219 214
220 #endif /* __CONFIG_H */ 215 #endif /* __CONFIG_H */
221 216
include/lcd_console.h
1 /* 1 /*
2 * Copyright (C) 2014, Compulab Ltd - http://compulab.co.il/ 2 * Copyright (C) 2014, Compulab Ltd - http://compulab.co.il/
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 /* By default we scroll by a single line */ 7 /* By default we scroll by a single line */
8 #ifndef CONFIG_CONSOLE_SCROLL_LINES
9 #define CONFIG_CONSOLE_SCROLL_LINES 1
10 #endif
11 8
12 struct console_t { 9 struct console_t {
13 short curr_col, curr_row; 10 short curr_col, curr_row;
14 short cols, rows; 11 short cols, rows;
15 void *fbbase; 12 void *fbbase;
16 u32 lcdsizex, lcdsizey, lcdrot; 13 u32 lcdsizex, lcdsizey, lcdrot;
17 void (*fp_putc_xy)(struct console_t *pcons, ushort x, ushort y, char c); 14 void (*fp_putc_xy)(struct console_t *pcons, ushort x, ushort y, char c);
18 void (*fp_console_moverow)(struct console_t *pcons, 15 void (*fp_console_moverow)(struct console_t *pcons,
19 u32 rowdst, u32 rowsrc); 16 u32 rowdst, u32 rowsrc);
20 void (*fp_console_setrow)(struct console_t *pcons, u32 row, int clr); 17 void (*fp_console_setrow)(struct console_t *pcons, u32 row, int clr);
21 }; 18 };
22 19
23 /** 20 /**
24 * console_calc_rowcol() - calculate available rows / columns wihtin a given 21 * console_calc_rowcol() - calculate available rows / columns wihtin a given
25 * screen-size based on used VIDEO_FONT. 22 * screen-size based on used VIDEO_FONT.
26 * 23 *
27 * @pcons: Pointer to struct console_t 24 * @pcons: Pointer to struct console_t
28 * @sizex: size X of the screen in pixel 25 * @sizex: size X of the screen in pixel
29 * @sizey: size Y of the screen in pixel 26 * @sizey: size Y of the screen in pixel
30 */ 27 */
31 void console_calc_rowcol(struct console_t *pcons, u32 sizex, u32 sizey); 28 void console_calc_rowcol(struct console_t *pcons, u32 sizex, u32 sizey);
32 /** 29 /**
33 * lcd_init_console() - Initialize lcd console parameters 30 * lcd_init_console() - Initialize lcd console parameters
34 * 31 *
35 * Setup the address of console base, and the number of rows and columns the 32 * Setup the address of console base, and the number of rows and columns the
36 * console has. 33 * console has.
37 * 34 *
38 * @address: Console base address 35 * @address: Console base address
39 * @vl_rows: Number of rows in the console 36 * @vl_rows: Number of rows in the console
40 * @vl_cols: Number of columns in the console 37 * @vl_cols: Number of columns in the console
41 * @vl_rot: Rotation of display in degree (0 - 90 - 180 - 270) counterlockwise 38 * @vl_rot: Rotation of display in degree (0 - 90 - 180 - 270) counterlockwise
42 */ 39 */
43 void lcd_init_console(void *address, int vl_cols, int vl_rows, int vl_rot); 40 void lcd_init_console(void *address, int vl_cols, int vl_rows, int vl_rot);
44 /** 41 /**
45 * lcd_set_col() - Set the number of the current lcd console column 42 * lcd_set_col() - Set the number of the current lcd console column
46 * 43 *
47 * Set the number of the console column where the cursor is. 44 * Set the number of the console column where the cursor is.
48 * 45 *
49 * @col: Column number 46 * @col: Column number
50 */ 47 */
51 void lcd_set_col(short col); 48 void lcd_set_col(short col);
52 49
53 /** 50 /**
54 * lcd_set_row() - Set the number of the current lcd console row 51 * lcd_set_row() - Set the number of the current lcd console row
55 * 52 *
56 * Set the number of the console row where the cursor is. 53 * Set the number of the console row where the cursor is.
57 * 54 *
58 * @row: Row number 55 * @row: Row number
59 */ 56 */
60 void lcd_set_row(short row); 57 void lcd_set_row(short row);
61 58
62 /** 59 /**
63 * lcd_position_cursor() - Position the cursor on the screen 60 * lcd_position_cursor() - Position the cursor on the screen
64 * 61 *
65 * Position the cursor at the given coordinates on the screen. 62 * Position the cursor at the given coordinates on the screen.
66 * 63 *
67 * @col: Column number 64 * @col: Column number
68 * @row: Row number 65 * @row: Row number
69 */ 66 */
70 void lcd_position_cursor(unsigned col, unsigned row); 67 void lcd_position_cursor(unsigned col, unsigned row);
71 68
72 /** 69 /**
73 * lcd_get_screen_rows() - Get the total number of screen rows 70 * lcd_get_screen_rows() - Get the total number of screen rows
74 * 71 *
75 * @return: Number of screen rows 72 * @return: Number of screen rows
76 */ 73 */
77 int lcd_get_screen_rows(void); 74 int lcd_get_screen_rows(void);
78 75
79 /** 76 /**
80 * lcd_get_screen_columns() - Get the total number of screen columns 77 * lcd_get_screen_columns() - Get the total number of screen columns
81 * 78 *
82 * @return: Number of screen columns 79 * @return: Number of screen columns
83 */ 80 */
84 int lcd_get_screen_columns(void); 81 int lcd_get_screen_columns(void);
85 82
86 /** 83 /**
87 * lcd_putc() - Print to screen a single character at the location of the cursor 84 * lcd_putc() - Print to screen a single character at the location of the cursor
88 * 85 *
89 * @c: The character to print 86 * @c: The character to print
90 */ 87 */
91 void lcd_putc(const char c); 88 void lcd_putc(const char c);
92 89
93 /** 90 /**
94 * lcd_puts() - Print to screen a string at the location of the cursor 91 * lcd_puts() - Print to screen a string at the location of the cursor
95 * 92 *
96 * @s: The string to print 93 * @s: The string to print
97 */ 94 */
98 void lcd_puts(const char *s); 95 void lcd_puts(const char *s);
99 96
100 /** 97 /**
101 * lcd_printf() - Print to screen a formatted string at location of the cursor 98 * lcd_printf() - Print to screen a formatted string at location of the cursor
102 * 99 *
103 * @fmt: The formatted string to print 100 * @fmt: The formatted string to print
104 * @...: The arguments for the formatted string 101 * @...: The arguments for the formatted string
105 */ 102 */
106 void lcd_printf(const char *fmt, ...); 103 void lcd_printf(const char *fmt, ...);
107 104
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_405 4 CONFIG_405
5 CONFIG_405EP 5 CONFIG_405EP
6 CONFIG_405EX 6 CONFIG_405EX
7 CONFIG_405EX_CHIP21_ECID3_REV_D 7 CONFIG_405EX_CHIP21_ECID3_REV_D
8 CONFIG_405EX_CHIP21_PVR_REV_C 8 CONFIG_405EX_CHIP21_PVR_REV_C
9 CONFIG_405EX_CHIP21_PVR_REV_D 9 CONFIG_405EX_CHIP21_PVR_REV_D
10 CONFIG_405EZ 10 CONFIG_405EZ
11 CONFIG_405GP 11 CONFIG_405GP
12 CONFIG_440 12 CONFIG_440
13 CONFIG_440EP 13 CONFIG_440EP
14 CONFIG_440EPX 14 CONFIG_440EPX
15 CONFIG_440GP 15 CONFIG_440GP
16 CONFIG_440GR 16 CONFIG_440GR
17 CONFIG_440GRX 17 CONFIG_440GRX
18 CONFIG_440GX 18 CONFIG_440GX
19 CONFIG_440SP 19 CONFIG_440SP
20 CONFIG_440SPE 20 CONFIG_440SPE
21 CONFIG_440SPE_REVA 21 CONFIG_440SPE_REVA
22 CONFIG_440_GX 22 CONFIG_440_GX
23 CONFIG_4430SDP 23 CONFIG_4430SDP
24 CONFIG_460EX 24 CONFIG_460EX
25 CONFIG_460GT 25 CONFIG_460GT
26 CONFIG_460SX 26 CONFIG_460SX
27 CONFIG_4xx_CONFIG_BLOCKSIZE 27 CONFIG_4xx_CONFIG_BLOCKSIZE
28 CONFIG_4xx_CONFIG_I2C_EEPROM_ADDR 28 CONFIG_4xx_CONFIG_I2C_EEPROM_ADDR
29 CONFIG_4xx_CONFIG_I2C_EEPROM_OFFSET 29 CONFIG_4xx_CONFIG_I2C_EEPROM_OFFSET
30 CONFIG_4xx_DCACHE 30 CONFIG_4xx_DCACHE
31 CONFIG_521X 31 CONFIG_521X
32 CONFIG_533MHZ_MODE 32 CONFIG_533MHZ_MODE
33 CONFIG_5xx_CONS_SCI1 33 CONFIG_5xx_CONS_SCI1
34 CONFIG_5xx_CONS_SCI2 34 CONFIG_5xx_CONS_SCI2
35 CONFIG_5xx_GCLK_FREQ 35 CONFIG_5xx_GCLK_FREQ
36 CONFIG_64BIT_PHYS_ADDR 36 CONFIG_64BIT_PHYS_ADDR
37 CONFIG_66 37 CONFIG_66
38 CONFIG_8260_CLKIN 38 CONFIG_8260_CLKIN
39 CONFIG_8349_CLKIN 39 CONFIG_8349_CLKIN
40 CONFIG_83XX 40 CONFIG_83XX
41 CONFIG_83XX_CLKIN 41 CONFIG_83XX_CLKIN
42 CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES 42 CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES
43 CONFIG_83XX_PCICLK 43 CONFIG_83XX_PCICLK
44 CONFIG_83XX_PCI_STREAMING 44 CONFIG_83XX_PCI_STREAMING
45 CONFIG_88F5182 45 CONFIG_88F5182
46 CONFIG_8xx_CONS_NONE 46 CONFIG_8xx_CONS_NONE
47 CONFIG_8xx_CONS_SCCx 47 CONFIG_8xx_CONS_SCCx
48 CONFIG_8xx_CONS_SMC1 48 CONFIG_8xx_CONS_SMC1
49 CONFIG_8xx_CONS_SMC2 49 CONFIG_8xx_CONS_SMC2
50 CONFIG_8xx_CONS_SMCx 50 CONFIG_8xx_CONS_SMCx
51 CONFIG_8xx_CPUCLK_DEFAULT 51 CONFIG_8xx_CPUCLK_DEFAULT
52 CONFIG_8xx_GCLK_FREQ 52 CONFIG_8xx_GCLK_FREQ
53 CONFIG_8xx_OSCLK 53 CONFIG_8xx_OSCLK
54 CONFIG_A003399_NOR_WORKAROUND 54 CONFIG_A003399_NOR_WORKAROUND
55 CONFIG_A008044_WORKAROUND 55 CONFIG_A008044_WORKAROUND
56 CONFIG_A3M071 56 CONFIG_A3M071
57 CONFIG_A4M072 57 CONFIG_A4M072
58 CONFIG_A4M2K 58 CONFIG_A4M2K
59 CONFIG_AC14XX 59 CONFIG_AC14XX
60 CONFIG_ACADIA 60 CONFIG_ACADIA
61 CONFIG_ACX517AKN 61 CONFIG_ACX517AKN
62 CONFIG_ACX544AKN 62 CONFIG_ACX544AKN
63 CONFIG_ADCIOP 63 CONFIG_ADCIOP
64 CONFIG_ADDMISC 64 CONFIG_ADDMISC
65 CONFIG_ADDRESS 65 CONFIG_ADDRESS
66 CONFIG_ADDR_AUTO_INCR_BIT 66 CONFIG_ADDR_AUTO_INCR_BIT
67 CONFIG_ADDR_MAP 67 CONFIG_ADDR_MAP
68 CONFIG_ADDR_STREAMING 68 CONFIG_ADDR_STREAMING
69 CONFIG_ADI_GPIO1 69 CONFIG_ADI_GPIO1
70 CONFIG_ADI_GPIO2 70 CONFIG_ADI_GPIO2
71 CONFIG_ADNPESC1 71 CONFIG_ADNPESC1
72 CONFIG_ADP_AG101P 72 CONFIG_ADP_AG101P
73 CONFIG_AEABI 73 CONFIG_AEABI
74 CONFIG_AEMIF_CNTRL_BASE 74 CONFIG_AEMIF_CNTRL_BASE
75 CONFIG_AES 75 CONFIG_AES
76 CONFIG_ALTERA_SDRAM 76 CONFIG_ALTERA_SDRAM
77 CONFIG_ALTERA_SPI_IDLE_VAL 77 CONFIG_ALTERA_SPI_IDLE_VAL
78 CONFIG_ALTIVEC 78 CONFIG_ALTIVEC
79 CONFIG_ALT_LB_ADDR 79 CONFIG_ALT_LB_ADDR
80 CONFIG_ALT_LH_ADDR 80 CONFIG_ALT_LH_ADDR
81 CONFIG_ALU 81 CONFIG_ALU
82 CONFIG_AM335X_LCD 82 CONFIG_AM335X_LCD
83 CONFIG_AM335X_USB0 83 CONFIG_AM335X_USB0
84 CONFIG_AM335X_USB0_MODE 84 CONFIG_AM335X_USB0_MODE
85 CONFIG_AM335X_USB1 85 CONFIG_AM335X_USB1
86 CONFIG_AM335X_USB1_MODE 86 CONFIG_AM335X_USB1_MODE
87 CONFIG_AM33XX 87 CONFIG_AM33XX
88 CONFIG_AM437X_USB2PHY2_HOST 88 CONFIG_AM437X_USB2PHY2_HOST
89 CONFIG_AM57XX 89 CONFIG_AM57XX
90 CONFIG_AMBAPP_IOAREA 90 CONFIG_AMBAPP_IOAREA
91 CONFIG_AMCC_DEF_ENV 91 CONFIG_AMCC_DEF_ENV
92 CONFIG_AMCC_DEF_ENV_NOR_UPD 92 CONFIG_AMCC_DEF_ENV_NOR_UPD
93 CONFIG_AMCC_DEF_ENV_POWERPC 93 CONFIG_AMCC_DEF_ENV_POWERPC
94 CONFIG_AMCC_DEF_ENV_PPC 94 CONFIG_AMCC_DEF_ENV_PPC
95 CONFIG_AMCC_DEF_ENV_PPC_OLD 95 CONFIG_AMCC_DEF_ENV_PPC_OLD
96 CONFIG_AMCC_DEF_ENV_ROOTPATH 96 CONFIG_AMCC_DEF_ENV_ROOTPATH
97 CONFIG_AMCORE 97 CONFIG_AMCORE
98 CONFIG_AMIGA_PARTITION 98 CONFIG_AMIGA_PARTITION
99 CONFIG_ANDES_PCU 99 CONFIG_ANDES_PCU
100 CONFIG_ANDES_PCU_BASE 100 CONFIG_ANDES_PCU_BASE
101 CONFIG_AP325RXA 101 CONFIG_AP325RXA
102 CONFIG_APBH_DMA 102 CONFIG_APBH_DMA
103 CONFIG_APBH_DMA_BURST 103 CONFIG_APBH_DMA_BURST
104 CONFIG_APBH_DMA_BURST8 104 CONFIG_APBH_DMA_BURST8
105 CONFIG_APER_0_BASE 105 CONFIG_APER_0_BASE
106 CONFIG_APER_1_BASE 106 CONFIG_APER_1_BASE
107 CONFIG_APER_SIZE 107 CONFIG_APER_SIZE
108 CONFIG_API 108 CONFIG_API
109 CONFIG_APUS_FAST_EXCEPT 109 CONFIG_APUS_FAST_EXCEPT
110 CONFIG_AP_SH4A_4A 110 CONFIG_AP_SH4A_4A
111 CONFIG_ARCH_AAED2000 111 CONFIG_ARCH_AAED2000
112 CONFIG_ARCH_ADI_COYOTE 112 CONFIG_ARCH_ADI_COYOTE
113 CONFIG_ARCH_ADPAG101P 113 CONFIG_ARCH_ADPAG101P
114 CONFIG_ARCH_AT91RM9200DK 114 CONFIG_ARCH_AT91RM9200DK
115 CONFIG_ARCH_AUTCPU12 115 CONFIG_ARCH_AUTCPU12
116 CONFIG_ARCH_BAST 116 CONFIG_ARCH_BAST
117 CONFIG_ARCH_CATS 117 CONFIG_ARCH_CATS
118 CONFIG_ARCH_CDB89712 118 CONFIG_ARCH_CDB89712
119 CONFIG_ARCH_CEIVA 119 CONFIG_ARCH_CEIVA
120 CONFIG_ARCH_CLEP7212 120 CONFIG_ARCH_CLEP7212
121 CONFIG_ARCH_CPU_INIT 121 CONFIG_ARCH_CPU_INIT
122 CONFIG_ARCH_CSB226 122 CONFIG_ARCH_CSB226
123 CONFIG_ARCH_DMA_PIO_WORDS 123 CONFIG_ARCH_DMA_PIO_WORDS
124 CONFIG_ARCH_EARLY_INIT_R 124 CONFIG_ARCH_EARLY_INIT_R
125 CONFIG_ARCH_EBSA110 125 CONFIG_ARCH_EBSA110
126 CONFIG_ARCH_EBSA285 126 CONFIG_ARCH_EBSA285
127 CONFIG_ARCH_EDB7211 127 CONFIG_ARCH_EDB7211
128 CONFIG_ARCH_ENP2611 128 CONFIG_ARCH_ENP2611
129 CONFIG_ARCH_FORTUNET 129 CONFIG_ARCH_FORTUNET
130 CONFIG_ARCH_GUMSTIX 130 CONFIG_ARCH_GUMSTIX
131 CONFIG_ARCH_H1940 131 CONFIG_ARCH_H1940
132 CONFIG_ARCH_H5400 132 CONFIG_ARCH_H5400
133 CONFIG_ARCH_H7201 133 CONFIG_ARCH_H7201
134 CONFIG_ARCH_H7202 134 CONFIG_ARCH_H7202
135 CONFIG_ARCH_HAS_ILOG2_U32 135 CONFIG_ARCH_HAS_ILOG2_U32
136 CONFIG_ARCH_HAS_ILOG2_U64 136 CONFIG_ARCH_HAS_ILOG2_U64
137 CONFIG_ARCH_INNOKOM 137 CONFIG_ARCH_INNOKOM
138 CONFIG_ARCH_IQ31244 138 CONFIG_ARCH_IQ31244
139 CONFIG_ARCH_IQ80321 139 CONFIG_ARCH_IQ80321
140 CONFIG_ARCH_IQ80331 140 CONFIG_ARCH_IQ80331
141 CONFIG_ARCH_IXCDP1100 141 CONFIG_ARCH_IXCDP1100
142 CONFIG_ARCH_IXDP2400 142 CONFIG_ARCH_IXDP2400
143 CONFIG_ARCH_IXDP2401 143 CONFIG_ARCH_IXDP2401
144 CONFIG_ARCH_IXDP2800 144 CONFIG_ARCH_IXDP2800
145 CONFIG_ARCH_IXDP2801 145 CONFIG_ARCH_IXDP2801
146 CONFIG_ARCH_IXDP425 146 CONFIG_ARCH_IXDP425
147 CONFIG_ARCH_KIRKWOOD 147 CONFIG_ARCH_KIRKWOOD
148 CONFIG_ARCH_KS8695 148 CONFIG_ARCH_KS8695
149 CONFIG_ARCH_L7200 149 CONFIG_ARCH_L7200
150 CONFIG_ARCH_LUBBOCK 150 CONFIG_ARCH_LUBBOCK
151 CONFIG_ARCH_MAP_SYSMEM 151 CONFIG_ARCH_MAP_SYSMEM
152 CONFIG_ARCH_MISC_INIT 152 CONFIG_ARCH_MISC_INIT
153 CONFIG_ARCH_MX1ADS 153 CONFIG_ARCH_MX1ADS
154 CONFIG_ARCH_NETWINDER 154 CONFIG_ARCH_NETWINDER
155 CONFIG_ARCH_OMAP2 155 CONFIG_ARCH_OMAP2
156 CONFIG_ARCH_OMAP4 156 CONFIG_ARCH_OMAP4
157 CONFIG_ARCH_ORION5X 157 CONFIG_ARCH_ORION5X
158 CONFIG_ARCH_P720T 158 CONFIG_ARCH_P720T
159 CONFIG_ARCH_PERSONAL_SERVER 159 CONFIG_ARCH_PERSONAL_SERVER
160 CONFIG_ARCH_PLEB 160 CONFIG_ARCH_PLEB
161 CONFIG_ARCH_PXA_CERF 161 CONFIG_ARCH_PXA_CERF
162 CONFIG_ARCH_PXA_IDP 162 CONFIG_ARCH_PXA_IDP
163 CONFIG_ARCH_RMOBILE_BOARD_STRING 163 CONFIG_ARCH_RMOBILE_BOARD_STRING
164 CONFIG_ARCH_RMOBILE_EXTRAM_BOOT 164 CONFIG_ARCH_RMOBILE_EXTRAM_BOOT
165 CONFIG_ARCH_RPC 165 CONFIG_ARCH_RPC
166 CONFIG_ARCH_S3C2440 166 CONFIG_ARCH_S3C2440
167 CONFIG_ARCH_SHARK 167 CONFIG_ARCH_SHARK
168 CONFIG_ARCH_SMDK2410 168 CONFIG_ARCH_SMDK2410
169 CONFIG_ARCH_TEGRA 169 CONFIG_ARCH_TEGRA
170 CONFIG_ARCH_USE_BUILTIN_BSWAP 170 CONFIG_ARCH_USE_BUILTIN_BSWAP
171 CONFIG_ARCH_VERSATILE_PB 171 CONFIG_ARCH_VERSATILE_PB
172 CONFIG_ARCH_VIPER 172 CONFIG_ARCH_VIPER
173 CONFIG_ARC_MMU_VER 173 CONFIG_ARC_MMU_VER
174 CONFIG_ARC_SERIAL 174 CONFIG_ARC_SERIAL
175 CONFIG_ARC_UART_BASE 175 CONFIG_ARC_UART_BASE
176 CONFIG_ARIA 176 CONFIG_ARIA
177 CONFIG_ARIA_FPGA 177 CONFIG_ARIA_FPGA
178 CONFIG_ARM926EJS 178 CONFIG_ARM926EJS
179 CONFIG_ARMADA100 179 CONFIG_ARMADA100
180 CONFIG_ARMADA100_FEC 180 CONFIG_ARMADA100_FEC
181 CONFIG_ARMADA100_SPI 181 CONFIG_ARMADA100_SPI
182 CONFIG_ARMADA168 182 CONFIG_ARMADA168
183 CONFIG_ARMADA_39X 183 CONFIG_ARMADA_39X
184 CONFIG_ARMCORTEXA9 184 CONFIG_ARMCORTEXA9
185 CONFIG_ARMV7_PSCI_1_0 185 CONFIG_ARMV7_PSCI_1_0
186 CONFIG_ARMV7_SECURE_BASE 186 CONFIG_ARMV7_SECURE_BASE
187 CONFIG_ARMV7_SECURE_MAX_SIZE 187 CONFIG_ARMV7_SECURE_MAX_SIZE
188 CONFIG_ARMV7_SECURE_RESERVE_SIZE 188 CONFIG_ARMV7_SECURE_RESERVE_SIZE
189 CONFIG_ARMV8_PSCI 189 CONFIG_ARMV8_PSCI
190 CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT 190 CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
191 CONFIG_ARMV8_SWITCH_TO_EL1 191 CONFIG_ARMV8_SWITCH_TO_EL1
192 CONFIG_ARM_ARCH_CP15_ERRATA 192 CONFIG_ARM_ARCH_CP15_ERRATA
193 CONFIG_ARM_ASM_UNIFIED 193 CONFIG_ARM_ASM_UNIFIED
194 CONFIG_ARM_DCC 194 CONFIG_ARM_DCC
195 CONFIG_ARM_ERRATA_430973 195 CONFIG_ARM_ERRATA_430973
196 CONFIG_ARM_ERRATA_454179 196 CONFIG_ARM_ERRATA_454179
197 CONFIG_ARM_ERRATA_621766 197 CONFIG_ARM_ERRATA_621766
198 CONFIG_ARM_ERRATA_716044 198 CONFIG_ARM_ERRATA_716044
199 CONFIG_ARM_ERRATA_742230 199 CONFIG_ARM_ERRATA_742230
200 CONFIG_ARM_ERRATA_743622 200 CONFIG_ARM_ERRATA_743622
201 CONFIG_ARM_ERRATA_751472 201 CONFIG_ARM_ERRATA_751472
202 CONFIG_ARM_ERRATA_761320 202 CONFIG_ARM_ERRATA_761320
203 CONFIG_ARM_ERRATA_773022 203 CONFIG_ARM_ERRATA_773022
204 CONFIG_ARM_ERRATA_774769 204 CONFIG_ARM_ERRATA_774769
205 CONFIG_ARM_ERRATA_794072 205 CONFIG_ARM_ERRATA_794072
206 CONFIG_ARM_ERRATA_798870 206 CONFIG_ARM_ERRATA_798870
207 CONFIG_ARM_ERRATA_801819 207 CONFIG_ARM_ERRATA_801819
208 CONFIG_ARM_ERRATA_826974 208 CONFIG_ARM_ERRATA_826974
209 CONFIG_ARM_ERRATA_828024 209 CONFIG_ARM_ERRATA_828024
210 CONFIG_ARM_ERRATA_829520 210 CONFIG_ARM_ERRATA_829520
211 CONFIG_ARM_ERRATA_833069 211 CONFIG_ARM_ERRATA_833069
212 CONFIG_ARM_ERRATA_833471 212 CONFIG_ARM_ERRATA_833471
213 CONFIG_ARM_FREQ 213 CONFIG_ARM_FREQ
214 CONFIG_ARM_GIC_BASE_ADDRESS 214 CONFIG_ARM_GIC_BASE_ADDRESS
215 CONFIG_ARM_PL180_MMCI 215 CONFIG_ARM_PL180_MMCI
216 CONFIG_ARM_PL180_MMCI_BASE 216 CONFIG_ARM_PL180_MMCI_BASE
217 CONFIG_ARM_PL180_MMCI_CLOCK_FREQ 217 CONFIG_ARM_PL180_MMCI_CLOCK_FREQ
218 CONFIG_ARM_THUMB 218 CONFIG_ARM_THUMB
219 CONFIG_ARP_TIMEOUT 219 CONFIG_ARP_TIMEOUT
220 CONFIG_AS3722_POWER 220 CONFIG_AS3722_POWER
221 CONFIG_ASTRO5373L 221 CONFIG_ASTRO5373L
222 CONFIG_ASTRO_COFDMDUOS2 222 CONFIG_ASTRO_COFDMDUOS2
223 CONFIG_ASTRO_TWIN7S2 223 CONFIG_ASTRO_TWIN7S2
224 CONFIG_ASTRO_V512 224 CONFIG_ASTRO_V512
225 CONFIG_ASTRO_V532 225 CONFIG_ASTRO_V532
226 CONFIG_ASTRO_V912 226 CONFIG_ASTRO_V912
227 CONFIG_AT32AP 227 CONFIG_AT32AP
228 CONFIG_AT32AP7000 228 CONFIG_AT32AP7000
229 CONFIG_AT32UC3A0xxx 229 CONFIG_AT32UC3A0xxx
230 CONFIG_AT91C_PQFP_UHPBUG 230 CONFIG_AT91C_PQFP_UHPBUG
231 CONFIG_AT91FAMILY 231 CONFIG_AT91FAMILY
232 CONFIG_AT91RESET_EXTRST 232 CONFIG_AT91RESET_EXTRST
233 CONFIG_AT91RM9200 233 CONFIG_AT91RM9200
234 CONFIG_AT91RM9200EK 234 CONFIG_AT91RM9200EK
235 CONFIG_AT91SAM9260 235 CONFIG_AT91SAM9260
236 CONFIG_AT91SAM9260EK 236 CONFIG_AT91SAM9260EK
237 CONFIG_AT91SAM9261 237 CONFIG_AT91SAM9261
238 CONFIG_AT91SAM9261EK 238 CONFIG_AT91SAM9261EK
239 CONFIG_AT91SAM9263 239 CONFIG_AT91SAM9263
240 CONFIG_AT91SAM9263EK 240 CONFIG_AT91SAM9263EK
241 CONFIG_AT91SAM9G10 241 CONFIG_AT91SAM9G10
242 CONFIG_AT91SAM9G10EK 242 CONFIG_AT91SAM9G10EK
243 CONFIG_AT91SAM9G20 243 CONFIG_AT91SAM9G20
244 CONFIG_AT91SAM9G20EK 244 CONFIG_AT91SAM9G20EK
245 CONFIG_AT91SAM9G20EK_2MMC 245 CONFIG_AT91SAM9G20EK_2MMC
246 CONFIG_AT91SAM9G45 246 CONFIG_AT91SAM9G45
247 CONFIG_AT91SAM9G45EKES 247 CONFIG_AT91SAM9G45EKES
248 CONFIG_AT91SAM9G45_LCD_BASE 248 CONFIG_AT91SAM9G45_LCD_BASE
249 CONFIG_AT91SAM9M10G45 249 CONFIG_AT91SAM9M10G45
250 CONFIG_AT91SAM9M10G45EK 250 CONFIG_AT91SAM9M10G45EK
251 CONFIG_AT91SAM9N12 251 CONFIG_AT91SAM9N12
252 CONFIG_AT91SAM9RL 252 CONFIG_AT91SAM9RL
253 CONFIG_AT91SAM9RLEK 253 CONFIG_AT91SAM9RLEK
254 CONFIG_AT91SAM9X5 254 CONFIG_AT91SAM9X5
255 CONFIG_AT91SAM9X5EK 255 CONFIG_AT91SAM9X5EK
256 CONFIG_AT91SAM9XE 256 CONFIG_AT91SAM9XE
257 CONFIG_AT91SAM9_WATCHDOG 257 CONFIG_AT91SAM9_WATCHDOG
258 CONFIG_AT91_CAN 258 CONFIG_AT91_CAN
259 CONFIG_AT91_EFLASH 259 CONFIG_AT91_EFLASH
260 CONFIG_AT91_GPIO 260 CONFIG_AT91_GPIO
261 CONFIG_AT91_GPIO_PULLUP 261 CONFIG_AT91_GPIO_PULLUP
262 CONFIG_AT91_HW_WDT_TIMEOUT 262 CONFIG_AT91_HW_WDT_TIMEOUT
263 CONFIG_AT91_LED 263 CONFIG_AT91_LED
264 CONFIG_AT91_WANTS_COMMON_PHY 264 CONFIG_AT91_WANTS_COMMON_PHY
265 CONFIG_ATAPI 265 CONFIG_ATAPI
266 CONFIG_ATA_ACPI 266 CONFIG_ATA_ACPI
267 CONFIG_ATI 267 CONFIG_ATI
268 CONFIG_ATI_RADEON_FB 268 CONFIG_ATI_RADEON_FB
269 CONFIG_ATM 269 CONFIG_ATM
270 CONFIG_ATMEL_DATAFLASH_SPI 270 CONFIG_ATMEL_DATAFLASH_SPI
271 CONFIG_ATMEL_HLCD 271 CONFIG_ATMEL_HLCD
272 CONFIG_ATMEL_LCD 272 CONFIG_ATMEL_LCD
273 CONFIG_ATMEL_LCD_BGR555 273 CONFIG_ATMEL_LCD_BGR555
274 CONFIG_ATMEL_LCD_RGB565 274 CONFIG_ATMEL_LCD_RGB565
275 CONFIG_ATMEL_LEGACY 275 CONFIG_ATMEL_LEGACY
276 CONFIG_ATMEL_MCI_8BIT 276 CONFIG_ATMEL_MCI_8BIT
277 CONFIG_ATMEL_NAND_HWECC 277 CONFIG_ATMEL_NAND_HWECC
278 CONFIG_ATMEL_NAND_HW_PMECC 278 CONFIG_ATMEL_NAND_HW_PMECC
279 CONFIG_ATMEL_SDHCI0 279 CONFIG_ATMEL_SDHCI0
280 CONFIG_ATMEL_SDHCI1 280 CONFIG_ATMEL_SDHCI1
281 CONFIG_ATMEL_SPI 281 CONFIG_ATMEL_SPI
282 CONFIG_ATMEL_SPI0 282 CONFIG_ATMEL_SPI0
283 CONFIG_ATMEL_USART 283 CONFIG_ATMEL_USART
284 CONFIG_ATNGW100 284 CONFIG_ATNGW100
285 CONFIG_ATNGW100MKII 285 CONFIG_ATNGW100MKII
286 CONFIG_ATSTK1000 286 CONFIG_ATSTK1000
287 CONFIG_ATSTK1000_16MB_SDRAM 287 CONFIG_ATSTK1000_16MB_SDRAM
288 CONFIG_ATSTK1002 288 CONFIG_ATSTK1002
289 CONFIG_AT_TRANS 289 CONFIG_AT_TRANS
290 CONFIG_AUTOCALIB 290 CONFIG_AUTOCALIB
291 CONFIG_AUTONEG_TIMEOUT 291 CONFIG_AUTONEG_TIMEOUT
292 CONFIG_AUTO_COMPLETE 292 CONFIG_AUTO_COMPLETE
293 CONFIG_AUTO_ZRELADDR 293 CONFIG_AUTO_ZRELADDR
294 CONFIG_B4860QDS 294 CONFIG_B4860QDS
295 CONFIG_BACKSIDE_L2_CACHE 295 CONFIG_BACKSIDE_L2_CACHE
296 CONFIG_BAMBOO 296 CONFIG_BAMBOO
297 CONFIG_BAMBOO_NAND 297 CONFIG_BAMBOO_NAND
298 CONFIG_BARIX_IPAM390 298 CONFIG_BARIX_IPAM390
299 CONFIG_BAT_CMD 299 CONFIG_BAT_CMD
300 CONFIG_BAT_PAIR 300 CONFIG_BAT_PAIR
301 CONFIG_BAT_RW 301 CONFIG_BAT_RW
302 CONFIG_BAUDRATE 302 CONFIG_BAUDRATE
303 CONFIG_BCH 303 CONFIG_BCH
304 CONFIG_BCH_CONST_M 304 CONFIG_BCH_CONST_M
305 CONFIG_BCH_CONST_PARAMS 305 CONFIG_BCH_CONST_PARAMS
306 CONFIG_BCH_CONST_T 306 CONFIG_BCH_CONST_T
307 CONFIG_BCM2835_GPIO 307 CONFIG_BCM2835_GPIO
308 CONFIG_BCM2835_SDHCI 308 CONFIG_BCM2835_SDHCI
309 CONFIG_BCM283X_MU_SERIAL 309 CONFIG_BCM283X_MU_SERIAL
310 CONFIG_BCM_SF2_ETH 310 CONFIG_BCM_SF2_ETH
311 CONFIG_BCM_SF2_ETH_DEFAULT_PORT 311 CONFIG_BCM_SF2_ETH_DEFAULT_PORT
312 CONFIG_BCM_SF2_ETH_GMAC 312 CONFIG_BCM_SF2_ETH_GMAC
313 CONFIG_BD_NUM_CPUS 313 CONFIG_BD_NUM_CPUS
314 CONFIG_BF506_UART0_PORTF 314 CONFIG_BF506_UART0_PORTF
315 CONFIG_BF506_UART1_PORTG 315 CONFIG_BF506_UART1_PORTG
316 CONFIG_BF50x 316 CONFIG_BF50x
317 CONFIG_BF51x 317 CONFIG_BF51x
318 CONFIG_BF527_EZKIT_REV_2_1 318 CONFIG_BF527_EZKIT_REV_2_1
319 CONFIG_BF52x 319 CONFIG_BF52x
320 CONFIG_BF548_ATAPI_ALTERNATIVE_PORT 320 CONFIG_BF548_ATAPI_ALTERNATIVE_PORT
321 CONFIG_BF54x 321 CONFIG_BF54x
322 CONFIG_BF60x 322 CONFIG_BF60x
323 CONFIG_BFIN_ATAPI_BASE_ADDR 323 CONFIG_BFIN_ATAPI_BASE_ADDR
324 CONFIG_BFIN_ATA_MODE 324 CONFIG_BFIN_ATA_MODE
325 CONFIG_BFIN_BOARD_VERSION_1_0 325 CONFIG_BFIN_BOARD_VERSION_1_0
326 CONFIG_BFIN_BOOTROM_USES_EVT1 326 CONFIG_BFIN_BOOTROM_USES_EVT1
327 CONFIG_BFIN_BOOT_MODE 327 CONFIG_BFIN_BOOT_MODE
328 CONFIG_BFIN_CF_IDE 328 CONFIG_BFIN_CF_IDE
329 CONFIG_BFIN_CPU 329 CONFIG_BFIN_CPU
330 CONFIG_BFIN_GET_DCLK_M 330 CONFIG_BFIN_GET_DCLK_M
331 CONFIG_BFIN_GPIO_TRACK 331 CONFIG_BFIN_GPIO_TRACK
332 CONFIG_BFIN_HDD_IDE 332 CONFIG_BFIN_HDD_IDE
333 CONFIG_BFIN_IDE 333 CONFIG_BFIN_IDE
334 CONFIG_BFIN_INS_LOWOVERHEAD 334 CONFIG_BFIN_INS_LOWOVERHEAD
335 CONFIG_BFIN_LINKPORT 335 CONFIG_BFIN_LINKPORT
336 CONFIG_BFIN_MAC 336 CONFIG_BFIN_MAC
337 CONFIG_BFIN_MAC_PINS 337 CONFIG_BFIN_MAC_PINS
338 CONFIG_BFIN_NFC 338 CONFIG_BFIN_NFC
339 CONFIG_BFIN_NFC_BOOTROM_ECC 339 CONFIG_BFIN_NFC_BOOTROM_ECC
340 CONFIG_BFIN_NFC_CTL_VAL 340 CONFIG_BFIN_NFC_CTL_VAL
341 CONFIG_BFIN_NFC_NO_HW_ECC 341 CONFIG_BFIN_NFC_NO_HW_ECC
342 CONFIG_BFIN_SCRATCH_REG 342 CONFIG_BFIN_SCRATCH_REG
343 CONFIG_BFIN_SDH 343 CONFIG_BFIN_SDH
344 CONFIG_BFIN_SERIAL 344 CONFIG_BFIN_SERIAL
345 CONFIG_BFIN_SOFT_SWITCH 345 CONFIG_BFIN_SOFT_SWITCH
346 CONFIG_BFIN_SPI 346 CONFIG_BFIN_SPI
347 CONFIG_BFIN_SPI6XX 347 CONFIG_BFIN_SPI6XX
348 CONFIG_BFIN_SPI_GPIO_CS 348 CONFIG_BFIN_SPI_GPIO_CS
349 CONFIG_BFIN_SPI_IDLE_VAL 349 CONFIG_BFIN_SPI_IDLE_VAL
350 CONFIG_BFIN_SPI_IMG_SIZE 350 CONFIG_BFIN_SPI_IMG_SIZE
351 CONFIG_BFIN_TRUE_IDE 351 CONFIG_BFIN_TRUE_IDE
352 CONFIG_BFIN_WATCHDOG 352 CONFIG_BFIN_WATCHDOG
353 CONFIG_BIOSEMU 353 CONFIG_BIOSEMU
354 CONFIG_BITBANGMII 354 CONFIG_BITBANGMII
355 CONFIG_BITBANGMII_MULTI 355 CONFIG_BITBANGMII_MULTI
356 CONFIG_BKUP_FLASH 356 CONFIG_BKUP_FLASH
357 CONFIG_BL1_OFFSET 357 CONFIG_BL1_OFFSET
358 CONFIG_BL1_SIZE 358 CONFIG_BL1_SIZE
359 CONFIG_BL2_OFFSET 359 CONFIG_BL2_OFFSET
360 CONFIG_BL2_SIZE 360 CONFIG_BL2_SIZE
361 CONFIG_BMP_16BPP 361 CONFIG_BMP_16BPP
362 CONFIG_BMP_24BMP 362 CONFIG_BMP_24BMP
363 CONFIG_BMP_24BPP 363 CONFIG_BMP_24BPP
364 CONFIG_BMP_32BPP 364 CONFIG_BMP_32BPP
365 CONFIG_BOARDDIR 365 CONFIG_BOARDDIR
366 CONFIG_BOARDINFO 366 CONFIG_BOARDINFO
367 CONFIG_BOARDNAME 367 CONFIG_BOARDNAME
368 CONFIG_BOARDNAME_LOCAL 368 CONFIG_BOARDNAME_LOCAL
369 CONFIG_BOARD_AXM 369 CONFIG_BOARD_AXM
370 CONFIG_BOARD_BOOTCMD 370 CONFIG_BOARD_BOOTCMD
371 CONFIG_BOARD_COMMON 371 CONFIG_BOARD_COMMON
372 CONFIG_BOARD_EARLY_INIT_F 372 CONFIG_BOARD_EARLY_INIT_F
373 CONFIG_BOARD_EARLY_INIT_R 373 CONFIG_BOARD_EARLY_INIT_R
374 CONFIG_BOARD_ECC_SUPPORT 374 CONFIG_BOARD_ECC_SUPPORT
375 CONFIG_BOARD_EMAC_COUNT 375 CONFIG_BOARD_EMAC_COUNT
376 CONFIG_BOARD_H2200 376 CONFIG_BOARD_H2200
377 CONFIG_BOARD_IS_OPENRD_BASE 377 CONFIG_BOARD_IS_OPENRD_BASE
378 CONFIG_BOARD_IS_OPENRD_CLIENT 378 CONFIG_BOARD_IS_OPENRD_CLIENT
379 CONFIG_BOARD_IS_OPENRD_ULTIMATE 379 CONFIG_BOARD_IS_OPENRD_ULTIMATE
380 CONFIG_BOARD_LATE_INIT 380 CONFIG_BOARD_LATE_INIT
381 CONFIG_BOARD_MEM_LIMIT 381 CONFIG_BOARD_MEM_LIMIT
382 CONFIG_BOARD_NAME 382 CONFIG_BOARD_NAME
383 CONFIG_BOARD_POSTCLK_INIT 383 CONFIG_BOARD_POSTCLK_INIT
384 CONFIG_BOARD_RESET 384 CONFIG_BOARD_RESET
385 CONFIG_BOARD_REVISION_TAG 385 CONFIG_BOARD_REVISION_TAG
386 CONFIG_BOARD_SIZE_LIMIT 386 CONFIG_BOARD_SIZE_LIMIT
387 CONFIG_BOARD_SPECIFIC_LED 387 CONFIG_BOARD_SPECIFIC_LED
388 CONFIG_BOARD_TAURUS 388 CONFIG_BOARD_TAURUS
389 CONFIG_BOARD_TYPES 389 CONFIG_BOARD_TYPES
390 CONFIG_BOOGER 390 CONFIG_BOOGER
391 CONFIG_BOOKE 391 CONFIG_BOOKE
392 CONFIG_BOOM 392 CONFIG_BOOM
393 CONFIG_BOOTARGS 393 CONFIG_BOOTARGS
394 CONFIG_BOOTARGS_AXM 394 CONFIG_BOOTARGS_AXM
395 CONFIG_BOOTARGS_ROOT 395 CONFIG_BOOTARGS_ROOT
396 CONFIG_BOOTARGS_TAURUS 396 CONFIG_BOOTARGS_TAURUS
397 CONFIG_BOOTARGS_VIDEO 397 CONFIG_BOOTARGS_VIDEO
398 CONFIG_BOOTBLOCK 398 CONFIG_BOOTBLOCK
399 CONFIG_BOOTCOMMAND 399 CONFIG_BOOTCOMMAND
400 CONFIG_BOOTCOUNT_ALEN 400 CONFIG_BOOTCOUNT_ALEN
401 CONFIG_BOOTCOUNT_AM33XX 401 CONFIG_BOOTCOUNT_AM33XX
402 CONFIG_BOOTCOUNT_ENV 402 CONFIG_BOOTCOUNT_ENV
403 CONFIG_BOOTCOUNT_I2C 403 CONFIG_BOOTCOUNT_I2C
404 CONFIG_BOOTCOUNT_LIMIT 404 CONFIG_BOOTCOUNT_LIMIT
405 CONFIG_BOOTCOUNT_RAM 405 CONFIG_BOOTCOUNT_RAM
406 CONFIG_BOOTFILE 406 CONFIG_BOOTFILE
407 CONFIG_BOOTMAPSZ 407 CONFIG_BOOTMAPSZ
408 CONFIG_BOOTMODE 408 CONFIG_BOOTMODE
409 CONFIG_BOOTM_LINUX 409 CONFIG_BOOTM_LINUX
410 CONFIG_BOOTM_NETBSD 410 CONFIG_BOOTM_NETBSD
411 CONFIG_BOOTM_OPENRTOS 411 CONFIG_BOOTM_OPENRTOS
412 CONFIG_BOOTM_OSE 412 CONFIG_BOOTM_OSE
413 CONFIG_BOOTM_PLAN9 413 CONFIG_BOOTM_PLAN9
414 CONFIG_BOOTM_RTEMS 414 CONFIG_BOOTM_RTEMS
415 CONFIG_BOOTM_VXWORKS 415 CONFIG_BOOTM_VXWORKS
416 CONFIG_BOOTP_ 416 CONFIG_BOOTP_
417 CONFIG_BOOTP_BOOTFILE 417 CONFIG_BOOTP_BOOTFILE
418 CONFIG_BOOTP_BOOTFILESIZE 418 CONFIG_BOOTP_BOOTFILESIZE
419 CONFIG_BOOTP_BOOTPATH 419 CONFIG_BOOTP_BOOTPATH
420 CONFIG_BOOTP_DEFAULT 420 CONFIG_BOOTP_DEFAULT
421 CONFIG_BOOTP_DHCP_REQUEST_DELAY 421 CONFIG_BOOTP_DHCP_REQUEST_DELAY
422 CONFIG_BOOTP_DNS 422 CONFIG_BOOTP_DNS
423 CONFIG_BOOTP_DNS2 423 CONFIG_BOOTP_DNS2
424 CONFIG_BOOTP_GATEWAY 424 CONFIG_BOOTP_GATEWAY
425 CONFIG_BOOTP_HOSTNAME 425 CONFIG_BOOTP_HOSTNAME
426 CONFIG_BOOTP_ID_CACHE_SIZE 426 CONFIG_BOOTP_ID_CACHE_SIZE
427 CONFIG_BOOTP_MAY_FAIL 427 CONFIG_BOOTP_MAY_FAIL
428 CONFIG_BOOTP_NISDOMAIN 428 CONFIG_BOOTP_NISDOMAIN
429 CONFIG_BOOTP_NTPSERVER 429 CONFIG_BOOTP_NTPSERVER
430 CONFIG_BOOTP_PXE 430 CONFIG_BOOTP_PXE
431 CONFIG_BOOTP_RANDOM_DELAY 431 CONFIG_BOOTP_RANDOM_DELAY
432 CONFIG_BOOTP_SEND_HOSTNAME 432 CONFIG_BOOTP_SEND_HOSTNAME
433 CONFIG_BOOTP_SERVERIP 433 CONFIG_BOOTP_SERVERIP
434 CONFIG_BOOTP_SUBNETMASK 434 CONFIG_BOOTP_SUBNETMASK
435 CONFIG_BOOTP_TIMEOFFSET 435 CONFIG_BOOTP_TIMEOFFSET
436 CONFIG_BOOTP_VENDOREX 436 CONFIG_BOOTP_VENDOREX
437 CONFIG_BOOTROM_ERR_REG 437 CONFIG_BOOTROM_ERR_REG
438 CONFIG_BOOTSCRIPT_ADDR 438 CONFIG_BOOTSCRIPT_ADDR
439 CONFIG_BOOTSCRIPT_COPY_RAM 439 CONFIG_BOOTSCRIPT_COPY_RAM
440 CONFIG_BOOTSCRIPT_HDR_ADDR 440 CONFIG_BOOTSCRIPT_HDR_ADDR
441 CONFIG_BOOTSCRIPT_KEY_HASH 441 CONFIG_BOOTSCRIPT_KEY_HASH
442 CONFIG_BOOT_DIR 442 CONFIG_BOOT_DIR
443 CONFIG_BOOT_FROM_XMD 443 CONFIG_BOOT_FROM_XMD
444 CONFIG_BOOT_MODE_BIT 444 CONFIG_BOOT_MODE_BIT
445 CONFIG_BOOT_NAND 445 CONFIG_BOOT_NAND
446 CONFIG_BOOT_ONENAND 446 CONFIG_BOOT_ONENAND
447 CONFIG_BOOT_OS_NET 447 CONFIG_BOOT_OS_NET
448 CONFIG_BOOT_PARAMS_ADDR 448 CONFIG_BOOT_PARAMS_ADDR
449 CONFIG_BOOT_PCI 449 CONFIG_BOOT_PCI
450 CONFIG_BOOT_RETRY_MIN 450 CONFIG_BOOT_RETRY_MIN
451 CONFIG_BOOT_RETRY_TIME 451 CONFIG_BOOT_RETRY_TIME
452 CONFIG_BOUNCE_BUFFER 452 CONFIG_BOUNCE_BUFFER
453 CONFIG_BPTR_VIRT_ADDR 453 CONFIG_BPTR_VIRT_ADDR
454 CONFIG_BSC9131 454 CONFIG_BSC9131
455 CONFIG_BSC9131RDB 455 CONFIG_BSC9131RDB
456 CONFIG_BSC9132 456 CONFIG_BSC9132
457 CONFIG_BSC9132QDS 457 CONFIG_BSC9132QDS
458 CONFIG_BSEIP 458 CONFIG_BSEIP
459 CONFIG_BS_ADDR_DEVICE 459 CONFIG_BS_ADDR_DEVICE
460 CONFIG_BS_ADDR_RAM 460 CONFIG_BS_ADDR_RAM
461 CONFIG_BS_COPY_CMD 461 CONFIG_BS_COPY_CMD
462 CONFIG_BS_COPY_ENV 462 CONFIG_BS_COPY_ENV
463 CONFIG_BS_HDR_ADDR_DEVICE 463 CONFIG_BS_HDR_ADDR_DEVICE
464 CONFIG_BS_HDR_ADDR_RAM 464 CONFIG_BS_HDR_ADDR_RAM
465 CONFIG_BS_HDR_SIZE 465 CONFIG_BS_HDR_SIZE
466 CONFIG_BS_SIZE 466 CONFIG_BS_SIZE
467 CONFIG_BTB 467 CONFIG_BTB
468 CONFIG_BUBINGA 468 CONFIG_BUBINGA
469 CONFIG_BUFNO_AUTO_INCR_BIT 469 CONFIG_BUFNO_AUTO_INCR_BIT
470 CONFIG_BUILD_ENVCRC 470 CONFIG_BUILD_ENVCRC
471 CONFIG_BUILD_TARGET 471 CONFIG_BUILD_TARGET
472 CONFIG_BUS_WIDTH 472 CONFIG_BUS_WIDTH
473 CONFIG_BZIP2 473 CONFIG_BZIP2
474 CONFIG_C29XPCIE 474 CONFIG_C29XPCIE
475 CONFIG_CACHELINE_ALIGNED_L1 475 CONFIG_CACHELINE_ALIGNED_L1
476 CONFIG_CADDY2 476 CONFIG_CADDY2
477 CONFIG_CALXEDA_XGMAC 477 CONFIG_CALXEDA_XGMAC
478 CONFIG_CAM5200 478 CONFIG_CAM5200
479 CONFIG_CAM5200_NIOSFLASH 479 CONFIG_CAM5200_NIOSFLASH
480 CONFIG_CANMB 480 CONFIG_CANMB
481 CONFIG_CAN_DRIVER 481 CONFIG_CAN_DRIVER
482 CONFIG_CCLK_ACT_DIV 482 CONFIG_CCLK_ACT_DIV
483 CONFIG_CCLK_DIV 483 CONFIG_CCLK_DIV
484 CONFIG_CCLK_DIV_not_defined_properly 484 CONFIG_CCLK_DIV_not_defined_properly
485 CONFIG_CCLK_HZ 485 CONFIG_CCLK_HZ
486 CONFIG_CDP_APPLIANCE_VLAN_TYPE 486 CONFIG_CDP_APPLIANCE_VLAN_TYPE
487 CONFIG_CDP_CAPABILITIES 487 CONFIG_CDP_CAPABILITIES
488 CONFIG_CDP_DEVICE_ID 488 CONFIG_CDP_DEVICE_ID
489 CONFIG_CDP_DEVICE_ID_PREFIX 489 CONFIG_CDP_DEVICE_ID_PREFIX
490 CONFIG_CDP_PLATFORM 490 CONFIG_CDP_PLATFORM
491 CONFIG_CDP_PORT_ID 491 CONFIG_CDP_PORT_ID
492 CONFIG_CDP_POWER_CONSUMPTION 492 CONFIG_CDP_POWER_CONSUMPTION
493 CONFIG_CDP_TRIGGER 493 CONFIG_CDP_TRIGGER
494 CONFIG_CDP_VERSION 494 CONFIG_CDP_VERSION
495 CONFIG_CFG_DATA_SECTOR 495 CONFIG_CFG_DATA_SECTOR
496 CONFIG_CFG_FAT 496 CONFIG_CFG_FAT
497 CONFIG_CFG_USB 497 CONFIG_CFG_USB
498 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS 498 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS
499 CONFIG_CF_ATASEL_DIS 499 CONFIG_CF_ATASEL_DIS
500 CONFIG_CF_ATASEL_ENA 500 CONFIG_CF_ATASEL_ENA
501 CONFIG_CF_DSPI 501 CONFIG_CF_DSPI
502 CONFIG_CF_QSPI 502 CONFIG_CF_QSPI
503 CONFIG_CF_SBF 503 CONFIG_CF_SBF
504 CONFIG_CF_SPI 504 CONFIG_CF_SPI
505 CONFIG_CF_V2 505 CONFIG_CF_V2
506 CONFIG_CF_V3 506 CONFIG_CF_V3
507 CONFIG_CF_V4 507 CONFIG_CF_V4
508 CONFIG_CF_V4E 508 CONFIG_CF_V4E
509 CONFIG_CGU_CTL_VAL 509 CONFIG_CGU_CTL_VAL
510 CONFIG_CGU_DIV_VAL 510 CONFIG_CGU_DIV_VAL
511 CONFIG_CHAIN_BOOT_CMD 511 CONFIG_CHAIN_BOOT_CMD
512 CONFIG_CHAIN_OF_TRUST 512 CONFIG_CHAIN_OF_TRUST
513 CONFIG_CHARON 513 CONFIG_CHARON
514 CONFIG_CHIP_SELECTS_PER_CTRL 514 CONFIG_CHIP_SELECTS_PER_CTRL
515 CONFIG_CHIP_SELECT_QUAD_CAPABLE 515 CONFIG_CHIP_SELECT_QUAD_CAPABLE
516 CONFIG_CHROMEOS_EXTRA_ENV_SETTINGS 516 CONFIG_CHROMEOS_EXTRA_ENV_SETTINGS
517 CONFIG_CIS8201_PHY 517 CONFIG_CIS8201_PHY
518 CONFIG_CI_UDC_HAS_HOSTPC 518 CONFIG_CI_UDC_HAS_HOSTPC
519 CONFIG_CLK0_DIV 519 CONFIG_CLK0_DIV
520 CONFIG_CLK0_EN 520 CONFIG_CLK0_EN
521 CONFIG_CLKIN_HALF 521 CONFIG_CLKIN_HALF
522 CONFIG_CLKIN_HZ 522 CONFIG_CLKIN_HZ
523 CONFIG_CLK_1000_200_200 523 CONFIG_CLK_1000_200_200
524 CONFIG_CLK_1000_330_165 524 CONFIG_CLK_1000_330_165
525 CONFIG_CLK_1000_400_200 525 CONFIG_CLK_1000_400_200
526 CONFIG_CLK_800_330_165 526 CONFIG_CLK_800_330_165
527 CONFIG_CLK_DEBUG 527 CONFIG_CLK_DEBUG
528 CONFIG_CLOCKS 528 CONFIG_CLOCKS
529 CONFIG_CLOCKS_IN_MHZ 529 CONFIG_CLOCKS_IN_MHZ
530 CONFIG_CLOCK_SYNTHESIZER 530 CONFIG_CLOCK_SYNTHESIZER
531 CONFIG_CM5200 531 CONFIG_CM5200
532 CONFIG_CM922T_XA10 532 CONFIG_CM922T_XA10
533 CONFIG_CMDLINE_EDITING 533 CONFIG_CMDLINE_EDITING
534 CONFIG_CMDLINE_PS_SUPPORT 534 CONFIG_CMDLINE_PS_SUPPORT
535 CONFIG_CMDLINE_TAG 535 CONFIG_CMDLINE_TAG
536 CONFIG_CMD_AES 536 CONFIG_CMD_AES
537 CONFIG_CMD_ASKEN 537 CONFIG_CMD_ASKEN
538 CONFIG_CMD_BAT 538 CONFIG_CMD_BAT
539 CONFIG_CMD_BEDBUG 539 CONFIG_CMD_BEDBUG
540 CONFIG_CMD_BLOB 540 CONFIG_CMD_BLOB
541 CONFIG_CMD_BMODE 541 CONFIG_CMD_BMODE
542 CONFIG_CMD_BMP 542 CONFIG_CMD_BMP
543 CONFIG_CMD_BOOTLDR 543 CONFIG_CMD_BOOTLDR
544 CONFIG_CMD_BOOTMENU 544 CONFIG_CMD_BOOTMENU
545 CONFIG_CMD_BSP 545 CONFIG_CMD_BSP
546 CONFIG_CMD_CBFS 546 CONFIG_CMD_CBFS
547 CONFIG_CMD_CHIP_CONFIG 547 CONFIG_CMD_CHIP_CONFIG
548 CONFIG_CMD_CLEAR 548 CONFIG_CMD_CLEAR
549 CONFIG_CMD_CLK 549 CONFIG_CMD_CLK
550 CONFIG_CMD_CPLBINFO 550 CONFIG_CMD_CPLBINFO
551 CONFIG_CMD_CRAMFS 551 CONFIG_CMD_CRAMFS
552 CONFIG_CMD_DATE 552 CONFIG_CMD_DATE
553 CONFIG_CMD_DEFAULTENV_VARS 553 CONFIG_CMD_DEFAULTENV_VARS
554 CONFIG_CMD_DEKBLOB 554 CONFIG_CMD_DEKBLOB
555 CONFIG_CMD_DFL 555 CONFIG_CMD_DFL
556 CONFIG_CMD_DIAG 556 CONFIG_CMD_DIAG
557 CONFIG_CMD_DISPLAY 557 CONFIG_CMD_DISPLAY
558 CONFIG_CMD_DOC 558 CONFIG_CMD_DOC
559 CONFIG_CMD_DS4510 559 CONFIG_CMD_DS4510
560 CONFIG_CMD_DS4510_INFO 560 CONFIG_CMD_DS4510_INFO
561 CONFIG_CMD_DS4510_MEM 561 CONFIG_CMD_DS4510_MEM
562 CONFIG_CMD_DS4510_RST 562 CONFIG_CMD_DS4510_RST
563 CONFIG_CMD_DTT 563 CONFIG_CMD_DTT
564 CONFIG_CMD_ECCTEST 564 CONFIG_CMD_ECCTEST
565 CONFIG_CMD_EECONFIG 565 CONFIG_CMD_EECONFIG
566 CONFIG_CMD_EEPROM 566 CONFIG_CMD_EEPROM
567 CONFIG_CMD_EEPROM_LAYOUT 567 CONFIG_CMD_EEPROM_LAYOUT
568 CONFIG_CMD_ENTERRCM 568 CONFIG_CMD_ENTERRCM
569 CONFIG_CMD_ENV 569 CONFIG_CMD_ENV
570 CONFIG_CMD_ENV_CALLBACK 570 CONFIG_CMD_ENV_CALLBACK
571 CONFIG_CMD_ENV_FLAGS 571 CONFIG_CMD_ENV_FLAGS
572 CONFIG_CMD_ERRATA 572 CONFIG_CMD_ERRATA
573 CONFIG_CMD_ESBC_VALIDATE 573 CONFIG_CMD_ESBC_VALIDATE
574 CONFIG_CMD_ETHSW 574 CONFIG_CMD_ETHSW
575 CONFIG_CMD_FDC 575 CONFIG_CMD_FDC
576 CONFIG_CMD_FDT_MAX_DUMP 576 CONFIG_CMD_FDT_MAX_DUMP
577 CONFIG_CMD_FPGAD 577 CONFIG_CMD_FPGAD
578 CONFIG_CMD_FPGA_LOADBP 578 CONFIG_CMD_FPGA_LOADBP
579 CONFIG_CMD_FPGA_LOADFS 579 CONFIG_CMD_FPGA_LOADFS
580 CONFIG_CMD_FPGA_LOADMK 580 CONFIG_CMD_FPGA_LOADMK
581 CONFIG_CMD_FPGA_LOADP 581 CONFIG_CMD_FPGA_LOADP
582 CONFIG_CMD_FUSE 582 CONFIG_CMD_FUSE
583 CONFIG_CMD_GETTIME 583 CONFIG_CMD_GETTIME
584 CONFIG_CMD_GPT 584 CONFIG_CMD_GPT
585 CONFIG_CMD_GSC 585 CONFIG_CMD_GSC
586 CONFIG_CMD_HASH 586 CONFIG_CMD_HASH
587 CONFIG_CMD_HD44760 587 CONFIG_CMD_HD44760
588 CONFIG_CMD_HD44780 588 CONFIG_CMD_HD44780
589 CONFIG_CMD_HDMIDETECT 589 CONFIG_CMD_HDMIDETECT
590 CONFIG_CMD_IDE 590 CONFIG_CMD_IDE
591 CONFIG_CMD_IMMAP 591 CONFIG_CMD_IMMAP
592 CONFIG_CMD_IMXOTP 592 CONFIG_CMD_IMXOTP
593 CONFIG_CMD_IMX_FUSE 593 CONFIG_CMD_IMX_FUSE
594 CONFIG_CMD_IO 594 CONFIG_CMD_IO
595 CONFIG_CMD_IOLOOP 595 CONFIG_CMD_IOLOOP
596 CONFIG_CMD_IOTRACE 596 CONFIG_CMD_IOTRACE
597 CONFIG_CMD_IRQ 597 CONFIG_CMD_IRQ
598 CONFIG_CMD_JFFS2 598 CONFIG_CMD_JFFS2
599 CONFIG_CMD_KGDB 599 CONFIG_CMD_KGDB
600 CONFIG_CMD_LDRINFO 600 CONFIG_CMD_LDRINFO
601 CONFIG_CMD_LED 601 CONFIG_CMD_LED
602 CONFIG_CMD_LOADY 602 CONFIG_CMD_LOADY
603 CONFIG_CMD_LZMADEC 603 CONFIG_CMD_LZMADEC
604 CONFIG_CMD_MAX6957 604 CONFIG_CMD_MAX6957
605 CONFIG_CMD_MD5SUM 605 CONFIG_CMD_MD5SUM
606 CONFIG_CMD_MEM 606 CONFIG_CMD_MEM
607 CONFIG_CMD_MFSL 607 CONFIG_CMD_MFSL
608 CONFIG_CMD_MMC_SPI 608 CONFIG_CMD_MMC_SPI
609 CONFIG_CMD_MTDPARTS 609 CONFIG_CMD_MTDPARTS
610 CONFIG_CMD_MTDPARTS_SPREAD 610 CONFIG_CMD_MTDPARTS_SPREAD
611 CONFIG_CMD_NAND_LOCK_UNLOCK 611 CONFIG_CMD_NAND_LOCK_UNLOCK
612 CONFIG_CMD_NAND_TORTURE 612 CONFIG_CMD_NAND_TORTURE
613 CONFIG_CMD_NAND_TRIMFFS 613 CONFIG_CMD_NAND_TRIMFFS
614 CONFIG_CMD_ONENAND 614 CONFIG_CMD_ONENAND
615 CONFIG_CMD_OTP 615 CONFIG_CMD_OTP
616 CONFIG_CMD_PART 616 CONFIG_CMD_PART
617 CONFIG_CMD_PCA953X 617 CONFIG_CMD_PCA953X
618 CONFIG_CMD_PCA953X_INFO 618 CONFIG_CMD_PCA953X_INFO
619 CONFIG_CMD_PCI 619 CONFIG_CMD_PCI
620 CONFIG_CMD_PCI_ENUM 620 CONFIG_CMD_PCI_ENUM
621 CONFIG_CMD_PCMCIA 621 CONFIG_CMD_PCMCIA
622 CONFIG_CMD_PORTIO 622 CONFIG_CMD_PORTIO
623 CONFIG_CMD_PXE 623 CONFIG_CMD_PXE
624 CONFIG_CMD_READ 624 CONFIG_CMD_READ
625 CONFIG_CMD_REGINFO 625 CONFIG_CMD_REGINFO
626 CONFIG_CMD_REISER 626 CONFIG_CMD_REISER
627 CONFIG_CMD_SANDBOX 627 CONFIG_CMD_SANDBOX
628 CONFIG_CMD_SATA 628 CONFIG_CMD_SATA
629 CONFIG_CMD_SAVES 629 CONFIG_CMD_SAVES
630 CONFIG_CMD_SCSI 630 CONFIG_CMD_SCSI
631 CONFIG_CMD_SDRAM 631 CONFIG_CMD_SDRAM
632 CONFIG_CMD_SF_TEST 632 CONFIG_CMD_SF_TEST
633 CONFIG_CMD_SH_ZIMAGEBOOT 633 CONFIG_CMD_SH_ZIMAGEBOOT
634 CONFIG_CMD_SOFTSWITCH 634 CONFIG_CMD_SOFTSWITCH
635 CONFIG_CMD_SPIBOOTLDR 635 CONFIG_CMD_SPIBOOTLDR
636 CONFIG_CMD_SPL 636 CONFIG_CMD_SPL
637 CONFIG_CMD_SPL_NAND_OFS 637 CONFIG_CMD_SPL_NAND_OFS
638 CONFIG_CMD_SPL_WRITE_SIZE 638 CONFIG_CMD_SPL_WRITE_SIZE
639 CONFIG_CMD_STRINGS 639 CONFIG_CMD_STRINGS
640 CONFIG_CMD_SX151X 640 CONFIG_CMD_SX151X
641 CONFIG_CMD_TCA642X 641 CONFIG_CMD_TCA642X
642 CONFIG_CMD_TERMINAL 642 CONFIG_CMD_TERMINAL
643 CONFIG_CMD_TFTP 643 CONFIG_CMD_TFTP
644 CONFIG_CMD_THOR_DOWNLOAD 644 CONFIG_CMD_THOR_DOWNLOAD
645 CONFIG_CMD_TRACE 645 CONFIG_CMD_TRACE
646 CONFIG_CMD_TSI148 646 CONFIG_CMD_TSI148
647 CONFIG_CMD_UBIFS 647 CONFIG_CMD_UBIFS
648 CONFIG_CMD_UNIVERSE 648 CONFIG_CMD_UNIVERSE
649 CONFIG_CMD_UNZIP 649 CONFIG_CMD_UNZIP
650 CONFIG_CMD_USB_STORAGE 650 CONFIG_CMD_USB_STORAGE
651 CONFIG_CMD_UUID 651 CONFIG_CMD_UUID
652 CONFIG_CMD_ZBOOT 652 CONFIG_CMD_ZBOOT
653 CONFIG_CMD_ZFS 653 CONFIG_CMD_ZFS
654 CONFIG_CM_INIT 654 CONFIG_CM_INIT
655 CONFIG_CM_MULTIPLE_SSRAM 655 CONFIG_CM_MULTIPLE_SSRAM
656 CONFIG_CM_REMAP 656 CONFIG_CM_REMAP
657 CONFIG_CM_SPD_DETECT 657 CONFIG_CM_SPD_DETECT
658 CONFIG_CM_T335 658 CONFIG_CM_T335
659 CONFIG_CM_T3517 659 CONFIG_CM_T3517
660 CONFIG_CM_T3X 660 CONFIG_CM_T3X
661 CONFIG_CM_T43 661 CONFIG_CM_T43
662 CONFIG_CM_T54 662 CONFIG_CM_T54
663 CONFIG_CM_TCRAM 663 CONFIG_CM_TCRAM
664 CONFIG_CNTL 664 CONFIG_CNTL
665 CONFIG_COLDFIRE 665 CONFIG_COLDFIRE
666 CONFIG_COMMANDS 666 CONFIG_COMMANDS
667 CONFIG_COMMAND_HISTORY 667 CONFIG_COMMAND_HISTORY
668 CONFIG_COMMON_BOOT 668 CONFIG_COMMON_BOOT
669 CONFIG_COMMON_ENV_MISC 669 CONFIG_COMMON_ENV_MISC
670 CONFIG_COMMON_ENV_SETTINGS 670 CONFIG_COMMON_ENV_SETTINGS
671 CONFIG_COMMON_ENV_UBI 671 CONFIG_COMMON_ENV_UBI
672 CONFIG_COMPACT_FLASH 672 CONFIG_COMPACT_FLASH
673 CONFIG_COMPAT 673 CONFIG_COMPAT
674 CONFIG_CONSOLE_SCROLL_LINES
675 CONFIG_CONS_EXTC_PINSEL 674 CONFIG_CONS_EXTC_PINSEL
676 CONFIG_CONS_EXTC_RATE 675 CONFIG_CONS_EXTC_RATE
677 CONFIG_CONS_NONE 676 CONFIG_CONS_NONE
678 CONFIG_CONS_ON_SCC 677 CONFIG_CONS_ON_SCC
679 CONFIG_CONS_ON_SMC 678 CONFIG_CONS_ON_SMC
680 CONFIG_CONS_SCIF0 679 CONFIG_CONS_SCIF0
681 CONFIG_CONS_SCIF1 680 CONFIG_CONS_SCIF1
682 CONFIG_CONS_SCIF2 681 CONFIG_CONS_SCIF2
683 CONFIG_CONS_SCIF3 682 CONFIG_CONS_SCIF3
684 CONFIG_CONS_SCIF4 683 CONFIG_CONS_SCIF4
685 CONFIG_CONS_SCIF5 684 CONFIG_CONS_SCIF5
686 CONFIG_CONS_SCIF7 685 CONFIG_CONS_SCIF7
687 CONFIG_CONTROL 686 CONFIG_CONTROL
688 CONFIG_CONTROLCENTERD 687 CONFIG_CONTROLCENTERD
689 CONFIG_CON_ROT 688 CONFIG_CON_ROT
690 CONFIG_CORE1_RUN 689 CONFIG_CORE1_RUN
691 CONFIG_CORE_COUNT 690 CONFIG_CORE_COUNT
692 CONFIG_CORTINA_FW_ADDR 691 CONFIG_CORTINA_FW_ADDR
693 CONFIG_CORTINA_FW_LENGTH 692 CONFIG_CORTINA_FW_LENGTH
694 CONFIG_CPCI405 693 CONFIG_CPCI405
695 CONFIG_CPCI405_6U 694 CONFIG_CPCI405_6U
696 CONFIG_CPCI405_VER2 695 CONFIG_CPCI405_VER2
697 CONFIG_CPCI_AX2000 696 CONFIG_CPCI_AX2000
698 CONFIG_CPLD_BR_PRELIM 697 CONFIG_CPLD_BR_PRELIM
699 CONFIG_CPLD_OR_PRELIM 698 CONFIG_CPLD_OR_PRELIM
700 CONFIG_CPM2 699 CONFIG_CPM2
701 CONFIG_CPUAT91 700 CONFIG_CPUAT91
702 CONFIG_CPU_ARCHS34 701 CONFIG_CPU_ARCHS34
703 CONFIG_CPU_ARMV8 702 CONFIG_CPU_ARMV8
704 CONFIG_CPU_CAVIUM_OCTEON 703 CONFIG_CPU_CAVIUM_OCTEON
705 CONFIG_CPU_FREQ_HZ 704 CONFIG_CPU_FREQ_HZ
706 CONFIG_CPU_HAS_LLSC 705 CONFIG_CPU_HAS_LLSC
707 CONFIG_CPU_HAS_PREFETCH 706 CONFIG_CPU_HAS_PREFETCH
708 CONFIG_CPU_HAS_SMARTMIPS 707 CONFIG_CPU_HAS_SMARTMIPS
709 CONFIG_CPU_HAS_SR_RB 708 CONFIG_CPU_HAS_SR_RB
710 CONFIG_CPU_HAS_WB 709 CONFIG_CPU_HAS_WB
711 CONFIG_CPU_INTEL_TURBO_NOT_PACKAGE_SCOPED 710 CONFIG_CPU_INTEL_TURBO_NOT_PACKAGE_SCOPED
712 CONFIG_CPU_LITTLE_ENDIAN 711 CONFIG_CPU_LITTLE_ENDIAN
713 CONFIG_CPU_MICROMIPS 712 CONFIG_CPU_MICROMIPS
714 CONFIG_CPU_MIPSR2 713 CONFIG_CPU_MIPSR2
715 CONFIG_CPU_MONAHANS 714 CONFIG_CPU_MONAHANS
716 CONFIG_CPU_PXA25X 715 CONFIG_CPU_PXA25X
717 CONFIG_CPU_PXA26X 716 CONFIG_CPU_PXA26X
718 CONFIG_CPU_PXA27X 717 CONFIG_CPU_PXA27X
719 CONFIG_CPU_PXA300 718 CONFIG_CPU_PXA300
720 CONFIG_CPU_R8000 719 CONFIG_CPU_R8000
721 CONFIG_CPU_SH7203 720 CONFIG_CPU_SH7203
722 CONFIG_CPU_SH7264 721 CONFIG_CPU_SH7264
723 CONFIG_CPU_SH7269 722 CONFIG_CPU_SH7269
724 CONFIG_CPU_SH7706 723 CONFIG_CPU_SH7706
725 CONFIG_CPU_SH7720 724 CONFIG_CPU_SH7720
726 CONFIG_CPU_SH7722 725 CONFIG_CPU_SH7722
727 CONFIG_CPU_SH7723 726 CONFIG_CPU_SH7723
728 CONFIG_CPU_SH7724 727 CONFIG_CPU_SH7724
729 CONFIG_CPU_SH7734 728 CONFIG_CPU_SH7734
730 CONFIG_CPU_SH7750 729 CONFIG_CPU_SH7750
731 CONFIG_CPU_SH7751 730 CONFIG_CPU_SH7751
732 CONFIG_CPU_SH7752 731 CONFIG_CPU_SH7752
733 CONFIG_CPU_SH7753 732 CONFIG_CPU_SH7753
734 CONFIG_CPU_SH7757 733 CONFIG_CPU_SH7757
735 CONFIG_CPU_SH7763 734 CONFIG_CPU_SH7763
736 CONFIG_CPU_SH7780 735 CONFIG_CPU_SH7780
737 CONFIG_CPU_SH7785 736 CONFIG_CPU_SH7785
738 CONFIG_CPU_SH_TYPE_R 737 CONFIG_CPU_SH_TYPE_R
739 CONFIG_CPU_TYPE_R 738 CONFIG_CPU_TYPE_R
740 CONFIG_CPU_VR41XX 739 CONFIG_CPU_VR41XX
741 CONFIG_CP_CLK_FREQ 740 CONFIG_CP_CLK_FREQ
742 CONFIG_CQSPI_DECODER 741 CONFIG_CQSPI_DECODER
743 CONFIG_CQSPI_REF_CLK 742 CONFIG_CQSPI_REF_CLK
744 CONFIG_CRC32 743 CONFIG_CRC32
745 CONFIG_CRC32_VERIFY 744 CONFIG_CRC32_VERIFY
746 CONFIG_CS8900 745 CONFIG_CS8900
747 CONFIG_CS8900_BASE 746 CONFIG_CS8900_BASE
748 CONFIG_CS8900_BUS16 747 CONFIG_CS8900_BUS16
749 CONFIG_CS8900_BUS32 748 CONFIG_CS8900_BUS32
750 CONFIG_CSF_SIZE 749 CONFIG_CSF_SIZE
751 CONFIG_CTL_JTAG 750 CONFIG_CTL_JTAG
752 CONFIG_CTL_TBE 751 CONFIG_CTL_TBE
753 CONFIG_CTRD1_PROBE_T1 752 CONFIG_CTRD1_PROBE_T1
754 CONFIG_CTRD1_PROBE_T2 753 CONFIG_CTRD1_PROBE_T2
755 CONFIG_CUSTOMER_BOARD_SUPPORT 754 CONFIG_CUSTOMER_BOARD_SUPPORT
756 CONFIG_CYRUS 755 CONFIG_CYRUS
757 CONFIG_D2NET_V2 756 CONFIG_D2NET_V2
758 CONFIG_DA850_AM18X_EVM 757 CONFIG_DA850_AM18X_EVM
759 CONFIG_DA850_EVM_MAX_CPU_CLK 758 CONFIG_DA850_EVM_MAX_CPU_CLK
760 CONFIG_DA850_LOWLEVEL 759 CONFIG_DA850_LOWLEVEL
761 CONFIG_DA8XX_GPIO 760 CONFIG_DA8XX_GPIO
762 CONFIG_DASA_SIM 761 CONFIG_DASA_SIM
763 CONFIG_DATA 762 CONFIG_DATA
764 CONFIG_DAVINCI_MMC 763 CONFIG_DAVINCI_MMC
765 CONFIG_DAVINCI_MMC_SD1 764 CONFIG_DAVINCI_MMC_SD1
766 CONFIG_DAVINCI_SPI 765 CONFIG_DAVINCI_SPI
767 CONFIG_DBAU1000 766 CONFIG_DBAU1000
768 CONFIG_DBAU1X00 767 CONFIG_DBAU1X00
769 CONFIG_DBGU 768 CONFIG_DBGU
770 CONFIG_DBG_MONITOR 769 CONFIG_DBG_MONITOR
771 CONFIG_DB_784MP_GP 770 CONFIG_DB_784MP_GP
772 CONFIG_DCACHE 771 CONFIG_DCACHE
773 CONFIG_DCACHE_OFF 772 CONFIG_DCACHE_OFF
774 CONFIG_DCACHE_WB 773 CONFIG_DCACHE_WB
775 CONFIG_DCFG_ADDR 774 CONFIG_DCFG_ADDR
776 CONFIG_DCLK_DIV 775 CONFIG_DCLK_DIV
777 CONFIG_DDR_ 776 CONFIG_DDR_
778 CONFIG_DDR_2HCLK 777 CONFIG_DDR_2HCLK
779 CONFIG_DDR_2T_TIMING 778 CONFIG_DDR_2T_TIMING
780 CONFIG_DDR_32BIT 779 CONFIG_DDR_32BIT
781 CONFIG_DDR_64BIT 780 CONFIG_DDR_64BIT
782 CONFIG_DDR_CLK_FREQ 781 CONFIG_DDR_CLK_FREQ
783 CONFIG_DDR_DATA_EYE 782 CONFIG_DDR_DATA_EYE
784 CONFIG_DDR_DEFAULT_CL 783 CONFIG_DDR_DEFAULT_CL
785 CONFIG_DDR_ECC 784 CONFIG_DDR_ECC
786 CONFIG_DDR_ECC_CMD 785 CONFIG_DDR_ECC_CMD
787 CONFIG_DDR_ECC_ENABLE 786 CONFIG_DDR_ECC_ENABLE
788 CONFIG_DDR_ECC_INIT_VIA_DMA 787 CONFIG_DDR_ECC_INIT_VIA_DMA
789 CONFIG_DDR_FIXED_SIZE 788 CONFIG_DDR_FIXED_SIZE
790 CONFIG_DDR_FREQ 789 CONFIG_DDR_FREQ
791 CONFIG_DDR_HCLK 790 CONFIG_DDR_HCLK
792 CONFIG_DDR_HYB25D512160BF 791 CONFIG_DDR_HYB25D512160BF
793 CONFIG_DDR_II 792 CONFIG_DDR_II
794 CONFIG_DDR_K4H511638C 793 CONFIG_DDR_K4H511638C
795 CONFIG_DDR_LOG_LEVEL 794 CONFIG_DDR_LOG_LEVEL
796 CONFIG_DDR_MB 795 CONFIG_DDR_MB
797 CONFIG_DDR_MT46V16M16 796 CONFIG_DDR_MT46V16M16
798 CONFIG_DDR_MT46V32M16 797 CONFIG_DDR_MT46V32M16
799 CONFIG_DDR_MT47H128M8 798 CONFIG_DDR_MT47H128M8
800 CONFIG_DDR_MT47H32M16 799 CONFIG_DDR_MT47H32M16
801 CONFIG_DDR_MT47H64M16 800 CONFIG_DDR_MT47H64M16
802 CONFIG_DDR_PLL2 801 CONFIG_DDR_PLL2
803 CONFIG_DDR_RFDC_FIXED 802 CONFIG_DDR_RFDC_FIXED
804 CONFIG_DDR_RQDC_FIXED 803 CONFIG_DDR_RQDC_FIXED
805 CONFIG_DDR_SPD 804 CONFIG_DDR_SPD
806 CONFIG_DEBUG 805 CONFIG_DEBUG
807 CONFIG_DEBUG_DUMP 806 CONFIG_DEBUG_DUMP
808 CONFIG_DEBUG_DUMP_SYMS 807 CONFIG_DEBUG_DUMP_SYMS
809 CONFIG_DEBUG_EARLY_SERIAL 808 CONFIG_DEBUG_EARLY_SERIAL
810 CONFIG_DEBUG_FS 809 CONFIG_DEBUG_FS
811 CONFIG_DEBUG_LED 810 CONFIG_DEBUG_LED
812 CONFIG_DEBUG_LOCK_ALLOC 811 CONFIG_DEBUG_LOCK_ALLOC
813 CONFIG_DEBUG_NULL_PTR 812 CONFIG_DEBUG_NULL_PTR
814 CONFIG_DEBUG_SECTION_MISMATCH 813 CONFIG_DEBUG_SECTION_MISMATCH
815 CONFIG_DEBUG_SEMIHOSTING 814 CONFIG_DEBUG_SEMIHOSTING
816 CONFIG_DEBUG_SERIAL 815 CONFIG_DEBUG_SERIAL
817 CONFIG_DEBUG_UART_LINFLEXUART 816 CONFIG_DEBUG_UART_LINFLEXUART
818 CONFIG_DEBUG_WRITECOUNT 817 CONFIG_DEBUG_WRITECOUNT
819 CONFIG_DEB_DMA_URGENT 818 CONFIG_DEB_DMA_URGENT
820 CONFIG_DEEP_SLEEP 819 CONFIG_DEEP_SLEEP
821 CONFIG_DEFAULT 820 CONFIG_DEFAULT
822 CONFIG_DEFAULT_CONSOLE 821 CONFIG_DEFAULT_CONSOLE
823 CONFIG_DEFAULT_FDT_FILE 822 CONFIG_DEFAULT_FDT_FILE
824 CONFIG_DEFAULT_IMMR 823 CONFIG_DEFAULT_IMMR
825 CONFIG_DEFAULT_KERNEL_COMMAND_LINE 824 CONFIG_DEFAULT_KERNEL_COMMAND_LINE
826 CONFIG_DEFAULT_OMAP_RESET_TIME_MAX_USEC 825 CONFIG_DEFAULT_OMAP_RESET_TIME_MAX_USEC
827 CONFIG_DEFAULT_SPI_BUS 826 CONFIG_DEFAULT_SPI_BUS
828 CONFIG_DEFAULT_SPI_CS 827 CONFIG_DEFAULT_SPI_CS
829 CONFIG_DEFAULT_SPI_MODE 828 CONFIG_DEFAULT_SPI_MODE
830 CONFIG_DEF_HWCONFIG 829 CONFIG_DEF_HWCONFIG
831 CONFIG_DELAY_ENVIRONMENT 830 CONFIG_DELAY_ENVIRONMENT
832 CONFIG_DENX_M28_V10 831 CONFIG_DENX_M28_V10
833 CONFIG_DESIGNWARE_ETH 832 CONFIG_DESIGNWARE_ETH
834 CONFIG_DESIGNWARE_WATCHDOG 833 CONFIG_DESIGNWARE_WATCHDOG
835 CONFIG_DEVCONCENTER 834 CONFIG_DEVCONCENTER
836 CONFIG_DEVELOP 835 CONFIG_DEVELOP
837 CONFIG_DEVICE_TREE_LIST 836 CONFIG_DEVICE_TREE_LIST
838 CONFIG_DEV_USB_PHY_BASE 837 CONFIG_DEV_USB_PHY_BASE
839 CONFIG_DFU_ALT 838 CONFIG_DFU_ALT
840 CONFIG_DFU_ALT_BOOT_EMMC 839 CONFIG_DFU_ALT_BOOT_EMMC
841 CONFIG_DFU_ALT_BOOT_SD 840 CONFIG_DFU_ALT_BOOT_SD
842 CONFIG_DFU_ALT_SYSTEM 841 CONFIG_DFU_ALT_SYSTEM
843 CONFIG_DFU_ENV_SETTINGS 842 CONFIG_DFU_ENV_SETTINGS
844 CONFIG_DFU_MMC 843 CONFIG_DFU_MMC
845 CONFIG_DFU_MTD 844 CONFIG_DFU_MTD
846 CONFIG_DFU_NAND 845 CONFIG_DFU_NAND
847 CONFIG_DFU_RAM 846 CONFIG_DFU_RAM
848 CONFIG_DFU_SF 847 CONFIG_DFU_SF
849 CONFIG_DHCP_MIN_EXT_LEN 848 CONFIG_DHCP_MIN_EXT_LEN
850 CONFIG_DIALOG_POWER 849 CONFIG_DIALOG_POWER
851 CONFIG_DIGSY_MTC 850 CONFIG_DIGSY_MTC
852 CONFIG_DIGSY_REV5 851 CONFIG_DIGSY_REV5
853 CONFIG_DIMM_SLOTS_PER_CTLR 852 CONFIG_DIMM_SLOTS_PER_CTLR
854 CONFIG_DIRECT_NOR_BOOT 853 CONFIG_DIRECT_NOR_BOOT
855 CONFIG_DISABLE_CONSOLE 854 CONFIG_DISABLE_CONSOLE
856 CONFIG_DISABLE_IMAGE_LEGACY 855 CONFIG_DISABLE_IMAGE_LEGACY
857 CONFIG_DISABLE_PISE_TEST 856 CONFIG_DISABLE_PISE_TEST
858 CONFIG_DISCONTIGMEM 857 CONFIG_DISCONTIGMEM
859 CONFIG_DISCOVER_PHY 858 CONFIG_DISCOVER_PHY
860 CONFIG_DISPLAY_AER_xxxx 859 CONFIG_DISPLAY_AER_xxxx
861 CONFIG_DISPLAY_BOARDINFO_LATE 860 CONFIG_DISPLAY_BOARDINFO_LATE
862 CONFIG_DISPLAY_CPUINFO 861 CONFIG_DISPLAY_CPUINFO
863 CONFIG_DLVISION 862 CONFIG_DLVISION
864 CONFIG_DLVISION_10G 863 CONFIG_DLVISION_10G
865 CONFIG_DM9000_BASE 864 CONFIG_DM9000_BASE
866 CONFIG_DM9000_BYTE_SWAPPED 865 CONFIG_DM9000_BYTE_SWAPPED
867 CONFIG_DM9000_DEBUG 866 CONFIG_DM9000_DEBUG
868 CONFIG_DM9000_NO_SROM 867 CONFIG_DM9000_NO_SROM
869 CONFIG_DM9000_USE_16BIT 868 CONFIG_DM9000_USE_16BIT
870 CONFIG_DMA_COHERENT 869 CONFIG_DMA_COHERENT
871 CONFIG_DMA_COHERENT_SIZE 870 CONFIG_DMA_COHERENT_SIZE
872 CONFIG_DMA_LPC32XX 871 CONFIG_DMA_LPC32XX
873 CONFIG_DMA_NONCOHERENT 872 CONFIG_DMA_NONCOHERENT
874 CONFIG_DMA_REQ_BIT 873 CONFIG_DMA_REQ_BIT
875 CONFIG_DMC_DDRCFG 874 CONFIG_DMC_DDRCFG
876 CONFIG_DMC_DDRCTL 875 CONFIG_DMC_DDRCTL
877 CONFIG_DMC_DDREMR1 876 CONFIG_DMC_DDREMR1
878 CONFIG_DMC_DDRMR 877 CONFIG_DMC_DDRMR
879 CONFIG_DMC_DDRTR0 878 CONFIG_DMC_DDRTR0
880 CONFIG_DMC_DDRTR1 879 CONFIG_DMC_DDRTR1
881 CONFIG_DMC_DDRTR2 880 CONFIG_DMC_DDRTR2
882 CONFIG_DNET_AUTONEG_TIMEOUT 881 CONFIG_DNET_AUTONEG_TIMEOUT
883 CONFIG_DNP5370_EXT_WD_DISABLE 882 CONFIG_DNP5370_EXT_WD_DISABLE
884 CONFIG_DOS_PARTITION 883 CONFIG_DOS_PARTITION
885 CONFIG_DP_DDR_CTRL 884 CONFIG_DP_DDR_CTRL
886 CONFIG_DP_DDR_DIMM_SLOTS_PER_CTLR 885 CONFIG_DP_DDR_DIMM_SLOTS_PER_CTLR
887 CONFIG_DP_DDR_NUM_CTRLS 886 CONFIG_DP_DDR_NUM_CTRLS
888 CONFIG_DRA7XX 887 CONFIG_DRA7XX
889 CONFIG_DRAM_2G 888 CONFIG_DRAM_2G
890 CONFIG_DRAM_TIMINGS_ 889 CONFIG_DRAM_TIMINGS_
891 CONFIG_DRIVER_AT91EMAC 890 CONFIG_DRIVER_AT91EMAC
892 CONFIG_DRIVER_AT91EMAC_PHYADDR 891 CONFIG_DRIVER_AT91EMAC_PHYADDR
893 CONFIG_DRIVER_AT91EMAC_QUIET 892 CONFIG_DRIVER_AT91EMAC_QUIET
894 CONFIG_DRIVER_AX88180 893 CONFIG_DRIVER_AX88180
895 CONFIG_DRIVER_AX88796L 894 CONFIG_DRIVER_AX88796L
896 CONFIG_DRIVER_DM9000 895 CONFIG_DRIVER_DM9000
897 CONFIG_DRIVER_EP93XX_MAC 896 CONFIG_DRIVER_EP93XX_MAC
898 CONFIG_DRIVER_ETHER 897 CONFIG_DRIVER_ETHER
899 CONFIG_DRIVER_NAND_BFIN 898 CONFIG_DRIVER_NAND_BFIN
900 CONFIG_DRIVER_NE2000 899 CONFIG_DRIVER_NE2000
901 CONFIG_DRIVER_NE2000_BASE 900 CONFIG_DRIVER_NE2000_BASE
902 CONFIG_DRIVER_NE2000_CCR 901 CONFIG_DRIVER_NE2000_CCR
903 CONFIG_DRIVER_NE2000_VAL 902 CONFIG_DRIVER_NE2000_VAL
904 CONFIG_DRIVER_SMC911X_BASE 903 CONFIG_DRIVER_SMC911X_BASE
905 CONFIG_DRIVER_TI_CPSW 904 CONFIG_DRIVER_TI_CPSW
906 CONFIG_DRIVER_TI_EMAC 905 CONFIG_DRIVER_TI_EMAC
907 CONFIG_DRIVER_TI_EMAC_RMII_NO_NEGOTIATE 906 CONFIG_DRIVER_TI_EMAC_RMII_NO_NEGOTIATE
908 CONFIG_DRIVER_TI_EMAC_USE_RMII 907 CONFIG_DRIVER_TI_EMAC_USE_RMII
909 CONFIG_DRIVER_TI_KEYSTONE_NET 908 CONFIG_DRIVER_TI_KEYSTONE_NET
910 CONFIG_DRIVE_MMC 909 CONFIG_DRIVE_MMC
911 CONFIG_DRIVE_SATA 910 CONFIG_DRIVE_SATA
912 CONFIG_DRIVE_TYPES 911 CONFIG_DRIVE_TYPES
913 CONFIG_DRIVE_USB 912 CONFIG_DRIVE_USB
914 CONFIG_DS4510 913 CONFIG_DS4510
915 CONFIG_DSP_CLUSTER_START 914 CONFIG_DSP_CLUSTER_START
916 CONFIG_DTT 915 CONFIG_DTT
917 CONFIG_DTT_AD7414 916 CONFIG_DTT_AD7414
918 CONFIG_DTT_ADM1021 917 CONFIG_DTT_ADM1021
919 CONFIG_DTT_DS1621 918 CONFIG_DTT_DS1621
920 CONFIG_DTT_DS1775 919 CONFIG_DTT_DS1775
921 CONFIG_DTT_DS620 920 CONFIG_DTT_DS620
922 CONFIG_DTT_HYSTERESIS 921 CONFIG_DTT_HYSTERESIS
923 CONFIG_DTT_LM63 922 CONFIG_DTT_LM63
924 CONFIG_DTT_LM75 923 CONFIG_DTT_LM75
925 CONFIG_DTT_LM81 924 CONFIG_DTT_LM81
926 CONFIG_DTT_MAX_TEMP 925 CONFIG_DTT_MAX_TEMP
927 CONFIG_DTT_MIN_TEMP 926 CONFIG_DTT_MIN_TEMP
928 CONFIG_DTT_PWM_LOOKUPTABLE 927 CONFIG_DTT_PWM_LOOKUPTABLE
929 CONFIG_DTT_SENSORS 928 CONFIG_DTT_SENSORS
930 CONFIG_DTT_TACH_LIMIT 929 CONFIG_DTT_TACH_LIMIT
931 CONFIG_DUOVERO 930 CONFIG_DUOVERO
932 CONFIG_DV_USBPHY_CTL 931 CONFIG_DV_USBPHY_CTL
933 CONFIG_DWC2_DFLT_SPEED_FULL 932 CONFIG_DWC2_DFLT_SPEED_FULL
934 CONFIG_DWC2_DMA_BURST_SIZE 933 CONFIG_DWC2_DMA_BURST_SIZE
935 CONFIG_DWC2_DMA_ENABLE 934 CONFIG_DWC2_DMA_ENABLE
936 CONFIG_DWC2_ENABLE_DYNAMIC_FIFO 935 CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
937 CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE 936 CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE
938 CONFIG_DWC2_HOST_PERIO_TX_FIFO_SIZE 937 CONFIG_DWC2_HOST_PERIO_TX_FIFO_SIZE
939 CONFIG_DWC2_HOST_RX_FIFO_SIZE 938 CONFIG_DWC2_HOST_RX_FIFO_SIZE
940 CONFIG_DWC2_I2C_ENABLE 939 CONFIG_DWC2_I2C_ENABLE
941 CONFIG_DWC2_IC_USB_CAP 940 CONFIG_DWC2_IC_USB_CAP
942 CONFIG_DWC2_MAX_CHANNELS 941 CONFIG_DWC2_MAX_CHANNELS
943 CONFIG_DWC2_MAX_PACKET_COUNT 942 CONFIG_DWC2_MAX_PACKET_COUNT
944 CONFIG_DWC2_MAX_TRANSFER_SIZE 943 CONFIG_DWC2_MAX_TRANSFER_SIZE
945 CONFIG_DWC2_PHY_TYPE 944 CONFIG_DWC2_PHY_TYPE
946 CONFIG_DWC2_PHY_ULPI_DDR 945 CONFIG_DWC2_PHY_ULPI_DDR
947 CONFIG_DWC2_PHY_ULPI_EXT_VBUS 946 CONFIG_DWC2_PHY_ULPI_EXT_VBUS
948 CONFIG_DWC2_THR_CTL 947 CONFIG_DWC2_THR_CTL
949 CONFIG_DWC2_TS_DLINE 948 CONFIG_DWC2_TS_DLINE
950 CONFIG_DWC2_TX_THR_LENGTH 949 CONFIG_DWC2_TX_THR_LENGTH
951 CONFIG_DWC2_ULPI_FS_LS 950 CONFIG_DWC2_ULPI_FS_LS
952 CONFIG_DWC2_UTMI_WIDTH 951 CONFIG_DWC2_UTMI_WIDTH
953 CONFIG_DWCDDR21MCTL 952 CONFIG_DWCDDR21MCTL
954 CONFIG_DWCDDR21MCTL_BASE 953 CONFIG_DWCDDR21MCTL_BASE
955 CONFIG_DWC_AHSATA 954 CONFIG_DWC_AHSATA
956 CONFIG_DWC_AHSATA_BASE_ADDR 955 CONFIG_DWC_AHSATA_BASE_ADDR
957 CONFIG_DWC_AHSATA_PORT_ID 956 CONFIG_DWC_AHSATA_PORT_ID
958 CONFIG_DWMMC 957 CONFIG_DWMMC
959 CONFIG_DW_ALTDESCRIPTOR 958 CONFIG_DW_ALTDESCRIPTOR
960 CONFIG_DW_AXI_BURST_LEN 959 CONFIG_DW_AXI_BURST_LEN
961 CONFIG_DW_GMAC_DEFAULT_DMA_PBL 960 CONFIG_DW_GMAC_DEFAULT_DMA_PBL
962 CONFIG_DW_MAC_FORCE_THRESHOLD_MODE 961 CONFIG_DW_MAC_FORCE_THRESHOLD_MODE
963 CONFIG_DW_PORTS 962 CONFIG_DW_PORTS
964 CONFIG_DW_SERIAL 963 CONFIG_DW_SERIAL
965 CONFIG_DW_UDC 964 CONFIG_DW_UDC
966 CONFIG_DW_WDT_BASE 965 CONFIG_DW_WDT_BASE
967 CONFIG_DW_WDT_CLOCK_KHZ 966 CONFIG_DW_WDT_CLOCK_KHZ
968 CONFIG_DYNAMIC_MMC_DEVNO 967 CONFIG_DYNAMIC_MMC_DEVNO
969 CONFIG_E1000_NO_NVM 968 CONFIG_E1000_NO_NVM
970 CONFIG_E300 969 CONFIG_E300
971 CONFIG_E500 970 CONFIG_E500
972 CONFIG_E500MC 971 CONFIG_E500MC
973 CONFIG_E5500 972 CONFIG_E5500
974 CONFIG_E6500 973 CONFIG_E6500
975 CONFIG_EBCAW_VAL 974 CONFIG_EBCAW_VAL
976 CONFIG_EBC_PPC4xx_IBM_VER1 975 CONFIG_EBC_PPC4xx_IBM_VER1
977 CONFIG_EBIU_AMBCTL0_VAL 976 CONFIG_EBIU_AMBCTL0_VAL
978 CONFIG_EBIU_AMBCTL1_VAL 977 CONFIG_EBIU_AMBCTL1_VAL
979 CONFIG_EBIU_AMGCTL_VAL 978 CONFIG_EBIU_AMGCTL_VAL
980 CONFIG_EBIU_DDRCTL0_VAL 979 CONFIG_EBIU_DDRCTL0_VAL
981 CONFIG_EBIU_DDRCTL1_VAL 980 CONFIG_EBIU_DDRCTL1_VAL
982 CONFIG_EBIU_DDRCTL2_VAL 981 CONFIG_EBIU_DDRCTL2_VAL
983 CONFIG_EBIU_DDRCTL3_VAL 982 CONFIG_EBIU_DDRCTL3_VAL
984 CONFIG_EBIU_DDRQUE_VAL 983 CONFIG_EBIU_DDRQUE_VAL
985 CONFIG_EBIU_FCTL_VAL 984 CONFIG_EBIU_FCTL_VAL
986 CONFIG_EBIU_MBSCTL_VAL 985 CONFIG_EBIU_MBSCTL_VAL
987 CONFIG_EBIU_MODE_VAL 986 CONFIG_EBIU_MODE_VAL
988 CONFIG_EBIU_RSTCTL_VAL 987 CONFIG_EBIU_RSTCTL_VAL
989 CONFIG_EBIU_SDBCTL_VAL 988 CONFIG_EBIU_SDBCTL_VAL
990 CONFIG_EBIU_SDGCTL_VAL 989 CONFIG_EBIU_SDGCTL_VAL
991 CONFIG_EBIU_SDRRC_VAL 990 CONFIG_EBIU_SDRRC_VAL
992 CONFIG_EBSZ_VAL 991 CONFIG_EBSZ_VAL
993 CONFIG_ECC 992 CONFIG_ECC
994 CONFIG_ECC_INIT_VIA_DDRCONTROLLER 993 CONFIG_ECC_INIT_VIA_DDRCONTROLLER
995 CONFIG_ECC_MODE_MASK 994 CONFIG_ECC_MODE_MASK
996 CONFIG_ECC_MODE_SHIFT 995 CONFIG_ECC_MODE_SHIFT
997 CONFIG_ECC_SRAM_ADDR_MASK 996 CONFIG_ECC_SRAM_ADDR_MASK
998 CONFIG_ECC_SRAM_ADDR_SHIFT 997 CONFIG_ECC_SRAM_ADDR_SHIFT
999 CONFIG_ECC_SRAM_REQ_BIT 998 CONFIG_ECC_SRAM_REQ_BIT
1000 CONFIG_ECOVEC 999 CONFIG_ECOVEC
1001 CONFIG_ECOVEC_ROMIMAGE_ADDR 1000 CONFIG_ECOVEC_ROMIMAGE_ADDR
1002 CONFIG_EDB9301 1001 CONFIG_EDB9301
1003 CONFIG_EDB9302 1002 CONFIG_EDB9302
1004 CONFIG_EDB9302A 1003 CONFIG_EDB9302A
1005 CONFIG_EDB9307 1004 CONFIG_EDB9307
1006 CONFIG_EDB9307A 1005 CONFIG_EDB9307A
1007 CONFIG_EDB9312 1006 CONFIG_EDB9312
1008 CONFIG_EDB9315 1007 CONFIG_EDB9315
1009 CONFIG_EDB9315A 1008 CONFIG_EDB9315A
1010 CONFIG_EDB93XX_INDUSTRIAL 1009 CONFIG_EDB93XX_INDUSTRIAL
1011 CONFIG_EDB93XX_SDCS0 1010 CONFIG_EDB93XX_SDCS0
1012 CONFIG_EDB93XX_SDCS1 1011 CONFIG_EDB93XX_SDCS1
1013 CONFIG_EDB93XX_SDCS2 1012 CONFIG_EDB93XX_SDCS2
1014 CONFIG_EDB93XX_SDCS3 1013 CONFIG_EDB93XX_SDCS3
1015 CONFIG_EEPRO100 1014 CONFIG_EEPRO100
1016 CONFIG_EEPRO100_SROM_WRITE 1015 CONFIG_EEPRO100_SROM_WRITE
1017 CONFIG_EEPROM_BUS_ADDRESS 1016 CONFIG_EEPROM_BUS_ADDRESS
1018 CONFIG_EEPROM_CHIP_ADDRESS 1017 CONFIG_EEPROM_CHIP_ADDRESS
1019 CONFIG_EEPROM_LAYOUT_HELP_STRING 1018 CONFIG_EEPROM_LAYOUT_HELP_STRING
1020 CONFIG_EFI_PARTITION 1019 CONFIG_EFI_PARTITION
1021 CONFIG_EFLASH_PROTSECTORS 1020 CONFIG_EFLASH_PROTSECTORS
1022 CONFIG_EHCI_DESC_BIG_ENDIAN 1021 CONFIG_EHCI_DESC_BIG_ENDIAN
1023 CONFIG_EHCI_HCD_INIT_AFTER_RESET 1022 CONFIG_EHCI_HCD_INIT_AFTER_RESET
1024 CONFIG_EHCI_IS_TDI 1023 CONFIG_EHCI_IS_TDI
1025 CONFIG_EHCI_MMIO_BIG_ENDIAN 1024 CONFIG_EHCI_MMIO_BIG_ENDIAN
1026 CONFIG_EHCI_MXS_PORT0 1025 CONFIG_EHCI_MXS_PORT0
1027 CONFIG_EHCI_MXS_PORT1 1026 CONFIG_EHCI_MXS_PORT1
1028 CONFIG_ELBC_NAND_SPL_STATIC_PGSIZE 1027 CONFIG_ELBC_NAND_SPL_STATIC_PGSIZE
1029 CONFIG_EMAC_MDIO_PHY_NUM 1028 CONFIG_EMAC_MDIO_PHY_NUM
1030 CONFIG_EMAC_NR_START 1029 CONFIG_EMAC_NR_START
1031 CONFIG_EMAC_PHY_MODE 1030 CONFIG_EMAC_PHY_MODE
1032 CONFIG_EMIF4 1031 CONFIG_EMIF4
1033 CONFIG_EMMC_BOOT 1032 CONFIG_EMMC_BOOT
1034 CONFIG_EMU 1033 CONFIG_EMU
1035 CONFIG_ENABLE_36BIT_PHYS 1034 CONFIG_ENABLE_36BIT_PHYS
1036 CONFIG_ENABLE_MMU 1035 CONFIG_ENABLE_MMU
1037 CONFIG_ENABLE_MUST_CHECK 1036 CONFIG_ENABLE_MUST_CHECK
1038 CONFIG_ENABLE_VBOOT 1037 CONFIG_ENABLE_VBOOT
1039 CONFIG_ENABLE_WARN_DEPRECATED 1038 CONFIG_ENABLE_WARN_DEPRECATED
1040 CONFIG_ENC_SILENTLINK 1039 CONFIG_ENC_SILENTLINK
1041 CONFIG_ENV_ACCESS_IGNORE_FORCE 1040 CONFIG_ENV_ACCESS_IGNORE_FORCE
1042 CONFIG_ENV_ADDR 1041 CONFIG_ENV_ADDR
1043 CONFIG_ENV_ADDR_FLEX 1042 CONFIG_ENV_ADDR_FLEX
1044 CONFIG_ENV_ADDR_REDUND 1043 CONFIG_ENV_ADDR_REDUND
1045 CONFIG_ENV_AES 1044 CONFIG_ENV_AES
1046 CONFIG_ENV_BASE 1045 CONFIG_ENV_BASE
1047 CONFIG_ENV_CALLBACK_LIST_DEFAULT 1046 CONFIG_ENV_CALLBACK_LIST_DEFAULT
1048 CONFIG_ENV_CALLBACK_LIST_STATIC 1047 CONFIG_ENV_CALLBACK_LIST_STATIC
1049 CONFIG_ENV_COMMON_BOOT 1048 CONFIG_ENV_COMMON_BOOT
1050 CONFIG_ENV_EEPROM_IS_ON_I2C 1049 CONFIG_ENV_EEPROM_IS_ON_I2C
1051 CONFIG_ENV_FIT_UCBOOT 1050 CONFIG_ENV_FIT_UCBOOT
1052 CONFIG_ENV_FLAGS_LIST_DEFAULT 1051 CONFIG_ENV_FLAGS_LIST_DEFAULT
1053 CONFIG_ENV_FLAGS_LIST_STATIC 1052 CONFIG_ENV_FLAGS_LIST_STATIC
1054 CONFIG_ENV_FLASHBOOT 1053 CONFIG_ENV_FLASHBOOT
1055 CONFIG_ENV_IS_EMBEDDED 1054 CONFIG_ENV_IS_EMBEDDED
1056 CONFIG_ENV_IS_EMBEDDED_IN_LDR 1055 CONFIG_ENV_IS_EMBEDDED_IN_LDR
1057 CONFIG_ENV_IS_IN_ 1056 CONFIG_ENV_IS_IN_
1058 CONFIG_ENV_IS_IN_DATAFLASH 1057 CONFIG_ENV_IS_IN_DATAFLASH
1059 CONFIG_ENV_IS_IN_EEPROM 1058 CONFIG_ENV_IS_IN_EEPROM
1060 CONFIG_ENV_IS_IN_FAT 1059 CONFIG_ENV_IS_IN_FAT
1061 CONFIG_ENV_IS_IN_FLASH 1060 CONFIG_ENV_IS_IN_FLASH
1062 CONFIG_ENV_IS_IN_MMC 1061 CONFIG_ENV_IS_IN_MMC
1063 CONFIG_ENV_IS_IN_MRAM 1062 CONFIG_ENV_IS_IN_MRAM
1064 CONFIG_ENV_IS_IN_NAND 1063 CONFIG_ENV_IS_IN_NAND
1065 CONFIG_ENV_IS_IN_NVRAM 1064 CONFIG_ENV_IS_IN_NVRAM
1066 CONFIG_ENV_IS_IN_ONENAND 1065 CONFIG_ENV_IS_IN_ONENAND
1067 CONFIG_ENV_IS_IN_REMOTE 1066 CONFIG_ENV_IS_IN_REMOTE
1068 CONFIG_ENV_IS_IN_SPI_FLASH 1067 CONFIG_ENV_IS_IN_SPI_FLASH
1069 CONFIG_ENV_IS_IN_UBI 1068 CONFIG_ENV_IS_IN_UBI
1070 CONFIG_ENV_IS_NOWHERE 1069 CONFIG_ENV_IS_NOWHERE
1071 CONFIG_ENV_MAX_ENTRIES 1070 CONFIG_ENV_MAX_ENTRIES
1072 CONFIG_ENV_MIN_ENTRIES 1071 CONFIG_ENV_MIN_ENTRIES
1073 CONFIG_ENV_OFFSET 1072 CONFIG_ENV_OFFSET
1074 CONFIG_ENV_OFFSET_OOB 1073 CONFIG_ENV_OFFSET_OOB
1075 CONFIG_ENV_OFFSET_REDUND 1074 CONFIG_ENV_OFFSET_REDUND
1076 CONFIG_ENV_OVERWRITE 1075 CONFIG_ENV_OVERWRITE
1077 CONFIG_ENV_RANGE 1076 CONFIG_ENV_RANGE
1078 CONFIG_ENV_RDADDR 1077 CONFIG_ENV_RDADDR
1079 CONFIG_ENV_REFLASH 1078 CONFIG_ENV_REFLASH
1080 CONFIG_ENV_SECT_SIZE 1079 CONFIG_ENV_SECT_SIZE
1081 CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS 1080 CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS
1082 CONFIG_ENV_SETTINGS_NAND_V1 1081 CONFIG_ENV_SETTINGS_NAND_V1
1083 CONFIG_ENV_SETTINGS_NAND_V2 1082 CONFIG_ENV_SETTINGS_NAND_V2
1084 CONFIG_ENV_SETTINGS_V1 1083 CONFIG_ENV_SETTINGS_V1
1085 CONFIG_ENV_SETTINGS_V2 1084 CONFIG_ENV_SETTINGS_V2
1086 CONFIG_ENV_SIZE 1085 CONFIG_ENV_SIZE
1087 CONFIG_ENV_SIZE_FLEX 1086 CONFIG_ENV_SIZE_FLEX
1088 CONFIG_ENV_SIZE_REDUND 1087 CONFIG_ENV_SIZE_REDUND
1089 CONFIG_ENV_SPI_BASE 1088 CONFIG_ENV_SPI_BASE
1090 CONFIG_ENV_SPI_BUS 1089 CONFIG_ENV_SPI_BUS
1091 CONFIG_ENV_SPI_CS 1090 CONFIG_ENV_SPI_CS
1092 CONFIG_ENV_SPI_MAX_HZ 1091 CONFIG_ENV_SPI_MAX_HZ
1093 CONFIG_ENV_SPI_MODE 1092 CONFIG_ENV_SPI_MODE
1094 CONFIG_ENV_SROM_BANK 1093 CONFIG_ENV_SROM_BANK
1095 CONFIG_ENV_TOTAL_SIZE 1094 CONFIG_ENV_TOTAL_SIZE
1096 CONFIG_ENV_UBIFS_OPTION 1095 CONFIG_ENV_UBIFS_OPTION
1097 CONFIG_ENV_UBI_MTD 1096 CONFIG_ENV_UBI_MTD
1098 CONFIG_ENV_UBI_PART 1097 CONFIG_ENV_UBI_PART
1099 CONFIG_ENV_UBI_VOLUME 1098 CONFIG_ENV_UBI_VOLUME
1100 CONFIG_ENV_UBI_VOLUME_REDUND 1099 CONFIG_ENV_UBI_VOLUME_REDUND
1101 CONFIG_ENV_VARS_UBOOT_CONFIG 1100 CONFIG_ENV_VARS_UBOOT_CONFIG
1102 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG 1101 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
1103 CONFIG_ENV_VERSION 1102 CONFIG_ENV_VERSION
1104 CONFIG_ENV_xxx 1103 CONFIG_ENV_xxx
1105 CONFIG_EP9301 1104 CONFIG_EP9301
1106 CONFIG_EP9302 1105 CONFIG_EP9302
1107 CONFIG_EP9307 1106 CONFIG_EP9307
1108 CONFIG_EP9312 1107 CONFIG_EP9312
1109 CONFIG_EP9315 1108 CONFIG_EP9315
1110 CONFIG_EP93XX 1109 CONFIG_EP93XX
1111 CONFIG_EP93XX_NO_FLASH_CFG 1110 CONFIG_EP93XX_NO_FLASH_CFG
1112 CONFIG_EP93XX_SPI 1111 CONFIG_EP93XX_SPI
1113 CONFIG_EP93XX_SPI_MMC 1112 CONFIG_EP93XX_SPI_MMC
1114 CONFIG_EPH_POWER_EN 1113 CONFIG_EPH_POWER_EN
1115 CONFIG_EPOLL 1114 CONFIG_EPOLL
1116 CONFIG_ESBC_ADDR_64BIT 1115 CONFIG_ESBC_ADDR_64BIT
1117 CONFIG_ESBC_HDR_LS 1116 CONFIG_ESBC_HDR_LS
1118 CONFIG_ESDHC_DETECT_8_BIT_QUIRK 1117 CONFIG_ESDHC_DETECT_8_BIT_QUIRK
1119 CONFIG_ESDHC_DETECT_QUIRK 1118 CONFIG_ESDHC_DETECT_QUIRK
1120 CONFIG_ESDHC_DETECT_USE_EXTERN_IRQ1 1119 CONFIG_ESDHC_DETECT_USE_EXTERN_IRQ1
1121 CONFIG_ESDHC_HC_BLK_ADDR 1120 CONFIG_ESDHC_HC_BLK_ADDR
1122 CONFIG_ESPRESSO7420 1121 CONFIG_ESPRESSO7420
1123 CONFIG_ESPT 1122 CONFIG_ESPT
1124 CONFIG_ET1100_BASE 1123 CONFIG_ET1100_BASE
1125 CONFIG_ETH1ADDR 1124 CONFIG_ETH1ADDR
1126 CONFIG_ETH2ADDR 1125 CONFIG_ETH2ADDR
1127 CONFIG_ETHADDR 1126 CONFIG_ETHADDR
1128 CONFIG_ETHBASE 1127 CONFIG_ETHBASE
1129 CONFIG_ETHER_INDEX 1128 CONFIG_ETHER_INDEX
1130 CONFIG_ETHER_LOOPBACK_TEST 1129 CONFIG_ETHER_LOOPBACK_TEST
1131 CONFIG_ETHER_NONE 1130 CONFIG_ETHER_NONE
1132 CONFIG_ETHER_ON_FCC 1131 CONFIG_ETHER_ON_FCC
1133 CONFIG_ETHER_ON_FCC1 1132 CONFIG_ETHER_ON_FCC1
1134 CONFIG_ETHER_ON_FCC2 1133 CONFIG_ETHER_ON_FCC2
1135 CONFIG_ETHER_ON_FCC3 1134 CONFIG_ETHER_ON_FCC3
1136 CONFIG_ETHER_ON_FEC1 1135 CONFIG_ETHER_ON_FEC1
1137 CONFIG_ETHER_ON_FEC2 1136 CONFIG_ETHER_ON_FEC2
1138 CONFIG_ETHER_ON_SCC 1137 CONFIG_ETHER_ON_SCC
1139 CONFIG_ETHPRIME 1138 CONFIG_ETHPRIME
1140 CONFIG_ETH_BUFSIZE 1139 CONFIG_ETH_BUFSIZE
1141 CONFIG_ETH_RXSIZE 1140 CONFIG_ETH_RXSIZE
1142 CONFIG_EXCEPTION_DEFER 1141 CONFIG_EXCEPTION_DEFER
1143 CONFIG_EXT4_WRITE 1142 CONFIG_EXT4_WRITE
1144 CONFIG_EXTRA_BOOTARGS 1143 CONFIG_EXTRA_BOOTARGS
1145 CONFIG_EXTRA_CLOCK 1144 CONFIG_EXTRA_CLOCK
1146 CONFIG_EXTRA_ENV 1145 CONFIG_EXTRA_ENV
1147 CONFIG_EXTRA_ENV_BOARD_SETTINGS 1146 CONFIG_EXTRA_ENV_BOARD_SETTINGS
1148 CONFIG_EXTRA_ENV_ITB 1147 CONFIG_EXTRA_ENV_ITB
1149 CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS 1148 CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS
1150 CONFIG_EXTRA_ENV_SETTINGS 1149 CONFIG_EXTRA_ENV_SETTINGS
1151 CONFIG_EXTRA_ENV_SETTINGS_BASE 1150 CONFIG_EXTRA_ENV_SETTINGS_BASE
1152 CONFIG_EXTRA_ENV_SETTINGS_COMMON 1151 CONFIG_EXTRA_ENV_SETTINGS_COMMON
1153 CONFIG_EXTRA_ENV_SETTINGS_DEVEL 1152 CONFIG_EXTRA_ENV_SETTINGS_DEVEL
1154 CONFIG_EXTRA_ENV_SETTINGS_SELECT 1153 CONFIG_EXTRA_ENV_SETTINGS_SELECT
1155 CONFIG_EXTRA_ENV_UNLOCK 1154 CONFIG_EXTRA_ENV_UNLOCK
1156 CONFIG_EXTRA_ENV_USBTTY 1155 CONFIG_EXTRA_ENV_USBTTY
1157 CONFIG_EXT_AHB2AHB_BASE 1156 CONFIG_EXT_AHB2AHB_BASE
1158 CONFIG_EXT_AHBAPBBRG_BASE 1157 CONFIG_EXT_AHBAPBBRG_BASE
1159 CONFIG_EXT_AHBPCIBRG_BASE 1158 CONFIG_EXT_AHBPCIBRG_BASE
1160 CONFIG_EXT_AHBSLAVE01_BASE 1159 CONFIG_EXT_AHBSLAVE01_BASE
1161 CONFIG_EXT_AHBSLAVE02_BASE 1160 CONFIG_EXT_AHBSLAVE02_BASE
1162 CONFIG_EXT_PHY 1161 CONFIG_EXT_PHY
1163 CONFIG_EXT_USB_HOST_BASE 1162 CONFIG_EXT_USB_HOST_BASE
1164 CONFIG_EXYNOS4 1163 CONFIG_EXYNOS4
1165 CONFIG_EXYNOS4210 1164 CONFIG_EXYNOS4210
1166 CONFIG_EXYNOS5 1165 CONFIG_EXYNOS5
1167 CONFIG_EXYNOS5250 1166 CONFIG_EXYNOS5250
1168 CONFIG_EXYNOS5420 1167 CONFIG_EXYNOS5420
1169 CONFIG_EXYNOS5800 1168 CONFIG_EXYNOS5800
1170 CONFIG_EXYNOS5_DT 1169 CONFIG_EXYNOS5_DT
1171 CONFIG_EXYNOS7420 1170 CONFIG_EXYNOS7420
1172 CONFIG_EXYNOS_ACE_SHA 1171 CONFIG_EXYNOS_ACE_SHA
1173 CONFIG_EXYNOS_DP 1172 CONFIG_EXYNOS_DP
1174 CONFIG_EXYNOS_DWMMC 1173 CONFIG_EXYNOS_DWMMC
1175 CONFIG_EXYNOS_FB 1174 CONFIG_EXYNOS_FB
1176 CONFIG_EXYNOS_MIPI_DSIM 1175 CONFIG_EXYNOS_MIPI_DSIM
1177 CONFIG_EXYNOS_RELOCATE_CODE_BASE 1176 CONFIG_EXYNOS_RELOCATE_CODE_BASE
1178 CONFIG_EXYNOS_SPL 1177 CONFIG_EXYNOS_SPL
1179 CONFIG_EXYNOS_TMU 1178 CONFIG_EXYNOS_TMU
1180 CONFIG_FACTORYSET 1179 CONFIG_FACTORYSET
1181 CONFIG_FASTBOOT_FLASH_FILLBUF_SIZE 1180 CONFIG_FASTBOOT_FLASH_FILLBUF_SIZE
1182 CONFIG_FASTBOOT_FLASH_NAND_DEV 1181 CONFIG_FASTBOOT_FLASH_NAND_DEV
1183 CONFIG_FASTBOOT_FLASH_NAND_TRIMFFS 1182 CONFIG_FASTBOOT_FLASH_NAND_TRIMFFS
1184 CONFIG_FASTBOOT_GPT_NAME 1183 CONFIG_FASTBOOT_GPT_NAME
1185 CONFIG_FAST_FLASH_BIT 1184 CONFIG_FAST_FLASH_BIT
1186 CONFIG_FAT_WRITE 1185 CONFIG_FAT_WRITE
1187 CONFIG_FB_ADDR 1186 CONFIG_FB_ADDR
1188 CONFIG_FB_BACKLIGHT 1187 CONFIG_FB_BACKLIGHT
1189 CONFIG_FB_DEFERRED_IO 1188 CONFIG_FB_DEFERRED_IO
1190 CONFIG_FDT1_ENV_ADDR 1189 CONFIG_FDT1_ENV_ADDR
1191 CONFIG_FDT2_ENV_ADDR 1190 CONFIG_FDT2_ENV_ADDR
1192 CONFIG_FDTADDR 1191 CONFIG_FDTADDR
1193 CONFIG_FDTFILE 1192 CONFIG_FDTFILE
1194 CONFIG_FDT_ENV_ADDR 1193 CONFIG_FDT_ENV_ADDR
1195 CONFIG_FDT_FIXUP_NOR_FLASH_SIZE 1194 CONFIG_FDT_FIXUP_NOR_FLASH_SIZE
1196 CONFIG_FDT_FIXUP_PARTITIONS 1195 CONFIG_FDT_FIXUP_PARTITIONS
1197 CONFIG_FDT_FIXUP_PCI_IRQ 1196 CONFIG_FDT_FIXUP_PCI_IRQ
1198 CONFIG_FEATURE_CLEAN_UP 1197 CONFIG_FEATURE_CLEAN_UP
1199 CONFIG_FEATURE_COMMAND_EDITING 1198 CONFIG_FEATURE_COMMAND_EDITING
1200 CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN 1199 CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
1201 CONFIG_FEATURE_SH_EXTRA_QUIET 1200 CONFIG_FEATURE_SH_EXTRA_QUIET
1202 CONFIG_FEATURE_SH_FANCY_PROMPT 1201 CONFIG_FEATURE_SH_FANCY_PROMPT
1203 CONFIG_FEATURE_SH_STANDALONE_SHELL 1202 CONFIG_FEATURE_SH_STANDALONE_SHELL
1204 CONFIG_FEC1_PHY 1203 CONFIG_FEC1_PHY
1205 CONFIG_FEC2_PHY 1204 CONFIG_FEC2_PHY
1206 CONFIG_FEC_10MBIT 1205 CONFIG_FEC_10MBIT
1207 CONFIG_FEC_AN_TIMEOUT 1206 CONFIG_FEC_AN_TIMEOUT
1208 CONFIG_FEC_ENET 1207 CONFIG_FEC_ENET
1209 CONFIG_FEC_ENET_DEV 1208 CONFIG_FEC_ENET_DEV
1210 CONFIG_FEC_FIXED_SPEED 1209 CONFIG_FEC_FIXED_SPEED
1211 CONFIG_FEC_MXC 1210 CONFIG_FEC_MXC
1212 CONFIG_FEC_MXC_25M_REF_CLK 1211 CONFIG_FEC_MXC_25M_REF_CLK
1213 CONFIG_FEC_MXC_PHYADDR 1212 CONFIG_FEC_MXC_PHYADDR
1214 CONFIG_FEC_MXC_SWAP_PACKET 1213 CONFIG_FEC_MXC_SWAP_PACKET
1215 CONFIG_FEC_XCV_TYPE 1214 CONFIG_FEC_XCV_TYPE
1216 CONFIG_FEROCEON 1215 CONFIG_FEROCEON
1217 CONFIG_FEROCEON_88FR131 1216 CONFIG_FEROCEON_88FR131
1218 CONFIG_FFUART 1217 CONFIG_FFUART
1219 CONFIG_FILE 1218 CONFIG_FILE
1220 CONFIG_FIRMWARE_OFFSET 1219 CONFIG_FIRMWARE_OFFSET
1221 CONFIG_FIRMWARE_SIZE 1220 CONFIG_FIRMWARE_SIZE
1222 CONFIG_FIT_DISABLE_SHA256 1221 CONFIG_FIT_DISABLE_SHA256
1223 CONFIG_FIXED_PHY 1222 CONFIG_FIXED_PHY
1224 CONFIG_FIXED_PHY_ADDR 1223 CONFIG_FIXED_PHY_ADDR
1225 CONFIG_FIXED_SDHCI_ALIGNED_BUFFER 1224 CONFIG_FIXED_SDHCI_ALIGNED_BUFFER
1226 CONFIG_FLASHBOOTCOMMAND 1225 CONFIG_FLASHBOOTCOMMAND
1227 CONFIG_FLASHCARD 1226 CONFIG_FLASHCARD
1228 CONFIG_FLASH_16BIT 1227 CONFIG_FLASH_16BIT
1229 CONFIG_FLASH_8BIT 1228 CONFIG_FLASH_8BIT
1230 CONFIG_FLASH_BASE 1229 CONFIG_FLASH_BASE
1231 CONFIG_FLASH_BR_PRELIM 1230 CONFIG_FLASH_BR_PRELIM
1232 CONFIG_FLASH_CFI_DRIVER 1231 CONFIG_FLASH_CFI_DRIVER
1233 CONFIG_FLASH_CFI_LEGACY 1232 CONFIG_FLASH_CFI_LEGACY
1234 CONFIG_FLASH_CFI_MTD 1233 CONFIG_FLASH_CFI_MTD
1235 CONFIG_FLASH_END 1234 CONFIG_FLASH_END
1236 CONFIG_FLASH_NOT_MEM_MAPPED 1235 CONFIG_FLASH_NOT_MEM_MAPPED
1237 CONFIG_FLASH_OR_PRELIM 1236 CONFIG_FLASH_OR_PRELIM
1238 CONFIG_FLASH_PNOR 1237 CONFIG_FLASH_PNOR
1239 CONFIG_FLASH_SECTOR_SIZE 1238 CONFIG_FLASH_SECTOR_SIZE
1240 CONFIG_FLASH_SHOW_PROGRESS 1239 CONFIG_FLASH_SHOW_PROGRESS
1241 CONFIG_FLASH_SPANSION_S29WS_N 1240 CONFIG_FLASH_SPANSION_S29WS_N
1242 CONFIG_FLASH_VERIFY 1241 CONFIG_FLASH_VERIFY
1243 CONFIG_FMAN_ENET 1242 CONFIG_FMAN_ENET
1244 CONFIG_FM_PLAT_CLK_DIV 1243 CONFIG_FM_PLAT_CLK_DIV
1245 CONFIG_FO300 1244 CONFIG_FO300
1246 CONFIG_FORCE_DDR_DATA_BUS_WIDTH_32 1245 CONFIG_FORCE_DDR_DATA_BUS_WIDTH_32
1247 CONFIG_FORMIKE 1246 CONFIG_FORMIKE
1248 CONFIG_FPGA_ALTERA 1247 CONFIG_FPGA_ALTERA
1249 CONFIG_FPGA_COUNT 1248 CONFIG_FPGA_COUNT
1250 CONFIG_FPGA_CYCLON2 1249 CONFIG_FPGA_CYCLON2
1251 CONFIG_FPGA_DELAY 1250 CONFIG_FPGA_DELAY
1252 CONFIG_FPGA_SOCFPGA 1251 CONFIG_FPGA_SOCFPGA
1253 CONFIG_FPGA_SPARTAN2 1252 CONFIG_FPGA_SPARTAN2
1254 CONFIG_FPGA_SPARTAN3 1253 CONFIG_FPGA_SPARTAN3
1255 CONFIG_FPGA_STRATIX_V 1254 CONFIG_FPGA_STRATIX_V
1256 CONFIG_FPGA_ZYNQPL 1255 CONFIG_FPGA_ZYNQPL
1257 CONFIG_FSLDMAFEC 1256 CONFIG_FSLDMAFEC
1258 CONFIG_FSL_CADMUS 1257 CONFIG_FSL_CADMUS
1259 CONFIG_FSL_CORENET 1258 CONFIG_FSL_CORENET
1260 CONFIG_FSL_CPLD 1259 CONFIG_FSL_CPLD
1261 CONFIG_FSL_DCU_FB 1260 CONFIG_FSL_DCU_FB
1262 CONFIG_FSL_DCU_SII9022A 1261 CONFIG_FSL_DCU_SII9022A
1263 CONFIG_FSL_DDR_BIST 1262 CONFIG_FSL_DDR_BIST
1264 CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE 1263 CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
1265 CONFIG_FSL_DDR_INTERACTIVE 1264 CONFIG_FSL_DDR_INTERACTIVE
1266 CONFIG_FSL_DDR_SYNC_REFRESH 1265 CONFIG_FSL_DDR_SYNC_REFRESH
1267 CONFIG_FSL_DEBUG_SERVER 1266 CONFIG_FSL_DEBUG_SERVER
1268 CONFIG_FSL_DEEP_SLEEP 1267 CONFIG_FSL_DEEP_SLEEP
1269 CONFIG_FSL_DEVICE_DISABLE 1268 CONFIG_FSL_DEVICE_DISABLE
1270 CONFIG_FSL_DIU_CH7301 1269 CONFIG_FSL_DIU_CH7301
1271 CONFIG_FSL_DIU_FB 1270 CONFIG_FSL_DIU_FB
1272 CONFIG_FSL_DMA 1271 CONFIG_FSL_DMA
1273 CONFIG_FSL_DSPI1 1272 CONFIG_FSL_DSPI1
1274 CONFIG_FSL_ELBC 1273 CONFIG_FSL_ELBC
1275 CONFIG_FSL_ESDHC 1274 CONFIG_FSL_ESDHC
1276 CONFIG_FSL_ESDHC_ADAPTER_IDENT 1275 CONFIG_FSL_ESDHC_ADAPTER_IDENT
1277 CONFIG_FSL_ESDHC_PIN_MUX 1276 CONFIG_FSL_ESDHC_PIN_MUX
1278 CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK 1277 CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK
1279 CONFIG_FSL_FIXED_MMC_LOCATION 1278 CONFIG_FSL_FIXED_MMC_LOCATION
1280 CONFIG_FSL_FM_10GEC_REGULAR_NOTATION 1279 CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
1281 CONFIG_FSL_I2C_CUSTOM_DFSR 1280 CONFIG_FSL_I2C_CUSTOM_DFSR
1282 CONFIG_FSL_I2C_CUSTOM_FDR 1281 CONFIG_FSL_I2C_CUSTOM_FDR
1283 CONFIG_FSL_IFC 1282 CONFIG_FSL_IFC
1284 CONFIG_FSL_IIM 1283 CONFIG_FSL_IIM
1285 CONFIG_FSL_ISBC_KEY_EXT 1284 CONFIG_FSL_ISBC_KEY_EXT
1286 CONFIG_FSL_LAW 1285 CONFIG_FSL_LAW
1287 CONFIG_FSL_LAYERSCAPE 1286 CONFIG_FSL_LAYERSCAPE
1288 CONFIG_FSL_LBC 1287 CONFIG_FSL_LBC
1289 CONFIG_FSL_LINFLEXUART 1288 CONFIG_FSL_LINFLEXUART
1290 CONFIG_FSL_LS_PPA 1289 CONFIG_FSL_LS_PPA
1291 CONFIG_FSL_MC9SDZ60 1290 CONFIG_FSL_MC9SDZ60
1292 CONFIG_FSL_MC_ENET 1291 CONFIG_FSL_MC_ENET
1293 CONFIG_FSL_MEMAC 1292 CONFIG_FSL_MEMAC
1294 CONFIG_FSL_NFC_CHIPS 1293 CONFIG_FSL_NFC_CHIPS
1295 CONFIG_FSL_NFC_SPARE_SIZE 1294 CONFIG_FSL_NFC_SPARE_SIZE
1296 CONFIG_FSL_NFC_WIDTH 1295 CONFIG_FSL_NFC_WIDTH
1297 CONFIG_FSL_NFC_WRITE_SIZE 1296 CONFIG_FSL_NFC_WRITE_SIZE
1298 CONFIG_FSL_NGPIXIS 1297 CONFIG_FSL_NGPIXIS
1299 CONFIG_FSL_PCIE_DISABLE_ASPM 1298 CONFIG_FSL_PCIE_DISABLE_ASPM
1300 CONFIG_FSL_PCIE_RESET 1299 CONFIG_FSL_PCIE_RESET
1301 CONFIG_FSL_PCI_INIT 1300 CONFIG_FSL_PCI_INIT
1302 CONFIG_FSL_PIXIS 1301 CONFIG_FSL_PIXIS
1303 CONFIG_FSL_PMIC_BITLEN 1302 CONFIG_FSL_PMIC_BITLEN
1304 CONFIG_FSL_PMIC_BUS 1303 CONFIG_FSL_PMIC_BUS
1305 CONFIG_FSL_PMIC_CLK 1304 CONFIG_FSL_PMIC_CLK
1306 CONFIG_FSL_PMIC_CS 1305 CONFIG_FSL_PMIC_CS
1307 CONFIG_FSL_PMIC_MODE 1306 CONFIG_FSL_PMIC_MODE
1308 CONFIG_FSL_QIXIS 1307 CONFIG_FSL_QIXIS
1309 CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT 1308 CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT
1310 CONFIG_FSL_QIXIS_V2 1309 CONFIG_FSL_QIXIS_V2
1311 CONFIG_FSL_SATA 1310 CONFIG_FSL_SATA
1312 CONFIG_FSL_SATA_ERRATUM_A001 1311 CONFIG_FSL_SATA_ERRATUM_A001
1313 CONFIG_FSL_SATA_V2 1312 CONFIG_FSL_SATA_V2
1314 CONFIG_FSL_SDHC_V2_3 1313 CONFIG_FSL_SDHC_V2_3
1315 CONFIG_FSL_SDRAM_TYPE 1314 CONFIG_FSL_SDRAM_TYPE
1316 CONFIG_FSL_SERDES 1315 CONFIG_FSL_SERDES
1317 CONFIG_FSL_SERDES1 1316 CONFIG_FSL_SERDES1
1318 CONFIG_FSL_SERDES2 1317 CONFIG_FSL_SERDES2
1319 CONFIG_FSL_SGMII_RISER 1318 CONFIG_FSL_SGMII_RISER
1320 CONFIG_FSL_SPI_INTERFACE 1319 CONFIG_FSL_SPI_INTERFACE
1321 CONFIG_FSL_TBCLK_EXTRA_DIV 1320 CONFIG_FSL_TBCLK_EXTRA_DIV
1322 CONFIG_FSL_TRUST_ARCH_v1 1321 CONFIG_FSL_TRUST_ARCH_v1
1323 CONFIG_FSL_TZASC_400 1322 CONFIG_FSL_TZASC_400
1324 CONFIG_FSL_TZPC_BP147 1323 CONFIG_FSL_TZPC_BP147
1325 CONFIG_FSL_USDHC 1324 CONFIG_FSL_USDHC
1326 CONFIG_FSL_VIA 1325 CONFIG_FSL_VIA
1327 CONFIG_FSMC_NAND_BASE 1326 CONFIG_FSMC_NAND_BASE
1328 CONFIG_FSMTDBLK 1327 CONFIG_FSMTDBLK
1329 CONFIG_FSNOTIFY 1328 CONFIG_FSNOTIFY
1330 CONFIG_FS_EXT4 1329 CONFIG_FS_EXT4
1331 CONFIG_FS_FAT 1330 CONFIG_FS_FAT
1332 CONFIG_FS_FAT_MAX_CLUSTSIZE 1331 CONFIG_FS_FAT_MAX_CLUSTSIZE
1333 CONFIG_FS_POSIX_ACL 1332 CONFIG_FS_POSIX_ACL
1334 CONFIG_FTAHBC020S 1333 CONFIG_FTAHBC020S
1335 CONFIG_FTAHBC020S_BASE 1334 CONFIG_FTAHBC020S_BASE
1336 CONFIG_FTAPBBRG020S_01_BASE 1335 CONFIG_FTAPBBRG020S_01_BASE
1337 CONFIG_FTCFC010_BASE 1336 CONFIG_FTCFC010_BASE
1338 CONFIG_FTDMAC020_BASE 1337 CONFIG_FTDMAC020_BASE
1339 CONFIG_FTGMAC100_BASE 1338 CONFIG_FTGMAC100_BASE
1340 CONFIG_FTGMAC100_EGIGA 1339 CONFIG_FTGMAC100_EGIGA
1341 CONFIG_FTGPIO010_BASE 1340 CONFIG_FTGPIO010_BASE
1342 CONFIG_FTI2C010_BASE1 1341 CONFIG_FTI2C010_BASE1
1343 CONFIG_FTI2C010_BASE2 1342 CONFIG_FTI2C010_BASE2
1344 CONFIG_FTI2C010_BASE3 1343 CONFIG_FTI2C010_BASE3
1345 CONFIG_FTI2C010_CLOCK 1344 CONFIG_FTI2C010_CLOCK
1346 CONFIG_FTI2C010_TIMEOUT 1345 CONFIG_FTI2C010_TIMEOUT
1347 CONFIG_FTIDE020S_BASE 1346 CONFIG_FTIDE020S_BASE
1348 CONFIG_FTIIC010_BASE 1347 CONFIG_FTIIC010_BASE
1349 CONFIG_FTINTC010_BASE 1348 CONFIG_FTINTC010_BASE
1350 CONFIG_FTLCDC100_BASE 1349 CONFIG_FTLCDC100_BASE
1351 CONFIG_FTMAC100 1350 CONFIG_FTMAC100
1352 CONFIG_FTMAC100_BASE 1351 CONFIG_FTMAC100_BASE
1353 CONFIG_FTMAC110_BASE 1352 CONFIG_FTMAC110_BASE
1354 CONFIG_FTPCI100_BASE 1353 CONFIG_FTPCI100_BASE
1355 CONFIG_FTPCI100_IO_SIZE 1354 CONFIG_FTPCI100_IO_SIZE
1356 CONFIG_FTPCI100_MEM_BASE 1355 CONFIG_FTPCI100_MEM_BASE
1357 CONFIG_FTPCI100_MEM_SIZE 1356 CONFIG_FTPCI100_MEM_SIZE
1358 CONFIG_FTPMU010 1357 CONFIG_FTPMU010
1359 CONFIG_FTPMU010_BASE 1358 CONFIG_FTPMU010_BASE
1360 CONFIG_FTPMU010_POWER 1359 CONFIG_FTPMU010_POWER
1361 CONFIG_FTPWM010_BASE 1360 CONFIG_FTPWM010_BASE
1362 CONFIG_FTRACE_MCOUNT_RECORD 1361 CONFIG_FTRACE_MCOUNT_RECORD
1363 CONFIG_FTRTC010_BASE 1362 CONFIG_FTRTC010_BASE
1364 CONFIG_FTRTC010_EXTCLK 1363 CONFIG_FTRTC010_EXTCLK
1365 CONFIG_FTRTC010_PCLK 1364 CONFIG_FTRTC010_PCLK
1366 CONFIG_FTSDC010 1365 CONFIG_FTSDC010
1367 CONFIG_FTSDC010_BASE 1366 CONFIG_FTSDC010_BASE
1368 CONFIG_FTSDC010_BASE_LIST 1367 CONFIG_FTSDC010_BASE_LIST
1369 CONFIG_FTSDC010_NUMBER 1368 CONFIG_FTSDC010_NUMBER
1370 CONFIG_FTSDC010_SDIO 1369 CONFIG_FTSDC010_SDIO
1371 CONFIG_FTSDC021_CLOCK 1370 CONFIG_FTSDC021_CLOCK
1372 CONFIG_FTSDMC021 1371 CONFIG_FTSDMC021
1373 CONFIG_FTSDMC021_BASE 1372 CONFIG_FTSDMC021_BASE
1374 CONFIG_FTSMC020 1373 CONFIG_FTSMC020
1375 CONFIG_FTSMC020_BASE 1374 CONFIG_FTSMC020_BASE
1376 CONFIG_FTSSP010_01_BASE 1375 CONFIG_FTSSP010_01_BASE
1377 CONFIG_FTSSP010_02_BASE 1376 CONFIG_FTSSP010_02_BASE
1378 CONFIG_FTTMR010_BASE 1377 CONFIG_FTTMR010_BASE
1379 CONFIG_FTTMR010_EXT_CLK 1378 CONFIG_FTTMR010_EXT_CLK
1380 CONFIG_FTUART010_01_BASE 1379 CONFIG_FTUART010_01_BASE
1381 CONFIG_FTUART010_02_BASE 1380 CONFIG_FTUART010_02_BASE
1382 CONFIG_FTUART010_03_BASE 1381 CONFIG_FTUART010_03_BASE
1383 CONFIG_FTWDT010_BASE 1382 CONFIG_FTWDT010_BASE
1384 CONFIG_FTWDT010_WATCHDOG 1383 CONFIG_FTWDT010_WATCHDOG
1385 CONFIG_FUNC_ISRAM_ADDR 1384 CONFIG_FUNC_ISRAM_ADDR
1386 CONFIG_FWUPDATE_DEBUG 1385 CONFIG_FWUPDATE_DEBUG
1387 CONFIG_FZOTG266HD0A_BASE 1386 CONFIG_FZOTG266HD0A_BASE
1388 CONFIG_GATEWAYIP 1387 CONFIG_GATEWAYIP
1389 CONFIG_GCOV_KERNEL 1388 CONFIG_GCOV_KERNEL
1390 CONFIG_GCOV_PROFILE_ALL 1389 CONFIG_GCOV_PROFILE_ALL
1391 CONFIG_GENERIC_ATMEL_MCI 1390 CONFIG_GENERIC_ATMEL_MCI
1392 CONFIG_GENERIC_MMC 1391 CONFIG_GENERIC_MMC
1393 CONFIG_GICV2 1392 CONFIG_GICV2
1394 CONFIG_GICV3 1393 CONFIG_GICV3
1395 CONFIG_GLOBAL_DATA_NOT_REG10 1394 CONFIG_GLOBAL_DATA_NOT_REG10
1396 CONFIG_GLOBAL_TIMER 1395 CONFIG_GLOBAL_TIMER
1397 CONFIG_GMII 1396 CONFIG_GMII
1398 CONFIG_GOOD_SESH4 1397 CONFIG_GOOD_SESH4
1399 CONFIG_GPCNTRL 1398 CONFIG_GPCNTRL
1400 CONFIG_GPCS_PHY1_ADDR 1399 CONFIG_GPCS_PHY1_ADDR
1401 CONFIG_GPCS_PHY2_ADDR 1400 CONFIG_GPCS_PHY2_ADDR
1402 CONFIG_GPCS_PHY3_ADDR 1401 CONFIG_GPCS_PHY3_ADDR
1403 CONFIG_GPCS_PHY_ADDR 1402 CONFIG_GPCS_PHY_ADDR
1404 CONFIG_GPIO 1403 CONFIG_GPIO
1405 CONFIG_GPIO_ENABLE_SPI_FLASH 1404 CONFIG_GPIO_ENABLE_SPI_FLASH
1406 CONFIG_GPIO_LED 1405 CONFIG_GPIO_LED
1407 CONFIG_GPIO_LED_INVERTED_TABLE 1406 CONFIG_GPIO_LED_INVERTED_TABLE
1408 CONFIG_GPIO_LED_STUBS 1407 CONFIG_GPIO_LED_STUBS
1409 CONFIG_GREEN_LED 1408 CONFIG_GREEN_LED
1410 CONFIG_GRETH 1409 CONFIG_GRETH
1411 CONFIG_GRETH_10MBIT 1410 CONFIG_GRETH_10MBIT
1412 CONFIG_GRSIM 1411 CONFIG_GRSIM
1413 CONFIG_GRXC3S1500 1412 CONFIG_GRXC3S1500
1414 CONFIG_GR_EP2S60 1413 CONFIG_GR_EP2S60
1415 CONFIG_GURNARD_FPGA 1414 CONFIG_GURNARD_FPGA
1416 CONFIG_GURNARD_SPLASH 1415 CONFIG_GURNARD_SPLASH
1417 CONFIG_GZIP 1416 CONFIG_GZIP
1418 CONFIG_GZIP_COMPRESSED 1417 CONFIG_GZIP_COMPRESSED
1419 CONFIG_GZIP_COMPRESS_DEF_SZ 1418 CONFIG_GZIP_COMPRESS_DEF_SZ
1420 CONFIG_G_DNL_THOR_PRODUCT_NUM 1419 CONFIG_G_DNL_THOR_PRODUCT_NUM
1421 CONFIG_G_DNL_THOR_VENDOR_NUM 1420 CONFIG_G_DNL_THOR_VENDOR_NUM
1422 CONFIG_G_DNL_UMS_PRODUCT_NUM 1421 CONFIG_G_DNL_UMS_PRODUCT_NUM
1423 CONFIG_G_DNL_UMS_VENDOR_NUM 1422 CONFIG_G_DNL_UMS_VENDOR_NUM
1424 CONFIG_H264_FREQ 1423 CONFIG_H264_FREQ
1425 CONFIG_H8300 1424 CONFIG_H8300
1426 CONFIG_HALEAKALA 1425 CONFIG_HALEAKALA
1427 CONFIG_HARD_I2C 1426 CONFIG_HARD_I2C
1428 CONFIG_HARD_SPI 1427 CONFIG_HARD_SPI
1429 CONFIG_HASH_VERIFY 1428 CONFIG_HASH_VERIFY
1430 CONFIG_HAS_DATAFLASH 1429 CONFIG_HAS_DATAFLASH
1431 CONFIG_HAS_ETH0 1430 CONFIG_HAS_ETH0
1432 CONFIG_HAS_ETH1 1431 CONFIG_HAS_ETH1
1433 CONFIG_HAS_ETH2 1432 CONFIG_HAS_ETH2
1434 CONFIG_HAS_ETH3 1433 CONFIG_HAS_ETH3
1435 CONFIG_HAS_ETH4 1434 CONFIG_HAS_ETH4
1436 CONFIG_HAS_ETH5 1435 CONFIG_HAS_ETH5
1437 CONFIG_HAS_ETH7 1436 CONFIG_HAS_ETH7
1438 CONFIG_HAS_FEC 1437 CONFIG_HAS_FEC
1439 CONFIG_HAS_FSL_DR_USB 1438 CONFIG_HAS_FSL_DR_USB
1440 CONFIG_HAS_FSL_MPH_USB 1439 CONFIG_HAS_FSL_MPH_USB
1441 CONFIG_HAS_FSL_XHCI_USB 1440 CONFIG_HAS_FSL_XHCI_USB
1442 CONFIG_HAS_POST 1441 CONFIG_HAS_POST
1443 CONFIG_HAS_VR 1442 CONFIG_HAS_VR
1444 CONFIG_HAVE_ACPI_RESUME 1443 CONFIG_HAVE_ACPI_RESUME
1445 CONFIG_HAVE_OWN_RESET 1444 CONFIG_HAVE_OWN_RESET
1446 CONFIG_HCLK_FREQ 1445 CONFIG_HCLK_FREQ
1447 CONFIG_HDBOOT 1446 CONFIG_HDBOOT
1448 CONFIG_HDMI_ENCODER_I2C_ADDR 1447 CONFIG_HDMI_ENCODER_I2C_ADDR
1449 CONFIG_HETROGENOUS_CLUSTERS 1448 CONFIG_HETROGENOUS_CLUSTERS
1450 CONFIG_HIDE_LOGO_VERSION 1449 CONFIG_HIDE_LOGO_VERSION
1451 CONFIG_HIGH_BATS 1450 CONFIG_HIGH_BATS
1452 CONFIG_HIKEY_DWMMC 1451 CONFIG_HIKEY_DWMMC
1453 CONFIG_HIKEY_GPIO 1452 CONFIG_HIKEY_GPIO
1454 CONFIG_HIS_DRIVER 1453 CONFIG_HIS_DRIVER
1455 CONFIG_HITACHI_SP19X001_Z1A 1454 CONFIG_HITACHI_SP19X001_Z1A
1456 CONFIG_HITACHI_SX14 1455 CONFIG_HITACHI_SX14
1457 CONFIG_HLD1045 1456 CONFIG_HLD1045
1458 CONFIG_HOSTNAME 1457 CONFIG_HOSTNAME
1459 CONFIG_HOST_MAX_DEVICES 1458 CONFIG_HOST_MAX_DEVICES
1460 CONFIG_HOTPLUG 1459 CONFIG_HOTPLUG
1461 CONFIG_HPS_ALTERAGRP_DBGATCLK 1460 CONFIG_HPS_ALTERAGRP_DBGATCLK
1462 CONFIG_HPS_ALTERAGRP_MAINCLK 1461 CONFIG_HPS_ALTERAGRP_MAINCLK
1463 CONFIG_HPS_ALTERAGRP_MPUCLK 1462 CONFIG_HPS_ALTERAGRP_MPUCLK
1464 CONFIG_HPS_CLK_CAN0_HZ 1463 CONFIG_HPS_CLK_CAN0_HZ
1465 CONFIG_HPS_CLK_CAN1_HZ 1464 CONFIG_HPS_CLK_CAN1_HZ
1466 CONFIG_HPS_CLK_EMAC0_HZ 1465 CONFIG_HPS_CLK_EMAC0_HZ
1467 CONFIG_HPS_CLK_EMAC1_HZ 1466 CONFIG_HPS_CLK_EMAC1_HZ
1468 CONFIG_HPS_CLK_F2S_PER_REF_HZ 1467 CONFIG_HPS_CLK_F2S_PER_REF_HZ
1469 CONFIG_HPS_CLK_F2S_SDR_REF_HZ 1468 CONFIG_HPS_CLK_F2S_SDR_REF_HZ
1470 CONFIG_HPS_CLK_GPIODB_HZ 1469 CONFIG_HPS_CLK_GPIODB_HZ
1471 CONFIG_HPS_CLK_L4_MP_HZ 1470 CONFIG_HPS_CLK_L4_MP_HZ
1472 CONFIG_HPS_CLK_L4_SP_HZ 1471 CONFIG_HPS_CLK_L4_SP_HZ
1473 CONFIG_HPS_CLK_MAINVCO_HZ 1472 CONFIG_HPS_CLK_MAINVCO_HZ
1474 CONFIG_HPS_CLK_NAND_HZ 1473 CONFIG_HPS_CLK_NAND_HZ
1475 CONFIG_HPS_CLK_OSC1_HZ 1474 CONFIG_HPS_CLK_OSC1_HZ
1476 CONFIG_HPS_CLK_OSC2_HZ 1475 CONFIG_HPS_CLK_OSC2_HZ
1477 CONFIG_HPS_CLK_PERVCO_HZ 1476 CONFIG_HPS_CLK_PERVCO_HZ
1478 CONFIG_HPS_CLK_QSPI_HZ 1477 CONFIG_HPS_CLK_QSPI_HZ
1479 CONFIG_HPS_CLK_SDMMC_HZ 1478 CONFIG_HPS_CLK_SDMMC_HZ
1480 CONFIG_HPS_CLK_SDRVCO_HZ 1479 CONFIG_HPS_CLK_SDRVCO_HZ
1481 CONFIG_HPS_CLK_SPIM_HZ 1480 CONFIG_HPS_CLK_SPIM_HZ
1482 CONFIG_HPS_CLK_USBCLK_HZ 1481 CONFIG_HPS_CLK_USBCLK_HZ
1483 CONFIG_HPS_DBCTRL_STAYOSC1 1482 CONFIG_HPS_DBCTRL_STAYOSC1
1484 CONFIG_HPS_IOCSR_SCANCHAIN0_LENGTH 1483 CONFIG_HPS_IOCSR_SCANCHAIN0_LENGTH
1485 CONFIG_HPS_IOCSR_SCANCHAIN1_LENGTH 1484 CONFIG_HPS_IOCSR_SCANCHAIN1_LENGTH
1486 CONFIG_HPS_IOCSR_SCANCHAIN2_LENGTH 1485 CONFIG_HPS_IOCSR_SCANCHAIN2_LENGTH
1487 CONFIG_HPS_IOCSR_SCANCHAIN3_LENGTH 1486 CONFIG_HPS_IOCSR_SCANCHAIN3_LENGTH
1488 CONFIG_HPS_MAINPLLGRP_CFGS2FUSER0CLK_CNT 1487 CONFIG_HPS_MAINPLLGRP_CFGS2FUSER0CLK_CNT
1489 CONFIG_HPS_MAINPLLGRP_DBGATCLK_CNT 1488 CONFIG_HPS_MAINPLLGRP_DBGATCLK_CNT
1490 CONFIG_HPS_MAINPLLGRP_DBGDIV_DBGATCLK 1489 CONFIG_HPS_MAINPLLGRP_DBGDIV_DBGATCLK
1491 CONFIG_HPS_MAINPLLGRP_DBGDIV_DBGCLK 1490 CONFIG_HPS_MAINPLLGRP_DBGDIV_DBGCLK
1492 CONFIG_HPS_MAINPLLGRP_L4SRC_L4MP 1491 CONFIG_HPS_MAINPLLGRP_L4SRC_L4MP
1493 CONFIG_HPS_MAINPLLGRP_L4SRC_L4SP 1492 CONFIG_HPS_MAINPLLGRP_L4SRC_L4SP
1494 CONFIG_HPS_MAINPLLGRP_MAINCLK_CNT 1493 CONFIG_HPS_MAINPLLGRP_MAINCLK_CNT
1495 CONFIG_HPS_MAINPLLGRP_MAINDIV_L3MPCLK 1494 CONFIG_HPS_MAINPLLGRP_MAINDIV_L3MPCLK
1496 CONFIG_HPS_MAINPLLGRP_MAINDIV_L3SPCLK 1495 CONFIG_HPS_MAINPLLGRP_MAINDIV_L3SPCLK
1497 CONFIG_HPS_MAINPLLGRP_MAINDIV_L4MPCLK 1496 CONFIG_HPS_MAINPLLGRP_MAINDIV_L4MPCLK
1498 CONFIG_HPS_MAINPLLGRP_MAINDIV_L4SPCLK 1497 CONFIG_HPS_MAINPLLGRP_MAINDIV_L4SPCLK
1499 CONFIG_HPS_MAINPLLGRP_MAINNANDSDMMCCLK_CNT 1498 CONFIG_HPS_MAINPLLGRP_MAINNANDSDMMCCLK_CNT
1500 CONFIG_HPS_MAINPLLGRP_MAINQSPICLK_CNT 1499 CONFIG_HPS_MAINPLLGRP_MAINQSPICLK_CNT
1501 CONFIG_HPS_MAINPLLGRP_MPUCLK_CNT 1500 CONFIG_HPS_MAINPLLGRP_MPUCLK_CNT
1502 CONFIG_HPS_MAINPLLGRP_TRACEDIV_TRACECLK 1501 CONFIG_HPS_MAINPLLGRP_TRACEDIV_TRACECLK
1503 CONFIG_HPS_MAINPLLGRP_VCO_DENOM 1502 CONFIG_HPS_MAINPLLGRP_VCO_DENOM
1504 CONFIG_HPS_MAINPLLGRP_VCO_NUMER 1503 CONFIG_HPS_MAINPLLGRP_VCO_NUMER
1505 CONFIG_HPS_PERPLLGRP_DIV_CAN0CLK 1504 CONFIG_HPS_PERPLLGRP_DIV_CAN0CLK
1506 CONFIG_HPS_PERPLLGRP_DIV_CAN1CLK 1505 CONFIG_HPS_PERPLLGRP_DIV_CAN1CLK
1507 CONFIG_HPS_PERPLLGRP_DIV_SPIMCLK 1506 CONFIG_HPS_PERPLLGRP_DIV_SPIMCLK
1508 CONFIG_HPS_PERPLLGRP_DIV_USBCLK 1507 CONFIG_HPS_PERPLLGRP_DIV_USBCLK
1509 CONFIG_HPS_PERPLLGRP_EMAC0CLK_CNT 1508 CONFIG_HPS_PERPLLGRP_EMAC0CLK_CNT
1510 CONFIG_HPS_PERPLLGRP_EMAC1CLK_CNT 1509 CONFIG_HPS_PERPLLGRP_EMAC1CLK_CNT
1511 CONFIG_HPS_PERPLLGRP_GPIODIV_GPIODBCLK 1510 CONFIG_HPS_PERPLLGRP_GPIODIV_GPIODBCLK
1512 CONFIG_HPS_PERPLLGRP_PERBASECLK_CNT 1511 CONFIG_HPS_PERPLLGRP_PERBASECLK_CNT
1513 CONFIG_HPS_PERPLLGRP_PERNANDSDMMCCLK_CNT 1512 CONFIG_HPS_PERPLLGRP_PERNANDSDMMCCLK_CNT
1514 CONFIG_HPS_PERPLLGRP_PERQSPICLK_CNT 1513 CONFIG_HPS_PERPLLGRP_PERQSPICLK_CNT
1515 CONFIG_HPS_PERPLLGRP_S2FUSER1CLK_CNT 1514 CONFIG_HPS_PERPLLGRP_S2FUSER1CLK_CNT
1516 CONFIG_HPS_PERPLLGRP_SRC_NAND 1515 CONFIG_HPS_PERPLLGRP_SRC_NAND
1517 CONFIG_HPS_PERPLLGRP_SRC_QSPI 1516 CONFIG_HPS_PERPLLGRP_SRC_QSPI
1518 CONFIG_HPS_PERPLLGRP_SRC_SDMMC 1517 CONFIG_HPS_PERPLLGRP_SRC_SDMMC
1519 CONFIG_HPS_PERPLLGRP_VCO_DENOM 1518 CONFIG_HPS_PERPLLGRP_VCO_DENOM
1520 CONFIG_HPS_PERPLLGRP_VCO_NUMER 1519 CONFIG_HPS_PERPLLGRP_VCO_NUMER
1521 CONFIG_HPS_PERPLLGRP_VCO_PSRC 1520 CONFIG_HPS_PERPLLGRP_VCO_PSRC
1522 CONFIG_HPS_SDRPLLGRP_DDR2XDQSCLK_CNT 1521 CONFIG_HPS_SDRPLLGRP_DDR2XDQSCLK_CNT
1523 CONFIG_HPS_SDRPLLGRP_DDR2XDQSCLK_PHASE 1522 CONFIG_HPS_SDRPLLGRP_DDR2XDQSCLK_PHASE
1524 CONFIG_HPS_SDRPLLGRP_DDRDQCLK_CNT 1523 CONFIG_HPS_SDRPLLGRP_DDRDQCLK_CNT
1525 CONFIG_HPS_SDRPLLGRP_DDRDQCLK_PHASE 1524 CONFIG_HPS_SDRPLLGRP_DDRDQCLK_PHASE
1526 CONFIG_HPS_SDRPLLGRP_DDRDQSCLK_CNT 1525 CONFIG_HPS_SDRPLLGRP_DDRDQSCLK_CNT
1527 CONFIG_HPS_SDRPLLGRP_DDRDQSCLK_PHASE 1526 CONFIG_HPS_SDRPLLGRP_DDRDQSCLK_PHASE
1528 CONFIG_HPS_SDRPLLGRP_S2FUSER2CLK_CNT 1527 CONFIG_HPS_SDRPLLGRP_S2FUSER2CLK_CNT
1529 CONFIG_HPS_SDRPLLGRP_S2FUSER2CLK_PHASE 1528 CONFIG_HPS_SDRPLLGRP_S2FUSER2CLK_PHASE
1530 CONFIG_HPS_SDRPLLGRP_VCO_DENOM 1529 CONFIG_HPS_SDRPLLGRP_VCO_DENOM
1531 CONFIG_HPS_SDRPLLGRP_VCO_NUMER 1530 CONFIG_HPS_SDRPLLGRP_VCO_NUMER
1532 CONFIG_HPS_SDRPLLGRP_VCO_SSRC 1531 CONFIG_HPS_SDRPLLGRP_VCO_SSRC
1533 CONFIG_HPS_SDR_CTRLCFG_CPORTRDWR_CPORTRDWR 1532 CONFIG_HPS_SDR_CTRLCFG_CPORTRDWR_CPORTRDWR
1534 CONFIG_HPS_SDR_CTRLCFG_CPORTRMAP_CPORTRMAP 1533 CONFIG_HPS_SDR_CTRLCFG_CPORTRMAP_CPORTRMAP
1535 CONFIG_HPS_SDR_CTRLCFG_CPORTWIDTH_CPORTWIDTH 1534 CONFIG_HPS_SDR_CTRLCFG_CPORTWIDTH_CPORTWIDTH
1536 CONFIG_HPS_SDR_CTRLCFG_CPORTWMAP_CPORTWMAP 1535 CONFIG_HPS_SDR_CTRLCFG_CPORTWMAP_CPORTWMAP
1537 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ADDRORDER 1536 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ADDRORDER
1538 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_DQSTRKEN 1537 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_DQSTRKEN
1539 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ECCCORREN 1538 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ECCCORREN
1540 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ECCEN 1539 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_ECCEN
1541 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_MEMBL 1540 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_MEMBL
1542 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_MEMTYPE 1541 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_MEMTYPE
1543 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_NODMPINS 1542 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_NODMPINS
1544 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_REORDEREN 1543 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_REORDEREN
1545 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_STARVELIMIT 1544 CONFIG_HPS_SDR_CTRLCFG_CTRLCFG_STARVELIMIT
1546 CONFIG_HPS_SDR_CTRLCFG_CTRLWIDTH_CTRLWIDTH 1545 CONFIG_HPS_SDR_CTRLCFG_CTRLWIDTH_CTRLWIDTH
1547 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_BANKBITS 1546 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_BANKBITS
1548 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_COLBITS 1547 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_COLBITS
1549 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_CSBITS 1548 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_CSBITS
1550 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_ROWBITS 1549 CONFIG_HPS_SDR_CTRLCFG_DRAMADDRW_ROWBITS
1551 CONFIG_HPS_SDR_CTRLCFG_DRAMDEVWIDTH_DEVWIDTH 1550 CONFIG_HPS_SDR_CTRLCFG_DRAMDEVWIDTH_DEVWIDTH
1552 CONFIG_HPS_SDR_CTRLCFG_DRAMIFWIDTH_IFWIDTH 1551 CONFIG_HPS_SDR_CTRLCFG_DRAMIFWIDTH_IFWIDTH
1553 CONFIG_HPS_SDR_CTRLCFG_DRAMINTR_INTREN 1552 CONFIG_HPS_SDR_CTRLCFG_DRAMINTR_INTREN
1554 CONFIG_HPS_SDR_CTRLCFG_DRAMODT_READ 1553 CONFIG_HPS_SDR_CTRLCFG_DRAMODT_READ
1555 CONFIG_HPS_SDR_CTRLCFG_DRAMODT_WRITE 1554 CONFIG_HPS_SDR_CTRLCFG_DRAMODT_WRITE
1556 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_AL 1555 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_AL
1557 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TCL 1556 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TCL
1558 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TCWL 1557 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TCWL
1559 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TFAW 1558 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TFAW
1560 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TRFC 1559 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TRFC
1561 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TRRD 1560 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING1_TRRD
1562 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TRCD 1561 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TRCD
1563 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TREFI 1562 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TREFI
1564 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TRP 1563 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TRP
1565 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TWR 1564 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TWR
1566 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TWTR 1565 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING2_IF_TWTR
1567 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TCCD 1566 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TCCD
1568 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TMRD 1567 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TMRD
1569 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRAS 1568 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRAS
1570 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRC 1569 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRC
1571 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRTP 1570 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING3_TRTP
1572 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING4_PWRDOWNEXIT 1571 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING4_PWRDOWNEXIT
1573 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING4_SELFRFSHEXIT 1572 CONFIG_HPS_SDR_CTRLCFG_DRAMTIMING4_SELFRFSHEXIT
1574 CONFIG_HPS_SDR_CTRLCFG_FIFOCFG_INCSYNC 1573 CONFIG_HPS_SDR_CTRLCFG_FIFOCFG_INCSYNC
1575 CONFIG_HPS_SDR_CTRLCFG_FIFOCFG_SYNCMODE 1574 CONFIG_HPS_SDR_CTRLCFG_FIFOCFG_SYNCMODE
1576 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST 1575 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST
1577 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_COMMAND_PORT_USED 1576 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_COMMAND_PORT_USED
1578 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_READ_PORT_USED 1577 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_READ_PORT_USED
1579 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_WRITE_PORT_USED 1578 CONFIG_HPS_SDR_CTRLCFG_FPGAPORTRST_WRITE_PORT_USED
1580 CONFIG_HPS_SDR_CTRLCFG_LOWPWREQ_SELFRFSHMASK 1579 CONFIG_HPS_SDR_CTRLCFG_LOWPWREQ_SELFRFSHMASK
1581 CONFIG_HPS_SDR_CTRLCFG_LOWPWRTIMING_AUTOPDCYCLES 1580 CONFIG_HPS_SDR_CTRLCFG_LOWPWRTIMING_AUTOPDCYCLES
1582 CONFIG_HPS_SDR_CTRLCFG_LOWPWRTIMING_CLKDISABLECYCLES 1581 CONFIG_HPS_SDR_CTRLCFG_LOWPWRTIMING_CLKDISABLECYCLES
1583 CONFIG_HPS_SDR_CTRLCFG_MPPACING_0_THRESHOLD1_31_0 1582 CONFIG_HPS_SDR_CTRLCFG_MPPACING_0_THRESHOLD1_31_0
1584 CONFIG_HPS_SDR_CTRLCFG_MPPACING_1_THRESHOLD1_59_32 1583 CONFIG_HPS_SDR_CTRLCFG_MPPACING_1_THRESHOLD1_59_32
1585 CONFIG_HPS_SDR_CTRLCFG_MPPACING_1_THRESHOLD2_3_0 1584 CONFIG_HPS_SDR_CTRLCFG_MPPACING_1_THRESHOLD2_3_0
1586 CONFIG_HPS_SDR_CTRLCFG_MPPACING_2_THRESHOLD2_35_4 1585 CONFIG_HPS_SDR_CTRLCFG_MPPACING_2_THRESHOLD2_35_4
1587 CONFIG_HPS_SDR_CTRLCFG_MPPACING_3_THRESHOLD2_59_36 1586 CONFIG_HPS_SDR_CTRLCFG_MPPACING_3_THRESHOLD2_59_36
1588 CONFIG_HPS_SDR_CTRLCFG_MPPRIORITY_USERPRIORITY 1587 CONFIG_HPS_SDR_CTRLCFG_MPPRIORITY_USERPRIORITY
1589 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_0_THRESHOLDRSTCYCLES_31_0 1588 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_0_THRESHOLDRSTCYCLES_31_0
1590 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_1_THRESHOLDRSTCYCLES_63_32 1589 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_1_THRESHOLDRSTCYCLES_63_32
1591 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_2_THRESHOLDRSTCYCLES_79_64 1590 CONFIG_HPS_SDR_CTRLCFG_MPTHRESHOLDRST_2_THRESHOLDRSTCYCLES_79_64
1592 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_0_STATICWEIGHT_31_0 1591 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_0_STATICWEIGHT_31_0
1593 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_1_STATICWEIGHT_49_32 1592 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_1_STATICWEIGHT_49_32
1594 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_1_SUMOFWEIGHT_13_0 1593 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_1_SUMOFWEIGHT_13_0
1595 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_2_SUMOFWEIGHT_45_14 1594 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_2_SUMOFWEIGHT_45_14
1596 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_3_SUMOFWEIGHT_63_46 1595 CONFIG_HPS_SDR_CTRLCFG_MPWIEIGHT_3_SUMOFWEIGHT_63_46
1597 CONFIG_HPS_SDR_CTRLCFG_PHYCTRL_PHYCTRL_0 1596 CONFIG_HPS_SDR_CTRLCFG_PHYCTRL_PHYCTRL_0
1598 CONFIG_HPS_SDR_CTRLCFG_PORTCFG_AUTOPCHEN 1597 CONFIG_HPS_SDR_CTRLCFG_PORTCFG_AUTOPCHEN
1599 CONFIG_HPS_SDR_CTRLCFG_RFIFOCMAP_RFIFOCMAP 1598 CONFIG_HPS_SDR_CTRLCFG_RFIFOCMAP_RFIFOCMAP
1600 CONFIG_HPS_SDR_CTRLCFG_STATICCFG_MEMBL 1599 CONFIG_HPS_SDR_CTRLCFG_STATICCFG_MEMBL
1601 CONFIG_HPS_SDR_CTRLCFG_STATICCFG_USEECCASDATA 1600 CONFIG_HPS_SDR_CTRLCFG_STATICCFG_USEECCASDATA
1602 CONFIG_HPS_SDR_CTRLCFG_WFIFOCMAP_WFIFOCMAP 1601 CONFIG_HPS_SDR_CTRLCFG_WFIFOCMAP_WFIFOCMAP
1603 CONFIG_HP_CLK_FREQ 1602 CONFIG_HP_CLK_FREQ
1604 CONFIG_HRCON 1603 CONFIG_HRCON
1605 CONFIG_HRCON_DH 1604 CONFIG_HRCON_DH
1606 CONFIG_HRCON_FANS 1605 CONFIG_HRCON_FANS
1607 CONFIG_HSMMC2_8BIT 1606 CONFIG_HSMMC2_8BIT
1608 CONFIG_HUSH_INIT_VAR 1607 CONFIG_HUSH_INIT_VAR
1609 CONFIG_HVBOOT 1608 CONFIG_HVBOOT
1610 CONFIG_HWCONFIG 1609 CONFIG_HWCONFIG
1611 CONFIG_HW_ENV_SETTINGS 1610 CONFIG_HW_ENV_SETTINGS
1612 CONFIG_HW_WATCHDOG 1611 CONFIG_HW_WATCHDOG
1613 CONFIG_HW_WATCHDOG_TIMEOUT_INITCODE 1612 CONFIG_HW_WATCHDOG_TIMEOUT_INITCODE
1614 CONFIG_HW_WATCHDOG_TIMEOUT_MS 1613 CONFIG_HW_WATCHDOG_TIMEOUT_MS
1615 CONFIG_I2C 1614 CONFIG_I2C
1616 CONFIG_I2CFAST 1615 CONFIG_I2CFAST
1617 CONFIG_I2C_CHIPADDRESS 1616 CONFIG_I2C_CHIPADDRESS
1618 CONFIG_I2C_CMD_TREE 1617 CONFIG_I2C_CMD_TREE
1619 CONFIG_I2C_ENV_EEPROM_BUS 1618 CONFIG_I2C_ENV_EEPROM_BUS
1620 CONFIG_I2C_FPGA 1619 CONFIG_I2C_FPGA
1621 CONFIG_I2C_GSC 1620 CONFIG_I2C_GSC
1622 CONFIG_I2C_MAC_OFFSET 1621 CONFIG_I2C_MAC_OFFSET
1623 CONFIG_I2C_MBB_TIMEOUT 1622 CONFIG_I2C_MBB_TIMEOUT
1624 CONFIG_I2C_MULTI_BUS 1623 CONFIG_I2C_MULTI_BUS
1625 CONFIG_I2C_MV 1624 CONFIG_I2C_MV
1626 CONFIG_I2C_MVTWSI 1625 CONFIG_I2C_MVTWSI
1627 CONFIG_I2C_MVTWSI_BASE 1626 CONFIG_I2C_MVTWSI_BASE
1628 CONFIG_I2C_MVTWSI_BASE0 1627 CONFIG_I2C_MVTWSI_BASE0
1629 CONFIG_I2C_MVTWSI_BASE1 1628 CONFIG_I2C_MVTWSI_BASE1
1630 CONFIG_I2C_MVTWSI_BASE2 1629 CONFIG_I2C_MVTWSI_BASE2
1631 CONFIG_I2C_MVTWSI_BASE3 1630 CONFIG_I2C_MVTWSI_BASE3
1632 CONFIG_I2C_MVTWSI_BASE4 1631 CONFIG_I2C_MVTWSI_BASE4
1633 CONFIG_I2C_MVTWSI_BASE5 1632 CONFIG_I2C_MVTWSI_BASE5
1634 CONFIG_I2C_MXC 1633 CONFIG_I2C_MXC
1635 CONFIG_I2C_PMIC 1634 CONFIG_I2C_PMIC
1636 CONFIG_I2C_REPEATED_START 1635 CONFIG_I2C_REPEATED_START
1637 CONFIG_I2C_RTC_ADDR 1636 CONFIG_I2C_RTC_ADDR
1638 CONFIG_I2C_TIMEOUT 1637 CONFIG_I2C_TIMEOUT
1639 CONFIG_IBM_EMAC4_V4 1638 CONFIG_IBM_EMAC4_V4
1640 CONFIG_ICACHE 1639 CONFIG_ICACHE
1641 CONFIG_ICACHE_OFF 1640 CONFIG_ICACHE_OFF
1642 CONFIG_ICON 1641 CONFIG_ICON
1643 CONFIG_ICS307_REFCLK_HZ 1642 CONFIG_ICS307_REFCLK_HZ
1644 CONFIG_IDE_8xx_DIRECT 1643 CONFIG_IDE_8xx_DIRECT
1645 CONFIG_IDE_8xx_PCCARD 1644 CONFIG_IDE_8xx_PCCARD
1646 CONFIG_IDE_INIT_POSTRESET 1645 CONFIG_IDE_INIT_POSTRESET
1647 CONFIG_IDE_LED 1646 CONFIG_IDE_LED
1648 CONFIG_IDE_PCMCIA 1647 CONFIG_IDE_PCMCIA
1649 CONFIG_IDE_PREINIT 1648 CONFIG_IDE_PREINIT
1650 CONFIG_IDE_REG_CS 1649 CONFIG_IDE_REG_CS
1651 CONFIG_IDE_RESET 1650 CONFIG_IDE_RESET
1652 CONFIG_IDE_RESET_ROUTINE 1651 CONFIG_IDE_RESET_ROUTINE
1653 CONFIG_IDE_SIL680 1652 CONFIG_IDE_SIL680
1654 CONFIG_IDE_SWAP_IO 1653 CONFIG_IDE_SWAP_IO
1655 CONFIG_IDS8313 1654 CONFIG_IDS8313
1656 CONFIG_IDT8T49N222A 1655 CONFIG_IDT8T49N222A
1657 CONFIG_ID_EEPROM 1656 CONFIG_ID_EEPROM
1658 CONFIG_IFM_DEFAULT_ENV_NEW 1657 CONFIG_IFM_DEFAULT_ENV_NEW
1659 CONFIG_IFM_DEFAULT_ENV_OLD 1658 CONFIG_IFM_DEFAULT_ENV_OLD
1660 CONFIG_IFM_DEFAULT_ENV_SETTINGS 1659 CONFIG_IFM_DEFAULT_ENV_SETTINGS
1661 CONFIG_IFM_SENSOR_TYPE 1660 CONFIG_IFM_SENSOR_TYPE
1662 CONFIG_IMA 1661 CONFIG_IMA
1663 CONFIG_IMAGE_FORMAT_LEGACY 1662 CONFIG_IMAGE_FORMAT_LEGACY
1664 CONFIG_IMX 1663 CONFIG_IMX
1665 CONFIG_IMX31_PHYCORE_EET 1664 CONFIG_IMX31_PHYCORE_EET
1666 CONFIG_IMX6_PWM_PER_CLK 1665 CONFIG_IMX6_PWM_PER_CLK
1667 CONFIG_IMX_HDMI 1666 CONFIG_IMX_HDMI
1668 CONFIG_IMX_NAND 1667 CONFIG_IMX_NAND
1669 CONFIG_IMX_OTP 1668 CONFIG_IMX_OTP
1670 CONFIG_IMX_THERMAL 1669 CONFIG_IMX_THERMAL
1671 CONFIG_IMX_VIDEO_SKIP 1670 CONFIG_IMX_VIDEO_SKIP
1672 CONFIG_IMX_WATCHDOG 1671 CONFIG_IMX_WATCHDOG
1673 CONFIG_INETSPACE_V2 1672 CONFIG_INETSPACE_V2
1674 CONFIG_INITRD_TAG 1673 CONFIG_INITRD_TAG
1675 CONFIG_INIT_CRITICAL 1674 CONFIG_INIT_CRITICAL
1676 CONFIG_INIT_IGNORE_ERROR 1675 CONFIG_INIT_IGNORE_ERROR
1677 CONFIG_INIT_TLB 1676 CONFIG_INIT_TLB
1678 CONFIG_INI_ALLOW_MULTILINE 1677 CONFIG_INI_ALLOW_MULTILINE
1679 CONFIG_INI_CASE_INSENSITIVE 1678 CONFIG_INI_CASE_INSENSITIVE
1680 CONFIG_INI_MAX_LINE 1679 CONFIG_INI_MAX_LINE
1681 CONFIG_INI_MAX_NAME 1680 CONFIG_INI_MAX_NAME
1682 CONFIG_INI_MAX_SECTION 1681 CONFIG_INI_MAX_SECTION
1683 CONFIG_INKA4X0 1682 CONFIG_INKA4X0
1684 CONFIG_INTEGRITY 1683 CONFIG_INTEGRITY
1685 CONFIG_INTEL_ICH6_GPIO 1684 CONFIG_INTEL_ICH6_GPIO
1686 CONFIG_INTERRUPTS 1685 CONFIG_INTERRUPTS
1687 CONFIG_INTIB 1686 CONFIG_INTIB
1688 CONFIG_IO 1687 CONFIG_IO
1689 CONFIG_IO64 1688 CONFIG_IO64
1690 CONFIG_IOCON 1689 CONFIG_IOCON
1691 CONFIG_IODELAY_RECALIBRATION 1690 CONFIG_IODELAY_RECALIBRATION
1692 CONFIG_IOMUX_LPSR 1691 CONFIG_IOMUX_LPSR
1693 CONFIG_IOMUX_SHARE_CONF_REG 1692 CONFIG_IOMUX_SHARE_CONF_REG
1694 CONFIG_IOS 1693 CONFIG_IOS
1695 CONFIG_IO_TRACE 1694 CONFIG_IO_TRACE
1696 CONFIG_IP86x 1695 CONFIG_IP86x
1697 CONFIG_IPADDR 1696 CONFIG_IPADDR
1698 CONFIG_IPADDR1 1697 CONFIG_IPADDR1
1699 CONFIG_IPADDR2 1698 CONFIG_IPADDR2
1700 CONFIG_IPAM390_GPIO_BOOTMODE 1699 CONFIG_IPAM390_GPIO_BOOTMODE
1701 CONFIG_IPAM390_GPIO_LED_GREEN 1700 CONFIG_IPAM390_GPIO_LED_GREEN
1702 CONFIG_IPAM390_GPIO_LED_RED 1701 CONFIG_IPAM390_GPIO_LED_RED
1703 CONFIG_IPEK01 1702 CONFIG_IPEK01
1704 CONFIG_IPIPE 1703 CONFIG_IPIPE
1705 CONFIG_IPROC 1704 CONFIG_IPROC
1706 CONFIG_IPUV3_CLK 1705 CONFIG_IPUV3_CLK
1707 CONFIG_IP_DEFRAG 1706 CONFIG_IP_DEFRAG
1708 CONFIG_IRAM_BASE 1707 CONFIG_IRAM_BASE
1709 CONFIG_IRAM_END 1708 CONFIG_IRAM_END
1710 CONFIG_IRAM_SIZE 1709 CONFIG_IRAM_SIZE
1711 CONFIG_IRAM_STACK 1710 CONFIG_IRAM_STACK
1712 CONFIG_IRAM_TOP 1711 CONFIG_IRAM_TOP
1713 CONFIG_IRDA_BASE 1712 CONFIG_IRDA_BASE
1714 CONFIG_ISO_PARTITION 1713 CONFIG_ISO_PARTITION
1715 CONFIG_ISP1362_USB 1714 CONFIG_ISP1362_USB
1716 CONFIG_IS_BUILTIN 1715 CONFIG_IS_BUILTIN
1717 CONFIG_IS_ENABLED 1716 CONFIG_IS_ENABLED
1718 CONFIG_IS_INVALID 1717 CONFIG_IS_INVALID
1719 CONFIG_IS_MODULE 1718 CONFIG_IS_MODULE
1720 CONFIG_IS_VALID 1719 CONFIG_IS_VALID
1721 CONFIG_IVMS8 1720 CONFIG_IVMS8
1722 CONFIG_JFFS2_CMDLINE 1721 CONFIG_JFFS2_CMDLINE
1723 CONFIG_JFFS2_DEV 1722 CONFIG_JFFS2_DEV
1724 CONFIG_JFFS2_LZO 1723 CONFIG_JFFS2_LZO
1725 CONFIG_JFFS2_NAND 1724 CONFIG_JFFS2_NAND
1726 CONFIG_JFFS2_PART_OFFSET 1725 CONFIG_JFFS2_PART_OFFSET
1727 CONFIG_JFFS2_PART_SIZE 1726 CONFIG_JFFS2_PART_SIZE
1728 CONFIG_JFFS2_SUMMARY 1727 CONFIG_JFFS2_SUMMARY
1729 CONFIG_JRSTARTR_JR0 1728 CONFIG_JRSTARTR_JR0
1730 CONFIG_JTAG_CONSOLE 1729 CONFIG_JTAG_CONSOLE
1731 CONFIG_JTAG_CONSOLE_TIMEOUT 1730 CONFIG_JTAG_CONSOLE_TIMEOUT
1732 CONFIG_JUPITER 1731 CONFIG_JUPITER
1733 CONFIG_K2E_EVM 1732 CONFIG_K2E_EVM
1734 CONFIG_K2G_EVM 1733 CONFIG_K2G_EVM
1735 CONFIG_K2HK_EVM 1734 CONFIG_K2HK_EVM
1736 CONFIG_K2L_EVM 1735 CONFIG_K2L_EVM
1737 CONFIG_KALLSYMS 1736 CONFIG_KALLSYMS
1738 CONFIG_KASAN 1737 CONFIG_KASAN
1739 CONFIG_KATMAI 1738 CONFIG_KATMAI
1740 CONFIG_KCLK_DIS 1739 CONFIG_KCLK_DIS
1741 CONFIG_KEEP_SERVERADDR 1740 CONFIG_KEEP_SERVERADDR
1742 CONFIG_KERNEL_OFFSET 1741 CONFIG_KERNEL_OFFSET
1743 CONFIG_KEYBOARD 1742 CONFIG_KEYBOARD
1744 CONFIG_KEYSTONE_NAND_MAX_RBL_PAGE 1743 CONFIG_KEYSTONE_NAND_MAX_RBL_PAGE
1745 CONFIG_KEYSTONE_NAND_MAX_RBL_SIZE 1744 CONFIG_KEYSTONE_NAND_MAX_RBL_SIZE
1746 CONFIG_KEYSTONE_RBL_NAND 1745 CONFIG_KEYSTONE_RBL_NAND
1747 CONFIG_KEY_REVOCATION 1746 CONFIG_KEY_REVOCATION
1748 CONFIG_KGDB_BAUDRATE 1747 CONFIG_KGDB_BAUDRATE
1749 CONFIG_KGDB_EXTC_PINSEL 1748 CONFIG_KGDB_EXTC_PINSEL
1750 CONFIG_KGDB_EXTC_RATE 1749 CONFIG_KGDB_EXTC_RATE
1751 CONFIG_KGDB_INDEX 1750 CONFIG_KGDB_INDEX
1752 CONFIG_KGDB_ON_SCC 1751 CONFIG_KGDB_ON_SCC
1753 CONFIG_KGDB_ON_SMC 1752 CONFIG_KGDB_ON_SMC
1754 CONFIG_KGDB_SER_INDEX 1753 CONFIG_KGDB_SER_INDEX
1755 CONFIG_KILAUEA 1754 CONFIG_KILAUEA
1756 CONFIG_KIRKWOOD_EGIGA_INIT 1755 CONFIG_KIRKWOOD_EGIGA_INIT
1757 CONFIG_KIRKWOOD_GPIO 1756 CONFIG_KIRKWOOD_GPIO
1758 CONFIG_KIRKWOOD_PCIE_INIT 1757 CONFIG_KIRKWOOD_PCIE_INIT
1759 CONFIG_KIRKWOOD_RGMII_PAD_1V8 1758 CONFIG_KIRKWOOD_RGMII_PAD_1V8
1760 CONFIG_KIRKWOOD_SPI 1759 CONFIG_KIRKWOOD_SPI
1761 CONFIG_KIRQ_EN 1760 CONFIG_KIRQ_EN
1762 CONFIG_KM8321 1761 CONFIG_KM8321
1763 CONFIG_KM8XX 1762 CONFIG_KM8XX
1764 CONFIG_KMCOGE4 1763 CONFIG_KMCOGE4
1765 CONFIG_KMCOGE5NE 1764 CONFIG_KMCOGE5NE
1766 CONFIG_KMETER1 1765 CONFIG_KMETER1
1767 CONFIG_KMLION1 1766 CONFIG_KMLION1
1768 CONFIG_KMOPTI2 1767 CONFIG_KMOPTI2
1769 CONFIG_KMP204X 1768 CONFIG_KMP204X
1770 CONFIG_KMSUPX5 1769 CONFIG_KMSUPX5
1771 CONFIG_KMTEGR1 1770 CONFIG_KMTEGR1
1772 CONFIG_KMTEPR2 1771 CONFIG_KMTEPR2
1773 CONFIG_KMVECT1 1772 CONFIG_KMVECT1
1774 CONFIG_KM_82XX 1773 CONFIG_KM_82XX
1775 CONFIG_KM_BOARD_EXTRA_ENV 1774 CONFIG_KM_BOARD_EXTRA_ENV
1776 CONFIG_KM_BOARD_NAME 1775 CONFIG_KM_BOARD_NAME
1777 CONFIG_KM_COGE5UN 1776 CONFIG_KM_COGE5UN
1778 CONFIG_KM_COMMON_ETH_INIT 1777 CONFIG_KM_COMMON_ETH_INIT
1779 CONFIG_KM_CONSOLE_TTY 1778 CONFIG_KM_CONSOLE_TTY
1780 CONFIG_KM_CRAMFS_ADDR 1779 CONFIG_KM_CRAMFS_ADDR
1781 CONFIG_KM_DEF_ARCH 1780 CONFIG_KM_DEF_ARCH
1782 CONFIG_KM_DEF_BOOT_ARGS_CPU 1781 CONFIG_KM_DEF_BOOT_ARGS_CPU
1783 CONFIG_KM_DEF_ENV 1782 CONFIG_KM_DEF_ENV
1784 CONFIG_KM_DEF_ENV_BOOTARGS 1783 CONFIG_KM_DEF_ENV_BOOTARGS
1785 CONFIG_KM_DEF_ENV_BOOTPARAMS 1784 CONFIG_KM_DEF_ENV_BOOTPARAMS
1786 CONFIG_KM_DEF_ENV_BOOTTARGETS 1785 CONFIG_KM_DEF_ENV_BOOTTARGETS
1787 CONFIG_KM_DEF_ENV_CONSTANTS 1786 CONFIG_KM_DEF_ENV_CONSTANTS
1788 CONFIG_KM_DEF_ENV_CPU 1787 CONFIG_KM_DEF_ENV_CPU
1789 CONFIG_KM_DEF_ENV_FLASH_BOOT 1788 CONFIG_KM_DEF_ENV_FLASH_BOOT
1790 CONFIG_KM_DEF_NETDEV 1789 CONFIG_KM_DEF_NETDEV
1791 CONFIG_KM_DEV_ENV_FLASH_BOOT_UBI 1790 CONFIG_KM_DEV_ENV_FLASH_BOOT_UBI
1792 CONFIG_KM_DISABLE_PCI 1791 CONFIG_KM_DISABLE_PCI
1793 CONFIG_KM_DISABLE_PCIE 1792 CONFIG_KM_DISABLE_PCIE
1794 CONFIG_KM_ECC_MODE 1793 CONFIG_KM_ECC_MODE
1795 CONFIG_KM_ENV_IS_IN_SPI_NOR 1794 CONFIG_KM_ENV_IS_IN_SPI_NOR
1796 CONFIG_KM_FDT_ADDR 1795 CONFIG_KM_FDT_ADDR
1797 CONFIG_KM_FPGA_CONFIG 1796 CONFIG_KM_FPGA_CONFIG
1798 CONFIG_KM_I2C_ABORT 1797 CONFIG_KM_I2C_ABORT
1799 CONFIG_KM_IVM_BUS 1798 CONFIG_KM_IVM_BUS
1800 CONFIG_KM_KERNEL_ADDR 1799 CONFIG_KM_KERNEL_ADDR
1801 CONFIG_KM_KIRKWOOD 1800 CONFIG_KM_KIRKWOOD
1802 CONFIG_KM_KIRKWOOD_128M16 1801 CONFIG_KM_KIRKWOOD_128M16
1803 CONFIG_KM_KIRKWOOD_PCI 1802 CONFIG_KM_KIRKWOOD_PCI
1804 CONFIG_KM_MGCOGE3UN 1803 CONFIG_KM_MGCOGE3UN
1805 CONFIG_KM_MVEXTSW_ADDR 1804 CONFIG_KM_MVEXTSW_ADDR
1806 CONFIG_KM_NEW_ENV 1805 CONFIG_KM_NEW_ENV
1807 CONFIG_KM_NUSA 1806 CONFIG_KM_NUSA
1808 CONFIG_KM_PHRAM 1807 CONFIG_KM_PHRAM
1809 CONFIG_KM_PIGGY4_88E6061 1808 CONFIG_KM_PIGGY4_88E6061
1810 CONFIG_KM_PIGGY4_88E6352 1809 CONFIG_KM_PIGGY4_88E6352
1811 CONFIG_KM_PNVRAM 1810 CONFIG_KM_PNVRAM
1812 CONFIG_KM_PORTL2 1811 CONFIG_KM_PORTL2
1813 CONFIG_KM_RESERVED_PRAM 1812 CONFIG_KM_RESERVED_PRAM
1814 CONFIG_KM_ROOTFSSIZE 1813 CONFIG_KM_ROOTFSSIZE
1815 CONFIG_KM_SUGP1 1814 CONFIG_KM_SUGP1
1816 CONFIG_KM_SUV31 1815 CONFIG_KM_SUV31
1817 CONFIG_KM_UBI_LINUX_MTD 1816 CONFIG_KM_UBI_LINUX_MTD
1818 CONFIG_KM_UBI_PARTITION_NAME_APP 1817 CONFIG_KM_UBI_PARTITION_NAME_APP
1819 CONFIG_KM_UBI_PARTITION_NAME_BOOT 1818 CONFIG_KM_UBI_PARTITION_NAME_BOOT
1820 CONFIG_KM_UBI_PART_BOOT_OPTS 1819 CONFIG_KM_UBI_PART_BOOT_OPTS
1821 CONFIG_KM_UIMAGE_NAME 1820 CONFIG_KM_UIMAGE_NAME
1822 CONFIG_KM_UPDATE_UBOOT 1821 CONFIG_KM_UPDATE_UBOOT
1823 CONFIG_KONA 1822 CONFIG_KONA
1824 CONFIG_KONA_GPIO 1823 CONFIG_KONA_GPIO
1825 CONFIG_KONA_RESET_S 1824 CONFIG_KONA_RESET_S
1826 CONFIG_KONA_SDHCI 1825 CONFIG_KONA_SDHCI
1827 CONFIG_KPROBES 1826 CONFIG_KPROBES
1828 CONFIG_KS8851_MLL 1827 CONFIG_KS8851_MLL
1829 CONFIG_KS8851_MLL_BASEADDR 1828 CONFIG_KS8851_MLL_BASEADDR
1830 CONFIG_KSNAV_NETCP_PDMA_CTRL_BASE 1829 CONFIG_KSNAV_NETCP_PDMA_CTRL_BASE
1831 CONFIG_KSNAV_NETCP_PDMA_RX_BASE 1830 CONFIG_KSNAV_NETCP_PDMA_RX_BASE
1832 CONFIG_KSNAV_NETCP_PDMA_RX_CH_NUM 1831 CONFIG_KSNAV_NETCP_PDMA_RX_CH_NUM
1833 CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_BASE 1832 CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_BASE
1834 CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_NUM 1833 CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_NUM
1835 CONFIG_KSNAV_NETCP_PDMA_RX_FREE_QUEUE 1834 CONFIG_KSNAV_NETCP_PDMA_RX_FREE_QUEUE
1836 CONFIG_KSNAV_NETCP_PDMA_RX_RCV_QUEUE 1835 CONFIG_KSNAV_NETCP_PDMA_RX_RCV_QUEUE
1837 CONFIG_KSNAV_NETCP_PDMA_SCHED_BASE 1836 CONFIG_KSNAV_NETCP_PDMA_SCHED_BASE
1838 CONFIG_KSNAV_NETCP_PDMA_TX_BASE 1837 CONFIG_KSNAV_NETCP_PDMA_TX_BASE
1839 CONFIG_KSNAV_NETCP_PDMA_TX_CH_NUM 1838 CONFIG_KSNAV_NETCP_PDMA_TX_CH_NUM
1840 CONFIG_KSNAV_NETCP_PDMA_TX_SND_QUEUE 1839 CONFIG_KSNAV_NETCP_PDMA_TX_SND_QUEUE
1841 CONFIG_KSNAV_PKTDMA_NETCP 1840 CONFIG_KSNAV_PKTDMA_NETCP
1842 CONFIG_KSNAV_QM_BASE_ADDRESS 1841 CONFIG_KSNAV_QM_BASE_ADDRESS
1843 CONFIG_KSNAV_QM_CONF_BASE 1842 CONFIG_KSNAV_QM_CONF_BASE
1844 CONFIG_KSNAV_QM_DESC_SETUP_BASE 1843 CONFIG_KSNAV_QM_DESC_SETUP_BASE
1845 CONFIG_KSNAV_QM_INTD_CONF_BASE 1844 CONFIG_KSNAV_QM_INTD_CONF_BASE
1846 CONFIG_KSNAV_QM_LINK_RAM_BASE 1845 CONFIG_KSNAV_QM_LINK_RAM_BASE
1847 CONFIG_KSNAV_QM_MANAGER_QUEUES_BASE 1846 CONFIG_KSNAV_QM_MANAGER_QUEUES_BASE
1848 CONFIG_KSNAV_QM_MANAGER_Q_PROXY_BASE 1847 CONFIG_KSNAV_QM_MANAGER_Q_PROXY_BASE
1849 CONFIG_KSNAV_QM_PDSP1_CMD_BASE 1848 CONFIG_KSNAV_QM_PDSP1_CMD_BASE
1850 CONFIG_KSNAV_QM_PDSP1_CTRL_BASE 1849 CONFIG_KSNAV_QM_PDSP1_CTRL_BASE
1851 CONFIG_KSNAV_QM_PDSP1_IRAM_BASE 1850 CONFIG_KSNAV_QM_PDSP1_IRAM_BASE
1852 CONFIG_KSNAV_QM_QPOOL_NUM 1851 CONFIG_KSNAV_QM_QPOOL_NUM
1853 CONFIG_KSNAV_QM_QUEUE_STATUS_BASE 1852 CONFIG_KSNAV_QM_QUEUE_STATUS_BASE
1854 CONFIG_KSNAV_QM_REGION_NUM 1853 CONFIG_KSNAV_QM_REGION_NUM
1855 CONFIG_KSNAV_QM_STATUS_RAM_BASE 1854 CONFIG_KSNAV_QM_STATUS_RAM_BASE
1856 CONFIG_KSNET_CPSW_NUM_PORTS 1855 CONFIG_KSNET_CPSW_NUM_PORTS
1857 CONFIG_KSNET_MAC_ID_BASE 1856 CONFIG_KSNET_MAC_ID_BASE
1858 CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE 1857 CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE
1859 CONFIG_KSNET_NETCP_BASE 1858 CONFIG_KSNET_NETCP_BASE
1860 CONFIG_KSNET_NETCP_V1_0 1859 CONFIG_KSNET_NETCP_V1_0
1861 CONFIG_KSNET_NETCP_V1_5 1860 CONFIG_KSNET_NETCP_V1_5
1862 CONFIG_KSNET_SERDES_LANES_PER_SGMII 1861 CONFIG_KSNET_SERDES_LANES_PER_SGMII
1863 CONFIG_KSNET_SERDES_SGMII2_BASE 1862 CONFIG_KSNET_SERDES_SGMII2_BASE
1864 CONFIG_KSNET_SERDES_SGMII_BASE 1863 CONFIG_KSNET_SERDES_SGMII_BASE
1865 CONFIG_KVM_GUEST 1864 CONFIG_KVM_GUEST
1866 CONFIG_KW88F6192 1865 CONFIG_KW88F6192
1867 CONFIG_KW88F6281 1866 CONFIG_KW88F6281
1868 CONFIG_KW88F6702 1867 CONFIG_KW88F6702
1869 CONFIG_KYOCERA_KCS057QV1AJ 1868 CONFIG_KYOCERA_KCS057QV1AJ
1870 CONFIG_KZM_A9_GT 1869 CONFIG_KZM_A9_GT
1871 CONFIG_L1_INIT_RAM 1870 CONFIG_L1_INIT_RAM
1872 CONFIG_L2_CACHE 1871 CONFIG_L2_CACHE
1873 CONFIG_LAN91C96_USE_32_BIT 1872 CONFIG_LAN91C96_USE_32_BIT
1874 CONFIG_LAST_STAGE_INIT 1873 CONFIG_LAST_STAGE_INIT
1875 CONFIG_LAYERSCAPE_NS_ACCESS 1874 CONFIG_LAYERSCAPE_NS_ACCESS
1876 CONFIG_LBA48 1875 CONFIG_LBA48
1877 CONFIG_LBD 1876 CONFIG_LBD
1878 CONFIG_LBDAF 1877 CONFIG_LBDAF
1879 CONFIG_LCD_ALIGNMENT 1878 CONFIG_LCD_ALIGNMENT
1880 CONFIG_LCD_BMP_RLE8 1879 CONFIG_LCD_BMP_RLE8
1881 CONFIG_LCD_DT_SIMPLEFB 1880 CONFIG_LCD_DT_SIMPLEFB
1882 CONFIG_LCD_INFO 1881 CONFIG_LCD_INFO
1883 CONFIG_LCD_INFO_BELOW_LOGO 1882 CONFIG_LCD_INFO_BELOW_LOGO
1884 CONFIG_LCD_IN_PSRAM 1883 CONFIG_LCD_IN_PSRAM
1885 CONFIG_LCD_LOGO 1884 CONFIG_LCD_LOGO
1886 CONFIG_LCD_MENU 1885 CONFIG_LCD_MENU
1887 CONFIG_LCD_MENU_BOARD 1886 CONFIG_LCD_MENU_BOARD
1888 CONFIG_LCD_NOSTDOUT 1887 CONFIG_LCD_NOSTDOUT
1889 CONFIG_LCD_ROTATION 1888 CONFIG_LCD_ROTATION
1890 CONFIG_LD9040 1889 CONFIG_LD9040
1891 CONFIG_LEGACY 1890 CONFIG_LEGACY
1892 CONFIG_LEGACY_BOOTCMD_ENV 1891 CONFIG_LEGACY_BOOTCMD_ENV
1893 CONFIG_LEON_RAM_SDRAM 1892 CONFIG_LEON_RAM_SDRAM
1894 CONFIG_LEON_RAM_SDRAM_NOSRAM 1893 CONFIG_LEON_RAM_SDRAM_NOSRAM
1895 CONFIG_LEON_RAM_SELECT 1894 CONFIG_LEON_RAM_SELECT
1896 CONFIG_LEON_RAM_SRAM 1895 CONFIG_LEON_RAM_SRAM
1897 CONFIG_LG4573 1896 CONFIG_LG4573
1898 CONFIG_LG4573_BUS 1897 CONFIG_LG4573_BUS
1899 CONFIG_LG4573_CS 1898 CONFIG_LG4573_CS
1900 CONFIG_LIBATA 1899 CONFIG_LIBATA
1901 CONFIG_LIB_HW_RAND 1900 CONFIG_LIB_HW_RAND
1902 CONFIG_LIB_UUID 1901 CONFIG_LIB_UUID
1903 CONFIG_LINUX 1902 CONFIG_LINUX
1904 CONFIG_LINUX_CMDLINE_ADDR 1903 CONFIG_LINUX_CMDLINE_ADDR
1905 CONFIG_LINUX_CMDLINE_SIZE 1904 CONFIG_LINUX_CMDLINE_SIZE
1906 CONFIG_LINUX_RESET_VEC 1905 CONFIG_LINUX_RESET_VEC
1907 CONFIG_LITTLETON_LCD 1906 CONFIG_LITTLETON_LCD
1908 CONFIG_LMB 1907 CONFIG_LMB
1909 CONFIG_LMS283GF05 1908 CONFIG_LMS283GF05
1910 CONFIG_LOADADDR 1909 CONFIG_LOADADDR
1911 CONFIG_LOADCMD 1910 CONFIG_LOADCMD
1912 CONFIG_LOADS_ECHO 1911 CONFIG_LOADS_ECHO
1913 CONFIG_LOGBUFFER 1912 CONFIG_LOGBUFFER
1914 CONFIG_LOWBOOT 1913 CONFIG_LOWBOOT
1915 CONFIG_LOWPOWER_ADDR 1914 CONFIG_LOWPOWER_ADDR
1916 CONFIG_LOWPOWER_FLAG 1915 CONFIG_LOWPOWER_FLAG
1917 CONFIG_LOW_MCFCLK 1916 CONFIG_LOW_MCFCLK
1918 CONFIG_LPC32XX_ETH 1917 CONFIG_LPC32XX_ETH
1919 CONFIG_LPC32XX_ETH_BUFS_BASE 1918 CONFIG_LPC32XX_ETH_BUFS_BASE
1920 CONFIG_LPC32XX_HSUART 1919 CONFIG_LPC32XX_HSUART
1921 CONFIG_LPC32XX_NAND_MLC_BUSY_DELAY 1920 CONFIG_LPC32XX_NAND_MLC_BUSY_DELAY
1922 CONFIG_LPC32XX_NAND_MLC_NAND_TA 1921 CONFIG_LPC32XX_NAND_MLC_NAND_TA
1923 CONFIG_LPC32XX_NAND_MLC_RD_HIGH 1922 CONFIG_LPC32XX_NAND_MLC_RD_HIGH
1924 CONFIG_LPC32XX_NAND_MLC_RD_LOW 1923 CONFIG_LPC32XX_NAND_MLC_RD_LOW
1925 CONFIG_LPC32XX_NAND_MLC_TCEA_DELAY 1924 CONFIG_LPC32XX_NAND_MLC_TCEA_DELAY
1926 CONFIG_LPC32XX_NAND_MLC_WR_HIGH 1925 CONFIG_LPC32XX_NAND_MLC_WR_HIGH
1927 CONFIG_LPC32XX_NAND_MLC_WR_LOW 1926 CONFIG_LPC32XX_NAND_MLC_WR_LOW
1928 CONFIG_LPC32XX_NAND_SLC_RDR_CLKS 1927 CONFIG_LPC32XX_NAND_SLC_RDR_CLKS
1929 CONFIG_LPC32XX_NAND_SLC_RHOLD 1928 CONFIG_LPC32XX_NAND_SLC_RHOLD
1930 CONFIG_LPC32XX_NAND_SLC_RSETUP 1929 CONFIG_LPC32XX_NAND_SLC_RSETUP
1931 CONFIG_LPC32XX_NAND_SLC_RWIDTH 1930 CONFIG_LPC32XX_NAND_SLC_RWIDTH
1932 CONFIG_LPC32XX_NAND_SLC_WDR_CLKS 1931 CONFIG_LPC32XX_NAND_SLC_WDR_CLKS
1933 CONFIG_LPC32XX_NAND_SLC_WHOLD 1932 CONFIG_LPC32XX_NAND_SLC_WHOLD
1934 CONFIG_LPC32XX_NAND_SLC_WSETUP 1933 CONFIG_LPC32XX_NAND_SLC_WSETUP
1935 CONFIG_LPC32XX_NAND_SLC_WWIDTH 1934 CONFIG_LPC32XX_NAND_SLC_WWIDTH
1936 CONFIG_LPC32XX_SDRAM_ 1935 CONFIG_LPC32XX_SDRAM_
1937 CONFIG_LPC32XX_SPL 1936 CONFIG_LPC32XX_SPL
1938 CONFIG_LPC32XX_SSP 1937 CONFIG_LPC32XX_SSP
1939 CONFIG_LPC32XX_SSP_TIMEOUT 1938 CONFIG_LPC32XX_SSP_TIMEOUT
1940 CONFIG_LPC_BASE 1939 CONFIG_LPC_BASE
1941 CONFIG_LPC_IO_BASE 1940 CONFIG_LPC_IO_BASE
1942 CONFIG_LPUART 1941 CONFIG_LPUART
1943 CONFIG_LPUART_32B_REG 1942 CONFIG_LPUART_32B_REG
1944 CONFIG_LQ035Q1_LCD_MODE 1943 CONFIG_LQ035Q1_LCD_MODE
1945 CONFIG_LQ035Q1_SPI_BUS 1944 CONFIG_LQ035Q1_SPI_BUS
1946 CONFIG_LQ035Q1_SPI_CS 1945 CONFIG_LQ035Q1_SPI_CS
1947 CONFIG_LQ035Q1_USE_RGB565_8_BIT_PPI 1946 CONFIG_LQ035Q1_USE_RGB565_8_BIT_PPI
1948 CONFIG_LQ035Q1_USE_RGB888_8_BIT_PPI 1947 CONFIG_LQ035Q1_USE_RGB888_8_BIT_PPI
1949 CONFIG_LQ038J7DH53 1948 CONFIG_LQ038J7DH53
1950 CONFIG_LS1012A 1949 CONFIG_LS1012A
1951 CONFIG_LS102XA 1950 CONFIG_LS102XA
1952 CONFIG_LS102XA_STREAM_ID 1951 CONFIG_LS102XA_STREAM_ID
1953 CONFIG_LS1043A 1952 CONFIG_LS1043A
1954 CONFIG_LS2080A 1953 CONFIG_LS2080A
1955 CONFIG_LSCHLV2 1954 CONFIG_LSCHLV2
1956 CONFIG_LSXHL 1955 CONFIG_LSXHL
1957 CONFIG_LUAN 1956 CONFIG_LUAN
1958 CONFIG_LWMON5 1957 CONFIG_LWMON5
1959 CONFIG_LXT971_NO_SLEEP 1958 CONFIG_LXT971_NO_SLEEP
1960 CONFIG_LYNXKDI 1959 CONFIG_LYNXKDI
1961 CONFIG_LZMA 1960 CONFIG_LZMA
1962 CONFIG_LZO 1961 CONFIG_LZO
1963 CONFIG_M41T94_SPI_CS 1962 CONFIG_M41T94_SPI_CS
1964 CONFIG_M520x 1963 CONFIG_M520x
1965 CONFIG_M52277EVB 1964 CONFIG_M52277EVB
1966 CONFIG_M5253DEMO 1965 CONFIG_M5253DEMO
1967 CONFIG_M5253EVBE 1966 CONFIG_M5253EVBE
1968 CONFIG_M5275EVB 1967 CONFIG_M5275EVB
1969 CONFIG_M5301x 1968 CONFIG_M5301x
1970 CONFIG_M54418TWR 1969 CONFIG_M54418TWR
1971 CONFIG_M54451EVB 1970 CONFIG_M54451EVB
1972 CONFIG_M54455EVB 1971 CONFIG_M54455EVB
1973 CONFIG_M88E1111_DISABLE_FIBER 1972 CONFIG_M88E1111_DISABLE_FIBER
1974 CONFIG_M88E1111_PHY 1973 CONFIG_M88E1111_PHY
1975 CONFIG_M88E1112_PHY 1974 CONFIG_M88E1112_PHY
1976 CONFIG_M88E1141_PHY 1975 CONFIG_M88E1141_PHY
1977 CONFIG_MACB 1976 CONFIG_MACB
1978 CONFIG_MACB0_PHY 1977 CONFIG_MACB0_PHY
1979 CONFIG_MACB1_PHY 1978 CONFIG_MACB1_PHY
1980 CONFIG_MACB2_PHY 1979 CONFIG_MACB2_PHY
1981 CONFIG_MACB3_PHY 1980 CONFIG_MACB3_PHY
1982 CONFIG_MACB_SEARCH_PHY 1981 CONFIG_MACB_SEARCH_PHY
1983 CONFIG_MACH_A0 1982 CONFIG_MACH_A0
1984 CONFIG_MACH_A2F 1983 CONFIG_MACH_A2F
1985 CONFIG_MACH_ABACUS 1984 CONFIG_MACH_ABACUS
1986 CONFIG_MACH_ABB_GMA_1_1 1985 CONFIG_MACH_ABB_GMA_1_1
1987 CONFIG_MACH_ABILENE 1986 CONFIG_MACH_ABILENE
1988 CONFIG_MACH_ABLE 1987 CONFIG_MACH_ABLE
1989 CONFIG_MACH_ACER_A5 1988 CONFIG_MACH_ACER_A5
1990 CONFIG_MACH_ACER_A8 1989 CONFIG_MACH_ACER_A8
1991 CONFIG_MACH_ACER_GAUGUIN 1990 CONFIG_MACH_ACER_GAUGUIN
1992 CONFIG_MACH_ACER_MAYA 1991 CONFIG_MACH_ACER_MAYA
1993 CONFIG_MACH_ACMENETUSFOXG20 1992 CONFIG_MACH_ACMENETUSFOXG20
1994 CONFIG_MACH_ACMEROVER1 1993 CONFIG_MACH_ACMEROVER1
1995 CONFIG_MACH_ACRO37XBRD 1994 CONFIG_MACH_ACRO37XBRD
1996 CONFIG_MACH_ACS5K 1995 CONFIG_MACH_ACS5K
1997 CONFIG_MACH_ACSX106 1996 CONFIG_MACH_ACSX106
1998 CONFIG_MACH_ADSSPHERE 1997 CONFIG_MACH_ADSSPHERE
1999 CONFIG_MACH_AEBL 1998 CONFIG_MACH_AEBL
2000 CONFIG_MACH_AF4000 1999 CONFIG_MACH_AF4000
2001 CONFIG_MACH_AFEB9260 2000 CONFIG_MACH_AFEB9260
2002 CONFIG_MACH_AG11005 2001 CONFIG_MACH_AG11005
2003 CONFIG_MACH_AG5EVM 2002 CONFIG_MACH_AG5EVM
2004 CONFIG_MACH_AKITA 2003 CONFIG_MACH_AKITA
2005 CONFIG_MACH_AMK_A4 2004 CONFIG_MACH_AMK_A4
2006 CONFIG_MACH_AML_M5900 2005 CONFIG_MACH_AML_M5900
2007 CONFIG_MACH_AMS_DELTA 2006 CONFIG_MACH_AMS_DELTA
2008 CONFIG_MACH_ANCHOVY 2007 CONFIG_MACH_ANCHOVY
2009 CONFIG_MACH_ANTARES 2008 CONFIG_MACH_ANTARES
2010 CONFIG_MACH_ANTERO 2009 CONFIG_MACH_ANTERO
2011 CONFIG_MACH_ANUBIS 2010 CONFIG_MACH_ANUBIS
2012 CONFIG_MACH_ANW6410 2011 CONFIG_MACH_ANW6410
2013 CONFIG_MACH_AP4EVB 2012 CONFIG_MACH_AP4EVB
2014 CONFIG_MACH_APALIS_T30 2013 CONFIG_MACH_APALIS_T30
2015 CONFIG_MACH_APP3K_ROBIN 2014 CONFIG_MACH_APP3K_ROBIN
2016 CONFIG_MACH_AQUARIUS 2015 CONFIG_MACH_AQUARIUS
2017 CONFIG_MACH_AQUILA 2016 CONFIG_MACH_AQUILA
2018 CONFIG_MACH_ARCOM_VULCAN 2017 CONFIG_MACH_ARCOM_VULCAN
2019 CONFIG_MACH_ARCOM_ZEUS 2018 CONFIG_MACH_ARCOM_ZEUS
2020 CONFIG_MACH_ARK9431 2019 CONFIG_MACH_ARK9431
2021 CONFIG_MACH_ARMADA_XP_DB 2020 CONFIG_MACH_ARMADA_XP_DB
2022 CONFIG_MACH_ARMADILLO460 2021 CONFIG_MACH_ARMADILLO460
2023 CONFIG_MACH_ARMADILLO5X0 2022 CONFIG_MACH_ARMADILLO5X0
2024 CONFIG_MACH_ARMADILLO800EVA 2023 CONFIG_MACH_ARMADILLO800EVA
2025 CONFIG_MACH_ARMCORE 2024 CONFIG_MACH_ARMCORE
2026 CONFIG_MACH_ARMLEX4210 2025 CONFIG_MACH_ARMLEX4210
2027 CONFIG_MACH_ARMLGUEST 2026 CONFIG_MACH_ARMLGUEST
2028 CONFIG_MACH_AROWANA 2027 CONFIG_MACH_AROWANA
2029 CONFIG_MACH_ARTHUR 2028 CONFIG_MACH_ARTHUR
2030 CONFIG_MACH_ARUBA 2029 CONFIG_MACH_ARUBA
2031 CONFIG_MACH_AS1167 2030 CONFIG_MACH_AS1167
2032 CONFIG_MACH_ASL_PHOENIX 2031 CONFIG_MACH_ASL_PHOENIX
2033 CONFIG_MACH_ASPEN 2032 CONFIG_MACH_ASPEN
2034 CONFIG_MACH_ASPENITE 2033 CONFIG_MACH_ASPENITE
2035 CONFIG_MACH_AST2200 2034 CONFIG_MACH_AST2200
2036 CONFIG_MACH_AT2440EVB 2035 CONFIG_MACH_AT2440EVB
2037 CONFIG_MACH_AT572D940HFEB 2036 CONFIG_MACH_AT572D940HFEB
2038 CONFIG_MACH_AT91CAP7STK 2037 CONFIG_MACH_AT91CAP7STK
2039 CONFIG_MACH_AT91CAP7XDK 2038 CONFIG_MACH_AT91CAP7XDK
2040 CONFIG_MACH_AT91CAP9ADK 2039 CONFIG_MACH_AT91CAP9ADK
2041 CONFIG_MACH_AT91EB01 2040 CONFIG_MACH_AT91EB01
2042 CONFIG_MACH_AT91RM9200EK 2041 CONFIG_MACH_AT91RM9200EK
2043 CONFIG_MACH_AT91SAM9260EK 2042 CONFIG_MACH_AT91SAM9260EK
2044 CONFIG_MACH_AT91SAM9261EK 2043 CONFIG_MACH_AT91SAM9261EK
2045 CONFIG_MACH_AT91SAM9263DESK16L 2044 CONFIG_MACH_AT91SAM9263DESK16L
2046 CONFIG_MACH_AT91SAM9263EK 2045 CONFIG_MACH_AT91SAM9263EK
2047 CONFIG_MACH_AT91SAM9263OTLITE 2046 CONFIG_MACH_AT91SAM9263OTLITE
2048 CONFIG_MACH_AT91SAM9G10EK 2047 CONFIG_MACH_AT91SAM9G10EK
2049 CONFIG_MACH_AT91SAM9G20EK 2048 CONFIG_MACH_AT91SAM9G20EK
2050 CONFIG_MACH_AT91SAM9G20EK_2MMC 2049 CONFIG_MACH_AT91SAM9G20EK_2MMC
2051 CONFIG_MACH_AT91SAM9G45EKES 2050 CONFIG_MACH_AT91SAM9G45EKES
2052 CONFIG_MACH_AT91SAM9M10G45EK 2051 CONFIG_MACH_AT91SAM9M10G45EK
2053 CONFIG_MACH_AT91SAM9RLEK 2052 CONFIG_MACH_AT91SAM9RLEK
2054 CONFIG_MACH_AT91SAM9X5EK 2053 CONFIG_MACH_AT91SAM9X5EK
2055 CONFIG_MACH_ATDGP318 2054 CONFIG_MACH_ATDGP318
2056 CONFIG_MACH_ATEB9200 2055 CONFIG_MACH_ATEB9200
2057 CONFIG_MACH_ATHENE 2056 CONFIG_MACH_ATHENE
2058 CONFIG_MACH_ATLAS5_C1 2057 CONFIG_MACH_ATLAS5_C1
2059 CONFIG_MACH_AUTOBOT 2058 CONFIG_MACH_AUTOBOT
2060 CONFIG_MACH_AVENGERS_LITE 2059 CONFIG_MACH_AVENGERS_LITE
2061 CONFIG_MACH_AVILA 2060 CONFIG_MACH_AVILA
2062 CONFIG_MACH_AWM2 2061 CONFIG_MACH_AWM2
2063 CONFIG_MACH_AX502 2062 CONFIG_MACH_AX502
2064 CONFIG_MACH_AX8008 2063 CONFIG_MACH_AX8008
2065 CONFIG_MACH_B5500 2064 CONFIG_MACH_B5500
2066 CONFIG_MACH_BASI 2065 CONFIG_MACH_BASI
2067 CONFIG_MACH_BCM2708 2066 CONFIG_MACH_BCM2708
2068 CONFIG_MACH_BCM589X 2067 CONFIG_MACH_BCM589X
2069 CONFIG_MACH_BCMHANA_SV 2068 CONFIG_MACH_BCMHANA_SV
2070 CONFIG_MACH_BCMHANA_TABLET 2069 CONFIG_MACH_BCMHANA_TABLET
2071 CONFIG_MACH_BCMRING 2070 CONFIG_MACH_BCMRING
2072 CONFIG_MACH_BEECT 2071 CONFIG_MACH_BEECT
2073 CONFIG_MACH_BIGDISK 2072 CONFIG_MACH_BIGDISK
2074 CONFIG_MACH_BIO3K 2073 CONFIG_MACH_BIO3K
2075 CONFIG_MACH_BIPNET 2074 CONFIG_MACH_BIPNET
2076 CONFIG_MACH_BLISS 2075 CONFIG_MACH_BLISS
2077 CONFIG_MACH_BLISSC 2076 CONFIG_MACH_BLISSC
2078 CONFIG_MACH_BLUECHEESE 2077 CONFIG_MACH_BLUECHEESE
2079 CONFIG_MACH_BLUEPOINT 2078 CONFIG_MACH_BLUEPOINT
2080 CONFIG_MACH_BLUESHARK 2079 CONFIG_MACH_BLUESHARK
2081 CONFIG_MACH_BOCKW 2080 CONFIG_MACH_BOCKW
2082 CONFIG_MACH_BONAIRE 2081 CONFIG_MACH_BONAIRE
2083 CONFIG_MACH_BORABORA 2082 CONFIG_MACH_BORABORA
2084 CONFIG_MACH_BORZOI 2083 CONFIG_MACH_BORZOI
2085 CONFIG_MACH_BROWNSTONE 2084 CONFIG_MACH_BROWNSTONE
2086 CONFIG_MACH_BSTBRD 2085 CONFIG_MACH_BSTBRD
2087 CONFIG_MACH_BTMAVB101 2086 CONFIG_MACH_BTMAVB101
2088 CONFIG_MACH_BTMAWB101 2087 CONFIG_MACH_BTMAWB101
2089 CONFIG_MACH_BUBBA3 2088 CONFIG_MACH_BUBBA3
2090 CONFIG_MACH_BUG 2089 CONFIG_MACH_BUG
2091 CONFIG_MACH_BUG20 2090 CONFIG_MACH_BUG20
2092 CONFIG_MACH_BURY_BL7582 2091 CONFIG_MACH_BURY_BL7582
2093 CONFIG_MACH_BURY_BPS5270 2092 CONFIG_MACH_BURY_BPS5270
2094 CONFIG_MACH_BV07 2093 CONFIG_MACH_BV07
2095 CONFIG_MACH_C2MMI 2094 CONFIG_MACH_C2MMI
2096 CONFIG_MACH_CALLISTO 2095 CONFIG_MACH_CALLISTO
2097 CONFIG_MACH_CAM60 2096 CONFIG_MACH_CAM60
2098 CONFIG_MACH_CAPC7117 2097 CONFIG_MACH_CAPC7117
2099 CONFIG_MACH_CARDHU 2098 CONFIG_MACH_CARDHU
2100 CONFIG_MACH_CARMEVA 2099 CONFIG_MACH_CARMEVA
2101 CONFIG_MACH_CAYENNE 2100 CONFIG_MACH_CAYENNE
2102 CONFIG_MACH_CC9P9360DEV 2101 CONFIG_MACH_CC9P9360DEV
2103 CONFIG_MACH_CC9P9360JS 2102 CONFIG_MACH_CC9P9360JS
2104 CONFIG_MACH_CCMX53 2103 CONFIG_MACH_CCMX53
2105 CONFIG_MACH_CCMX53JS 2104 CONFIG_MACH_CCMX53JS
2106 CONFIG_MACH_CCWMX51MUT 2105 CONFIG_MACH_CCWMX51MUT
2107 CONFIG_MACH_CCWMX53 2106 CONFIG_MACH_CCWMX53
2108 CONFIG_MACH_CCWMX53JS 2107 CONFIG_MACH_CCWMX53JS
2109 CONFIG_MACH_CENTRO 2108 CONFIG_MACH_CENTRO
2110 CONFIG_MACH_CETUS9263 2109 CONFIG_MACH_CETUS9263
2111 CONFIG_MACH_CHACHA 2110 CONFIG_MACH_CHACHA
2112 CONFIG_MACH_CHALTEN_XA1 2111 CONFIG_MACH_CHALTEN_XA1
2113 CONFIG_MACH_CHARON 2112 CONFIG_MACH_CHARON
2114 CONFIG_MACH_CLOD 2113 CONFIG_MACH_CLOD
2115 CONFIG_MACH_CM4745 2114 CONFIG_MACH_CM4745
2116 CONFIG_MACH_CM_A510 2115 CONFIG_MACH_CM_A510
2117 CONFIG_MACH_CM_T35 2116 CONFIG_MACH_CM_T35
2118 CONFIG_MACH_CM_T3517 2117 CONFIG_MACH_CM_T3517
2119 CONFIG_MACH_CM_T3730 2118 CONFIG_MACH_CM_T3730
2120 CONFIG_MACH_CM_X300 2119 CONFIG_MACH_CM_X300
2121 CONFIG_MACH_CNS2133EVB 2120 CONFIG_MACH_CNS2133EVB
2122 CONFIG_MACH_CNS21XX 2121 CONFIG_MACH_CNS21XX
2123 CONFIG_MACH_CNS3420VB 2122 CONFIG_MACH_CNS3420VB
2124 CONFIG_MACH_COBRAL138 2123 CONFIG_MACH_COBRAL138
2125 CONFIG_MACH_COCONUT 2124 CONFIG_MACH_COCONUT
2126 CONFIG_MACH_COLIBRI 2125 CONFIG_MACH_COLIBRI
2127 CONFIG_MACH_COLIBRI300 2126 CONFIG_MACH_COLIBRI300
2128 CONFIG_MACH_COLIBRI320 2127 CONFIG_MACH_COLIBRI320
2129 CONFIG_MACH_COLIBRI_T20 2128 CONFIG_MACH_COLIBRI_T20
2130 CONFIG_MACH_COLIBRI_T30 2129 CONFIG_MACH_COLIBRI_T30
2131 CONFIG_MACH_CONTROLTEK9G20 2130 CONFIG_MACH_CONTROLTEK9G20
2132 CONFIG_MACH_CORETEC_VCX7400 2131 CONFIG_MACH_CORETEC_VCX7400
2133 CONFIG_MACH_CORGI 2132 CONFIG_MACH_CORGI
2134 CONFIG_MACH_CPUAT9G20 2133 CONFIG_MACH_CPUAT9G20
2135 CONFIG_MACH_CPX2 2134 CONFIG_MACH_CPX2
2136 CONFIG_MACH_CRANEBOARD 2135 CONFIG_MACH_CRANEBOARD
2137 CONFIG_MACH_CRUX 2136 CONFIG_MACH_CRUX
2138 CONFIG_MACH_CSB337 2137 CONFIG_MACH_CSB337
2139 CONFIG_MACH_CSB637 2138 CONFIG_MACH_CSB637
2140 CONFIG_MACH_CSB726 2139 CONFIG_MACH_CSB726
2141 CONFIG_MACH_CSC 2140 CONFIG_MACH_CSC
2142 CONFIG_MACH_CTBU_GEN2 2141 CONFIG_MACH_CTBU_GEN2
2143 CONFIG_MACH_CTERA_PLUG_C2 2142 CONFIG_MACH_CTERA_PLUG_C2
2144 CONFIG_MACH_CURACAO 2143 CONFIG_MACH_CURACAO
2145 CONFIG_MACH_CV2201 2144 CONFIG_MACH_CV2201
2146 CONFIG_MACH_CV2202 2145 CONFIG_MACH_CV2202
2147 CONFIG_MACH_CV2203 2146 CONFIG_MACH_CV2203
2148 CONFIG_MACH_CWAM1808 2147 CONFIG_MACH_CWAM1808
2149 CONFIG_MACH_CWDM365 2148 CONFIG_MACH_CWDM365
2150 CONFIG_MACH_CWME9210 2149 CONFIG_MACH_CWME9210
2151 CONFIG_MACH_CWME9210JS 2150 CONFIG_MACH_CWME9210JS
2152 CONFIG_MACH_CWMX233 2151 CONFIG_MACH_CWMX233
2153 CONFIG_MACH_D2NET 2152 CONFIG_MACH_D2NET
2154 CONFIG_MACH_D2NET_V2 2153 CONFIG_MACH_D2NET_V2
2155 CONFIG_MACH_D2PLUG 2154 CONFIG_MACH_D2PLUG
2156 CONFIG_MACH_DA850_K5 2155 CONFIG_MACH_DA850_K5
2157 CONFIG_MACH_DAINTREE_CWAC 2156 CONFIG_MACH_DAINTREE_CWAC
2158 CONFIG_MACH_DATAWAY 2157 CONFIG_MACH_DATAWAY
2159 CONFIG_MACH_DAVINCI_CALIMAIN 2158 CONFIG_MACH_DAVINCI_CALIMAIN
2160 CONFIG_MACH_DAVINCI_DA830_EVM 2159 CONFIG_MACH_DAVINCI_DA830_EVM
2161 CONFIG_MACH_DAVINCI_DA850_EVM 2160 CONFIG_MACH_DAVINCI_DA850_EVM
2162 CONFIG_MACH_DAVINCI_DM355_EVM 2161 CONFIG_MACH_DAVINCI_DM355_EVM
2163 CONFIG_MACH_DAVINCI_DM355_MMM 2162 CONFIG_MACH_DAVINCI_DM355_MMM
2164 CONFIG_MACH_DAVINCI_DM365_BV 2163 CONFIG_MACH_DAVINCI_DM365_BV
2165 CONFIG_MACH_DAVINCI_DM365_DVR 2164 CONFIG_MACH_DAVINCI_DM365_DVR
2166 CONFIG_MACH_DAVINCI_DM365_EVM 2165 CONFIG_MACH_DAVINCI_DM365_EVM
2167 CONFIG_MACH_DAVINCI_DM6467TEVM 2166 CONFIG_MACH_DAVINCI_DM6467TEVM
2168 CONFIG_MACH_DAVINCI_DM6467_EVM 2167 CONFIG_MACH_DAVINCI_DM6467_EVM
2169 CONFIG_MACH_DAVINCI_EVM 2168 CONFIG_MACH_DAVINCI_EVM
2170 CONFIG_MACH_DAVINCI_PICTO 2169 CONFIG_MACH_DAVINCI_PICTO
2171 CONFIG_MACH_DAWAD7 2170 CONFIG_MACH_DAWAD7
2172 CONFIG_MACH_DB78X00_BP 2171 CONFIG_MACH_DB78X00_BP
2173 CONFIG_MACH_DB88F5281 2172 CONFIG_MACH_DB88F5281
2174 CONFIG_MACH_DB88F6281_BP 2173 CONFIG_MACH_DB88F6281_BP
2175 CONFIG_MACH_DDNAS 2174 CONFIG_MACH_DDNAS
2176 CONFIG_MACH_DDPLUG 2175 CONFIG_MACH_DDPLUG
2177 CONFIG_MACH_DDS 2176 CONFIG_MACH_DDS
2178 CONFIG_MACH_DEEP_R_EK_1 2177 CONFIG_MACH_DEEP_R_EK_1
2179 CONFIG_MACH_DEVIXP 2178 CONFIG_MACH_DEVIXP
2180 CONFIG_MACH_DEVKIT8000 2179 CONFIG_MACH_DEVKIT8000
2181 CONFIG_MACH_DGM3240 2180 CONFIG_MACH_DGM3240
2182 CONFIG_MACH_DIMMSAM9G20 2181 CONFIG_MACH_DIMMSAM9G20
2183 CONFIG_MACH_DIMM_IMX28 2182 CONFIG_MACH_DIMM_IMX28
2184 CONFIG_MACH_DIMM_MX257 2183 CONFIG_MACH_DIMM_MX257
2185 CONFIG_MACH_DINGO 2184 CONFIG_MACH_DINGO
2186 CONFIG_MACH_DIR665 2185 CONFIG_MACH_DIR665
2187 CONFIG_MACH_DM355_LEOPARD 2186 CONFIG_MACH_DM355_LEOPARD
2188 CONFIG_MACH_DM365_CV100 2187 CONFIG_MACH_DM365_CV100
2189 CONFIG_MACH_DM368_LEOPARD 2188 CONFIG_MACH_DM368_LEOPARD
2190 CONFIG_MACH_DM3730_SOM_LV 2189 CONFIG_MACH_DM3730_SOM_LV
2191 CONFIG_MACH_DM3730_TORPEDO 2190 CONFIG_MACH_DM3730_TORPEDO
2192 CONFIG_MACH_DM6441_ESP 2191 CONFIG_MACH_DM6441_ESP
2193 CONFIG_MACH_DM6446_ADBOX 2192 CONFIG_MACH_DM6446_ADBOX
2194 CONFIG_MACH_DMA6410 2193 CONFIG_MACH_DMA6410
2195 CONFIG_MACH_DMA_THUNDERBUG 2194 CONFIG_MACH_DMA_THUNDERBUG
2196 CONFIG_MACH_DMW96 2195 CONFIG_MACH_DMW96
2197 CONFIG_MACH_DNS323 2196 CONFIG_MACH_DNS323
2198 CONFIG_MACH_DOCKSTAR 2197 CONFIG_MACH_DOCKSTAR
2199 CONFIG_MACH_DOORBOY 2198 CONFIG_MACH_DOORBOY
2200 CONFIG_MACH_DOUBLESHOT 2199 CONFIG_MACH_DOUBLESHOT
2201 CONFIG_MACH_DOVE_AVNG_V3 2200 CONFIG_MACH_DOVE_AVNG_V3
2202 CONFIG_MACH_DOVE_DB 2201 CONFIG_MACH_DOVE_DB
2203 CONFIG_MACH_DP6XX 2202 CONFIG_MACH_DP6XX
2204 CONFIG_MACH_DRAGONET 2203 CONFIG_MACH_DRAGONET
2205 CONFIG_MACH_DSM320 2204 CONFIG_MACH_DSM320
2206 CONFIG_MACH_DSMG600 2205 CONFIG_MACH_DSMG600
2207 CONFIG_MACH_DURIAN 2206 CONFIG_MACH_DURIAN
2208 CONFIG_MACH_DYNASTY 2207 CONFIG_MACH_DYNASTY
2209 CONFIG_MACH_E10 2208 CONFIG_MACH_E10
2210 CONFIG_MACH_E330 2209 CONFIG_MACH_E330
2211 CONFIG_MACH_E350 2210 CONFIG_MACH_E350
2212 CONFIG_MACH_E400 2211 CONFIG_MACH_E400
2213 CONFIG_MACH_E740 2212 CONFIG_MACH_E740
2214 CONFIG_MACH_E750 2213 CONFIG_MACH_E750
2215 CONFIG_MACH_E800 2214 CONFIG_MACH_E800
2216 CONFIG_MACH_EA20 2215 CONFIG_MACH_EA20
2217 CONFIG_MACH_EA2478DEVKIT 2216 CONFIG_MACH_EA2478DEVKIT
2218 CONFIG_MACH_EAG_CI4000 2217 CONFIG_MACH_EAG_CI4000
2219 CONFIG_MACH_EASYCRRH 2218 CONFIG_MACH_EASYCRRH
2220 CONFIG_MACH_EC4350SDB 2219 CONFIG_MACH_EC4350SDB
2221 CONFIG_MACH_EC4350TBM 2220 CONFIG_MACH_EC4350TBM
2222 CONFIG_MACH_ECBAT91 2221 CONFIG_MACH_ECBAT91
2223 CONFIG_MACH_ECO920 2222 CONFIG_MACH_ECO920
2224 CONFIG_MACH_ECUV5 2223 CONFIG_MACH_ECUV5
2225 CONFIG_MACH_EDB9301 2224 CONFIG_MACH_EDB9301
2226 CONFIG_MACH_EDB9302 2225 CONFIG_MACH_EDB9302
2227 CONFIG_MACH_EDB9302A 2226 CONFIG_MACH_EDB9302A
2228 CONFIG_MACH_EDB9307 2227 CONFIG_MACH_EDB9307
2229 CONFIG_MACH_EDB9307A 2228 CONFIG_MACH_EDB9307A
2230 CONFIG_MACH_EDB9312 2229 CONFIG_MACH_EDB9312
2231 CONFIG_MACH_EDB9315 2230 CONFIG_MACH_EDB9315
2232 CONFIG_MACH_EDB9315A 2231 CONFIG_MACH_EDB9315A
2233 CONFIG_MACH_EDISON 2232 CONFIG_MACH_EDISON
2234 CONFIG_MACH_EDMINIV2 2233 CONFIG_MACH_EDMINIV2
2235 CONFIG_MACH_EDMINI_V2 2234 CONFIG_MACH_EDMINI_V2
2236 CONFIG_MACH_EELX2 2235 CONFIG_MACH_EELX2
2237 CONFIG_MACH_EIGEN_TTR 2236 CONFIG_MACH_EIGEN_TTR
2238 CONFIG_MACH_ELEPHANT 2237 CONFIG_MACH_ELEPHANT
2239 CONFIG_MACH_ELKE 2238 CONFIG_MACH_ELKE
2240 CONFIG_MACH_ELOG 2239 CONFIG_MACH_ELOG
2241 CONFIG_MACH_EM1SY 2240 CONFIG_MACH_EM1SY
2242 CONFIG_MACH_EM7210 2241 CONFIG_MACH_EM7210
2243 CONFIG_MACH_EMERALD 2242 CONFIG_MACH_EMERALD
2244 CONFIG_MACH_EM_X270 2243 CONFIG_MACH_EM_X270
2245 CONFIG_MACH_ENCORE 2244 CONFIG_MACH_ENCORE
2246 CONFIG_MACH_ENDIAN_MINI 2245 CONFIG_MACH_ENDIAN_MINI
2247 CONFIG_MACH_EP80219 2246 CONFIG_MACH_EP80219
2248 CONFIG_MACH_EPC10 2247 CONFIG_MACH_EPC10
2249 CONFIG_MACH_EPIPHAN 2248 CONFIG_MACH_EPIPHAN
2250 CONFIG_MACH_ES2440 2249 CONFIG_MACH_ES2440
2251 CONFIG_MACH_ESATA_SHEEVAPLUG 2250 CONFIG_MACH_ESATA_SHEEVAPLUG
2252 CONFIG_MACH_ESL_MOBILIS_A 2251 CONFIG_MACH_ESL_MOBILIS_A
2253 CONFIG_MACH_ESL_MOBILIS_B 2252 CONFIG_MACH_ESL_MOBILIS_B
2254 CONFIG_MACH_ESL_WAVE_A 2253 CONFIG_MACH_ESL_WAVE_A
2255 CONFIG_MACH_ESL_WAVE_B 2254 CONFIG_MACH_ESL_WAVE_B
2256 CONFIG_MACH_ESPRESSO 2255 CONFIG_MACH_ESPRESSO
2257 CONFIG_MACH_ETHERPRO_ISP 2256 CONFIG_MACH_ETHERPRO_ISP
2258 CONFIG_MACH_ETNA 2257 CONFIG_MACH_ETNA
2259 CONFIG_MACH_EUKREA_CPUIMX25SD 2258 CONFIG_MACH_EUKREA_CPUIMX25SD
2260 CONFIG_MACH_EUKREA_CPUIMX35SD 2259 CONFIG_MACH_EUKREA_CPUIMX35SD
2261 CONFIG_MACH_EUKREA_CPUIMX51 2260 CONFIG_MACH_EUKREA_CPUIMX51
2262 CONFIG_MACH_EUKREA_CPUIMX51SD 2261 CONFIG_MACH_EUKREA_CPUIMX51SD
2263 CONFIG_MACH_EVA2000 2262 CONFIG_MACH_EVA2000
2264 CONFIG_MACH_EVSY 2263 CONFIG_MACH_EVSY
2265 CONFIG_MACH_EXEDA 2264 CONFIG_MACH_EXEDA
2266 CONFIG_MACH_EXPRESS 2265 CONFIG_MACH_EXPRESS
2267 CONFIG_MACH_EXPRESSCT 2266 CONFIG_MACH_EXPRESSCT
2268 CONFIG_MACH_EXPRESSH 2267 CONFIG_MACH_EXPRESSH
2269 CONFIG_MACH_EXPRESS_KT 2268 CONFIG_MACH_EXPRESS_KT
2270 CONFIG_MACH_EZX_A1200 2269 CONFIG_MACH_EZX_A1200
2271 CONFIG_MACH_EZX_A780 2270 CONFIG_MACH_EZX_A780
2272 CONFIG_MACH_EZX_A910 2271 CONFIG_MACH_EZX_A910
2273 CONFIG_MACH_EZX_E2 2272 CONFIG_MACH_EZX_E2
2274 CONFIG_MACH_EZX_E6 2273 CONFIG_MACH_EZX_E6
2275 CONFIG_MACH_EZX_E680 2274 CONFIG_MACH_EZX_E680
2276 CONFIG_MACH_FA9X27 2275 CONFIG_MACH_FA9X27
2277 CONFIG_MACH_FFCORE 2276 CONFIG_MACH_FFCORE
2278 CONFIG_MACH_FLEXIBITY 2277 CONFIG_MACH_FLEXIBITY
2279 CONFIG_MACH_FLINT 2278 CONFIG_MACH_FLINT
2280 CONFIG_MACH_FLYER 2279 CONFIG_MACH_FLYER
2281 CONFIG_MACH_FRISMS 2280 CONFIG_MACH_FRISMS
2282 CONFIG_MACH_FRRHWCDMA60W 2281 CONFIG_MACH_FRRHWCDMA60W
2283 CONFIG_MACH_FSG 2282 CONFIG_MACH_FSG
2284 CONFIG_MACH_FSM9XXX_FFA 2283 CONFIG_MACH_FSM9XXX_FFA
2285 CONFIG_MACH_FSM9XXX_SURF 2284 CONFIG_MACH_FSM9XXX_SURF
2286 CONFIG_MACH_FS_S5PC100 2285 CONFIG_MACH_FS_S5PC100
2287 CONFIG_MACH_FUJI 2286 CONFIG_MACH_FUJI
2288 CONFIG_MACH_FWBD_0404 2287 CONFIG_MACH_FWBD_0404
2289 CONFIG_MACH_G3EVM 2288 CONFIG_MACH_G3EVM
2290 CONFIG_MACH_G4EVM 2289 CONFIG_MACH_G4EVM
2291 CONFIG_MACH_GATEWAY7001 2290 CONFIG_MACH_GATEWAY7001
2292 CONFIG_MACH_GENEVA_B5 2291 CONFIG_MACH_GENEVA_B5
2293 CONFIG_MACH_GESBC9312 2292 CONFIG_MACH_GESBC9312
2294 CONFIG_MACH_GFS_SPM 2293 CONFIG_MACH_GFS_SPM
2295 CONFIG_MACH_GINGER 2294 CONFIG_MACH_GINGER
2296 CONFIG_MACH_GIRA_KNXIP_ROUTER 2295 CONFIG_MACH_GIRA_KNXIP_ROUTER
2297 CONFIG_MACH_GLANTANK 2296 CONFIG_MACH_GLANTANK
2298 CONFIG_MACH_GNET_SGCE 2297 CONFIG_MACH_GNET_SGCE
2299 CONFIG_MACH_GNET_SGME 2298 CONFIG_MACH_GNET_SGME
2300 CONFIG_MACH_GNET_SLC 2299 CONFIG_MACH_GNET_SLC
2301 CONFIG_MACH_GOFLEXHOME 2300 CONFIG_MACH_GOFLEXHOME
2302 CONFIG_MACH_GOFLEXNET 2301 CONFIG_MACH_GOFLEXNET
2303 CONFIG_MACH_GOLDENGATE 2302 CONFIG_MACH_GOLDENGATE
2304 CONFIG_MACH_GONI 2303 CONFIG_MACH_GONI
2305 CONFIG_MACH_GORAMO_MLR 2304 CONFIG_MACH_GORAMO_MLR
2306 CONFIG_MACH_GPSDISPLAY 2305 CONFIG_MACH_GPSDISPLAY
2307 CONFIG_MACH_GREECO 2306 CONFIG_MACH_GREECO
2308 CONFIG_MACH_GSIA18S 2307 CONFIG_MACH_GSIA18S
2309 CONFIG_MACH_GSL_DIAMOND 2308 CONFIG_MACH_GSL_DIAMOND
2310 CONFIG_MACH_GSNCOMM 2309 CONFIG_MACH_GSNCOMM
2311 CONFIG_MACH_GTA04 2310 CONFIG_MACH_GTA04
2312 CONFIG_MACH_GTIB 2311 CONFIG_MACH_GTIB
2313 CONFIG_MACH_GTL_IT5100 2312 CONFIG_MACH_GTL_IT5100
2314 CONFIG_MACH_GTWX5715 2313 CONFIG_MACH_GTWX5715
2315 CONFIG_MACH_GT_I5700 2314 CONFIG_MACH_GT_I5700
2316 CONFIG_MACH_GUPPY 2315 CONFIG_MACH_GUPPY
2317 CONFIG_MACH_GURNARD 2316 CONFIG_MACH_GURNARD
2318 CONFIG_MACH_GURUPLUG 2317 CONFIG_MACH_GURUPLUG
2319 CONFIG_MACH_GW2361 2318 CONFIG_MACH_GW2361
2320 CONFIG_MACH_H1600 2319 CONFIG_MACH_H1600
2321 CONFIG_MACH_H4700 2320 CONFIG_MACH_H4700
2322 CONFIG_MACH_HABA_KNX_EXPLORER 2321 CONFIG_MACH_HABA_KNX_EXPLORER
2323 CONFIG_MACH_HALIBUT 2322 CONFIG_MACH_HALIBUT
2324 CONFIG_MACH_HAMMERHEAD 2323 CONFIG_MACH_HAMMERHEAD
2325 CONFIG_MACH_HARMONY 2324 CONFIG_MACH_HARMONY
2326 CONFIG_MACH_HARVEST_DESOTO 2325 CONFIG_MACH_HARVEST_DESOTO
2327 CONFIG_MACH_HAWKS 2326 CONFIG_MACH_HAWKS
2328 CONFIG_MACH_HDGU 2327 CONFIG_MACH_HDGU
2329 CONFIG_MACH_HDMINI 2328 CONFIG_MACH_HDMINI
2330 CONFIG_MACH_HDNVP 2329 CONFIG_MACH_HDNVP
2331 CONFIG_MACH_HELIOS_V1 2330 CONFIG_MACH_HELIOS_V1
2332 CONFIG_MACH_HELIOS_V2 2331 CONFIG_MACH_HELIOS_V2
2333 CONFIG_MACH_HERALD 2332 CONFIG_MACH_HERALD
2334 CONFIG_MACH_HERRING 2333 CONFIG_MACH_HERRING
2335 CONFIG_MACH_HIMALAYA 2334 CONFIG_MACH_HIMALAYA
2336 CONFIG_MACH_HJSDU 2335 CONFIG_MACH_HJSDU
2337 CONFIG_MACH_HKDKC100 2336 CONFIG_MACH_HKDKC100
2338 CONFIG_MACH_HMT 2337 CONFIG_MACH_HMT
2339 CONFIG_MACH_HOLIDAY 2338 CONFIG_MACH_HOLIDAY
2340 CONFIG_MACH_HREFV60 2339 CONFIG_MACH_HREFV60
2341 CONFIG_MACH_HSGX6D 2340 CONFIG_MACH_HSGX6D
2342 CONFIG_MACH_HTCMEGA 2341 CONFIG_MACH_HTCMEGA
2343 CONFIG_MACH_HTCTORNADO 2342 CONFIG_MACH_HTCTORNADO
2344 CONFIG_MACH_HTC_HD_MINI 2343 CONFIG_MACH_HTC_HD_MINI
2345 CONFIG_MACH_HTC_SPV_M700 2344 CONFIG_MACH_HTC_SPV_M700
2346 CONFIG_MACH_HUASHAN 2345 CONFIG_MACH_HUASHAN
2347 CONFIG_MACH_HUSKY 2346 CONFIG_MACH_HUSKY
2348 CONFIG_MACH_HWGW6410 2347 CONFIG_MACH_HWGW6410
2349 CONFIG_MACH_IAM28 2348 CONFIG_MACH_IAM28
2350 CONFIG_MACH_ICON 2349 CONFIG_MACH_ICON
2351 CONFIG_MACH_ICONG 2350 CONFIG_MACH_ICONG
2352 CONFIG_MACH_ICONNECT 2351 CONFIG_MACH_ICONNECT
2353 CONFIG_MACH_ICONTROL 2352 CONFIG_MACH_ICONTROL
2354 CONFIG_MACH_ICON_G 2353 CONFIG_MACH_ICON_G
2355 CONFIG_MACH_ICS_IF_VOIP 2354 CONFIG_MACH_ICS_IF_VOIP
2356 CONFIG_MACH_IDEA6410 2355 CONFIG_MACH_IDEA6410
2357 CONFIG_MACH_IGEP0020 2356 CONFIG_MACH_IGEP0020
2358 CONFIG_MACH_IGEP0030 2357 CONFIG_MACH_IGEP0030
2359 CONFIG_MACH_IGEP0032 2358 CONFIG_MACH_IGEP0032
2360 CONFIG_MACH_IJ3K_2440 2359 CONFIG_MACH_IJ3K_2440
2361 CONFIG_MACH_IMATE8502 2360 CONFIG_MACH_IMATE8502
2362 CONFIG_MACH_IMX27IPCAM 2361 CONFIG_MACH_IMX27IPCAM
2363 CONFIG_MACH_IMX27LITE 2362 CONFIG_MACH_IMX27LITE
2364 CONFIG_MACH_IMX27_VISSTRIM_M10 2363 CONFIG_MACH_IMX27_VISSTRIM_M10
2365 CONFIG_MACH_INCOME 2364 CONFIG_MACH_INCOME
2366 CONFIG_MACH_INETSPACE_V2 2365 CONFIG_MACH_INETSPACE_V2
2367 CONFIG_MACH_INHAND_APEIRON 2366 CONFIG_MACH_INHAND_APEIRON
2368 CONFIG_MACH_INHAND_FURY 2367 CONFIG_MACH_INHAND_FURY
2369 CONFIG_MACH_INHAND_SIREN 2368 CONFIG_MACH_INHAND_SIREN
2370 CONFIG_MACH_INTELMOTE2 2369 CONFIG_MACH_INTELMOTE2
2371 CONFIG_MACH_IOMEGA_IX2_200 2370 CONFIG_MACH_IOMEGA_IX2_200
2372 CONFIG_MACH_IQ80332 2371 CONFIG_MACH_IQ80332
2373 CONFIG_MACH_IQ81340MC 2372 CONFIG_MACH_IQ81340MC
2374 CONFIG_MACH_IQ81340SC 2373 CONFIG_MACH_IQ81340SC
2375 CONFIG_MACH_ISC3 2374 CONFIG_MACH_ISC3
2376 CONFIG_MACH_IXDP2351 2375 CONFIG_MACH_IXDP2351
2377 CONFIG_MACH_IXDP28X5 2376 CONFIG_MACH_IXDP28X5
2378 CONFIG_MACH_IXDP465 2377 CONFIG_MACH_IXDP465
2379 CONFIG_MACH_IXDPG425 2378 CONFIG_MACH_IXDPG425
2380 CONFIG_MACH_JANUS 2379 CONFIG_MACH_JANUS
2381 CONFIG_MACH_JIGEN 2380 CONFIG_MACH_JIGEN
2382 CONFIG_MACH_JIVE 2381 CONFIG_MACH_JIVE
2383 CONFIG_MACH_JOCPU550 2382 CONFIG_MACH_JOCPU550
2384 CONFIG_MACH_KAEN 2383 CONFIG_MACH_KAEN
2385 CONFIG_MACH_KAFA 2384 CONFIG_MACH_KAFA
2386 CONFIG_MACH_KB9200 2385 CONFIG_MACH_KB9200
2387 CONFIG_MACH_KEV7A400 2386 CONFIG_MACH_KEV7A400
2388 CONFIG_MACH_KINGDOM 2387 CONFIG_MACH_KINGDOM
2389 CONFIG_MACH_KIXRP435 2388 CONFIG_MACH_KIXRP435
2390 CONFIG_MACH_KMM2M01 2389 CONFIG_MACH_KMM2M01
2391 CONFIG_MACH_KMP_AM17_01 2390 CONFIG_MACH_KMP_AM17_01
2392 CONFIG_MACH_KM_KIRKWOOD 2391 CONFIG_MACH_KM_KIRKWOOD
2393 CONFIG_MACH_KOI 2392 CONFIG_MACH_KOI
2394 CONFIG_MACH_KRONOS 2393 CONFIG_MACH_KRONOS
2395 CONFIG_MACH_KT_SBC_SAM9_1 2394 CONFIG_MACH_KT_SBC_SAM9_1
2396 CONFIG_MACH_KUROBOX_PRO 2395 CONFIG_MACH_KUROBOX_PRO
2397 CONFIG_MACH_KX33XX 2396 CONFIG_MACH_KX33XX
2398 CONFIG_MACH_KZM9D 2397 CONFIG_MACH_KZM9D
2399 CONFIG_MACH_KZM9G 2398 CONFIG_MACH_KZM9G
2400 CONFIG_MACH_KZM_ARM11_01 2399 CONFIG_MACH_KZM_ARM11_01
2401 CONFIG_MACH_LANREADYFN511 2400 CONFIG_MACH_LANREADYFN511
2402 CONFIG_MACH_LAUSANNE 2401 CONFIG_MACH_LAUSANNE
2403 CONFIG_MACH_LB88RC8480 2402 CONFIG_MACH_LB88RC8480
2404 CONFIG_MACH_LEAD 2403 CONFIG_MACH_LEAD
2405 CONFIG_MACH_LEGACY 2404 CONFIG_MACH_LEGACY
2406 CONFIG_MACH_LEMON 2405 CONFIG_MACH_LEMON
2407 CONFIG_MACH_LIBRA 2406 CONFIG_MACH_LIBRA
2408 CONFIG_MACH_LIGHTNING 2407 CONFIG_MACH_LIGHTNING
2409 CONFIG_MACH_LILLY1131 2408 CONFIG_MACH_LILLY1131
2410 CONFIG_MACH_LINKSTATION_CHLV2 2409 CONFIG_MACH_LINKSTATION_CHLV2
2411 CONFIG_MACH_LINKSTATION_LSCHL 2410 CONFIG_MACH_LINKSTATION_LSCHL
2412 CONFIG_MACH_LINKSTATION_LS_HGL 2411 CONFIG_MACH_LINKSTATION_LS_HGL
2413 CONFIG_MACH_LINKSTATION_MINI 2412 CONFIG_MACH_LINKSTATION_MINI
2414 CONFIG_MACH_LINKSTATION_PRO 2413 CONFIG_MACH_LINKSTATION_PRO
2415 CONFIG_MACH_LITTLETON 2414 CONFIG_MACH_LITTLETON
2416 CONFIG_MACH_LOFT 2415 CONFIG_MACH_LOFT
2417 CONFIG_MACH_LOGICPD_PXA270 2416 CONFIG_MACH_LOGICPD_PXA270
2418 CONFIG_MACH_LPC24XX 2417 CONFIG_MACH_LPC24XX
2419 CONFIG_MACH_LPD7A400 2418 CONFIG_MACH_LPD7A400
2420 CONFIG_MACH_LPD7A404 2419 CONFIG_MACH_LPD7A404
2421 CONFIG_MACH_LQ2 2420 CONFIG_MACH_LQ2
2422 CONFIG_MACH_LS9G20 2421 CONFIG_MACH_LS9G20
2423 CONFIG_MACH_LSWXL 2422 CONFIG_MACH_LSWXL
2424 CONFIG_MACH_M502 2423 CONFIG_MACH_M502
2425 CONFIG_MACH_MACH_SDH001 2424 CONFIG_MACH_MACH_SDH001
2426 CONFIG_MACH_MACKEREL 2425 CONFIG_MACH_MACKEREL
2427 CONFIG_MACH_MAGICIAN 2426 CONFIG_MACH_MAGICIAN
2428 CONFIG_MACH_MAGX_ZN5 2427 CONFIG_MACH_MAGX_ZN5
2429 CONFIG_MACH_MAHIMAHI 2428 CONFIG_MACH_MAHIMAHI
2430 CONFIG_MACH_MAINSTONE 2429 CONFIG_MACH_MAINSTONE
2431 CONFIG_MACH_MANUAE 2430 CONFIG_MACH_MANUAE
2432 CONFIG_MACH_MAPLE1 2431 CONFIG_MACH_MAPLE1
2433 CONFIG_MACH_MARVEL 2432 CONFIG_MACH_MARVEL
2434 CONFIG_MACH_MARVELC 2433 CONFIG_MACH_MARVELC
2435 CONFIG_MACH_MARVELCT 2434 CONFIG_MACH_MARVELCT
2436 CONFIG_MACH_MARVELL_JASPER 2435 CONFIG_MACH_MARVELL_JASPER
2437 CONFIG_MACH_MATRIX505 2436 CONFIG_MACH_MATRIX505
2438 CONFIG_MACH_MATRIX518 2437 CONFIG_MACH_MATRIX518
2439 CONFIG_MACH_MAXIMASP 2438 CONFIG_MACH_MAXIMASP
2440 CONFIG_MACH_MB3 2439 CONFIG_MACH_MB3
2441 CONFIG_MACH_MECHA 2440 CONFIG_MACH_MECHA
2442 CONFIG_MACH_MENO_QNG 2441 CONFIG_MACH_MENO_QNG
2443 CONFIG_MACH_MESON 2442 CONFIG_MACH_MESON
2444 CONFIG_MACH_MESON_6236M 2443 CONFIG_MACH_MESON_6236M
2445 CONFIG_MACH_MESON_8626M 2444 CONFIG_MACH_MESON_8626M
2446 CONFIG_MACH_MESSINA 2445 CONFIG_MACH_MESSINA
2447 CONFIG_MACH_MIC256 2446 CONFIG_MACH_MIC256
2448 CONFIG_MACH_MICCPT 2447 CONFIG_MACH_MICCPT
2449 CONFIG_MACH_MICRO9 2448 CONFIG_MACH_MICRO9
2450 CONFIG_MACH_MICRO9L 2449 CONFIG_MACH_MICRO9L
2451 CONFIG_MACH_MICRO9M 2450 CONFIG_MACH_MICRO9M
2452 CONFIG_MACH_MICRO9S 2451 CONFIG_MACH_MICRO9S
2453 CONFIG_MACH_MIF10P 2452 CONFIG_MACH_MIF10P
2454 CONFIG_MACH_MIMAS 2453 CONFIG_MACH_MIMAS
2455 CONFIG_MACH_MINI210 2454 CONFIG_MACH_MINI210
2456 CONFIG_MACH_MINI2440 2455 CONFIG_MACH_MINI2440
2457 CONFIG_MACH_MINI6410 2456 CONFIG_MACH_MINI6410
2458 CONFIG_MACH_MINI8168 2457 CONFIG_MACH_MINI8168
2459 CONFIG_MACH_MIOA502 2458 CONFIG_MACH_MIOA502
2460 CONFIG_MACH_MIOA701 2459 CONFIG_MACH_MIOA701
2461 CONFIG_MACH_MIONE 2460 CONFIG_MACH_MIONE
2462 CONFIG_MACH_MIOS_V1 2461 CONFIG_MACH_MIOS_V1
2463 CONFIG_MACH_MITYOMAPL138 2462 CONFIG_MACH_MITYOMAPL138
2464 CONFIG_MACH_MMM 2463 CONFIG_MACH_MMM
2465 CONFIG_MACH_MONCH 2464 CONFIG_MACH_MONCH
2466 CONFIG_MACH_MONE 2465 CONFIG_MACH_MONE
2467 CONFIG_MACH_MOON 2466 CONFIG_MACH_MOON
2468 CONFIG_MACH_MORA 2467 CONFIG_MACH_MORA
2469 CONFIG_MACH_MR301A 2468 CONFIG_MACH_MR301A
2470 CONFIG_MACH_MSM7X25_FFA 2469 CONFIG_MACH_MSM7X25_FFA
2471 CONFIG_MACH_MSM7X25_SURF 2470 CONFIG_MACH_MSM7X25_SURF
2472 CONFIG_MACH_MSM7X27A_FFA 2471 CONFIG_MACH_MSM7X27A_FFA
2473 CONFIG_MACH_MSM7X27A_RUMI3 2472 CONFIG_MACH_MSM7X27A_RUMI3
2474 CONFIG_MACH_MSM7X27A_SURF 2473 CONFIG_MACH_MSM7X27A_SURF
2475 CONFIG_MACH_MSM7X27_FFA 2474 CONFIG_MACH_MSM7X27_FFA
2476 CONFIG_MACH_MSM7X27_SURF 2475 CONFIG_MACH_MSM7X27_SURF
2477 CONFIG_MACH_MSM7X30_FFA 2476 CONFIG_MACH_MSM7X30_FFA
2478 CONFIG_MACH_MSM7X30_FLUID 2477 CONFIG_MACH_MSM7X30_FLUID
2479 CONFIG_MACH_MSM7X30_SURF 2478 CONFIG_MACH_MSM7X30_SURF
2480 CONFIG_MACH_MSM8960_APQ 2479 CONFIG_MACH_MSM8960_APQ
2481 CONFIG_MACH_MSM8960_CDP 2480 CONFIG_MACH_MSM8960_CDP
2482 CONFIG_MACH_MSM8960_FLUID 2481 CONFIG_MACH_MSM8960_FLUID
2483 CONFIG_MACH_MSM8960_MDP 2482 CONFIG_MACH_MSM8960_MDP
2484 CONFIG_MACH_MSM8960_RUMI3 2483 CONFIG_MACH_MSM8960_RUMI3
2485 CONFIG_MACH_MSM8960_SIM 2484 CONFIG_MACH_MSM8960_SIM
2486 CONFIG_MACH_MSM8X55_SVLTE_FFA 2485 CONFIG_MACH_MSM8X55_SVLTE_FFA
2487 CONFIG_MACH_MSM8X55_SVLTE_SURF 2486 CONFIG_MACH_MSM8X55_SVLTE_SURF
2488 CONFIG_MACH_MSM8X60_FFA 2487 CONFIG_MACH_MSM8X60_FFA
2489 CONFIG_MACH_MSM8X60_FLUID 2488 CONFIG_MACH_MSM8X60_FLUID
2490 CONFIG_MACH_MSM8X60_QRDC 2489 CONFIG_MACH_MSM8X60_QRDC
2491 CONFIG_MACH_MSM8X60_QT 2490 CONFIG_MACH_MSM8X60_QT
2492 CONFIG_MACH_MSM8X60_RUMI3 2491 CONFIG_MACH_MSM8X60_RUMI3
2493 CONFIG_MACH_MSM8X60_SIM 2492 CONFIG_MACH_MSM8X60_SIM
2494 CONFIG_MACH_MSM8X60_SURF 2493 CONFIG_MACH_MSM8X60_SURF
2495 CONFIG_MACH_MSS2 2494 CONFIG_MACH_MSS2
2496 CONFIG_MACH_MULTHSU 2495 CONFIG_MACH_MULTHSU
2497 CONFIG_MACH_MV2120 2496 CONFIG_MACH_MV2120
2498 CONFIG_MACH_MV88F6281GTW_GE 2497 CONFIG_MACH_MV88F6281GTW_GE
2499 CONFIG_MACH_MVBLX 2498 CONFIG_MACH_MVBLX
2500 CONFIG_MACH_MX21ADS 2499 CONFIG_MACH_MX21ADS
2501 CONFIG_MACH_MX23EVK 2500 CONFIG_MACH_MX23EVK
2502 CONFIG_MACH_MX257SOL 2501 CONFIG_MACH_MX257SOL
2503 CONFIG_MACH_MX257SX 2502 CONFIG_MACH_MX257SX
2504 CONFIG_MACH_MX25_3DS 2503 CONFIG_MACH_MX25_3DS
2505 CONFIG_MACH_MX25_E2S_UC 2504 CONFIG_MACH_MX25_E2S_UC
2506 CONFIG_MACH_MX27ADS 2505 CONFIG_MACH_MX27ADS
2507 CONFIG_MACH_MX27SU2 2506 CONFIG_MACH_MX27SU2
2508 CONFIG_MACH_MX27_3DS 2507 CONFIG_MACH_MX27_3DS
2509 CONFIG_MACH_MX27_WMULTRA 2508 CONFIG_MACH_MX27_WMULTRA
2510 CONFIG_MACH_MX28EVK 2509 CONFIG_MACH_MX28EVK
2511 CONFIG_MACH_MX31ADS 2510 CONFIG_MACH_MX31ADS
2512 CONFIG_MACH_MX31LITE 2511 CONFIG_MACH_MX31LITE
2513 CONFIG_MACH_MX31MOBOARD 2512 CONFIG_MACH_MX31MOBOARD
2514 CONFIG_MACH_MX31_3DS 2513 CONFIG_MACH_MX31_3DS
2515 CONFIG_MACH_MX35_3DS 2514 CONFIG_MACH_MX35_3DS
2516 CONFIG_MACH_MX50_ARM2 2515 CONFIG_MACH_MX50_ARM2
2517 CONFIG_MACH_MX50_RDP 2516 CONFIG_MACH_MX50_RDP
2518 CONFIG_MACH_MX51EREBUS 2517 CONFIG_MACH_MX51EREBUS
2519 CONFIG_MACH_MX51_3DS 2518 CONFIG_MACH_MX51_3DS
2520 CONFIG_MACH_MX51_ASTER7 2519 CONFIG_MACH_MX51_ASTER7
2521 CONFIG_MACH_MX51_BABBAGE 2520 CONFIG_MACH_MX51_BABBAGE
2522 CONFIG_MACH_MX51_BRAVO 2521 CONFIG_MACH_MX51_BRAVO
2523 CONFIG_MACH_MX51_EFIKAMX 2522 CONFIG_MACH_MX51_EFIKAMX
2524 CONFIG_MACH_MX51_EFIKASB 2523 CONFIG_MACH_MX51_EFIKASB
2525 CONFIG_MACH_MX51_GGC 2524 CONFIG_MACH_MX51_GGC
2526 CONFIG_MACH_MX51_MORAY 2525 CONFIG_MACH_MX51_MORAY
2527 CONFIG_MACH_MX51_TULIP 2526 CONFIG_MACH_MX51_TULIP
2528 CONFIG_MACH_MX53_ARD 2527 CONFIG_MACH_MX53_ARD
2529 CONFIG_MACH_MX53_EVK 2528 CONFIG_MACH_MX53_EVK
2530 CONFIG_MACH_MX53_LOCO 2529 CONFIG_MACH_MX53_LOCO
2531 CONFIG_MACH_MX53_SMD 2530 CONFIG_MACH_MX53_SMD
2532 CONFIG_MACH_MX61_ARD 2531 CONFIG_MACH_MX61_ARD
2533 CONFIG_MACH_MXC25_TOPAZ 2532 CONFIG_MACH_MXC25_TOPAZ
2534 CONFIG_MACH_MXLADS 2533 CONFIG_MACH_MXLADS
2535 CONFIG_MACH_MXT_TD60 2534 CONFIG_MACH_MXT_TD60
2536 CONFIG_MACH_MXT_TD61 2535 CONFIG_MACH_MXT_TD61
2537 CONFIG_MACH_N2100 2536 CONFIG_MACH_N2100
2538 CONFIG_MACH_N30 2537 CONFIG_MACH_N30
2539 CONFIG_MACH_N35 2538 CONFIG_MACH_N35
2540 CONFIG_MACH_NAJAY_A9263 2539 CONFIG_MACH_NAJAY_A9263
2541 CONFIG_MACH_NANOS 2540 CONFIG_MACH_NANOS
2542 CONFIG_MACH_NANOZOOM 2541 CONFIG_MACH_NANOZOOM
2543 CONFIG_MACH_NAS100D 2542 CONFIG_MACH_NAS100D
2544 CONFIG_MACH_NAS4220B 2543 CONFIG_MACH_NAS4220B
2545 CONFIG_MACH_NAS6210 2544 CONFIG_MACH_NAS6210
2546 CONFIG_MACH_NAVEFIHID 2545 CONFIG_MACH_NAVEFIHID
2547 CONFIG_MACH_NAXY1200 2546 CONFIG_MACH_NAXY1200
2548 CONFIG_MACH_NAXY400 2547 CONFIG_MACH_NAXY400
2549 CONFIG_MACH_NB31 2548 CONFIG_MACH_NB31
2550 CONFIG_MACH_NCP 2549 CONFIG_MACH_NCP
2551 CONFIG_MACH_NDA_EVM 2550 CONFIG_MACH_NDA_EVM
2552 CONFIG_MACH_NEC_MP900 2551 CONFIG_MACH_NEC_MP900
2553 CONFIG_MACH_NEO1973_GTA02 2552 CONFIG_MACH_NEO1973_GTA02
2554 CONFIG_MACH_NEOCORE926 2553 CONFIG_MACH_NEOCORE926
2555 CONFIG_MACH_NERY_1000 2554 CONFIG_MACH_NERY_1000
2556 CONFIG_MACH_NET2BIG 2555 CONFIG_MACH_NET2BIG
2557 CONFIG_MACH_NET2BIG_NAND_V2 2556 CONFIG_MACH_NET2BIG_NAND_V2
2558 CONFIG_MACH_NET2BIG_V2 2557 CONFIG_MACH_NET2BIG_V2
2559 CONFIG_MACH_NET5BIG_NAND_V2 2558 CONFIG_MACH_NET5BIG_NAND_V2
2560 CONFIG_MACH_NET5BIG_V2 2559 CONFIG_MACH_NET5BIG_V2
2561 CONFIG_MACH_NETSPACE_LITE_V2 2560 CONFIG_MACH_NETSPACE_LITE_V2
2562 CONFIG_MACH_NETSPACE_MAX_V2 2561 CONFIG_MACH_NETSPACE_MAX_V2
2563 CONFIG_MACH_NETSPACE_V2 2562 CONFIG_MACH_NETSPACE_V2
2564 CONFIG_MACH_NETVIZ 2563 CONFIG_MACH_NETVIZ
2565 CONFIG_MACH_NETWALKER 2564 CONFIG_MACH_NETWALKER
2566 CONFIG_MACH_NEUROS_OSD2 2565 CONFIG_MACH_NEUROS_OSD2
2567 CONFIG_MACH_NEXCODER_2440 2566 CONFIG_MACH_NEXCODER_2440
2568 CONFIG_MACH_NITROGEN_IMX51 2567 CONFIG_MACH_NITROGEN_IMX51
2569 CONFIG_MACH_NITROGEN_IMX53 2568 CONFIG_MACH_NITROGEN_IMX53
2570 CONFIG_MACH_NITROGEN_VM_IMX51 2569 CONFIG_MACH_NITROGEN_VM_IMX51
2571 CONFIG_MACH_NMH 2570 CONFIG_MACH_NMH
2572 CONFIG_MACH_NOKIA770 2571 CONFIG_MACH_NOKIA770
2573 CONFIG_MACH_NOKIA_N800 2572 CONFIG_MACH_NOKIA_N800
2574 CONFIG_MACH_NOKIA_N810 2573 CONFIG_MACH_NOKIA_N810
2575 CONFIG_MACH_NOKIA_N810_WIMAX 2574 CONFIG_MACH_NOKIA_N810_WIMAX
2576 CONFIG_MACH_NOKIA_RM680 2575 CONFIG_MACH_NOKIA_RM680
2577 CONFIG_MACH_NOKIA_RX51 2576 CONFIG_MACH_NOKIA_RX51
2578 CONFIG_MACH_NOMADIK 2577 CONFIG_MACH_NOMADIK
2579 CONFIG_MACH_NOTLE 2578 CONFIG_MACH_NOTLE
2580 CONFIG_MACH_NS2416 2579 CONFIG_MACH_NS2416
2581 CONFIG_MACH_NS2816TB 2580 CONFIG_MACH_NS2816TB
2582 CONFIG_MACH_NS2816_NTNB 2581 CONFIG_MACH_NS2816_NTNB
2583 CONFIG_MACH_NS2816_NTPAD 2582 CONFIG_MACH_NS2816_NTPAD
2584 CONFIG_MACH_NSB3AST 2583 CONFIG_MACH_NSB3AST
2585 CONFIG_MACH_NSK330 2584 CONFIG_MACH_NSK330
2586 CONFIG_MACH_NSLU2 2585 CONFIG_MACH_NSLU2
2587 CONFIG_MACH_NSSLSBOARD 2586 CONFIG_MACH_NSSLSBOARD
2588 CONFIG_MACH_NS_K330 2587 CONFIG_MACH_NS_K330
2589 CONFIG_MACH_NUC700EVB 2588 CONFIG_MACH_NUC700EVB
2590 CONFIG_MACH_NUC710EVB 2589 CONFIG_MACH_NUC710EVB
2591 CONFIG_MACH_NUC740EVB 2590 CONFIG_MACH_NUC740EVB
2592 CONFIG_MACH_NUC745EVB 2591 CONFIG_MACH_NUC745EVB
2593 CONFIG_MACH_NUC932EVB 2592 CONFIG_MACH_NUC932EVB
2594 CONFIG_MACH_NUC950TS 2593 CONFIG_MACH_NUC950TS
2595 CONFIG_MACH_NURI 2594 CONFIG_MACH_NURI
2596 CONFIG_MACH_NV1000 2595 CONFIG_MACH_NV1000
2597 CONFIG_MACH_NXDB500 2596 CONFIG_MACH_NXDB500
2598 CONFIG_MACH_NXDKN 2597 CONFIG_MACH_NXDKN
2599 CONFIG_MACH_NXEB500HMI 2598 CONFIG_MACH_NXEB500HMI
2600 CONFIG_MACH_OCE_NIGMA 2599 CONFIG_MACH_OCE_NIGMA
2601 CONFIG_MACH_OMAP2EVM 2600 CONFIG_MACH_OMAP2EVM
2602 CONFIG_MACH_OMAP3505NOVA8 2601 CONFIG_MACH_OMAP3505NOVA8
2603 CONFIG_MACH_OMAP3517EVM 2602 CONFIG_MACH_OMAP3517EVM
2604 CONFIG_MACH_OMAP3530_LV_SOM 2603 CONFIG_MACH_OMAP3530_LV_SOM
2605 CONFIG_MACH_OMAP3621_EDP1 2604 CONFIG_MACH_OMAP3621_EDP1
2606 CONFIG_MACH_OMAP3EVM 2605 CONFIG_MACH_OMAP3EVM
2607 CONFIG_MACH_OMAP3SMARTDISPLAY 2606 CONFIG_MACH_OMAP3SMARTDISPLAY
2608 CONFIG_MACH_OMAP3_BAIA 2607 CONFIG_MACH_OMAP3_BAIA
2609 CONFIG_MACH_OMAP3_BC10 2608 CONFIG_MACH_OMAP3_BC10
2610 CONFIG_MACH_OMAP3_BEAGLE 2609 CONFIG_MACH_OMAP3_BEAGLE
2611 CONFIG_MACH_OMAP3_BRAILLO 2610 CONFIG_MACH_OMAP3_BRAILLO
2612 CONFIG_MACH_OMAP3_IBIZA 2611 CONFIG_MACH_OMAP3_IBIZA
2613 CONFIG_MACH_OMAP3_PANDORA 2612 CONFIG_MACH_OMAP3_PANDORA
2614 CONFIG_MACH_OMAP3_RFS200 2613 CONFIG_MACH_OMAP3_RFS200
2615 CONFIG_MACH_OMAP3_TDM3730 2614 CONFIG_MACH_OMAP3_TDM3730
2616 CONFIG_MACH_OMAP3_TORPEDO 2615 CONFIG_MACH_OMAP3_TORPEDO
2617 CONFIG_MACH_OMAP3_WALDO1 2616 CONFIG_MACH_OMAP3_WALDO1
2618 CONFIG_MACH_OMAP4_PANDA 2617 CONFIG_MACH_OMAP4_PANDA
2619 CONFIG_MACH_OMAP5_SEVM 2618 CONFIG_MACH_OMAP5_SEVM
2620 CONFIG_MACH_OMAPL138_CASE_A3 2619 CONFIG_MACH_OMAPL138_CASE_A3
2621 CONFIG_MACH_OMAPL138_EUROPALC 2620 CONFIG_MACH_OMAPL138_EUROPALC
2622 CONFIG_MACH_OMAPL138_HAWKBOARD 2621 CONFIG_MACH_OMAPL138_HAWKBOARD
2623 CONFIG_MACH_OMAPL138_LCDK 2622 CONFIG_MACH_OMAPL138_LCDK
2624 CONFIG_MACH_OMAP_2430SDP 2623 CONFIG_MACH_OMAP_2430SDP
2625 CONFIG_MACH_OMAP_3430SDP 2624 CONFIG_MACH_OMAP_3430SDP
2626 CONFIG_MACH_OMAP_3630SDP 2625 CONFIG_MACH_OMAP_3630SDP
2627 CONFIG_MACH_OMAP_4430SDP 2626 CONFIG_MACH_OMAP_4430SDP
2628 CONFIG_MACH_OMAP_APOLLON 2627 CONFIG_MACH_OMAP_APOLLON
2629 CONFIG_MACH_OMAP_BENDER 2628 CONFIG_MACH_OMAP_BENDER
2630 CONFIG_MACH_OMAP_FSAMPLE 2629 CONFIG_MACH_OMAP_FSAMPLE
2631 CONFIG_MACH_OMAP_GENERIC 2630 CONFIG_MACH_OMAP_GENERIC
2632 CONFIG_MACH_OMAP_H2 2631 CONFIG_MACH_OMAP_H2
2633 CONFIG_MACH_OMAP_H3 2632 CONFIG_MACH_OMAP_H3
2634 CONFIG_MACH_OMAP_H4 2633 CONFIG_MACH_OMAP_H4
2635 CONFIG_MACH_OMAP_INNOVATOR 2634 CONFIG_MACH_OMAP_INNOVATOR
2636 CONFIG_MACH_OMAP_LDP 2635 CONFIG_MACH_OMAP_LDP
2637 CONFIG_MACH_OMAP_MCOP 2636 CONFIG_MACH_OMAP_MCOP
2638 CONFIG_MACH_OMAP_OSK 2637 CONFIG_MACH_OMAP_OSK
2639 CONFIG_MACH_OMAP_PALMTE 2638 CONFIG_MACH_OMAP_PALMTE
2640 CONFIG_MACH_OMAP_PALMTT 2639 CONFIG_MACH_OMAP_PALMTT
2641 CONFIG_MACH_OMAP_PALMZ71 2640 CONFIG_MACH_OMAP_PALMZ71
2642 CONFIG_MACH_OMAP_PERSEUS2 2641 CONFIG_MACH_OMAP_PERSEUS2
2643 CONFIG_MACH_OMAP_ZOOM2 2642 CONFIG_MACH_OMAP_ZOOM2
2644 CONFIG_MACH_OMAP_ZOOM3 2643 CONFIG_MACH_OMAP_ZOOM3
2645 CONFIG_MACH_OMN_AT91SAM9G20 2644 CONFIG_MACH_OMN_AT91SAM9G20
2646 CONFIG_MACH_ONEARM 2645 CONFIG_MACH_ONEARM
2647 CONFIG_MACH_OPENRD_BASE 2646 CONFIG_MACH_OPENRD_BASE
2648 CONFIG_MACH_OPENRD_CLIENT 2647 CONFIG_MACH_OPENRD_CLIENT
2649 CONFIG_MACH_OPENRD_ULTIMATE 2648 CONFIG_MACH_OPENRD_ULTIMATE
2650 CONFIG_MACH_ORATISAES 2649 CONFIG_MACH_ORATISAES
2651 CONFIG_MACH_ORATISLINK 2650 CONFIG_MACH_ORATISLINK
2652 CONFIG_MACH_ORIGEN 2651 CONFIG_MACH_ORIGEN
2653 CONFIG_MACH_OSIRIS 2652 CONFIG_MACH_OSIRIS
2654 CONFIG_MACH_OSLO_AMUNDSEN 2653 CONFIG_MACH_OSLO_AMUNDSEN
2655 CONFIG_MACH_OTOM 2654 CONFIG_MACH_OTOM
2656 CONFIG_MACH_OVERO 2655 CONFIG_MACH_OVERO
2657 CONFIG_MACH_OVERO_CTU_INERTIAL 2656 CONFIG_MACH_OVERO_CTU_INERTIAL
2658 CONFIG_MACH_P87_SMARTSIM 2657 CONFIG_MACH_P87_SMARTSIM
2659 CONFIG_MACH_PALMLD 2658 CONFIG_MACH_PALMLD
2660 CONFIG_MACH_PALMT5 2659 CONFIG_MACH_PALMT5
2661 CONFIG_MACH_PALMTC 2660 CONFIG_MACH_PALMTC
2662 CONFIG_MACH_PALMTE2 2661 CONFIG_MACH_PALMTE2
2663 CONFIG_MACH_PALMTX 2662 CONFIG_MACH_PALMTX
2664 CONFIG_MACH_PALMZ72 2663 CONFIG_MACH_PALMZ72
2665 CONFIG_MACH_PAZ00 2664 CONFIG_MACH_PAZ00
2666 CONFIG_MACH_PC7302 2665 CONFIG_MACH_PC7302
2667 CONFIG_MACH_PC7308 2666 CONFIG_MACH_PC7308
2668 CONFIG_MACH_PC9260_V2 2667 CONFIG_MACH_PC9260_V2
2669 CONFIG_MACH_PCA100 2668 CONFIG_MACH_PCA100
2670 CONFIG_MACH_PCA102 2669 CONFIG_MACH_PCA102
2671 CONFIG_MACH_PCATS_OVERLAY 2670 CONFIG_MACH_PCATS_OVERLAY
2672 CONFIG_MACH_PCM027 2671 CONFIG_MACH_PCM027
2673 CONFIG_MACH_PCM037 2672 CONFIG_MACH_PCM037
2674 CONFIG_MACH_PCM038 2673 CONFIG_MACH_PCM038
2675 CONFIG_MACH_PCM043 2674 CONFIG_MACH_PCM043
2676 CONFIG_MACH_PCM048 2675 CONFIG_MACH_PCM048
2677 CONFIG_MACH_PCM049 2676 CONFIG_MACH_PCM049
2678 CONFIG_MACH_PCONTROL_G20 2677 CONFIG_MACH_PCONTROL_G20
2679 CONFIG_MACH_PEC_HC2 2678 CONFIG_MACH_PEC_HC2
2680 CONFIG_MACH_PEC_TC 2679 CONFIG_MACH_PEC_TC
2681 CONFIG_MACH_PEMP_OMAP3_APOLLO 2680 CONFIG_MACH_PEMP_OMAP3_APOLLO
2682 CONFIG_MACH_PGS_SITARA 2681 CONFIG_MACH_PGS_SITARA
2683 CONFIG_MACH_PHILHWANI 2682 CONFIG_MACH_PHILHWANI
2684 CONFIG_MACH_PHY3250 2683 CONFIG_MACH_PHY3250
2685 CONFIG_MACH_PICASSO 2684 CONFIG_MACH_PICASSO
2686 CONFIG_MACH_PICO 2685 CONFIG_MACH_PICO
2687 CONFIG_MACH_PICOCOM3 2686 CONFIG_MACH_PICOCOM3
2688 CONFIG_MACH_PICOCOM4 2687 CONFIG_MACH_PICOCOM4
2689 CONFIG_MACH_PICOTUX2XX 2688 CONFIG_MACH_PICOTUX2XX
2690 CONFIG_MACH_PIVICC 2689 CONFIG_MACH_PIVICC
2691 CONFIG_MACH_PNX4008 2690 CONFIG_MACH_PNX4008
2692 CONFIG_MACH_POLYSAT1 2691 CONFIG_MACH_POLYSAT1
2693 CONFIG_MACH_POODLE 2692 CONFIG_MACH_POODLE
2694 CONFIG_MACH_PORTUXG20 2693 CONFIG_MACH_PORTUXG20
2695 CONFIG_MACH_POV15HD 2694 CONFIG_MACH_POV15HD
2696 CONFIG_MACH_PREMIERWAVE_EN 2695 CONFIG_MACH_PREMIERWAVE_EN
2697 CONFIG_MACH_PRIMA2_EVB 2696 CONFIG_MACH_PRIMA2_EVB
2698 CONFIG_MACH_PTX7510 2697 CONFIG_MACH_PTX7510
2699 CONFIG_MACH_PTX7545 2698 CONFIG_MACH_PTX7545
2700 CONFIG_MACH_PUNICA 2699 CONFIG_MACH_PUNICA
2701 CONFIG_MACH_PUPITRE 2700 CONFIG_MACH_PUPITRE
2702 CONFIG_MACH_PVM2030 2701 CONFIG_MACH_PVM2030
2703 CONFIG_MACH_PWB3090 2702 CONFIG_MACH_PWB3090
2704 CONFIG_MACH_PXWNAS_500_1000 2703 CONFIG_MACH_PXWNAS_500_1000
2705 CONFIG_MACH_PYRAMID 2704 CONFIG_MACH_PYRAMID
2706 CONFIG_MACH_QBC9263 2705 CONFIG_MACH_QBC9263
2707 CONFIG_MACH_QIL_A9260 2706 CONFIG_MACH_QIL_A9260
2708 CONFIG_MACH_QONG 2707 CONFIG_MACH_QONG
2709 CONFIG_MACH_QSD8X50A_ST1_5 2708 CONFIG_MACH_QSD8X50A_ST1_5
2710 CONFIG_MACH_QSD8X50_SURF 2709 CONFIG_MACH_QSD8X50_SURF
2711 CONFIG_MACH_QSD8X72_FFA 2710 CONFIG_MACH_QSD8X72_FFA
2712 CONFIG_MACH_QSD8X72_SURF 2711 CONFIG_MACH_QSD8X72_SURF
2713 CONFIG_MACH_QT2410 2712 CONFIG_MACH_QT2410
2714 CONFIG_MACH_QUAD_SALSA 2713 CONFIG_MACH_QUAD_SALSA
2715 CONFIG_MACH_QUICKSTEP 2714 CONFIG_MACH_QUICKSTEP
2716 CONFIG_MACH_R1801E 2715 CONFIG_MACH_R1801E
2717 CONFIG_MACH_RASCAL 2716 CONFIG_MACH_RASCAL
2718 CONFIG_MACH_RAUMFELD_CONNECTOR 2717 CONFIG_MACH_RAUMFELD_CONNECTOR
2719 CONFIG_MACH_RAUMFELD_RC 2718 CONFIG_MACH_RAUMFELD_RC
2720 CONFIG_MACH_RAUMFELD_SPEAKER 2719 CONFIG_MACH_RAUMFELD_SPEAKER
2721 CONFIG_MACH_RD78X00_MASA 2720 CONFIG_MACH_RD78X00_MASA
2722 CONFIG_MACH_RD88F5181L_FXO 2721 CONFIG_MACH_RD88F5181L_FXO
2723 CONFIG_MACH_RD88F5181L_GE 2722 CONFIG_MACH_RD88F5181L_GE
2724 CONFIG_MACH_RD88F5182 2723 CONFIG_MACH_RD88F5182
2725 CONFIG_MACH_RD88F6183AP_GE 2724 CONFIG_MACH_RD88F6183AP_GE
2726 CONFIG_MACH_RD88F6192_NAS 2725 CONFIG_MACH_RD88F6192_NAS
2727 CONFIG_MACH_RD88F6281 2726 CONFIG_MACH_RD88F6281
2728 CONFIG_MACH_RDSTOR 2727 CONFIG_MACH_RDSTOR
2729 CONFIG_MACH_RE2REV20 2728 CONFIG_MACH_RE2REV20
2730 CONFIG_MACH_RE2REV21 2729 CONFIG_MACH_RE2REV21
2731 CONFIG_MACH_REAL6410 2730 CONFIG_MACH_REAL6410
2732 CONFIG_MACH_REALVIEW_EB 2731 CONFIG_MACH_REALVIEW_EB
2733 CONFIG_MACH_REALVIEW_PB1176 2732 CONFIG_MACH_REALVIEW_PB1176
2734 CONFIG_MACH_REALVIEW_PB11MP 2733 CONFIG_MACH_REALVIEW_PB11MP
2735 CONFIG_MACH_REALVIEW_PBA8 2734 CONFIG_MACH_REALVIEW_PBA8
2736 CONFIG_MACH_REALVIEW_PBX 2735 CONFIG_MACH_REALVIEW_PBX
2737 CONFIG_MACH_REMUS 2736 CONFIG_MACH_REMUS
2738 CONFIG_MACH_REXMAS 2737 CONFIG_MACH_REXMAS
2739 CONFIG_MACH_RFL109145_SSRV 2738 CONFIG_MACH_RFL109145_SSRV
2740 CONFIG_MACH_RHINO 2739 CONFIG_MACH_RHINO
2741 CONFIG_MACH_RIB 2740 CONFIG_MACH_RIB
2742 CONFIG_MACH_RIDER 2741 CONFIG_MACH_RIDER
2743 CONFIG_MACH_RIOT_BEI2 2742 CONFIG_MACH_RIOT_BEI2
2744 CONFIG_MACH_RIOT_X37 2743 CONFIG_MACH_RIOT_X37
2745 CONFIG_MACH_ROADRUNNER 2744 CONFIG_MACH_ROADRUNNER
2746 CONFIG_MACH_ROCKHOPPER 2745 CONFIG_MACH_ROCKHOPPER
2747 CONFIG_MACH_ROVERPCS8 2746 CONFIG_MACH_ROVERPCS8
2748 CONFIG_MACH_ROVERX7 2747 CONFIG_MACH_ROVERX7
2749 CONFIG_MACH_ROVER_G8 2748 CONFIG_MACH_ROVER_G8
2750 CONFIG_MACH_RPC353 2749 CONFIG_MACH_RPC353
2751 CONFIG_MACH_RUBY 2750 CONFIG_MACH_RUBY
2752 CONFIG_MACH_RUBYS 2751 CONFIG_MACH_RUBYS
2753 CONFIG_MACH_RUMP 2752 CONFIG_MACH_RUMP
2754 CONFIG_MACH_RUT100 2753 CONFIG_MACH_RUT100
2755 CONFIG_MACH_RV082 2754 CONFIG_MACH_RV082
2756 CONFIG_MACH_RX1950 2755 CONFIG_MACH_RX1950
2757 CONFIG_MACH_RX3715 2756 CONFIG_MACH_RX3715
2758 CONFIG_MACH_S3C2413 2757 CONFIG_MACH_S3C2413
2759 CONFIG_MACH_S5500 2758 CONFIG_MACH_S5500
2760 CONFIG_MACH_S5PC110_CRESPO 2759 CONFIG_MACH_S5PC110_CRESPO
2761 CONFIG_MACH_SAAR 2760 CONFIG_MACH_SAAR
2762 CONFIG_MACH_SAARB 2761 CONFIG_MACH_SAARB
2763 CONFIG_MACH_SAARB_MG1 2762 CONFIG_MACH_SAARB_MG1
2764 CONFIG_MACH_SAGA 2763 CONFIG_MACH_SAGA
2765 CONFIG_MACH_SALUDA 2764 CONFIG_MACH_SALUDA
2766 CONFIG_MACH_SAM9REPEATER 2765 CONFIG_MACH_SAM9REPEATER
2767 CONFIG_MACH_SAM9_L9260 2766 CONFIG_MACH_SAM9_L9260
2768 CONFIG_MACH_SANTIAGO 2767 CONFIG_MACH_SANTIAGO
2769 CONFIG_MACH_SAPPHIRE 2768 CONFIG_MACH_SAPPHIRE
2770 CONFIG_MACH_SBC3530 2769 CONFIG_MACH_SBC3530
2771 CONFIG_MACH_SBC6000X 2770 CONFIG_MACH_SBC6000X
2772 CONFIG_MACH_SBCA11 2771 CONFIG_MACH_SBCA11
2773 CONFIG_MACH_SC575IPC 2772 CONFIG_MACH_SC575IPC
2774 CONFIG_MACH_SC575PLC 2773 CONFIG_MACH_SC575PLC
2775 CONFIG_MACH_SCB9328 2774 CONFIG_MACH_SCB9328
2776 CONFIG_MACH_SCIPHONE_G2 2775 CONFIG_MACH_SCIPHONE_G2
2777 CONFIG_MACH_SDI_ESS_9263 2776 CONFIG_MACH_SDI_ESS_9263
2778 CONFIG_MACH_SDVR 2777 CONFIG_MACH_SDVR
2779 CONFIG_MACH_SEABOARD 2778 CONFIG_MACH_SEABOARD
2780 CONFIG_MACH_SERRANO 2779 CONFIG_MACH_SERRANO
2781 CONFIG_MACH_SFFSDR 2780 CONFIG_MACH_SFFSDR
2782 CONFIG_MACH_SGH_I740 2781 CONFIG_MACH_SGH_I740
2783 CONFIG_MACH_SHARESPACE 2782 CONFIG_MACH_SHARESPACE
2784 CONFIG_MACH_SHEEVAPLUG 2783 CONFIG_MACH_SHEEVAPLUG
2785 CONFIG_MACH_SHENZHOU 2784 CONFIG_MACH_SHENZHOU
2786 CONFIG_MACH_SHEPHERD 2785 CONFIG_MACH_SHEPHERD
2787 CONFIG_MACH_SHOOTER 2786 CONFIG_MACH_SHOOTER
2788 CONFIG_MACH_SHOOTER_CT 2787 CONFIG_MACH_SHOOTER_CT
2789 CONFIG_MACH_SHOOTER_U 2788 CONFIG_MACH_SHOOTER_U
2790 CONFIG_MACH_SHORTLOIN 2789 CONFIG_MACH_SHORTLOIN
2791 CONFIG_MACH_SIEMENS_L0 2790 CONFIG_MACH_SIEMENS_L0
2792 CONFIG_MACH_SIMPLENET 2791 CONFIG_MACH_SIMPLENET
2793 CONFIG_MACH_SIMTEC_KIRKMOD 2792 CONFIG_MACH_SIMTEC_KIRKMOD
2794 CONFIG_MACH_SIM_ONE 2793 CONFIG_MACH_SIM_ONE
2795 CONFIG_MACH_SKY25 2794 CONFIG_MACH_SKY25
2796 CONFIG_MACH_SKY6410 2795 CONFIG_MACH_SKY6410
2797 CONFIG_MACH_SM1K 2796 CONFIG_MACH_SM1K
2798 CONFIG_MACH_SMARTQ5 2797 CONFIG_MACH_SMARTQ5
2799 CONFIG_MACH_SMARTQ7 2798 CONFIG_MACH_SMARTQ7
2800 CONFIG_MACH_SMARTQV3 2799 CONFIG_MACH_SMARTQV3
2801 CONFIG_MACH_SMARTQV5 2800 CONFIG_MACH_SMARTQV5
2802 CONFIG_MACH_SMARTQV7 2801 CONFIG_MACH_SMARTQV7
2803 CONFIG_MACH_SMDK2412 2802 CONFIG_MACH_SMDK2412
2804 CONFIG_MACH_SMDK2413 2803 CONFIG_MACH_SMDK2413
2805 CONFIG_MACH_SMDK2416 2804 CONFIG_MACH_SMDK2416
2806 CONFIG_MACH_SMDK2443 2805 CONFIG_MACH_SMDK2443
2807 CONFIG_MACH_SMDK6410 2806 CONFIG_MACH_SMDK6410
2808 CONFIG_MACH_SMDK6440 2807 CONFIG_MACH_SMDK6440
2809 CONFIG_MACH_SMDK6442 2808 CONFIG_MACH_SMDK6442
2810 CONFIG_MACH_SMDK6450 2809 CONFIG_MACH_SMDK6450
2811 CONFIG_MACH_SMDKC100 2810 CONFIG_MACH_SMDKC100
2812 CONFIG_MACH_SMDKC110 2811 CONFIG_MACH_SMDKC110
2813 CONFIG_MACH_SMDKC210 2812 CONFIG_MACH_SMDKC210
2814 CONFIG_MACH_SMDKV210 2813 CONFIG_MACH_SMDKV210
2815 CONFIG_MACH_SMDKV310 2814 CONFIG_MACH_SMDKV310
2816 CONFIG_MACH_SNAPPER_9260 2815 CONFIG_MACH_SNAPPER_9260
2817 CONFIG_MACH_SNAPPER_CL15 2816 CONFIG_MACH_SNAPPER_CL15
2818 CONFIG_MACH_SOFTWINNER 2817 CONFIG_MACH_SOFTWINNER
2819 CONFIG_MACH_SOLI_01 2818 CONFIG_MACH_SOLI_01
2820 CONFIG_MACH_SPADE 2819 CONFIG_MACH_SPADE
2821 CONFIG_MACH_SPADE_LTE 2820 CONFIG_MACH_SPADE_LTE
2822 CONFIG_MACH_SPDM 2821 CONFIG_MACH_SPDM
2823 CONFIG_MACH_SPEAR1310 2822 CONFIG_MACH_SPEAR1310
2824 CONFIG_MACH_SPEAR1340 2823 CONFIG_MACH_SPEAR1340
2825 CONFIG_MACH_SPEAR300 2824 CONFIG_MACH_SPEAR300
2826 CONFIG_MACH_SPEAR310 2825 CONFIG_MACH_SPEAR310
2827 CONFIG_MACH_SPEAR320 2826 CONFIG_MACH_SPEAR320
2828 CONFIG_MACH_SPEAR600 2827 CONFIG_MACH_SPEAR600
2829 CONFIG_MACH_SPEAR900 2828 CONFIG_MACH_SPEAR900
2830 CONFIG_MACH_SPECIFIC 2829 CONFIG_MACH_SPECIFIC
2831 CONFIG_MACH_SPICA 2830 CONFIG_MACH_SPICA
2832 CONFIG_MACH_SPITZ 2831 CONFIG_MACH_SPITZ
2833 CONFIG_MACH_SPLENDOR 2832 CONFIG_MACH_SPLENDOR
2834 CONFIG_MACH_SPX_SAKURA 2833 CONFIG_MACH_SPX_SAKURA
2835 CONFIG_MACH_SPYPLUG 2834 CONFIG_MACH_SPYPLUG
2836 CONFIG_MACH_SSC 2835 CONFIG_MACH_SSC
2837 CONFIG_MACH_STAMP9G20 2836 CONFIG_MACH_STAMP9G20
2838 CONFIG_MACH_STAMP9G45 2837 CONFIG_MACH_STAMP9G45
2839 CONFIG_MACH_STARGATE2 2838 CONFIG_MACH_STARGATE2
2840 CONFIG_MACH_STEELYARD 2839 CONFIG_MACH_STEELYARD
2841 CONFIG_MACH_STELLA 2840 CONFIG_MACH_STELLA
2842 CONFIG_MACH_STMP378X 2841 CONFIG_MACH_STMP378X
2843 CONFIG_MACH_STMP37XX 2842 CONFIG_MACH_STMP37XX
2844 CONFIG_MACH_STRASBOURG 2843 CONFIG_MACH_STRASBOURG
2845 CONFIG_MACH_STRASBOURG_A2 2844 CONFIG_MACH_STRASBOURG_A2
2846 CONFIG_MACH_STRETCHS7000 2845 CONFIG_MACH_STRETCHS7000
2847 CONFIG_MACH_SUNFIRE 2846 CONFIG_MACH_SUNFIRE
2848 CONFIG_MACH_SUNFLOWER 2847 CONFIG_MACH_SUNFLOWER
2849 CONFIG_MACH_SVCID 2848 CONFIG_MACH_SVCID
2850 CONFIG_MACH_SVP5500 2849 CONFIG_MACH_SVP5500
2851 CONFIG_MACH_SVP8500V1 2850 CONFIG_MACH_SVP8500V1
2852 CONFIG_MACH_SVP8500V2 2851 CONFIG_MACH_SVP8500V2
2853 CONFIG_MACH_SWARCOEXTMODEM 2852 CONFIG_MACH_SWARCOEXTMODEM
2854 CONFIG_MACH_SWEDA_TMS2 2853 CONFIG_MACH_SWEDA_TMS2
2855 CONFIG_MACH_SX1 2854 CONFIG_MACH_SX1
2856 CONFIG_MACH_SYNERGY 2855 CONFIG_MACH_SYNERGY
2857 CONFIG_MACH_SYNOLOGY_6282 2856 CONFIG_MACH_SYNOLOGY_6282
2858 CONFIG_MACH_T20 2857 CONFIG_MACH_T20
2859 CONFIG_MACH_T5325 2858 CONFIG_MACH_T5325
2860 CONFIG_MACH_T5388P 2859 CONFIG_MACH_T5388P
2861 CONFIG_MACH_T55 2860 CONFIG_MACH_T55
2862 CONFIG_MACH_TAG 2861 CONFIG_MACH_TAG
2863 CONFIG_MACH_TAGW 2862 CONFIG_MACH_TAGW
2864 CONFIG_MACH_TANNA 2863 CONFIG_MACH_TANNA
2865 CONFIG_MACH_TAVOREVB 2864 CONFIG_MACH_TAVOREVB
2866 CONFIG_MACH_TAVOREVB3 2865 CONFIG_MACH_TAVOREVB3
2867 CONFIG_MACH_TCC8000_SDK 2866 CONFIG_MACH_TCC8000_SDK
2868 CONFIG_MACH_TCT_HAMMER 2867 CONFIG_MACH_TCT_HAMMER
2869 CONFIG_MACH_TD3_REV1 2868 CONFIG_MACH_TD3_REV1
2870 CONFIG_MACH_TEENOTE 2869 CONFIG_MACH_TEENOTE
2871 CONFIG_MACH_TEGRA_DAYTONA 2870 CONFIG_MACH_TEGRA_DAYTONA
2872 CONFIG_MACH_TEGRA_E1165 2871 CONFIG_MACH_TEGRA_E1165
2873 CONFIG_MACH_TEGRA_SWORDFISH 2872 CONFIG_MACH_TEGRA_SWORDFISH
2874 CONFIG_MACH_TEGRA_VOGUE 2873 CONFIG_MACH_TEGRA_VOGUE
2875 CONFIG_MACH_TEM3X30 2874 CONFIG_MACH_TEM3X30
2876 CONFIG_MACH_TENDERLOIN 2875 CONFIG_MACH_TENDERLOIN
2877 CONFIG_MACH_TERASTATION_PRO2 2876 CONFIG_MACH_TERASTATION_PRO2
2878 CONFIG_MACH_TERASTATION_WXL 2877 CONFIG_MACH_TERASTATION_WXL
2879 CONFIG_MACH_TERA_PRO2_RACK 2878 CONFIG_MACH_TERA_PRO2_RACK
2880 CONFIG_MACH_TETON_BGA 2879 CONFIG_MACH_TETON_BGA
2881 CONFIG_MACH_THALES_ADC 2880 CONFIG_MACH_THALES_ADC
2882 CONFIG_MACH_THALES_CBC 2881 CONFIG_MACH_THALES_CBC
2883 CONFIG_MACH_THEBE 2882 CONFIG_MACH_THEBE
2884 CONFIG_MACH_TI8148EVM 2883 CONFIG_MACH_TI8148EVM
2885 CONFIG_MACH_TI8168EVM 2884 CONFIG_MACH_TI8168EVM
2886 CONFIG_MACH_TIMU 2885 CONFIG_MACH_TIMU
2887 CONFIG_MACH_TIN307 2886 CONFIG_MACH_TIN307
2888 CONFIG_MACH_TIN510 2887 CONFIG_MACH_TIN510
2889 CONFIG_MACH_TINY_GURNARD 2888 CONFIG_MACH_TINY_GURNARD
2890 CONFIG_MACH_TITAN 2889 CONFIG_MACH_TITAN
2891 CONFIG_MACH_TJINC1000 2890 CONFIG_MACH_TJINC1000
2892 CONFIG_MACH_TM_EFDC 2891 CONFIG_MACH_TM_EFDC
2893 CONFIG_MACH_TN200 2892 CONFIG_MACH_TN200
2894 CONFIG_MACH_TNETV107X 2893 CONFIG_MACH_TNETV107X
2895 CONFIG_MACH_TNY_T3530 2894 CONFIG_MACH_TNY_T3530
2896 CONFIG_MACH_TONGA2_TFTTIMER 2895 CONFIG_MACH_TONGA2_TFTTIMER
2897 CONFIG_MACH_TOP9000 2896 CONFIG_MACH_TOP9000
2898 CONFIG_MACH_TOP9000_BSL 2897 CONFIG_MACH_TOP9000_BSL
2899 CONFIG_MACH_TOP9000_EVAL 2898 CONFIG_MACH_TOP9000_EVAL
2900 CONFIG_MACH_TOP9000_SU 2899 CONFIG_MACH_TOP9000_SU
2901 CONFIG_MACH_TOP9000_TCU 2900 CONFIG_MACH_TOP9000_TCU
2902 CONFIG_MACH_TORBRECK 2901 CONFIG_MACH_TORBRECK
2903 CONFIG_MACH_TORNADO3240 2902 CONFIG_MACH_TORNADO3240
2904 CONFIG_MACH_TOSA 2903 CONFIG_MACH_TOSA
2905 CONFIG_MACH_TOUCHBOOK 2904 CONFIG_MACH_TOUCHBOOK
2906 CONFIG_MACH_TPT_2_0 2905 CONFIG_MACH_TPT_2_0
2907 CONFIG_MACH_TQ6410 2906 CONFIG_MACH_TQ6410
2908 CONFIG_MACH_TQMA35 2907 CONFIG_MACH_TQMA35
2909 CONFIG_MACH_TQMA9263 2908 CONFIG_MACH_TQMA9263
2910 CONFIG_MACH_TRANSCEDE 2909 CONFIG_MACH_TRANSCEDE
2911 CONFIG_MACH_TREO680 2910 CONFIG_MACH_TREO680
2912 CONFIG_MACH_TRICORDER 2911 CONFIG_MACH_TRICORDER
2913 CONFIG_MACH_TRIDENT 2912 CONFIG_MACH_TRIDENT
2914 CONFIG_MACH_TRIMSLICE 2913 CONFIG_MACH_TRIMSLICE
2915 CONFIG_MACH_TRIPEL 2914 CONFIG_MACH_TRIPEL
2916 CONFIG_MACH_TRITIP 2915 CONFIG_MACH_TRITIP
2917 CONFIG_MACH_TRIZEPS4 2916 CONFIG_MACH_TRIZEPS4
2918 CONFIG_MACH_TRIZEPS4WL 2917 CONFIG_MACH_TRIZEPS4WL
2919 CONFIG_MACH_TROUT 2918 CONFIG_MACH_TROUT
2920 CONFIG_MACH_TS209 2919 CONFIG_MACH_TS209
2921 CONFIG_MACH_TS219 2920 CONFIG_MACH_TS219
2922 CONFIG_MACH_TS3 2921 CONFIG_MACH_TS3
2923 CONFIG_MACH_TS409 2922 CONFIG_MACH_TS409
2924 CONFIG_MACH_TS41X 2923 CONFIG_MACH_TS41X
2925 CONFIG_MACH_TS42XX 2924 CONFIG_MACH_TS42XX
2926 CONFIG_MACH_TS47XX 2925 CONFIG_MACH_TS47XX
2927 CONFIG_MACH_TS4800 2926 CONFIG_MACH_TS4800
2928 CONFIG_MACH_TS48XX 2927 CONFIG_MACH_TS48XX
2929 CONFIG_MACH_TS72XX 2928 CONFIG_MACH_TS72XX
2930 CONFIG_MACH_TS75XX 2929 CONFIG_MACH_TS75XX
2931 CONFIG_MACH_TS78XX 2930 CONFIG_MACH_TS78XX
2932 CONFIG_MACH_TSOPLOADER 2931 CONFIG_MACH_TSOPLOADER
2933 CONFIG_MACH_TSUNAGI 2932 CONFIG_MACH_TSUNAGI
2934 CONFIG_MACH_TTC_DKB 2933 CONFIG_MACH_TTC_DKB
2935 CONFIG_MACH_TUBE 2934 CONFIG_MACH_TUBE
2936 CONFIG_MACH_TULIP 2935 CONFIG_MACH_TULIP
2937 CONFIG_MACH_TUNA 2936 CONFIG_MACH_TUNA
2938 CONFIG_MACH_TUXRAIL 2937 CONFIG_MACH_TUXRAIL
2939 CONFIG_MACH_TX28 2938 CONFIG_MACH_TX28
2940 CONFIG_MACH_TX53 2939 CONFIG_MACH_TX53
2941 CONFIG_MACH_TYPE 2940 CONFIG_MACH_TYPE
2942 CONFIG_MACH_TYPE_COMPAT_REV 2941 CONFIG_MACH_TYPE_COMPAT_REV
2943 CONFIG_MACH_U300 2942 CONFIG_MACH_U300
2944 CONFIG_MACH_U5500 2943 CONFIG_MACH_U5500
2945 CONFIG_MACH_UBISYS_P9D_EVP 2944 CONFIG_MACH_UBISYS_P9D_EVP
2946 CONFIG_MACH_UEMD 2945 CONFIG_MACH_UEMD
2947 CONFIG_MACH_UNINO1 2946 CONFIG_MACH_UNINO1
2948 CONFIG_MACH_UNISDEV 2947 CONFIG_MACH_UNISDEV
2949 CONFIG_MACH_UNISENSE_MMM 2948 CONFIG_MACH_UNISENSE_MMM
2950 CONFIG_MACH_UNIT2S 2949 CONFIG_MACH_UNIT2S
2951 CONFIG_MACH_UNIVERSAL_C210 2950 CONFIG_MACH_UNIVERSAL_C210
2952 CONFIG_MACH_USB_A9260 2951 CONFIG_MACH_USB_A9260
2953 CONFIG_MACH_USB_A9263 2952 CONFIG_MACH_USB_A9263
2954 CONFIG_MACH_USDLOADER 2953 CONFIG_MACH_USDLOADER
2955 CONFIG_MACH_UTM300 2954 CONFIG_MACH_UTM300
2956 CONFIG_MACH_VALDEZ 2955 CONFIG_MACH_VALDEZ
2957 CONFIG_MACH_VANGOGH 2956 CONFIG_MACH_VANGOGH
2958 CONFIG_MACH_VC0718 2957 CONFIG_MACH_VC0718
2959 CONFIG_MACH_VENTANA 2958 CONFIG_MACH_VENTANA
2960 CONFIG_MACH_VERDI 2959 CONFIG_MACH_VERDI
2961 CONFIG_MACH_VERDI_LTE 2960 CONFIG_MACH_VERDI_LTE
2962 CONFIG_MACH_VERIDIS_A300 2961 CONFIG_MACH_VERIDIS_A300
2963 CONFIG_MACH_VERSATILE_AB 2962 CONFIG_MACH_VERSATILE_AB
2964 CONFIG_MACH_VEXPRESS 2963 CONFIG_MACH_VEXPRESS
2965 CONFIG_MACH_VIGOR 2964 CONFIG_MACH_VIGOR
2966 CONFIG_MACH_VIPRINET 2965 CONFIG_MACH_VIPRINET
2967 CONFIG_MACH_VIT_IBOX 2966 CONFIG_MACH_VIT_IBOX
2968 CONFIG_MACH_VIVO 2967 CONFIG_MACH_VIVO
2969 CONFIG_MACH_VIVOW_CT 2968 CONFIG_MACH_VIVOW_CT
2970 CONFIG_MACH_VMX25 2969 CONFIG_MACH_VMX25
2971 CONFIG_MACH_VMX51 2970 CONFIG_MACH_VMX51
2972 CONFIG_MACH_VMX53 2971 CONFIG_MACH_VMX53
2973 CONFIG_MACH_VOICEBLUE 2972 CONFIG_MACH_VOICEBLUE
2974 CONFIG_MACH_VPAC270 2973 CONFIG_MACH_VPAC270
2975 CONFIG_MACH_VPR200 2974 CONFIG_MACH_VPR200
2976 CONFIG_MACH_VR1000 2975 CONFIG_MACH_VR1000
2977 CONFIG_MACH_VSTMS 2976 CONFIG_MACH_VSTMS
2978 CONFIG_MACH_VVBOX_SDLITE2 2977 CONFIG_MACH_VVBOX_SDLITE2
2979 CONFIG_MACH_VVBOX_SDORIG2 2978 CONFIG_MACH_VVBOX_SDORIG2
2980 CONFIG_MACH_VVBOX_SDPRO4 2979 CONFIG_MACH_VVBOX_SDPRO4
2981 CONFIG_MACH_W21 2980 CONFIG_MACH_W21
2982 CONFIG_MACH_W90N960EVB 2981 CONFIG_MACH_W90N960EVB
2983 CONFIG_MACH_W90P910EVB 2982 CONFIG_MACH_W90P910EVB
2984 CONFIG_MACH_W90P950EVB 2983 CONFIG_MACH_W90P950EVB
2985 CONFIG_MACH_WARIO 2984 CONFIG_MACH_WARIO
2986 CONFIG_MACH_WASABI 2985 CONFIG_MACH_WASABI
2987 CONFIG_MACH_WATSON_EFM_PLUGIN 2986 CONFIG_MACH_WATSON_EFM_PLUGIN
2988 CONFIG_MACH_WB40N 2987 CONFIG_MACH_WB40N
2989 CONFIG_MACH_WBD111 2988 CONFIG_MACH_WBD111
2990 CONFIG_MACH_WBD222 2989 CONFIG_MACH_WBD222
2991 CONFIG_MACH_WG302V2 2990 CONFIG_MACH_WG302V2
2992 CONFIG_MACH_WHISTLER 2991 CONFIG_MACH_WHISTLER
2993 CONFIG_MACH_WLAN_COMPUTER 2992 CONFIG_MACH_WLAN_COMPUTER
2994 CONFIG_MACH_WLF_CRAGG_6410 2993 CONFIG_MACH_WLF_CRAGG_6410
2995 CONFIG_MACH_WM8505_7IN_NETBOOK 2994 CONFIG_MACH_WM8505_7IN_NETBOOK
2996 CONFIG_MACH_WM8650REFBOARD 2995 CONFIG_MACH_WM8650REFBOARD
2997 CONFIG_MACH_WN802T 2996 CONFIG_MACH_WN802T
2998 CONFIG_MACH_WNR854T 2997 CONFIG_MACH_WNR854T
2999 CONFIG_MACH_WRT350N_V2 2998 CONFIG_MACH_WRT350N_V2
3000 CONFIG_MACH_WTPLUG 2999 CONFIG_MACH_WTPLUG
3001 CONFIG_MACH_XARINA 3000 CONFIG_MACH_XARINA
3002 CONFIG_MACH_XCEP 3001 CONFIG_MACH_XCEP
3003 CONFIG_MACH_XILINX 3002 CONFIG_MACH_XILINX
3004 CONFIG_MACH_XILINX_EP107 3003 CONFIG_MACH_XILINX_EP107
3005 CONFIG_MACH_XSBASE255 3004 CONFIG_MACH_XSBASE255
3006 CONFIG_MACH_YANOMAMI 3005 CONFIG_MACH_YANOMAMI
3007 CONFIG_MACH_YL9200 3006 CONFIG_MACH_YL9200
3008 CONFIG_MACH_Z3_814X_MOD 3007 CONFIG_MACH_Z3_814X_MOD
3009 CONFIG_MACH_Z3_816X_MOD 3008 CONFIG_MACH_Z3_816X_MOD
3010 CONFIG_MACH_ZIPIT2 3009 CONFIG_MACH_ZIPIT2
3011 CONFIG_MACH_ZMX25 3010 CONFIG_MACH_ZMX25
3012 CONFIG_MACH_ZYLONITE 3011 CONFIG_MACH_ZYLONITE
3013 CONFIG_MACH_ZYLONITE2 3012 CONFIG_MACH_ZYLONITE2
3014 CONFIG_MACPWR 3013 CONFIG_MACPWR
3015 CONFIG_MACRESET_TIMEOUT 3014 CONFIG_MACRESET_TIMEOUT
3016 CONFIG_MAC_ADDR_IN_EEPROM 3015 CONFIG_MAC_ADDR_IN_EEPROM
3017 CONFIG_MAC_ADDR_IN_SPIFLASH 3016 CONFIG_MAC_ADDR_IN_SPIFLASH
3018 CONFIG_MAC_OFFSET 3017 CONFIG_MAC_OFFSET
3019 CONFIG_MAC_PARTITION 3018 CONFIG_MAC_PARTITION
3020 CONFIG_MAKALU 3019 CONFIG_MAKALU
3021 CONFIG_MALLOC_F_ADDR 3020 CONFIG_MALLOC_F_ADDR
3022 CONFIG_MALTA 3021 CONFIG_MALTA
3023 CONFIG_MARCO_MEMSET 3022 CONFIG_MARCO_MEMSET
3024 CONFIG_MARUBUN_PCCARD 3023 CONFIG_MARUBUN_PCCARD
3025 CONFIG_MARVELL 3024 CONFIG_MARVELL
3026 CONFIG_MARVELL_GPIO 3025 CONFIG_MARVELL_GPIO
3027 CONFIG_MARVELL_MFP 3026 CONFIG_MARVELL_MFP
3028 CONFIG_MASK_AER_AO 3027 CONFIG_MASK_AER_AO
3029 CONFIG_MAX_DSP_CPUS 3028 CONFIG_MAX_DSP_CPUS
3030 CONFIG_MAX_FPGA_DEVICES 3029 CONFIG_MAX_FPGA_DEVICES
3031 CONFIG_MAX_I2C_NUM 3030 CONFIG_MAX_I2C_NUM
3032 CONFIG_MAX_MEM_MAPPED 3031 CONFIG_MAX_MEM_MAPPED
3033 CONFIG_MAX_PKT 3032 CONFIG_MAX_PKT
3034 CONFIG_MAX_RAM_BANK_SIZE 3033 CONFIG_MAX_RAM_BANK_SIZE
3035 CONFIG_MCAST_TFTP 3034 CONFIG_MCAST_TFTP
3036 CONFIG_MCF5249 3035 CONFIG_MCF5249
3037 CONFIG_MCF5253 3036 CONFIG_MCF5253
3038 CONFIG_MCFFEC 3037 CONFIG_MCFFEC
3039 CONFIG_MCFPIT 3038 CONFIG_MCFPIT
3040 CONFIG_MCFRTC 3039 CONFIG_MCFRTC
3041 CONFIG_MCFTMR 3040 CONFIG_MCFTMR
3042 CONFIG_MCFUART 3041 CONFIG_MCFUART
3043 CONFIG_MCLK_DIS 3042 CONFIG_MCLK_DIS
3044 CONFIG_MD5 3043 CONFIG_MD5
3045 CONFIG_MD5SUM_VERIFY 3044 CONFIG_MD5SUM_VERIFY
3046 CONFIG_MDIO_TIMEOUT 3045 CONFIG_MDIO_TIMEOUT
3047 CONFIG_MECP5123 3046 CONFIG_MECP5123
3048 CONFIG_MEMSIZE 3047 CONFIG_MEMSIZE
3049 CONFIG_MEMSIZE_IN_BYTES 3048 CONFIG_MEMSIZE_IN_BYTES
3050 CONFIG_MEMSIZE_MASK 3049 CONFIG_MEMSIZE_MASK
3051 CONFIG_MEM_ADD_WDTH 3050 CONFIG_MEM_ADD_WDTH
3052 CONFIG_MEM_HOLE_16M 3051 CONFIG_MEM_HOLE_16M
3053 CONFIG_MEM_INIT_VALUE 3052 CONFIG_MEM_INIT_VALUE
3054 CONFIG_MEM_REMAP 3053 CONFIG_MEM_REMAP
3055 CONFIG_MEM_SIZE 3054 CONFIG_MEM_SIZE
3056 CONFIG_MENU 3055 CONFIG_MENU
3057 CONFIG_MENUKEY 3056 CONFIG_MENUKEY
3058 CONFIG_MENUPROMPT 3057 CONFIG_MENUPROMPT
3059 CONFIG_MENU_SHOW 3058 CONFIG_MENU_SHOW
3060 CONFIG_MFG_ENV_SETTINGS 3059 CONFIG_MFG_ENV_SETTINGS
3061 CONFIG_MGCOGE 3060 CONFIG_MGCOGE
3062 CONFIG_MGCOGE3NE 3061 CONFIG_MGCOGE3NE
3063 CONFIG_MIGO_R 3062 CONFIG_MIGO_R
3064 CONFIG_MII 3063 CONFIG_MII
3065 CONFIG_MIIM_ADDRESS 3064 CONFIG_MIIM_ADDRESS
3066 CONFIG_MII_DEFAULT_TSEC 3065 CONFIG_MII_DEFAULT_TSEC
3067 CONFIG_MII_INIT 3066 CONFIG_MII_INIT
3068 CONFIG_MII_SUPPRESS_PREAMBLE 3067 CONFIG_MII_SUPPRESS_PREAMBLE
3069 CONFIG_MINIFAP 3068 CONFIG_MINIFAP
3070 CONFIG_MIPS_HUGE_TLB_SUPPORT 3069 CONFIG_MIPS_HUGE_TLB_SUPPORT
3071 CONFIG_MIPS_MT_FPAFF 3070 CONFIG_MIPS_MT_FPAFF
3072 CONFIG_MIRQ_EN 3071 CONFIG_MIRQ_EN
3073 CONFIG_MISC_COMMON 3072 CONFIG_MISC_COMMON
3074 CONFIG_MISC_INIT_F 3073 CONFIG_MISC_INIT_F
3075 CONFIG_MISC_INIT_R 3074 CONFIG_MISC_INIT_R
3076 CONFIG_MIU_1BIT_INTERLEAVED 3075 CONFIG_MIU_1BIT_INTERLEAVED
3077 CONFIG_MIU_2BIT_21_7_INTERLEAVED 3076 CONFIG_MIU_2BIT_21_7_INTERLEAVED
3078 CONFIG_MIU_2BIT_INTERLEAVED 3077 CONFIG_MIU_2BIT_INTERLEAVED
3079 CONFIG_MIU_LINEAR 3078 CONFIG_MIU_LINEAR
3080 CONFIG_MK_edb9301 3079 CONFIG_MK_edb9301
3081 CONFIG_MK_edb9315a 3080 CONFIG_MK_edb9315a
3082 CONFIG_MMCBOOTCOMMAND 3081 CONFIG_MMCBOOTCOMMAND
3083 CONFIG_MMCROOT 3082 CONFIG_MMCROOT
3084 CONFIG_MMC_DEFAULT_DEV 3083 CONFIG_MMC_DEFAULT_DEV
3085 CONFIG_MMC_RPMB_TRACE 3084 CONFIG_MMC_RPMB_TRACE
3086 CONFIG_MMC_SDHCI_IO_ACCESSORS 3085 CONFIG_MMC_SDHCI_IO_ACCESSORS
3087 CONFIG_MMC_SDMA 3086 CONFIG_MMC_SDMA
3088 CONFIG_MMC_SPI 3087 CONFIG_MMC_SPI
3089 CONFIG_MMC_SPI_BUS 3088 CONFIG_MMC_SPI_BUS
3090 CONFIG_MMC_SPI_CRC_ON 3089 CONFIG_MMC_SPI_CRC_ON
3091 CONFIG_MMC_SPI_CS 3090 CONFIG_MMC_SPI_CS
3092 CONFIG_MMC_SPI_CS_EPGIO 3091 CONFIG_MMC_SPI_CS_EPGIO
3093 CONFIG_MMC_SPI_MODE 3092 CONFIG_MMC_SPI_MODE
3094 CONFIG_MMC_SPI_NPOWER_EGPIO 3093 CONFIG_MMC_SPI_NPOWER_EGPIO
3095 CONFIG_MMC_SPI_POWER_EGPIO 3094 CONFIG_MMC_SPI_POWER_EGPIO
3096 CONFIG_MMC_SPI_SPEED 3095 CONFIG_MMC_SPI_SPEED
3097 CONFIG_MMC_SUNXI 3096 CONFIG_MMC_SUNXI
3098 CONFIG_MMC_SUNXI_SLOT 3097 CONFIG_MMC_SUNXI_SLOT
3099 CONFIG_MMC_TRACE 3098 CONFIG_MMC_TRACE
3100 CONFIG_MMU 3099 CONFIG_MMU
3101 CONFIG_MODVERSIONS 3100 CONFIG_MODVERSIONS
3102 CONFIG_MONITOR_IS_IN_RAM 3101 CONFIG_MONITOR_IS_IN_RAM
3103 CONFIG_MOTIONPRO 3102 CONFIG_MOTIONPRO
3104 CONFIG_MP 3103 CONFIG_MP
3105 CONFIG_MPC5121ADS 3104 CONFIG_MPC5121ADS
3106 CONFIG_MPC5121ADS_REV2 3105 CONFIG_MPC5121ADS_REV2
3107 CONFIG_MPC512x_FEC 3106 CONFIG_MPC512x_FEC
3108 CONFIG_MPC5200 3107 CONFIG_MPC5200
3109 CONFIG_MPC5200_DDR 3108 CONFIG_MPC5200_DDR
3110 CONFIG_MPC52XX_SPI 3109 CONFIG_MPC52XX_SPI
3111 CONFIG_MPC555 3110 CONFIG_MPC555
3112 CONFIG_MPC5xxx_FEC 3111 CONFIG_MPC5xxx_FEC
3113 CONFIG_MPC5xxx_FEC_MII10 3112 CONFIG_MPC5xxx_FEC_MII10
3114 CONFIG_MPC5xxx_FEC_MII100 3113 CONFIG_MPC5xxx_FEC_MII100
3115 CONFIG_MPC823 3114 CONFIG_MPC823
3116 CONFIG_MPC8247 3115 CONFIG_MPC8247
3117 CONFIG_MPC8255 3116 CONFIG_MPC8255
3118 CONFIG_MPC8272_FAMILY 3117 CONFIG_MPC8272_FAMILY
3119 CONFIG_MPC8308 3118 CONFIG_MPC8308
3120 CONFIG_MPC8308RDB 3119 CONFIG_MPC8308RDB
3121 CONFIG_MPC8308_P1M 3120 CONFIG_MPC8308_P1M
3122 CONFIG_MPC8309 3121 CONFIG_MPC8309
3123 CONFIG_MPC830x 3122 CONFIG_MPC830x
3124 CONFIG_MPC8313 3123 CONFIG_MPC8313
3125 CONFIG_MPC8313ERDB 3124 CONFIG_MPC8313ERDB
3126 CONFIG_MPC8315 3125 CONFIG_MPC8315
3127 CONFIG_MPC8315ERDB 3126 CONFIG_MPC8315ERDB
3128 CONFIG_MPC831x 3127 CONFIG_MPC831x
3129 CONFIG_MPC832XEMDS 3128 CONFIG_MPC832XEMDS
3130 CONFIG_MPC832x 3129 CONFIG_MPC832x
3131 CONFIG_MPC8349 3130 CONFIG_MPC8349
3132 CONFIG_MPC8349EMDS 3131 CONFIG_MPC8349EMDS
3133 CONFIG_MPC8349ITX 3132 CONFIG_MPC8349ITX
3134 CONFIG_MPC8349ITXGP 3133 CONFIG_MPC8349ITXGP
3135 CONFIG_MPC834x 3134 CONFIG_MPC834x
3136 CONFIG_MPC8360 3135 CONFIG_MPC8360
3137 CONFIG_MPC837XEMDS 3136 CONFIG_MPC837XEMDS
3138 CONFIG_MPC837XERDB 3137 CONFIG_MPC837XERDB
3139 CONFIG_MPC837x 3138 CONFIG_MPC837x
3140 CONFIG_MPC83XX_GPIO 3139 CONFIG_MPC83XX_GPIO
3141 CONFIG_MPC83XX_GPIO_0_INIT_DIRECTION 3140 CONFIG_MPC83XX_GPIO_0_INIT_DIRECTION
3142 CONFIG_MPC83XX_GPIO_0_INIT_OPEN_DRAIN 3141 CONFIG_MPC83XX_GPIO_0_INIT_OPEN_DRAIN
3143 CONFIG_MPC83XX_GPIO_0_INIT_VALUE 3142 CONFIG_MPC83XX_GPIO_0_INIT_VALUE
3144 CONFIG_MPC83XX_GPIO_1_INIT_DIRECTION 3143 CONFIG_MPC83XX_GPIO_1_INIT_DIRECTION
3145 CONFIG_MPC83XX_GPIO_1_INIT_OPEN_DRAIN 3144 CONFIG_MPC83XX_GPIO_1_INIT_OPEN_DRAIN
3146 CONFIG_MPC83XX_GPIO_1_INIT_VALUE 3145 CONFIG_MPC83XX_GPIO_1_INIT_VALUE
3147 CONFIG_MPC83XX_PCI2 3146 CONFIG_MPC83XX_PCI2
3148 CONFIG_MPC850 3147 CONFIG_MPC850
3149 CONFIG_MPC8536 3148 CONFIG_MPC8536
3150 CONFIG_MPC8536DS 3149 CONFIG_MPC8536DS
3151 CONFIG_MPC8540 3150 CONFIG_MPC8540
3152 CONFIG_MPC8540ADS 3151 CONFIG_MPC8540ADS
3153 CONFIG_MPC8541 3152 CONFIG_MPC8541
3154 CONFIG_MPC8541CDS 3153 CONFIG_MPC8541CDS
3155 CONFIG_MPC8544 3154 CONFIG_MPC8544
3156 CONFIG_MPC8544DS 3155 CONFIG_MPC8544DS
3157 CONFIG_MPC8548 3156 CONFIG_MPC8548
3158 CONFIG_MPC8548CDS 3157 CONFIG_MPC8548CDS
3159 CONFIG_MPC855 3158 CONFIG_MPC855
3160 CONFIG_MPC8555 3159 CONFIG_MPC8555
3161 CONFIG_MPC8555CDS 3160 CONFIG_MPC8555CDS
3162 CONFIG_MPC8560 3161 CONFIG_MPC8560
3163 CONFIG_MPC8560ADS 3162 CONFIG_MPC8560ADS
3164 CONFIG_MPC8568 3163 CONFIG_MPC8568
3165 CONFIG_MPC8568MDS 3164 CONFIG_MPC8568MDS
3166 CONFIG_MPC8569 3165 CONFIG_MPC8569
3167 CONFIG_MPC8569MDS 3166 CONFIG_MPC8569MDS
3168 CONFIG_MPC857 3167 CONFIG_MPC857
3169 CONFIG_MPC8572 3168 CONFIG_MPC8572
3170 CONFIG_MPC8572DS 3169 CONFIG_MPC8572DS
3171 CONFIG_MPC85XX_FEC 3170 CONFIG_MPC85XX_FEC
3172 CONFIG_MPC85XX_FEC_NAME 3171 CONFIG_MPC85XX_FEC_NAME
3173 CONFIG_MPC85XX_PCI2 3172 CONFIG_MPC85XX_PCI2
3174 CONFIG_MPC860 3173 CONFIG_MPC860
3175 CONFIG_MPC860T 3174 CONFIG_MPC860T
3176 CONFIG_MPC8610 3175 CONFIG_MPC8610
3177 CONFIG_MPC8610HPCD 3176 CONFIG_MPC8610HPCD
3178 CONFIG_MPC862 3177 CONFIG_MPC862
3179 CONFIG_MPC8641 3178 CONFIG_MPC8641
3180 CONFIG_MPC8641HPCN 3179 CONFIG_MPC8641HPCN
3181 CONFIG_MPC866 3180 CONFIG_MPC866
3182 CONFIG_MPC866_FAMILY 3181 CONFIG_MPC866_FAMILY
3183 CONFIG_MPC86x 3182 CONFIG_MPC86x
3184 CONFIG_MPC885 3183 CONFIG_MPC885
3185 CONFIG_MPC885_FAMILY 3184 CONFIG_MPC885_FAMILY
3186 CONFIG_MPC8XXX_SPI 3185 CONFIG_MPC8XXX_SPI
3187 CONFIG_MPC8XX_LCD 3186 CONFIG_MPC8XX_LCD
3188 CONFIG_MPC8xxx_DISABLE_BPTR 3187 CONFIG_MPC8xxx_DISABLE_BPTR
3189 CONFIG_MPLL_FREQ 3188 CONFIG_MPLL_FREQ
3190 CONFIG_MPR2 3189 CONFIG_MPR2
3191 CONFIG_MPX5200 3190 CONFIG_MPX5200
3192 CONFIG_MP_CLK_FREQ 3191 CONFIG_MP_CLK_FREQ
3193 CONFIG_MS7720SE 3192 CONFIG_MS7720SE
3194 CONFIG_MS7722SE 3193 CONFIG_MS7722SE
3195 CONFIG_MS7750SE 3194 CONFIG_MS7750SE
3196 CONFIG_MSHC_FREQ 3195 CONFIG_MSHC_FREQ
3197 CONFIG_MTDMAP 3196 CONFIG_MTDMAP
3198 CONFIG_MTDPARTS 3197 CONFIG_MTDPARTS
3199 CONFIG_MTD_CONCAT 3198 CONFIG_MTD_CONCAT
3200 CONFIG_MTD_DEBUG 3199 CONFIG_MTD_DEBUG
3201 CONFIG_MTD_DEBUG_VERBOSE 3200 CONFIG_MTD_DEBUG_VERBOSE
3202 CONFIG_MTD_DEVICE 3201 CONFIG_MTD_DEVICE
3203 CONFIG_MTD_ECC_SOFT 3202 CONFIG_MTD_ECC_SOFT
3204 CONFIG_MTD_NAND_DENALI_SCRATCH_REG_ADDR 3203 CONFIG_MTD_NAND_DENALI_SCRATCH_REG_ADDR
3205 CONFIG_MTD_NAND_ECC_SMC 3204 CONFIG_MTD_NAND_ECC_SMC
3206 CONFIG_MTD_NAND_MUSEUM_IDS 3205 CONFIG_MTD_NAND_MUSEUM_IDS
3207 CONFIG_MTD_NAND_VERIFY_WRITE 3206 CONFIG_MTD_NAND_VERIFY_WRITE
3208 CONFIG_MTD_ONENAND_VERIFY_WRITE 3207 CONFIG_MTD_ONENAND_VERIFY_WRITE
3209 CONFIG_MTD_PARTITION 3208 CONFIG_MTD_PARTITION
3210 CONFIG_MTD_PARTITIONS 3209 CONFIG_MTD_PARTITIONS
3211 CONFIG_MTD_UBI_BEB_RESERVE 3210 CONFIG_MTD_UBI_BEB_RESERVE
3212 CONFIG_MTD_UBI_BLOCK 3211 CONFIG_MTD_UBI_BLOCK
3213 CONFIG_MTD_UBI_DEBUG 3212 CONFIG_MTD_UBI_DEBUG
3214 CONFIG_MTD_UBI_DEBUG_MSG 3213 CONFIG_MTD_UBI_DEBUG_MSG
3215 CONFIG_MTD_UBI_DEBUG_MSG_BLD 3214 CONFIG_MTD_UBI_DEBUG_MSG_BLD
3216 CONFIG_MTD_UBI_DEBUG_MSG_EBA 3215 CONFIG_MTD_UBI_DEBUG_MSG_EBA
3217 CONFIG_MTD_UBI_DEBUG_MSG_IO 3216 CONFIG_MTD_UBI_DEBUG_MSG_IO
3218 CONFIG_MTD_UBI_DEBUG_MSG_WL 3217 CONFIG_MTD_UBI_DEBUG_MSG_WL
3219 CONFIG_MTD_UBI_DEBUG_PARANOID 3218 CONFIG_MTD_UBI_DEBUG_PARANOID
3220 CONFIG_MTD_UBI_GLUEBI 3219 CONFIG_MTD_UBI_GLUEBI
3221 CONFIG_MTD_UBI_MODULE 3220 CONFIG_MTD_UBI_MODULE
3222 CONFIG_MULTI_CS 3221 CONFIG_MULTI_CS
3223 CONFIG_MUNICES 3222 CONFIG_MUNICES
3224 CONFIG_MUSB_HOST 3223 CONFIG_MUSB_HOST
3225 CONFIG_MV88E61XX_CPU_PORT 3224 CONFIG_MV88E61XX_CPU_PORT
3226 CONFIG_MV88E61XX_PHY_PORTS 3225 CONFIG_MV88E61XX_PHY_PORTS
3227 CONFIG_MV88E61XX_SWITCH 3226 CONFIG_MV88E61XX_SWITCH
3228 CONFIG_MV88E6352_SWITCH 3227 CONFIG_MV88E6352_SWITCH
3229 CONFIG_MVEBU_MMC 3228 CONFIG_MVEBU_MMC
3230 CONFIG_MVGBE 3229 CONFIG_MVGBE
3231 CONFIG_MVGBE_PORTS 3230 CONFIG_MVGBE_PORTS
3232 CONFIG_MVMFP_V2 3231 CONFIG_MVMFP_V2
3233 CONFIG_MVNETA 3232 CONFIG_MVNETA
3234 CONFIG_MVS 3233 CONFIG_MVS
3235 CONFIG_MVSATA_IDE 3234 CONFIG_MVSATA_IDE
3236 CONFIG_MVSATA_IDE_USE_PORT0 3235 CONFIG_MVSATA_IDE_USE_PORT0
3237 CONFIG_MVSATA_IDE_USE_PORT1 3236 CONFIG_MVSATA_IDE_USE_PORT1
3238 CONFIG_MV_ETH_RXQ 3237 CONFIG_MV_ETH_RXQ
3239 CONFIG_MV_I2C_NUM 3238 CONFIG_MV_I2C_NUM
3240 CONFIG_MV_I2C_REG 3239 CONFIG_MV_I2C_REG
3241 CONFIG_MV_SDHCI 3240 CONFIG_MV_SDHCI
3242 CONFIG_MX23 3241 CONFIG_MX23
3243 CONFIG_MX25 3242 CONFIG_MX25
3244 CONFIG_MX25_CLK32 3243 CONFIG_MX25_CLK32
3245 CONFIG_MX25_HCLK_FREQ 3244 CONFIG_MX25_HCLK_FREQ
3246 CONFIG_MX27 3245 CONFIG_MX27
3247 CONFIG_MX27_CLK32 3246 CONFIG_MX27_CLK32
3248 CONFIG_MX27_TIMER_HIGH_PRECISION 3247 CONFIG_MX27_TIMER_HIGH_PRECISION
3249 CONFIG_MX28 3248 CONFIG_MX28
3250 CONFIG_MX28_FEC_MAC_IN_OCOTP 3249 CONFIG_MX28_FEC_MAC_IN_OCOTP
3251 CONFIG_MX31 3250 CONFIG_MX31
3252 CONFIG_MX31_CLK32 3251 CONFIG_MX31_CLK32
3253 CONFIG_MX31_HCLK_FREQ 3252 CONFIG_MX31_HCLK_FREQ
3254 CONFIG_MX35 3253 CONFIG_MX35
3255 CONFIG_MX35_CLK32 3254 CONFIG_MX35_CLK32
3256 CONFIG_MX35_HCLK_FREQ 3255 CONFIG_MX35_HCLK_FREQ
3257 CONFIG_MX6DL_LPDDR2 3256 CONFIG_MX6DL_LPDDR2
3258 CONFIG_MX6DQ_LPDDR2 3257 CONFIG_MX6DQ_LPDDR2
3259 CONFIG_MX6SX_SABRESD_REVA 3258 CONFIG_MX6SX_SABRESD_REVA
3260 CONFIG_MX6UL_14X14_EVK_EMMC_REWORK 3259 CONFIG_MX6UL_14X14_EVK_EMMC_REWORK
3261 CONFIG_MXC_EPDC 3260 CONFIG_MXC_EPDC
3262 CONFIG_MXC_GPIO 3261 CONFIG_MXC_GPIO
3263 CONFIG_MXC_GPT_HCLK 3262 CONFIG_MXC_GPT_HCLK
3264 CONFIG_MXC_MCI_REGS_BASE 3263 CONFIG_MXC_MCI_REGS_BASE
3265 CONFIG_MXC_MMC 3264 CONFIG_MXC_MMC
3266 CONFIG_MXC_NAND_HWECC 3265 CONFIG_MXC_NAND_HWECC
3267 CONFIG_MXC_NAND_IP_REGS_BASE 3266 CONFIG_MXC_NAND_IP_REGS_BASE
3268 CONFIG_MXC_NAND_REGS_BASE 3267 CONFIG_MXC_NAND_REGS_BASE
3269 CONFIG_MXC_SPI 3268 CONFIG_MXC_SPI
3270 CONFIG_MXC_UART 3269 CONFIG_MXC_UART
3271 CONFIG_MXC_UART_BASE 3270 CONFIG_MXC_UART_BASE
3272 CONFIG_MXC_USB_FLAGS 3271 CONFIG_MXC_USB_FLAGS
3273 CONFIG_MXC_USB_PORT 3272 CONFIG_MXC_USB_PORT
3274 CONFIG_MXC_USB_PORTSC 3273 CONFIG_MXC_USB_PORTSC
3275 CONFIG_MXS 3274 CONFIG_MXS
3276 CONFIG_MXS_AUART 3275 CONFIG_MXS_AUART
3277 CONFIG_MXS_AUART_BASE 3276 CONFIG_MXS_AUART_BASE
3278 CONFIG_MXS_GPIO 3277 CONFIG_MXS_GPIO
3279 CONFIG_MXS_MMC 3278 CONFIG_MXS_MMC
3280 CONFIG_MXS_OCOTP 3279 CONFIG_MXS_OCOTP
3281 CONFIG_MXS_SPI 3280 CONFIG_MXS_SPI
3282 CONFIG_MX_CYCLIC 3281 CONFIG_MX_CYCLIC
3283 CONFIG_MY_OPTION 3282 CONFIG_MY_OPTION
3284 CONFIG_NAND 3283 CONFIG_NAND
3285 CONFIG_NANDFLASH_SIZE 3284 CONFIG_NANDFLASH_SIZE
3286 CONFIG_NAND_6BYTES_OOB_FREE_10BYTES_ECC 3285 CONFIG_NAND_6BYTES_OOB_FREE_10BYTES_ECC
3287 CONFIG_NAND_ACTL 3286 CONFIG_NAND_ACTL
3288 CONFIG_NAND_ATMEL 3287 CONFIG_NAND_ATMEL
3289 CONFIG_NAND_CS_INIT 3288 CONFIG_NAND_CS_INIT
3290 CONFIG_NAND_DATA_REG 3289 CONFIG_NAND_DATA_REG
3291 CONFIG_NAND_DAVINCI 3290 CONFIG_NAND_DAVINCI
3292 CONFIG_NAND_DENALI_ECC_SIZE 3291 CONFIG_NAND_DENALI_ECC_SIZE
3293 CONFIG_NAND_ECC_BCH 3292 CONFIG_NAND_ECC_BCH
3294 CONFIG_NAND_ENV_DST 3293 CONFIG_NAND_ENV_DST
3295 CONFIG_NAND_FSL_ELBC 3294 CONFIG_NAND_FSL_ELBC
3296 CONFIG_NAND_FSL_IFC 3295 CONFIG_NAND_FSL_IFC
3297 CONFIG_NAND_FSL_NFC 3296 CONFIG_NAND_FSL_NFC
3298 CONFIG_NAND_FSMC 3297 CONFIG_NAND_FSMC
3299 CONFIG_NAND_KIRKWOOD 3298 CONFIG_NAND_KIRKWOOD
3300 CONFIG_NAND_KMETER1 3299 CONFIG_NAND_KMETER1
3301 CONFIG_NAND_LPC32XX_MLC 3300 CONFIG_NAND_LPC32XX_MLC
3302 CONFIG_NAND_LPC32XX_SLC 3301 CONFIG_NAND_LPC32XX_SLC
3303 CONFIG_NAND_MODE_REG 3302 CONFIG_NAND_MODE_REG
3304 CONFIG_NAND_MPC5121_NFC 3303 CONFIG_NAND_MPC5121_NFC
3305 CONFIG_NAND_MXC 3304 CONFIG_NAND_MXC
3306 CONFIG_NAND_MXC_V1_1 3305 CONFIG_NAND_MXC_V1_1
3307 CONFIG_NAND_MXS 3306 CONFIG_NAND_MXS
3308 CONFIG_NAND_NDFC 3307 CONFIG_NAND_NDFC
3309 CONFIG_NAND_OMAP_ECCSCHEME 3308 CONFIG_NAND_OMAP_ECCSCHEME
3310 CONFIG_NAND_OMAP_ELM 3309 CONFIG_NAND_OMAP_ELM
3311 CONFIG_NAND_OMAP_GPMC 3310 CONFIG_NAND_OMAP_GPMC
3312 CONFIG_NAND_OMAP_GPMC_PREFETCH 3311 CONFIG_NAND_OMAP_GPMC_PREFETCH
3313 CONFIG_NAND_OMAP_GPMC_WSCFG 3312 CONFIG_NAND_OMAP_GPMC_WSCFG
3314 CONFIG_NAND_PLAT 3313 CONFIG_NAND_PLAT
3315 CONFIG_NAND_S3C2410 3314 CONFIG_NAND_S3C2410
3316 CONFIG_NAND_SECBOOT 3315 CONFIG_NAND_SECBOOT
3317 CONFIG_NAND_SPL 3316 CONFIG_NAND_SPL
3318 CONFIG_NAND_U_BOOT 3317 CONFIG_NAND_U_BOOT
3319 CONFIG_NATSEMI 3318 CONFIG_NATSEMI
3320 CONFIG_NB 3319 CONFIG_NB
3321 CONFIG_NCEL2C100_BASE 3320 CONFIG_NCEL2C100_BASE
3322 CONFIG_NCEMIC100_BASE 3321 CONFIG_NCEMIC100_BASE
3323 CONFIG_NDS_DLM1_BASE 3322 CONFIG_NDS_DLM1_BASE
3324 CONFIG_NDS_DLM2_BASE 3323 CONFIG_NDS_DLM2_BASE
3325 CONFIG_NEC_NL6448AC33 3324 CONFIG_NEC_NL6448AC33
3326 CONFIG_NEC_NL6448BC20 3325 CONFIG_NEC_NL6448BC20
3327 CONFIG_NEC_NL6448BC33_54 3326 CONFIG_NEC_NL6448BC33_54
3328 CONFIG_NEEDS_MANUAL_RELOC 3327 CONFIG_NEEDS_MANUAL_RELOC
3329 CONFIG_NEO 3328 CONFIG_NEO
3330 CONFIG_NET2BIG_V2 3329 CONFIG_NET2BIG_V2
3331 CONFIG_NETCONSOLE_BUFFER_SIZE 3330 CONFIG_NETCONSOLE_BUFFER_SIZE
3332 CONFIG_NETDEV 3331 CONFIG_NETDEV
3333 CONFIG_NETMASK 3332 CONFIG_NETMASK
3334 CONFIG_NETSPACE_LITE_V2 3333 CONFIG_NETSPACE_LITE_V2
3335 CONFIG_NETSPACE_MAX_V2 3334 CONFIG_NETSPACE_MAX_V2
3336 CONFIG_NETSPACE_MINI_V2 3335 CONFIG_NETSPACE_MINI_V2
3337 CONFIG_NETSPACE_V2 3336 CONFIG_NETSPACE_V2
3338 CONFIG_NET_MAXDEFRAG 3337 CONFIG_NET_MAXDEFRAG
3339 CONFIG_NET_MULTI 3338 CONFIG_NET_MULTI
3340 CONFIG_NET_RETRY_COUNT 3339 CONFIG_NET_RETRY_COUNT
3341 CONFIG_NEVER_ASSERT_ODT_TO_CPU 3340 CONFIG_NEVER_ASSERT_ODT_TO_CPU
3342 CONFIG_NFC_FREQ 3341 CONFIG_NFC_FREQ
3343 CONFIG_NFSBOOTCOMMAND 3342 CONFIG_NFSBOOTCOMMAND
3344 CONFIG_NFS_READ_SIZE 3343 CONFIG_NFS_READ_SIZE
3345 CONFIG_NFS_TIMEOUT 3344 CONFIG_NFS_TIMEOUT
3346 CONFIG_NOBQFMAN 3345 CONFIG_NOBQFMAN
3347 CONFIG_NON_SECURE 3346 CONFIG_NON_SECURE
3348 CONFIG_NORBOOT 3347 CONFIG_NORBOOT
3349 CONFIG_NORFLASH_PS32BIT 3348 CONFIG_NORFLASH_PS32BIT
3350 CONFIG_NOT_SELECTED 3349 CONFIG_NOT_SELECTED
3351 CONFIG_NO_ETH 3350 CONFIG_NO_ETH
3352 CONFIG_NO_RELOCATION 3351 CONFIG_NO_RELOCATION
3353 CONFIG_NO_SERIAL_EEPROM 3352 CONFIG_NO_SERIAL_EEPROM
3354 CONFIG_NO_WAIT 3353 CONFIG_NO_WAIT
3355 CONFIG_NR_CPUS 3354 CONFIG_NR_CPUS
3356 CONFIG_NR_DRAM_BANKS 3355 CONFIG_NR_DRAM_BANKS
3357 CONFIG_NR_DRAM_BANKS_MAX 3356 CONFIG_NR_DRAM_BANKS_MAX
3358 CONFIG_NR_DRAM_POPULATED 3357 CONFIG_NR_DRAM_POPULATED
3359 CONFIG_NS16550_MIN_FUNCTIONS 3358 CONFIG_NS16550_MIN_FUNCTIONS
3360 CONFIG_NS8382X 3359 CONFIG_NS8382X
3361 CONFIG_NS87308 3360 CONFIG_NS87308
3362 CONFIG_NUM_DDR_CONTROLLERS 3361 CONFIG_NUM_DDR_CONTROLLERS
3363 CONFIG_NUM_DSP_CPUS 3362 CONFIG_NUM_DSP_CPUS
3364 CONFIG_NUM_PAMU 3363 CONFIG_NUM_PAMU
3365 CONFIG_OCLK_DIV 3364 CONFIG_OCLK_DIV
3366 CONFIG_ODROID_REV_AIN 3365 CONFIG_ODROID_REV_AIN
3367 CONFIG_OFF_PADCONF 3366 CONFIG_OFF_PADCONF
3368 CONFIG_OF_ 3367 CONFIG_OF_
3369 CONFIG_OF_IDE_FIXUP 3368 CONFIG_OF_IDE_FIXUP
3370 CONFIG_OF_PLATDATA 3369 CONFIG_OF_PLATDATA
3371 CONFIG_OF_SPI 3370 CONFIG_OF_SPI
3372 CONFIG_OF_SPI_FLASH 3371 CONFIG_OF_SPI_FLASH
3373 CONFIG_OF_STDOUT_PATH 3372 CONFIG_OF_STDOUT_PATH
3374 CONFIG_OF_SUPPORT_OLD_DEVICE_TREES 3373 CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
3375 CONFIG_OMAP 3374 CONFIG_OMAP
3376 CONFIG_OMAP3430 3375 CONFIG_OMAP3430
3377 CONFIG_OMAP3_AM3517CRANE 3376 CONFIG_OMAP3_AM3517CRANE
3378 CONFIG_OMAP3_DEVKIT8000 3377 CONFIG_OMAP3_DEVKIT8000
3379 CONFIG_OMAP3_EVM 3378 CONFIG_OMAP3_EVM
3380 CONFIG_OMAP3_GPIO_2 3379 CONFIG_OMAP3_GPIO_2
3381 CONFIG_OMAP3_GPIO_3 3380 CONFIG_OMAP3_GPIO_3
3382 CONFIG_OMAP3_GPIO_4 3381 CONFIG_OMAP3_GPIO_4
3383 CONFIG_OMAP3_GPIO_5 3382 CONFIG_OMAP3_GPIO_5
3384 CONFIG_OMAP3_GPIO_6 3383 CONFIG_OMAP3_GPIO_6
3385 CONFIG_OMAP3_LOGIC_USE_NEW_PRODUCT_ID 3384 CONFIG_OMAP3_LOGIC_USE_NEW_PRODUCT_ID
3386 CONFIG_OMAP3_MCX 3385 CONFIG_OMAP3_MCX
3387 CONFIG_OMAP3_MICRON_DDR 3386 CONFIG_OMAP3_MICRON_DDR
3388 CONFIG_OMAP3_RX51 3387 CONFIG_OMAP3_RX51
3389 CONFIG_OMAP3_SPI_D0_D1_SWAPPED 3388 CONFIG_OMAP3_SPI_D0_D1_SWAPPED
3390 CONFIG_OMAP3_ZOOM1 3389 CONFIG_OMAP3_ZOOM1
3391 CONFIG_OMAP4430 3390 CONFIG_OMAP4430
3392 CONFIG_OMAP54X 3391 CONFIG_OMAP54X
3393 CONFIG_OMAP_COMMON 3392 CONFIG_OMAP_COMMON
3394 CONFIG_OMAP_EHCI_PHY1_RESET_GPIO 3393 CONFIG_OMAP_EHCI_PHY1_RESET_GPIO
3395 CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 3394 CONFIG_OMAP_EHCI_PHY2_RESET_GPIO
3396 CONFIG_OMAP_EHCI_PHY3_RESET_GPIO 3395 CONFIG_OMAP_EHCI_PHY3_RESET_GPIO
3397 CONFIG_OMAP_GPIO 3396 CONFIG_OMAP_GPIO
3398 CONFIG_OMAP_HSMMC 3397 CONFIG_OMAP_HSMMC
3399 CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC 3398 CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC
3400 CONFIG_OMAP_USB2PHY2_HOST 3399 CONFIG_OMAP_USB2PHY2_HOST
3401 CONFIG_OMAP_USB3PHY1_HOST 3400 CONFIG_OMAP_USB3PHY1_HOST
3402 CONFIG_OMAP_USB_PHY 3401 CONFIG_OMAP_USB_PHY
3403 CONFIG_OMAP_VC_I2C_HS_MCODE 3402 CONFIG_OMAP_VC_I2C_HS_MCODE
3404 CONFIG_OMAP_WATCHDOG 3403 CONFIG_OMAP_WATCHDOG
3405 CONFIG_OPTREX_BW 3404 CONFIG_OPTREX_BW
3406 CONFIG_ORIGEN 3405 CONFIG_ORIGEN
3407 CONFIG_OS1_ENV_ADDR 3406 CONFIG_OS1_ENV_ADDR
3408 CONFIG_OS2_ENV_ADDR 3407 CONFIG_OS2_ENV_ADDR
3409 CONFIG_OS_ENV_ADDR 3408 CONFIG_OS_ENV_ADDR
3410 CONFIG_OTHBOOTARGS 3409 CONFIG_OTHBOOTARGS
3411 CONFIG_OVERWRITE_ETHADDR_ONCE 3410 CONFIG_OVERWRITE_ETHADDR_ONCE
3412 CONFIG_P1010 3411 CONFIG_P1010
3413 CONFIG_P1010RDB_PA 3412 CONFIG_P1010RDB_PA
3414 CONFIG_P1010RDB_PB 3413 CONFIG_P1010RDB_PB
3415 CONFIG_P1020 3414 CONFIG_P1020
3416 CONFIG_P1020MBG 3415 CONFIG_P1020MBG
3417 CONFIG_P1020RDB_PC 3416 CONFIG_P1020RDB_PC
3418 CONFIG_P1020RDB_PD 3417 CONFIG_P1020RDB_PD
3419 CONFIG_P1020UTM 3418 CONFIG_P1020UTM
3420 CONFIG_P1021 3419 CONFIG_P1021
3421 CONFIG_P1021RDB 3420 CONFIG_P1021RDB
3422 CONFIG_P1022 3421 CONFIG_P1022
3423 CONFIG_P1022DS 3422 CONFIG_P1022DS
3424 CONFIG_P1023 3423 CONFIG_P1023
3425 CONFIG_P1024 3424 CONFIG_P1024
3426 CONFIG_P1024RDB 3425 CONFIG_P1024RDB
3427 CONFIG_P1025 3426 CONFIG_P1025
3428 CONFIG_P1025RDB 3427 CONFIG_P1025RDB
3429 CONFIG_P2020 3428 CONFIG_P2020
3430 CONFIG_P2020RDB 3429 CONFIG_P2020RDB
3431 CONFIG_P2041RDB 3430 CONFIG_P2041RDB
3432 CONFIG_P3041DS 3431 CONFIG_P3041DS
3433 CONFIG_P4080DS 3432 CONFIG_P4080DS
3434 CONFIG_P5020DS 3433 CONFIG_P5020DS
3435 CONFIG_P5040DS 3434 CONFIG_P5040DS
3436 CONFIG_PAGE_CNT_MASK 3435 CONFIG_PAGE_CNT_MASK
3437 CONFIG_PAGE_CNT_SHIFT 3436 CONFIG_PAGE_CNT_SHIFT
3438 CONFIG_PALMAS_AUDPWR 3437 CONFIG_PALMAS_AUDPWR
3439 CONFIG_PALMAS_POWER 3438 CONFIG_PALMAS_POWER
3440 CONFIG_PALMAS_SMPS7_FPWM 3439 CONFIG_PALMAS_SMPS7_FPWM
3441 CONFIG_PALMAS_USB_SS_PWR 3440 CONFIG_PALMAS_USB_SS_PWR
3442 CONFIG_PANIC_HANG 3441 CONFIG_PANIC_HANG
3443 CONFIG_PARAVIRT 3442 CONFIG_PARAVIRT
3444 CONFIG_PARTITIONS 3443 CONFIG_PARTITIONS
3445 CONFIG_PARTITION_TYPE_GUID 3444 CONFIG_PARTITION_TYPE_GUID
3446 CONFIG_PARTITION_UUIDS 3445 CONFIG_PARTITION_UUIDS
3447 CONFIG_PATA_BFIN 3446 CONFIG_PATA_BFIN
3448 CONFIG_PATI 3447 CONFIG_PATI
3449 CONFIG_PB1000 3448 CONFIG_PB1000
3450 CONFIG_PB1100 3449 CONFIG_PB1100
3451 CONFIG_PB1500 3450 CONFIG_PB1500
3452 CONFIG_PB1X00 3451 CONFIG_PB1X00
3453 CONFIG_PCA953X 3452 CONFIG_PCA953X
3454 CONFIG_PCA9564_BASE 3453 CONFIG_PCA9564_BASE
3455 CONFIG_PCA9564_I2C 3454 CONFIG_PCA9564_I2C
3456 CONFIG_PCA9698 3455 CONFIG_PCA9698
3457 CONFIG_PCI1 3456 CONFIG_PCI1
3458 CONFIG_PCI2 3457 CONFIG_PCI2
3459 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE 3458 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE
3460 CONFIG_PCIE 3459 CONFIG_PCIE
3461 CONFIG_PCIE1 3460 CONFIG_PCIE1
3462 CONFIG_PCIE2 3461 CONFIG_PCIE2
3463 CONFIG_PCIE3 3462 CONFIG_PCIE3
3464 CONFIG_PCIE4 3463 CONFIG_PCIE4
3465 CONFIG_PCIE_IMX 3464 CONFIG_PCIE_IMX
3466 CONFIG_PCIE_IMX_PERST_GPIO 3465 CONFIG_PCIE_IMX_PERST_GPIO
3467 CONFIG_PCIE_IMX_POWER_GPIO 3466 CONFIG_PCIE_IMX_POWER_GPIO
3468 CONFIG_PCIE_LAYERSCAPE 3467 CONFIG_PCIE_LAYERSCAPE
3469 CONFIG_PCISLAVE 3468 CONFIG_PCISLAVE
3470 CONFIG_PCIX_CHECK 3469 CONFIG_PCIX_CHECK
3471 CONFIG_PCI_33M 3470 CONFIG_PCI_33M
3472 CONFIG_PCI_4xx_PTM_OVERWRITE 3471 CONFIG_PCI_4xx_PTM_OVERWRITE
3473 CONFIG_PCI_66M 3472 CONFIG_PCI_66M
3474 CONFIG_PCI_BOOTDELAY 3473 CONFIG_PCI_BOOTDELAY
3475 CONFIG_PCI_CLK_FREQ 3474 CONFIG_PCI_CLK_FREQ
3476 CONFIG_PCI_CONFIG_HOST_BRIDGE 3475 CONFIG_PCI_CONFIG_HOST_BRIDGE
3477 CONFIG_PCI_DISABLE_PCIE 3476 CONFIG_PCI_DISABLE_PCIE
3478 CONFIG_PCI_EHCI_DEVICE 3477 CONFIG_PCI_EHCI_DEVICE
3479 CONFIG_PCI_EHCI_DEVNO 3478 CONFIG_PCI_EHCI_DEVNO
3480 CONFIG_PCI_ENUM_ONLY 3479 CONFIG_PCI_ENUM_ONLY
3481 CONFIG_PCI_FIXUP_DEV 3480 CONFIG_PCI_FIXUP_DEV
3482 CONFIG_PCI_GT64120 3481 CONFIG_PCI_GT64120
3483 CONFIG_PCI_HOST 3482 CONFIG_PCI_HOST
3484 CONFIG_PCI_INDIRECT_BRIDGE 3483 CONFIG_PCI_INDIRECT_BRIDGE
3485 CONFIG_PCI_IO_BUS 3484 CONFIG_PCI_IO_BUS
3486 CONFIG_PCI_IO_PHYS 3485 CONFIG_PCI_IO_PHYS
3487 CONFIG_PCI_IO_SIZE 3486 CONFIG_PCI_IO_SIZE
3488 CONFIG_PCI_MEMORY_BUS 3487 CONFIG_PCI_MEMORY_BUS
3489 CONFIG_PCI_MEMORY_PHYS 3488 CONFIG_PCI_MEMORY_PHYS
3490 CONFIG_PCI_MEMORY_SIZE 3489 CONFIG_PCI_MEMORY_SIZE
3491 CONFIG_PCI_MEM_BUS 3490 CONFIG_PCI_MEM_BUS
3492 CONFIG_PCI_MEM_PHYS 3491 CONFIG_PCI_MEM_PHYS
3493 CONFIG_PCI_MEM_SIZE 3492 CONFIG_PCI_MEM_SIZE
3494 CONFIG_PCI_MSC01 3493 CONFIG_PCI_MSC01
3495 CONFIG_PCI_MVEBU 3494 CONFIG_PCI_MVEBU
3496 CONFIG_PCI_NOSCAN 3495 CONFIG_PCI_NOSCAN
3497 CONFIG_PCI_OHCI 3496 CONFIG_PCI_OHCI
3498 CONFIG_PCI_OHCI_DEVNO 3497 CONFIG_PCI_OHCI_DEVNO
3499 CONFIG_PCI_PNP 3498 CONFIG_PCI_PNP
3500 CONFIG_PCI_PREF_BUS 3499 CONFIG_PCI_PREF_BUS
3501 CONFIG_PCI_PREF_PHYS 3500 CONFIG_PCI_PREF_PHYS
3502 CONFIG_PCI_PREF_SIZE 3501 CONFIG_PCI_PREF_SIZE
3503 CONFIG_PCI_SCAN_SHOW 3502 CONFIG_PCI_SCAN_SHOW
3504 CONFIG_PCI_SKIP_HOST_BRIDGE 3503 CONFIG_PCI_SKIP_HOST_BRIDGE
3505 CONFIG_PCI_SYS_BUS 3504 CONFIG_PCI_SYS_BUS
3506 CONFIG_PCI_SYS_MEM_BUS 3505 CONFIG_PCI_SYS_MEM_BUS
3507 CONFIG_PCI_SYS_MEM_PHYS 3506 CONFIG_PCI_SYS_MEM_PHYS
3508 CONFIG_PCI_SYS_MEM_SIZE 3507 CONFIG_PCI_SYS_MEM_SIZE
3509 CONFIG_PCI_SYS_PHYS 3508 CONFIG_PCI_SYS_PHYS
3510 CONFIG_PCI_SYS_SIZE 3509 CONFIG_PCI_SYS_SIZE
3511 CONFIG_PCMCIA 3510 CONFIG_PCMCIA
3512 CONFIG_PCMCIA_SLOT_A 3511 CONFIG_PCMCIA_SLOT_A
3513 CONFIG_PCMCIA_SLOT_B 3512 CONFIG_PCMCIA_SLOT_B
3514 CONFIG_PCNET 3513 CONFIG_PCNET
3515 CONFIG_PCNET_79C973 3514 CONFIG_PCNET_79C973
3516 CONFIG_PCNET_79C975 3515 CONFIG_PCNET_79C975
3517 CONFIG_PDM360NG 3516 CONFIG_PDM360NG
3518 CONFIG_PDSP188x 3517 CONFIG_PDSP188x
3519 CONFIG_PEN_ADDR_BIG_ENDIAN 3518 CONFIG_PEN_ADDR_BIG_ENDIAN
3520 CONFIG_PERIF1_FREQ 3519 CONFIG_PERIF1_FREQ
3521 CONFIG_PERIF2_FREQ 3520 CONFIG_PERIF2_FREQ
3522 CONFIG_PERIF3_FREQ 3521 CONFIG_PERIF3_FREQ
3523 CONFIG_PERIF4_FREQ 3522 CONFIG_PERIF4_FREQ
3524 CONFIG_PHY1_ADDR 3523 CONFIG_PHY1_ADDR
3525 CONFIG_PHY2_ADDR 3524 CONFIG_PHY2_ADDR
3526 CONFIG_PHY3_ADDR 3525 CONFIG_PHY3_ADDR
3527 CONFIG_PHYCORE_MPC5200B_TINY 3526 CONFIG_PHYCORE_MPC5200B_TINY
3528 CONFIG_PHYLIB_10G 3527 CONFIG_PHYLIB_10G
3529 CONFIG_PHYSMEM 3528 CONFIG_PHYSMEM
3530 CONFIG_PHY_ADDR 3529 CONFIG_PHY_ADDR
3531 CONFIG_PHY_AQUANTIA 3530 CONFIG_PHY_AQUANTIA
3532 CONFIG_PHY_ATHEROS 3531 CONFIG_PHY_ATHEROS
3533 CONFIG_PHY_BASE_ADR 3532 CONFIG_PHY_BASE_ADR
3534 CONFIG_PHY_BCM5421S 3533 CONFIG_PHY_BCM5421S
3535 CONFIG_PHY_BROADCOM 3534 CONFIG_PHY_BROADCOM
3536 CONFIG_PHY_CLK_FREQ 3535 CONFIG_PHY_CLK_FREQ
3537 CONFIG_PHY_CLOCK_FREQ 3536 CONFIG_PHY_CLOCK_FREQ
3538 CONFIG_PHY_CMD_DELAY 3537 CONFIG_PHY_CMD_DELAY
3539 CONFIG_PHY_CORTINA 3538 CONFIG_PHY_CORTINA
3540 CONFIG_PHY_DAVICOM 3539 CONFIG_PHY_DAVICOM
3541 CONFIG_PHY_DYNAMIC_ANEG 3540 CONFIG_PHY_DYNAMIC_ANEG
3542 CONFIG_PHY_ET1011C 3541 CONFIG_PHY_ET1011C
3543 CONFIG_PHY_ET1011C_TX_CLK_FIX 3542 CONFIG_PHY_ET1011C_TX_CLK_FIX
3544 CONFIG_PHY_GIGE 3543 CONFIG_PHY_GIGE
3545 CONFIG_PHY_ID 3544 CONFIG_PHY_ID
3546 CONFIG_PHY_INTERFACE_MODE 3545 CONFIG_PHY_INTERFACE_MODE
3547 CONFIG_PHY_IRAM_BASE 3546 CONFIG_PHY_IRAM_BASE
3548 CONFIG_PHY_KSZ9031 3547 CONFIG_PHY_KSZ9031
3549 CONFIG_PHY_LXT 3548 CONFIG_PHY_LXT
3550 CONFIG_PHY_M88E1111 3549 CONFIG_PHY_M88E1111
3551 CONFIG_PHY_MARVELL 3550 CONFIG_PHY_MARVELL
3552 CONFIG_PHY_MAX_ADDR 3551 CONFIG_PHY_MAX_ADDR
3553 CONFIG_PHY_MICREL 3552 CONFIG_PHY_MICREL
3554 CONFIG_PHY_MICREL_KSZ9021 3553 CONFIG_PHY_MICREL_KSZ9021
3555 CONFIG_PHY_MICREL_KSZ9031 3554 CONFIG_PHY_MICREL_KSZ9031
3556 CONFIG_PHY_MODE_NEED_CHANGE 3555 CONFIG_PHY_MODE_NEED_CHANGE
3557 CONFIG_PHY_NATSEMI 3556 CONFIG_PHY_NATSEMI
3558 CONFIG_PHY_REALTEK 3557 CONFIG_PHY_REALTEK
3559 CONFIG_PHY_RESET 3558 CONFIG_PHY_RESET
3560 CONFIG_PHY_RESET_DELAY 3559 CONFIG_PHY_RESET_DELAY
3561 CONFIG_PHY_SMSC 3560 CONFIG_PHY_SMSC
3562 CONFIG_PHY_TERANETICS 3561 CONFIG_PHY_TERANETICS
3563 CONFIG_PHY_TI 3562 CONFIG_PHY_TI
3564 CONFIG_PHY_TYPE 3563 CONFIG_PHY_TYPE
3565 CONFIG_PHY_VITESSE 3564 CONFIG_PHY_VITESSE
3566 CONFIG_PHY_XILINX 3565 CONFIG_PHY_XILINX
3567 CONFIG_PHYx_ADDR 3566 CONFIG_PHYx_ADDR
3568 CONFIG_PICOSAM 3567 CONFIG_PICOSAM
3569 CONFIG_PIGGY_MAC_ADRESS_OFFSET 3568 CONFIG_PIGGY_MAC_ADRESS_OFFSET
3570 CONFIG_PIP405 3569 CONFIG_PIP405
3571 CONFIG_PIXIS_BRDCFG0_SPI 3570 CONFIG_PIXIS_BRDCFG0_SPI
3572 CONFIG_PIXIS_BRDCFG0_USB2 3571 CONFIG_PIXIS_BRDCFG0_USB2
3573 CONFIG_PIXIS_BRDCFG1_AUDCLK_11 3572 CONFIG_PIXIS_BRDCFG1_AUDCLK_11
3574 CONFIG_PIXIS_BRDCFG1_AUDCLK_12 3573 CONFIG_PIXIS_BRDCFG1_AUDCLK_12
3575 CONFIG_PIXIS_BRDCFG1_AUDCLK_MASK 3574 CONFIG_PIXIS_BRDCFG1_AUDCLK_MASK
3576 CONFIG_PIXIS_BRDCFG1_SSI_TDM_MASK 3575 CONFIG_PIXIS_BRDCFG1_SSI_TDM_MASK
3577 CONFIG_PIXIS_BRDCFG1_SSI_TDM_SSI 3576 CONFIG_PIXIS_BRDCFG1_SSI_TDM_SSI
3578 CONFIG_PIXIS_BRDCFG1_TDM 3577 CONFIG_PIXIS_BRDCFG1_TDM
3579 CONFIG_PIXIS_SGMII_CMD 3578 CONFIG_PIXIS_SGMII_CMD
3580 CONFIG_PL010_SERIAL 3579 CONFIG_PL010_SERIAL
3581 CONFIG_PL011_CLOCK 3580 CONFIG_PL011_CLOCK
3582 CONFIG_PL011_SERIAL 3581 CONFIG_PL011_SERIAL
3583 CONFIG_PL011_SERIAL_RLCR 3582 CONFIG_PL011_SERIAL_RLCR
3584 CONFIG_PL01X_SERIAL 3583 CONFIG_PL01X_SERIAL
3585 CONFIG_PL01x_PORTS 3584 CONFIG_PL01x_PORTS
3586 CONFIG_PLATFORM_ENV_SETTINGS 3585 CONFIG_PLATFORM_ENV_SETTINGS
3587 CONFIG_PLATINUM_BOARD 3586 CONFIG_PLATINUM_BOARD
3588 CONFIG_PLATINUM_CPU 3587 CONFIG_PLATINUM_CPU
3589 CONFIG_PLATINUM_PICON 3588 CONFIG_PLATINUM_PICON
3590 CONFIG_PLATINUM_PROJECT 3589 CONFIG_PLATINUM_PROJECT
3591 CONFIG_PLATINUM_TITANIUM 3590 CONFIG_PLATINUM_TITANIUM
3592 CONFIG_PLL 3591 CONFIG_PLL
3593 CONFIG_PLL1_CLK_FREQ 3592 CONFIG_PLL1_CLK_FREQ
3594 CONFIG_PLL1_DIV2_CLK_FREQ 3593 CONFIG_PLL1_DIV2_CLK_FREQ
3595 CONFIG_PLL_BYPASS 3594 CONFIG_PLL_BYPASS
3596 CONFIG_PLL_CTL_VAL 3595 CONFIG_PLL_CTL_VAL
3597 CONFIG_PLL_DIV_VAL 3596 CONFIG_PLL_DIV_VAL
3598 CONFIG_PLL_LOCKCNT_VAL 3597 CONFIG_PLL_LOCKCNT_VAL
3599 CONFIG_PLU405 3598 CONFIG_PLU405
3600 CONFIG_PM 3599 CONFIG_PM
3601 CONFIG_PM9261 3600 CONFIG_PM9261
3602 CONFIG_PM9263 3601 CONFIG_PM9263
3603 CONFIG_PM9G45 3602 CONFIG_PM9G45
3604 CONFIG_PMC405DE 3603 CONFIG_PMC405DE
3605 CONFIG_PMC_BR_PRELIM 3604 CONFIG_PMC_BR_PRELIM
3606 CONFIG_PMC_OR_PRELIM 3605 CONFIG_PMC_OR_PRELIM
3607 CONFIG_PMECC_CAP 3606 CONFIG_PMECC_CAP
3608 CONFIG_PMECC_INDEX_TABLE_OFFSET 3607 CONFIG_PMECC_INDEX_TABLE_OFFSET
3609 CONFIG_PMECC_SECTOR_SIZE 3608 CONFIG_PMECC_SECTOR_SIZE
3610 CONFIG_PME_PLAT_CLK_DIV 3609 CONFIG_PME_PLAT_CLK_DIV
3611 CONFIG_PMIC 3610 CONFIG_PMIC
3612 CONFIG_PMU 3611 CONFIG_PMU
3613 CONFIG_PMW_BASE 3612 CONFIG_PMW_BASE
3614 CONFIG_PM_SLEEP 3613 CONFIG_PM_SLEEP
3615 CONFIG_PORTMUX_PIO 3614 CONFIG_PORTMUX_PIO
3616 CONFIG_PORT_ADDR 3615 CONFIG_PORT_ADDR
3617 CONFIG_PORT_AP 3616 CONFIG_PORT_AP
3618 CONFIG_PORT_BEM 3617 CONFIG_PORT_BEM
3619 CONFIG_PORT_BME 3618 CONFIG_PORT_BME
3620 CONFIG_PORT_BS 3619 CONFIG_PORT_BS
3621 CONFIG_PORT_BU 3620 CONFIG_PORT_BU
3622 CONFIG_PORT_BW 3621 CONFIG_PORT_BW
3623 CONFIG_PORT_CR 3622 CONFIG_PORT_CR
3624 CONFIG_PORT_CSN 3623 CONFIG_PORT_CSN
3625 CONFIG_PORT_OEN 3624 CONFIG_PORT_OEN
3626 CONFIG_PORT_PEN 3625 CONFIG_PORT_PEN
3627 CONFIG_PORT_RE 3626 CONFIG_PORT_RE
3628 CONFIG_PORT_SOR 3627 CONFIG_PORT_SOR
3629 CONFIG_PORT_TH 3628 CONFIG_PORT_TH
3630 CONFIG_PORT_TWE 3629 CONFIG_PORT_TWE
3631 CONFIG_PORT_WBF 3630 CONFIG_PORT_WBF
3632 CONFIG_PORT_WBN 3631 CONFIG_PORT_WBN
3633 CONFIG_POST 3632 CONFIG_POST
3634 CONFIG_POSTBOOTMENU 3633 CONFIG_POSTBOOTMENU
3635 CONFIG_POST_ALT_LIST 3634 CONFIG_POST_ALT_LIST
3636 CONFIG_POST_BSPEC1 3635 CONFIG_POST_BSPEC1
3637 CONFIG_POST_BSPEC1_GPIO_LEDS 3636 CONFIG_POST_BSPEC1_GPIO_LEDS
3638 CONFIG_POST_BSPEC2 3637 CONFIG_POST_BSPEC2
3639 CONFIG_POST_BSPEC2_GPIO_BUTTONS 3638 CONFIG_POST_BSPEC2_GPIO_BUTTONS
3640 CONFIG_POST_BSPEC2_GPIO_NAMES 3639 CONFIG_POST_BSPEC2_GPIO_NAMES
3641 CONFIG_POST_BSPEC3 3640 CONFIG_POST_BSPEC3
3642 CONFIG_POST_BSPEC4 3641 CONFIG_POST_BSPEC4
3643 CONFIG_POST_BSPEC5 3642 CONFIG_POST_BSPEC5
3644 CONFIG_POST_EXTERNAL_WORD_FUNCS 3643 CONFIG_POST_EXTERNAL_WORD_FUNCS
3645 CONFIG_POST_KEY_MAGIC 3644 CONFIG_POST_KEY_MAGIC
3646 CONFIG_POST_SKIP_ENV_FLAGS 3645 CONFIG_POST_SKIP_ENV_FLAGS
3647 CONFIG_POST_STD_LIST 3646 CONFIG_POST_STD_LIST
3648 CONFIG_POST_UART 3647 CONFIG_POST_UART
3649 CONFIG_POST_WATCHDOG 3648 CONFIG_POST_WATCHDOG
3650 CONFIG_POWER 3649 CONFIG_POWER
3651 CONFIG_POWER_BATTERY 3650 CONFIG_POWER_BATTERY
3652 CONFIG_POWER_BATTERY_TRATS 3651 CONFIG_POWER_BATTERY_TRATS
3653 CONFIG_POWER_BATTERY_TRATS2 3652 CONFIG_POWER_BATTERY_TRATS2
3654 CONFIG_POWER_FG 3653 CONFIG_POWER_FG
3655 CONFIG_POWER_FG_MAX17042 3654 CONFIG_POWER_FG_MAX17042
3656 CONFIG_POWER_FG_MAX77693 3655 CONFIG_POWER_FG_MAX77693
3657 CONFIG_POWER_FSL 3656 CONFIG_POWER_FSL
3658 CONFIG_POWER_FSL_MC13892 3657 CONFIG_POWER_FSL_MC13892
3659 CONFIG_POWER_FSL_MC34704 3658 CONFIG_POWER_FSL_MC34704
3660 CONFIG_POWER_HI6553 3659 CONFIG_POWER_HI6553
3661 CONFIG_POWER_I2C 3660 CONFIG_POWER_I2C
3662 CONFIG_POWER_LTC3676 3661 CONFIG_POWER_LTC3676
3663 CONFIG_POWER_LTC3676_I2C_ADDR 3662 CONFIG_POWER_LTC3676_I2C_ADDR
3664 CONFIG_POWER_MAX77686 3663 CONFIG_POWER_MAX77686
3665 CONFIG_POWER_MAX77696 3664 CONFIG_POWER_MAX77696
3666 CONFIG_POWER_MAX77696_I2C_ADDR 3665 CONFIG_POWER_MAX77696_I2C_ADDR
3667 CONFIG_POWER_MAX8997 3666 CONFIG_POWER_MAX8997
3668 CONFIG_POWER_MAX8998 3667 CONFIG_POWER_MAX8998
3669 CONFIG_POWER_MUIC 3668 CONFIG_POWER_MUIC
3670 CONFIG_POWER_MUIC_MAX77693 3669 CONFIG_POWER_MUIC_MAX77693
3671 CONFIG_POWER_MUIC_MAX8997 3670 CONFIG_POWER_MUIC_MAX8997
3672 CONFIG_POWER_PFUZE100 3671 CONFIG_POWER_PFUZE100
3673 CONFIG_POWER_PFUZE100_I2C_ADDR 3672 CONFIG_POWER_PFUZE100_I2C_ADDR
3674 CONFIG_POWER_PFUZE3000 3673 CONFIG_POWER_PFUZE3000
3675 CONFIG_POWER_PFUZE3000_I2C_ADDR 3674 CONFIG_POWER_PFUZE3000_I2C_ADDR
3676 CONFIG_POWER_PMIC_MAX77693 3675 CONFIG_POWER_PMIC_MAX77693
3677 CONFIG_POWER_SPI 3676 CONFIG_POWER_SPI
3678 CONFIG_POWER_TPS62362 3677 CONFIG_POWER_TPS62362
3679 CONFIG_POWER_TPS65090_EC 3678 CONFIG_POWER_TPS65090_EC
3680 CONFIG_POWER_TPS65217 3679 CONFIG_POWER_TPS65217
3681 CONFIG_POWER_TPS65218 3680 CONFIG_POWER_TPS65218
3682 CONFIG_POWER_TPS65910 3681 CONFIG_POWER_TPS65910
3683 CONFIG_PPC4XX_RAPIDIO_DEBUG 3682 CONFIG_PPC4XX_RAPIDIO_DEBUG
3684 CONFIG_PPC4XX_RAPIDIO_IN_BAR_USE_OCM 3683 CONFIG_PPC4XX_RAPIDIO_IN_BAR_USE_OCM
3685 CONFIG_PPC4XX_RAPIDIO_LOOPBACK 3684 CONFIG_PPC4XX_RAPIDIO_LOOPBACK
3686 CONFIG_PPC4XX_RAPIDIO_PROMISCUOUS_MODE 3685 CONFIG_PPC4XX_RAPIDIO_PROMISCUOUS_MODE
3687 CONFIG_PPC4XX_RAPIDIO_USE_HB_PLB 3686 CONFIG_PPC4XX_RAPIDIO_USE_HB_PLB
3688 CONFIG_PPC4xx_DDR_AUTOCALIBRATION 3687 CONFIG_PPC4xx_DDR_AUTOCALIBRATION
3689 CONFIG_PPC4xx_DDR_METHOD_A 3688 CONFIG_PPC4xx_DDR_METHOD_A
3690 CONFIG_PPC4xx_EMAC 3689 CONFIG_PPC4xx_EMAC
3691 CONFIG_PPC64BRIDGE 3690 CONFIG_PPC64BRIDGE
3692 CONFIG_PPC_B4420 3691 CONFIG_PPC_B4420
3693 CONFIG_PPC_B4860 3692 CONFIG_PPC_B4860
3694 CONFIG_PPC_C29X 3693 CONFIG_PPC_C29X
3695 CONFIG_PPC_CLUSTER_START 3694 CONFIG_PPC_CLUSTER_START
3696 CONFIG_PPC_P2041 3695 CONFIG_PPC_P2041
3697 CONFIG_PPC_P3041 3696 CONFIG_PPC_P3041
3698 CONFIG_PPC_P4080 3697 CONFIG_PPC_P4080
3699 CONFIG_PPC_P5020 3698 CONFIG_PPC_P5020
3700 CONFIG_PPC_P5040 3699 CONFIG_PPC_P5040
3701 CONFIG_PPC_SPINTABLE_COMPATIBLE 3700 CONFIG_PPC_SPINTABLE_COMPATIBLE
3702 CONFIG_PPC_T1023 3701 CONFIG_PPC_T1023
3703 CONFIG_PPC_T1024 3702 CONFIG_PPC_T1024
3704 CONFIG_PPC_T1040 3703 CONFIG_PPC_T1040
3705 CONFIG_PPC_T1042 3704 CONFIG_PPC_T1042
3706 CONFIG_PPC_T2080 3705 CONFIG_PPC_T2080
3707 CONFIG_PPC_T2081 3706 CONFIG_PPC_T2081
3708 CONFIG_PPC_T4160 3707 CONFIG_PPC_T4160
3709 CONFIG_PPC_T4240 3708 CONFIG_PPC_T4240
3710 CONFIG_PQ_MDS_PIB 3709 CONFIG_PQ_MDS_PIB
3711 CONFIG_PQ_MDS_PIB_ATM 3710 CONFIG_PQ_MDS_PIB_ATM
3712 CONFIG_PRAM 3711 CONFIG_PRAM
3713 CONFIG_PREBOOT 3712 CONFIG_PREBOOT
3714 CONFIG_PRIMEVIEW_V16C6448AC 3713 CONFIG_PRIMEVIEW_V16C6448AC
3715 CONFIG_PRINTK 3714 CONFIG_PRINTK
3716 CONFIG_PROC_FS 3715 CONFIG_PROC_FS
3717 CONFIG_PROFILE_ALL_BRANCHES 3716 CONFIG_PROFILE_ALL_BRANCHES
3718 CONFIG_PROFILING 3717 CONFIG_PROFILING
3719 CONFIG_PROG_FDT 3718 CONFIG_PROG_FDT
3720 CONFIG_PROG_FDT1 3719 CONFIG_PROG_FDT1
3721 CONFIG_PROG_FDT2 3720 CONFIG_PROG_FDT2
3722 CONFIG_PROG_OS 3721 CONFIG_PROG_OS
3723 CONFIG_PROG_OS1 3722 CONFIG_PROG_OS1
3724 CONFIG_PROG_OS2 3723 CONFIG_PROG_OS2
3725 CONFIG_PROG_SDRAM_TLB 3724 CONFIG_PROG_SDRAM_TLB
3726 CONFIG_PROG_UBOOT 3725 CONFIG_PROG_UBOOT
3727 CONFIG_PROG_UBOOT1 3726 CONFIG_PROG_UBOOT1
3728 CONFIG_PROG_UBOOT2 3727 CONFIG_PROG_UBOOT2
3729 CONFIG_PROOF_POINTS 3728 CONFIG_PROOF_POINTS
3730 CONFIG_PRPMC_PCI_ALIAS 3729 CONFIG_PRPMC_PCI_ALIAS
3731 CONFIG_PS2KBD 3730 CONFIG_PS2KBD
3732 CONFIG_PS2MULT 3731 CONFIG_PS2MULT
3733 CONFIG_PS2MULT_DELAY 3732 CONFIG_PS2MULT_DELAY
3734 CONFIG_PS2SERIAL 3733 CONFIG_PS2SERIAL
3735 CONFIG_PSC3_USB 3734 CONFIG_PSC3_USB
3736 CONFIG_PSC_CONSOLE 3735 CONFIG_PSC_CONSOLE
3737 CONFIG_PSC_CONSOLE2 3736 CONFIG_PSC_CONSOLE2
3738 CONFIG_PSRAM_SCFG 3737 CONFIG_PSRAM_SCFG
3739 CONFIG_PWM 3738 CONFIG_PWM
3740 CONFIG_PWM_IMX 3739 CONFIG_PWM_IMX
3741 CONFIG_PXA_LCD 3740 CONFIG_PXA_LCD
3742 CONFIG_PXA_MMC_GENERIC 3741 CONFIG_PXA_MMC_GENERIC
3743 CONFIG_PXA_PWR_I2C 3742 CONFIG_PXA_PWR_I2C
3744 CONFIG_PXA_SERIAL 3743 CONFIG_PXA_SERIAL
3745 CONFIG_PXA_STD_I2C 3744 CONFIG_PXA_STD_I2C
3746 CONFIG_PXA_VGA 3745 CONFIG_PXA_VGA
3747 CONFIG_PXA_VIDEO 3746 CONFIG_PXA_VIDEO
3748 CONFIG_P_CLK_FREQ 3747 CONFIG_P_CLK_FREQ
3749 CONFIG_QBMAN_CLK_DIV 3748 CONFIG_QBMAN_CLK_DIV
3750 CONFIG_QE 3749 CONFIG_QE
3751 CONFIG_QEMU_E500 3750 CONFIG_QEMU_E500
3752 CONFIG_QEMU_MIPS 3751 CONFIG_QEMU_MIPS
3753 CONFIG_QIXIS_I2C_ACCESS 3752 CONFIG_QIXIS_I2C_ACCESS
3754 CONFIG_QSPI 3753 CONFIG_QSPI
3755 CONFIG_QSPI_QUAD_SUPPORT 3754 CONFIG_QSPI_QUAD_SUPPORT
3756 CONFIG_QSPI_SEL_GPIO 3755 CONFIG_QSPI_SEL_GPIO
3757 CONFIG_QUOTA 3756 CONFIG_QUOTA
3758 CONFIG_R0P7734 3757 CONFIG_R0P7734
3759 CONFIG_R2DPLUS 3758 CONFIG_R2DPLUS
3760 CONFIG_R7780MP 3759 CONFIG_R7780MP
3761 CONFIG_R8A66597_BASE_ADDR 3760 CONFIG_R8A66597_BASE_ADDR
3762 CONFIG_R8A66597_ENDIAN 3761 CONFIG_R8A66597_ENDIAN
3763 CONFIG_R8A66597_LDRV 3762 CONFIG_R8A66597_LDRV
3764 CONFIG_R8A66597_XTAL 3763 CONFIG_R8A66597_XTAL
3765 CONFIG_R8A7740 3764 CONFIG_R8A7740
3766 CONFIG_R8A7790 3765 CONFIG_R8A7790
3767 CONFIG_R8A7791 3766 CONFIG_R8A7791
3768 CONFIG_R8A7792 3767 CONFIG_R8A7792
3769 CONFIG_R8A7793 3768 CONFIG_R8A7793
3770 CONFIG_R8A7794 3769 CONFIG_R8A7794
3771 CONFIG_RAINIER 3770 CONFIG_RAINIER
3772 CONFIG_RAMBOOT 3771 CONFIG_RAMBOOT
3773 CONFIG_RAMBOOTCOMMAND 3772 CONFIG_RAMBOOTCOMMAND
3774 CONFIG_RAMBOOTCOMMAND_TFTP 3773 CONFIG_RAMBOOTCOMMAND_TFTP
3775 CONFIG_RAMBOOT_NAND 3774 CONFIG_RAMBOOT_NAND
3776 CONFIG_RAMBOOT_PBL 3775 CONFIG_RAMBOOT_PBL
3777 CONFIG_RAMBOOT_SDCARD 3776 CONFIG_RAMBOOT_SDCARD
3778 CONFIG_RAMBOOT_SPIFLASH 3777 CONFIG_RAMBOOT_SPIFLASH
3779 CONFIG_RAMBOOT_TEXT_BASE 3778 CONFIG_RAMBOOT_TEXT_BASE
3780 CONFIG_RAMDISKFILE 3779 CONFIG_RAMDISKFILE
3781 CONFIG_RAMDISK_ADDR 3780 CONFIG_RAMDISK_ADDR
3782 CONFIG_RAMDISK_BOOT 3781 CONFIG_RAMDISK_BOOT
3783 CONFIG_RAM_BOOT 3782 CONFIG_RAM_BOOT
3784 CONFIG_RAM_BOOT_PHYS 3783 CONFIG_RAM_BOOT_PHYS
3785 CONFIG_RANDOM_UUID 3784 CONFIG_RANDOM_UUID
3786 CONFIG_RAPIDIO 3785 CONFIG_RAPIDIO
3787 CONFIG_RBTREE 3786 CONFIG_RBTREE
3788 CONFIG_RCAR_BOARD_STRING 3787 CONFIG_RCAR_BOARD_STRING
3789 CONFIG_RD_LVL 3788 CONFIG_RD_LVL
3790 CONFIG_REALMODE_DEBUG 3789 CONFIG_REALMODE_DEBUG
3791 CONFIG_RED_LED 3790 CONFIG_RED_LED
3792 CONFIG_REFCLK_FREQ 3791 CONFIG_REFCLK_FREQ
3793 CONFIG_REG 3792 CONFIG_REG
3794 CONFIG_REG_0 3793 CONFIG_REG_0
3795 CONFIG_REG_1_BASE 3794 CONFIG_REG_1_BASE
3796 CONFIG_REG_2 3795 CONFIG_REG_2
3797 CONFIG_REG_3 3796 CONFIG_REG_3
3798 CONFIG_REG_8 3797 CONFIG_REG_8
3799 CONFIG_REG_APER_SIZE 3798 CONFIG_REG_APER_SIZE
3800 CONFIG_RELOC_GOT_SKIP_NULL 3799 CONFIG_RELOC_GOT_SKIP_NULL
3801 CONFIG_REMAKE_ELF 3800 CONFIG_REMAKE_ELF
3802 CONFIG_REQ 3801 CONFIG_REQ
3803 CONFIG_RESERVED_01_BASE 3802 CONFIG_RESERVED_01_BASE
3804 CONFIG_RESERVED_02_BASE 3803 CONFIG_RESERVED_02_BASE
3805 CONFIG_RESERVED_03_BASE 3804 CONFIG_RESERVED_03_BASE
3806 CONFIG_RESERVED_04_BASE 3805 CONFIG_RESERVED_04_BASE
3807 CONFIG_RESET 3806 CONFIG_RESET
3808 CONFIG_RESET_PHY_R 3807 CONFIG_RESET_PHY_R
3809 CONFIG_RESET_TO_RETRY 3808 CONFIG_RESET_TO_RETRY
3810 CONFIG_RESET_VECTOR_ADDRESS 3809 CONFIG_RESET_VECTOR_ADDRESS
3811 CONFIG_RESTORE_FLASH 3810 CONFIG_RESTORE_FLASH
3812 CONFIG_RES_BLOCK_SIZE 3811 CONFIG_RES_BLOCK_SIZE
3813 CONFIG_REV1 3812 CONFIG_REV1
3814 CONFIG_REV3 3813 CONFIG_REV3
3815 CONFIG_REVISION_TAG 3814 CONFIG_REVISION_TAG
3816 CONFIG_RFSPART 3815 CONFIG_RFSPART
3817 CONFIG_RGMII 3816 CONFIG_RGMII
3818 CONFIG_RIO 3817 CONFIG_RIO
3819 CONFIG_RMII 3818 CONFIG_RMII
3820 CONFIG_RMOBILE_BOARD_STRING 3819 CONFIG_RMOBILE_BOARD_STRING
3821 CONFIG_RMSTP0_ENA 3820 CONFIG_RMSTP0_ENA
3822 CONFIG_RMSTP10_ENA 3821 CONFIG_RMSTP10_ENA
3823 CONFIG_RMSTP11_ENA 3822 CONFIG_RMSTP11_ENA
3824 CONFIG_RMSTP1_ENA 3823 CONFIG_RMSTP1_ENA
3825 CONFIG_RMSTP2_ENA 3824 CONFIG_RMSTP2_ENA
3826 CONFIG_RMSTP3_ENA 3825 CONFIG_RMSTP3_ENA
3827 CONFIG_RMSTP4_ENA 3826 CONFIG_RMSTP4_ENA
3828 CONFIG_RMSTP5_ENA 3827 CONFIG_RMSTP5_ENA
3829 CONFIG_RMSTP6_ENA 3828 CONFIG_RMSTP6_ENA
3830 CONFIG_RMSTP7_ENA 3829 CONFIG_RMSTP7_ENA
3831 CONFIG_RMSTP8_ENA 3830 CONFIG_RMSTP8_ENA
3832 CONFIG_RMSTP9_ENA 3831 CONFIG_RMSTP9_ENA
3833 CONFIG_ROCKCHIP_CHIP_TAG 3832 CONFIG_ROCKCHIP_CHIP_TAG
3834 CONFIG_ROCKCHIP_MAX_INIT_SIZE 3833 CONFIG_ROCKCHIP_MAX_INIT_SIZE
3835 CONFIG_ROCKCHIP_SDHCI_MAX_FREQ 3834 CONFIG_ROCKCHIP_SDHCI_MAX_FREQ
3836 CONFIG_ROCKCHIP_USB2_PHY 3835 CONFIG_ROCKCHIP_USB2_PHY
3837 CONFIG_ROM_STUBS 3836 CONFIG_ROM_STUBS
3838 CONFIG_ROOTFS_OFFSET 3837 CONFIG_ROOTFS_OFFSET
3839 CONFIG_ROOTPATH 3838 CONFIG_ROOTPATH
3840 CONFIG_RSK7203 3839 CONFIG_RSK7203
3841 CONFIG_RSK7264 3840 CONFIG_RSK7264
3842 CONFIG_RSK7269 3841 CONFIG_RSK7269
3843 CONFIG_RTC_BFIN 3842 CONFIG_RTC_BFIN
3844 CONFIG_RTC_DS1307 3843 CONFIG_RTC_DS1307
3845 CONFIG_RTC_DS1337 3844 CONFIG_RTC_DS1337
3846 CONFIG_RTC_DS1338 3845 CONFIG_RTC_DS1338
3847 CONFIG_RTC_DS1374 3846 CONFIG_RTC_DS1374
3848 CONFIG_RTC_DS1388 3847 CONFIG_RTC_DS1388
3849 CONFIG_RTC_DS1556 3848 CONFIG_RTC_DS1556
3850 CONFIG_RTC_DS174x 3849 CONFIG_RTC_DS174x
3851 CONFIG_RTC_DS3231 3850 CONFIG_RTC_DS3231
3852 CONFIG_RTC_FTRTC010 3851 CONFIG_RTC_FTRTC010
3853 CONFIG_RTC_IMXDI 3852 CONFIG_RTC_IMXDI
3854 CONFIG_RTC_INTERNAL 3853 CONFIG_RTC_INTERNAL
3855 CONFIG_RTC_M41T11 3854 CONFIG_RTC_M41T11
3856 CONFIG_RTC_M41T60 3855 CONFIG_RTC_M41T60
3857 CONFIG_RTC_M41T62 3856 CONFIG_RTC_M41T62
3858 CONFIG_RTC_M48T35A 3857 CONFIG_RTC_M48T35A
3859 CONFIG_RTC_MC13XXX 3858 CONFIG_RTC_MC13XXX
3860 CONFIG_RTC_MC146818 3859 CONFIG_RTC_MC146818
3861 CONFIG_RTC_MCFRRTC 3860 CONFIG_RTC_MCFRRTC
3862 CONFIG_RTC_MCP79411 3861 CONFIG_RTC_MCP79411
3863 CONFIG_RTC_MPC5200 3862 CONFIG_RTC_MPC5200
3864 CONFIG_RTC_MPC8xx 3863 CONFIG_RTC_MPC8xx
3865 CONFIG_RTC_MV 3864 CONFIG_RTC_MV
3866 CONFIG_RTC_MXS 3865 CONFIG_RTC_MXS
3867 CONFIG_RTC_PCF8563 3866 CONFIG_RTC_PCF8563
3868 CONFIG_RTC_PT7C4338 3867 CONFIG_RTC_PT7C4338
3869 CONFIG_RTC_RTC4543 3868 CONFIG_RTC_RTC4543
3870 CONFIG_RTC_RV3029 3869 CONFIG_RTC_RV3029
3871 CONFIG_RTC_RX8025 3870 CONFIG_RTC_RX8025
3872 CONFIG_RTC_S3C24X0 3871 CONFIG_RTC_S3C24X0
3873 CONFIG_RTC_X1205 3872 CONFIG_RTC_X1205
3874 CONFIG_RUN_FROM_DDR0 3873 CONFIG_RUN_FROM_DDR0
3875 CONFIG_RUN_FROM_DDR1 3874 CONFIG_RUN_FROM_DDR1
3876 CONFIG_RUN_FROM_IRAM_ONLY 3875 CONFIG_RUN_FROM_IRAM_ONLY
3877 CONFIG_RX_DESCR_NUM 3876 CONFIG_RX_DESCR_NUM
3878 CONFIG_S32V234 3877 CONFIG_S32V234
3879 CONFIG_S3C2400 3878 CONFIG_S3C2400
3880 CONFIG_S3C2410 3879 CONFIG_S3C2410
3881 CONFIG_S3C2410_NAND_BBT 3880 CONFIG_S3C2410_NAND_BBT
3882 CONFIG_S3C2410_NAND_HWECC 3881 CONFIG_S3C2410_NAND_HWECC
3883 CONFIG_S3C2440 3882 CONFIG_S3C2440
3884 CONFIG_S3C24X0 3883 CONFIG_S3C24X0
3885 CONFIG_S3C24X0_SERIAL 3884 CONFIG_S3C24X0_SERIAL
3886 CONFIG_S3C24XX_CUSTOM_NAND_TIMING 3885 CONFIG_S3C24XX_CUSTOM_NAND_TIMING
3887 CONFIG_S3C24XX_TACLS 3886 CONFIG_S3C24XX_TACLS
3888 CONFIG_S3C24XX_TWRPH0 3887 CONFIG_S3C24XX_TWRPH0
3889 CONFIG_S3C24XX_TWRPH1 3888 CONFIG_S3C24XX_TWRPH1
3890 CONFIG_S3D2_CLK_FREQ 3889 CONFIG_S3D2_CLK_FREQ
3891 CONFIG_S5P 3890 CONFIG_S5P
3892 CONFIG_S5PC100 3891 CONFIG_S5PC100
3893 CONFIG_S5PC110 3892 CONFIG_S5PC110
3894 CONFIG_S5P_PA_SYSRAM 3893 CONFIG_S5P_PA_SYSRAM
3895 CONFIG_S5P_SDHCI 3894 CONFIG_S5P_SDHCI
3896 CONFIG_S6E63D6 3895 CONFIG_S6E63D6
3897 CONFIG_S6E8AX0 3896 CONFIG_S6E8AX0
3898 CONFIG_SA1100_ADSBITSY 3897 CONFIG_SA1100_ADSBITSY
3899 CONFIG_SA1100_ASSABET 3898 CONFIG_SA1100_ASSABET
3900 CONFIG_SA1100_BADGE4 3899 CONFIG_SA1100_BADGE4
3901 CONFIG_SA1100_BRUTUS 3900 CONFIG_SA1100_BRUTUS
3902 CONFIG_SA1100_CERF 3901 CONFIG_SA1100_CERF
3903 CONFIG_SA1100_COLLIE 3902 CONFIG_SA1100_COLLIE
3904 CONFIG_SA1100_CONSUS 3903 CONFIG_SA1100_CONSUS
3905 CONFIG_SA1100_FLEXANET 3904 CONFIG_SA1100_FLEXANET
3906 CONFIG_SA1100_GRAPHICSCLIENT 3905 CONFIG_SA1100_GRAPHICSCLIENT
3907 CONFIG_SA1100_GRAPHICSMASTER 3906 CONFIG_SA1100_GRAPHICSMASTER
3908 CONFIG_SA1100_H3100 3907 CONFIG_SA1100_H3100
3909 CONFIG_SA1100_H3600 3908 CONFIG_SA1100_H3600
3910 CONFIG_SA1100_HACKKIT 3909 CONFIG_SA1100_HACKKIT
3911 CONFIG_SA1100_JORNADA720 3910 CONFIG_SA1100_JORNADA720
3912 CONFIG_SA1100_LART 3911 CONFIG_SA1100_LART
3913 CONFIG_SA1100_NANOENGINE 3912 CONFIG_SA1100_NANOENGINE
3914 CONFIG_SA1100_PFS168 3913 CONFIG_SA1100_PFS168
3915 CONFIG_SA1100_PLEB 3914 CONFIG_SA1100_PLEB
3916 CONFIG_SA1100_PT_SYSTEM3 3915 CONFIG_SA1100_PT_SYSTEM3
3917 CONFIG_SA1100_SHANNON 3916 CONFIG_SA1100_SHANNON
3918 CONFIG_SA1100_SIMPAD 3917 CONFIG_SA1100_SIMPAD
3919 CONFIG_SA1100_XP860 3918 CONFIG_SA1100_XP860
3920 CONFIG_SABRELITE 3919 CONFIG_SABRELITE
3921 CONFIG_SAMA5D2 3920 CONFIG_SAMA5D2
3922 CONFIG_SAMA5D3 3921 CONFIG_SAMA5D3
3923 CONFIG_SAMA5D3_LCD_BASE 3922 CONFIG_SAMA5D3_LCD_BASE
3924 CONFIG_SAMA5D4 3923 CONFIG_SAMA5D4
3925 CONFIG_SAMSUNG 3924 CONFIG_SAMSUNG
3926 CONFIG_SAMSUNG_ONENAND 3925 CONFIG_SAMSUNG_ONENAND
3927 CONFIG_SANDBOX_ARCH 3926 CONFIG_SANDBOX_ARCH
3928 CONFIG_SANDBOX_BIG_ENDIAN 3927 CONFIG_SANDBOX_BIG_ENDIAN
3929 CONFIG_SANDBOX_BITS_PER_LONG 3928 CONFIG_SANDBOX_BITS_PER_LONG
3930 CONFIG_SANDBOX_SDL 3929 CONFIG_SANDBOX_SDL
3931 CONFIG_SANDBOX_SPI_MAX_BUS 3930 CONFIG_SANDBOX_SPI_MAX_BUS
3932 CONFIG_SANDBOX_SPI_MAX_CS 3931 CONFIG_SANDBOX_SPI_MAX_CS
3933 CONFIG_SAR2_REG 3932 CONFIG_SAR2_REG
3934 CONFIG_SAR_REG 3933 CONFIG_SAR_REG
3935 CONFIG_SATA1 3934 CONFIG_SATA1
3936 CONFIG_SATA2 3935 CONFIG_SATA2
3937 CONFIG_SATAPWR 3936 CONFIG_SATAPWR
3938 CONFIG_SATA_CEVA 3937 CONFIG_SATA_CEVA
3939 CONFIG_SATA_DWC 3938 CONFIG_SATA_DWC
3940 CONFIG_SATA_MV 3939 CONFIG_SATA_MV
3941 CONFIG_SATA_SIL 3940 CONFIG_SATA_SIL
3942 CONFIG_SATA_SIL3114 3941 CONFIG_SATA_SIL3114
3943 CONFIG_SATA_ULI5288 3942 CONFIG_SATA_ULI5288
3944 CONFIG_SBC8349 3943 CONFIG_SBC8349
3945 CONFIG_SBC8548 3944 CONFIG_SBC8548
3946 CONFIG_SBC8641D 3945 CONFIG_SBC8641D
3947 CONFIG_SCC1_ENET 3946 CONFIG_SCC1_ENET
3948 CONFIG_SCC2_ENET 3947 CONFIG_SCC2_ENET
3949 CONFIG_SCF0403_LCD 3948 CONFIG_SCF0403_LCD
3950 CONFIG_SCIF 3949 CONFIG_SCIF
3951 CONFIG_SCIF_A 3950 CONFIG_SCIF_A
3952 CONFIG_SCIF_CONSOLE 3951 CONFIG_SCIF_CONSOLE
3953 CONFIG_SCIF_EXT_CLOCK 3952 CONFIG_SCIF_EXT_CLOCK
3954 CONFIG_SCIF_USE_EXT_CLK 3953 CONFIG_SCIF_USE_EXT_CLK
3955 CONFIG_SCLK0_DIV 3954 CONFIG_SCLK0_DIV
3956 CONFIG_SCLK1_DIV 3955 CONFIG_SCLK1_DIV
3957 CONFIG_SCLK_DIV 3956 CONFIG_SCLK_DIV
3958 CONFIG_SCLK_HZ 3957 CONFIG_SCLK_HZ
3959 CONFIG_SCSI 3958 CONFIG_SCSI
3960 CONFIG_SCSI_AHCI 3959 CONFIG_SCSI_AHCI
3961 CONFIG_SCSI_AHCI_PLAT 3960 CONFIG_SCSI_AHCI_PLAT
3962 CONFIG_SCSI_DEV_ID 3961 CONFIG_SCSI_DEV_ID
3963 CONFIG_SCSI_DEV_LIST 3962 CONFIG_SCSI_DEV_LIST
3964 CONFIG_SCSI_SYM53C8XX 3963 CONFIG_SCSI_SYM53C8XX
3965 CONFIG_SC_TIMER_CLK 3964 CONFIG_SC_TIMER_CLK
3966 CONFIG_SDCARD 3965 CONFIG_SDCARD
3967 CONFIG_SDHCI 3966 CONFIG_SDHCI
3968 CONFIG_SDRAM_BANK0 3967 CONFIG_SDRAM_BANK0
3969 CONFIG_SDRAM_BANK1 3968 CONFIG_SDRAM_BANK1
3970 CONFIG_SDRAM_ECC 3969 CONFIG_SDRAM_ECC
3971 CONFIG_SDRAM_OFFSET_FOR_RT 3970 CONFIG_SDRAM_OFFSET_FOR_RT
3972 CONFIG_SDRAM_PPC4xx_DENALI_DDR2 3971 CONFIG_SDRAM_PPC4xx_DENALI_DDR2
3973 CONFIG_SDRAM_PPC4xx_IBM_DDR 3972 CONFIG_SDRAM_PPC4xx_IBM_DDR
3974 CONFIG_SDRAM_PPC4xx_IBM_DDR2 3973 CONFIG_SDRAM_PPC4xx_IBM_DDR2
3975 CONFIG_SDRAM_PPC4xx_IBM_SDRAM 3974 CONFIG_SDRAM_PPC4xx_IBM_SDRAM
3976 CONFIG_SDRC 3975 CONFIG_SDRC
3977 CONFIG_SDR_MT48LC16M16A2 3976 CONFIG_SDR_MT48LC16M16A2
3978 CONFIG_SD_BOOT_QSPI 3977 CONFIG_SD_BOOT_QSPI
3979 CONFIG_SECBOOT 3978 CONFIG_SECBOOT
3980 CONFIG_SECURE_BL1_ONLY 3979 CONFIG_SECURE_BL1_ONLY
3981 CONFIG_SECURE_BOOT 3980 CONFIG_SECURE_BOOT
3982 CONFIG_SECURE_RUNTIME_RESV_SRAM_SZ 3981 CONFIG_SECURE_RUNTIME_RESV_SRAM_SZ
3983 CONFIG_SECURITY 3982 CONFIG_SECURITY
3984 CONFIG_SEC_DEQ_TIMEOUT 3983 CONFIG_SEC_DEQ_TIMEOUT
3985 CONFIG_SEC_FW_SIZE 3984 CONFIG_SEC_FW_SIZE
3986 CONFIG_SELECTED 3985 CONFIG_SELECTED
3987 CONFIG_SEQUOIA 3986 CONFIG_SEQUOIA
3988 CONFIG_SERIAL0 3987 CONFIG_SERIAL0
3989 CONFIG_SERIAL1 3988 CONFIG_SERIAL1
3990 CONFIG_SERIAL2 3989 CONFIG_SERIAL2
3991 CONFIG_SERIAL3 3990 CONFIG_SERIAL3
3992 CONFIG_SERIAL_BOOT 3991 CONFIG_SERIAL_BOOT
3993 CONFIG_SERIAL_FLASH 3992 CONFIG_SERIAL_FLASH
3994 CONFIG_SERIAL_HW_FLOW_CONTROL 3993 CONFIG_SERIAL_HW_FLOW_CONTROL
3995 CONFIG_SERIAL_MULTI 3994 CONFIG_SERIAL_MULTI
3996 CONFIG_SERIAL_SOFTWARE_FIFO 3995 CONFIG_SERIAL_SOFTWARE_FIFO
3997 CONFIG_SERIAL_TAG 3996 CONFIG_SERIAL_TAG
3998 CONFIG_SERIRQ_CONTINUOUS_MODE 3997 CONFIG_SERIRQ_CONTINUOUS_MODE
3999 CONFIG_SERVERIP 3998 CONFIG_SERVERIP
4000 CONFIG_SETUP_INITRD_TAG 3999 CONFIG_SETUP_INITRD_TAG
4001 CONFIG_SETUP_MEMORY_TAGS 4000 CONFIG_SETUP_MEMORY_TAGS
4002 CONFIG_SET_BIST 4001 CONFIG_SET_BIST
4003 CONFIG_SET_BOOTARGS 4002 CONFIG_SET_BOOTARGS
4004 CONFIG_SET_DFU_ALT_BUF_LEN 4003 CONFIG_SET_DFU_ALT_BUF_LEN
4005 CONFIG_SET_DFU_ALT_INFO 4004 CONFIG_SET_DFU_ALT_INFO
4006 CONFIG_SFIO 4005 CONFIG_SFIO
4007 CONFIG_SF_DATAFLASH 4006 CONFIG_SF_DATAFLASH
4008 CONFIG_SF_DEFAULT_BUS 4007 CONFIG_SF_DEFAULT_BUS
4009 CONFIG_SF_DEFAULT_CS 4008 CONFIG_SF_DEFAULT_CS
4010 CONFIG_SF_DEFAULT_HZ 4009 CONFIG_SF_DEFAULT_HZ
4011 CONFIG_SF_DEFAULT_MODE 4010 CONFIG_SF_DEFAULT_MODE
4012 CONFIG_SF_DEFAULT_SPEED 4011 CONFIG_SF_DEFAULT_SPEED
4013 CONFIG_SF_DUAL_FLASH 4012 CONFIG_SF_DUAL_FLASH
4014 CONFIG_SGI_IP28 4013 CONFIG_SGI_IP28
4015 CONFIG_SH4_PCI 4014 CONFIG_SH4_PCI
4016 CONFIG_SH73A0 4015 CONFIG_SH73A0
4017 CONFIG_SH7751_PCI 4016 CONFIG_SH7751_PCI
4018 CONFIG_SH7752EVB 4017 CONFIG_SH7752EVB
4019 CONFIG_SH7753EVB 4018 CONFIG_SH7753EVB
4020 CONFIG_SH7757LCR 4019 CONFIG_SH7757LCR
4021 CONFIG_SH7757LCR_DDR_ECC 4020 CONFIG_SH7757LCR_DDR_ECC
4022 CONFIG_SH7763RDP 4021 CONFIG_SH7763RDP
4023 CONFIG_SH7780_PCI 4022 CONFIG_SH7780_PCI
4024 CONFIG_SH7780_PCI_BAR 4023 CONFIG_SH7780_PCI_BAR
4025 CONFIG_SH7780_PCI_LAR 4024 CONFIG_SH7780_PCI_LAR
4026 CONFIG_SH7780_PCI_LSR 4025 CONFIG_SH7780_PCI_LSR
4027 CONFIG_SH7785LCR 4026 CONFIG_SH7785LCR
4028 CONFIG_SHA1SUM_VERIFY 4027 CONFIG_SHA1SUM_VERIFY
4029 CONFIG_SHARP_16x9 4028 CONFIG_SHARP_16x9
4030 CONFIG_SHARP_LM8V31 4029 CONFIG_SHARP_LM8V31
4031 CONFIG_SHARP_LQ035Q7DH06 4030 CONFIG_SHARP_LQ035Q7DH06
4032 CONFIG_SHARP_LQ057Q3DC02 4031 CONFIG_SHARP_LQ057Q3DC02
4033 CONFIG_SHARP_LQ065T9DR51U 4032 CONFIG_SHARP_LQ065T9DR51U
4034 CONFIG_SHARP_LQ084V1DG21 4033 CONFIG_SHARP_LQ084V1DG21
4035 CONFIG_SHARP_LQ104V7DS01 4034 CONFIG_SHARP_LQ104V7DS01
4036 CONFIG_SHARP_LQ64D341 4035 CONFIG_SHARP_LQ64D341
4037 CONFIG_SHEEVA_88SV131 4036 CONFIG_SHEEVA_88SV131
4038 CONFIG_SHEEVA_88SV331xV5 4037 CONFIG_SHEEVA_88SV331xV5
4039 CONFIG_SHELL 4038 CONFIG_SHELL
4040 CONFIG_SHMIN 4039 CONFIG_SHMIN
4041 CONFIG_SHOW_ACTIVITY 4040 CONFIG_SHOW_ACTIVITY
4042 CONFIG_SHOW_BOOT_PROGRESS 4041 CONFIG_SHOW_BOOT_PROGRESS
4043 CONFIG_SH_CMT_CLK_FREQ 4042 CONFIG_SH_CMT_CLK_FREQ
4044 CONFIG_SH_DSP 4043 CONFIG_SH_DSP
4045 CONFIG_SH_ETHER 4044 CONFIG_SH_ETHER
4046 CONFIG_SH_ETHER_ALIGNE_SIZE 4045 CONFIG_SH_ETHER_ALIGNE_SIZE
4047 CONFIG_SH_ETHER_BASE_ADDR 4046 CONFIG_SH_ETHER_BASE_ADDR
4048 CONFIG_SH_ETHER_CACHE_INVALIDATE 4047 CONFIG_SH_ETHER_CACHE_INVALIDATE
4049 CONFIG_SH_ETHER_CACHE_WRITEBACK 4048 CONFIG_SH_ETHER_CACHE_WRITEBACK
4050 CONFIG_SH_ETHER_PHY_ADDR 4049 CONFIG_SH_ETHER_PHY_ADDR
4051 CONFIG_SH_ETHER_PHY_MODE 4050 CONFIG_SH_ETHER_PHY_MODE
4052 CONFIG_SH_ETHER_SH7734_MII 4051 CONFIG_SH_ETHER_SH7734_MII
4053 CONFIG_SH_ETHER_USE_GETHER 4052 CONFIG_SH_ETHER_USE_GETHER
4054 CONFIG_SH_ETHER_USE_PORT 4053 CONFIG_SH_ETHER_USE_PORT
4055 CONFIG_SH_GPIO_PFC 4054 CONFIG_SH_GPIO_PFC
4056 CONFIG_SH_I2C_8BIT 4055 CONFIG_SH_I2C_8BIT
4057 CONFIG_SH_I2C_BASE0 4056 CONFIG_SH_I2C_BASE0
4058 CONFIG_SH_I2C_BASE1 4057 CONFIG_SH_I2C_BASE1
4059 CONFIG_SH_I2C_CLOCK 4058 CONFIG_SH_I2C_CLOCK
4060 CONFIG_SH_I2C_DATA_HIGH 4059 CONFIG_SH_I2C_DATA_HIGH
4061 CONFIG_SH_I2C_DATA_LOW 4060 CONFIG_SH_I2C_DATA_LOW
4062 CONFIG_SH_MMCIF 4061 CONFIG_SH_MMCIF
4063 CONFIG_SH_MMCIF_ADDR 4062 CONFIG_SH_MMCIF_ADDR
4064 CONFIG_SH_MMCIF_CLK 4063 CONFIG_SH_MMCIF_CLK
4065 CONFIG_SH_QSPI 4064 CONFIG_SH_QSPI
4066 CONFIG_SH_QSPI_BASE 4065 CONFIG_SH_QSPI_BASE
4067 CONFIG_SH_SCIF_CLK_FREQ 4066 CONFIG_SH_SCIF_CLK_FREQ
4068 CONFIG_SH_SDHI_FREQ 4067 CONFIG_SH_SDHI_FREQ
4069 CONFIG_SH_SDRAM_OFFSET 4068 CONFIG_SH_SDRAM_OFFSET
4070 CONFIG_SH_SH7734_I2C 4069 CONFIG_SH_SH7734_I2C
4071 CONFIG_SH_SPI 4070 CONFIG_SH_SPI
4072 CONFIG_SH_SPI_BASE 4071 CONFIG_SH_SPI_BASE
4073 CONFIG_SH_TMU_CLK_FREQ 4072 CONFIG_SH_TMU_CLK_FREQ
4074 CONFIG_SIEMENS_DRACO 4073 CONFIG_SIEMENS_DRACO
4075 CONFIG_SIEMENS_MACH_TYPE 4074 CONFIG_SIEMENS_MACH_TYPE
4076 CONFIG_SIEMENS_PXM2 4075 CONFIG_SIEMENS_PXM2
4077 CONFIG_SIEMENS_RUT 4076 CONFIG_SIEMENS_RUT
4078 CONFIG_SIMU 4077 CONFIG_SIMU
4079 CONFIG_SKIP_LOCAL_MAC_RANDOMIZATION 4078 CONFIG_SKIP_LOCAL_MAC_RANDOMIZATION
4080 CONFIG_SKIP_LOWLEVEL_INIT 4079 CONFIG_SKIP_LOWLEVEL_INIT
4081 CONFIG_SKIP_LOWLEVEL_INIT_ONLY 4080 CONFIG_SKIP_LOWLEVEL_INIT_ONLY
4082 CONFIG_SKIP_TRUNOFF_WATCHDOG 4081 CONFIG_SKIP_TRUNOFF_WATCHDOG
4083 CONFIG_SLIC 4082 CONFIG_SLIC
4084 CONFIG_SLTTMR 4083 CONFIG_SLTTMR
4085 CONFIG_SMC91111 4084 CONFIG_SMC91111
4086 CONFIG_SMC91111_BASE 4085 CONFIG_SMC91111_BASE
4087 CONFIG_SMC91111_EXT_PHY 4086 CONFIG_SMC91111_EXT_PHY
4088 CONFIG_SMC911X 4087 CONFIG_SMC911X
4089 CONFIG_SMC911X_16_BIT 4088 CONFIG_SMC911X_16_BIT
4090 CONFIG_SMC911X_32_BIT 4089 CONFIG_SMC911X_32_BIT
4091 CONFIG_SMC911X_BASE 4090 CONFIG_SMC911X_BASE
4092 CONFIG_SMC911X_NO_EEPROM 4091 CONFIG_SMC911X_NO_EEPROM
4093 CONFIG_SMC_91111_EXT_PHY 4092 CONFIG_SMC_91111_EXT_PHY
4094 CONFIG_SMC_AUTONEG_TIMEOUT 4093 CONFIG_SMC_AUTONEG_TIMEOUT
4095 CONFIG_SMC_B0CTL_VAL 4094 CONFIG_SMC_B0CTL_VAL
4096 CONFIG_SMC_B0ETIM_VAL 4095 CONFIG_SMC_B0ETIM_VAL
4097 CONFIG_SMC_B0TIM_VAL 4096 CONFIG_SMC_B0TIM_VAL
4098 CONFIG_SMC_B1CTL_VAL 4097 CONFIG_SMC_B1CTL_VAL
4099 CONFIG_SMC_B1ETIM_VAL 4098 CONFIG_SMC_B1ETIM_VAL
4100 CONFIG_SMC_B1TIM_VAL 4099 CONFIG_SMC_B1TIM_VAL
4101 CONFIG_SMC_B2CTL_VAL 4100 CONFIG_SMC_B2CTL_VAL
4102 CONFIG_SMC_B2ETIM_VAL 4101 CONFIG_SMC_B2ETIM_VAL
4103 CONFIG_SMC_B2TIM_VAL 4102 CONFIG_SMC_B2TIM_VAL
4104 CONFIG_SMC_B3CTL_VAL 4103 CONFIG_SMC_B3CTL_VAL
4105 CONFIG_SMC_B3ETIM_VAL 4104 CONFIG_SMC_B3ETIM_VAL
4106 CONFIG_SMC_B3TIM_VAL 4105 CONFIG_SMC_B3TIM_VAL
4107 CONFIG_SMC_GCTL_VAL 4106 CONFIG_SMC_GCTL_VAL
4108 CONFIG_SMC_USE_32_BIT 4107 CONFIG_SMC_USE_32_BIT
4109 CONFIG_SMC_USE_IOFUNCS 4108 CONFIG_SMC_USE_IOFUNCS
4110 CONFIG_SMDK2410 4109 CONFIG_SMDK2410
4111 CONFIG_SMDK5420 4110 CONFIG_SMDK5420
4112 CONFIG_SMDKC100 4111 CONFIG_SMDKC100
4113 CONFIG_SMDKV310 4112 CONFIG_SMDKV310
4114 CONFIG_SMP_PEN_ADDR 4113 CONFIG_SMP_PEN_ADDR
4115 CONFIG_SMSC_LPC47M 4114 CONFIG_SMSC_LPC47M
4116 CONFIG_SMSC_SIO1007 4115 CONFIG_SMSC_SIO1007
4117 CONFIG_SMSTP0_ENA 4116 CONFIG_SMSTP0_ENA
4118 CONFIG_SMSTP10_ENA 4117 CONFIG_SMSTP10_ENA
4119 CONFIG_SMSTP11_ENA 4118 CONFIG_SMSTP11_ENA
4120 CONFIG_SMSTP1_ENA 4119 CONFIG_SMSTP1_ENA
4121 CONFIG_SMSTP2_ENA 4120 CONFIG_SMSTP2_ENA
4122 CONFIG_SMSTP3_ENA 4121 CONFIG_SMSTP3_ENA
4123 CONFIG_SMSTP4_ENA 4122 CONFIG_SMSTP4_ENA
4124 CONFIG_SMSTP5_ENA 4123 CONFIG_SMSTP5_ENA
4125 CONFIG_SMSTP6_ENA 4124 CONFIG_SMSTP6_ENA
4126 CONFIG_SMSTP7_ENA 4125 CONFIG_SMSTP7_ENA
4127 CONFIG_SMSTP8_ENA 4126 CONFIG_SMSTP8_ENA
4128 CONFIG_SMSTP9_ENA 4127 CONFIG_SMSTP9_ENA
4129 CONFIG_SOCFPGA_DWMMC 4128 CONFIG_SOCFPGA_DWMMC
4130 CONFIG_SOCFPGA_DWMMC_FIFO_DEPTH 4129 CONFIG_SOCFPGA_DWMMC_FIFO_DEPTH
4131 CONFIG_SOCFPGA_VIRTUAL_TARGET 4130 CONFIG_SOCFPGA_VIRTUAL_TARGET
4132 CONFIG_SOCRATES 4131 CONFIG_SOCRATES
4133 CONFIG_SOC_AU1000 4132 CONFIG_SOC_AU1000
4134 CONFIG_SOC_AU1100 4133 CONFIG_SOC_AU1100
4135 CONFIG_SOC_AU1500 4134 CONFIG_SOC_AU1500
4136 CONFIG_SOC_AU1550 4135 CONFIG_SOC_AU1550
4137 CONFIG_SOC_AU1X00 4136 CONFIG_SOC_AU1X00
4138 CONFIG_SOC_DA850 4137 CONFIG_SOC_DA850
4139 CONFIG_SOC_DA8XX 4138 CONFIG_SOC_DA8XX
4140 CONFIG_SOC_DM355 4139 CONFIG_SOC_DM355
4141 CONFIG_SOC_DM365 4140 CONFIG_SOC_DM365
4142 CONFIG_SOC_DM644X 4141 CONFIG_SOC_DM644X
4143 CONFIG_SOC_DM646X 4142 CONFIG_SOC_DM646X
4144 CONFIG_SOC_K2E 4143 CONFIG_SOC_K2E
4145 CONFIG_SOC_K2G 4144 CONFIG_SOC_K2G
4146 CONFIG_SOC_K2HK 4145 CONFIG_SOC_K2HK
4147 CONFIG_SOC_K2L 4146 CONFIG_SOC_K2L
4148 CONFIG_SOC_KEYSTONE 4147 CONFIG_SOC_KEYSTONE
4149 CONFIG_SOC_OMAP3430 4148 CONFIG_SOC_OMAP3430
4150 CONFIG_SOFT_I2C_GPIO_SCL 4149 CONFIG_SOFT_I2C_GPIO_SCL
4151 CONFIG_SOFT_I2C_GPIO_SDA 4150 CONFIG_SOFT_I2C_GPIO_SDA
4152 CONFIG_SOFT_I2C_I2C10_SCL 4151 CONFIG_SOFT_I2C_I2C10_SCL
4153 CONFIG_SOFT_I2C_I2C10_SDA 4152 CONFIG_SOFT_I2C_I2C10_SDA
4154 CONFIG_SOFT_I2C_I2C5_SCL 4153 CONFIG_SOFT_I2C_I2C5_SCL
4155 CONFIG_SOFT_I2C_I2C5_SDA 4154 CONFIG_SOFT_I2C_I2C5_SDA
4156 CONFIG_SOFT_I2C_I2C9_SCL 4155 CONFIG_SOFT_I2C_I2C9_SCL
4157 CONFIG_SOFT_I2C_I2C9_SDA 4156 CONFIG_SOFT_I2C_I2C9_SDA
4158 CONFIG_SOFT_I2C_MULTI_BUS 4157 CONFIG_SOFT_I2C_MULTI_BUS
4159 CONFIG_SOFT_I2C_READ_REPEATED_START 4158 CONFIG_SOFT_I2C_READ_REPEATED_START
4160 CONFIG_SOFT_SPI 4159 CONFIG_SOFT_SPI
4161 CONFIG_SOFT_TWS 4160 CONFIG_SOFT_TWS
4162 CONFIG_SOURCE 4161 CONFIG_SOURCE
4163 CONFIG_SPARSE_RCU_POINTER 4162 CONFIG_SPARSE_RCU_POINTER
4164 CONFIG_SPDDRAM_SILENT 4163 CONFIG_SPDDRAM_SILENT
4165 CONFIG_SPD_EEPROM 4164 CONFIG_SPD_EEPROM
4166 CONFIG_SPEAR300 4165 CONFIG_SPEAR300
4167 CONFIG_SPEAR310 4166 CONFIG_SPEAR310
4168 CONFIG_SPEAR320 4167 CONFIG_SPEAR320
4169 CONFIG_SPEAR3XX 4168 CONFIG_SPEAR3XX
4170 CONFIG_SPEAR600 4169 CONFIG_SPEAR600
4171 CONFIG_SPEAR_BOOTSTRAPCFG 4170 CONFIG_SPEAR_BOOTSTRAPCFG
4172 CONFIG_SPEAR_BOOTSTRAPMASK 4171 CONFIG_SPEAR_BOOTSTRAPMASK
4173 CONFIG_SPEAR_BOOTSTRAPSHFT 4172 CONFIG_SPEAR_BOOTSTRAPSHFT
4174 CONFIG_SPEAR_EMI 4173 CONFIG_SPEAR_EMI
4175 CONFIG_SPEAR_EMIBASE 4174 CONFIG_SPEAR_EMIBASE
4176 CONFIG_SPEAR_ETHBASE 4175 CONFIG_SPEAR_ETHBASE
4177 CONFIG_SPEAR_GPIO 4176 CONFIG_SPEAR_GPIO
4178 CONFIG_SPEAR_HZ 4177 CONFIG_SPEAR_HZ
4179 CONFIG_SPEAR_HZ_CLOCK 4178 CONFIG_SPEAR_HZ_CLOCK
4180 CONFIG_SPEAR_MISCBASE 4179 CONFIG_SPEAR_MISCBASE
4181 CONFIG_SPEAR_MPMCBASE 4180 CONFIG_SPEAR_MPMCBASE
4182 CONFIG_SPEAR_MPMCREGS 4181 CONFIG_SPEAR_MPMCREGS
4183 CONFIG_SPEAR_NORNAND16BOOT 4182 CONFIG_SPEAR_NORNAND16BOOT
4184 CONFIG_SPEAR_NORNAND8BOOT 4183 CONFIG_SPEAR_NORNAND8BOOT
4185 CONFIG_SPEAR_NORNANDBOOT 4184 CONFIG_SPEAR_NORNANDBOOT
4186 CONFIG_SPEAR_ONLYSNORBOOT 4185 CONFIG_SPEAR_ONLYSNORBOOT
4187 CONFIG_SPEAR_RASBASE 4186 CONFIG_SPEAR_RASBASE
4188 CONFIG_SPEAR_SYSCNTLBASE 4187 CONFIG_SPEAR_SYSCNTLBASE
4189 CONFIG_SPEAR_TIMERBASE 4188 CONFIG_SPEAR_TIMERBASE
4190 CONFIG_SPEAR_UART48M 4189 CONFIG_SPEAR_UART48M
4191 CONFIG_SPEAR_UARTCLKMSK 4190 CONFIG_SPEAR_UARTCLKMSK
4192 CONFIG_SPEAR_USBBOOT 4191 CONFIG_SPEAR_USBBOOT
4193 CONFIG_SPEAR_USBTTY 4192 CONFIG_SPEAR_USBTTY
4194 CONFIG_SPI 4193 CONFIG_SPI
4195 CONFIG_SPI_ADDR 4194 CONFIG_SPI_ADDR
4196 CONFIG_SPI_BAUD_INITBLOCK 4195 CONFIG_SPI_BAUD_INITBLOCK
4197 CONFIG_SPI_BOOTING 4196 CONFIG_SPI_BOOTING
4198 CONFIG_SPI_CS_IS_VALID 4197 CONFIG_SPI_CS_IS_VALID
4199 CONFIG_SPI_DATAFLASH_WRITE_VERIFY 4198 CONFIG_SPI_DATAFLASH_WRITE_VERIFY
4200 CONFIG_SPI_FLASH_ALL 4199 CONFIG_SPI_FLASH_ALL
4201 CONFIG_SPI_FLASH_ISSI 4200 CONFIG_SPI_FLASH_ISSI
4202 CONFIG_SPI_FLASH_QUAD 4201 CONFIG_SPI_FLASH_QUAD
4203 CONFIG_SPI_FLASH_SIZE 4202 CONFIG_SPI_FLASH_SIZE
4204 CONFIG_SPI_HALF_DUPLEX 4203 CONFIG_SPI_HALF_DUPLEX
4205 CONFIG_SPI_IDLE_VAL 4204 CONFIG_SPI_IDLE_VAL
4206 CONFIG_SPI_LENGTH 4205 CONFIG_SPI_LENGTH
4207 CONFIG_SPI_N25Q256A_RESET 4206 CONFIG_SPI_N25Q256A_RESET
4208 CONFIG_SPLASHIMAGE_GUARD 4207 CONFIG_SPLASHIMAGE_GUARD
4209 CONFIG_SPLASH_SCREEN 4208 CONFIG_SPLASH_SCREEN
4210 CONFIG_SPLASH_SCREEN_ALIGN 4209 CONFIG_SPLASH_SCREEN_ALIGN
4211 CONFIG_SPLASH_SOURCE 4210 CONFIG_SPLASH_SOURCE
4212 CONFIG_SPLL_FREQ 4211 CONFIG_SPLL_FREQ
4213 CONFIG_SPL_ 4212 CONFIG_SPL_
4214 CONFIG_SPL_ABORT_ON_RAW_IMAGE 4213 CONFIG_SPL_ABORT_ON_RAW_IMAGE
4215 CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC 4214 CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC
4216 CONFIG_SPL_ATMEL_SIZE 4215 CONFIG_SPL_ATMEL_SIZE
4217 CONFIG_SPL_BOARD_INIT 4216 CONFIG_SPL_BOARD_INIT
4218 CONFIG_SPL_BOARD_LOAD_IMAGE 4217 CONFIG_SPL_BOARD_LOAD_IMAGE
4219 CONFIG_SPL_BOOTROM_SAVE 4218 CONFIG_SPL_BOOTROM_SAVE
4220 CONFIG_SPL_BOOT_DEVICE 4219 CONFIG_SPL_BOOT_DEVICE
4221 CONFIG_SPL_BSS_MAX_SIZE 4220 CONFIG_SPL_BSS_MAX_SIZE
4222 CONFIG_SPL_BSS_START_ADDR 4221 CONFIG_SPL_BSS_START_ADDR
4223 CONFIG_SPL_CMT 4222 CONFIG_SPL_CMT
4224 CONFIG_SPL_CMT_DEBUG 4223 CONFIG_SPL_CMT_DEBUG
4225 CONFIG_SPL_COMMON_INIT_DDR 4224 CONFIG_SPL_COMMON_INIT_DDR
4226 CONFIG_SPL_CONSOLE 4225 CONFIG_SPL_CONSOLE
4227 CONFIG_SPL_DISPLAY_PRINT 4226 CONFIG_SPL_DISPLAY_PRINT
4228 CONFIG_SPL_ETH_DEVICE 4227 CONFIG_SPL_ETH_DEVICE
4229 CONFIG_SPL_FLUSH_IMAGE 4228 CONFIG_SPL_FLUSH_IMAGE
4230 CONFIG_SPL_FRAMEWORK 4229 CONFIG_SPL_FRAMEWORK
4231 CONFIG_SPL_FSL_PBL 4230 CONFIG_SPL_FSL_PBL
4232 CONFIG_SPL_FS_LOAD_ARGS_NAME 4231 CONFIG_SPL_FS_LOAD_ARGS_NAME
4233 CONFIG_SPL_FS_LOAD_KERNEL_NAME 4232 CONFIG_SPL_FS_LOAD_KERNEL_NAME
4234 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME 4233 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME
4235 CONFIG_SPL_GD_ADDR 4234 CONFIG_SPL_GD_ADDR
4236 CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER 4235 CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER
4237 CONFIG_SPL_INIT_MINIMAL 4236 CONFIG_SPL_INIT_MINIMAL
4238 CONFIG_SPL_JR0_LIODN_NS 4237 CONFIG_SPL_JR0_LIODN_NS
4239 CONFIG_SPL_JR0_LIODN_S 4238 CONFIG_SPL_JR0_LIODN_S
4240 CONFIG_SPL_LDSCRIPT 4239 CONFIG_SPL_LDSCRIPT
4241 CONFIG_SPL_LOAD_FIT_ADDRESS 4240 CONFIG_SPL_LOAD_FIT_ADDRESS
4242 CONFIG_SPL_MAX_FOOTPRINT 4241 CONFIG_SPL_MAX_FOOTPRINT
4243 CONFIG_SPL_MAX_PEB_SIZE 4242 CONFIG_SPL_MAX_PEB_SIZE
4244 CONFIG_SPL_MAX_SIZE 4243 CONFIG_SPL_MAX_SIZE
4245 CONFIG_SPL_MMC_BOOT 4244 CONFIG_SPL_MMC_BOOT
4246 CONFIG_SPL_MMC_LOAD 4245 CONFIG_SPL_MMC_LOAD
4247 CONFIG_SPL_MMC_MINIMAL 4246 CONFIG_SPL_MMC_MINIMAL
4248 CONFIG_SPL_MPC83XX_WAIT_FOR_NAND 4247 CONFIG_SPL_MPC83XX_WAIT_FOR_NAND
4249 CONFIG_SPL_MXS_PSWITCH_WAIT 4248 CONFIG_SPL_MXS_PSWITCH_WAIT
4250 CONFIG_SPL_NAND_AM33XX_BCH 4249 CONFIG_SPL_NAND_AM33XX_BCH
4251 CONFIG_SPL_NAND_BASE 4250 CONFIG_SPL_NAND_BASE
4252 CONFIG_SPL_NAND_BOOT 4251 CONFIG_SPL_NAND_BOOT
4253 CONFIG_SPL_NAND_DRIVERS 4252 CONFIG_SPL_NAND_DRIVERS
4254 CONFIG_SPL_NAND_ECC 4253 CONFIG_SPL_NAND_ECC
4255 CONFIG_SPL_NAND_INIT 4254 CONFIG_SPL_NAND_INIT
4256 CONFIG_SPL_NAND_LOAD 4255 CONFIG_SPL_NAND_LOAD
4257 CONFIG_SPL_NAND_MINIMAL 4256 CONFIG_SPL_NAND_MINIMAL
4258 CONFIG_SPL_NAND_MXS 4257 CONFIG_SPL_NAND_MXS
4259 CONFIG_SPL_NAND_RAW_ONLY 4258 CONFIG_SPL_NAND_RAW_ONLY
4260 CONFIG_SPL_NAND_SIMPLE 4259 CONFIG_SPL_NAND_SIMPLE
4261 CONFIG_SPL_NAND_SOFTECC 4260 CONFIG_SPL_NAND_SOFTECC
4262 CONFIG_SPL_NAND_WORKSPACE 4261 CONFIG_SPL_NAND_WORKSPACE
4263 CONFIG_SPL_NO_CPU_SUPPORT_CODE 4262 CONFIG_SPL_NO_CPU_SUPPORT_CODE
4264 CONFIG_SPL_OMAP3_ID_NAND 4263 CONFIG_SPL_OMAP3_ID_NAND
4265 CONFIG_SPL_OS_BOOT 4264 CONFIG_SPL_OS_BOOT
4266 CONFIG_SPL_PAD_TO 4265 CONFIG_SPL_PAD_TO
4267 CONFIG_SPL_PANIC_ON_RAW_IMAGE 4266 CONFIG_SPL_PANIC_ON_RAW_IMAGE
4268 CONFIG_SPL_PBL_PAD 4267 CONFIG_SPL_PBL_PAD
4269 CONFIG_SPL_PPAACT_ADDR 4268 CONFIG_SPL_PPAACT_ADDR
4270 CONFIG_SPL_RAM_DEVICE 4269 CONFIG_SPL_RAM_DEVICE
4271 CONFIG_SPL_RELOC_MALLOC_ADDR 4270 CONFIG_SPL_RELOC_MALLOC_ADDR
4272 CONFIG_SPL_RELOC_MALLOC_SIZE 4271 CONFIG_SPL_RELOC_MALLOC_SIZE
4273 CONFIG_SPL_RELOC_STACK 4272 CONFIG_SPL_RELOC_STACK
4274 CONFIG_SPL_RELOC_STACK_SIZE 4273 CONFIG_SPL_RELOC_STACK_SIZE
4275 CONFIG_SPL_RELOC_TEXT_BASE 4274 CONFIG_SPL_RELOC_TEXT_BASE
4276 CONFIG_SPL_SATA_BOOT_DEVICE 4275 CONFIG_SPL_SATA_BOOT_DEVICE
4277 CONFIG_SPL_SIZE 4276 CONFIG_SPL_SIZE
4278 CONFIG_SPL_SKIP_RELOCATE 4277 CONFIG_SPL_SKIP_RELOCATE
4279 CONFIG_SPL_SPAACT_ADDR 4278 CONFIG_SPL_SPAACT_ADDR
4280 CONFIG_SPL_SPI_BOOT 4279 CONFIG_SPL_SPI_BOOT
4281 CONFIG_SPL_SPI_FLASH_MINIMAL 4280 CONFIG_SPL_SPI_FLASH_MINIMAL
4282 CONFIG_SPL_SPI_LOAD 4281 CONFIG_SPL_SPI_LOAD
4283 CONFIG_SPL_STACK 4282 CONFIG_SPL_STACK
4284 CONFIG_SPL_STACK_ADDR 4283 CONFIG_SPL_STACK_ADDR
4285 CONFIG_SPL_STACK_SIZE 4284 CONFIG_SPL_STACK_SIZE
4286 CONFIG_SPL_START_S_PATH 4285 CONFIG_SPL_START_S_PATH
4287 CONFIG_SPL_TARGET 4286 CONFIG_SPL_TARGET
4288 CONFIG_SPL_TEXT_BASE 4287 CONFIG_SPL_TEXT_BASE
4289 CONFIG_SPL_UBI 4288 CONFIG_SPL_UBI
4290 CONFIG_SPL_UBI_INFO_ADDR 4289 CONFIG_SPL_UBI_INFO_ADDR
4291 CONFIG_SPL_UBI_LEB_START 4290 CONFIG_SPL_UBI_LEB_START
4292 CONFIG_SPL_UBI_LOAD_ARGS_ID 4291 CONFIG_SPL_UBI_LOAD_ARGS_ID
4293 CONFIG_SPL_UBI_LOAD_KERNEL_ID 4292 CONFIG_SPL_UBI_LOAD_KERNEL_ID
4294 CONFIG_SPL_UBI_LOAD_MONITOR_ID 4293 CONFIG_SPL_UBI_LOAD_MONITOR_ID
4295 CONFIG_SPL_UBI_MAX_PEBS 4294 CONFIG_SPL_UBI_MAX_PEBS
4296 CONFIG_SPL_UBI_MAX_PEB_SIZE 4295 CONFIG_SPL_UBI_MAX_PEB_SIZE
4297 CONFIG_SPL_UBI_MAX_VOL_LEBS 4296 CONFIG_SPL_UBI_MAX_VOL_LEBS
4298 CONFIG_SPL_UBI_PEB_OFFSET 4297 CONFIG_SPL_UBI_PEB_OFFSET
4299 CONFIG_SPL_UBI_VID_OFFSET 4298 CONFIG_SPL_UBI_VID_OFFSET
4300 CONFIG_SPL_UBI_VOL_IDS 4299 CONFIG_SPL_UBI_VOL_IDS
4301 CONFIG_SPL_UBOOT_KEY_HASH 4300 CONFIG_SPL_UBOOT_KEY_HASH
4302 CONFIG_SRAM_BASE 4301 CONFIG_SRAM_BASE
4303 CONFIG_SRAM_SIZE 4302 CONFIG_SRAM_SIZE
4304 CONFIG_SRIO1 4303 CONFIG_SRIO1
4305 CONFIG_SRIO2 4304 CONFIG_SRIO2
4306 CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET 4305 CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET
4307 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1 4306 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1
4308 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2 4307 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2
4309 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS 4308 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS
4310 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE 4309 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE
4311 CONFIG_SRIO_PCIE_BOOT_MASTER 4310 CONFIG_SRIO_PCIE_BOOT_MASTER
4312 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK 4311 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK
4313 CONFIG_SRIO_PCIE_BOOT_SLAVE 4312 CONFIG_SRIO_PCIE_BOOT_SLAVE
4314 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS 4313 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS
4315 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS 4314 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS
4316 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE 4315 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE
4317 CONFIG_SSD_BR_PRELIM 4316 CONFIG_SSD_BR_PRELIM
4318 CONFIG_SSD_OR_PRELIM 4317 CONFIG_SSD_OR_PRELIM
4319 CONFIG_SSE2 4318 CONFIG_SSE2
4320 CONFIG_SSI1_FREQ 4319 CONFIG_SSI1_FREQ
4321 CONFIG_SSI2_FREQ 4320 CONFIG_SSI2_FREQ
4322 CONFIG_SSP1_BASE 4321 CONFIG_SSP1_BASE
4323 CONFIG_SSP2_BASE 4322 CONFIG_SSP2_BASE
4324 CONFIG_SSP3_BASE 4323 CONFIG_SSP3_BASE
4325 CONFIG_STACKBASE 4324 CONFIG_STACKBASE
4326 CONFIG_STACKSIZE 4325 CONFIG_STACKSIZE
4327 CONFIG_STACKSIZE_FIQ 4326 CONFIG_STACKSIZE_FIQ
4328 CONFIG_STACKSIZE_IRQ 4327 CONFIG_STACKSIZE_IRQ
4329 CONFIG_STAMP_CF 4328 CONFIG_STAMP_CF
4330 CONFIG_STANDALONE_LOAD_ADDR 4329 CONFIG_STANDALONE_LOAD_ADDR
4331 CONFIG_STATIC_BOARD_REV 4330 CONFIG_STATIC_BOARD_REV
4332 CONFIG_STATIC_RELA 4331 CONFIG_STATIC_RELA
4333 CONFIG_STATUSLED 4332 CONFIG_STATUSLED
4334 CONFIG_STATUS_LED 4333 CONFIG_STATUS_LED
4335 CONFIG_STD_DEVICES_SETTINGS 4334 CONFIG_STD_DEVICES_SETTINGS
4336 CONFIG_STK52XX 4335 CONFIG_STK52XX
4337 CONFIG_STK52XX_REV100 4336 CONFIG_STK52XX_REV100
4338 CONFIG_STM32F4DISCOVERY 4337 CONFIG_STM32F4DISCOVERY
4339 CONFIG_STM32X7_SERIAL 4338 CONFIG_STM32X7_SERIAL
4340 CONFIG_STM32_FLASH 4339 CONFIG_STM32_FLASH
4341 CONFIG_STM32_GPIO 4340 CONFIG_STM32_GPIO
4342 CONFIG_STM32_HSE_HZ 4341 CONFIG_STM32_HSE_HZ
4343 CONFIG_STM32_HZ 4342 CONFIG_STM32_HZ
4344 CONFIG_STM32_SERIAL 4343 CONFIG_STM32_SERIAL
4345 CONFIG_STORAGE_EMMC 4344 CONFIG_STORAGE_EMMC
4346 CONFIG_STRESS 4345 CONFIG_STRESS
4347 CONFIG_STRIDER 4346 CONFIG_STRIDER
4348 CONFIG_STRIDER_CON 4347 CONFIG_STRIDER_CON
4349 CONFIG_STRIDER_CON_DP 4348 CONFIG_STRIDER_CON_DP
4350 CONFIG_STRIDER_CPU 4349 CONFIG_STRIDER_CPU
4351 CONFIG_STRIDER_CPU_DP 4350 CONFIG_STRIDER_CPU_DP
4352 CONFIG_STRIDER_FANS 4351 CONFIG_STRIDER_FANS
4353 CONFIG_STUART 4352 CONFIG_STUART
4354 CONFIG_STV0991 4353 CONFIG_STV0991
4355 CONFIG_STV0991_HZ 4354 CONFIG_STV0991_HZ
4356 CONFIG_STV0991_HZ_CLOCK 4355 CONFIG_STV0991_HZ_CLOCK
4357 CONFIG_ST_SMI 4356 CONFIG_ST_SMI
4358 CONFIG_SUN4 4357 CONFIG_SUN4
4359 CONFIG_SUNXI 4358 CONFIG_SUNXI
4360 CONFIG_SUNXI_AHCI 4359 CONFIG_SUNXI_AHCI
4361 CONFIG_SUNXI_EMAC 4360 CONFIG_SUNXI_EMAC
4362 CONFIG_SUNXI_GMAC 4361 CONFIG_SUNXI_GMAC
4363 CONFIG_SUNXI_GPIO 4362 CONFIG_SUNXI_GPIO
4364 CONFIG_SUNXI_MAX_FB_SIZE 4363 CONFIG_SUNXI_MAX_FB_SIZE
4365 CONFIG_SUNXI_USB_PHYS 4364 CONFIG_SUNXI_USB_PHYS
4366 CONFIG_SUPERH_ON_CHIP_R8A66597 4365 CONFIG_SUPERH_ON_CHIP_R8A66597
4367 CONFIG_SUPPORT_EMMC_BOOT 4366 CONFIG_SUPPORT_EMMC_BOOT
4368 CONFIG_SUPPORT_EMMC_RPMB 4367 CONFIG_SUPPORT_EMMC_RPMB
4369 CONFIG_SUPPORT_RAW_INITRD 4368 CONFIG_SUPPORT_RAW_INITRD
4370 CONFIG_SUPPORT_VFAT 4369 CONFIG_SUPPORT_VFAT
4371 CONFIG_SUVD3 4370 CONFIG_SUVD3
4372 CONFIG_SX151X_GPIO_COUNT_8 4371 CONFIG_SX151X_GPIO_COUNT_8
4373 CONFIG_SX151X_SPI_BUS 4372 CONFIG_SX151X_SPI_BUS
4374 CONFIG_SXNI855T 4373 CONFIG_SXNI855T
4375 CONFIG_SYSCOUNTER_TIMER 4374 CONFIG_SYSCOUNTER_TIMER
4376 CONFIG_SYSFLAGS_ADDR 4375 CONFIG_SYSFLAGS_ADDR
4377 CONFIG_SYSFS 4376 CONFIG_SYSFS
4378 CONFIG_SYSMGR_ISWGRP_HANDOFF 4377 CONFIG_SYSMGR_ISWGRP_HANDOFF
4379 CONFIG_SYSTEMACE 4378 CONFIG_SYSTEMACE
4380 CONFIG_SYS_33MHZ 4379 CONFIG_SYS_33MHZ
4381 CONFIG_SYS_405_UART_ERRATA_59 4380 CONFIG_SYS_405_UART_ERRATA_59
4382 CONFIG_SYS_460GT_SRIO_ERRATA_1 4381 CONFIG_SYS_460GT_SRIO_ERRATA_1
4383 CONFIG_SYS_4xx_CHIP_21_405EX_NO_SECURITY 4382 CONFIG_SYS_4xx_CHIP_21_405EX_NO_SECURITY
4384 CONFIG_SYS_4xx_CHIP_21_405EX_SECURITY 4383 CONFIG_SYS_4xx_CHIP_21_405EX_SECURITY
4385 CONFIG_SYS_4xx_CHIP_21_405EXr_NO_SECURITY 4384 CONFIG_SYS_4xx_CHIP_21_405EXr_NO_SECURITY
4386 CONFIG_SYS_4xx_CHIP_21_405EXr_SECURITY 4385 CONFIG_SYS_4xx_CHIP_21_405EXr_SECURITY
4387 CONFIG_SYS_4xx_CHIP_21_ERRATA 4386 CONFIG_SYS_4xx_CHIP_21_ERRATA
4388 CONFIG_SYS_4xx_GPIO_TABLE 4387 CONFIG_SYS_4xx_GPIO_TABLE
4389 CONFIG_SYS_4xx_RESET_TYPE 4388 CONFIG_SYS_4xx_RESET_TYPE
4390 CONFIG_SYS_64BIT 4389 CONFIG_SYS_64BIT
4391 CONFIG_SYS_64BIT_LBA 4390 CONFIG_SYS_64BIT_LBA
4392 CONFIG_SYS_64BIT_VSPRINTF 4391 CONFIG_SYS_64BIT_VSPRINTF
4393 CONFIG_SYS_66MHZ 4392 CONFIG_SYS_66MHZ
4394 CONFIG_SYS_8313ERDB_BROKEN_PMC 4393 CONFIG_SYS_8313ERDB_BROKEN_PMC
4395 CONFIG_SYS_83XX_DDR_USES_CS0 4394 CONFIG_SYS_83XX_DDR_USES_CS0
4396 CONFIG_SYS_8XX_XIN 4395 CONFIG_SYS_8XX_XIN
4397 CONFIG_SYS_8xx_CPUCLK_MAX 4396 CONFIG_SYS_8xx_CPUCLK_MAX
4398 CONFIG_SYS_8xx_CPUCLK_MIN 4397 CONFIG_SYS_8xx_CPUCLK_MIN
4399 CONFIG_SYS_ACE_BASE 4398 CONFIG_SYS_ACE_BASE
4400 CONFIG_SYS_ACE_BASE_PHYS_H 4399 CONFIG_SYS_ACE_BASE_PHYS_H
4401 CONFIG_SYS_ACE_BASE_PHYS_L 4400 CONFIG_SYS_ACE_BASE_PHYS_L
4402 CONFIG_SYS_ACR_APARK 4401 CONFIG_SYS_ACR_APARK
4403 CONFIG_SYS_ACR_PARKM 4402 CONFIG_SYS_ACR_PARKM
4404 CONFIG_SYS_ACR_PIPE_DEP 4403 CONFIG_SYS_ACR_PIPE_DEP
4405 CONFIG_SYS_ACR_RPTCNT 4404 CONFIG_SYS_ACR_RPTCNT
4406 CONFIG_SYS_ADDRESS_MAP_A 4405 CONFIG_SYS_ADDRESS_MAP_A
4407 CONFIG_SYS_ADV7611_I2C 4406 CONFIG_SYS_ADV7611_I2C
4408 CONFIG_SYS_AHB_BASE 4407 CONFIG_SYS_AHB_BASE
4409 CONFIG_SYS_ALE_MASK 4408 CONFIG_SYS_ALE_MASK
4410 CONFIG_SYS_ALLOC_DPRAM 4409 CONFIG_SYS_ALLOC_DPRAM
4411 CONFIG_SYS_ALT_BOOT 4410 CONFIG_SYS_ALT_BOOT
4412 CONFIG_SYS_ALT_FLASH 4411 CONFIG_SYS_ALT_FLASH
4413 CONFIG_SYS_ALT_MEMTEST 4412 CONFIG_SYS_ALT_MEMTEST
4414 CONFIG_SYS_AMASK0 4413 CONFIG_SYS_AMASK0
4415 CONFIG_SYS_AMASK0_FINAL 4414 CONFIG_SYS_AMASK0_FINAL
4416 CONFIG_SYS_AMASK1 4415 CONFIG_SYS_AMASK1
4417 CONFIG_SYS_AMASK1_FINAL 4416 CONFIG_SYS_AMASK1_FINAL
4418 CONFIG_SYS_AMASK2 4417 CONFIG_SYS_AMASK2
4419 CONFIG_SYS_AMASK2_FINAL 4418 CONFIG_SYS_AMASK2_FINAL
4420 CONFIG_SYS_AMASK3 4419 CONFIG_SYS_AMASK3
4421 CONFIG_SYS_AMASK3_FINAL 4420 CONFIG_SYS_AMASK3_FINAL
4422 CONFIG_SYS_AMASK4 4421 CONFIG_SYS_AMASK4
4423 CONFIG_SYS_AMASK5 4422 CONFIG_SYS_AMASK5
4424 CONFIG_SYS_AMASK6 4423 CONFIG_SYS_AMASK6
4425 CONFIG_SYS_AMASK7 4424 CONFIG_SYS_AMASK7
4426 CONFIG_SYS_APP1_BASE 4425 CONFIG_SYS_APP1_BASE
4427 CONFIG_SYS_APP1_SIZE 4426 CONFIG_SYS_APP1_SIZE
4428 CONFIG_SYS_APP2_BASE 4427 CONFIG_SYS_APP2_BASE
4429 CONFIG_SYS_APP2_SIZE 4428 CONFIG_SYS_APP2_SIZE
4430 CONFIG_SYS_ARCH_TIMER 4429 CONFIG_SYS_ARCH_TIMER
4431 CONFIG_SYS_ARIA_FPGA_BASE 4430 CONFIG_SYS_ARIA_FPGA_BASE
4432 CONFIG_SYS_ARIA_FPGA_SIZE 4431 CONFIG_SYS_ARIA_FPGA_SIZE
4433 CONFIG_SYS_ARIA_SRAM_BASE 4432 CONFIG_SYS_ARIA_SRAM_BASE
4434 CONFIG_SYS_ARIA_SRAM_SIZE 4433 CONFIG_SYS_ARIA_SRAM_SIZE
4435 CONFIG_SYS_ARM_CACHE_WRITETHROUGH 4434 CONFIG_SYS_ARM_CACHE_WRITETHROUGH
4436 CONFIG_SYS_AT91_CPU_NAME 4435 CONFIG_SYS_AT91_CPU_NAME
4437 CONFIG_SYS_AT91_MAIN_CLOCK 4436 CONFIG_SYS_AT91_MAIN_CLOCK
4438 CONFIG_SYS_AT91_PLLA 4437 CONFIG_SYS_AT91_PLLA
4439 CONFIG_SYS_AT91_PLLB 4438 CONFIG_SYS_AT91_PLLB
4440 CONFIG_SYS_AT91_SLOW_CLOCK 4439 CONFIG_SYS_AT91_SLOW_CLOCK
4441 CONFIG_SYS_ATA_ALT_OFFSET 4440 CONFIG_SYS_ATA_ALT_OFFSET
4442 CONFIG_SYS_ATA_BASE_ADDR 4441 CONFIG_SYS_ATA_BASE_ADDR
4443 CONFIG_SYS_ATA_CS_ON_I2C2 4442 CONFIG_SYS_ATA_CS_ON_I2C2
4444 CONFIG_SYS_ATA_CS_ON_TIMER01 4443 CONFIG_SYS_ATA_CS_ON_TIMER01
4445 CONFIG_SYS_ATA_DATA_OFFSET 4444 CONFIG_SYS_ATA_DATA_OFFSET
4446 CONFIG_SYS_ATA_IDE0_OFFSET 4445 CONFIG_SYS_ATA_IDE0_OFFSET
4447 CONFIG_SYS_ATA_IDE1_OFFSET 4446 CONFIG_SYS_ATA_IDE1_OFFSET
4448 CONFIG_SYS_ATA_PORT_ADDR 4447 CONFIG_SYS_ATA_PORT_ADDR
4449 CONFIG_SYS_ATA_REG_OFFSET 4448 CONFIG_SYS_ATA_REG_OFFSET
4450 CONFIG_SYS_ATA_STRIDE 4449 CONFIG_SYS_ATA_STRIDE
4451 CONFIG_SYS_ATI_REV_A11 4450 CONFIG_SYS_ATI_REV_A11
4452 CONFIG_SYS_ATI_REV_A12 4451 CONFIG_SYS_ATI_REV_A12
4453 CONFIG_SYS_ATI_REV_A13 4452 CONFIG_SYS_ATI_REV_A13
4454 CONFIG_SYS_ATI_REV_ID_MASK 4453 CONFIG_SYS_ATI_REV_ID_MASK
4455 CONFIG_SYS_ATMEL_BASE 4454 CONFIG_SYS_ATMEL_BASE
4456 CONFIG_SYS_ATMEL_BOOT 4455 CONFIG_SYS_ATMEL_BOOT
4457 CONFIG_SYS_ATMEL_CPU_NAME 4456 CONFIG_SYS_ATMEL_CPU_NAME
4458 CONFIG_SYS_ATMEL_REGION 4457 CONFIG_SYS_ATMEL_REGION
4459 CONFIG_SYS_ATMEL_SECT 4458 CONFIG_SYS_ATMEL_SECT
4460 CONFIG_SYS_ATMEL_SECTSZ 4459 CONFIG_SYS_ATMEL_SECTSZ
4461 CONFIG_SYS_ATMEL_TOTALSECT 4460 CONFIG_SYS_ATMEL_TOTALSECT
4462 CONFIG_SYS_AUTOLOAD 4461 CONFIG_SYS_AUTOLOAD
4463 CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION 4462 CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
4464 CONFIG_SYS_AUXCORE_BOOTDATA 4463 CONFIG_SYS_AUXCORE_BOOTDATA
4465 CONFIG_SYS_BARGSIZE 4464 CONFIG_SYS_BARGSIZE
4466 CONFIG_SYS_BASE_BAUD 4465 CONFIG_SYS_BASE_BAUD
4467 CONFIG_SYS_BAUDRATE_TABLE 4466 CONFIG_SYS_BAUDRATE_TABLE
4468 CONFIG_SYS_BCR 4467 CONFIG_SYS_BCR
4469 CONFIG_SYS_BCR_60x 4468 CONFIG_SYS_BCR_60x
4470 CONFIG_SYS_BCR_SINGLE 4469 CONFIG_SYS_BCR_SINGLE
4471 CONFIG_SYS_BCSR 4470 CONFIG_SYS_BCSR
4472 CONFIG_SYS_BCSR3_PCIE 4471 CONFIG_SYS_BCSR3_PCIE
4473 CONFIG_SYS_BCSR5_PCI66EN 4472 CONFIG_SYS_BCSR5_PCI66EN
4474 CONFIG_SYS_BCSR_ADDR 4473 CONFIG_SYS_BCSR_ADDR
4475 CONFIG_SYS_BCSR_BASE 4474 CONFIG_SYS_BCSR_BASE
4476 CONFIG_SYS_BCSR_BASE_PHYS 4475 CONFIG_SYS_BCSR_BASE_PHYS
4477 CONFIG_SYS_BCSR_SIZE 4476 CONFIG_SYS_BCSR_SIZE
4478 CONFIG_SYS_BD_INFO_ADDR 4477 CONFIG_SYS_BD_INFO_ADDR
4479 CONFIG_SYS_BD_REV 4478 CONFIG_SYS_BD_REV
4480 CONFIG_SYS_BFTIC3_BASE 4479 CONFIG_SYS_BFTIC3_BASE
4481 CONFIG_SYS_BFTIC3_SIZE 4480 CONFIG_SYS_BFTIC3_SIZE
4482 CONFIG_SYS_BITBANG_PHY_PORT 4481 CONFIG_SYS_BITBANG_PHY_PORT
4483 CONFIG_SYS_BITBANG_PHY_PORTS 4482 CONFIG_SYS_BITBANG_PHY_PORTS
4484 CONFIG_SYS_BLACK_IN_WRITE 4483 CONFIG_SYS_BLACK_IN_WRITE
4485 CONFIG_SYS_BMAN_CENA_BASE 4484 CONFIG_SYS_BMAN_CENA_BASE
4486 CONFIG_SYS_BMAN_CENA_SIZE 4485 CONFIG_SYS_BMAN_CENA_SIZE
4487 CONFIG_SYS_BMAN_CINH_BASE 4486 CONFIG_SYS_BMAN_CINH_BASE
4488 CONFIG_SYS_BMAN_CINH_SIZE 4487 CONFIG_SYS_BMAN_CINH_SIZE
4489 CONFIG_SYS_BMAN_MEM_BASE 4488 CONFIG_SYS_BMAN_MEM_BASE
4490 CONFIG_SYS_BMAN_MEM_PHYS 4489 CONFIG_SYS_BMAN_MEM_PHYS
4491 CONFIG_SYS_BMAN_MEM_SIZE 4490 CONFIG_SYS_BMAN_MEM_SIZE
4492 CONFIG_SYS_BMAN_NUM_PORTALS 4491 CONFIG_SYS_BMAN_NUM_PORTALS
4493 CONFIG_SYS_BMAN_SP_CENA_SIZE 4492 CONFIG_SYS_BMAN_SP_CENA_SIZE
4494 CONFIG_SYS_BMAN_SP_CINH_SIZE 4493 CONFIG_SYS_BMAN_SP_CINH_SIZE
4495 CONFIG_SYS_BMAN_SWP_ISDR_REG 4494 CONFIG_SYS_BMAN_SWP_ISDR_REG
4496 CONFIG_SYS_BOARD_NAME 4495 CONFIG_SYS_BOARD_NAME
4497 CONFIG_SYS_BOARD_OMAP3_HA 4496 CONFIG_SYS_BOARD_OMAP3_HA
4498 CONFIG_SYS_BOARD_VERSION 4497 CONFIG_SYS_BOARD_VERSION
4499 CONFIG_SYS_BOOK3E_HV 4498 CONFIG_SYS_BOOK3E_HV
4500 CONFIG_SYS_BOOTCOUNT_ADDR 4499 CONFIG_SYS_BOOTCOUNT_ADDR
4501 CONFIG_SYS_BOOTCOUNT_BE 4500 CONFIG_SYS_BOOTCOUNT_BE
4502 CONFIG_SYS_BOOTCOUNT_LE 4501 CONFIG_SYS_BOOTCOUNT_LE
4503 CONFIG_SYS_BOOTCOUNT_SINGLEWORD 4502 CONFIG_SYS_BOOTCOUNT_SINGLEWORD
4504 CONFIG_SYS_BOOTCS_CFG 4503 CONFIG_SYS_BOOTCS_CFG
4505 CONFIG_SYS_BOOTCS_SIZE 4504 CONFIG_SYS_BOOTCS_SIZE
4506 CONFIG_SYS_BOOTCS_START 4505 CONFIG_SYS_BOOTCS_START
4507 CONFIG_SYS_BOOTFILE 4506 CONFIG_SYS_BOOTFILE
4508 CONFIG_SYS_BOOTFILE_PREFIX 4507 CONFIG_SYS_BOOTFILE_PREFIX
4509 CONFIG_SYS_BOOTMAPSZ 4508 CONFIG_SYS_BOOTMAPSZ
4510 CONFIG_SYS_BOOTM_LEN 4509 CONFIG_SYS_BOOTM_LEN
4511 CONFIG_SYS_BOOTPARAMS_LEN 4510 CONFIG_SYS_BOOTPARAMS_LEN
4512 CONFIG_SYS_BOOTSZ 4511 CONFIG_SYS_BOOTSZ
4513 CONFIG_SYS_BOOT_BASE_ADDR 4512 CONFIG_SYS_BOOT_BASE_ADDR
4514 CONFIG_SYS_BOOT_BLOCK 4513 CONFIG_SYS_BOOT_BLOCK
4515 CONFIG_SYS_BOOT_EEPROM_PAGE_WRITE_BITS 4514 CONFIG_SYS_BOOT_EEPROM_PAGE_WRITE_BITS
4516 CONFIG_SYS_BOOT_GET_CMDLINE 4515 CONFIG_SYS_BOOT_GET_CMDLINE
4517 CONFIG_SYS_BOOT_GET_KBD 4516 CONFIG_SYS_BOOT_GET_KBD
4518 CONFIG_SYS_BOOT_RAMDISK_HIGH 4517 CONFIG_SYS_BOOT_RAMDISK_HIGH
4519 CONFIG_SYS_BOOT_SPINOR 4518 CONFIG_SYS_BOOT_SPINOR
4520 CONFIG_SYS_BR0_64M 4519 CONFIG_SYS_BR0_64M
4521 CONFIG_SYS_BR0_8M 4520 CONFIG_SYS_BR0_8M
4522 CONFIG_SYS_BR0_PRELIM 4521 CONFIG_SYS_BR0_PRELIM
4523 CONFIG_SYS_BR10_PRELIM 4522 CONFIG_SYS_BR10_PRELIM
4524 CONFIG_SYS_BR11_PRELIM 4523 CONFIG_SYS_BR11_PRELIM
4525 CONFIG_SYS_BR1_PRELIM 4524 CONFIG_SYS_BR1_PRELIM
4526 CONFIG_SYS_BR2_PRELIM 4525 CONFIG_SYS_BR2_PRELIM
4527 CONFIG_SYS_BR3_CAN 4526 CONFIG_SYS_BR3_CAN
4528 CONFIG_SYS_BR3_PRELIM 4527 CONFIG_SYS_BR3_PRELIM
4529 CONFIG_SYS_BR4_PRELIM 4528 CONFIG_SYS_BR4_PRELIM
4530 CONFIG_SYS_BR5_ISP1362 4529 CONFIG_SYS_BR5_ISP1362
4531 CONFIG_SYS_BR5_PRELIM 4530 CONFIG_SYS_BR5_PRELIM
4532 CONFIG_SYS_BR6_64M 4531 CONFIG_SYS_BR6_64M
4533 CONFIG_SYS_BR6_8M 4532 CONFIG_SYS_BR6_8M
4534 CONFIG_SYS_BR6_PRELIM 4533 CONFIG_SYS_BR6_PRELIM
4535 CONFIG_SYS_BR7_PRELIM 4534 CONFIG_SYS_BR7_PRELIM
4536 CONFIG_SYS_BR8_PRELIM 4535 CONFIG_SYS_BR8_PRELIM
4537 CONFIG_SYS_BR9_PRELIM 4536 CONFIG_SYS_BR9_PRELIM
4538 CONFIG_SYS_BRGCLK_PRESCALE 4537 CONFIG_SYS_BRGCLK_PRESCALE
4539 CONFIG_SYS_BRIGHTNESS 4538 CONFIG_SYS_BRIGHTNESS
4540 CONFIG_SYS_BUSCLK 4539 CONFIG_SYS_BUSCLK
4541 CONFIG_SYS_CACHELINE_SHIFT 4540 CONFIG_SYS_CACHELINE_SHIFT
4542 CONFIG_SYS_CACHE_ACR0 4541 CONFIG_SYS_CACHE_ACR0
4543 CONFIG_SYS_CACHE_ACR1 4542 CONFIG_SYS_CACHE_ACR1
4544 CONFIG_SYS_CACHE_ACR2 4543 CONFIG_SYS_CACHE_ACR2
4545 CONFIG_SYS_CACHE_ACR3 4544 CONFIG_SYS_CACHE_ACR3
4546 CONFIG_SYS_CACHE_ACR4 4545 CONFIG_SYS_CACHE_ACR4
4547 CONFIG_SYS_CACHE_ACR5 4546 CONFIG_SYS_CACHE_ACR5
4548 CONFIG_SYS_CACHE_ACR6 4547 CONFIG_SYS_CACHE_ACR6
4549 CONFIG_SYS_CACHE_ACR7 4548 CONFIG_SYS_CACHE_ACR7
4550 CONFIG_SYS_CACHE_DCACR 4549 CONFIG_SYS_CACHE_DCACR
4551 CONFIG_SYS_CACHE_ICACR 4550 CONFIG_SYS_CACHE_ICACR
4552 CONFIG_SYS_CACHE_STASHING 4551 CONFIG_SYS_CACHE_STASHING
4553 CONFIG_SYS_CADMUS_BASE_REG 4552 CONFIG_SYS_CADMUS_BASE_REG
4554 CONFIG_SYS_CAN_BASE 4553 CONFIG_SYS_CAN_BASE
4555 CONFIG_SYS_CAN_OR_AM 4554 CONFIG_SYS_CAN_OR_AM
4556 CONFIG_SYS_CBSIZE 4555 CONFIG_SYS_CBSIZE
4557 CONFIG_SYS_CCCR 4556 CONFIG_SYS_CCCR
4558 CONFIG_SYS_CCI400_ADDR 4557 CONFIG_SYS_CCI400_ADDR
4559 CONFIG_SYS_CCSRBAR 4558 CONFIG_SYS_CCSRBAR
4560 CONFIG_SYS_CCSRBAR_DEFAULT 4559 CONFIG_SYS_CCSRBAR_DEFAULT
4561 CONFIG_SYS_CCSRBAR_PHYS 4560 CONFIG_SYS_CCSRBAR_PHYS
4562 CONFIG_SYS_CCSRBAR_PHYS_HIGH 4561 CONFIG_SYS_CCSRBAR_PHYS_HIGH
4563 CONFIG_SYS_CCSRBAR_PHYS_LOW 4562 CONFIG_SYS_CCSRBAR_PHYS_LOW
4564 CONFIG_SYS_CCSR_DEFAULT_DBATL 4563 CONFIG_SYS_CCSR_DEFAULT_DBATL
4565 CONFIG_SYS_CCSR_DEFAULT_DBATU 4564 CONFIG_SYS_CCSR_DEFAULT_DBATU
4566 CONFIG_SYS_CCSR_DEFAULT_IBATL 4565 CONFIG_SYS_CCSR_DEFAULT_IBATL
4567 CONFIG_SYS_CCSR_DEFAULT_IBATU 4566 CONFIG_SYS_CCSR_DEFAULT_IBATU
4568 CONFIG_SYS_CCSR_DO_NOT_RELOCATE 4567 CONFIG_SYS_CCSR_DO_NOT_RELOCATE
4569 CONFIG_SYS_CFI_FLASH_CONFIG_REGS 4568 CONFIG_SYS_CFI_FLASH_CONFIG_REGS
4570 CONFIG_SYS_CFI_FLASH_STATUS_POLL 4569 CONFIG_SYS_CFI_FLASH_STATUS_POLL
4571 CONFIG_SYS_CF_BASE 4570 CONFIG_SYS_CF_BASE
4572 CONFIG_SYS_CF_INTC_REG1 4571 CONFIG_SYS_CF_INTC_REG1
4573 CONFIG_SYS_CF_SIZE 4572 CONFIG_SYS_CF_SIZE
4574 CONFIG_SYS_CH7301_I2C 4573 CONFIG_SYS_CH7301_I2C
4575 CONFIG_SYS_CKEN 4574 CONFIG_SYS_CKEN
4576 CONFIG_SYS_CLE_MASK 4575 CONFIG_SYS_CLE_MASK
4577 CONFIG_SYS_CLK 4576 CONFIG_SYS_CLK
4578 CONFIG_SYS_CLKDIV_CPU 4577 CONFIG_SYS_CLKDIV_CPU
4579 CONFIG_SYS_CLKDIV_HSB 4578 CONFIG_SYS_CLKDIV_HSB
4580 CONFIG_SYS_CLKDIV_PBA 4579 CONFIG_SYS_CLKDIV_PBA
4581 CONFIG_SYS_CLKDIV_PBB 4580 CONFIG_SYS_CLKDIV_PBB
4582 CONFIG_SYS_CLKTL_CBCDR 4581 CONFIG_SYS_CLKTL_CBCDR
4583 CONFIG_SYS_CLK_100 4582 CONFIG_SYS_CLK_100
4584 CONFIG_SYS_CLK_100_DDR_100 4583 CONFIG_SYS_CLK_100_DDR_100
4585 CONFIG_SYS_CLK_100_DDR_133 4584 CONFIG_SYS_CLK_100_DDR_133
4586 CONFIG_SYS_CLK_DIV 4585 CONFIG_SYS_CLK_DIV
4587 CONFIG_SYS_CLK_FREQ_C100 4586 CONFIG_SYS_CLK_FREQ_C100
4588 CONFIG_SYS_CLK_FREQ_C110 4587 CONFIG_SYS_CLK_FREQ_C110
4589 CONFIG_SYS_CMD_CONFIGURE 4588 CONFIG_SYS_CMD_CONFIGURE
4590 CONFIG_SYS_CMD_EL 4589 CONFIG_SYS_CMD_EL
4591 CONFIG_SYS_CMD_IAS 4590 CONFIG_SYS_CMD_IAS
4592 CONFIG_SYS_CMD_INT 4591 CONFIG_SYS_CMD_INT
4593 CONFIG_SYS_CMD_SUSPEND 4592 CONFIG_SYS_CMD_SUSPEND
4594 CONFIG_SYS_CMXFCR_MASK1 4593 CONFIG_SYS_CMXFCR_MASK1
4595 CONFIG_SYS_CMXFCR_MASK2 4594 CONFIG_SYS_CMXFCR_MASK2
4596 CONFIG_SYS_CMXFCR_MASK3 4595 CONFIG_SYS_CMXFCR_MASK3
4597 CONFIG_SYS_CMXFCR_VALUE1 4596 CONFIG_SYS_CMXFCR_VALUE1
4598 CONFIG_SYS_CMXFCR_VALUE2 4597 CONFIG_SYS_CMXFCR_VALUE2
4599 CONFIG_SYS_CMXFCR_VALUE3 4598 CONFIG_SYS_CMXFCR_VALUE3
4600 CONFIG_SYS_CMXSCR_VALUE 4599 CONFIG_SYS_CMXSCR_VALUE
4601 CONFIG_SYS_CONSOLE_ENV_OVERWRITE 4600 CONFIG_SYS_CONSOLE_ENV_OVERWRITE
4602 CONFIG_SYS_CONSOLE_INFO_QUIET 4601 CONFIG_SYS_CONSOLE_INFO_QUIET
4603 CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE 4602 CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
4604 CONFIG_SYS_CORE_SRAM 4603 CONFIG_SYS_CORE_SRAM
4605 CONFIG_SYS_CORE_SRAM_SIZE 4604 CONFIG_SYS_CORE_SRAM_SIZE
4606 CONFIG_SYS_CORTEX_R4 4605 CONFIG_SYS_CORTEX_R4
4607 CONFIG_SYS_CORTINA_FW_IN_MMC 4606 CONFIG_SYS_CORTINA_FW_IN_MMC
4608 CONFIG_SYS_CORTINA_FW_IN_NAND 4607 CONFIG_SYS_CORTINA_FW_IN_NAND
4609 CONFIG_SYS_CORTINA_FW_IN_NOR 4608 CONFIG_SYS_CORTINA_FW_IN_NOR
4610 CONFIG_SYS_CORTINA_FW_IN_REMOTE 4609 CONFIG_SYS_CORTINA_FW_IN_REMOTE
4611 CONFIG_SYS_CORTINA_FW_IN_SPIFLASH 4610 CONFIG_SYS_CORTINA_FW_IN_SPIFLASH
4612 CONFIG_SYS_CPC_REINIT_F 4611 CONFIG_SYS_CPC_REINIT_F
4613 CONFIG_SYS_CPLD 4612 CONFIG_SYS_CPLD
4614 CONFIG_SYS_CPLD_ADDR 4613 CONFIG_SYS_CPLD_ADDR
4615 CONFIG_SYS_CPLD_AMASK 4614 CONFIG_SYS_CPLD_AMASK
4616 CONFIG_SYS_CPLD_BASE 4615 CONFIG_SYS_CPLD_BASE
4617 CONFIG_SYS_CPLD_BASE_PHYS 4616 CONFIG_SYS_CPLD_BASE_PHYS
4618 CONFIG_SYS_CPLD_CSOR 4617 CONFIG_SYS_CPLD_CSOR
4619 CONFIG_SYS_CPLD_CSPR 4618 CONFIG_SYS_CPLD_CSPR
4620 CONFIG_SYS_CPLD_CSPR_EXT 4619 CONFIG_SYS_CPLD_CSPR_EXT
4621 CONFIG_SYS_CPLD_DATA 4620 CONFIG_SYS_CPLD_DATA
4622 CONFIG_SYS_CPLD_FTIM0 4621 CONFIG_SYS_CPLD_FTIM0
4623 CONFIG_SYS_CPLD_FTIM1 4622 CONFIG_SYS_CPLD_FTIM1
4624 CONFIG_SYS_CPLD_FTIM2 4623 CONFIG_SYS_CPLD_FTIM2
4625 CONFIG_SYS_CPLD_FTIM3 4624 CONFIG_SYS_CPLD_FTIM3
4626 CONFIG_SYS_CPLD_SIZE 4625 CONFIG_SYS_CPLD_SIZE
4627 CONFIG_SYS_CPMFCR_RAMTYPE 4626 CONFIG_SYS_CPMFCR_RAMTYPE
4628 CONFIG_SYS_CPM_BOOTCOUNT_ADDR 4627 CONFIG_SYS_CPM_BOOTCOUNT_ADDR
4629 CONFIG_SYS_CPM_INTERRUPT 4628 CONFIG_SYS_CPM_INTERRUPT
4630 CONFIG_SYS_CPM_POST_WORD_ADDR 4629 CONFIG_SYS_CPM_POST_WORD_ADDR
4631 CONFIG_SYS_CPRI 4630 CONFIG_SYS_CPRI
4632 CONFIG_SYS_CPRI_CLK 4631 CONFIG_SYS_CPRI_CLK
4633 CONFIG_SYS_CPUSPEED 4632 CONFIG_SYS_CPUSPEED
4634 CONFIG_SYS_CPU_CLK 4633 CONFIG_SYS_CPU_CLK
4635 CONFIG_SYS_CPU_PCI_IO_START 4634 CONFIG_SYS_CPU_PCI_IO_START
4636 CONFIG_SYS_CPU_PCI_MEMIO_START 4635 CONFIG_SYS_CPU_PCI_MEMIO_START
4637 CONFIG_SYS_CPU_PCI_MEM_START 4636 CONFIG_SYS_CPU_PCI_MEM_START
4638 CONFIG_SYS_CS0_BASE 4637 CONFIG_SYS_CS0_BASE
4639 CONFIG_SYS_CS0_CFG 4638 CONFIG_SYS_CS0_CFG
4640 CONFIG_SYS_CS0_CTRL 4639 CONFIG_SYS_CS0_CTRL
4641 CONFIG_SYS_CS0_FTIM0 4640 CONFIG_SYS_CS0_FTIM0
4642 CONFIG_SYS_CS0_FTIM1 4641 CONFIG_SYS_CS0_FTIM1
4643 CONFIG_SYS_CS0_FTIM2 4642 CONFIG_SYS_CS0_FTIM2
4644 CONFIG_SYS_CS0_FTIM3 4643 CONFIG_SYS_CS0_FTIM3
4645 CONFIG_SYS_CS0_MASK 4644 CONFIG_SYS_CS0_MASK
4646 CONFIG_SYS_CS0_SIZE 4645 CONFIG_SYS_CS0_SIZE
4647 CONFIG_SYS_CS0_START 4646 CONFIG_SYS_CS0_START
4648 CONFIG_SYS_CS1_BASE 4647 CONFIG_SYS_CS1_BASE
4649 CONFIG_SYS_CS1_CFG 4648 CONFIG_SYS_CS1_CFG
4650 CONFIG_SYS_CS1_CTRL 4649 CONFIG_SYS_CS1_CTRL
4651 CONFIG_SYS_CS1_FLASH_BASE 4650 CONFIG_SYS_CS1_FLASH_BASE
4652 CONFIG_SYS_CS1_FTIM0 4651 CONFIG_SYS_CS1_FTIM0
4653 CONFIG_SYS_CS1_FTIM1 4652 CONFIG_SYS_CS1_FTIM1
4654 CONFIG_SYS_CS1_FTIM2 4653 CONFIG_SYS_CS1_FTIM2
4655 CONFIG_SYS_CS1_FTIM3 4654 CONFIG_SYS_CS1_FTIM3
4656 CONFIG_SYS_CS1_MASK 4655 CONFIG_SYS_CS1_MASK
4657 CONFIG_SYS_CS1_SIZE 4656 CONFIG_SYS_CS1_SIZE
4658 CONFIG_SYS_CS1_START 4657 CONFIG_SYS_CS1_START
4659 CONFIG_SYS_CS2_BASE 4658 CONFIG_SYS_CS2_BASE
4660 CONFIG_SYS_CS2_CFG 4659 CONFIG_SYS_CS2_CFG
4661 CONFIG_SYS_CS2_CTRL 4660 CONFIG_SYS_CS2_CTRL
4662 CONFIG_SYS_CS2_FLASH_BASE 4661 CONFIG_SYS_CS2_FLASH_BASE
4663 CONFIG_SYS_CS2_FTIM0 4662 CONFIG_SYS_CS2_FTIM0
4664 CONFIG_SYS_CS2_FTIM1 4663 CONFIG_SYS_CS2_FTIM1
4665 CONFIG_SYS_CS2_FTIM2 4664 CONFIG_SYS_CS2_FTIM2
4666 CONFIG_SYS_CS2_FTIM3 4665 CONFIG_SYS_CS2_FTIM3
4667 CONFIG_SYS_CS2_MASK 4666 CONFIG_SYS_CS2_MASK
4668 CONFIG_SYS_CS2_SIZE 4667 CONFIG_SYS_CS2_SIZE
4669 CONFIG_SYS_CS2_START 4668 CONFIG_SYS_CS2_START
4670 CONFIG_SYS_CS3_BASE 4669 CONFIG_SYS_CS3_BASE
4671 CONFIG_SYS_CS3_CFG 4670 CONFIG_SYS_CS3_CFG
4672 CONFIG_SYS_CS3_CTRL 4671 CONFIG_SYS_CS3_CTRL
4673 CONFIG_SYS_CS3_FLASH_BASE 4672 CONFIG_SYS_CS3_FLASH_BASE
4674 CONFIG_SYS_CS3_FTIM0 4673 CONFIG_SYS_CS3_FTIM0
4675 CONFIG_SYS_CS3_FTIM1 4674 CONFIG_SYS_CS3_FTIM1
4676 CONFIG_SYS_CS3_FTIM2 4675 CONFIG_SYS_CS3_FTIM2
4677 CONFIG_SYS_CS3_FTIM3 4676 CONFIG_SYS_CS3_FTIM3
4678 CONFIG_SYS_CS3_MASK 4677 CONFIG_SYS_CS3_MASK
4679 CONFIG_SYS_CS3_SIZE 4678 CONFIG_SYS_CS3_SIZE
4680 CONFIG_SYS_CS3_START 4679 CONFIG_SYS_CS3_START
4681 CONFIG_SYS_CS4_BASE 4680 CONFIG_SYS_CS4_BASE
4682 CONFIG_SYS_CS4_CFG 4681 CONFIG_SYS_CS4_CFG
4683 CONFIG_SYS_CS4_CTRL 4682 CONFIG_SYS_CS4_CTRL
4684 CONFIG_SYS_CS4_FLASH_BASE 4683 CONFIG_SYS_CS4_FLASH_BASE
4685 CONFIG_SYS_CS4_FTIM0 4684 CONFIG_SYS_CS4_FTIM0
4686 CONFIG_SYS_CS4_FTIM1 4685 CONFIG_SYS_CS4_FTIM1
4687 CONFIG_SYS_CS4_FTIM2 4686 CONFIG_SYS_CS4_FTIM2
4688 CONFIG_SYS_CS4_FTIM3 4687 CONFIG_SYS_CS4_FTIM3
4689 CONFIG_SYS_CS4_MASK 4688 CONFIG_SYS_CS4_MASK
4690 CONFIG_SYS_CS4_SIZE 4689 CONFIG_SYS_CS4_SIZE
4691 CONFIG_SYS_CS4_START 4690 CONFIG_SYS_CS4_START
4692 CONFIG_SYS_CS5_BASE 4691 CONFIG_SYS_CS5_BASE
4693 CONFIG_SYS_CS5_CFG 4692 CONFIG_SYS_CS5_CFG
4694 CONFIG_SYS_CS5_CTRL 4693 CONFIG_SYS_CS5_CTRL
4695 CONFIG_SYS_CS5_FLASH_BASE 4694 CONFIG_SYS_CS5_FLASH_BASE
4696 CONFIG_SYS_CS5_FTIM0 4695 CONFIG_SYS_CS5_FTIM0
4697 CONFIG_SYS_CS5_FTIM1 4696 CONFIG_SYS_CS5_FTIM1
4698 CONFIG_SYS_CS5_FTIM2 4697 CONFIG_SYS_CS5_FTIM2
4699 CONFIG_SYS_CS5_FTIM3 4698 CONFIG_SYS_CS5_FTIM3
4700 CONFIG_SYS_CS5_MASK 4699 CONFIG_SYS_CS5_MASK
4701 CONFIG_SYS_CS5_SIZE 4700 CONFIG_SYS_CS5_SIZE
4702 CONFIG_SYS_CS5_START 4701 CONFIG_SYS_CS5_START
4703 CONFIG_SYS_CS6_BASE 4702 CONFIG_SYS_CS6_BASE
4704 CONFIG_SYS_CS6_CFG 4703 CONFIG_SYS_CS6_CFG
4705 CONFIG_SYS_CS6_CTRL 4704 CONFIG_SYS_CS6_CTRL
4706 CONFIG_SYS_CS6_FTIM0 4705 CONFIG_SYS_CS6_FTIM0
4707 CONFIG_SYS_CS6_FTIM1 4706 CONFIG_SYS_CS6_FTIM1
4708 CONFIG_SYS_CS6_FTIM2 4707 CONFIG_SYS_CS6_FTIM2
4709 CONFIG_SYS_CS6_FTIM3 4708 CONFIG_SYS_CS6_FTIM3
4710 CONFIG_SYS_CS6_MASK 4709 CONFIG_SYS_CS6_MASK
4711 CONFIG_SYS_CS6_SIZE 4710 CONFIG_SYS_CS6_SIZE
4712 CONFIG_SYS_CS6_START 4711 CONFIG_SYS_CS6_START
4713 CONFIG_SYS_CS7_BASE 4712 CONFIG_SYS_CS7_BASE
4714 CONFIG_SYS_CS7_CFG 4713 CONFIG_SYS_CS7_CFG
4715 CONFIG_SYS_CS7_CTRL 4714 CONFIG_SYS_CS7_CTRL
4716 CONFIG_SYS_CS7_FTIM0 4715 CONFIG_SYS_CS7_FTIM0
4717 CONFIG_SYS_CS7_FTIM1 4716 CONFIG_SYS_CS7_FTIM1
4718 CONFIG_SYS_CS7_FTIM2 4717 CONFIG_SYS_CS7_FTIM2
4719 CONFIG_SYS_CS7_FTIM3 4718 CONFIG_SYS_CS7_FTIM3
4720 CONFIG_SYS_CS7_MASK 4719 CONFIG_SYS_CS7_MASK
4721 CONFIG_SYS_CS7_SIZE 4720 CONFIG_SYS_CS7_SIZE
4722 CONFIG_SYS_CS7_START 4721 CONFIG_SYS_CS7_START
4723 CONFIG_SYS_CSOR0 4722 CONFIG_SYS_CSOR0
4724 CONFIG_SYS_CSOR0_EXT 4723 CONFIG_SYS_CSOR0_EXT
4725 CONFIG_SYS_CSOR1 4724 CONFIG_SYS_CSOR1
4726 CONFIG_SYS_CSOR1_EXT 4725 CONFIG_SYS_CSOR1_EXT
4727 CONFIG_SYS_CSOR2 4726 CONFIG_SYS_CSOR2
4728 CONFIG_SYS_CSOR2_EXT 4727 CONFIG_SYS_CSOR2_EXT
4729 CONFIG_SYS_CSOR3 4728 CONFIG_SYS_CSOR3
4730 CONFIG_SYS_CSOR3_EXT 4729 CONFIG_SYS_CSOR3_EXT
4731 CONFIG_SYS_CSOR4 4730 CONFIG_SYS_CSOR4
4732 CONFIG_SYS_CSOR4_EXT 4731 CONFIG_SYS_CSOR4_EXT
4733 CONFIG_SYS_CSOR5 4732 CONFIG_SYS_CSOR5
4734 CONFIG_SYS_CSOR5_EXT 4733 CONFIG_SYS_CSOR5_EXT
4735 CONFIG_SYS_CSOR6 4734 CONFIG_SYS_CSOR6
4736 CONFIG_SYS_CSOR6_EXT 4735 CONFIG_SYS_CSOR6_EXT
4737 CONFIG_SYS_CSOR7 4736 CONFIG_SYS_CSOR7
4738 CONFIG_SYS_CSOR7_EXT 4737 CONFIG_SYS_CSOR7_EXT
4739 CONFIG_SYS_CSPR0 4738 CONFIG_SYS_CSPR0
4740 CONFIG_SYS_CSPR0_EXT 4739 CONFIG_SYS_CSPR0_EXT
4741 CONFIG_SYS_CSPR0_FINAL 4740 CONFIG_SYS_CSPR0_FINAL
4742 CONFIG_SYS_CSPR1 4741 CONFIG_SYS_CSPR1
4743 CONFIG_SYS_CSPR1_EXT 4742 CONFIG_SYS_CSPR1_EXT
4744 CONFIG_SYS_CSPR1_FINAL 4743 CONFIG_SYS_CSPR1_FINAL
4745 CONFIG_SYS_CSPR2 4744 CONFIG_SYS_CSPR2
4746 CONFIG_SYS_CSPR2_EXT 4745 CONFIG_SYS_CSPR2_EXT
4747 CONFIG_SYS_CSPR2_FINAL 4746 CONFIG_SYS_CSPR2_FINAL
4748 CONFIG_SYS_CSPR3 4747 CONFIG_SYS_CSPR3
4749 CONFIG_SYS_CSPR3_EXT 4748 CONFIG_SYS_CSPR3_EXT
4750 CONFIG_SYS_CSPR3_FINAL 4749 CONFIG_SYS_CSPR3_FINAL
4751 CONFIG_SYS_CSPR4 4750 CONFIG_SYS_CSPR4
4752 CONFIG_SYS_CSPR4_EXT 4751 CONFIG_SYS_CSPR4_EXT
4753 CONFIG_SYS_CSPR5 4752 CONFIG_SYS_CSPR5
4754 CONFIG_SYS_CSPR5_EXT 4753 CONFIG_SYS_CSPR5_EXT
4755 CONFIG_SYS_CSPR6 4754 CONFIG_SYS_CSPR6
4756 CONFIG_SYS_CSPR6_EXT 4755 CONFIG_SYS_CSPR6_EXT
4757 CONFIG_SYS_CSPR7 4756 CONFIG_SYS_CSPR7
4758 CONFIG_SYS_CSPR7_EXT 4757 CONFIG_SYS_CSPR7_EXT
4759 CONFIG_SYS_CS_ALETIMING 4758 CONFIG_SYS_CS_ALETIMING
4760 CONFIG_SYS_CS_BURST 4759 CONFIG_SYS_CS_BURST
4761 CONFIG_SYS_CS_DEADCYCLE 4760 CONFIG_SYS_CS_DEADCYCLE
4762 CONFIG_SYS_CS_HOLDCYCLE 4761 CONFIG_SYS_CS_HOLDCYCLE
4763 CONFIG_SYS_DA850_CS2CFG 4762 CONFIG_SYS_DA850_CS2CFG
4764 CONFIG_SYS_DA850_CS3CFG 4763 CONFIG_SYS_DA850_CS3CFG
4765 CONFIG_SYS_DA850_DDR2_DDRPHYCR 4764 CONFIG_SYS_DA850_DDR2_DDRPHYCR
4766 CONFIG_SYS_DA850_DDR2_PBBPR 4765 CONFIG_SYS_DA850_DDR2_PBBPR
4767 CONFIG_SYS_DA850_DDR2_SDBCR 4766 CONFIG_SYS_DA850_DDR2_SDBCR
4768 CONFIG_SYS_DA850_DDR2_SDBCR2 4767 CONFIG_SYS_DA850_DDR2_SDBCR2
4769 CONFIG_SYS_DA850_DDR2_SDRCR 4768 CONFIG_SYS_DA850_DDR2_SDRCR
4770 CONFIG_SYS_DA850_DDR2_SDTIMR 4769 CONFIG_SYS_DA850_DDR2_SDTIMR
4771 CONFIG_SYS_DA850_DDR2_SDTIMR2 4770 CONFIG_SYS_DA850_DDR2_SDTIMR2
4772 CONFIG_SYS_DA850_DDR_INIT 4771 CONFIG_SYS_DA850_DDR_INIT
4773 CONFIG_SYS_DA850_PLL0_PLLDIV1 4772 CONFIG_SYS_DA850_PLL0_PLLDIV1
4774 CONFIG_SYS_DA850_PLL0_PLLDIV2 4773 CONFIG_SYS_DA850_PLL0_PLLDIV2
4775 CONFIG_SYS_DA850_PLL0_PLLDIV3 4774 CONFIG_SYS_DA850_PLL0_PLLDIV3
4776 CONFIG_SYS_DA850_PLL0_PLLDIV4 4775 CONFIG_SYS_DA850_PLL0_PLLDIV4
4777 CONFIG_SYS_DA850_PLL0_PLLDIV5 4776 CONFIG_SYS_DA850_PLL0_PLLDIV5
4778 CONFIG_SYS_DA850_PLL0_PLLDIV6 4777 CONFIG_SYS_DA850_PLL0_PLLDIV6
4779 CONFIG_SYS_DA850_PLL0_PLLDIV7 4778 CONFIG_SYS_DA850_PLL0_PLLDIV7
4780 CONFIG_SYS_DA850_PLL0_PLLM 4779 CONFIG_SYS_DA850_PLL0_PLLM
4781 CONFIG_SYS_DA850_PLL0_POSTDIV 4780 CONFIG_SYS_DA850_PLL0_POSTDIV
4782 CONFIG_SYS_DA850_PLL0_PREDIV 4781 CONFIG_SYS_DA850_PLL0_PREDIV
4783 CONFIG_SYS_DA850_PLL1_PLLDIV1 4782 CONFIG_SYS_DA850_PLL1_PLLDIV1
4784 CONFIG_SYS_DA850_PLL1_PLLDIV2 4783 CONFIG_SYS_DA850_PLL1_PLLDIV2
4785 CONFIG_SYS_DA850_PLL1_PLLDIV3 4784 CONFIG_SYS_DA850_PLL1_PLLDIV3
4786 CONFIG_SYS_DA850_PLL1_PLLM 4785 CONFIG_SYS_DA850_PLL1_PLLM
4787 CONFIG_SYS_DA850_PLL1_POSTDIV 4786 CONFIG_SYS_DA850_PLL1_POSTDIV
4788 CONFIG_SYS_DA850_PLL_INIT 4787 CONFIG_SYS_DA850_PLL_INIT
4789 CONFIG_SYS_DA850_SYSCFG_SUSPSRC 4788 CONFIG_SYS_DA850_SYSCFG_SUSPSRC
4790 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 4789 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0
4791 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 4790 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1
4792 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS2 4791 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS2
4793 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3 4792 CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3
4794 CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT 4793 CONFIG_SYS_DAVINCI_EMAC_PHY_COUNT
4795 CONFIG_SYS_DAVINCI_I2C_SLAVE 4794 CONFIG_SYS_DAVINCI_I2C_SLAVE
4796 CONFIG_SYS_DAVINCI_I2C_SLAVE1 4795 CONFIG_SYS_DAVINCI_I2C_SLAVE1
4797 CONFIG_SYS_DAVINCI_I2C_SLAVE2 4796 CONFIG_SYS_DAVINCI_I2C_SLAVE2
4798 CONFIG_SYS_DAVINCI_I2C_SPEED 4797 CONFIG_SYS_DAVINCI_I2C_SPEED
4799 CONFIG_SYS_DAVINCI_I2C_SPEED1 4798 CONFIG_SYS_DAVINCI_I2C_SPEED1
4800 CONFIG_SYS_DAVINCI_I2C_SPEED2 4799 CONFIG_SYS_DAVINCI_I2C_SPEED2
4801 CONFIG_SYS_DBAT 4800 CONFIG_SYS_DBAT
4802 CONFIG_SYS_DBAT0L 4801 CONFIG_SYS_DBAT0L
4803 CONFIG_SYS_DBAT0U 4802 CONFIG_SYS_DBAT0U
4804 CONFIG_SYS_DBAT1L 4803 CONFIG_SYS_DBAT1L
4805 CONFIG_SYS_DBAT1U 4804 CONFIG_SYS_DBAT1U
4806 CONFIG_SYS_DBAT2L 4805 CONFIG_SYS_DBAT2L
4807 CONFIG_SYS_DBAT2U 4806 CONFIG_SYS_DBAT2U
4808 CONFIG_SYS_DBAT3L 4807 CONFIG_SYS_DBAT3L
4809 CONFIG_SYS_DBAT3U 4808 CONFIG_SYS_DBAT3U
4810 CONFIG_SYS_DBAT4L 4809 CONFIG_SYS_DBAT4L
4811 CONFIG_SYS_DBAT4U 4810 CONFIG_SYS_DBAT4U
4812 CONFIG_SYS_DBAT5L 4811 CONFIG_SYS_DBAT5L
4813 CONFIG_SYS_DBAT5U 4812 CONFIG_SYS_DBAT5U
4814 CONFIG_SYS_DBAT6L 4813 CONFIG_SYS_DBAT6L
4815 CONFIG_SYS_DBAT6L_EARLY 4814 CONFIG_SYS_DBAT6L_EARLY
4816 CONFIG_SYS_DBAT6U 4815 CONFIG_SYS_DBAT6U
4817 CONFIG_SYS_DBAT6U_EARLY 4816 CONFIG_SYS_DBAT6U_EARLY
4818 CONFIG_SYS_DBAT7L 4817 CONFIG_SYS_DBAT7L
4819 CONFIG_SYS_DBAT7U 4818 CONFIG_SYS_DBAT7U
4820 CONFIG_SYS_DCACHE_INV 4819 CONFIG_SYS_DCACHE_INV
4821 CONFIG_SYS_DCACHE_LINESZ 4820 CONFIG_SYS_DCACHE_LINESZ
4822 CONFIG_SYS_DCACHE_SACR_VALUE 4821 CONFIG_SYS_DCACHE_SACR_VALUE
4823 CONFIG_SYS_DCSRBAR 4822 CONFIG_SYS_DCSRBAR
4824 CONFIG_SYS_DCSRBAR_PHYS 4823 CONFIG_SYS_DCSRBAR_PHYS
4825 CONFIG_SYS_DCSR_COP_CCP_ADDR 4824 CONFIG_SYS_DCSR_COP_CCP_ADDR
4826 CONFIG_SYS_DCSR_DCFG_ADDR 4825 CONFIG_SYS_DCSR_DCFG_ADDR
4827 CONFIG_SYS_DCSR_DCFG_OFFSET 4826 CONFIG_SYS_DCSR_DCFG_OFFSET
4828 CONFIG_SYS_DCU_ADDR 4827 CONFIG_SYS_DCU_ADDR
4829 CONFIG_SYS_DDR1_CS0_BNDS 4828 CONFIG_SYS_DDR1_CS0_BNDS
4830 CONFIG_SYS_DDR2_CFG_1A 4829 CONFIG_SYS_DDR2_CFG_1A
4831 CONFIG_SYS_DDR2_CFG_1B 4830 CONFIG_SYS_DDR2_CFG_1B
4832 CONFIG_SYS_DDR2_CFG_2 4831 CONFIG_SYS_DDR2_CFG_2
4833 CONFIG_SYS_DDR2_CLK_CTRL 4832 CONFIG_SYS_DDR2_CLK_CTRL
4834 CONFIG_SYS_DDR2_CS0_BNDS 4833 CONFIG_SYS_DDR2_CS0_BNDS
4835 CONFIG_SYS_DDR2_CS0_CONFIG 4834 CONFIG_SYS_DDR2_CS0_CONFIG
4836 CONFIG_SYS_DDR2_CS1_BNDS 4835 CONFIG_SYS_DDR2_CS1_BNDS
4837 CONFIG_SYS_DDR2_CS1_CONFIG 4836 CONFIG_SYS_DDR2_CS1_CONFIG
4838 CONFIG_SYS_DDR2_CS2_BNDS 4837 CONFIG_SYS_DDR2_CS2_BNDS
4839 CONFIG_SYS_DDR2_CS2_CONFIG 4838 CONFIG_SYS_DDR2_CS2_CONFIG
4840 CONFIG_SYS_DDR2_CS3_BNDS 4839 CONFIG_SYS_DDR2_CS3_BNDS
4841 CONFIG_SYS_DDR2_CS3_CONFIG 4840 CONFIG_SYS_DDR2_CS3_CONFIG
4842 CONFIG_SYS_DDR2_DATA_INIT 4841 CONFIG_SYS_DDR2_DATA_INIT
4843 CONFIG_SYS_DDR2_EXT_REFRESH 4842 CONFIG_SYS_DDR2_EXT_REFRESH
4844 CONFIG_SYS_DDR2_INTERVAL 4843 CONFIG_SYS_DDR2_INTERVAL
4845 CONFIG_SYS_DDR2_MODE_1 4844 CONFIG_SYS_DDR2_MODE_1
4846 CONFIG_SYS_DDR2_MODE_2 4845 CONFIG_SYS_DDR2_MODE_2
4847 CONFIG_SYS_DDR2_MODE_CTL 4846 CONFIG_SYS_DDR2_MODE_CTL
4848 CONFIG_SYS_DDR2_TIMING_0 4847 CONFIG_SYS_DDR2_TIMING_0
4849 CONFIG_SYS_DDR2_TIMING_1 4848 CONFIG_SYS_DDR2_TIMING_1
4850 CONFIG_SYS_DDR2_TIMING_2 4849 CONFIG_SYS_DDR2_TIMING_2
4851 CONFIG_SYS_DDRCDR 4850 CONFIG_SYS_DDRCDR
4852 CONFIG_SYS_DDRCDR_VALUE 4851 CONFIG_SYS_DDRCDR_VALUE
4853 CONFIG_SYS_DDRCMD_EM2 4852 CONFIG_SYS_DDRCMD_EM2
4854 CONFIG_SYS_DDRCMD_EM3 4853 CONFIG_SYS_DDRCMD_EM3
4855 CONFIG_SYS_DDRCMD_EN_DLL 4854 CONFIG_SYS_DDRCMD_EN_DLL
4856 CONFIG_SYS_DDRCMD_NOP 4855 CONFIG_SYS_DDRCMD_NOP
4857 CONFIG_SYS_DDRCMD_OCD_DEFAULT 4856 CONFIG_SYS_DDRCMD_OCD_DEFAULT
4858 CONFIG_SYS_DDRCMD_OCD_EXIT 4857 CONFIG_SYS_DDRCMD_OCD_EXIT
4859 CONFIG_SYS_DDRCMD_PCHG_ALL 4858 CONFIG_SYS_DDRCMD_PCHG_ALL
4860 CONFIG_SYS_DDRCMD_RES_DLL 4859 CONFIG_SYS_DDRCMD_RES_DLL
4861 CONFIG_SYS_DDRCMD_RFSH 4860 CONFIG_SYS_DDRCMD_RFSH
4862 CONFIG_SYS_DDRD 4861 CONFIG_SYS_DDRD
4863 CONFIG_SYS_DDRTC 4862 CONFIG_SYS_DDRTC
4864 CONFIG_SYS_DDRUA 4863 CONFIG_SYS_DDRUA
4865 CONFIG_SYS_DDR_BASE 4864 CONFIG_SYS_DDR_BASE
4866 CONFIG_SYS_DDR_BLOCK1_SIZE 4865 CONFIG_SYS_DDR_BLOCK1_SIZE
4867 CONFIG_SYS_DDR_BLOCK2_BASE 4866 CONFIG_SYS_DDR_BLOCK2_BASE
4868 CONFIG_SYS_DDR_CACHED_ADDR 4867 CONFIG_SYS_DDR_CACHED_ADDR
4869 CONFIG_SYS_DDR_CDR_1 4868 CONFIG_SYS_DDR_CDR_1
4870 CONFIG_SYS_DDR_CDR_2 4869 CONFIG_SYS_DDR_CDR_2
4871 CONFIG_SYS_DDR_CFG_1A 4870 CONFIG_SYS_DDR_CFG_1A
4872 CONFIG_SYS_DDR_CFG_1B 4871 CONFIG_SYS_DDR_CFG_1B
4873 CONFIG_SYS_DDR_CFG_2 4872 CONFIG_SYS_DDR_CFG_2
4874 CONFIG_SYS_DDR_CLKSEL 4873 CONFIG_SYS_DDR_CLKSEL
4875 CONFIG_SYS_DDR_CLK_CNTL 4874 CONFIG_SYS_DDR_CLK_CNTL
4876 CONFIG_SYS_DDR_CLK_CONTROL 4875 CONFIG_SYS_DDR_CLK_CONTROL
4877 CONFIG_SYS_DDR_CLK_CTRL 4876 CONFIG_SYS_DDR_CLK_CTRL
4878 CONFIG_SYS_DDR_CLK_CTRL_1000 4877 CONFIG_SYS_DDR_CLK_CTRL_1000
4879 CONFIG_SYS_DDR_CLK_CTRL_1200 4878 CONFIG_SYS_DDR_CLK_CTRL_1200
4880 CONFIG_SYS_DDR_CLK_CTRL_1333 4879 CONFIG_SYS_DDR_CLK_CTRL_1333
4881 CONFIG_SYS_DDR_CLK_CTRL_667 4880 CONFIG_SYS_DDR_CLK_CTRL_667
4882 CONFIG_SYS_DDR_CLK_CTRL_800 4881 CONFIG_SYS_DDR_CLK_CTRL_800
4883 CONFIG_SYS_DDR_CLK_CTRL_900 4882 CONFIG_SYS_DDR_CLK_CTRL_900
4884 CONFIG_SYS_DDR_CONFIG 4883 CONFIG_SYS_DDR_CONFIG
4885 CONFIG_SYS_DDR_CONFIG_2 4884 CONFIG_SYS_DDR_CONFIG_2
4886 CONFIG_SYS_DDR_CONFIG_256 4885 CONFIG_SYS_DDR_CONFIG_256
4887 CONFIG_SYS_DDR_CONTROL 4886 CONFIG_SYS_DDR_CONTROL
4888 CONFIG_SYS_DDR_CONTROL2 4887 CONFIG_SYS_DDR_CONTROL2
4889 CONFIG_SYS_DDR_CONTROL_1333 4888 CONFIG_SYS_DDR_CONTROL_1333
4890 CONFIG_SYS_DDR_CONTROL_2 4889 CONFIG_SYS_DDR_CONTROL_2
4891 CONFIG_SYS_DDR_CONTROL_2_1333 4890 CONFIG_SYS_DDR_CONTROL_2_1333
4892 CONFIG_SYS_DDR_CONTROL_2_800 4891 CONFIG_SYS_DDR_CONTROL_2_800
4893 CONFIG_SYS_DDR_CONTROL_800 4892 CONFIG_SYS_DDR_CONTROL_800
4894 CONFIG_SYS_DDR_CPO 4893 CONFIG_SYS_DDR_CPO
4895 CONFIG_SYS_DDR_CS0_BNDS 4894 CONFIG_SYS_DDR_CS0_BNDS
4896 CONFIG_SYS_DDR_CS0_CONFIG 4895 CONFIG_SYS_DDR_CS0_CONFIG
4897 CONFIG_SYS_DDR_CS0_CONFIG_1333 4896 CONFIG_SYS_DDR_CS0_CONFIG_1333
4898 CONFIG_SYS_DDR_CS0_CONFIG_2 4897 CONFIG_SYS_DDR_CS0_CONFIG_2
4899 CONFIG_SYS_DDR_CS0_CONFIG_800 4898 CONFIG_SYS_DDR_CS0_CONFIG_800
4900 CONFIG_SYS_DDR_CS1_BNDS 4899 CONFIG_SYS_DDR_CS1_BNDS
4901 CONFIG_SYS_DDR_CS1_CONFIG 4900 CONFIG_SYS_DDR_CS1_CONFIG
4902 CONFIG_SYS_DDR_CS1_CONFIG_2 4901 CONFIG_SYS_DDR_CS1_CONFIG_2
4903 CONFIG_SYS_DDR_CS2_BNDS 4902 CONFIG_SYS_DDR_CS2_BNDS
4904 CONFIG_SYS_DDR_CS2_CONFIG 4903 CONFIG_SYS_DDR_CS2_CONFIG
4905 CONFIG_SYS_DDR_CS3_BNDS 4904 CONFIG_SYS_DDR_CS3_BNDS
4906 CONFIG_SYS_DDR_CS3_CONFIG 4905 CONFIG_SYS_DDR_CS3_CONFIG
4907 CONFIG_SYS_DDR_DATA_INIT 4906 CONFIG_SYS_DDR_DATA_INIT
4908 CONFIG_SYS_DDR_ERR_DIS 4907 CONFIG_SYS_DDR_ERR_DIS
4909 CONFIG_SYS_DDR_ERR_INT_EN 4908 CONFIG_SYS_DDR_ERR_INT_EN
4910 CONFIG_SYS_DDR_INIT_ADDR 4909 CONFIG_SYS_DDR_INIT_ADDR
4911 CONFIG_SYS_DDR_INIT_EXT_ADDR 4910 CONFIG_SYS_DDR_INIT_EXT_ADDR
4912 CONFIG_SYS_DDR_INTERVAL 4911 CONFIG_SYS_DDR_INTERVAL
4913 CONFIG_SYS_DDR_INTERVAL_1000 4912 CONFIG_SYS_DDR_INTERVAL_1000
4914 CONFIG_SYS_DDR_INTERVAL_1200 4913 CONFIG_SYS_DDR_INTERVAL_1200
4915 CONFIG_SYS_DDR_INTERVAL_1333 4914 CONFIG_SYS_DDR_INTERVAL_1333
4916 CONFIG_SYS_DDR_INTERVAL_667 4915 CONFIG_SYS_DDR_INTERVAL_667
4917 CONFIG_SYS_DDR_INTERVAL_800 4916 CONFIG_SYS_DDR_INTERVAL_800
4918 CONFIG_SYS_DDR_INTERVAL_900 4917 CONFIG_SYS_DDR_INTERVAL_900
4919 CONFIG_SYS_DDR_MODE 4918 CONFIG_SYS_DDR_MODE
4920 CONFIG_SYS_DDR_MODE2 4919 CONFIG_SYS_DDR_MODE2
4921 CONFIG_SYS_DDR_MODE_1 4920 CONFIG_SYS_DDR_MODE_1
4922 CONFIG_SYS_DDR_MODE_1_1000 4921 CONFIG_SYS_DDR_MODE_1_1000
4923 CONFIG_SYS_DDR_MODE_1_1200 4922 CONFIG_SYS_DDR_MODE_1_1200
4924 CONFIG_SYS_DDR_MODE_1_1333 4923 CONFIG_SYS_DDR_MODE_1_1333
4925 CONFIG_SYS_DDR_MODE_1_667 4924 CONFIG_SYS_DDR_MODE_1_667
4926 CONFIG_SYS_DDR_MODE_1_800 4925 CONFIG_SYS_DDR_MODE_1_800
4927 CONFIG_SYS_DDR_MODE_1_900 4926 CONFIG_SYS_DDR_MODE_1_900
4928 CONFIG_SYS_DDR_MODE_2 4927 CONFIG_SYS_DDR_MODE_2
4929 CONFIG_SYS_DDR_MODE_2_1000 4928 CONFIG_SYS_DDR_MODE_2_1000
4930 CONFIG_SYS_DDR_MODE_2_1200 4929 CONFIG_SYS_DDR_MODE_2_1200
4931 CONFIG_SYS_DDR_MODE_2_1333 4930 CONFIG_SYS_DDR_MODE_2_1333
4932 CONFIG_SYS_DDR_MODE_2_667 4931 CONFIG_SYS_DDR_MODE_2_667
4933 CONFIG_SYS_DDR_MODE_2_800 4932 CONFIG_SYS_DDR_MODE_2_800
4934 CONFIG_SYS_DDR_MODE_2_900 4933 CONFIG_SYS_DDR_MODE_2_900
4935 CONFIG_SYS_DDR_MODE_CONTROL 4934 CONFIG_SYS_DDR_MODE_CONTROL
4936 CONFIG_SYS_DDR_MODE_CTL 4935 CONFIG_SYS_DDR_MODE_CTL
4937 CONFIG_SYS_DDR_MODE_WEAK 4936 CONFIG_SYS_DDR_MODE_WEAK
4938 CONFIG_SYS_DDR_OCD_CTRL 4937 CONFIG_SYS_DDR_OCD_CTRL
4939 CONFIG_SYS_DDR_OCD_STATUS 4938 CONFIG_SYS_DDR_OCD_STATUS
4940 CONFIG_SYS_DDR_RAW_TIMING 4939 CONFIG_SYS_DDR_RAW_TIMING
4941 CONFIG_SYS_DDR_RCW_1 4940 CONFIG_SYS_DDR_RCW_1
4942 CONFIG_SYS_DDR_RCW_2 4941 CONFIG_SYS_DDR_RCW_2
4943 CONFIG_SYS_DDR_SBE 4942 CONFIG_SYS_DDR_SBE
4944 CONFIG_SYS_DDR_SDRAM_BASE 4943 CONFIG_SYS_DDR_SDRAM_BASE
4945 CONFIG_SYS_DDR_SDRAM_BASE2 4944 CONFIG_SYS_DDR_SDRAM_BASE2
4946 CONFIG_SYS_DDR_SDRAM_CFG 4945 CONFIG_SYS_DDR_SDRAM_CFG
4947 CONFIG_SYS_DDR_SDRAM_CFG2 4946 CONFIG_SYS_DDR_SDRAM_CFG2
4948 CONFIG_SYS_DDR_SDRAM_CFG_2 4947 CONFIG_SYS_DDR_SDRAM_CFG_2
4949 CONFIG_SYS_DDR_SDRAM_CLK_CNTL 4948 CONFIG_SYS_DDR_SDRAM_CLK_CNTL
4950 CONFIG_SYS_DDR_SDRAM_INTERVAL 4949 CONFIG_SYS_DDR_SDRAM_INTERVAL
4951 CONFIG_SYS_DDR_SDRAM_MODE 4950 CONFIG_SYS_DDR_SDRAM_MODE
4952 CONFIG_SYS_DDR_SDRAM_MODE_2 4951 CONFIG_SYS_DDR_SDRAM_MODE_2
4953 CONFIG_SYS_DDR_SIZE 4952 CONFIG_SYS_DDR_SIZE
4954 CONFIG_SYS_DDR_SR_CNTR 4953 CONFIG_SYS_DDR_SR_CNTR
4955 CONFIG_SYS_DDR_TIMING_0 4954 CONFIG_SYS_DDR_TIMING_0
4956 CONFIG_SYS_DDR_TIMING_0_1000 4955 CONFIG_SYS_DDR_TIMING_0_1000
4957 CONFIG_SYS_DDR_TIMING_0_1200 4956 CONFIG_SYS_DDR_TIMING_0_1200
4958 CONFIG_SYS_DDR_TIMING_0_1333 4957 CONFIG_SYS_DDR_TIMING_0_1333
4959 CONFIG_SYS_DDR_TIMING_0_667 4958 CONFIG_SYS_DDR_TIMING_0_667
4960 CONFIG_SYS_DDR_TIMING_0_800 4959 CONFIG_SYS_DDR_TIMING_0_800
4961 CONFIG_SYS_DDR_TIMING_0_900 4960 CONFIG_SYS_DDR_TIMING_0_900
4962 CONFIG_SYS_DDR_TIMING_1 4961 CONFIG_SYS_DDR_TIMING_1
4963 CONFIG_SYS_DDR_TIMING_1_1000 4962 CONFIG_SYS_DDR_TIMING_1_1000
4964 CONFIG_SYS_DDR_TIMING_1_1200 4963 CONFIG_SYS_DDR_TIMING_1_1200
4965 CONFIG_SYS_DDR_TIMING_1_1333 4964 CONFIG_SYS_DDR_TIMING_1_1333
4966 CONFIG_SYS_DDR_TIMING_1_667 4965 CONFIG_SYS_DDR_TIMING_1_667
4967 CONFIG_SYS_DDR_TIMING_1_800 4966 CONFIG_SYS_DDR_TIMING_1_800
4968 CONFIG_SYS_DDR_TIMING_1_900 4967 CONFIG_SYS_DDR_TIMING_1_900
4969 CONFIG_SYS_DDR_TIMING_2 4968 CONFIG_SYS_DDR_TIMING_2
4970 CONFIG_SYS_DDR_TIMING_2_1000 4969 CONFIG_SYS_DDR_TIMING_2_1000
4971 CONFIG_SYS_DDR_TIMING_2_1200 4970 CONFIG_SYS_DDR_TIMING_2_1200
4972 CONFIG_SYS_DDR_TIMING_2_1333 4971 CONFIG_SYS_DDR_TIMING_2_1333
4973 CONFIG_SYS_DDR_TIMING_2_667 4972 CONFIG_SYS_DDR_TIMING_2_667
4974 CONFIG_SYS_DDR_TIMING_2_800 4973 CONFIG_SYS_DDR_TIMING_2_800
4975 CONFIG_SYS_DDR_TIMING_2_900 4974 CONFIG_SYS_DDR_TIMING_2_900
4976 CONFIG_SYS_DDR_TIMING_3 4975 CONFIG_SYS_DDR_TIMING_3
4977 CONFIG_SYS_DDR_TIMING_3_1000 4976 CONFIG_SYS_DDR_TIMING_3_1000
4978 CONFIG_SYS_DDR_TIMING_3_1200 4977 CONFIG_SYS_DDR_TIMING_3_1200
4979 CONFIG_SYS_DDR_TIMING_3_1333 4978 CONFIG_SYS_DDR_TIMING_3_1333
4980 CONFIG_SYS_DDR_TIMING_3_667 4979 CONFIG_SYS_DDR_TIMING_3_667
4981 CONFIG_SYS_DDR_TIMING_3_800 4980 CONFIG_SYS_DDR_TIMING_3_800
4982 CONFIG_SYS_DDR_TIMING_3_900 4981 CONFIG_SYS_DDR_TIMING_3_900
4983 CONFIG_SYS_DDR_TIMING_4 4982 CONFIG_SYS_DDR_TIMING_4
4984 CONFIG_SYS_DDR_TIMING_4_1333 4983 CONFIG_SYS_DDR_TIMING_4_1333
4985 CONFIG_SYS_DDR_TIMING_4_800 4984 CONFIG_SYS_DDR_TIMING_4_800
4986 CONFIG_SYS_DDR_TIMING_5 4985 CONFIG_SYS_DDR_TIMING_5
4987 CONFIG_SYS_DDR_TIMING_5_1333 4986 CONFIG_SYS_DDR_TIMING_5_1333
4988 CONFIG_SYS_DDR_TIMING_5_800 4987 CONFIG_SYS_DDR_TIMING_5_800
4989 CONFIG_SYS_DDR_WRITE_DATA_DELAY 4988 CONFIG_SYS_DDR_WRITE_DATA_DELAY
4990 CONFIG_SYS_DDR_WRLVL_CNTL 4989 CONFIG_SYS_DDR_WRLVL_CNTL
4991 CONFIG_SYS_DDR_WRLVL_CONTROL 4990 CONFIG_SYS_DDR_WRLVL_CONTROL
4992 CONFIG_SYS_DDR_WRLVL_CONTROL_1333 4991 CONFIG_SYS_DDR_WRLVL_CONTROL_1333
4993 CONFIG_SYS_DDR_WRLVL_CONTROL_667 4992 CONFIG_SYS_DDR_WRLVL_CONTROL_667
4994 CONFIG_SYS_DDR_WRLVL_CONTROL_800 4993 CONFIG_SYS_DDR_WRLVL_CONTROL_800
4995 CONFIG_SYS_DDR_ZQ_CNTL 4994 CONFIG_SYS_DDR_ZQ_CNTL
4996 CONFIG_SYS_DDR_ZQ_CONTROL 4995 CONFIG_SYS_DDR_ZQ_CONTROL
4997 CONFIG_SYS_DEBUG 4996 CONFIG_SYS_DEBUG
4998 CONFIG_SYS_DEBUG_SERVER_DRAM_BLOCK_MIN_SIZE 4997 CONFIG_SYS_DEBUG_SERVER_DRAM_BLOCK_MIN_SIZE
4999 CONFIG_SYS_DEBUG_SERVER_FW_ADDR 4998 CONFIG_SYS_DEBUG_SERVER_FW_ADDR
5000 CONFIG_SYS_DEBUG_SERVER_FW_IN_NOR 4999 CONFIG_SYS_DEBUG_SERVER_FW_IN_NOR
5001 CONFIG_SYS_DEBUG_SERVER_TIMEOUT 5000 CONFIG_SYS_DEBUG_SERVER_TIMEOUT
5002 CONFIG_SYS_DECREMENT_PATTERNS 5001 CONFIG_SYS_DECREMENT_PATTERNS
5003 CONFIG_SYS_DEFAULT_IMMR 5002 CONFIG_SYS_DEFAULT_IMMR
5004 CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS 5003 CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS
5005 CONFIG_SYS_DEFAULT_MBAR 5004 CONFIG_SYS_DEFAULT_MBAR
5006 CONFIG_SYS_DEFAULT_VIDEO_MODE 5005 CONFIG_SYS_DEFAULT_VIDEO_MODE
5007 CONFIG_SYS_DEF_EEPROM_ADDR 5006 CONFIG_SYS_DEF_EEPROM_ADDR
5008 CONFIG_SYS_DELAYED_ICACHE 5007 CONFIG_SYS_DELAYED_ICACHE
5009 CONFIG_SYS_DER 5008 CONFIG_SYS_DER
5010 CONFIG_SYS_DEVICE_NULLDEV 5009 CONFIG_SYS_DEVICE_NULLDEV
5011 CONFIG_SYS_DFU_DATA_BUF_SIZE 5010 CONFIG_SYS_DFU_DATA_BUF_SIZE
5012 CONFIG_SYS_DFU_MAX_FILE_SIZE 5011 CONFIG_SYS_DFU_MAX_FILE_SIZE
5013 CONFIG_SYS_DIAG_ADDR 5012 CONFIG_SYS_DIAG_ADDR
5014 CONFIG_SYS_DIALOG_PMIC_I2C_ADDR 5013 CONFIG_SYS_DIALOG_PMIC_I2C_ADDR
5015 CONFIG_SYS_DIMM_SLOTS_PER_CTLR 5014 CONFIG_SYS_DIMM_SLOTS_PER_CTLR
5016 CONFIG_SYS_DIRECT_FLASH_NFS 5015 CONFIG_SYS_DIRECT_FLASH_NFS
5017 CONFIG_SYS_DIRECT_FLASH_TFTP 5016 CONFIG_SYS_DIRECT_FLASH_TFTP
5018 CONFIG_SYS_DISCOVER_PHY 5017 CONFIG_SYS_DISCOVER_PHY
5019 CONFIG_SYS_DISPLAY_BASE 5018 CONFIG_SYS_DISPLAY_BASE
5020 CONFIG_SYS_DISP_CHR_RAM 5019 CONFIG_SYS_DISP_CHR_RAM
5021 CONFIG_SYS_DIU_ADDR 5020 CONFIG_SYS_DIU_ADDR
5022 CONFIG_SYS_DM36x_PINMUX0 5021 CONFIG_SYS_DM36x_PINMUX0
5023 CONFIG_SYS_DM36x_PINMUX1 5022 CONFIG_SYS_DM36x_PINMUX1
5024 CONFIG_SYS_DM36x_PINMUX2 5023 CONFIG_SYS_DM36x_PINMUX2
5025 CONFIG_SYS_DM36x_PINMUX3 5024 CONFIG_SYS_DM36x_PINMUX3
5026 CONFIG_SYS_DM36x_PINMUX4 5025 CONFIG_SYS_DM36x_PINMUX4
5027 CONFIG_SYS_DM36x_PLL1_PREDIV 5026 CONFIG_SYS_DM36x_PLL1_PREDIV
5028 CONFIG_SYS_DM36x_PLL2_PREDIV 5027 CONFIG_SYS_DM36x_PLL2_PREDIV
5029 CONFIG_SYS_DMA_USE_INTSRAM 5028 CONFIG_SYS_DMA_USE_INTSRAM
5030 CONFIG_SYS_DOC_SHORT_TIMEOUT 5029 CONFIG_SYS_DOC_SHORT_TIMEOUT
5031 CONFIG_SYS_DOC_SUPPORT_2000 5030 CONFIG_SYS_DOC_SUPPORT_2000
5032 CONFIG_SYS_DOC_SUPPORT_MILLENNIUM 5031 CONFIG_SYS_DOC_SUPPORT_MILLENNIUM
5033 CONFIG_SYS_DP501_BASE 5032 CONFIG_SYS_DP501_BASE
5034 CONFIG_SYS_DP501_DIFFERENTIAL 5033 CONFIG_SYS_DP501_DIFFERENTIAL
5035 CONFIG_SYS_DP501_I2C 5034 CONFIG_SYS_DP501_I2C
5036 CONFIG_SYS_DP501_VCAPCTRL0 5035 CONFIG_SYS_DP501_VCAPCTRL0
5037 CONFIG_SYS_DPAA_DCE 5036 CONFIG_SYS_DPAA_DCE
5038 CONFIG_SYS_DPAA_FMAN 5037 CONFIG_SYS_DPAA_FMAN
5039 CONFIG_SYS_DPAA_PME 5038 CONFIG_SYS_DPAA_PME
5040 CONFIG_SYS_DPAA_QBMAN 5039 CONFIG_SYS_DPAA_QBMAN
5041 CONFIG_SYS_DPAA_RMAN 5040 CONFIG_SYS_DPAA_RMAN
5042 CONFIG_SYS_DP_DDR_BASE 5041 CONFIG_SYS_DP_DDR_BASE
5043 CONFIG_SYS_DP_DDR_BASE_PHY 5042 CONFIG_SYS_DP_DDR_BASE_PHY
5044 CONFIG_SYS_DRAMSZ 5043 CONFIG_SYS_DRAMSZ
5045 CONFIG_SYS_DRAMSZ1 5044 CONFIG_SYS_DRAMSZ1
5046 CONFIG_SYS_DRAM_BASE 5045 CONFIG_SYS_DRAM_BASE
5047 CONFIG_SYS_DRAM_SIZE 5046 CONFIG_SYS_DRAM_SIZE
5048 CONFIG_SYS_DRAM_TEST 5047 CONFIG_SYS_DRAM_TEST
5049 CONFIG_SYS_DS1339_TCR_VAL 5048 CONFIG_SYS_DS1339_TCR_VAL
5050 CONFIG_SYS_DS1388_TCR_VAL 5049 CONFIG_SYS_DS1388_TCR_VAL
5051 CONFIG_SYS_DSPIC_TEST_ADDR 5050 CONFIG_SYS_DSPIC_TEST_ADDR
5052 CONFIG_SYS_DSPIC_TEST_MASK 5051 CONFIG_SYS_DSPIC_TEST_MASK
5053 CONFIG_SYS_DSPI_CS0 5052 CONFIG_SYS_DSPI_CS0
5054 CONFIG_SYS_DSPI_CS2 5053 CONFIG_SYS_DSPI_CS2
5055 CONFIG_SYS_DSPI_CTAR0 5054 CONFIG_SYS_DSPI_CTAR0
5056 CONFIG_SYS_DSPI_CTAR1 5055 CONFIG_SYS_DSPI_CTAR1
5057 CONFIG_SYS_DSPI_CTAR2 5056 CONFIG_SYS_DSPI_CTAR2
5058 CONFIG_SYS_DSPI_CTAR3 5057 CONFIG_SYS_DSPI_CTAR3
5059 CONFIG_SYS_DSPI_CTAR4 5058 CONFIG_SYS_DSPI_CTAR4
5060 CONFIG_SYS_DSPI_CTAR5 5059 CONFIG_SYS_DSPI_CTAR5
5061 CONFIG_SYS_DSPI_CTAR6 5060 CONFIG_SYS_DSPI_CTAR6
5062 CONFIG_SYS_DSPI_CTAR7 5061 CONFIG_SYS_DSPI_CTAR7
5063 CONFIG_SYS_DTT_ADM1021 5062 CONFIG_SYS_DTT_ADM1021
5064 CONFIG_SYS_DTT_BUS_NUM 5063 CONFIG_SYS_DTT_BUS_NUM
5065 CONFIG_SYS_DTT_HYSTERESIS 5064 CONFIG_SYS_DTT_HYSTERESIS
5066 CONFIG_SYS_DTT_LOW_TEMP 5065 CONFIG_SYS_DTT_LOW_TEMP
5067 CONFIG_SYS_DTT_MAX_TEMP 5066 CONFIG_SYS_DTT_MAX_TEMP
5068 CONFIG_SYS_DTT_MIN_TEMP 5067 CONFIG_SYS_DTT_MIN_TEMP
5069 CONFIG_SYS_DUART_RST 5068 CONFIG_SYS_DUART_RST
5070 CONFIG_SYS_DV_CLKMODE 5069 CONFIG_SYS_DV_CLKMODE
5071 CONFIG_SYS_DV_NOR_BOOT_CFG 5070 CONFIG_SYS_DV_NOR_BOOT_CFG
5072 CONFIG_SYS_EBC_CFG 5071 CONFIG_SYS_EBC_CFG
5073 CONFIG_SYS_EBC_PB0AP 5072 CONFIG_SYS_EBC_PB0AP
5074 CONFIG_SYS_EBC_PB0CR 5073 CONFIG_SYS_EBC_PB0CR
5075 CONFIG_SYS_EBC_PB1AP 5074 CONFIG_SYS_EBC_PB1AP
5076 CONFIG_SYS_EBC_PB1CR 5075 CONFIG_SYS_EBC_PB1CR
5077 CONFIG_SYS_EBC_PB2AP 5076 CONFIG_SYS_EBC_PB2AP
5078 CONFIG_SYS_EBC_PB2CR 5077 CONFIG_SYS_EBC_PB2CR
5079 CONFIG_SYS_EBC_PB3AP 5078 CONFIG_SYS_EBC_PB3AP
5080 CONFIG_SYS_EBC_PB3CR 5079 CONFIG_SYS_EBC_PB3CR
5081 CONFIG_SYS_EBC_PB4AP 5080 CONFIG_SYS_EBC_PB4AP
5082 CONFIG_SYS_EBC_PB4CR 5081 CONFIG_SYS_EBC_PB4CR
5083 CONFIG_SYS_EBC_PB5AP 5082 CONFIG_SYS_EBC_PB5AP
5084 CONFIG_SYS_EBC_PB5CR 5083 CONFIG_SYS_EBC_PB5CR
5085 CONFIG_SYS_EBC_PB6AP 5084 CONFIG_SYS_EBC_PB6AP
5086 CONFIG_SYS_EBC_PB6CR 5085 CONFIG_SYS_EBC_PB6CR
5087 CONFIG_SYS_EBC_PB7AP 5086 CONFIG_SYS_EBC_PB7AP
5088 CONFIG_SYS_EBC_PB7CR 5087 CONFIG_SYS_EBC_PB7CR
5089 CONFIG_SYS_EBI_CFGR_VAL 5088 CONFIG_SYS_EBI_CFGR_VAL
5090 CONFIG_SYS_EBI_CSA_VAL 5089 CONFIG_SYS_EBI_CSA_VAL
5091 CONFIG_SYS_EEPROM_BASE 5090 CONFIG_SYS_EEPROM_BASE
5092 CONFIG_SYS_EEPROM_BUS_NUM 5091 CONFIG_SYS_EEPROM_BUS_NUM
5093 CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 5092 CONFIG_SYS_EEPROM_PAGE_WRITE_BITS
5094 CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5093 CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
5095 CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE 5094 CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
5096 CONFIG_SYS_EEPROM_SIZE 5095 CONFIG_SYS_EEPROM_SIZE
5097 CONFIG_SYS_EEPROM_WP 5096 CONFIG_SYS_EEPROM_WP
5098 CONFIG_SYS_EEPROM_WREN 5097 CONFIG_SYS_EEPROM_WREN
5099 CONFIG_SYS_EHCI_USB1_ADDR 5098 CONFIG_SYS_EHCI_USB1_ADDR
5100 CONFIG_SYS_ELBC_BASE 5099 CONFIG_SYS_ELBC_BASE
5101 CONFIG_SYS_ELBC_BASE_PHYS 5100 CONFIG_SYS_ELBC_BASE_PHYS
5102 CONFIG_SYS_ELO3_DMA3 5101 CONFIG_SYS_ELO3_DMA3
5103 CONFIG_SYS_ELPIDA_INIT_DEV_OP 5102 CONFIG_SYS_ELPIDA_INIT_DEV_OP
5104 CONFIG_SYS_ELPIDA_OCD_EXIT 5103 CONFIG_SYS_ELPIDA_OCD_EXIT
5105 CONFIG_SYS_ELPIDA_RES_DLL 5104 CONFIG_SYS_ELPIDA_RES_DLL
5106 CONFIG_SYS_EMAC_TI_CLKDIV 5105 CONFIG_SYS_EMAC_TI_CLKDIV
5107 CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS 5106 CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
5108 CONFIG_SYS_ENABLE_PADS_ALL 5107 CONFIG_SYS_ENABLE_PADS_ALL
5109 CONFIG_SYS_ENET_BD_BASE 5108 CONFIG_SYS_ENET_BD_BASE
5110 CONFIG_SYS_ENV_ADDR 5109 CONFIG_SYS_ENV_ADDR
5111 CONFIG_SYS_ENV_OFFSET 5110 CONFIG_SYS_ENV_OFFSET
5112 CONFIG_SYS_ENV_SECT_SIZE 5111 CONFIG_SYS_ENV_SECT_SIZE
5113 CONFIG_SYS_EPLD_BASE 5112 CONFIG_SYS_EPLD_BASE
5114 CONFIG_SYS_ETHOC_BASE 5113 CONFIG_SYS_ETHOC_BASE
5115 CONFIG_SYS_ETHOC_BUFFER_ADDR 5114 CONFIG_SYS_ETHOC_BUFFER_ADDR
5116 CONFIG_SYS_ETH_IOBASE 5115 CONFIG_SYS_ETH_IOBASE
5117 CONFIG_SYS_ETVPE_CLK 5116 CONFIG_SYS_ETVPE_CLK
5118 CONFIG_SYS_EXCEPTION_VECTORS_HIGH 5117 CONFIG_SYS_EXCEPTION_VECTORS_HIGH
5119 CONFIG_SYS_EXTBDINFO 5118 CONFIG_SYS_EXTBDINFO
5120 CONFIG_SYS_EXTRA_ENV_RELOC 5119 CONFIG_SYS_EXTRA_ENV_RELOC
5121 CONFIG_SYS_EXT_SERIAL_CLOCK 5120 CONFIG_SYS_EXT_SERIAL_CLOCK
5122 CONFIG_SYS_FAST_CLK 5121 CONFIG_SYS_FAST_CLK
5123 CONFIG_SYS_FAULT_ECCONFIG_SYS_NO_FLASHHO_LINK_DOWN 5122 CONFIG_SYS_FAULT_ECCONFIG_SYS_NO_FLASHHO_LINK_DOWN
5124 CONFIG_SYS_FAULT_ECHO_LINK_DOWN 5123 CONFIG_SYS_FAULT_ECHO_LINK_DOWN
5125 CONFIG_SYS_FAULT_MII_ADDR 5124 CONFIG_SYS_FAULT_MII_ADDR
5126 CONFIG_SYS_FCC_PSMR 5125 CONFIG_SYS_FCC_PSMR
5127 CONFIG_SYS_FCPU133MHZ 5126 CONFIG_SYS_FCPU133MHZ
5128 CONFIG_SYS_FCPU266MHZ 5127 CONFIG_SYS_FCPU266MHZ
5129 CONFIG_SYS_FCPU333MHZ 5128 CONFIG_SYS_FCPU333MHZ
5130 CONFIG_SYS_FDC_DRIVE_NUMBER 5129 CONFIG_SYS_FDC_DRIVE_NUMBER
5131 CONFIG_SYS_FDC_HW_INIT 5130 CONFIG_SYS_FDC_HW_INIT
5132 CONFIG_SYS_FDT_ADDR 5131 CONFIG_SYS_FDT_ADDR
5133 CONFIG_SYS_FDT_BASE 5132 CONFIG_SYS_FDT_BASE
5134 CONFIG_SYS_FDT_LOAD_ADDR 5133 CONFIG_SYS_FDT_LOAD_ADDR
5135 CONFIG_SYS_FDT_PAD 5134 CONFIG_SYS_FDT_PAD
5136 CONFIG_SYS_FDT_SIZE 5135 CONFIG_SYS_FDT_SIZE
5137 CONFIG_SYS_FEC0_IOBASE 5136 CONFIG_SYS_FEC0_IOBASE
5138 CONFIG_SYS_FEC0_MIIBASE 5137 CONFIG_SYS_FEC0_MIIBASE
5139 CONFIG_SYS_FEC0_PHYADDR 5138 CONFIG_SYS_FEC0_PHYADDR
5140 CONFIG_SYS_FEC0_PINMUX 5139 CONFIG_SYS_FEC0_PINMUX
5141 CONFIG_SYS_FEC1_IOBASE 5140 CONFIG_SYS_FEC1_IOBASE
5142 CONFIG_SYS_FEC1_MIIBASE 5141 CONFIG_SYS_FEC1_MIIBASE
5143 CONFIG_SYS_FEC1_PHYADDR 5142 CONFIG_SYS_FEC1_PHYADDR
5144 CONFIG_SYS_FEC1_PINMUX 5143 CONFIG_SYS_FEC1_PINMUX
5145 CONFIG_SYS_FECI2C 5144 CONFIG_SYS_FECI2C
5146 CONFIG_SYS_FEC_BUF_USE_SRAM 5145 CONFIG_SYS_FEC_BUF_USE_SRAM
5147 CONFIG_SYS_FEC_FULL_MII 5146 CONFIG_SYS_FEC_FULL_MII
5148 CONFIG_SYS_FEC_NO_SHARED_PHY 5147 CONFIG_SYS_FEC_NO_SHARED_PHY
5149 CONFIG_SYS_FIFO_BASE 5148 CONFIG_SYS_FIFO_BASE
5150 CONFIG_SYS_FIXED_PHY_ADDR 5149 CONFIG_SYS_FIXED_PHY_ADDR
5151 CONFIG_SYS_FIXED_PHY_PORT 5150 CONFIG_SYS_FIXED_PHY_PORT
5152 CONFIG_SYS_FIXED_PHY_PORTS 5151 CONFIG_SYS_FIXED_PHY_PORTS
5153 CONFIG_SYS_FLASH 5152 CONFIG_SYS_FLASH
5154 CONFIG_SYS_FLASH0 5153 CONFIG_SYS_FLASH0
5155 CONFIG_SYS_FLASH0_BASE 5154 CONFIG_SYS_FLASH0_BASE
5156 CONFIG_SYS_FLASH1 5155 CONFIG_SYS_FLASH1
5157 CONFIG_SYS_FLASH1_BASE 5156 CONFIG_SYS_FLASH1_BASE
5158 CONFIG_SYS_FLASH1_BASE_PHYS 5157 CONFIG_SYS_FLASH1_BASE_PHYS
5159 CONFIG_SYS_FLASH1_BASE_PHYS_EARLY 5158 CONFIG_SYS_FLASH1_BASE_PHYS_EARLY
5160 CONFIG_SYS_FLASH2_BASE 5159 CONFIG_SYS_FLASH2_BASE
5161 CONFIG_SYS_FLASHBOOT 5160 CONFIG_SYS_FLASHBOOT
5162 CONFIG_SYS_FLASH_2ND_16BIT_DEV 5161 CONFIG_SYS_FLASH_2ND_16BIT_DEV
5163 CONFIG_SYS_FLASH_2ND_ADDR 5162 CONFIG_SYS_FLASH_2ND_ADDR
5164 CONFIG_SYS_FLASH_ADDR0 5163 CONFIG_SYS_FLASH_ADDR0
5165 CONFIG_SYS_FLASH_ADDR1 5164 CONFIG_SYS_FLASH_ADDR1
5166 CONFIG_SYS_FLASH_ADDR_BASE 5165 CONFIG_SYS_FLASH_ADDR_BASE
5167 CONFIG_SYS_FLASH_AMD_CHECK_DQ7 5166 CONFIG_SYS_FLASH_AMD_CHECK_DQ7
5168 CONFIG_SYS_FLASH_AUTOPROTECT_LIST 5167 CONFIG_SYS_FLASH_AUTOPROTECT_LIST
5169 CONFIG_SYS_FLASH_BANKS_LIST 5168 CONFIG_SYS_FLASH_BANKS_LIST
5170 CONFIG_SYS_FLASH_BANKS_SIZES 5169 CONFIG_SYS_FLASH_BANKS_SIZES
5171 CONFIG_SYS_FLASH_BANK_SIZE 5170 CONFIG_SYS_FLASH_BANK_SIZE
5172 CONFIG_SYS_FLASH_BASE 5171 CONFIG_SYS_FLASH_BASE
5173 CONFIG_SYS_FLASH_BASE0 5172 CONFIG_SYS_FLASH_BASE0
5174 CONFIG_SYS_FLASH_BASE1 5173 CONFIG_SYS_FLASH_BASE1
5175 CONFIG_SYS_FLASH_BASE2 5174 CONFIG_SYS_FLASH_BASE2
5176 CONFIG_SYS_FLASH_BASE_1 5175 CONFIG_SYS_FLASH_BASE_1
5177 CONFIG_SYS_FLASH_BASE_2 5176 CONFIG_SYS_FLASH_BASE_2
5178 CONFIG_SYS_FLASH_BASE_CS1 5177 CONFIG_SYS_FLASH_BASE_CS1
5179 CONFIG_SYS_FLASH_BASE_PHYS 5178 CONFIG_SYS_FLASH_BASE_PHYS
5180 CONFIG_SYS_FLASH_BASE_PHYS_EARLY 5179 CONFIG_SYS_FLASH_BASE_PHYS_EARLY
5181 CONFIG_SYS_FLASH_BASE_PHYS_H 5180 CONFIG_SYS_FLASH_BASE_PHYS_H
5182 CONFIG_SYS_FLASH_BASE_PHYS_L 5181 CONFIG_SYS_FLASH_BASE_PHYS_L
5183 CONFIG_SYS_FLASH_BASE_PHYS_LOW 5182 CONFIG_SYS_FLASH_BASE_PHYS_LOW
5184 CONFIG_SYS_FLASH_BR_PRELIM 5183 CONFIG_SYS_FLASH_BR_PRELIM
5185 CONFIG_SYS_FLASH_CFI 5184 CONFIG_SYS_FLASH_CFI
5186 CONFIG_SYS_FLASH_CFI_AMD_RESET 5185 CONFIG_SYS_FLASH_CFI_AMD_RESET
5187 CONFIG_SYS_FLASH_CFI_BROKEN_TABLE 5186 CONFIG_SYS_FLASH_CFI_BROKEN_TABLE
5188 CONFIG_SYS_FLASH_CFI_BYPASS_READ 5187 CONFIG_SYS_FLASH_CFI_BYPASS_READ
5189 CONFIG_SYS_FLASH_CFI_NONBLOCK 5188 CONFIG_SYS_FLASH_CFI_NONBLOCK
5190 CONFIG_SYS_FLASH_CFI_WIDTH 5189 CONFIG_SYS_FLASH_CFI_WIDTH
5191 CONFIG_SYS_FLASH_CHECKSUM 5190 CONFIG_SYS_FLASH_CHECKSUM
5192 CONFIG_SYS_FLASH_CHECK_BLANK_BEFORE_ERASE 5191 CONFIG_SYS_FLASH_CHECK_BLANK_BEFORE_ERASE
5193 CONFIG_SYS_FLASH_EMPTY_INFO 5192 CONFIG_SYS_FLASH_EMPTY_INFO
5194 CONFIG_SYS_FLASH_ERASE_TOUT 5193 CONFIG_SYS_FLASH_ERASE_TOUT
5195 CONFIG_SYS_FLASH_LEGACY_256Kx8 5194 CONFIG_SYS_FLASH_LEGACY_256Kx8
5196 CONFIG_SYS_FLASH_LEGACY_512Kx16 5195 CONFIG_SYS_FLASH_LEGACY_512Kx16
5197 CONFIG_SYS_FLASH_LEGACY_512Kx8 5196 CONFIG_SYS_FLASH_LEGACY_512Kx8
5198 CONFIG_SYS_FLASH_LOCK_TOUT 5197 CONFIG_SYS_FLASH_LOCK_TOUT
5199 CONFIG_SYS_FLASH_OR_PRELIM 5198 CONFIG_SYS_FLASH_OR_PRELIM
5200 CONFIG_SYS_FLASH_PARMSECT_SZ 5199 CONFIG_SYS_FLASH_PARMSECT_SZ
5201 CONFIG_SYS_FLASH_PROTECTION 5200 CONFIG_SYS_FLASH_PROTECTION
5202 CONFIG_SYS_FLASH_QUIET_TEST 5201 CONFIG_SYS_FLASH_QUIET_TEST
5203 CONFIG_SYS_FLASH_READ0 5202 CONFIG_SYS_FLASH_READ0
5204 CONFIG_SYS_FLASH_READ1 5203 CONFIG_SYS_FLASH_READ1
5205 CONFIG_SYS_FLASH_READ2 5204 CONFIG_SYS_FLASH_READ2
5206 CONFIG_SYS_FLASH_SECT_SIZE 5205 CONFIG_SYS_FLASH_SECT_SIZE
5207 CONFIG_SYS_FLASH_SECT_SZ 5206 CONFIG_SYS_FLASH_SECT_SZ
5208 CONFIG_SYS_FLASH_SIZE 5207 CONFIG_SYS_FLASH_SIZE
5209 CONFIG_SYS_FLASH_SIZE_1 5208 CONFIG_SYS_FLASH_SIZE_1
5210 CONFIG_SYS_FLASH_SIZE_2 5209 CONFIG_SYS_FLASH_SIZE_2
5211 CONFIG_SYS_FLASH_UNLOCK_TOUT 5210 CONFIG_SYS_FLASH_UNLOCK_TOUT
5212 CONFIG_SYS_FLASH_USE_BUFFER_WRITE 5211 CONFIG_SYS_FLASH_USE_BUFFER_WRITE
5213 CONFIG_SYS_FLASH_VERIFY_AFTER_WRITE 5212 CONFIG_SYS_FLASH_VERIFY_AFTER_WRITE
5214 CONFIG_SYS_FLASH_WORD_SIZE 5213 CONFIG_SYS_FLASH_WORD_SIZE
5215 CONFIG_SYS_FLASH_WRITE_TOUT 5214 CONFIG_SYS_FLASH_WRITE_TOUT
5216 CONFIG_SYS_FLYCNFG_VAL 5215 CONFIG_SYS_FLYCNFG_VAL
5217 CONFIG_SYS_FM1_10GEC1_PHY_ADDR 5216 CONFIG_SYS_FM1_10GEC1_PHY_ADDR
5218 CONFIG_SYS_FM1_10GEC2_PHY_ADDR 5217 CONFIG_SYS_FM1_10GEC2_PHY_ADDR
5219 CONFIG_SYS_FM1_CLK 5218 CONFIG_SYS_FM1_CLK
5220 CONFIG_SYS_FM1_DTSEC1_MDIO_ADDR 5219 CONFIG_SYS_FM1_DTSEC1_MDIO_ADDR
5221 CONFIG_SYS_FM1_DTSEC1_PHY_ADDR 5220 CONFIG_SYS_FM1_DTSEC1_PHY_ADDR
5222 CONFIG_SYS_FM1_DTSEC1_RISER_PHY_ADDR 5221 CONFIG_SYS_FM1_DTSEC1_RISER_PHY_ADDR
5223 CONFIG_SYS_FM1_DTSEC2_PHY_ADDR 5222 CONFIG_SYS_FM1_DTSEC2_PHY_ADDR
5224 CONFIG_SYS_FM1_DTSEC2_RISER_PHY_ADDR 5223 CONFIG_SYS_FM1_DTSEC2_RISER_PHY_ADDR
5225 CONFIG_SYS_FM1_DTSEC3_PHY_ADDR 5224 CONFIG_SYS_FM1_DTSEC3_PHY_ADDR
5226 CONFIG_SYS_FM1_DTSEC3_RISER_PHY_ADDR 5225 CONFIG_SYS_FM1_DTSEC3_RISER_PHY_ADDR
5227 CONFIG_SYS_FM1_DTSEC4_PHY_ADDR 5226 CONFIG_SYS_FM1_DTSEC4_PHY_ADDR
5228 CONFIG_SYS_FM1_DTSEC4_RISER_PHY_ADDR 5227 CONFIG_SYS_FM1_DTSEC4_RISER_PHY_ADDR
5229 CONFIG_SYS_FM1_DTSEC5_PHY_ADDR 5228 CONFIG_SYS_FM1_DTSEC5_PHY_ADDR
5230 CONFIG_SYS_FM1_DTSEC_MDIO_ADDR 5229 CONFIG_SYS_FM1_DTSEC_MDIO_ADDR
5231 CONFIG_SYS_FM1_ONBOARD_PHY1_ADDR 5230 CONFIG_SYS_FM1_ONBOARD_PHY1_ADDR
5232 CONFIG_SYS_FM1_ONBOARD_PHY2_ADDR 5231 CONFIG_SYS_FM1_ONBOARD_PHY2_ADDR
5233 CONFIG_SYS_FM1_QSGMII11_PHY_ADDR 5232 CONFIG_SYS_FM1_QSGMII11_PHY_ADDR
5234 CONFIG_SYS_FM1_QSGMII21_PHY_ADDR 5233 CONFIG_SYS_FM1_QSGMII21_PHY_ADDR
5235 CONFIG_SYS_FM1_TGEC_MDIO_ADDR 5234 CONFIG_SYS_FM1_TGEC_MDIO_ADDR
5236 CONFIG_SYS_FM2_10GEC1_PHY_ADDR 5235 CONFIG_SYS_FM2_10GEC1_PHY_ADDR
5237 CONFIG_SYS_FM2_CLK 5236 CONFIG_SYS_FM2_CLK
5238 CONFIG_SYS_FM2_DTSEC1_PHY_ADDR 5237 CONFIG_SYS_FM2_DTSEC1_PHY_ADDR
5239 CONFIG_SYS_FM2_DTSEC2_PHY_ADDR 5238 CONFIG_SYS_FM2_DTSEC2_PHY_ADDR
5240 CONFIG_SYS_FM2_DTSEC3_PHY_ADDR 5239 CONFIG_SYS_FM2_DTSEC3_PHY_ADDR
5241 CONFIG_SYS_FM2_DTSEC4_PHY_ADDR 5240 CONFIG_SYS_FM2_DTSEC4_PHY_ADDR
5242 CONFIG_SYS_FM2_DTSEC_MDIO_ADDR 5241 CONFIG_SYS_FM2_DTSEC_MDIO_ADDR
5243 CONFIG_SYS_FM2_TGEC_MDIO_ADDR 5242 CONFIG_SYS_FM2_TGEC_MDIO_ADDR
5244 CONFIG_SYS_FMAN_FW_ADDR 5243 CONFIG_SYS_FMAN_FW_ADDR
5245 CONFIG_SYS_FMAN_V3 5244 CONFIG_SYS_FMAN_V3
5246 CONFIG_SYS_FM_MURAM_SIZE 5245 CONFIG_SYS_FM_MURAM_SIZE
5247 CONFIG_SYS_FORM_3U_CPCI 5246 CONFIG_SYS_FORM_3U_CPCI
5248 CONFIG_SYS_FORM_3U_VPX 5247 CONFIG_SYS_FORM_3U_VPX
5249 CONFIG_SYS_FORM_6U_CPCI 5248 CONFIG_SYS_FORM_6U_CPCI
5250 CONFIG_SYS_FORM_6U_VPX 5249 CONFIG_SYS_FORM_6U_VPX
5251 CONFIG_SYS_FORM_AMC 5250 CONFIG_SYS_FORM_AMC
5252 CONFIG_SYS_FORM_ATCA_AMC 5251 CONFIG_SYS_FORM_ATCA_AMC
5253 CONFIG_SYS_FORM_ATCA_PMC 5252 CONFIG_SYS_FORM_ATCA_PMC
5254 CONFIG_SYS_FORM_CUSTOM 5253 CONFIG_SYS_FORM_CUSTOM
5255 CONFIG_SYS_FORM_PCI 5254 CONFIG_SYS_FORM_PCI
5256 CONFIG_SYS_FORM_PCI_EXPRESS 5255 CONFIG_SYS_FORM_PCI_EXPRESS
5257 CONFIG_SYS_FORM_PMC 5256 CONFIG_SYS_FORM_PMC
5258 CONFIG_SYS_FORM_PMC_XMC 5257 CONFIG_SYS_FORM_PMC_XMC
5259 CONFIG_SYS_FORM_VME 5258 CONFIG_SYS_FORM_VME
5260 CONFIG_SYS_FORM_XMC 5259 CONFIG_SYS_FORM_XMC
5261 CONFIG_SYS_FPGA0_BASE 5260 CONFIG_SYS_FPGA0_BASE
5262 CONFIG_SYS_FPGA0_SIZE 5261 CONFIG_SYS_FPGA0_SIZE
5263 CONFIG_SYS_FPGA1_BASE 5262 CONFIG_SYS_FPGA1_BASE
5264 CONFIG_SYS_FPGA2_BASE 5263 CONFIG_SYS_FPGA2_BASE
5265 CONFIG_SYS_FPGA3_BASE 5264 CONFIG_SYS_FPGA3_BASE
5266 CONFIG_SYS_FPGAREG_DATE 5265 CONFIG_SYS_FPGAREG_DATE
5267 CONFIG_SYS_FPGAREG_DIPSW 5266 CONFIG_SYS_FPGAREG_DIPSW
5268 CONFIG_SYS_FPGAREG_FREQ 5267 CONFIG_SYS_FPGAREG_FREQ
5269 CONFIG_SYS_FPGAREG_RESET 5268 CONFIG_SYS_FPGAREG_RESET
5270 CONFIG_SYS_FPGAREG_RESET_CODE 5269 CONFIG_SYS_FPGAREG_RESET_CODE
5271 CONFIG_SYS_FPGA_AMASK 5270 CONFIG_SYS_FPGA_AMASK
5272 CONFIG_SYS_FPGA_BASE 5271 CONFIG_SYS_FPGA_BASE
5273 CONFIG_SYS_FPGA_BASE0 5272 CONFIG_SYS_FPGA_BASE0
5274 CONFIG_SYS_FPGA_BASE1 5273 CONFIG_SYS_FPGA_BASE1
5275 CONFIG_SYS_FPGA_BASE_0 5274 CONFIG_SYS_FPGA_BASE_0
5276 CONFIG_SYS_FPGA_BASE_1 5275 CONFIG_SYS_FPGA_BASE_1
5277 CONFIG_SYS_FPGA_BASE_ADDR 5276 CONFIG_SYS_FPGA_BASE_ADDR
5278 CONFIG_SYS_FPGA_BASE_PHYS 5277 CONFIG_SYS_FPGA_BASE_PHYS
5279 CONFIG_SYS_FPGA_CHECK_BUSY 5278 CONFIG_SYS_FPGA_CHECK_BUSY
5280 CONFIG_SYS_FPGA_CHECK_CTRLC 5279 CONFIG_SYS_FPGA_CHECK_CTRLC
5281 CONFIG_SYS_FPGA_CHECK_ERROR 5280 CONFIG_SYS_FPGA_CHECK_ERROR
5282 CONFIG_SYS_FPGA_CHIPSIDE_LOOPBACK 5281 CONFIG_SYS_FPGA_CHIPSIDE_LOOPBACK
5283 CONFIG_SYS_FPGA_CLK 5282 CONFIG_SYS_FPGA_CLK
5284 CONFIG_SYS_FPGA_COMMON 5283 CONFIG_SYS_FPGA_COMMON
5285 CONFIG_SYS_FPGA_COUNT 5284 CONFIG_SYS_FPGA_COUNT
5286 CONFIG_SYS_FPGA_CSOR 5285 CONFIG_SYS_FPGA_CSOR
5287 CONFIG_SYS_FPGA_CSPR 5286 CONFIG_SYS_FPGA_CSPR
5288 CONFIG_SYS_FPGA_CSPR_EXT 5287 CONFIG_SYS_FPGA_CSPR_EXT
5289 CONFIG_SYS_FPGA_CTRL 5288 CONFIG_SYS_FPGA_CTRL
5290 CONFIG_SYS_FPGA_CTRL_CF_RESET 5289 CONFIG_SYS_FPGA_CTRL_CF_RESET
5291 CONFIG_SYS_FPGA_CTRL_PS2_RESET 5290 CONFIG_SYS_FPGA_CTRL_PS2_RESET
5292 CONFIG_SYS_FPGA_CTRL_WDI 5291 CONFIG_SYS_FPGA_CTRL_WDI
5293 CONFIG_SYS_FPGA_DATA 5292 CONFIG_SYS_FPGA_DATA
5294 CONFIG_SYS_FPGA_DONE 5293 CONFIG_SYS_FPGA_DONE
5295 CONFIG_SYS_FPGA_DPRAM_RST 5294 CONFIG_SYS_FPGA_DPRAM_RST
5296 CONFIG_SYS_FPGA_DPRAM_RW_TYPE 5295 CONFIG_SYS_FPGA_DPRAM_RW_TYPE
5297 CONFIG_SYS_FPGA_DPRAM_R_INT_LINE 5296 CONFIG_SYS_FPGA_DPRAM_R_INT_LINE
5298 CONFIG_SYS_FPGA_DPRAM_W_INT_LINE 5297 CONFIG_SYS_FPGA_DPRAM_W_INT_LINE
5299 CONFIG_SYS_FPGA_FIFO_BASE 5298 CONFIG_SYS_FPGA_FIFO_BASE
5300 CONFIG_SYS_FPGA_FTIM0 5299 CONFIG_SYS_FPGA_FTIM0
5301 CONFIG_SYS_FPGA_FTIM1 5300 CONFIG_SYS_FPGA_FTIM1
5302 CONFIG_SYS_FPGA_FTIM2 5301 CONFIG_SYS_FPGA_FTIM2
5303 CONFIG_SYS_FPGA_FTIM3 5302 CONFIG_SYS_FPGA_FTIM3
5304 CONFIG_SYS_FPGA_INIT 5303 CONFIG_SYS_FPGA_INIT
5305 CONFIG_SYS_FPGA_IS_PROTO 5304 CONFIG_SYS_FPGA_IS_PROTO
5306 CONFIG_SYS_FPGA_LINESIDE_LOOPBACK 5305 CONFIG_SYS_FPGA_LINESIDE_LOOPBACK
5307 CONFIG_SYS_FPGA_MAGIC 5306 CONFIG_SYS_FPGA_MAGIC
5308 CONFIG_SYS_FPGA_MAGIC_MASK 5307 CONFIG_SYS_FPGA_MAGIC_MASK
5309 CONFIG_SYS_FPGA_MAX_SIZE 5308 CONFIG_SYS_FPGA_MAX_SIZE
5310 CONFIG_SYS_FPGA_MODE 5309 CONFIG_SYS_FPGA_MODE
5311 CONFIG_SYS_FPGA_MODE_CF_RESET 5310 CONFIG_SYS_FPGA_MODE_CF_RESET
5312 CONFIG_SYS_FPGA_MODE_DUART_RESET 5311 CONFIG_SYS_FPGA_MODE_DUART_RESET
5313 CONFIG_SYS_FPGA_MODE_ENABLE_OUTPUT 5312 CONFIG_SYS_FPGA_MODE_ENABLE_OUTPUT
5314 CONFIG_SYS_FPGA_MODE_TS_CLEAR 5313 CONFIG_SYS_FPGA_MODE_TS_CLEAR
5315 CONFIG_SYS_FPGA_MODE_TS_IRQ_CLEAR 5314 CONFIG_SYS_FPGA_MODE_TS_IRQ_CLEAR
5316 CONFIG_SYS_FPGA_MODE_TS_IRQ_ENABLE 5315 CONFIG_SYS_FPGA_MODE_TS_IRQ_ENABLE
5317 CONFIG_SYS_FPGA_NO_RFL_HI 5316 CONFIG_SYS_FPGA_NO_RFL_HI
5318 CONFIG_SYS_FPGA_PHY0_INT 5317 CONFIG_SYS_FPGA_PHY0_INT
5319 CONFIG_SYS_FPGA_PHY1_INT 5318 CONFIG_SYS_FPGA_PHY1_INT
5320 CONFIG_SYS_FPGA_PRG 5319 CONFIG_SYS_FPGA_PRG
5321 CONFIG_SYS_FPGA_PROG 5320 CONFIG_SYS_FPGA_PROG
5322 CONFIG_SYS_FPGA_PROG_FEEDBACK 5321 CONFIG_SYS_FPGA_PROG_FEEDBACK
5323 CONFIG_SYS_FPGA_PROG_TIME 5322 CONFIG_SYS_FPGA_PROG_TIME
5324 CONFIG_SYS_FPGA_PTR 5323 CONFIG_SYS_FPGA_PTR
5325 CONFIG_SYS_FPGA_REG_BASE 5324 CONFIG_SYS_FPGA_REG_BASE
5326 CONFIG_SYS_FPGA_REG_BASE_ADDR 5325 CONFIG_SYS_FPGA_REG_BASE_ADDR
5327 CONFIG_SYS_FPGA_SIZE 5326 CONFIG_SYS_FPGA_SIZE
5328 CONFIG_SYS_FPGA_SLIC0_CS 5327 CONFIG_SYS_FPGA_SLIC0_CS
5329 CONFIG_SYS_FPGA_SLIC0_ENABLE 5328 CONFIG_SYS_FPGA_SLIC0_ENABLE
5330 CONFIG_SYS_FPGA_SLIC0_INT 5329 CONFIG_SYS_FPGA_SLIC0_INT
5331 CONFIG_SYS_FPGA_SLIC0_R_DPRAM_INT 5330 CONFIG_SYS_FPGA_SLIC0_R_DPRAM_INT
5332 CONFIG_SYS_FPGA_SLIC0_W_DPRAM_INT 5331 CONFIG_SYS_FPGA_SLIC0_W_DPRAM_INT
5333 CONFIG_SYS_FPGA_SLIC1_CS 5332 CONFIG_SYS_FPGA_SLIC1_CS
5334 CONFIG_SYS_FPGA_SLIC1_ENABLE 5333 CONFIG_SYS_FPGA_SLIC1_ENABLE
5335 CONFIG_SYS_FPGA_SLIC1_INT 5334 CONFIG_SYS_FPGA_SLIC1_INT
5336 CONFIG_SYS_FPGA_SLIC1_R_DPRAM_INT 5335 CONFIG_SYS_FPGA_SLIC1_R_DPRAM_INT
5337 CONFIG_SYS_FPGA_SLIC1_W_DPRAM_INT 5336 CONFIG_SYS_FPGA_SLIC1_W_DPRAM_INT
5338 CONFIG_SYS_FPGA_SPARTAN2 5337 CONFIG_SYS_FPGA_SPARTAN2
5339 CONFIG_SYS_FPGA_STATUS 5338 CONFIG_SYS_FPGA_STATUS
5340 CONFIG_SYS_FPGA_STATUS_DIP0 5339 CONFIG_SYS_FPGA_STATUS_DIP0
5341 CONFIG_SYS_FPGA_STATUS_DIP1 5340 CONFIG_SYS_FPGA_STATUS_DIP1
5342 CONFIG_SYS_FPGA_STATUS_DIP2 5341 CONFIG_SYS_FPGA_STATUS_DIP2
5343 CONFIG_SYS_FPGA_STATUS_FLASH 5342 CONFIG_SYS_FPGA_STATUS_FLASH
5344 CONFIG_SYS_FPGA_STATUS_TS_IRQ 5343 CONFIG_SYS_FPGA_STATUS_TS_IRQ
5345 CONFIG_SYS_FPGA_TS 5344 CONFIG_SYS_FPGA_TS
5346 CONFIG_SYS_FPGA_TS_CAP0 5345 CONFIG_SYS_FPGA_TS_CAP0
5347 CONFIG_SYS_FPGA_TS_CAP0_LOW 5346 CONFIG_SYS_FPGA_TS_CAP0_LOW
5348 CONFIG_SYS_FPGA_TS_CAP1 5347 CONFIG_SYS_FPGA_TS_CAP1
5349 CONFIG_SYS_FPGA_TS_CAP1_LOW 5348 CONFIG_SYS_FPGA_TS_CAP1_LOW
5350 CONFIG_SYS_FPGA_TS_CAP2 5349 CONFIG_SYS_FPGA_TS_CAP2
5351 CONFIG_SYS_FPGA_TS_CAP2_LOW 5350 CONFIG_SYS_FPGA_TS_CAP2_LOW
5352 CONFIG_SYS_FPGA_TS_CAP3 5351 CONFIG_SYS_FPGA_TS_CAP3
5353 CONFIG_SYS_FPGA_TS_CAP3_LOW 5352 CONFIG_SYS_FPGA_TS_CAP3_LOW
5354 CONFIG_SYS_FPGA_TS_LOW 5353 CONFIG_SYS_FPGA_TS_LOW
5355 CONFIG_SYS_FPGA_UART0_FO 5354 CONFIG_SYS_FPGA_UART0_FO
5356 CONFIG_SYS_FPGA_UART1_FO 5355 CONFIG_SYS_FPGA_UART1_FO
5357 CONFIG_SYS_FPGA_USER_LED0 5356 CONFIG_SYS_FPGA_USER_LED0
5358 CONFIG_SYS_FPGA_USER_LED1 5357 CONFIG_SYS_FPGA_USER_LED1
5359 CONFIG_SYS_FPGA_VER_MASK 5358 CONFIG_SYS_FPGA_VER_MASK
5360 CONFIG_SYS_FPGA_WAIT 5359 CONFIG_SYS_FPGA_WAIT
5361 CONFIG_SYS_FPGA_WAIT_BUSY 5360 CONFIG_SYS_FPGA_WAIT_BUSY
5362 CONFIG_SYS_FPGA_WAIT_CONFIG 5361 CONFIG_SYS_FPGA_WAIT_CONFIG
5363 CONFIG_SYS_FPGA_WAIT_INIT 5362 CONFIG_SYS_FPGA_WAIT_INIT
5364 CONFIG_SYS_FPGA_xxx 5363 CONFIG_SYS_FPGA_xxx
5365 CONFIG_SYS_FSL_A004447_SVR_REV 5364 CONFIG_SYS_FSL_A004447_SVR_REV
5366 CONFIG_SYS_FSL_AIOP1_BASE 5365 CONFIG_SYS_FSL_AIOP1_BASE
5367 CONFIG_SYS_FSL_AIOP1_SIZE 5366 CONFIG_SYS_FSL_AIOP1_SIZE
5368 CONFIG_SYS_FSL_B4860QDS_XFI_ERR 5367 CONFIG_SYS_FSL_B4860QDS_XFI_ERR
5369 CONFIG_SYS_FSL_BMAN_ADDR 5368 CONFIG_SYS_FSL_BMAN_ADDR
5370 CONFIG_SYS_FSL_BMAN_OFFSET 5369 CONFIG_SYS_FSL_BMAN_OFFSET
5371 CONFIG_SYS_FSL_BOOTROM_BASE 5370 CONFIG_SYS_FSL_BOOTROM_BASE
5372 CONFIG_SYS_FSL_BOOTROM_SIZE 5371 CONFIG_SYS_FSL_BOOTROM_SIZE
5373 CONFIG_SYS_FSL_CCSR_BASE 5372 CONFIG_SYS_FSL_CCSR_BASE
5374 CONFIG_SYS_FSL_CCSR_GUR_BE 5373 CONFIG_SYS_FSL_CCSR_GUR_BE
5375 CONFIG_SYS_FSL_CCSR_GUR_LE 5374 CONFIG_SYS_FSL_CCSR_GUR_LE
5376 CONFIG_SYS_FSL_CCSR_SCFG_BE 5375 CONFIG_SYS_FSL_CCSR_SCFG_BE
5377 CONFIG_SYS_FSL_CCSR_SCFG_LE 5376 CONFIG_SYS_FSL_CCSR_SCFG_LE
5378 CONFIG_SYS_FSL_CCSR_SIZE 5377 CONFIG_SYS_FSL_CCSR_SIZE
5379 CONFIG_SYS_FSL_CH3_CLK_CTRL_ADDR 5378 CONFIG_SYS_FSL_CH3_CLK_CTRL_ADDR
5380 CONFIG_SYS_FSL_CH3_CLK_GRPA_ADDR 5379 CONFIG_SYS_FSL_CH3_CLK_GRPA_ADDR
5381 CONFIG_SYS_FSL_CH3_CLK_GRPB_ADDR 5380 CONFIG_SYS_FSL_CH3_CLK_GRPB_ADDR
5382 CONFIG_SYS_FSL_CLK 5381 CONFIG_SYS_FSL_CLK
5383 CONFIG_SYS_FSL_CLK_ADDR 5382 CONFIG_SYS_FSL_CLK_ADDR
5384 CONFIG_SYS_FSL_CLUSTER_1_L2 5383 CONFIG_SYS_FSL_CLUSTER_1_L2
5385 CONFIG_SYS_FSL_CLUSTER_1_L2_OFFSET 5384 CONFIG_SYS_FSL_CLUSTER_1_L2_OFFSET
5386 CONFIG_SYS_FSL_CLUSTER_CLOCKS 5385 CONFIG_SYS_FSL_CLUSTER_CLOCKS
5387 CONFIG_SYS_FSL_CORENET_CCM_ADDR 5386 CONFIG_SYS_FSL_CORENET_CCM_ADDR
5388 CONFIG_SYS_FSL_CORENET_CCM_OFFSET 5387 CONFIG_SYS_FSL_CORENET_CCM_OFFSET
5389 CONFIG_SYS_FSL_CORENET_CLK_ADDR 5388 CONFIG_SYS_FSL_CORENET_CLK_ADDR
5390 CONFIG_SYS_FSL_CORENET_CLK_OFFSET 5389 CONFIG_SYS_FSL_CORENET_CLK_OFFSET
5391 CONFIG_SYS_FSL_CORENET_PMAN 5390 CONFIG_SYS_FSL_CORENET_PMAN
5392 CONFIG_SYS_FSL_CORENET_PMAN1_OFFSET 5391 CONFIG_SYS_FSL_CORENET_PMAN1_OFFSET
5393 CONFIG_SYS_FSL_CORENET_PMAN2_OFFSET 5392 CONFIG_SYS_FSL_CORENET_PMAN2_OFFSET
5394 CONFIG_SYS_FSL_CORENET_PMAN3_OFFSET 5393 CONFIG_SYS_FSL_CORENET_PMAN3_OFFSET
5395 CONFIG_SYS_FSL_CORENET_PME_ADDR 5394 CONFIG_SYS_FSL_CORENET_PME_ADDR
5396 CONFIG_SYS_FSL_CORENET_PME_OFFSET 5395 CONFIG_SYS_FSL_CORENET_PME_OFFSET
5397 CONFIG_SYS_FSL_CORENET_RCPM_ADDR 5396 CONFIG_SYS_FSL_CORENET_RCPM_ADDR
5398 CONFIG_SYS_FSL_CORENET_RCPM_OFFSET 5397 CONFIG_SYS_FSL_CORENET_RCPM_OFFSET
5399 CONFIG_SYS_FSL_CORENET_RMAN_ADDR 5398 CONFIG_SYS_FSL_CORENET_RMAN_ADDR
5400 CONFIG_SYS_FSL_CORENET_RMAN_OFFSET 5399 CONFIG_SYS_FSL_CORENET_RMAN_OFFSET
5401 CONFIG_SYS_FSL_CORENET_SERDES2_ADDR 5400 CONFIG_SYS_FSL_CORENET_SERDES2_ADDR
5402 CONFIG_SYS_FSL_CORENET_SERDES2_OFFSET 5401 CONFIG_SYS_FSL_CORENET_SERDES2_OFFSET
5403 CONFIG_SYS_FSL_CORENET_SERDES3_ADDR 5402 CONFIG_SYS_FSL_CORENET_SERDES3_ADDR
5404 CONFIG_SYS_FSL_CORENET_SERDES3_OFFSET 5403 CONFIG_SYS_FSL_CORENET_SERDES3_OFFSET
5405 CONFIG_SYS_FSL_CORENET_SERDES4_ADDR 5404 CONFIG_SYS_FSL_CORENET_SERDES4_ADDR
5406 CONFIG_SYS_FSL_CORENET_SERDES4_OFFSET 5405 CONFIG_SYS_FSL_CORENET_SERDES4_OFFSET
5407 CONFIG_SYS_FSL_CORENET_SERDES_ADDR 5406 CONFIG_SYS_FSL_CORENET_SERDES_ADDR
5408 CONFIG_SYS_FSL_CORENET_SERDES_OFFSET 5407 CONFIG_SYS_FSL_CORENET_SERDES_OFFSET
5409 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY 5408 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY
5410 CONFIG_SYS_FSL_CORES_PER_CLUSTER 5409 CONFIG_SYS_FSL_CORES_PER_CLUSTER
5411 CONFIG_SYS_FSL_CPC 5410 CONFIG_SYS_FSL_CPC
5412 CONFIG_SYS_FSL_CPC_ADDR 5411 CONFIG_SYS_FSL_CPC_ADDR
5413 CONFIG_SYS_FSL_CPC_OFFSET 5412 CONFIG_SYS_FSL_CPC_OFFSET
5414 CONFIG_SYS_FSL_CSU_ADDR 5413 CONFIG_SYS_FSL_CSU_ADDR
5415 CONFIG_SYS_FSL_DCFG_ADDR 5414 CONFIG_SYS_FSL_DCFG_ADDR
5416 CONFIG_SYS_FSL_DCSR_BASE 5415 CONFIG_SYS_FSL_DCSR_BASE
5417 CONFIG_SYS_FSL_DCSR_DDR2_ADDR 5416 CONFIG_SYS_FSL_DCSR_DDR2_ADDR
5418 CONFIG_SYS_FSL_DCSR_DDR3_ADDR 5417 CONFIG_SYS_FSL_DCSR_DDR3_ADDR
5419 CONFIG_SYS_FSL_DCSR_DDR4_ADDR 5418 CONFIG_SYS_FSL_DCSR_DDR4_ADDR
5420 CONFIG_SYS_FSL_DCSR_DDR_ADDR 5419 CONFIG_SYS_FSL_DCSR_DDR_ADDR
5421 CONFIG_SYS_FSL_DCSR_SIZE 5420 CONFIG_SYS_FSL_DCSR_SIZE
5422 CONFIG_SYS_FSL_DCU_BE 5421 CONFIG_SYS_FSL_DCU_BE
5423 CONFIG_SYS_FSL_DCU_LE 5422 CONFIG_SYS_FSL_DCU_LE
5424 CONFIG_SYS_FSL_DDR 5423 CONFIG_SYS_FSL_DDR
5425 CONFIG_SYS_FSL_DDR1 5424 CONFIG_SYS_FSL_DDR1
5426 CONFIG_SYS_FSL_DDR2 5425 CONFIG_SYS_FSL_DDR2
5427 CONFIG_SYS_FSL_DDR2_ADDR 5426 CONFIG_SYS_FSL_DDR2_ADDR
5428 CONFIG_SYS_FSL_DDR3 5427 CONFIG_SYS_FSL_DDR3
5429 CONFIG_SYS_FSL_DDR3L 5428 CONFIG_SYS_FSL_DDR3L
5430 CONFIG_SYS_FSL_DDR3_ADDR 5429 CONFIG_SYS_FSL_DDR3_ADDR
5431 CONFIG_SYS_FSL_DDR4 5430 CONFIG_SYS_FSL_DDR4
5432 CONFIG_SYS_FSL_DDRC_ARM_GEN3 5431 CONFIG_SYS_FSL_DDRC_ARM_GEN3
5433 CONFIG_SYS_FSL_DDRC_GEN1 5432 CONFIG_SYS_FSL_DDRC_GEN1
5434 CONFIG_SYS_FSL_DDRC_GEN2 5433 CONFIG_SYS_FSL_DDRC_GEN2
5435 CONFIG_SYS_FSL_DDRC_GEN3 5434 CONFIG_SYS_FSL_DDRC_GEN3
5436 CONFIG_SYS_FSL_DDRC_GEN4 5435 CONFIG_SYS_FSL_DDRC_GEN4
5437 CONFIG_SYS_FSL_DDR_86XX 5436 CONFIG_SYS_FSL_DDR_86XX
5438 CONFIG_SYS_FSL_DDR_ADDR 5437 CONFIG_SYS_FSL_DDR_ADDR
5439 CONFIG_SYS_FSL_DDR_BE 5438 CONFIG_SYS_FSL_DDR_BE
5440 CONFIG_SYS_FSL_DDR_EMU 5439 CONFIG_SYS_FSL_DDR_EMU
5441 CONFIG_SYS_FSL_DDR_INTLV_256B 5440 CONFIG_SYS_FSL_DDR_INTLV_256B
5442 CONFIG_SYS_FSL_DDR_LE 5441 CONFIG_SYS_FSL_DDR_LE
5443 CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS 5442 CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS
5444 CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 5443 CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY
5445 CONFIG_SYS_FSL_DDR_VER 5444 CONFIG_SYS_FSL_DDR_VER
5446 CONFIG_SYS_FSL_DRAM_BASE1 5445 CONFIG_SYS_FSL_DRAM_BASE1
5447 CONFIG_SYS_FSL_DRAM_BASE2 5446 CONFIG_SYS_FSL_DRAM_BASE2
5448 CONFIG_SYS_FSL_DRAM_BASE3 5447 CONFIG_SYS_FSL_DRAM_BASE3
5449 CONFIG_SYS_FSL_DRAM_SIZE1 5448 CONFIG_SYS_FSL_DRAM_SIZE1
5450 CONFIG_SYS_FSL_DRAM_SIZE2 5449 CONFIG_SYS_FSL_DRAM_SIZE2
5451 CONFIG_SYS_FSL_DRAM_SIZE3 5450 CONFIG_SYS_FSL_DRAM_SIZE3
5452 CONFIG_SYS_FSL_DSPI_BE 5451 CONFIG_SYS_FSL_DSPI_BE
5453 CONFIG_SYS_FSL_DSP_CCSRBAR 5452 CONFIG_SYS_FSL_DSP_CCSRBAR
5454 CONFIG_SYS_FSL_DSP_CCSRBAR_DEFAULT 5453 CONFIG_SYS_FSL_DSP_CCSRBAR_DEFAULT
5455 CONFIG_SYS_FSL_DSP_CCSRBAR_PHYS 5454 CONFIG_SYS_FSL_DSP_CCSRBAR_PHYS
5456 CONFIG_SYS_FSL_DSP_CCSR_DDR_ADDR 5455 CONFIG_SYS_FSL_DSP_CCSR_DDR_ADDR
5457 CONFIG_SYS_FSL_DSP_CCSR_DDR_OFFSET 5456 CONFIG_SYS_FSL_DSP_CCSR_DDR_OFFSET
5458 CONFIG_SYS_FSL_DSP_DDR_ADDR 5457 CONFIG_SYS_FSL_DSP_DDR_ADDR
5459 CONFIG_SYS_FSL_DSP_M2_RAM_ADDR 5458 CONFIG_SYS_FSL_DSP_M2_RAM_ADDR
5460 CONFIG_SYS_FSL_DSP_M3_RAM_ADDR 5459 CONFIG_SYS_FSL_DSP_M3_RAM_ADDR
5461 CONFIG_SYS_FSL_ERRATUM_A004468 5460 CONFIG_SYS_FSL_ERRATUM_A004468
5462 CONFIG_SYS_FSL_ERRATUM_A004477 5461 CONFIG_SYS_FSL_ERRATUM_A004477
5463 CONFIG_SYS_FSL_ERRATUM_A004508 5462 CONFIG_SYS_FSL_ERRATUM_A004508
5464 CONFIG_SYS_FSL_ERRATUM_A004510 5463 CONFIG_SYS_FSL_ERRATUM_A004510
5465 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV 5464 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV
5466 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2 5465 CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2
5467 CONFIG_SYS_FSL_ERRATUM_A004580 5466 CONFIG_SYS_FSL_ERRATUM_A004580
5468 CONFIG_SYS_FSL_ERRATUM_A004699 5467 CONFIG_SYS_FSL_ERRATUM_A004699
5469 CONFIG_SYS_FSL_ERRATUM_A004849 5468 CONFIG_SYS_FSL_ERRATUM_A004849
5470 CONFIG_SYS_FSL_ERRATUM_A005125 5469 CONFIG_SYS_FSL_ERRATUM_A005125
5471 CONFIG_SYS_FSL_ERRATUM_A005434 5470 CONFIG_SYS_FSL_ERRATUM_A005434
5472 CONFIG_SYS_FSL_ERRATUM_A005812 5471 CONFIG_SYS_FSL_ERRATUM_A005812
5473 CONFIG_SYS_FSL_ERRATUM_A005871 5472 CONFIG_SYS_FSL_ERRATUM_A005871
5474 CONFIG_SYS_FSL_ERRATUM_A006261 5473 CONFIG_SYS_FSL_ERRATUM_A006261
5475 CONFIG_SYS_FSL_ERRATUM_A006379 5474 CONFIG_SYS_FSL_ERRATUM_A006379
5476 CONFIG_SYS_FSL_ERRATUM_A006384 5475 CONFIG_SYS_FSL_ERRATUM_A006384
5477 CONFIG_SYS_FSL_ERRATUM_A006475 5476 CONFIG_SYS_FSL_ERRATUM_A006475
5478 CONFIG_SYS_FSL_ERRATUM_A006593 5477 CONFIG_SYS_FSL_ERRATUM_A006593
5479 CONFIG_SYS_FSL_ERRATUM_A007075 5478 CONFIG_SYS_FSL_ERRATUM_A007075
5480 CONFIG_SYS_FSL_ERRATUM_A007186 5479 CONFIG_SYS_FSL_ERRATUM_A007186
5481 CONFIG_SYS_FSL_ERRATUM_A007212 5480 CONFIG_SYS_FSL_ERRATUM_A007212
5482 CONFIG_SYS_FSL_ERRATUM_A007798 5481 CONFIG_SYS_FSL_ERRATUM_A007798
5483 CONFIG_SYS_FSL_ERRATUM_A008044 5482 CONFIG_SYS_FSL_ERRATUM_A008044
5484 CONFIG_SYS_FSL_ERRATUM_A008336 5483 CONFIG_SYS_FSL_ERRATUM_A008336
5485 CONFIG_SYS_FSL_ERRATUM_A008378 5484 CONFIG_SYS_FSL_ERRATUM_A008378
5486 CONFIG_SYS_FSL_ERRATUM_A008407 5485 CONFIG_SYS_FSL_ERRATUM_A008407
5487 CONFIG_SYS_FSL_ERRATUM_A008511 5486 CONFIG_SYS_FSL_ERRATUM_A008511
5488 CONFIG_SYS_FSL_ERRATUM_A008514 5487 CONFIG_SYS_FSL_ERRATUM_A008514
5489 CONFIG_SYS_FSL_ERRATUM_A008585 5488 CONFIG_SYS_FSL_ERRATUM_A008585
5490 CONFIG_SYS_FSL_ERRATUM_A008751 5489 CONFIG_SYS_FSL_ERRATUM_A008751
5491 CONFIG_SYS_FSL_ERRATUM_A008850 5490 CONFIG_SYS_FSL_ERRATUM_A008850
5492 CONFIG_SYS_FSL_ERRATUM_A009635 5491 CONFIG_SYS_FSL_ERRATUM_A009635
5493 CONFIG_SYS_FSL_ERRATUM_A009660 5492 CONFIG_SYS_FSL_ERRATUM_A009660
5494 CONFIG_SYS_FSL_ERRATUM_A009663 5493 CONFIG_SYS_FSL_ERRATUM_A009663
5495 CONFIG_SYS_FSL_ERRATUM_A009801 5494 CONFIG_SYS_FSL_ERRATUM_A009801
5496 CONFIG_SYS_FSL_ERRATUM_A009803 5495 CONFIG_SYS_FSL_ERRATUM_A009803
5497 CONFIG_SYS_FSL_ERRATUM_A009929 5496 CONFIG_SYS_FSL_ERRATUM_A009929
5498 CONFIG_SYS_FSL_ERRATUM_A009942 5497 CONFIG_SYS_FSL_ERRATUM_A009942
5499 CONFIG_SYS_FSL_ERRATUM_A010165 5498 CONFIG_SYS_FSL_ERRATUM_A010165
5500 CONFIG_SYS_FSL_ERRATUM_A_004934 5499 CONFIG_SYS_FSL_ERRATUM_A_004934
5501 CONFIG_SYS_FSL_ERRATUM_CPC_A002 5500 CONFIG_SYS_FSL_ERRATUM_CPC_A002
5502 CONFIG_SYS_FSL_ERRATUM_CPC_A003 5501 CONFIG_SYS_FSL_ERRATUM_CPC_A003
5503 CONFIG_SYS_FSL_ERRATUM_CPU_A003999 5502 CONFIG_SYS_FSL_ERRATUM_CPU_A003999
5504 CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134 5503 CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134
5505 CONFIG_SYS_FSL_ERRATUM_DDR_115 5504 CONFIG_SYS_FSL_ERRATUM_DDR_115
5506 CONFIG_SYS_FSL_ERRATUM_DDR_A003 5505 CONFIG_SYS_FSL_ERRATUM_DDR_A003
5507 CONFIG_SYS_FSL_ERRATUM_DDR_A003474 5506 CONFIG_SYS_FSL_ERRATUM_DDR_A003474
5508 CONFIG_SYS_FSL_ERRATUM_ELBC_A001 5507 CONFIG_SYS_FSL_ERRATUM_ELBC_A001
5509 CONFIG_SYS_FSL_ERRATUM_ESDHC111 5508 CONFIG_SYS_FSL_ERRATUM_ESDHC111
5510 CONFIG_SYS_FSL_ERRATUM_ESDHC13 5509 CONFIG_SYS_FSL_ERRATUM_ESDHC13
5511 CONFIG_SYS_FSL_ERRATUM_ESDHC135 5510 CONFIG_SYS_FSL_ERRATUM_ESDHC135
5512 CONFIG_SYS_FSL_ERRATUM_ESDHC_A001 5511 CONFIG_SYS_FSL_ERRATUM_ESDHC_A001
5513 CONFIG_SYS_FSL_ERRATUM_I2C_A004447 5512 CONFIG_SYS_FSL_ERRATUM_I2C_A004447
5514 CONFIG_SYS_FSL_ERRATUM_IFC_A002769 5513 CONFIG_SYS_FSL_ERRATUM_IFC_A002769
5515 CONFIG_SYS_FSL_ERRATUM_IFC_A003399 5514 CONFIG_SYS_FSL_ERRATUM_IFC_A003399
5516 CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011 5515 CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011
5517 CONFIG_SYS_FSL_ERRATUM_NMG_DDR120 5516 CONFIG_SYS_FSL_ERRATUM_NMG_DDR120
5518 CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129 5517 CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
5519 CONFIG_SYS_FSL_ERRATUM_NMG_LBC103 5518 CONFIG_SYS_FSL_ERRATUM_NMG_LBC103
5520 CONFIG_SYS_FSL_ERRATUM_P1010_A003549 5519 CONFIG_SYS_FSL_ERRATUM_P1010_A003549
5521 CONFIG_SYS_FSL_ERRATUM_SEC_A003571 5520 CONFIG_SYS_FSL_ERRATUM_SEC_A003571
5522 CONFIG_SYS_FSL_ERRATUM_SRIO_A004034 5521 CONFIG_SYS_FSL_ERRATUM_SRIO_A004034
5523 CONFIG_SYS_FSL_ERRATUM_USB14 5522 CONFIG_SYS_FSL_ERRATUM_USB14
5524 CONFIG_SYS_FSL_ESDHC_ADDR 5523 CONFIG_SYS_FSL_ESDHC_ADDR
5525 CONFIG_SYS_FSL_ESDHC_BE 5524 CONFIG_SYS_FSL_ESDHC_BE
5526 CONFIG_SYS_FSL_ESDHC_BROKEN_TIMEOUT 5525 CONFIG_SYS_FSL_ESDHC_BROKEN_TIMEOUT
5527 CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT 5526 CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT
5528 CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE 5527 CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE
5529 CONFIG_SYS_FSL_ESDHC_LE 5528 CONFIG_SYS_FSL_ESDHC_LE
5530 CONFIG_SYS_FSL_ESDHC_NUM 5529 CONFIG_SYS_FSL_ESDHC_NUM
5531 CONFIG_SYS_FSL_ESDHC_P1010_BROKEN_SDCLK 5530 CONFIG_SYS_FSL_ESDHC_P1010_BROKEN_SDCLK
5532 CONFIG_SYS_FSL_ESDHC_USE_PIO 5531 CONFIG_SYS_FSL_ESDHC_USE_PIO
5533 CONFIG_SYS_FSL_FM 5532 CONFIG_SYS_FSL_FM
5534 CONFIG_SYS_FSL_FM1_ADDR 5533 CONFIG_SYS_FSL_FM1_ADDR
5535 CONFIG_SYS_FSL_FM1_DTSEC1_ADDR 5534 CONFIG_SYS_FSL_FM1_DTSEC1_ADDR
5536 CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET 5535 CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET
5537 CONFIG_SYS_FSL_FM1_OFFSET 5536 CONFIG_SYS_FSL_FM1_OFFSET
5538 CONFIG_SYS_FSL_FM1_RX0_10G_OFFSET 5537 CONFIG_SYS_FSL_FM1_RX0_10G_OFFSET
5539 CONFIG_SYS_FSL_FM1_RX0_1G_OFFSET 5538 CONFIG_SYS_FSL_FM1_RX0_1G_OFFSET
5540 CONFIG_SYS_FSL_FM1_RX1_10G_OFFSET 5539 CONFIG_SYS_FSL_FM1_RX1_10G_OFFSET
5541 CONFIG_SYS_FSL_FM1_RX1_1G_OFFSET 5540 CONFIG_SYS_FSL_FM1_RX1_1G_OFFSET
5542 CONFIG_SYS_FSL_FM1_RX2_1G_OFFSET 5541 CONFIG_SYS_FSL_FM1_RX2_1G_OFFSET
5543 CONFIG_SYS_FSL_FM1_RX3_1G_OFFSET 5542 CONFIG_SYS_FSL_FM1_RX3_1G_OFFSET
5544 CONFIG_SYS_FSL_FM1_RX4_1G_OFFSET 5543 CONFIG_SYS_FSL_FM1_RX4_1G_OFFSET
5545 CONFIG_SYS_FSL_FM1_RX5_1G_OFFSET 5544 CONFIG_SYS_FSL_FM1_RX5_1G_OFFSET
5546 CONFIG_SYS_FSL_FM2_ADDR 5545 CONFIG_SYS_FSL_FM2_ADDR
5547 CONFIG_SYS_FSL_FM2_OFFSET 5546 CONFIG_SYS_FSL_FM2_OFFSET
5548 CONFIG_SYS_FSL_FM2_RX0_10G_OFFSET 5547 CONFIG_SYS_FSL_FM2_RX0_10G_OFFSET
5549 CONFIG_SYS_FSL_FM2_RX0_1G_OFFSET 5548 CONFIG_SYS_FSL_FM2_RX0_1G_OFFSET
5550 CONFIG_SYS_FSL_FM2_RX1_10G_OFFSET 5549 CONFIG_SYS_FSL_FM2_RX1_10G_OFFSET
5551 CONFIG_SYS_FSL_FM2_RX1_1G_OFFSET 5550 CONFIG_SYS_FSL_FM2_RX1_1G_OFFSET
5552 CONFIG_SYS_FSL_FM2_RX2_1G_OFFSET 5551 CONFIG_SYS_FSL_FM2_RX2_1G_OFFSET
5553 CONFIG_SYS_FSL_FM2_RX3_1G_OFFSET 5552 CONFIG_SYS_FSL_FM2_RX3_1G_OFFSET
5554 CONFIG_SYS_FSL_FM2_RX4_1G_OFFSET 5553 CONFIG_SYS_FSL_FM2_RX4_1G_OFFSET
5555 CONFIG_SYS_FSL_FM2_RX5_1G_OFFSET 5554 CONFIG_SYS_FSL_FM2_RX5_1G_OFFSET
5556 CONFIG_SYS_FSL_FMAN_ADDR 5555 CONFIG_SYS_FSL_FMAN_ADDR
5557 CONFIG_SYS_FSL_GUTS_ADDR 5556 CONFIG_SYS_FSL_GUTS_ADDR
5558 CONFIG_SYS_FSL_HAS_DP_DDR 5557 CONFIG_SYS_FSL_HAS_DP_DDR
5559 CONFIG_SYS_FSL_I2C 5558 CONFIG_SYS_FSL_I2C
5560 CONFIG_SYS_FSL_I2C2_OFFSET 5559 CONFIG_SYS_FSL_I2C2_OFFSET
5561 CONFIG_SYS_FSL_I2C2_SLAVE 5560 CONFIG_SYS_FSL_I2C2_SLAVE
5562 CONFIG_SYS_FSL_I2C2_SPEED 5561 CONFIG_SYS_FSL_I2C2_SPEED
5563 CONFIG_SYS_FSL_I2C3_OFFSET 5562 CONFIG_SYS_FSL_I2C3_OFFSET
5564 CONFIG_SYS_FSL_I2C3_SLAVE 5563 CONFIG_SYS_FSL_I2C3_SLAVE
5565 CONFIG_SYS_FSL_I2C3_SPEED 5564 CONFIG_SYS_FSL_I2C3_SPEED
5566 CONFIG_SYS_FSL_I2C4_OFFSET 5565 CONFIG_SYS_FSL_I2C4_OFFSET
5567 CONFIG_SYS_FSL_I2C4_SLAVE 5566 CONFIG_SYS_FSL_I2C4_SLAVE
5568 CONFIG_SYS_FSL_I2C4_SPEED 5567 CONFIG_SYS_FSL_I2C4_SPEED
5569 CONFIG_SYS_FSL_I2C_OFFSET 5568 CONFIG_SYS_FSL_I2C_OFFSET
5570 CONFIG_SYS_FSL_I2C_SLAVE 5569 CONFIG_SYS_FSL_I2C_SLAVE
5571 CONFIG_SYS_FSL_I2C_SPEED 5570 CONFIG_SYS_FSL_I2C_SPEED
5572 CONFIG_SYS_FSL_IFC_BANK_COUNT 5571 CONFIG_SYS_FSL_IFC_BANK_COUNT
5573 CONFIG_SYS_FSL_IFC_BASE 5572 CONFIG_SYS_FSL_IFC_BASE
5574 CONFIG_SYS_FSL_IFC_BASE1 5573 CONFIG_SYS_FSL_IFC_BASE1
5575 CONFIG_SYS_FSL_IFC_BASE2 5574 CONFIG_SYS_FSL_IFC_BASE2
5576 CONFIG_SYS_FSL_IFC_BE 5575 CONFIG_SYS_FSL_IFC_BE
5577 CONFIG_SYS_FSL_IFC_LE 5576 CONFIG_SYS_FSL_IFC_LE
5578 CONFIG_SYS_FSL_IFC_SIZE 5577 CONFIG_SYS_FSL_IFC_SIZE
5579 CONFIG_SYS_FSL_IFC_SIZE1 5578 CONFIG_SYS_FSL_IFC_SIZE1
5580 CONFIG_SYS_FSL_IFC_SIZE1_1 5579 CONFIG_SYS_FSL_IFC_SIZE1_1
5581 CONFIG_SYS_FSL_IFC_SIZE2 5580 CONFIG_SYS_FSL_IFC_SIZE2
5582 CONFIG_SYS_FSL_ISBC_VER 5581 CONFIG_SYS_FSL_ISBC_VER
5583 CONFIG_SYS_FSL_JR0_ADDR 5582 CONFIG_SYS_FSL_JR0_ADDR
5584 CONFIG_SYS_FSL_JR0_OFFSET 5583 CONFIG_SYS_FSL_JR0_OFFSET
5585 CONFIG_SYS_FSL_LS1_CLK_ADDR 5584 CONFIG_SYS_FSL_LS1_CLK_ADDR
5586 CONFIG_SYS_FSL_LSCH3_SERDES_ADDR 5585 CONFIG_SYS_FSL_LSCH3_SERDES_ADDR
5587 CONFIG_SYS_FSL_MAX_NUM_OF_SEC 5586 CONFIG_SYS_FSL_MAX_NUM_OF_SEC
5588 CONFIG_SYS_FSL_MC9SDZ60_I2C_ADDR 5587 CONFIG_SYS_FSL_MC9SDZ60_I2C_ADDR
5589 CONFIG_SYS_FSL_MC_BASE 5588 CONFIG_SYS_FSL_MC_BASE
5590 CONFIG_SYS_FSL_MC_SIZE 5589 CONFIG_SYS_FSL_MC_SIZE
5591 CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 5590 CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33
5592 CONFIG_SYS_FSL_NI_BASE 5591 CONFIG_SYS_FSL_NI_BASE
5593 CONFIG_SYS_FSL_NI_SIZE 5592 CONFIG_SYS_FSL_NI_SIZE
5594 CONFIG_SYS_FSL_NO_SERDES 5593 CONFIG_SYS_FSL_NO_SERDES
5595 CONFIG_SYS_FSL_NUM_CC_PLL 5594 CONFIG_SYS_FSL_NUM_CC_PLL
5596 CONFIG_SYS_FSL_NUM_CC_PLLS 5595 CONFIG_SYS_FSL_NUM_CC_PLLS
5597 CONFIG_SYS_FSL_NUM_LAWS 5596 CONFIG_SYS_FSL_NUM_LAWS
5598 CONFIG_SYS_FSL_OCRAM_BASE 5597 CONFIG_SYS_FSL_OCRAM_BASE
5599 CONFIG_SYS_FSL_OCRAM_SIZE 5598 CONFIG_SYS_FSL_OCRAM_SIZE
5600 CONFIG_SYS_FSL_OTHER_DDR_NUM_CTRLS 5599 CONFIG_SYS_FSL_OTHER_DDR_NUM_CTRLS
5601 CONFIG_SYS_FSL_PAMU_OFFSET 5600 CONFIG_SYS_FSL_PAMU_OFFSET
5602 CONFIG_SYS_FSL_PBL_PBI 5601 CONFIG_SYS_FSL_PBL_PBI
5603 CONFIG_SYS_FSL_PBL_RCW 5602 CONFIG_SYS_FSL_PBL_RCW
5604 CONFIG_SYS_FSL_PCIE_COMPAT 5603 CONFIG_SYS_FSL_PCIE_COMPAT
5605 CONFIG_SYS_FSL_PCI_VER_3_X 5604 CONFIG_SYS_FSL_PCI_VER_3_X
5606 CONFIG_SYS_FSL_PEBUF_BASE 5605 CONFIG_SYS_FSL_PEBUF_BASE
5607 CONFIG_SYS_FSL_PEBUF_SIZE 5606 CONFIG_SYS_FSL_PEBUF_SIZE
5608 CONFIG_SYS_FSL_PEX_LUT_BE 5607 CONFIG_SYS_FSL_PEX_LUT_BE
5609 CONFIG_SYS_FSL_PEX_LUT_LE 5608 CONFIG_SYS_FSL_PEX_LUT_LE
5610 CONFIG_SYS_FSL_PMIC_I2C_ADDR 5609 CONFIG_SYS_FSL_PMIC_I2C_ADDR
5611 CONFIG_SYS_FSL_PMU_ADDR 5610 CONFIG_SYS_FSL_PMU_ADDR
5612 CONFIG_SYS_FSL_PMU_CLTBENR 5611 CONFIG_SYS_FSL_PMU_CLTBENR
5613 CONFIG_SYS_FSL_QBMAN_BASE 5612 CONFIG_SYS_FSL_QBMAN_BASE
5614 CONFIG_SYS_FSL_QBMAN_SIZE 5613 CONFIG_SYS_FSL_QBMAN_SIZE
5615 CONFIG_SYS_FSL_QBMAN_SIZE_1 5614 CONFIG_SYS_FSL_QBMAN_SIZE_1
5616 CONFIG_SYS_FSL_QMAN_ADDR 5615 CONFIG_SYS_FSL_QMAN_ADDR
5617 CONFIG_SYS_FSL_QMAN_OFFSET 5616 CONFIG_SYS_FSL_QMAN_OFFSET
5618 CONFIG_SYS_FSL_QMAN_V3 5617 CONFIG_SYS_FSL_QMAN_V3
5619 CONFIG_SYS_FSL_QORIQ_CHASSIS1 5618 CONFIG_SYS_FSL_QORIQ_CHASSIS1
5620 CONFIG_SYS_FSL_QORIQ_CHASSIS2 5619 CONFIG_SYS_FSL_QORIQ_CHASSIS2
5621 CONFIG_SYS_FSL_QSPI_AHB 5620 CONFIG_SYS_FSL_QSPI_AHB
5622 CONFIG_SYS_FSL_QSPI_BASE 5621 CONFIG_SYS_FSL_QSPI_BASE
5623 CONFIG_SYS_FSL_QSPI_BASE1 5622 CONFIG_SYS_FSL_QSPI_BASE1
5624 CONFIG_SYS_FSL_QSPI_BASE2 5623 CONFIG_SYS_FSL_QSPI_BASE2
5625 CONFIG_SYS_FSL_QSPI_BE 5624 CONFIG_SYS_FSL_QSPI_BE
5626 CONFIG_SYS_FSL_QSPI_LE 5625 CONFIG_SYS_FSL_QSPI_LE
5627 CONFIG_SYS_FSL_QSPI_SIZE 5626 CONFIG_SYS_FSL_QSPI_SIZE
5628 CONFIG_SYS_FSL_QSPI_SIZE1 5627 CONFIG_SYS_FSL_QSPI_SIZE1
5629 CONFIG_SYS_FSL_QSPI_SIZE2 5628 CONFIG_SYS_FSL_QSPI_SIZE2
5630 CONFIG_SYS_FSL_RAID_ENGINE 5629 CONFIG_SYS_FSL_RAID_ENGINE
5631 CONFIG_SYS_FSL_RAID_ENGINE_ADDR 5630 CONFIG_SYS_FSL_RAID_ENGINE_ADDR
5632 CONFIG_SYS_FSL_RAID_ENGINE_OFFSET 5631 CONFIG_SYS_FSL_RAID_ENGINE_OFFSET
5633 CONFIG_SYS_FSL_RCPM_ADDR 5632 CONFIG_SYS_FSL_RCPM_ADDR
5634 CONFIG_SYS_FSL_RMU 5633 CONFIG_SYS_FSL_RMU
5635 CONFIG_SYS_FSL_RST_ADDR 5634 CONFIG_SYS_FSL_RST_ADDR
5636 CONFIG_SYS_FSL_SCFG_ADDR 5635 CONFIG_SYS_FSL_SCFG_ADDR
5637 CONFIG_SYS_FSL_SCFG_IODSECR1_ADDR 5636 CONFIG_SYS_FSL_SCFG_IODSECR1_ADDR
5638 CONFIG_SYS_FSL_SCFG_IODSECR1_OFFSET 5637 CONFIG_SYS_FSL_SCFG_IODSECR1_OFFSET
5639 CONFIG_SYS_FSL_SCFG_OFFSET 5638 CONFIG_SYS_FSL_SCFG_OFFSET
5640 CONFIG_SYS_FSL_SCFG_PIXCLKCR_OFFSET 5639 CONFIG_SYS_FSL_SCFG_PIXCLKCR_OFFSET
5641 CONFIG_SYS_FSL_SCFG_PIXCLK_ADDR 5640 CONFIG_SYS_FSL_SCFG_PIXCLK_ADDR
5642 CONFIG_SYS_FSL_SEC_ADDR 5641 CONFIG_SYS_FSL_SEC_ADDR
5643 CONFIG_SYS_FSL_SEC_BE 5642 CONFIG_SYS_FSL_SEC_BE
5644 CONFIG_SYS_FSL_SEC_COMPAT 5643 CONFIG_SYS_FSL_SEC_COMPAT
5645 CONFIG_SYS_FSL_SEC_IDX_OFFSET 5644 CONFIG_SYS_FSL_SEC_IDX_OFFSET
5646 CONFIG_SYS_FSL_SEC_LE 5645 CONFIG_SYS_FSL_SEC_LE
5647 CONFIG_SYS_FSL_SEC_MON_BE 5646 CONFIG_SYS_FSL_SEC_MON_BE
5648 CONFIG_SYS_FSL_SEC_MON_LE 5647 CONFIG_SYS_FSL_SEC_MON_LE
5649 CONFIG_SYS_FSL_SEC_OFFSET 5648 CONFIG_SYS_FSL_SEC_OFFSET
5650 CONFIG_SYS_FSL_SERDES 5649 CONFIG_SYS_FSL_SERDES
5651 CONFIG_SYS_FSL_SERDES_ADDR 5650 CONFIG_SYS_FSL_SERDES_ADDR
5652 CONFIG_SYS_FSL_SFP_BE 5651 CONFIG_SYS_FSL_SFP_BE
5653 CONFIG_SYS_FSL_SFP_LE 5652 CONFIG_SYS_FSL_SFP_LE
5654 CONFIG_SYS_FSL_SFP_VER_3_0 5653 CONFIG_SYS_FSL_SFP_VER_3_0
5655 CONFIG_SYS_FSL_SFP_VER_3_2 5654 CONFIG_SYS_FSL_SFP_VER_3_2
5656 CONFIG_SYS_FSL_SFP_VER_3_4 5655 CONFIG_SYS_FSL_SFP_VER_3_4
5657 CONFIG_SYS_FSL_SINGLE_SOURCE_CLK 5656 CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
5658 CONFIG_SYS_FSL_SNVS_LE 5657 CONFIG_SYS_FSL_SNVS_LE
5659 CONFIG_SYS_FSL_SP_ADDR 5658 CONFIG_SYS_FSL_SP_ADDR
5660 CONFIG_SYS_FSL_SP_LOOPBACK_DUART 5659 CONFIG_SYS_FSL_SP_LOOPBACK_DUART
5661 CONFIG_SYS_FSL_SP_VSG_GIC_ADDR 5660 CONFIG_SYS_FSL_SP_VSG_GIC_ADDR
5662 CONFIG_SYS_FSL_SP_VSG_GIC_VIGR1 5661 CONFIG_SYS_FSL_SP_VSG_GIC_VIGR1
5663 CONFIG_SYS_FSL_SP_VSG_GIC_VIGR2 5662 CONFIG_SYS_FSL_SP_VSG_GIC_VIGR2
5664 CONFIG_SYS_FSL_SRDS_1 5663 CONFIG_SYS_FSL_SRDS_1
5665 CONFIG_SYS_FSL_SRDS_2 5664 CONFIG_SYS_FSL_SRDS_2
5666 CONFIG_SYS_FSL_SRDS_3 5665 CONFIG_SYS_FSL_SRDS_3
5667 CONFIG_SYS_FSL_SRDS_4 5666 CONFIG_SYS_FSL_SRDS_4
5668 CONFIG_SYS_FSL_SRDS_NUM_PLLS 5667 CONFIG_SYS_FSL_SRDS_NUM_PLLS
5669 CONFIG_SYS_FSL_SRIO_ADDR 5668 CONFIG_SYS_FSL_SRIO_ADDR
5670 CONFIG_SYS_FSL_SRIO_IB_WIN_NUM 5669 CONFIG_SYS_FSL_SRIO_IB_WIN_NUM
5671 CONFIG_SYS_FSL_SRIO_LIODN 5670 CONFIG_SYS_FSL_SRIO_LIODN
5672 CONFIG_SYS_FSL_SRIO_MAX_PORTS 5671 CONFIG_SYS_FSL_SRIO_MAX_PORTS
5673 CONFIG_SYS_FSL_SRIO_MSG_UNIT_NUM 5672 CONFIG_SYS_FSL_SRIO_MSG_UNIT_NUM
5674 CONFIG_SYS_FSL_SRIO_OB_WIN_NUM 5673 CONFIG_SYS_FSL_SRIO_OB_WIN_NUM
5675 CONFIG_SYS_FSL_SRIO_OFFSET 5674 CONFIG_SYS_FSL_SRIO_OFFSET
5676 CONFIG_SYS_FSL_SRK_LE 5675 CONFIG_SYS_FSL_SRK_LE
5677 CONFIG_SYS_FSL_TBCLK_DIV 5676 CONFIG_SYS_FSL_TBCLK_DIV
5678 CONFIG_SYS_FSL_THREADS_PER_CORE 5677 CONFIG_SYS_FSL_THREADS_PER_CORE
5679 CONFIG_SYS_FSL_TIMER_ADDR 5678 CONFIG_SYS_FSL_TIMER_ADDR
5680 CONFIG_SYS_FSL_USB1_ADDR 5679 CONFIG_SYS_FSL_USB1_ADDR
5681 CONFIG_SYS_FSL_USB1_PHY_ENABLE 5680 CONFIG_SYS_FSL_USB1_PHY_ENABLE
5682 CONFIG_SYS_FSL_USB2_ADDR 5681 CONFIG_SYS_FSL_USB2_ADDR
5683 CONFIG_SYS_FSL_USB2_PHY_ENABLE 5682 CONFIG_SYS_FSL_USB2_PHY_ENABLE
5684 CONFIG_SYS_FSL_USB_CTRL_PHY_EN 5683 CONFIG_SYS_FSL_USB_CTRL_PHY_EN
5685 CONFIG_SYS_FSL_USB_DRVVBUS_CR_EN 5684 CONFIG_SYS_FSL_USB_DRVVBUS_CR_EN
5686 CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE 5685 CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE
5687 CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE 5686 CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE
5688 CONFIG_SYS_FSL_USB_HS_DISCNCT_INC 5687 CONFIG_SYS_FSL_USB_HS_DISCNCT_INC
5689 CONFIG_SYS_FSL_USB_INTERNAL_SOC_CLK_EN 5688 CONFIG_SYS_FSL_USB_INTERNAL_SOC_CLK_EN
5690 CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY 5689 CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
5691 CONFIG_SYS_FSL_USB_PLLPRG1_PHY_DIV 5690 CONFIG_SYS_FSL_USB_PLLPRG1_PHY_DIV
5692 CONFIG_SYS_FSL_USB_PLLPRG2_FRAC_LPF_EN 5691 CONFIG_SYS_FSL_USB_PLLPRG2_FRAC_LPF_EN
5693 CONFIG_SYS_FSL_USB_PLLPRG2_MFI 5692 CONFIG_SYS_FSL_USB_PLLPRG2_MFI
5694 CONFIG_SYS_FSL_USB_PLLPRG2_MFI_INTERNAL_CLK 5693 CONFIG_SYS_FSL_USB_PLLPRG2_MFI_INTERNAL_CLK
5695 CONFIG_SYS_FSL_USB_PLLPRG2_PHY1_CLK_EN 5694 CONFIG_SYS_FSL_USB_PLLPRG2_PHY1_CLK_EN
5696 CONFIG_SYS_FSL_USB_PLLPRG2_PHY2_CLK_EN 5695 CONFIG_SYS_FSL_USB_PLLPRG2_PHY2_CLK_EN
5697 CONFIG_SYS_FSL_USB_PLLPRG2_PLL_EN 5696 CONFIG_SYS_FSL_USB_PLLPRG2_PLL_EN
5698 CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV 5697 CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV
5699 CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV_INTERNAL_CLK 5698 CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV_INTERNAL_CLK
5700 CONFIG_SYS_FSL_USB_PWRFLT_CR_EN 5699 CONFIG_SYS_FSL_USB_PWRFLT_CR_EN
5701 CONFIG_SYS_FSL_USB_RX_AUTO_CAL_RD_WR_SEL 5700 CONFIG_SYS_FSL_USB_RX_AUTO_CAL_RD_WR_SEL
5702 CONFIG_SYS_FSL_USB_SQUELCH_PROG_MASK 5701 CONFIG_SYS_FSL_USB_SQUELCH_PROG_MASK
5703 CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_0 5702 CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_0
5704 CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_3 5703 CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_3
5705 CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_0 5704 CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_0
5706 CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_3 5705 CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_3
5707 CONFIG_SYS_FSL_USB_SYS_CLK_VALID 5706 CONFIG_SYS_FSL_USB_SYS_CLK_VALID
5708 CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_EN 5707 CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_EN
5709 CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_MASK 5708 CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_MASK
5710 CONFIG_SYS_FSL_USDHC_NUM 5709 CONFIG_SYS_FSL_USDHC_NUM
5711 CONFIG_SYS_FSL_WDOG_BE 5710 CONFIG_SYS_FSL_WDOG_BE
5712 CONFIG_SYS_FSL_WRIOP1_ADDR 5711 CONFIG_SYS_FSL_WRIOP1_ADDR
5713 CONFIG_SYS_FSL_WRIOP1_BASE 5712 CONFIG_SYS_FSL_WRIOP1_BASE
5714 CONFIG_SYS_FSL_WRIOP1_MDIO1 5713 CONFIG_SYS_FSL_WRIOP1_MDIO1
5715 CONFIG_SYS_FSL_WRIOP1_MDIO2 5714 CONFIG_SYS_FSL_WRIOP1_MDIO2
5716 CONFIG_SYS_FSL_WRIOP1_SIZE 5715 CONFIG_SYS_FSL_WRIOP1_SIZE
5717 CONFIG_SYS_FSL_XHCI_USB1_ADDR 5716 CONFIG_SYS_FSL_XHCI_USB1_ADDR
5718 CONFIG_SYS_FSL_XHCI_USB2_ADDR 5717 CONFIG_SYS_FSL_XHCI_USB2_ADDR
5719 CONFIG_SYS_FSL_XHCI_USB3_ADDR 5718 CONFIG_SYS_FSL_XHCI_USB3_ADDR
5720 CONFIG_SYS_FSMC_BASE 5719 CONFIG_SYS_FSMC_BASE
5721 CONFIG_SYS_FSMC_NAND_16BIT 5720 CONFIG_SYS_FSMC_NAND_16BIT
5722 CONFIG_SYS_FSMC_NAND_8BIT 5721 CONFIG_SYS_FSMC_NAND_8BIT
5723 CONFIG_SYS_FSMC_NAND_SP 5722 CONFIG_SYS_FSMC_NAND_SP
5724 CONFIG_SYS_FTAHBC020S_SLAVE_BSR_6 5723 CONFIG_SYS_FTAHBC020S_SLAVE_BSR_6
5725 CONFIG_SYS_FTAHBC020S_SLAVE_BSR_BASE 5724 CONFIG_SYS_FTAHBC020S_SLAVE_BSR_BASE
5726 CONFIG_SYS_FTPMU010_PDLLCR0_HCLKOUTDIS 5725 CONFIG_SYS_FTPMU010_PDLLCR0_HCLKOUTDIS
5727 CONFIG_SYS_FTPMU010_SDRAMHTC 5726 CONFIG_SYS_FTPMU010_SDRAMHTC
5728 CONFIG_SYS_FTSDMC021_BANK0_BASE 5727 CONFIG_SYS_FTSDMC021_BANK0_BASE
5729 CONFIG_SYS_FTSDMC021_BANK0_BSR 5728 CONFIG_SYS_FTSDMC021_BANK0_BSR
5730 CONFIG_SYS_FTSDMC021_BANK1_BASE 5729 CONFIG_SYS_FTSDMC021_BANK1_BASE
5731 CONFIG_SYS_FTSDMC021_BANK1_BSR 5730 CONFIG_SYS_FTSDMC021_BANK1_BSR
5732 CONFIG_SYS_FTSDMC021_CR1 5731 CONFIG_SYS_FTSDMC021_CR1
5733 CONFIG_SYS_FTSDMC021_CR2 5732 CONFIG_SYS_FTSDMC021_CR2
5734 CONFIG_SYS_FTSDMC021_TP1 5733 CONFIG_SYS_FTSDMC021_TP1
5735 CONFIG_SYS_FTSDMC021_TP2 5734 CONFIG_SYS_FTSDMC021_TP2
5736 CONFIG_SYS_FTSMC020_CONFIGS 5735 CONFIG_SYS_FTSMC020_CONFIGS
5737 CONFIG_SYS_FULL_VA 5736 CONFIG_SYS_FULL_VA
5738 CONFIG_SYS_GAFR0_L_VAL 5737 CONFIG_SYS_GAFR0_L_VAL
5739 CONFIG_SYS_GAFR0_U_VAL 5738 CONFIG_SYS_GAFR0_U_VAL
5740 CONFIG_SYS_GAFR1_L_VAL 5739 CONFIG_SYS_GAFR1_L_VAL
5741 CONFIG_SYS_GAFR1_U_VAL 5740 CONFIG_SYS_GAFR1_U_VAL
5742 CONFIG_SYS_GAFR2_L_VAL 5741 CONFIG_SYS_GAFR2_L_VAL
5743 CONFIG_SYS_GAFR2_U_VAL 5742 CONFIG_SYS_GAFR2_U_VAL
5744 CONFIG_SYS_GAFR3_L_VAL 5743 CONFIG_SYS_GAFR3_L_VAL
5745 CONFIG_SYS_GAFR3_U_VAL 5744 CONFIG_SYS_GAFR3_U_VAL
5746 CONFIG_SYS_GBIT_MII1_BUSNAME 5745 CONFIG_SYS_GBIT_MII1_BUSNAME
5747 CONFIG_SYS_GBIT_MII_BUSNAME 5746 CONFIG_SYS_GBIT_MII_BUSNAME
5748 CONFIG_SYS_GBL_DATA_ADDR 5747 CONFIG_SYS_GBL_DATA_ADDR
5749 CONFIG_SYS_GBL_DATA_OFFSET 5748 CONFIG_SYS_GBL_DATA_OFFSET
5750 CONFIG_SYS_GBL_DATA_SIZE 5749 CONFIG_SYS_GBL_DATA_SIZE
5751 CONFIG_SYS_GENERIC_BOARD 5750 CONFIG_SYS_GENERIC_BOARD
5752 CONFIG_SYS_GENERIC_GLOBAL_DATA 5751 CONFIG_SYS_GENERIC_GLOBAL_DATA
5753 CONFIG_SYS_GIC400_ADDR 5752 CONFIG_SYS_GIC400_ADDR
5754 CONFIG_SYS_GLOBAL_SDRAM_LIMIT 5753 CONFIG_SYS_GLOBAL_SDRAM_LIMIT
5755 CONFIG_SYS_GP1DIR 5754 CONFIG_SYS_GP1DIR
5756 CONFIG_SYS_GP1ODR 5755 CONFIG_SYS_GP1ODR
5757 CONFIG_SYS_GP2DIR 5756 CONFIG_SYS_GP2DIR
5758 CONFIG_SYS_GP2ODR 5757 CONFIG_SYS_GP2ODR
5759 CONFIG_SYS_GPCR0_VAL 5758 CONFIG_SYS_GPCR0_VAL
5760 CONFIG_SYS_GPCR1_VAL 5759 CONFIG_SYS_GPCR1_VAL
5761 CONFIG_SYS_GPCR2_VAL 5760 CONFIG_SYS_GPCR2_VAL
5762 CONFIG_SYS_GPCR3_VAL 5761 CONFIG_SYS_GPCR3_VAL
5763 CONFIG_SYS_GPDR0_VAL 5762 CONFIG_SYS_GPDR0_VAL
5764 CONFIG_SYS_GPDR1_VAL 5763 CONFIG_SYS_GPDR1_VAL
5765 CONFIG_SYS_GPDR2_VAL 5764 CONFIG_SYS_GPDR2_VAL
5766 CONFIG_SYS_GPDR3_VAL 5765 CONFIG_SYS_GPDR3_VAL
5767 CONFIG_SYS_GPIO0_ISR1H 5766 CONFIG_SYS_GPIO0_ISR1H
5768 CONFIG_SYS_GPIO0_ISR1L 5767 CONFIG_SYS_GPIO0_ISR1L
5769 CONFIG_SYS_GPIO0_ISR2H 5768 CONFIG_SYS_GPIO0_ISR2H
5770 CONFIG_SYS_GPIO0_ISR2L 5769 CONFIG_SYS_GPIO0_ISR2L
5771 CONFIG_SYS_GPIO0_ODR 5770 CONFIG_SYS_GPIO0_ODR
5772 CONFIG_SYS_GPIO0_OR 5771 CONFIG_SYS_GPIO0_OR
5773 CONFIG_SYS_GPIO0_OSRH 5772 CONFIG_SYS_GPIO0_OSRH
5774 CONFIG_SYS_GPIO0_OSRL 5773 CONFIG_SYS_GPIO0_OSRL
5775 CONFIG_SYS_GPIO0_TCR 5774 CONFIG_SYS_GPIO0_TCR
5776 CONFIG_SYS_GPIO0_TSRH 5775 CONFIG_SYS_GPIO0_TSRH
5777 CONFIG_SYS_GPIO0_TSRL 5776 CONFIG_SYS_GPIO0_TSRL
5778 CONFIG_SYS_GPIO1_DAT 5777 CONFIG_SYS_GPIO1_DAT
5779 CONFIG_SYS_GPIO1_DIR 5778 CONFIG_SYS_GPIO1_DIR
5780 CONFIG_SYS_GPIO1_EN 5779 CONFIG_SYS_GPIO1_EN
5781 CONFIG_SYS_GPIO1_FUNC 5780 CONFIG_SYS_GPIO1_FUNC
5782 CONFIG_SYS_GPIO1_ISR1H 5781 CONFIG_SYS_GPIO1_ISR1H
5783 CONFIG_SYS_GPIO1_ISR1L 5782 CONFIG_SYS_GPIO1_ISR1L
5784 CONFIG_SYS_GPIO1_LED 5783 CONFIG_SYS_GPIO1_LED
5785 CONFIG_SYS_GPIO1_OSRH 5784 CONFIG_SYS_GPIO1_OSRH
5786 CONFIG_SYS_GPIO1_OSRL 5785 CONFIG_SYS_GPIO1_OSRL
5787 CONFIG_SYS_GPIO1_OUT 5786 CONFIG_SYS_GPIO1_OUT
5788 CONFIG_SYS_GPIO1_PRELIM 5787 CONFIG_SYS_GPIO1_PRELIM
5789 CONFIG_SYS_GPIO1_TCR 5788 CONFIG_SYS_GPIO1_TCR
5790 CONFIG_SYS_GPIO1_TSRH 5789 CONFIG_SYS_GPIO1_TSRH
5791 CONFIG_SYS_GPIO1_TSRL 5790 CONFIG_SYS_GPIO1_TSRL
5792 CONFIG_SYS_GPIO2_DAT 5791 CONFIG_SYS_GPIO2_DAT
5793 CONFIG_SYS_GPIO2_DIR 5792 CONFIG_SYS_GPIO2_DIR
5794 CONFIG_SYS_GPIO2_PRELIM 5793 CONFIG_SYS_GPIO2_PRELIM
5795 CONFIG_SYS_GPIO_0_ADDR 5794 CONFIG_SYS_GPIO_0_ADDR
5796 CONFIG_SYS_GPIO_BASE 5795 CONFIG_SYS_GPIO_BASE
5797 CONFIG_SYS_GPIO_BOARD_RESET 5796 CONFIG_SYS_GPIO_BOARD_RESET
5798 CONFIG_SYS_GPIO_CAN_ENABLE 5797 CONFIG_SYS_GPIO_CAN_ENABLE
5799 CONFIG_SYS_GPIO_CRAM_ADV 5798 CONFIG_SYS_GPIO_CRAM_ADV
5800 CONFIG_SYS_GPIO_CRAM_CLK 5799 CONFIG_SYS_GPIO_CRAM_CLK
5801 CONFIG_SYS_GPIO_CRAM_CRE 5800 CONFIG_SYS_GPIO_CRAM_CRE
5802 CONFIG_SYS_GPIO_CRAM_WAIT 5801 CONFIG_SYS_GPIO_CRAM_WAIT
5803 CONFIG_SYS_GPIO_DATADIR 5802 CONFIG_SYS_GPIO_DATADIR
5804 CONFIG_SYS_GPIO_DATAVALUE 5803 CONFIG_SYS_GPIO_DATAVALUE
5805 CONFIG_SYS_GPIO_DSPIC_READY 5804 CONFIG_SYS_GPIO_DSPIC_READY
5806 CONFIG_SYS_GPIO_EEPROM_EXT_WP 5805 CONFIG_SYS_GPIO_EEPROM_EXT_WP
5807 CONFIG_SYS_GPIO_EEPROM_INT_WP 5806 CONFIG_SYS_GPIO_EEPROM_INT_WP
5808 CONFIG_SYS_GPIO_EEPROM_WP 5807 CONFIG_SYS_GPIO_EEPROM_WP
5809 CONFIG_SYS_GPIO_EN 5808 CONFIG_SYS_GPIO_EN
5810 CONFIG_SYS_GPIO_ENABLE 5809 CONFIG_SYS_GPIO_ENABLE
5811 CONFIG_SYS_GPIO_EREADY 5810 CONFIG_SYS_GPIO_EREADY
5812 CONFIG_SYS_GPIO_FLASH_WP 5811 CONFIG_SYS_GPIO_FLASH_WP
5813 CONFIG_SYS_GPIO_FUNC 5812 CONFIG_SYS_GPIO_FUNC
5814 CONFIG_SYS_GPIO_HIGHSIDE 5813 CONFIG_SYS_GPIO_HIGHSIDE
5815 CONFIG_SYS_GPIO_HWREV_MASK 5814 CONFIG_SYS_GPIO_HWREV_MASK
5816 CONFIG_SYS_GPIO_HWREV_SHIFT 5815 CONFIG_SYS_GPIO_HWREV_SHIFT
5817 CONFIG_SYS_GPIO_I2C_SCL 5816 CONFIG_SYS_GPIO_I2C_SCL
5818 CONFIG_SYS_GPIO_I2C_SDA 5817 CONFIG_SYS_GPIO_I2C_SDA
5819 CONFIG_SYS_GPIO_LEDA_N 5818 CONFIG_SYS_GPIO_LEDA_N
5820 CONFIG_SYS_GPIO_LEDB_N 5819 CONFIG_SYS_GPIO_LEDB_N
5821 CONFIG_SYS_GPIO_LEDRUN_N 5820 CONFIG_SYS_GPIO_LEDRUN_N
5822 CONFIG_SYS_GPIO_LIME_RST 5821 CONFIG_SYS_GPIO_LIME_RST
5823 CONFIG_SYS_GPIO_LIME_S 5822 CONFIG_SYS_GPIO_LIME_S
5824 CONFIG_SYS_GPIO_LSB_ENABLE 5823 CONFIG_SYS_GPIO_LSB_ENABLE
5825 CONFIG_SYS_GPIO_M66EN 5824 CONFIG_SYS_GPIO_M66EN
5826 CONFIG_SYS_GPIO_MONARCH_N 5825 CONFIG_SYS_GPIO_MONARCH_N
5827 CONFIG_SYS_GPIO_ODR 5826 CONFIG_SYS_GPIO_ODR
5828 CONFIG_SYS_GPIO_OPENDRAIN 5827 CONFIG_SYS_GPIO_OPENDRAIN
5829 CONFIG_SYS_GPIO_OR 5828 CONFIG_SYS_GPIO_OR
5830 CONFIG_SYS_GPIO_OUT 5829 CONFIG_SYS_GPIO_OUT
5831 CONFIG_SYS_GPIO_PCIE_CLKREQ 5830 CONFIG_SYS_GPIO_PCIE_CLKREQ
5832 CONFIG_SYS_GPIO_PCIE_PRESENT0 5831 CONFIG_SYS_GPIO_PCIE_PRESENT0
5833 CONFIG_SYS_GPIO_PCIE_PRESENT1 5832 CONFIG_SYS_GPIO_PCIE_PRESENT1
5834 CONFIG_SYS_GPIO_PCIE_PRESENT2 5833 CONFIG_SYS_GPIO_PCIE_PRESENT2
5835 CONFIG_SYS_GPIO_PCIE_RST 5834 CONFIG_SYS_GPIO_PCIE_RST
5836 CONFIG_SYS_GPIO_PCIE_WAKE 5835 CONFIG_SYS_GPIO_PCIE_WAKE
5837 CONFIG_SYS_GPIO_PERM_VOLT_FEED 5836 CONFIG_SYS_GPIO_PERM_VOLT_FEED
5838 CONFIG_SYS_GPIO_PHY0_RST 5837 CONFIG_SYS_GPIO_PHY0_RST
5839 CONFIG_SYS_GPIO_PHY1_RST 5838 CONFIG_SYS_GPIO_PHY1_RST
5840 CONFIG_SYS_GPIO_PHY_RST 5839 CONFIG_SYS_GPIO_PHY_RST
5841 CONFIG_SYS_GPIO_RS232_FORCEOFF 5840 CONFIG_SYS_GPIO_RS232_FORCEOFF
5842 CONFIG_SYS_GPIO_SELFRST_N 5841 CONFIG_SYS_GPIO_SELFRST_N
5843 CONFIG_SYS_GPIO_STARTUP_FINISHED 5842 CONFIG_SYS_GPIO_STARTUP_FINISHED
5844 CONFIG_SYS_GPIO_STARTUP_FINISHED_N 5843 CONFIG_SYS_GPIO_STARTUP_FINISHED_N
5845 CONFIG_SYS_GPIO_SYSMON_STATUS 5844 CONFIG_SYS_GPIO_SYSMON_STATUS
5846 CONFIG_SYS_GPIO_TCR 5845 CONFIG_SYS_GPIO_TCR
5847 CONFIG_SYS_GPIO_WATCHDOG 5846 CONFIG_SYS_GPIO_WATCHDOG
5848 CONFIG_SYS_GPIO_WIDTH 5847 CONFIG_SYS_GPIO_WIDTH
5849 CONFIG_SYS_GPR1 5848 CONFIG_SYS_GPR1
5850 CONFIG_SYS_GPSR0_VAL 5849 CONFIG_SYS_GPSR0_VAL
5851 CONFIG_SYS_GPSR1_VAL 5850 CONFIG_SYS_GPSR1_VAL
5852 CONFIG_SYS_GPSR2_VAL 5851 CONFIG_SYS_GPSR2_VAL
5853 CONFIG_SYS_GPSR3_VAL 5852 CONFIG_SYS_GPSR3_VAL
5854 CONFIG_SYS_GPS_PORT_CONFIG 5853 CONFIG_SYS_GPS_PORT_CONFIG
5855 CONFIG_SYS_GPS_PORT_CONFIG_1 5854 CONFIG_SYS_GPS_PORT_CONFIG_1
5856 CONFIG_SYS_GPS_PORT_CONFIG_2 5855 CONFIG_SYS_GPS_PORT_CONFIG_2
5857 CONFIG_SYS_GRLIB_APBUART_INDEX 5856 CONFIG_SYS_GRLIB_APBUART_INDEX
5858 CONFIG_SYS_GRLIB_ESA_MCTRL1 5857 CONFIG_SYS_GRLIB_ESA_MCTRL1
5859 CONFIG_SYS_GRLIB_ESA_MCTRL1_CFG1 5858 CONFIG_SYS_GRLIB_ESA_MCTRL1_CFG1
5860 CONFIG_SYS_GRLIB_ESA_MCTRL1_CFG2 5859 CONFIG_SYS_GRLIB_ESA_MCTRL1_CFG2
5861 CONFIG_SYS_GRLIB_ESA_MCTRL1_CFG3 5860 CONFIG_SYS_GRLIB_ESA_MCTRL1_CFG3
5862 CONFIG_SYS_GRLIB_ESA_MCTRL2 5861 CONFIG_SYS_GRLIB_ESA_MCTRL2
5863 CONFIG_SYS_GRLIB_ESA_MCTRL2_CFG1 5862 CONFIG_SYS_GRLIB_ESA_MCTRL2_CFG1
5864 CONFIG_SYS_GRLIB_ESA_MCTRL2_CFG2 5863 CONFIG_SYS_GRLIB_ESA_MCTRL2_CFG2
5865 CONFIG_SYS_GRLIB_ESA_MCTRL2_CFG3 5864 CONFIG_SYS_GRLIB_ESA_MCTRL2_CFG3
5866 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA1 5865 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA1
5867 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA1_CFG1 5866 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA1_CFG1
5868 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA1_CFG3 5867 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA1_CFG3
5869 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA1_CFG4 5868 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA1_CFG4
5870 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA2 5869 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA2
5871 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA2_CFG1 5870 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA2_CFG1
5872 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA2_CFG3 5871 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA2_CFG3
5873 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA2_CFG4 5872 CONFIG_SYS_GRLIB_GAISLER_DDR2SPA2_CFG4
5874 CONFIG_SYS_GRLIB_GAISLER_DDRSPA1 5873 CONFIG_SYS_GRLIB_GAISLER_DDRSPA1
5875 CONFIG_SYS_GRLIB_GAISLER_DDRSPA1_CTRL 5874 CONFIG_SYS_GRLIB_GAISLER_DDRSPA1_CTRL
5876 CONFIG_SYS_GRLIB_GAISLER_DDRSPA2 5875 CONFIG_SYS_GRLIB_GAISLER_DDRSPA2
5877 CONFIG_SYS_GRLIB_GAISLER_DDRSPA2_CTRL 5876 CONFIG_SYS_GRLIB_GAISLER_DDRSPA2_CTRL
5878 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL1 5877 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL1
5879 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL1_CFG1 5878 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL1_CFG1
5880 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL1_CFG2 5879 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL1_CFG2
5881 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL1_CFG3 5880 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL1_CFG3
5882 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL2 5881 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL2
5883 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL2_CFG1 5882 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL2_CFG1
5884 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL2_CFG2 5883 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL2_CFG2
5885 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL2_CFG3 5884 CONFIG_SYS_GRLIB_GAISLER_FTMCTRL2_CFG3
5886 CONFIG_SYS_GRLIB_GAISLER_SDCTRL1 5885 CONFIG_SYS_GRLIB_GAISLER_SDCTRL1
5887 CONFIG_SYS_GRLIB_GAISLER_SDCTRL1_CTRL 5886 CONFIG_SYS_GRLIB_GAISLER_SDCTRL1_CTRL
5888 CONFIG_SYS_GRLIB_GAISLER_SDCTRL2 5887 CONFIG_SYS_GRLIB_GAISLER_SDCTRL2
5889 CONFIG_SYS_GRLIB_GAISLER_SDCTRL2_CTRL 5888 CONFIG_SYS_GRLIB_GAISLER_SDCTRL2_CTRL
5890 CONFIG_SYS_GRLIB_GPTIMER_INDEX 5889 CONFIG_SYS_GRLIB_GPTIMER_INDEX
5891 CONFIG_SYS_GRLIB_GRETH_INDEX 5890 CONFIG_SYS_GRLIB_GRETH_INDEX
5892 CONFIG_SYS_GRLIB_GRETH_PHYADDR 5891 CONFIG_SYS_GRLIB_GRETH_PHYADDR
5893 CONFIG_SYS_GRLIB_GRUSB_INDEX 5892 CONFIG_SYS_GRLIB_GRUSB_INDEX
5894 CONFIG_SYS_GRLIB_MEMCFG1 5893 CONFIG_SYS_GRLIB_MEMCFG1
5895 CONFIG_SYS_GRLIB_MEMCFG2 5894 CONFIG_SYS_GRLIB_MEMCFG2
5896 CONFIG_SYS_GRLIB_MEMCFG3 5895 CONFIG_SYS_GRLIB_MEMCFG3
5897 CONFIG_SYS_GRLIB_SDRAM 5896 CONFIG_SYS_GRLIB_SDRAM
5898 CONFIG_SYS_GRLIB_SINGLE_BUS 5897 CONFIG_SYS_GRLIB_SINGLE_BUS
5899 CONFIG_SYS_HALT_BEFOR_RAM_JUMP 5898 CONFIG_SYS_HALT_BEFOR_RAM_JUMP
5900 CONFIG_SYS_HAS_NO_CACHE 5899 CONFIG_SYS_HAS_NO_CACHE
5901 CONFIG_SYS_HAS_SERDES 5900 CONFIG_SYS_HAS_SERDES
5902 CONFIG_SYS_HELP_CMD_WIDTH 5901 CONFIG_SYS_HELP_CMD_WIDTH
5903 CONFIG_SYS_HID0_FINAL 5902 CONFIG_SYS_HID0_FINAL
5904 CONFIG_SYS_HID0_INIT 5903 CONFIG_SYS_HID0_INIT
5905 CONFIG_SYS_HID2 5904 CONFIG_SYS_HID2
5906 CONFIG_SYS_HIGH 5905 CONFIG_SYS_HIGH
5907 CONFIG_SYS_HMI_BASE 5906 CONFIG_SYS_HMI_BASE
5908 CONFIG_SYS_HOSTNAME 5907 CONFIG_SYS_HOSTNAME
5909 CONFIG_SYS_HRCW_HIGH 5908 CONFIG_SYS_HRCW_HIGH
5910 CONFIG_SYS_HRCW_HIGH_BASE 5909 CONFIG_SYS_HRCW_HIGH_BASE
5911 CONFIG_SYS_HRCW_LOW 5910 CONFIG_SYS_HRCW_LOW
5912 CONFIG_SYS_HRCW_MASTER 5911 CONFIG_SYS_HRCW_MASTER
5913 CONFIG_SYS_HRCW_SLAVE1 5912 CONFIG_SYS_HRCW_SLAVE1
5914 CONFIG_SYS_HRCW_SLAVE2 5913 CONFIG_SYS_HRCW_SLAVE2
5915 CONFIG_SYS_HRCW_SLAVE3 5914 CONFIG_SYS_HRCW_SLAVE3
5916 CONFIG_SYS_HRCW_SLAVE4 5915 CONFIG_SYS_HRCW_SLAVE4
5917 CONFIG_SYS_HRCW_SLAVE5 5916 CONFIG_SYS_HRCW_SLAVE5
5918 CONFIG_SYS_HRCW_SLAVE6 5917 CONFIG_SYS_HRCW_SLAVE6
5919 CONFIG_SYS_HRCW_SLAVE7 5918 CONFIG_SYS_HRCW_SLAVE7
5920 CONFIG_SYS_HSDRAMC 5919 CONFIG_SYS_HSDRAMC
5921 CONFIG_SYS_HWINFO_MAGIC 5920 CONFIG_SYS_HWINFO_MAGIC
5922 CONFIG_SYS_HWINFO_OFFSET 5921 CONFIG_SYS_HWINFO_OFFSET
5923 CONFIG_SYS_HWINFO_SIZE 5922 CONFIG_SYS_HWINFO_SIZE
5924 CONFIG_SYS_HZ_CLOCK 5923 CONFIG_SYS_HZ_CLOCK
5925 CONFIG_SYS_I2C 5924 CONFIG_SYS_I2C
5926 CONFIG_SYS_I2C2_FSL_OFFSET 5925 CONFIG_SYS_I2C2_FSL_OFFSET
5927 CONFIG_SYS_I2C2_OFFSET 5926 CONFIG_SYS_I2C2_OFFSET
5928 CONFIG_SYS_I2C2_PINMUX_CLR 5927 CONFIG_SYS_I2C2_PINMUX_CLR
5929 CONFIG_SYS_I2C2_PINMUX_REG 5928 CONFIG_SYS_I2C2_PINMUX_REG
5930 CONFIG_SYS_I2C2_PINMUX_SET 5929 CONFIG_SYS_I2C2_PINMUX_SET
5931 CONFIG_SYS_I2C_0 5930 CONFIG_SYS_I2C_0
5932 CONFIG_SYS_I2C_2 5931 CONFIG_SYS_I2C_2
5933 CONFIG_SYS_I2C_5 5932 CONFIG_SYS_I2C_5
5934 CONFIG_SYS_I2C_8574A_ADDR1 5933 CONFIG_SYS_I2C_8574A_ADDR1
5935 CONFIG_SYS_I2C_8574A_ADDR2 5934 CONFIG_SYS_I2C_8574A_ADDR2
5936 CONFIG_SYS_I2C_8574_ADDR1 5935 CONFIG_SYS_I2C_8574_ADDR1
5937 CONFIG_SYS_I2C_8574_ADDR2 5936 CONFIG_SYS_I2C_8574_ADDR2
5938 CONFIG_SYS_I2C_ADI 5937 CONFIG_SYS_I2C_ADI
5939 CONFIG_SYS_I2C_BASE 5938 CONFIG_SYS_I2C_BASE
5940 CONFIG_SYS_I2C_BASE0 5939 CONFIG_SYS_I2C_BASE0
5941 CONFIG_SYS_I2C_BASE1 5940 CONFIG_SYS_I2C_BASE1
5942 CONFIG_SYS_I2C_BASE2 5941 CONFIG_SYS_I2C_BASE2
5943 CONFIG_SYS_I2C_BASE3 5942 CONFIG_SYS_I2C_BASE3
5944 CONFIG_SYS_I2C_BASE4 5943 CONFIG_SYS_I2C_BASE4
5945 CONFIG_SYS_I2C_BASE5 5944 CONFIG_SYS_I2C_BASE5
5946 CONFIG_SYS_I2C_BOARD_LATE_INIT 5945 CONFIG_SYS_I2C_BOARD_LATE_INIT
5947 CONFIG_SYS_I2C_BOOT_EEPROM_ADDR 5946 CONFIG_SYS_I2C_BOOT_EEPROM_ADDR
5948 CONFIG_SYS_I2C_BUSES 5947 CONFIG_SYS_I2C_BUSES
5949 CONFIG_SYS_I2C_BUS_MAX 5948 CONFIG_SYS_I2C_BUS_MAX
5950 CONFIG_SYS_I2C_CLK_OFFSET 5949 CONFIG_SYS_I2C_CLK_OFFSET
5951 CONFIG_SYS_I2C_DAVINCI 5950 CONFIG_SYS_I2C_DAVINCI
5952 CONFIG_SYS_I2C_DIRECT_BUS 5951 CONFIG_SYS_I2C_DIRECT_BUS
5953 CONFIG_SYS_I2C_DPMEM_OFFSET 5952 CONFIG_SYS_I2C_DPMEM_OFFSET
5954 CONFIG_SYS_I2C_DS1621_ADDR 5953 CONFIG_SYS_I2C_DS1621_ADDR
5955 CONFIG_SYS_I2C_DS4510_ADDR 5954 CONFIG_SYS_I2C_DS4510_ADDR
5956 CONFIG_SYS_I2C_DSPIC_2_ADDR 5955 CONFIG_SYS_I2C_DSPIC_2_ADDR
5957 CONFIG_SYS_I2C_DSPIC_ADDR 5956 CONFIG_SYS_I2C_DSPIC_ADDR
5958 CONFIG_SYS_I2C_DSPIC_IO_ADDR 5957 CONFIG_SYS_I2C_DSPIC_IO_ADDR
5959 CONFIG_SYS_I2C_DSPIC_KEYB_ADDR 5958 CONFIG_SYS_I2C_DSPIC_KEYB_ADDR
5960 CONFIG_SYS_I2C_DTT_ADDR 5959 CONFIG_SYS_I2C_DTT_ADDR
5961 CONFIG_SYS_I2C_DVI_ADDR 5960 CONFIG_SYS_I2C_DVI_ADDR
5962 CONFIG_SYS_I2C_DVI_BUS_NUM 5961 CONFIG_SYS_I2C_DVI_BUS_NUM
5963 CONFIG_SYS_I2C_EARLY_INIT 5962 CONFIG_SYS_I2C_EARLY_INIT
5964 CONFIG_SYS_I2C_EEPROM 5963 CONFIG_SYS_I2C_EEPROM
5965 CONFIG_SYS_I2C_EEPROM_ADDR 5964 CONFIG_SYS_I2C_EEPROM_ADDR
5966 CONFIG_SYS_I2C_EEPROM_ADDR_LEN 5965 CONFIG_SYS_I2C_EEPROM_ADDR_LEN
5967 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW 5966 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
5968 CONFIG_SYS_I2C_EEPROM_BUS 5967 CONFIG_SYS_I2C_EEPROM_BUS
5969 CONFIG_SYS_I2C_EEPROM_BUS_NUM 5968 CONFIG_SYS_I2C_EEPROM_BUS_NUM
5970 CONFIG_SYS_I2C_EEPROM_CCID 5969 CONFIG_SYS_I2C_EEPROM_CCID
5971 CONFIG_SYS_I2C_EEPROM_CPU_ADDR 5970 CONFIG_SYS_I2C_EEPROM_CPU_ADDR
5972 CONFIG_SYS_I2C_EEPROM_MAC_OFFSET 5971 CONFIG_SYS_I2C_EEPROM_MAC_OFFSET
5973 CONFIG_SYS_I2C_EEPROM_MB_ADDR 5972 CONFIG_SYS_I2C_EEPROM_MB_ADDR
5974 CONFIG_SYS_I2C_EEPROM_NXID 5973 CONFIG_SYS_I2C_EEPROM_NXID
5975 CONFIG_SYS_I2C_EEPROM_NXID_MAC 5974 CONFIG_SYS_I2C_EEPROM_NXID_MAC
5976 CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS 5975 CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS
5977 CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS 5976 CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS
5978 CONFIG_SYS_I2C_EXPANDER_ADDR 5977 CONFIG_SYS_I2C_EXPANDER_ADDR
5979 CONFIG_SYS_I2C_FACT_ADDR 5978 CONFIG_SYS_I2C_FACT_ADDR
5980 CONFIG_SYS_I2C_FPGA_ADDR 5979 CONFIG_SYS_I2C_FPGA_ADDR
5981 CONFIG_SYS_I2C_FRAM 5980 CONFIG_SYS_I2C_FRAM
5982 CONFIG_SYS_I2C_G762_ADDR 5981 CONFIG_SYS_I2C_G762_ADDR
5983 CONFIG_SYS_I2C_GENERIC_MAC 5982 CONFIG_SYS_I2C_GENERIC_MAC
5984 CONFIG_SYS_I2C_HWMON_ADDR 5983 CONFIG_SYS_I2C_HWMON_ADDR
5985 CONFIG_SYS_I2C_IDT6V49205B 5984 CONFIG_SYS_I2C_IDT6V49205B
5986 CONFIG_SYS_I2C_IFDR_DIV 5985 CONFIG_SYS_I2C_IFDR_DIV
5987 CONFIG_SYS_I2C_IHS 5986 CONFIG_SYS_I2C_IHS
5988 CONFIG_SYS_I2C_IHS_CH0 5987 CONFIG_SYS_I2C_IHS_CH0
5989 CONFIG_SYS_I2C_IHS_CH0_1 5988 CONFIG_SYS_I2C_IHS_CH0_1
5990 CONFIG_SYS_I2C_IHS_CH1 5989 CONFIG_SYS_I2C_IHS_CH1
5991 CONFIG_SYS_I2C_IHS_CH1_1 5990 CONFIG_SYS_I2C_IHS_CH1_1
5992 CONFIG_SYS_I2C_IHS_CH2 5991 CONFIG_SYS_I2C_IHS_CH2
5993 CONFIG_SYS_I2C_IHS_CH2_1 5992 CONFIG_SYS_I2C_IHS_CH2_1
5994 CONFIG_SYS_I2C_IHS_CH3 5993 CONFIG_SYS_I2C_IHS_CH3
5995 CONFIG_SYS_I2C_IHS_CH3_1 5994 CONFIG_SYS_I2C_IHS_CH3_1
5996 CONFIG_SYS_I2C_IHS_DUAL 5995 CONFIG_SYS_I2C_IHS_DUAL
5997 CONFIG_SYS_I2C_IHS_SLAVE_0 5996 CONFIG_SYS_I2C_IHS_SLAVE_0
5998 CONFIG_SYS_I2C_IHS_SLAVE_0_1 5997 CONFIG_SYS_I2C_IHS_SLAVE_0_1
5999 CONFIG_SYS_I2C_IHS_SLAVE_1 5998 CONFIG_SYS_I2C_IHS_SLAVE_1
6000 CONFIG_SYS_I2C_IHS_SLAVE_1_1 5999 CONFIG_SYS_I2C_IHS_SLAVE_1_1
6001 CONFIG_SYS_I2C_IHS_SLAVE_2 6000 CONFIG_SYS_I2C_IHS_SLAVE_2
6002 CONFIG_SYS_I2C_IHS_SLAVE_2_1 6001 CONFIG_SYS_I2C_IHS_SLAVE_2_1
6003 CONFIG_SYS_I2C_IHS_SLAVE_3 6002 CONFIG_SYS_I2C_IHS_SLAVE_3
6004 CONFIG_SYS_I2C_IHS_SLAVE_3_1 6003 CONFIG_SYS_I2C_IHS_SLAVE_3_1
6005 CONFIG_SYS_I2C_IHS_SPEED_0 6004 CONFIG_SYS_I2C_IHS_SPEED_0
6006 CONFIG_SYS_I2C_IHS_SPEED_0_1 6005 CONFIG_SYS_I2C_IHS_SPEED_0_1
6007 CONFIG_SYS_I2C_IHS_SPEED_1 6006 CONFIG_SYS_I2C_IHS_SPEED_1
6008 CONFIG_SYS_I2C_IHS_SPEED_1_1 6007 CONFIG_SYS_I2C_IHS_SPEED_1_1
6009 CONFIG_SYS_I2C_IHS_SPEED_2 6008 CONFIG_SYS_I2C_IHS_SPEED_2
6010 CONFIG_SYS_I2C_IHS_SPEED_2_1 6009 CONFIG_SYS_I2C_IHS_SPEED_2_1
6011 CONFIG_SYS_I2C_IHS_SPEED_3 6010 CONFIG_SYS_I2C_IHS_SPEED_3
6012 CONFIG_SYS_I2C_IHS_SPEED_3_1 6011 CONFIG_SYS_I2C_IHS_SPEED_3_1
6013 CONFIG_SYS_I2C_INIT_BOARD 6012 CONFIG_SYS_I2C_INIT_BOARD
6014 CONFIG_SYS_I2C_IO 6013 CONFIG_SYS_I2C_IO
6015 CONFIG_SYS_I2C_KEYBD_ADDR 6014 CONFIG_SYS_I2C_KEYBD_ADDR
6016 CONFIG_SYS_I2C_KONA 6015 CONFIG_SYS_I2C_KONA
6017 CONFIG_SYS_I2C_LDI_ADDR 6016 CONFIG_SYS_I2C_LDI_ADDR
6018 CONFIG_SYS_I2C_LM75_ADDR 6017 CONFIG_SYS_I2C_LM75_ADDR
6019 CONFIG_SYS_I2C_LM90_ADDR 6018 CONFIG_SYS_I2C_LM90_ADDR
6020 CONFIG_SYS_I2C_LPC32XX 6019 CONFIG_SYS_I2C_LPC32XX
6021 CONFIG_SYS_I2C_LPC32XX_SLAVE 6020 CONFIG_SYS_I2C_LPC32XX_SLAVE
6022 CONFIG_SYS_I2C_LPC32XX_SPEED 6021 CONFIG_SYS_I2C_LPC32XX_SPEED
6023 CONFIG_SYS_I2C_MAC1_BUS 6022 CONFIG_SYS_I2C_MAC1_BUS
6024 CONFIG_SYS_I2C_MAC1_CHIP_ADDR 6023 CONFIG_SYS_I2C_MAC1_CHIP_ADDR
6025 CONFIG_SYS_I2C_MAC1_DATA_ADDR 6024 CONFIG_SYS_I2C_MAC1_DATA_ADDR
6026 CONFIG_SYS_I2C_MAC2_BUS 6025 CONFIG_SYS_I2C_MAC2_BUS
6027 CONFIG_SYS_I2C_MAC2_CHIP_ADDR 6026 CONFIG_SYS_I2C_MAC2_CHIP_ADDR
6028 CONFIG_SYS_I2C_MAC2_DATA_ADDR 6027 CONFIG_SYS_I2C_MAC2_DATA_ADDR
6029 CONFIG_SYS_I2C_MAC_OFFSET 6028 CONFIG_SYS_I2C_MAC_OFFSET
6030 CONFIG_SYS_I2C_MAX1237_ADDR 6029 CONFIG_SYS_I2C_MAX1237_ADDR
6031 CONFIG_SYS_I2C_MAX_HOPS 6030 CONFIG_SYS_I2C_MAX_HOPS
6032 CONFIG_SYS_I2C_MODULE 6031 CONFIG_SYS_I2C_MODULE
6033 CONFIG_SYS_I2C_MXC 6032 CONFIG_SYS_I2C_MXC
6034 CONFIG_SYS_I2C_MXC_I2C1 6033 CONFIG_SYS_I2C_MXC_I2C1
6035 CONFIG_SYS_I2C_MXC_I2C2 6034 CONFIG_SYS_I2C_MXC_I2C2
6036 CONFIG_SYS_I2C_MXC_I2C3 6035 CONFIG_SYS_I2C_MXC_I2C3
6037 CONFIG_SYS_I2C_MXC_I2C4 6036 CONFIG_SYS_I2C_MXC_I2C4
6038 CONFIG_SYS_I2C_MXS 6037 CONFIG_SYS_I2C_MXS
6039 CONFIG_SYS_I2C_NCT72_ADDR 6038 CONFIG_SYS_I2C_NCT72_ADDR
6040 CONFIG_SYS_I2C_NOPROBES 6039 CONFIG_SYS_I2C_NOPROBES
6041 CONFIG_SYS_I2C_OFFSET 6040 CONFIG_SYS_I2C_OFFSET
6042 CONFIG_SYS_I2C_OMAP24XX 6041 CONFIG_SYS_I2C_OMAP24XX
6043 CONFIG_SYS_I2C_OMAP34XX 6042 CONFIG_SYS_I2C_OMAP34XX
6044 CONFIG_SYS_I2C_PCA953X_ADDR 6043 CONFIG_SYS_I2C_PCA953X_ADDR
6045 CONFIG_SYS_I2C_PCA953X_ADDR0 6044 CONFIG_SYS_I2C_PCA953X_ADDR0
6046 CONFIG_SYS_I2C_PCA953X_ADDR1 6045 CONFIG_SYS_I2C_PCA953X_ADDR1
6047 CONFIG_SYS_I2C_PCA953X_ADDR2 6046 CONFIG_SYS_I2C_PCA953X_ADDR2
6048 CONFIG_SYS_I2C_PCA953X_ADDR3 6047 CONFIG_SYS_I2C_PCA953X_ADDR3
6049 CONFIG_SYS_I2C_PCA953X_WIDTH 6048 CONFIG_SYS_I2C_PCA953X_WIDTH
6050 CONFIG_SYS_I2C_PCA9553_ADDR 6049 CONFIG_SYS_I2C_PCA9553_ADDR
6051 CONFIG_SYS_I2C_PCA9555_ADDR 6050 CONFIG_SYS_I2C_PCA9555_ADDR
6052 CONFIG_SYS_I2C_PCA9557_ADDR 6051 CONFIG_SYS_I2C_PCA9557_ADDR
6053 CONFIG_SYS_I2C_PCF8574A_ADDR 6052 CONFIG_SYS_I2C_PCF8574A_ADDR
6054 CONFIG_SYS_I2C_PEX8518_ADDR 6053 CONFIG_SYS_I2C_PEX8518_ADDR
6055 CONFIG_SYS_I2C_PINMUX_CLR 6054 CONFIG_SYS_I2C_PINMUX_CLR
6056 CONFIG_SYS_I2C_PINMUX_REG 6055 CONFIG_SYS_I2C_PINMUX_REG
6057 CONFIG_SYS_I2C_PINMUX_SET 6056 CONFIG_SYS_I2C_PINMUX_SET
6058 CONFIG_SYS_I2C_POWERIC_ADDR 6057 CONFIG_SYS_I2C_POWERIC_ADDR
6059 CONFIG_SYS_I2C_PPC4XX 6058 CONFIG_SYS_I2C_PPC4XX
6060 CONFIG_SYS_I2C_PPC4XX_CH0 6059 CONFIG_SYS_I2C_PPC4XX_CH0
6061 CONFIG_SYS_I2C_PPC4XX_CH1 6060 CONFIG_SYS_I2C_PPC4XX_CH1
6062 CONFIG_SYS_I2C_PPC4XX_SLAVE_0 6061 CONFIG_SYS_I2C_PPC4XX_SLAVE_0
6063 CONFIG_SYS_I2C_PPC4XX_SLAVE_1 6062 CONFIG_SYS_I2C_PPC4XX_SLAVE_1
6064 CONFIG_SYS_I2C_PPC4XX_SPEED_0 6063 CONFIG_SYS_I2C_PPC4XX_SPEED_0
6065 CONFIG_SYS_I2C_PPC4XX_SPEED_1 6064 CONFIG_SYS_I2C_PPC4XX_SPEED_1
6066 CONFIG_SYS_I2C_PXA 6065 CONFIG_SYS_I2C_PXA
6067 CONFIG_SYS_I2C_QIXIS_ADDR 6066 CONFIG_SYS_I2C_QIXIS_ADDR
6068 CONFIG_SYS_I2C_RCAR 6067 CONFIG_SYS_I2C_RCAR
6069 CONFIG_SYS_I2C_RTC_ADDR 6068 CONFIG_SYS_I2C_RTC_ADDR
6070 CONFIG_SYS_I2C_S3C24X0 6069 CONFIG_SYS_I2C_S3C24X0
6071 CONFIG_SYS_I2C_S3C24X0_SLAVE 6070 CONFIG_SYS_I2C_S3C24X0_SLAVE
6072 CONFIG_SYS_I2C_S3C24X0_SPEED 6071 CONFIG_SYS_I2C_S3C24X0_SPEED
6073 CONFIG_SYS_I2C_SH 6072 CONFIG_SYS_I2C_SH
6074 CONFIG_SYS_I2C_SH_BASE0 6073 CONFIG_SYS_I2C_SH_BASE0
6075 CONFIG_SYS_I2C_SH_BASE1 6074 CONFIG_SYS_I2C_SH_BASE1
6076 CONFIG_SYS_I2C_SH_BASE2 6075 CONFIG_SYS_I2C_SH_BASE2
6077 CONFIG_SYS_I2C_SH_BASE3 6076 CONFIG_SYS_I2C_SH_BASE3
6078 CONFIG_SYS_I2C_SH_BASE4 6077 CONFIG_SYS_I2C_SH_BASE4
6079 CONFIG_SYS_I2C_SH_NUM_CONTROLLERS 6078 CONFIG_SYS_I2C_SH_NUM_CONTROLLERS
6080 CONFIG_SYS_I2C_SH_SPEED0 6079 CONFIG_SYS_I2C_SH_SPEED0
6081 CONFIG_SYS_I2C_SH_SPEED1 6080 CONFIG_SYS_I2C_SH_SPEED1
6082 CONFIG_SYS_I2C_SH_SPEED2 6081 CONFIG_SYS_I2C_SH_SPEED2
6083 CONFIG_SYS_I2C_SH_SPEED3 6082 CONFIG_SYS_I2C_SH_SPEED3
6084 CONFIG_SYS_I2C_SH_SPEED4 6083 CONFIG_SYS_I2C_SH_SPEED4
6085 CONFIG_SYS_I2C_SLAVE 6084 CONFIG_SYS_I2C_SLAVE
6086 CONFIG_SYS_I2C_SLAVE1 6085 CONFIG_SYS_I2C_SLAVE1
6087 CONFIG_SYS_I2C_SLAVE2 6086 CONFIG_SYS_I2C_SLAVE2
6088 CONFIG_SYS_I2C_SLAVE3 6087 CONFIG_SYS_I2C_SLAVE3
6089 CONFIG_SYS_I2C_SOFT 6088 CONFIG_SYS_I2C_SOFT
6090 CONFIG_SYS_I2C_SOFT_SLAVE 6089 CONFIG_SYS_I2C_SOFT_SLAVE
6091 CONFIG_SYS_I2C_SOFT_SLAVE_10 6090 CONFIG_SYS_I2C_SOFT_SLAVE_10
6092 CONFIG_SYS_I2C_SOFT_SLAVE_11 6091 CONFIG_SYS_I2C_SOFT_SLAVE_11
6093 CONFIG_SYS_I2C_SOFT_SLAVE_12 6092 CONFIG_SYS_I2C_SOFT_SLAVE_12
6094 CONFIG_SYS_I2C_SOFT_SLAVE_2 6093 CONFIG_SYS_I2C_SOFT_SLAVE_2
6095 CONFIG_SYS_I2C_SOFT_SLAVE_3 6094 CONFIG_SYS_I2C_SOFT_SLAVE_3
6096 CONFIG_SYS_I2C_SOFT_SLAVE_4 6095 CONFIG_SYS_I2C_SOFT_SLAVE_4
6097 CONFIG_SYS_I2C_SOFT_SLAVE_5 6096 CONFIG_SYS_I2C_SOFT_SLAVE_5
6098 CONFIG_SYS_I2C_SOFT_SLAVE_6 6097 CONFIG_SYS_I2C_SOFT_SLAVE_6
6099 CONFIG_SYS_I2C_SOFT_SLAVE_7 6098 CONFIG_SYS_I2C_SOFT_SLAVE_7
6100 CONFIG_SYS_I2C_SOFT_SLAVE_8 6099 CONFIG_SYS_I2C_SOFT_SLAVE_8
6101 CONFIG_SYS_I2C_SOFT_SLAVE_9 6100 CONFIG_SYS_I2C_SOFT_SLAVE_9
6102 CONFIG_SYS_I2C_SOFT_SPEED 6101 CONFIG_SYS_I2C_SOFT_SPEED
6103 CONFIG_SYS_I2C_SOFT_SPEED_10 6102 CONFIG_SYS_I2C_SOFT_SPEED_10
6104 CONFIG_SYS_I2C_SOFT_SPEED_11 6103 CONFIG_SYS_I2C_SOFT_SPEED_11
6105 CONFIG_SYS_I2C_SOFT_SPEED_12 6104 CONFIG_SYS_I2C_SOFT_SPEED_12
6106 CONFIG_SYS_I2C_SOFT_SPEED_2 6105 CONFIG_SYS_I2C_SOFT_SPEED_2
6107 CONFIG_SYS_I2C_SOFT_SPEED_3 6106 CONFIG_SYS_I2C_SOFT_SPEED_3
6108 CONFIG_SYS_I2C_SOFT_SPEED_4 6107 CONFIG_SYS_I2C_SOFT_SPEED_4
6109 CONFIG_SYS_I2C_SOFT_SPEED_5 6108 CONFIG_SYS_I2C_SOFT_SPEED_5
6110 CONFIG_SYS_I2C_SOFT_SPEED_6 6109 CONFIG_SYS_I2C_SOFT_SPEED_6
6111 CONFIG_SYS_I2C_SOFT_SPEED_7 6110 CONFIG_SYS_I2C_SOFT_SPEED_7
6112 CONFIG_SYS_I2C_SOFT_SPEED_8 6111 CONFIG_SYS_I2C_SOFT_SPEED_8
6113 CONFIG_SYS_I2C_SOFT_SPEED_9 6112 CONFIG_SYS_I2C_SOFT_SPEED_9
6114 CONFIG_SYS_I2C_SPEED 6113 CONFIG_SYS_I2C_SPEED
6115 CONFIG_SYS_I2C_SPEED1 6114 CONFIG_SYS_I2C_SPEED1
6116 CONFIG_SYS_I2C_SPEED2 6115 CONFIG_SYS_I2C_SPEED2
6117 CONFIG_SYS_I2C_SPEED3 6116 CONFIG_SYS_I2C_SPEED3
6118 CONFIG_SYS_I2C_TCA642X_ADDR 6117 CONFIG_SYS_I2C_TCA642X_ADDR
6119 CONFIG_SYS_I2C_TCA642X_BUS_NUM 6118 CONFIG_SYS_I2C_TCA642X_BUS_NUM
6120 CONFIG_SYS_I2C_TEGRA 6119 CONFIG_SYS_I2C_TEGRA
6121 CONFIG_SYS_I2C_UCODE_PATCH 6120 CONFIG_SYS_I2C_UCODE_PATCH
6122 CONFIG_SYS_I2C_W83782G_ADDR 6121 CONFIG_SYS_I2C_W83782G_ADDR
6123 CONFIG_SYS_I2C_ZYNQ 6122 CONFIG_SYS_I2C_ZYNQ
6124 CONFIG_SYS_I2C_ZYNQ_SLAVE 6123 CONFIG_SYS_I2C_ZYNQ_SLAVE
6125 CONFIG_SYS_I2C_ZYNQ_SPEED 6124 CONFIG_SYS_I2C_ZYNQ_SPEED
6126 CONFIG_SYS_I2ODMA_BASE 6125 CONFIG_SYS_I2ODMA_BASE
6127 CONFIG_SYS_I2ODMA_PHYS_ADDR 6126 CONFIG_SYS_I2ODMA_PHYS_ADDR
6128 CONFIG_SYS_I2c_INIT_MPC5XXX 6127 CONFIG_SYS_I2c_INIT_MPC5XXX
6129 CONFIG_SYS_IBAT 6128 CONFIG_SYS_IBAT
6130 CONFIG_SYS_IBAT0L 6129 CONFIG_SYS_IBAT0L
6131 CONFIG_SYS_IBAT0U 6130 CONFIG_SYS_IBAT0U
6132 CONFIG_SYS_IBAT1L 6131 CONFIG_SYS_IBAT1L
6133 CONFIG_SYS_IBAT1U 6132 CONFIG_SYS_IBAT1U
6134 CONFIG_SYS_IBAT2L 6133 CONFIG_SYS_IBAT2L
6135 CONFIG_SYS_IBAT2U 6134 CONFIG_SYS_IBAT2U
6136 CONFIG_SYS_IBAT3L 6135 CONFIG_SYS_IBAT3L
6137 CONFIG_SYS_IBAT3U 6136 CONFIG_SYS_IBAT3U
6138 CONFIG_SYS_IBAT4L 6137 CONFIG_SYS_IBAT4L
6139 CONFIG_SYS_IBAT4U 6138 CONFIG_SYS_IBAT4U
6140 CONFIG_SYS_IBAT5L 6139 CONFIG_SYS_IBAT5L
6141 CONFIG_SYS_IBAT5U 6140 CONFIG_SYS_IBAT5U
6142 CONFIG_SYS_IBAT6L 6141 CONFIG_SYS_IBAT6L
6143 CONFIG_SYS_IBAT6L_EARLY 6142 CONFIG_SYS_IBAT6L_EARLY
6144 CONFIG_SYS_IBAT6U 6143 CONFIG_SYS_IBAT6U
6145 CONFIG_SYS_IBAT6U_EARLY 6144 CONFIG_SYS_IBAT6U_EARLY
6146 CONFIG_SYS_IBAT7L 6145 CONFIG_SYS_IBAT7L
6147 CONFIG_SYS_IBAT7U 6146 CONFIG_SYS_IBAT7U
6148 CONFIG_SYS_ICACHE_INV 6147 CONFIG_SYS_ICACHE_INV
6149 CONFIG_SYS_ICACHE_LINESZ 6148 CONFIG_SYS_ICACHE_LINESZ
6150 CONFIG_SYS_ICACHE_SACR_VALUE 6149 CONFIG_SYS_ICACHE_SACR_VALUE
6151 CONFIG_SYS_ICS8N3QV01_I2C 6150 CONFIG_SYS_ICS8N3QV01_I2C
6152 CONFIG_SYS_ICTRL 6151 CONFIG_SYS_ICTRL
6153 CONFIG_SYS_IDE_MAXBUS 6152 CONFIG_SYS_IDE_MAXBUS
6154 CONFIG_SYS_IDE_MAXDEVICE 6153 CONFIG_SYS_IDE_MAXDEVICE
6155 CONFIG_SYS_ID_EEPROM 6154 CONFIG_SYS_ID_EEPROM
6156 CONFIG_SYS_IFC_ADDR 6155 CONFIG_SYS_IFC_ADDR
6157 CONFIG_SYS_IFC_CCR 6156 CONFIG_SYS_IFC_CCR
6158 CONFIG_SYS_IMMR 6157 CONFIG_SYS_IMMR
6159 CONFIG_SYS_INIT_DBCR 6158 CONFIG_SYS_INIT_DBCR
6160 CONFIG_SYS_INIT_DCACHE_CS 6159 CONFIG_SYS_INIT_DCACHE_CS
6161 CONFIG_SYS_INIT_DCACHE_PBxAR 6160 CONFIG_SYS_INIT_DCACHE_PBxAR
6162 CONFIG_SYS_INIT_DCACHE_PBxCR 6161 CONFIG_SYS_INIT_DCACHE_PBxCR
6163 CONFIG_SYS_INIT_EXTRA_SIZE 6162 CONFIG_SYS_INIT_EXTRA_SIZE
6164 CONFIG_SYS_INIT_L2CSR0 6163 CONFIG_SYS_INIT_L2CSR0
6165 CONFIG_SYS_INIT_L2_ADDR 6164 CONFIG_SYS_INIT_L2_ADDR
6166 CONFIG_SYS_INIT_L2_ADDR_PHYS 6165 CONFIG_SYS_INIT_L2_ADDR_PHYS
6167 CONFIG_SYS_INIT_L2_END 6166 CONFIG_SYS_INIT_L2_END
6168 CONFIG_SYS_INIT_L3_ADDR 6167 CONFIG_SYS_INIT_L3_ADDR
6169 CONFIG_SYS_INIT_L3_ADDR_PHYS 6168 CONFIG_SYS_INIT_L3_ADDR_PHYS
6170 CONFIG_SYS_INIT_L3_END 6169 CONFIG_SYS_INIT_L3_END
6171 CONFIG_SYS_INIT_L3_VADDR 6170 CONFIG_SYS_INIT_L3_VADDR
6172 CONFIG_SYS_INIT_RAM1_ADDR 6171 CONFIG_SYS_INIT_RAM1_ADDR
6173 CONFIG_SYS_INIT_RAM1_CTRL 6172 CONFIG_SYS_INIT_RAM1_CTRL
6174 CONFIG_SYS_INIT_RAM1_END 6173 CONFIG_SYS_INIT_RAM1_END
6175 CONFIG_SYS_INIT_RAM_ADDR 6174 CONFIG_SYS_INIT_RAM_ADDR
6176 CONFIG_SYS_INIT_RAM_ADDR_PHYS 6175 CONFIG_SYS_INIT_RAM_ADDR_PHYS
6177 CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 6176 CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH
6178 CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW 6177 CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW
6179 CONFIG_SYS_INIT_RAM_CTRL 6178 CONFIG_SYS_INIT_RAM_CTRL
6180 CONFIG_SYS_INIT_RAM_DCACHE 6179 CONFIG_SYS_INIT_RAM_DCACHE
6181 CONFIG_SYS_INIT_RAM_LOCK 6180 CONFIG_SYS_INIT_RAM_LOCK
6182 CONFIG_SYS_INIT_RAM_PATTERN 6181 CONFIG_SYS_INIT_RAM_PATTERN
6183 CONFIG_SYS_INIT_RAM_SIZE 6182 CONFIG_SYS_INIT_RAM_SIZE
6184 CONFIG_SYS_INIT_SP_ADDR 6183 CONFIG_SYS_INIT_SP_ADDR
6185 CONFIG_SYS_INIT_SP_OFFSET 6184 CONFIG_SYS_INIT_SP_OFFSET
6186 CONFIG_SYS_INPUT_CLKSRC 6185 CONFIG_SYS_INPUT_CLKSRC
6187 CONFIG_SYS_INTA_FAKE 6186 CONFIG_SYS_INTA_FAKE
6188 CONFIG_SYS_INTEL_BOOT 6187 CONFIG_SYS_INTEL_BOOT
6189 CONFIG_SYS_INTERLAKEN 6188 CONFIG_SYS_INTERLAKEN
6190 CONFIG_SYS_INTRAM_BASE 6189 CONFIG_SYS_INTRAM_BASE
6191 CONFIG_SYS_INTRAM_SIZE 6190 CONFIG_SYS_INTRAM_SIZE
6192 CONFIG_SYS_INTR_BASE 6191 CONFIG_SYS_INTR_BASE
6193 CONFIG_SYS_INTSRAM 6192 CONFIG_SYS_INTSRAM
6194 CONFIG_SYS_INTSRAMSZ 6193 CONFIG_SYS_INTSRAMSZ
6195 CONFIG_SYS_INT_FLASH_BASE 6194 CONFIG_SYS_INT_FLASH_BASE
6196 CONFIG_SYS_INT_FLASH_ENABLE 6195 CONFIG_SYS_INT_FLASH_ENABLE
6197 CONFIG_SYS_IOCTRL_MUX_DDR 6196 CONFIG_SYS_IOCTRL_MUX_DDR
6198 CONFIG_SYS_IO_BASE 6197 CONFIG_SYS_IO_BASE
6199 CONFIG_SYS_IPBCLK_EQUALS_XLBCLK 6198 CONFIG_SYS_IPBCLK_EQUALS_XLBCLK
6200 CONFIG_SYS_IPBSPEED_133 6199 CONFIG_SYS_IPBSPEED_133
6201 CONFIG_SYS_IR_REG_BASE_ADDR 6200 CONFIG_SYS_IR_REG_BASE_ADDR
6202 CONFIG_SYS_ISA_BASE 6201 CONFIG_SYS_ISA_BASE
6203 CONFIG_SYS_ISA_IO 6202 CONFIG_SYS_ISA_IO
6204 CONFIG_SYS_ISA_IO_BASE_ADDRESS 6203 CONFIG_SYS_ISA_IO_BASE_ADDRESS
6205 CONFIG_SYS_ISA_IO_OFFSET 6204 CONFIG_SYS_ISA_IO_OFFSET
6206 CONFIG_SYS_ISA_IO_STRIDE 6205 CONFIG_SYS_ISA_IO_STRIDE
6207 CONFIG_SYS_ISA_MEM 6206 CONFIG_SYS_ISA_MEM
6208 CONFIG_SYS_ISB 6207 CONFIG_SYS_ISB
6209 CONFIG_SYS_ISRAM_BASE 6208 CONFIG_SYS_ISRAM_BASE
6210 CONFIG_SYS_IVM_EEPROM_ADR 6209 CONFIG_SYS_IVM_EEPROM_ADR
6211 CONFIG_SYS_IVM_EEPROM_MAX_LEN 6210 CONFIG_SYS_IVM_EEPROM_MAX_LEN
6212 CONFIG_SYS_IVM_EEPROM_PAGE_LEN 6211 CONFIG_SYS_IVM_EEPROM_PAGE_LEN
6213 CONFIG_SYS_JFFS2_FIRST_BANK 6212 CONFIG_SYS_JFFS2_FIRST_BANK
6214 CONFIG_SYS_JFFS2_FIRST_SECTOR 6213 CONFIG_SYS_JFFS2_FIRST_SECTOR
6215 CONFIG_SYS_JFFS2_MEM_NAND 6214 CONFIG_SYS_JFFS2_MEM_NAND
6216 CONFIG_SYS_JFFS2_NUM_BANKS 6215 CONFIG_SYS_JFFS2_NUM_BANKS
6217 CONFIG_SYS_JFFS2_SORT_FRAGMENTS 6216 CONFIG_SYS_JFFS2_SORT_FRAGMENTS
6218 CONFIG_SYS_KBYTES_SDRAM 6217 CONFIG_SYS_KBYTES_SDRAM
6219 CONFIG_SYS_KEY_REG_BASE_ADDR 6218 CONFIG_SYS_KEY_REG_BASE_ADDR
6220 CONFIG_SYS_KMBEC_FPGA_BASE 6219 CONFIG_SYS_KMBEC_FPGA_BASE
6221 CONFIG_SYS_KMBEC_FPGA_SIZE 6220 CONFIG_SYS_KMBEC_FPGA_SIZE
6222 CONFIG_SYS_KWD_CONFIG 6221 CONFIG_SYS_KWD_CONFIG
6223 CONFIG_SYS_KW_SPI_MPP 6222 CONFIG_SYS_KW_SPI_MPP
6224 CONFIG_SYS_L2 6223 CONFIG_SYS_L2
6225 CONFIG_SYS_L2_PL310 6224 CONFIG_SYS_L2_PL310
6226 CONFIG_SYS_L2_SIZE 6225 CONFIG_SYS_L2_SIZE
6227 CONFIG_SYS_L3_SIZE 6226 CONFIG_SYS_L3_SIZE
6228 CONFIG_SYS_LARGE_FLASH 6227 CONFIG_SYS_LARGE_FLASH
6229 CONFIG_SYS_LATCH0_BOOT 6228 CONFIG_SYS_LATCH0_BOOT
6230 CONFIG_SYS_LATCH0_RESET 6229 CONFIG_SYS_LATCH0_RESET
6231 CONFIG_SYS_LATCH1_BOOT 6230 CONFIG_SYS_LATCH1_BOOT
6232 CONFIG_SYS_LATCH1_RESET 6231 CONFIG_SYS_LATCH1_RESET
6233 CONFIG_SYS_LATCH_ADDR 6232 CONFIG_SYS_LATCH_ADDR
6234 CONFIG_SYS_LATCH_BASE 6233 CONFIG_SYS_LATCH_BASE
6235 CONFIG_SYS_LBAPP1_BASE 6234 CONFIG_SYS_LBAPP1_BASE
6236 CONFIG_SYS_LBAPP1_BASE_PHYS 6235 CONFIG_SYS_LBAPP1_BASE_PHYS
6237 CONFIG_SYS_LBAPP1_BR_PRELIM 6236 CONFIG_SYS_LBAPP1_BR_PRELIM
6238 CONFIG_SYS_LBAPP1_OR_PRELIM 6237 CONFIG_SYS_LBAPP1_OR_PRELIM
6239 CONFIG_SYS_LBAPP2_BASE 6238 CONFIG_SYS_LBAPP2_BASE
6240 CONFIG_SYS_LBAPP2_BASE_PHYS 6239 CONFIG_SYS_LBAPP2_BASE_PHYS
6241 CONFIG_SYS_LBAPP2_BR_PRELIM 6240 CONFIG_SYS_LBAPP2_BR_PRELIM
6242 CONFIG_SYS_LBAPP2_OR_PRELIM 6241 CONFIG_SYS_LBAPP2_OR_PRELIM
6243 CONFIG_SYS_LBC0_BASE 6242 CONFIG_SYS_LBC0_BASE
6244 CONFIG_SYS_LBC0_BASE_PHYS 6243 CONFIG_SYS_LBC0_BASE_PHYS
6245 CONFIG_SYS_LBC1_BASE 6244 CONFIG_SYS_LBC1_BASE
6246 CONFIG_SYS_LBC1_BASE_PHYS 6245 CONFIG_SYS_LBC1_BASE_PHYS
6247 CONFIG_SYS_LBCR_ADDR 6246 CONFIG_SYS_LBCR_ADDR
6248 CONFIG_SYS_LBC_ADDR 6247 CONFIG_SYS_LBC_ADDR
6249 CONFIG_SYS_LBC_BASE 6248 CONFIG_SYS_LBC_BASE
6250 CONFIG_SYS_LBC_BASE_PHYS_LOW 6249 CONFIG_SYS_LBC_BASE_PHYS_LOW
6251 CONFIG_SYS_LBC_CACHE_BASE 6250 CONFIG_SYS_LBC_CACHE_BASE
6252 CONFIG_SYS_LBC_FLASH_BASE 6251 CONFIG_SYS_LBC_FLASH_BASE
6253 CONFIG_SYS_LBC_LBCR 6252 CONFIG_SYS_LBC_LBCR
6254 CONFIG_SYS_LBC_LCRR 6253 CONFIG_SYS_LBC_LCRR
6255 CONFIG_SYS_LBC_LSDMR_1 6254 CONFIG_SYS_LBC_LSDMR_1
6256 CONFIG_SYS_LBC_LSDMR_2 6255 CONFIG_SYS_LBC_LSDMR_2
6257 CONFIG_SYS_LBC_LSDMR_3 6256 CONFIG_SYS_LBC_LSDMR_3
6258 CONFIG_SYS_LBC_LSDMR_4 6257 CONFIG_SYS_LBC_LSDMR_4
6259 CONFIG_SYS_LBC_LSDMR_5 6258 CONFIG_SYS_LBC_LSDMR_5
6260 CONFIG_SYS_LBC_LSDMR_ARFRSH 6259 CONFIG_SYS_LBC_LSDMR_ARFRSH
6261 CONFIG_SYS_LBC_LSDMR_COMMON 6260 CONFIG_SYS_LBC_LSDMR_COMMON
6262 CONFIG_SYS_LBC_LSDMR_MRW 6261 CONFIG_SYS_LBC_LSDMR_MRW
6263 CONFIG_SYS_LBC_LSDMR_PCHALL 6262 CONFIG_SYS_LBC_LSDMR_PCHALL
6264 CONFIG_SYS_LBC_LSDMR_RFEN 6263 CONFIG_SYS_LBC_LSDMR_RFEN
6265 CONFIG_SYS_LBC_LSRT 6264 CONFIG_SYS_LBC_LSRT
6266 CONFIG_SYS_LBC_MRTPR 6265 CONFIG_SYS_LBC_MRTPR
6267 CONFIG_SYS_LBC_NONCACHE_BASE 6266 CONFIG_SYS_LBC_NONCACHE_BASE
6268 CONFIG_SYS_LBC_SDRAM_BASE 6267 CONFIG_SYS_LBC_SDRAM_BASE
6269 CONFIG_SYS_LBC_SDRAM_BASE_PHYS 6268 CONFIG_SYS_LBC_SDRAM_BASE_PHYS
6270 CONFIG_SYS_LBC_SDRAM_SIZE 6269 CONFIG_SYS_LBC_SDRAM_SIZE
6271 CONFIG_SYS_LBLAWAR0_PRELIM 6270 CONFIG_SYS_LBLAWAR0_PRELIM
6272 CONFIG_SYS_LBLAWAR1_PRELIM 6271 CONFIG_SYS_LBLAWAR1_PRELIM
6273 CONFIG_SYS_LBLAWAR2_PRELIM 6272 CONFIG_SYS_LBLAWAR2_PRELIM
6274 CONFIG_SYS_LBLAWAR3_PRELIM 6273 CONFIG_SYS_LBLAWAR3_PRELIM
6275 CONFIG_SYS_LBLAWAR4_PRELIM 6274 CONFIG_SYS_LBLAWAR4_PRELIM
6276 CONFIG_SYS_LBLAWAR5_PRELIM 6275 CONFIG_SYS_LBLAWAR5_PRELIM
6277 CONFIG_SYS_LBLAWAR6_PRELIM 6276 CONFIG_SYS_LBLAWAR6_PRELIM
6278 CONFIG_SYS_LBLAWAR7_PRELIM 6277 CONFIG_SYS_LBLAWAR7_PRELIM
6279 CONFIG_SYS_LBLAWBAR0_PRELIM 6278 CONFIG_SYS_LBLAWBAR0_PRELIM
6280 CONFIG_SYS_LBLAWBAR1_PRELIM 6279 CONFIG_SYS_LBLAWBAR1_PRELIM
6281 CONFIG_SYS_LBLAWBAR2_PRELIM 6280 CONFIG_SYS_LBLAWBAR2_PRELIM
6282 CONFIG_SYS_LBLAWBAR3_PRELIM 6281 CONFIG_SYS_LBLAWBAR3_PRELIM
6283 CONFIG_SYS_LBLAWBAR4_PRELIM 6282 CONFIG_SYS_LBLAWBAR4_PRELIM
6284 CONFIG_SYS_LBLAWBAR5_PRELIM 6283 CONFIG_SYS_LBLAWBAR5_PRELIM
6285 CONFIG_SYS_LBLAWBAR6_PRELIM 6284 CONFIG_SYS_LBLAWBAR6_PRELIM
6286 CONFIG_SYS_LBLAWBAR7_PRELIM 6285 CONFIG_SYS_LBLAWBAR7_PRELIM
6287 CONFIG_SYS_LB_SDRAM 6286 CONFIG_SYS_LB_SDRAM
6288 CONFIG_SYS_LCD0_RST 6287 CONFIG_SYS_LCD0_RST
6289 CONFIG_SYS_LCD1_RST 6288 CONFIG_SYS_LCD1_RST
6290 CONFIG_SYS_LCD_BASE 6289 CONFIG_SYS_LCD_BASE
6291 CONFIG_SYS_LCD_ENDIAN 6290 CONFIG_SYS_LCD_ENDIAN
6292 CONFIG_SYS_LCRR_CLKDIV 6291 CONFIG_SYS_LCRR_CLKDIV
6293 CONFIG_SYS_LCRR_DBYP 6292 CONFIG_SYS_LCRR_DBYP
6294 CONFIG_SYS_LCRR_EADC 6293 CONFIG_SYS_LCRR_EADC
6295 CONFIG_SYS_LDB_CLOCK 6294 CONFIG_SYS_LDB_CLOCK
6296 CONFIG_SYS_LDSCRIPT 6295 CONFIG_SYS_LDSCRIPT
6297 CONFIG_SYS_LED_ADDR 6296 CONFIG_SYS_LED_ADDR
6298 CONFIG_SYS_LED_BASE 6297 CONFIG_SYS_LED_BASE
6299 CONFIG_SYS_LED_DISP_BASE 6298 CONFIG_SYS_LED_DISP_BASE
6300 CONFIG_SYS_LIME_BASE 6299 CONFIG_SYS_LIME_BASE
6301 CONFIG_SYS_LIME_BASE_0 6300 CONFIG_SYS_LIME_BASE_0
6302 CONFIG_SYS_LIME_BASE_1 6301 CONFIG_SYS_LIME_BASE_1
6303 CONFIG_SYS_LIME_BASE_2 6302 CONFIG_SYS_LIME_BASE_2
6304 CONFIG_SYS_LIME_BASE_3 6303 CONFIG_SYS_LIME_BASE_3
6305 CONFIG_SYS_LIME_CLOCK_100MHZ 6304 CONFIG_SYS_LIME_CLOCK_100MHZ
6306 CONFIG_SYS_LIME_CLOCK_133MHZ 6305 CONFIG_SYS_LIME_CLOCK_133MHZ
6307 CONFIG_SYS_LIME_MMR 6306 CONFIG_SYS_LIME_MMR
6308 CONFIG_SYS_LIME_SDRAM_CLOCK 6307 CONFIG_SYS_LIME_SDRAM_CLOCK
6309 CONFIG_SYS_LIME_SIZE 6308 CONFIG_SYS_LIME_SIZE
6310 CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE 6309 CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE
6311 CONFIG_SYS_LOADS_BAUD_CHANGE 6310 CONFIG_SYS_LOADS_BAUD_CHANGE
6312 CONFIG_SYS_LOAD_ADDR 6311 CONFIG_SYS_LOAD_ADDR
6313 CONFIG_SYS_LOAD_ADDR2 6312 CONFIG_SYS_LOAD_ADDR2
6314 CONFIG_SYS_LOCAL_CONF_REGS 6313 CONFIG_SYS_LOCAL_CONF_REGS
6315 CONFIG_SYS_LONGHELP 6314 CONFIG_SYS_LONGHELP
6316 CONFIG_SYS_LOW 6315 CONFIG_SYS_LOW
6317 CONFIG_SYS_LOWBOOT 6316 CONFIG_SYS_LOWBOOT
6318 CONFIG_SYS_LOWBOOT16 6317 CONFIG_SYS_LOWBOOT16
6319 CONFIG_SYS_LOWBOOT32 6318 CONFIG_SYS_LOWBOOT32
6320 CONFIG_SYS_LOWMEM_BASE 6319 CONFIG_SYS_LOWMEM_BASE
6321 CONFIG_SYS_LOW_RES_TIMER 6320 CONFIG_SYS_LOW_RES_TIMER
6322 CONFIG_SYS_LPAE_SDRAM_BASE 6321 CONFIG_SYS_LPAE_SDRAM_BASE
6323 CONFIG_SYS_LPC32XX_UART 6322 CONFIG_SYS_LPC32XX_UART
6324 CONFIG_SYS_LS1_DDR_BLOCK1_SIZE 6323 CONFIG_SYS_LS1_DDR_BLOCK1_SIZE
6325 CONFIG_SYS_LS2_DDR_BLOCK1_SIZE 6324 CONFIG_SYS_LS2_DDR_BLOCK1_SIZE
6326 CONFIG_SYS_LS_MC_AIOP_IMG_MAX_LENGTH 6325 CONFIG_SYS_LS_MC_AIOP_IMG_MAX_LENGTH
6327 CONFIG_SYS_LS_MC_BOOT_TIMEOUT_MS 6326 CONFIG_SYS_LS_MC_BOOT_TIMEOUT_MS
6328 CONFIG_SYS_LS_MC_DPC_ADDR 6327 CONFIG_SYS_LS_MC_DPC_ADDR
6329 CONFIG_SYS_LS_MC_DPC_IN_DDR 6328 CONFIG_SYS_LS_MC_DPC_IN_DDR
6330 CONFIG_SYS_LS_MC_DPC_IN_NOR 6329 CONFIG_SYS_LS_MC_DPC_IN_NOR
6331 CONFIG_SYS_LS_MC_DPC_MAX_LENGTH 6330 CONFIG_SYS_LS_MC_DPC_MAX_LENGTH
6332 CONFIG_SYS_LS_MC_DPL_ADDR 6331 CONFIG_SYS_LS_MC_DPL_ADDR
6333 CONFIG_SYS_LS_MC_DPL_IN_DDR 6332 CONFIG_SYS_LS_MC_DPL_IN_DDR
6334 CONFIG_SYS_LS_MC_DPL_IN_NOR 6333 CONFIG_SYS_LS_MC_DPL_IN_NOR
6335 CONFIG_SYS_LS_MC_DPL_MAX_LENGTH 6334 CONFIG_SYS_LS_MC_DPL_MAX_LENGTH
6336 CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET 6335 CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET
6337 CONFIG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE 6336 CONFIG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE
6338 CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET 6337 CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET
6339 CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET 6338 CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET
6340 CONFIG_SYS_LS_MC_FW_ADDR 6339 CONFIG_SYS_LS_MC_FW_ADDR
6341 CONFIG_SYS_LS_MC_FW_IN_DDR 6340 CONFIG_SYS_LS_MC_FW_IN_DDR
6342 CONFIG_SYS_LS_MC_FW_IN_NOR 6341 CONFIG_SYS_LS_MC_FW_IN_NOR
6343 CONFIG_SYS_LS_PPA_FW_ADDR 6342 CONFIG_SYS_LS_PPA_FW_ADDR
6344 CONFIG_SYS_LS_PPA_FW_IN_XIP 6343 CONFIG_SYS_LS_PPA_FW_IN_XIP
6345 CONFIG_SYS_LS_PPA_FW_IN_xxx 6344 CONFIG_SYS_LS_PPA_FW_IN_xxx
6346 CONFIG_SYS_M41T11_BASE_YEAR 6345 CONFIG_SYS_M41T11_BASE_YEAR
6347 CONFIG_SYS_M41T11_EXT_CENTURY_DATA 6346 CONFIG_SYS_M41T11_EXT_CENTURY_DATA
6348 CONFIG_SYS_MACB0_BASE 6347 CONFIG_SYS_MACB0_BASE
6349 CONFIG_SYS_MACB1_BASE 6348 CONFIG_SYS_MACB1_BASE
6350 CONFIG_SYS_MACB2_BASE 6349 CONFIG_SYS_MACB2_BASE
6351 CONFIG_SYS_MACB3_BASE 6350 CONFIG_SYS_MACB3_BASE
6352 CONFIG_SYS_MAIN_PWR_ON 6351 CONFIG_SYS_MAIN_PWR_ON
6353 CONFIG_SYS_MALLOC_BASE 6352 CONFIG_SYS_MALLOC_BASE
6354 CONFIG_SYS_MALLOC_CLEAR_ON_INIT 6353 CONFIG_SYS_MALLOC_CLEAR_ON_INIT
6355 CONFIG_SYS_MALLOC_END 6354 CONFIG_SYS_MALLOC_END
6356 CONFIG_SYS_MALLOC_LEN 6355 CONFIG_SYS_MALLOC_LEN
6357 CONFIG_SYS_MALLOC_SIMPLE 6356 CONFIG_SYS_MALLOC_SIMPLE
6358 CONFIG_SYS_MAMR 6357 CONFIG_SYS_MAMR
6359 CONFIG_SYS_MAMR_10COL 6358 CONFIG_SYS_MAMR_10COL
6360 CONFIG_SYS_MAMR_8COL 6359 CONFIG_SYS_MAMR_8COL
6361 CONFIG_SYS_MAMR_9COL 6360 CONFIG_SYS_MAMR_9COL
6362 CONFIG_SYS_MAMR_PTA 6361 CONFIG_SYS_MAMR_PTA
6363 CONFIG_SYS_MAPLE 6362 CONFIG_SYS_MAPLE
6364 CONFIG_SYS_MAPLE_MEM_PHYS 6363 CONFIG_SYS_MAPLE_MEM_PHYS
6365 CONFIG_SYS_MAPPED_RAM_BASE 6364 CONFIG_SYS_MAPPED_RAM_BASE
6366 CONFIG_SYS_MARUBUN_IO 6365 CONFIG_SYS_MARUBUN_IO
6367 CONFIG_SYS_MARUBUN_MRSHPC 6366 CONFIG_SYS_MARUBUN_MRSHPC
6368 CONFIG_SYS_MARUBUN_MW1 6367 CONFIG_SYS_MARUBUN_MW1
6369 CONFIG_SYS_MARUBUN_MW2 6368 CONFIG_SYS_MARUBUN_MW2
6370 CONFIG_SYS_MASK 6369 CONFIG_SYS_MASK
6371 CONFIG_SYS_MASTER_CLOCK 6370 CONFIG_SYS_MASTER_CLOCK
6372 CONFIG_SYS_MATRIX_EBI0CSA_VAL 6371 CONFIG_SYS_MATRIX_EBI0CSA_VAL
6373 CONFIG_SYS_MATRIX_EBICSA_VAL 6372 CONFIG_SYS_MATRIX_EBICSA_VAL
6374 CONFIG_SYS_MATRIX_MCFG_REMAP 6373 CONFIG_SYS_MATRIX_MCFG_REMAP
6375 CONFIG_SYS_MAXARGS 6374 CONFIG_SYS_MAXARGS
6376 CONFIG_SYS_MAXIDLE 6375 CONFIG_SYS_MAXIDLE
6377 CONFIG_SYS_MAX_DATAFLASH_BANKS 6376 CONFIG_SYS_MAX_DATAFLASH_BANKS
6378 CONFIG_SYS_MAX_DDR_BAT_SIZE 6377 CONFIG_SYS_MAX_DDR_BAT_SIZE
6379 CONFIG_SYS_MAX_DOC_DEVICE 6378 CONFIG_SYS_MAX_DOC_DEVICE
6380 CONFIG_SYS_MAX_FLASH_BANKS 6379 CONFIG_SYS_MAX_FLASH_BANKS
6381 CONFIG_SYS_MAX_FLASH_BANKS_DETECT 6380 CONFIG_SYS_MAX_FLASH_BANKS_DETECT
6382 CONFIG_SYS_MAX_FLASH_SECT 6381 CONFIG_SYS_MAX_FLASH_SECT
6383 CONFIG_SYS_MAX_I2C_BUS 6382 CONFIG_SYS_MAX_I2C_BUS
6384 CONFIG_SYS_MAX_MTD_BANKS 6383 CONFIG_SYS_MAX_MTD_BANKS
6385 CONFIG_SYS_MAX_NAND_CHIPS 6384 CONFIG_SYS_MAX_NAND_CHIPS
6386 CONFIG_SYS_MAX_NAND_DEVICE 6385 CONFIG_SYS_MAX_NAND_DEVICE
6387 CONFIG_SYS_MAX_PCI_EPS 6386 CONFIG_SYS_MAX_PCI_EPS
6388 CONFIG_SYS_MAX_RAM_SIZE 6387 CONFIG_SYS_MAX_RAM_SIZE
6389 CONFIG_SYS_MB862xx_CCF 6388 CONFIG_SYS_MB862xx_CCF
6390 CONFIG_SYS_MB862xx_MMR 6389 CONFIG_SYS_MB862xx_MMR
6391 CONFIG_SYS_MBAR 6390 CONFIG_SYS_MBAR
6392 CONFIG_SYS_MBAR2 6391 CONFIG_SYS_MBAR2
6393 CONFIG_SYS_MBYTES_RAM 6392 CONFIG_SYS_MBYTES_RAM
6394 CONFIG_SYS_MBYTES_SDRAM 6393 CONFIG_SYS_MBYTES_SDRAM
6395 CONFIG_SYS_MCATT0_VAL 6394 CONFIG_SYS_MCATT0_VAL
6396 CONFIG_SYS_MCATT1_VAL 6395 CONFIG_SYS_MCATT1_VAL
6397 CONFIG_SYS_MCFRRTC_BASE 6396 CONFIG_SYS_MCFRRTC_BASE
6398 CONFIG_SYS_MCFRTC_BASE 6397 CONFIG_SYS_MCFRTC_BASE
6399 CONFIG_SYS_MCF_SYNCR 6398 CONFIG_SYS_MCF_SYNCR
6400 CONFIG_SYS_MCIO0_VAL 6399 CONFIG_SYS_MCIO0_VAL
6401 CONFIG_SYS_MCIO1_VAL 6400 CONFIG_SYS_MCIO1_VAL
6402 CONFIG_SYS_MCKR 6401 CONFIG_SYS_MCKR
6403 CONFIG_SYS_MCKR1_VAL 6402 CONFIG_SYS_MCKR1_VAL
6404 CONFIG_SYS_MCKR2_VAL 6403 CONFIG_SYS_MCKR2_VAL
6405 CONFIG_SYS_MCKR_CSS 6404 CONFIG_SYS_MCKR_CSS
6406 CONFIG_SYS_MCKR_VAL 6405 CONFIG_SYS_MCKR_VAL
6407 CONFIG_SYS_MCLINK_MAX 6406 CONFIG_SYS_MCLINK_MAX
6408 CONFIG_SYS_MCMEM0_VAL 6407 CONFIG_SYS_MCMEM0_VAL
6409 CONFIG_SYS_MCMEM1_VAL 6408 CONFIG_SYS_MCMEM1_VAL
6410 CONFIG_SYS_MC_RSV_MEM_ALIGN 6409 CONFIG_SYS_MC_RSV_MEM_ALIGN
6411 CONFIG_SYS_MDC1_PIN 6410 CONFIG_SYS_MDC1_PIN
6412 CONFIG_SYS_MDCNFG_VAL 6411 CONFIG_SYS_MDCNFG_VAL
6413 CONFIG_SYS_MDC_PIN 6412 CONFIG_SYS_MDC_PIN
6414 CONFIG_SYS_MDDRCGRP_HIPRIO_CFG 6413 CONFIG_SYS_MDDRCGRP_HIPRIO_CFG
6415 CONFIG_SYS_MDDRCGRP_LUT0_AL 6414 CONFIG_SYS_MDDRCGRP_LUT0_AL
6416 CONFIG_SYS_MDDRCGRP_LUT0_AU 6415 CONFIG_SYS_MDDRCGRP_LUT0_AU
6417 CONFIG_SYS_MDDRCGRP_LUT0_ML 6416 CONFIG_SYS_MDDRCGRP_LUT0_ML
6418 CONFIG_SYS_MDDRCGRP_LUT0_MU 6417 CONFIG_SYS_MDDRCGRP_LUT0_MU
6419 CONFIG_SYS_MDDRCGRP_LUT1_AL 6418 CONFIG_SYS_MDDRCGRP_LUT1_AL
6420 CONFIG_SYS_MDDRCGRP_LUT1_AU 6419 CONFIG_SYS_MDDRCGRP_LUT1_AU
6421 CONFIG_SYS_MDDRCGRP_LUT1_ML 6420 CONFIG_SYS_MDDRCGRP_LUT1_ML
6422 CONFIG_SYS_MDDRCGRP_LUT1_MU 6421 CONFIG_SYS_MDDRCGRP_LUT1_MU
6423 CONFIG_SYS_MDDRCGRP_LUT2_AL 6422 CONFIG_SYS_MDDRCGRP_LUT2_AL
6424 CONFIG_SYS_MDDRCGRP_LUT2_AU 6423 CONFIG_SYS_MDDRCGRP_LUT2_AU
6425 CONFIG_SYS_MDDRCGRP_LUT2_ML 6424 CONFIG_SYS_MDDRCGRP_LUT2_ML
6426 CONFIG_SYS_MDDRCGRP_LUT2_MU 6425 CONFIG_SYS_MDDRCGRP_LUT2_MU
6427 CONFIG_SYS_MDDRCGRP_LUT3_AL 6426 CONFIG_SYS_MDDRCGRP_LUT3_AL
6428 CONFIG_SYS_MDDRCGRP_LUT3_AU 6427 CONFIG_SYS_MDDRCGRP_LUT3_AU
6429 CONFIG_SYS_MDDRCGRP_LUT3_ML 6428 CONFIG_SYS_MDDRCGRP_LUT3_ML
6430 CONFIG_SYS_MDDRCGRP_LUT3_MU 6429 CONFIG_SYS_MDDRCGRP_LUT3_MU
6431 CONFIG_SYS_MDDRCGRP_LUT4_AL 6430 CONFIG_SYS_MDDRCGRP_LUT4_AL
6432 CONFIG_SYS_MDDRCGRP_LUT4_AU 6431 CONFIG_SYS_MDDRCGRP_LUT4_AU
6433 CONFIG_SYS_MDDRCGRP_LUT4_ML 6432 CONFIG_SYS_MDDRCGRP_LUT4_ML
6434 CONFIG_SYS_MDDRCGRP_LUT4_MU 6433 CONFIG_SYS_MDDRCGRP_LUT4_MU
6435 CONFIG_SYS_MDDRCGRP_PM_CFG1 6434 CONFIG_SYS_MDDRCGRP_PM_CFG1
6436 CONFIG_SYS_MDDRCGRP_PM_CFG2 6435 CONFIG_SYS_MDDRCGRP_PM_CFG2
6437 CONFIG_SYS_MDDRC_SYS_CFG 6436 CONFIG_SYS_MDDRC_SYS_CFG
6438 CONFIG_SYS_MDDRC_SYS_CFG_ALT1 6437 CONFIG_SYS_MDDRC_SYS_CFG_ALT1
6439 CONFIG_SYS_MDDRC_SYS_CFG_ELPIDA 6438 CONFIG_SYS_MDDRC_SYS_CFG_ELPIDA
6440 CONFIG_SYS_MDDRC_SYS_CFG_EN 6439 CONFIG_SYS_MDDRC_SYS_CFG_EN
6441 CONFIG_SYS_MDDRC_TIME_CFG0 6440 CONFIG_SYS_MDDRC_TIME_CFG0
6442 CONFIG_SYS_MDDRC_TIME_CFG0_ALT1 6441 CONFIG_SYS_MDDRC_TIME_CFG0_ALT1
6443 CONFIG_SYS_MDDRC_TIME_CFG1 6442 CONFIG_SYS_MDDRC_TIME_CFG1
6444 CONFIG_SYS_MDDRC_TIME_CFG1_ALT1 6443 CONFIG_SYS_MDDRC_TIME_CFG1_ALT1
6445 CONFIG_SYS_MDDRC_TIME_CFG1_ELPIDA 6444 CONFIG_SYS_MDDRC_TIME_CFG1_ELPIDA
6446 CONFIG_SYS_MDDRC_TIME_CFG2 6445 CONFIG_SYS_MDDRC_TIME_CFG2
6447 CONFIG_SYS_MDDRC_TIME_CFG2_ALT1 6446 CONFIG_SYS_MDDRC_TIME_CFG2_ALT1
6448 CONFIG_SYS_MDDRC_TIME_CFG2_ELPIDA 6447 CONFIG_SYS_MDDRC_TIME_CFG2_ELPIDA
6449 CONFIG_SYS_MDIO1_OFFSET 6448 CONFIG_SYS_MDIO1_OFFSET
6450 CONFIG_SYS_MDIO1_PIN 6449 CONFIG_SYS_MDIO1_PIN
6451 CONFIG_SYS_MDIO_BASE_ADDR 6450 CONFIG_SYS_MDIO_BASE_ADDR
6452 CONFIG_SYS_MDIO_PIN 6451 CONFIG_SYS_MDIO_PIN
6453 CONFIG_SYS_MDMRS_VAL 6452 CONFIG_SYS_MDMRS_VAL
6454 CONFIG_SYS_MDREFR_VAL 6453 CONFIG_SYS_MDREFR_VAL
6455 CONFIG_SYS_MEASURE_CPUCLK 6454 CONFIG_SYS_MEASURE_CPUCLK
6456 CONFIG_SYS_MECR_VAL 6455 CONFIG_SYS_MECR_VAL
6457 CONFIG_SYS_MEMAC_LITTLE_ENDIAN 6456 CONFIG_SYS_MEMAC_LITTLE_ENDIAN
6458 CONFIG_SYS_MEMORY_BASE 6457 CONFIG_SYS_MEMORY_BASE
6459 CONFIG_SYS_MEMORY_SIZE 6458 CONFIG_SYS_MEMORY_SIZE
6460 CONFIG_SYS_MEMORY_TOP 6459 CONFIG_SYS_MEMORY_TOP
6461 CONFIG_SYS_MEMTEST_END 6460 CONFIG_SYS_MEMTEST_END
6462 CONFIG_SYS_MEMTEST_SCRATCH 6461 CONFIG_SYS_MEMTEST_SCRATCH
6463 CONFIG_SYS_MEMTEST_START 6462 CONFIG_SYS_MEMTEST_START
6464 CONFIG_SYS_MEM_MAP 6463 CONFIG_SYS_MEM_MAP
6465 CONFIG_SYS_MEM_RESERVE_SECURE 6464 CONFIG_SYS_MEM_RESERVE_SECURE
6466 CONFIG_SYS_MEM_SIZE 6465 CONFIG_SYS_MEM_SIZE
6467 CONFIG_SYS_MEM_TOP_HIDE 6466 CONFIG_SYS_MEM_TOP_HIDE
6468 CONFIG_SYS_MFD 6467 CONFIG_SYS_MFD
6469 CONFIG_SYS_MHZ 6468 CONFIG_SYS_MHZ
6470 CONFIG_SYS_MICRON_BMODE 6469 CONFIG_SYS_MICRON_BMODE
6471 CONFIG_SYS_MICRON_BMODE_PARAM 6470 CONFIG_SYS_MICRON_BMODE_PARAM
6472 CONFIG_SYS_MICRON_BMODE_RSTDLL 6471 CONFIG_SYS_MICRON_BMODE_RSTDLL
6473 CONFIG_SYS_MICRON_EMODE 6472 CONFIG_SYS_MICRON_EMODE
6474 CONFIG_SYS_MICRON_EMODE2 6473 CONFIG_SYS_MICRON_EMODE2
6475 CONFIG_SYS_MICRON_EMODE3 6474 CONFIG_SYS_MICRON_EMODE3
6476 CONFIG_SYS_MICRON_EMODE_PARAM 6475 CONFIG_SYS_MICRON_EMODE_PARAM
6477 CONFIG_SYS_MICRON_EMR 6476 CONFIG_SYS_MICRON_EMR
6478 CONFIG_SYS_MICRON_EMR2 6477 CONFIG_SYS_MICRON_EMR2
6479 CONFIG_SYS_MICRON_EMR3 6478 CONFIG_SYS_MICRON_EMR3
6480 CONFIG_SYS_MICRON_EMR_OCD 6479 CONFIG_SYS_MICRON_EMR_OCD
6481 CONFIG_SYS_MICRON_INIT_DEV_OP 6480 CONFIG_SYS_MICRON_INIT_DEV_OP
6482 CONFIG_SYS_MII_MODE 6481 CONFIG_SYS_MII_MODE
6483 CONFIG_SYS_MIPS_CACHE_MODE 6482 CONFIG_SYS_MIPS_CACHE_MODE
6484 CONFIG_SYS_MIPS_TIMER_FREQ 6483 CONFIG_SYS_MIPS_TIMER_FREQ
6485 CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 6484 CONFIG_SYS_MMCSD_FS_BOOT_PARTITION
6486 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 6485 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR
6487 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 6486 CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS
6488 CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 6487 CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
6489 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION 6488 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
6490 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 6489 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
6491 CONFIG_SYS_MMC_BASE 6490 CONFIG_SYS_MMC_BASE
6492 CONFIG_SYS_MMC_CD_PIN 6491 CONFIG_SYS_MMC_CD_PIN
6493 CONFIG_SYS_MMC_CLK_OD 6492 CONFIG_SYS_MMC_CLK_OD
6494 CONFIG_SYS_MMC_ENV_DEV 6493 CONFIG_SYS_MMC_ENV_DEV
6495 CONFIG_SYS_MMC_ENV_PART 6494 CONFIG_SYS_MMC_ENV_PART
6496 CONFIG_SYS_MMC_IMG_LOAD_PART 6495 CONFIG_SYS_MMC_IMG_LOAD_PART
6497 CONFIG_SYS_MMC_MAX_BLK_COUNT 6496 CONFIG_SYS_MMC_MAX_BLK_COUNT
6498 CONFIG_SYS_MMC_MAX_DEVICE 6497 CONFIG_SYS_MMC_MAX_DEVICE
6499 CONFIG_SYS_MMC_U_BOOT_DST 6498 CONFIG_SYS_MMC_U_BOOT_DST
6500 CONFIG_SYS_MMC_U_BOOT_OFFS 6499 CONFIG_SYS_MMC_U_BOOT_OFFS
6501 CONFIG_SYS_MMC_U_BOOT_SIZE 6500 CONFIG_SYS_MMC_U_BOOT_SIZE
6502 CONFIG_SYS_MMC_U_BOOT_START 6501 CONFIG_SYS_MMC_U_BOOT_START
6503 CONFIG_SYS_MMDC_CORE_ADDR_PARTITION 6502 CONFIG_SYS_MMDC_CORE_ADDR_PARTITION
6504 CONFIG_SYS_MMDC_CORE_CONTROL_1 6503 CONFIG_SYS_MMDC_CORE_CONTROL_1
6505 CONFIG_SYS_MMDC_CORE_CONTROL_2 6504 CONFIG_SYS_MMDC_CORE_CONTROL_2
6506 CONFIG_SYS_MMDC_CORE_MISC 6505 CONFIG_SYS_MMDC_CORE_MISC
6507 CONFIG_SYS_MMDC_CORE_ODT_TIMING 6506 CONFIG_SYS_MMDC_CORE_ODT_TIMING
6508 CONFIG_SYS_MMDC_CORE_OUT_OF_RESET_DELAY 6507 CONFIG_SYS_MMDC_CORE_OUT_OF_RESET_DELAY
6509 CONFIG_SYS_MMDC_CORE_PWR_DOWN_CTRL 6508 CONFIG_SYS_MMDC_CORE_PWR_DOWN_CTRL
6510 CONFIG_SYS_MMDC_CORE_PWR_SAV_CTRL_STAT 6509 CONFIG_SYS_MMDC_CORE_PWR_SAV_CTRL_STAT
6511 CONFIG_SYS_MMDC_CORE_RDWR_CMD_DELAY 6510 CONFIG_SYS_MMDC_CORE_RDWR_CMD_DELAY
6512 CONFIG_SYS_MMDC_CORE_REFRESH_CTL 6511 CONFIG_SYS_MMDC_CORE_REFRESH_CTL
6513 CONFIG_SYS_MMDC_CORE_TIMING_CFG_0 6512 CONFIG_SYS_MMDC_CORE_TIMING_CFG_0
6514 CONFIG_SYS_MMDC_CORE_TIMING_CFG_1 6513 CONFIG_SYS_MMDC_CORE_TIMING_CFG_1
6515 CONFIG_SYS_MMDC_CORE_TIMING_CFG_2 6514 CONFIG_SYS_MMDC_CORE_TIMING_CFG_2
6516 CONFIG_SYS_MMDC_PHY_MEASURE_UNIT 6515 CONFIG_SYS_MMDC_PHY_MEASURE_UNIT
6517 CONFIG_SYS_MMDC_PHY_ODT_CTRL 6516 CONFIG_SYS_MMDC_PHY_ODT_CTRL
6518 CONFIG_SYS_MMDC_PHY_RD_DLY_LINES_CFG 6517 CONFIG_SYS_MMDC_PHY_RD_DLY_LINES_CFG
6519 CONFIG_SYS_MMDC_PHY_ZQ_HW_CTRL 6518 CONFIG_SYS_MMDC_PHY_ZQ_HW_CTRL
6520 CONFIG_SYS_MM_TOP_HIDE 6519 CONFIG_SYS_MM_TOP_HIDE
6521 CONFIG_SYS_MONITOR_ 6520 CONFIG_SYS_MONITOR_
6522 CONFIG_SYS_MONITOR_BASE 6521 CONFIG_SYS_MONITOR_BASE
6523 CONFIG_SYS_MONITOR_BASE_EARLY 6522 CONFIG_SYS_MONITOR_BASE_EARLY
6524 CONFIG_SYS_MONITOR_LEN 6523 CONFIG_SYS_MONITOR_LEN
6525 CONFIG_SYS_MONITOR_SEC 6524 CONFIG_SYS_MONITOR_SEC
6526 CONFIG_SYS_MOR_VAL 6525 CONFIG_SYS_MOR_VAL
6527 CONFIG_SYS_MPC512X_CLKIN 6526 CONFIG_SYS_MPC512X_CLKIN
6528 CONFIG_SYS_MPC512x_USB1_ADDR 6527 CONFIG_SYS_MPC512x_USB1_ADDR
6529 CONFIG_SYS_MPC512x_USB1_OFFSET 6528 CONFIG_SYS_MPC512x_USB1_OFFSET
6530 CONFIG_SYS_MPC5XXX_CLKIN 6529 CONFIG_SYS_MPC5XXX_CLKIN
6531 CONFIG_SYS_MPC83xx_DMA_ADDR 6530 CONFIG_SYS_MPC83xx_DMA_ADDR
6532 CONFIG_SYS_MPC83xx_DMA_OFFSET 6531 CONFIG_SYS_MPC83xx_DMA_OFFSET
6533 CONFIG_SYS_MPC83xx_ESDHC_ADDR 6532 CONFIG_SYS_MPC83xx_ESDHC_ADDR
6534 CONFIG_SYS_MPC83xx_ESDHC_OFFSET 6533 CONFIG_SYS_MPC83xx_ESDHC_OFFSET
6535 CONFIG_SYS_MPC83xx_USB1_ADDR 6534 CONFIG_SYS_MPC83xx_USB1_ADDR
6536 CONFIG_SYS_MPC83xx_USB1_OFFSET 6535 CONFIG_SYS_MPC83xx_USB1_OFFSET
6537 CONFIG_SYS_MPC83xx_USB2_ADDR 6536 CONFIG_SYS_MPC83xx_USB2_ADDR
6538 CONFIG_SYS_MPC83xx_USB2_OFFSET 6537 CONFIG_SYS_MPC83xx_USB2_OFFSET
6539 CONFIG_SYS_MPC85XX_NO_RESETVEC 6538 CONFIG_SYS_MPC85XX_NO_RESETVEC
6540 CONFIG_SYS_MPC85xx_CPM_ADDR 6539 CONFIG_SYS_MPC85xx_CPM_ADDR
6541 CONFIG_SYS_MPC85xx_CPM_OFFSET 6540 CONFIG_SYS_MPC85xx_CPM_OFFSET
6542 CONFIG_SYS_MPC85xx_DMA 6541 CONFIG_SYS_MPC85xx_DMA
6543 CONFIG_SYS_MPC85xx_DMA1_OFFSET 6542 CONFIG_SYS_MPC85xx_DMA1_OFFSET
6544 CONFIG_SYS_MPC85xx_DMA2_OFFSET 6543 CONFIG_SYS_MPC85xx_DMA2_OFFSET
6545 CONFIG_SYS_MPC85xx_DMA3_OFFSET 6544 CONFIG_SYS_MPC85xx_DMA3_OFFSET
6546 CONFIG_SYS_MPC85xx_DMA_ADDR 6545 CONFIG_SYS_MPC85xx_DMA_ADDR
6547 CONFIG_SYS_MPC85xx_DMA_OFFSET 6546 CONFIG_SYS_MPC85xx_DMA_OFFSET
6548 CONFIG_SYS_MPC85xx_ECM_ADDR 6547 CONFIG_SYS_MPC85xx_ECM_ADDR
6549 CONFIG_SYS_MPC85xx_ECM_OFFSET 6548 CONFIG_SYS_MPC85xx_ECM_OFFSET
6550 CONFIG_SYS_MPC85xx_ESDHC_ADDR 6549 CONFIG_SYS_MPC85xx_ESDHC_ADDR
6551 CONFIG_SYS_MPC85xx_ESDHC_OFFSET 6550 CONFIG_SYS_MPC85xx_ESDHC_OFFSET
6552 CONFIG_SYS_MPC85xx_ESPI_ADDR 6551 CONFIG_SYS_MPC85xx_ESPI_ADDR
6553 CONFIG_SYS_MPC85xx_ESPI_OFFSET 6552 CONFIG_SYS_MPC85xx_ESPI_OFFSET
6554 CONFIG_SYS_MPC85xx_GPIO3_ADDR 6553 CONFIG_SYS_MPC85xx_GPIO3_ADDR
6555 CONFIG_SYS_MPC85xx_GPIO_ADDR 6554 CONFIG_SYS_MPC85xx_GPIO_ADDR
6556 CONFIG_SYS_MPC85xx_GPIO_OFFSET 6555 CONFIG_SYS_MPC85xx_GPIO_OFFSET
6557 CONFIG_SYS_MPC85xx_GUTS_ADDR 6556 CONFIG_SYS_MPC85xx_GUTS_ADDR
6558 CONFIG_SYS_MPC85xx_GUTS_OFFSET 6557 CONFIG_SYS_MPC85xx_GUTS_OFFSET
6559 CONFIG_SYS_MPC85xx_IFC_OFFSET 6558 CONFIG_SYS_MPC85xx_IFC_OFFSET
6560 CONFIG_SYS_MPC85xx_L2_ADDR 6559 CONFIG_SYS_MPC85xx_L2_ADDR
6561 CONFIG_SYS_MPC85xx_L2_OFFSET 6560 CONFIG_SYS_MPC85xx_L2_OFFSET
6562 CONFIG_SYS_MPC85xx_LBC_OFFSET 6561 CONFIG_SYS_MPC85xx_LBC_OFFSET
6563 CONFIG_SYS_MPC85xx_PCI1_OFFSET 6562 CONFIG_SYS_MPC85xx_PCI1_OFFSET
6564 CONFIG_SYS_MPC85xx_PCI2_OFFSET 6563 CONFIG_SYS_MPC85xx_PCI2_OFFSET
6565 CONFIG_SYS_MPC85xx_PCIE 6564 CONFIG_SYS_MPC85xx_PCIE
6566 CONFIG_SYS_MPC85xx_PCIE1_OFFSET 6565 CONFIG_SYS_MPC85xx_PCIE1_OFFSET
6567 CONFIG_SYS_MPC85xx_PCIE2_OFFSET 6566 CONFIG_SYS_MPC85xx_PCIE2_OFFSET
6568 CONFIG_SYS_MPC85xx_PCIE3_OFFSET 6567 CONFIG_SYS_MPC85xx_PCIE3_OFFSET
6569 CONFIG_SYS_MPC85xx_PCIE4_OFFSET 6568 CONFIG_SYS_MPC85xx_PCIE4_OFFSET
6570 CONFIG_SYS_MPC85xx_PCIX2_ADDR 6569 CONFIG_SYS_MPC85xx_PCIX2_ADDR
6571 CONFIG_SYS_MPC85xx_PCIX2_OFFSET 6570 CONFIG_SYS_MPC85xx_PCIX2_OFFSET
6572 CONFIG_SYS_MPC85xx_PCIX_ADDR 6571 CONFIG_SYS_MPC85xx_PCIX_ADDR
6573 CONFIG_SYS_MPC85xx_PCIX_OFFSET 6572 CONFIG_SYS_MPC85xx_PCIX_OFFSET
6574 CONFIG_SYS_MPC85xx_PIC_OFFSET 6573 CONFIG_SYS_MPC85xx_PIC_OFFSET
6575 CONFIG_SYS_MPC85xx_QE_OFFSET 6574 CONFIG_SYS_MPC85xx_QE_OFFSET
6576 CONFIG_SYS_MPC85xx_SATA 6575 CONFIG_SYS_MPC85xx_SATA
6577 CONFIG_SYS_MPC85xx_SATA1_ADDR 6576 CONFIG_SYS_MPC85xx_SATA1_ADDR
6578 CONFIG_SYS_MPC85xx_SATA1_OFFSET 6577 CONFIG_SYS_MPC85xx_SATA1_OFFSET
6579 CONFIG_SYS_MPC85xx_SATA2_ADDR 6578 CONFIG_SYS_MPC85xx_SATA2_ADDR
6580 CONFIG_SYS_MPC85xx_SATA2_OFFSET 6579 CONFIG_SYS_MPC85xx_SATA2_OFFSET
6581 CONFIG_SYS_MPC85xx_SCFG 6580 CONFIG_SYS_MPC85xx_SCFG
6582 CONFIG_SYS_MPC85xx_SCFG_OFFSET 6581 CONFIG_SYS_MPC85xx_SCFG_OFFSET
6583 CONFIG_SYS_MPC85xx_SERDES1_ADDR 6582 CONFIG_SYS_MPC85xx_SERDES1_ADDR
6584 CONFIG_SYS_MPC85xx_SERDES1_OFFSET 6583 CONFIG_SYS_MPC85xx_SERDES1_OFFSET
6585 CONFIG_SYS_MPC85xx_SERDES2_ADDR 6584 CONFIG_SYS_MPC85xx_SERDES2_ADDR
6586 CONFIG_SYS_MPC85xx_SERDES2_OFFSET 6585 CONFIG_SYS_MPC85xx_SERDES2_OFFSET
6587 CONFIG_SYS_MPC85xx_TDM_OFFSET 6586 CONFIG_SYS_MPC85xx_TDM_OFFSET
6588 CONFIG_SYS_MPC85xx_USB 6587 CONFIG_SYS_MPC85xx_USB
6589 CONFIG_SYS_MPC85xx_USB1_ADDR 6588 CONFIG_SYS_MPC85xx_USB1_ADDR
6590 CONFIG_SYS_MPC85xx_USB1_OFFSET 6589 CONFIG_SYS_MPC85xx_USB1_OFFSET
6591 CONFIG_SYS_MPC85xx_USB1_PHY_ADDR 6590 CONFIG_SYS_MPC85xx_USB1_PHY_ADDR
6592 CONFIG_SYS_MPC85xx_USB1_PHY_OFFSET 6591 CONFIG_SYS_MPC85xx_USB1_PHY_OFFSET
6593 CONFIG_SYS_MPC85xx_USB2_ADDR 6592 CONFIG_SYS_MPC85xx_USB2_ADDR
6594 CONFIG_SYS_MPC85xx_USB2_OFFSET 6593 CONFIG_SYS_MPC85xx_USB2_OFFSET
6595 CONFIG_SYS_MPC85xx_USB2_PHY_ADDR 6594 CONFIG_SYS_MPC85xx_USB2_PHY_ADDR
6596 CONFIG_SYS_MPC85xx_USB2_PHY_OFFSET 6595 CONFIG_SYS_MPC85xx_USB2_PHY_OFFSET
6597 CONFIG_SYS_MPC86xx_DMA_ADDR 6596 CONFIG_SYS_MPC86xx_DMA_ADDR
6598 CONFIG_SYS_MPC86xx_DMA_OFFSET 6597 CONFIG_SYS_MPC86xx_DMA_OFFSET
6599 CONFIG_SYS_MPC86xx_PCI1_OFFSET 6598 CONFIG_SYS_MPC86xx_PCI1_OFFSET
6600 CONFIG_SYS_MPC86xx_PCI2_OFFSET 6599 CONFIG_SYS_MPC86xx_PCI2_OFFSET
6601 CONFIG_SYS_MPC86xx_PCIE1_OFFSET 6600 CONFIG_SYS_MPC86xx_PCIE1_OFFSET
6602 CONFIG_SYS_MPC86xx_PCIE2_OFFSET 6601 CONFIG_SYS_MPC86xx_PCIE2_OFFSET
6603 CONFIG_SYS_MPC86xx_PIC_OFFSET 6602 CONFIG_SYS_MPC86xx_PIC_OFFSET
6604 CONFIG_SYS_MPC8xxx_DDR2_OFFSET 6603 CONFIG_SYS_MPC8xxx_DDR2_OFFSET
6605 CONFIG_SYS_MPC8xxx_DDR3_OFFSET 6604 CONFIG_SYS_MPC8xxx_DDR3_OFFSET
6606 CONFIG_SYS_MPC8xxx_DDR_OFFSET 6605 CONFIG_SYS_MPC8xxx_DDR_OFFSET
6607 CONFIG_SYS_MPC8xxx_GUTS_ADDR 6606 CONFIG_SYS_MPC8xxx_GUTS_ADDR
6608 CONFIG_SYS_MPC8xxx_PIC_ADDR 6607 CONFIG_SYS_MPC8xxx_PIC_ADDR
6609 CONFIG_SYS_MPC92469AC 6608 CONFIG_SYS_MPC92469AC
6610 CONFIG_SYS_MPEG_BASE 6609 CONFIG_SYS_MPEG_BASE
6611 CONFIG_SYS_MPEG_SIZE 6610 CONFIG_SYS_MPEG_SIZE
6612 CONFIG_SYS_MPTPR 6611 CONFIG_SYS_MPTPR
6613 CONFIG_SYS_MPTPR_1BK_2K 6612 CONFIG_SYS_MPTPR_1BK_2K
6614 CONFIG_SYS_MPTPR_1BK_4K 6613 CONFIG_SYS_MPTPR_1BK_4K
6615 CONFIG_SYS_MPTPR_1BK_8K 6614 CONFIG_SYS_MPTPR_1BK_8K
6616 CONFIG_SYS_MPTPR_2BK_2K 6615 CONFIG_SYS_MPTPR_2BK_2K
6617 CONFIG_SYS_MPTPR_2BK_4K 6616 CONFIG_SYS_MPTPR_2BK_4K
6618 CONFIG_SYS_MPTPR_2BK_8K 6617 CONFIG_SYS_MPTPR_2BK_8K
6619 CONFIG_SYS_MPUCLK 6618 CONFIG_SYS_MPUCLK
6620 CONFIG_SYS_MRAM_BASE 6619 CONFIG_SYS_MRAM_BASE
6621 CONFIG_SYS_MRAM_SIZE 6620 CONFIG_SYS_MRAM_SIZE
6622 CONFIG_SYS_MRS_OFFS 6621 CONFIG_SYS_MRS_OFFS
6623 CONFIG_SYS_MSC0_VAL 6622 CONFIG_SYS_MSC0_VAL
6624 CONFIG_SYS_MSC1_VAL 6623 CONFIG_SYS_MSC1_VAL
6625 CONFIG_SYS_MSC2_VAL 6624 CONFIG_SYS_MSC2_VAL
6626 CONFIG_SYS_MTDPARTS_RUNTIME 6625 CONFIG_SYS_MTDPARTS_RUNTIME
6627 CONFIG_SYS_MVEBU_PLL_CLOCK 6626 CONFIG_SYS_MVEBU_PLL_CLOCK
6628 CONFIG_SYS_MVFS 6627 CONFIG_SYS_MVFS
6629 CONFIG_SYS_MX5_CLK32 6628 CONFIG_SYS_MX5_CLK32
6630 CONFIG_SYS_MX5_HCLK 6629 CONFIG_SYS_MX5_HCLK
6631 CONFIG_SYS_MX6_CLK32 6630 CONFIG_SYS_MX6_CLK32
6632 CONFIG_SYS_MX6_HCLK 6631 CONFIG_SYS_MX6_HCLK
6633 CONFIG_SYS_MX7_CLK32 6632 CONFIG_SYS_MX7_CLK32
6634 CONFIG_SYS_MX7_HCLK 6633 CONFIG_SYS_MX7_HCLK
6635 CONFIG_SYS_MXC_I2C1_SLAVE 6634 CONFIG_SYS_MXC_I2C1_SLAVE
6636 CONFIG_SYS_MXC_I2C1_SPEED 6635 CONFIG_SYS_MXC_I2C1_SPEED
6637 CONFIG_SYS_MXC_I2C2_SLAVE 6636 CONFIG_SYS_MXC_I2C2_SLAVE
6638 CONFIG_SYS_MXC_I2C2_SPEED 6637 CONFIG_SYS_MXC_I2C2_SPEED
6639 CONFIG_SYS_MXC_I2C3_SLAVE 6638 CONFIG_SYS_MXC_I2C3_SLAVE
6640 CONFIG_SYS_MXC_I2C3_SPEED 6639 CONFIG_SYS_MXC_I2C3_SPEED
6641 CONFIG_SYS_MXC_I2C4_SLAVE 6640 CONFIG_SYS_MXC_I2C4_SLAVE
6642 CONFIG_SYS_MXC_I2C4_SPEED 6641 CONFIG_SYS_MXC_I2C4_SPEED
6643 CONFIG_SYS_MXS_VDD5V_ONLY 6642 CONFIG_SYS_MXS_VDD5V_ONLY
6644 CONFIG_SYS_NAND2_ADDR 6643 CONFIG_SYS_NAND2_ADDR
6645 CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST 6644 CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
6646 CONFIG_SYS_NAND_4_ADDR_CYCLE 6645 CONFIG_SYS_NAND_4_ADDR_CYCLE
6647 CONFIG_SYS_NAND_5_ADDR_CYCLE 6646 CONFIG_SYS_NAND_5_ADDR_CYCLE
6648 CONFIG_SYS_NAND_ACTL_ALE 6647 CONFIG_SYS_NAND_ACTL_ALE
6649 CONFIG_SYS_NAND_ACTL_CLE 6648 CONFIG_SYS_NAND_ACTL_CLE
6650 CONFIG_SYS_NAND_ACTL_DELAY 6649 CONFIG_SYS_NAND_ACTL_DELAY
6651 CONFIG_SYS_NAND_ACTL_NCE 6650 CONFIG_SYS_NAND_ACTL_NCE
6652 CONFIG_SYS_NAND_ADDR 6651 CONFIG_SYS_NAND_ADDR
6653 CONFIG_SYS_NAND_ALE 6652 CONFIG_SYS_NAND_ALE
6654 CONFIG_SYS_NAND_AMASK 6653 CONFIG_SYS_NAND_AMASK
6655 CONFIG_SYS_NAND_BAD_BLOCK_POS 6654 CONFIG_SYS_NAND_BAD_BLOCK_POS
6656 CONFIG_SYS_NAND_BASE 6655 CONFIG_SYS_NAND_BASE
6657 CONFIG_SYS_NAND_BASE2 6656 CONFIG_SYS_NAND_BASE2
6658 CONFIG_SYS_NAND_BASE_LIST 6657 CONFIG_SYS_NAND_BASE_LIST
6659 CONFIG_SYS_NAND_BASE_PHYS 6658 CONFIG_SYS_NAND_BASE_PHYS
6660 CONFIG_SYS_NAND_BCR 6659 CONFIG_SYS_NAND_BCR
6661 CONFIG_SYS_NAND_BLOCK_SIZE 6660 CONFIG_SYS_NAND_BLOCK_SIZE
6662 CONFIG_SYS_NAND_BOOT 6661 CONFIG_SYS_NAND_BOOT
6663 CONFIG_SYS_NAND_BR_PRELIM 6662 CONFIG_SYS_NAND_BR_PRELIM
6664 CONFIG_SYS_NAND_BUSWIDTH_16 6663 CONFIG_SYS_NAND_BUSWIDTH_16
6665 CONFIG_SYS_NAND_BUSWIDTH_16_BIT 6664 CONFIG_SYS_NAND_BUSWIDTH_16_BIT
6666 CONFIG_SYS_NAND_CE 6665 CONFIG_SYS_NAND_CE
6667 CONFIG_SYS_NAND_CLE 6666 CONFIG_SYS_NAND_CLE
6668 CONFIG_SYS_NAND_CS 6667 CONFIG_SYS_NAND_CS
6669 CONFIG_SYS_NAND_CSOR 6668 CONFIG_SYS_NAND_CSOR
6670 CONFIG_SYS_NAND_CSPR 6669 CONFIG_SYS_NAND_CSPR
6671 CONFIG_SYS_NAND_CSPR_EXT 6670 CONFIG_SYS_NAND_CSPR_EXT
6672 CONFIG_SYS_NAND_DATA_BASE 6671 CONFIG_SYS_NAND_DATA_BASE
6673 CONFIG_SYS_NAND_DBW_16 6672 CONFIG_SYS_NAND_DBW_16
6674 CONFIG_SYS_NAND_DBW_8 6673 CONFIG_SYS_NAND_DBW_8
6675 CONFIG_SYS_NAND_DDR_LAW 6674 CONFIG_SYS_NAND_DDR_LAW
6676 CONFIG_SYS_NAND_ECCBYTES 6675 CONFIG_SYS_NAND_ECCBYTES
6677 CONFIG_SYS_NAND_ECCPOS 6676 CONFIG_SYS_NAND_ECCPOS
6678 CONFIG_SYS_NAND_ECCSIZE 6677 CONFIG_SYS_NAND_ECCSIZE
6679 CONFIG_SYS_NAND_ECCSTEPS 6678 CONFIG_SYS_NAND_ECCSTEPS
6680 CONFIG_SYS_NAND_ECCTOTAL 6679 CONFIG_SYS_NAND_ECCTOTAL
6681 CONFIG_SYS_NAND_ECC_BASE 6680 CONFIG_SYS_NAND_ECC_BASE
6682 CONFIG_SYS_NAND_ENABLE_PIN 6681 CONFIG_SYS_NAND_ENABLE_PIN
6683 CONFIG_SYS_NAND_ENABLE_PIN_SPL 6682 CONFIG_SYS_NAND_ENABLE_PIN_SPL
6684 CONFIG_SYS_NAND_FTIM0 6683 CONFIG_SYS_NAND_FTIM0
6685 CONFIG_SYS_NAND_FTIM1 6684 CONFIG_SYS_NAND_FTIM1
6686 CONFIG_SYS_NAND_FTIM2 6685 CONFIG_SYS_NAND_FTIM2
6687 CONFIG_SYS_NAND_FTIM3 6686 CONFIG_SYS_NAND_FTIM3
6688 CONFIG_SYS_NAND_HW_ECC 6687 CONFIG_SYS_NAND_HW_ECC
6689 CONFIG_SYS_NAND_HW_ECC_OOBFIRST 6688 CONFIG_SYS_NAND_HW_ECC_OOBFIRST
6690 CONFIG_SYS_NAND_LARGEPAGE 6689 CONFIG_SYS_NAND_LARGEPAGE
6691 CONFIG_SYS_NAND_LBLAWAR_PRELIM 6690 CONFIG_SYS_NAND_LBLAWAR_PRELIM
6692 CONFIG_SYS_NAND_LBLAWBAR_PRELIM 6691 CONFIG_SYS_NAND_LBLAWBAR_PRELIM
6693 CONFIG_SYS_NAND_MASK_ALE 6692 CONFIG_SYS_NAND_MASK_ALE
6694 CONFIG_SYS_NAND_MASK_CLE 6693 CONFIG_SYS_NAND_MASK_CLE
6695 CONFIG_SYS_NAND_MAX_CHIPS 6694 CONFIG_SYS_NAND_MAX_CHIPS
6696 CONFIG_SYS_NAND_MAX_ECCPOS 6695 CONFIG_SYS_NAND_MAX_ECCPOS
6697 CONFIG_SYS_NAND_MAX_OOBFREE 6696 CONFIG_SYS_NAND_MAX_OOBFREE
6698 CONFIG_SYS_NAND_MX7_GPMI_62_ECC_BYTES 6697 CONFIG_SYS_NAND_MX7_GPMI_62_ECC_BYTES
6699 CONFIG_SYS_NAND_NO_SUBPAGE 6698 CONFIG_SYS_NAND_NO_SUBPAGE
6700 CONFIG_SYS_NAND_NO_SUBPAGE_WRITE 6699 CONFIG_SYS_NAND_NO_SUBPAGE_WRITE
6701 CONFIG_SYS_NAND_ONFI_DETECTION 6700 CONFIG_SYS_NAND_ONFI_DETECTION
6702 CONFIG_SYS_NAND_OOBSIZE 6701 CONFIG_SYS_NAND_OOBSIZE
6703 CONFIG_SYS_NAND_OR_PRELIM 6702 CONFIG_SYS_NAND_OR_PRELIM
6704 CONFIG_SYS_NAND_PAGE_2K 6703 CONFIG_SYS_NAND_PAGE_2K
6705 CONFIG_SYS_NAND_PAGE_4K 6704 CONFIG_SYS_NAND_PAGE_4K
6706 CONFIG_SYS_NAND_PAGE_COUNT 6705 CONFIG_SYS_NAND_PAGE_COUNT
6707 CONFIG_SYS_NAND_PAGE_SIZE 6706 CONFIG_SYS_NAND_PAGE_SIZE
6708 CONFIG_SYS_NAND_QUIET 6707 CONFIG_SYS_NAND_QUIET
6709 CONFIG_SYS_NAND_RDY 6708 CONFIG_SYS_NAND_RDY
6710 CONFIG_SYS_NAND_READY_PIN 6709 CONFIG_SYS_NAND_READY_PIN
6711 CONFIG_SYS_NAND_REGS_BASE 6710 CONFIG_SYS_NAND_REGS_BASE
6712 CONFIG_SYS_NAND_SELECT_DEVICE 6711 CONFIG_SYS_NAND_SELECT_DEVICE
6713 CONFIG_SYS_NAND_SIZE 6712 CONFIG_SYS_NAND_SIZE
6714 CONFIG_SYS_NAND_SKIP_BAD_DOT_I 6713 CONFIG_SYS_NAND_SKIP_BAD_DOT_I
6715 CONFIG_SYS_NAND_SPL_KERNEL_OFFS 6714 CONFIG_SYS_NAND_SPL_KERNEL_OFFS
6716 CONFIG_SYS_NAND_SPL_SIZE 6715 CONFIG_SYS_NAND_SPL_SIZE
6717 CONFIG_SYS_NAND_USE_FLASH_BBT 6716 CONFIG_SYS_NAND_USE_FLASH_BBT
6718 CONFIG_SYS_NAND_U_BOOT_DST 6717 CONFIG_SYS_NAND_U_BOOT_DST
6719 CONFIG_SYS_NAND_U_BOOT_RELOC 6718 CONFIG_SYS_NAND_U_BOOT_RELOC
6720 CONFIG_SYS_NAND_U_BOOT_RELOC_SP 6719 CONFIG_SYS_NAND_U_BOOT_RELOC_SP
6721 CONFIG_SYS_NAND_U_BOOT_SIZE 6720 CONFIG_SYS_NAND_U_BOOT_SIZE
6722 CONFIG_SYS_NAND_U_BOOT_START 6721 CONFIG_SYS_NAND_U_BOOT_START
6723 CONFIG_SYS_NAND_WINDOW_SIZE 6722 CONFIG_SYS_NAND_WINDOW_SIZE
6724 CONFIG_SYS_NDFC_EBC0_CFG 6723 CONFIG_SYS_NDFC_EBC0_CFG
6725 CONFIG_SYS_NETA_INTERFACE_TYPE 6724 CONFIG_SYS_NETA_INTERFACE_TYPE
6726 CONFIG_SYS_NONCACHED_MEMORY 6725 CONFIG_SYS_NONCACHED_MEMORY
6727 CONFIG_SYS_NOR0_CSPR 6726 CONFIG_SYS_NOR0_CSPR
6728 CONFIG_SYS_NOR0_CSPR_EARLY 6727 CONFIG_SYS_NOR0_CSPR_EARLY
6729 CONFIG_SYS_NOR0_CSPR_EXT 6728 CONFIG_SYS_NOR0_CSPR_EXT
6730 CONFIG_SYS_NOR1SZ 6729 CONFIG_SYS_NOR1SZ
6731 CONFIG_SYS_NOR1_CSPR 6730 CONFIG_SYS_NOR1_CSPR
6732 CONFIG_SYS_NOR1_CSPR_EARLY 6731 CONFIG_SYS_NOR1_CSPR_EARLY
6733 CONFIG_SYS_NOR1_CSPR_EXT 6732 CONFIG_SYS_NOR1_CSPR_EXT
6734 CONFIG_SYS_NOR_AMASK 6733 CONFIG_SYS_NOR_AMASK
6735 CONFIG_SYS_NOR_AMASK_EARLY 6734 CONFIG_SYS_NOR_AMASK_EARLY
6736 CONFIG_SYS_NOR_BR_PRELIM 6735 CONFIG_SYS_NOR_BR_PRELIM
6737 CONFIG_SYS_NOR_CS 6736 CONFIG_SYS_NOR_CS
6738 CONFIG_SYS_NOR_CSOR 6737 CONFIG_SYS_NOR_CSOR
6739 CONFIG_SYS_NOR_CSPR 6738 CONFIG_SYS_NOR_CSPR
6740 CONFIG_SYS_NOR_CSPR_EXT 6739 CONFIG_SYS_NOR_CSPR_EXT
6741 CONFIG_SYS_NOR_FTIM0 6740 CONFIG_SYS_NOR_FTIM0
6742 CONFIG_SYS_NOR_FTIM1 6741 CONFIG_SYS_NOR_FTIM1
6743 CONFIG_SYS_NOR_FTIM2 6742 CONFIG_SYS_NOR_FTIM2
6744 CONFIG_SYS_NOR_FTIM3 6743 CONFIG_SYS_NOR_FTIM3
6745 CONFIG_SYS_NOR_OR_PRELIM 6744 CONFIG_SYS_NOR_OR_PRELIM
6746 CONFIG_SYS_NO_DCACHE 6745 CONFIG_SYS_NO_DCACHE
6747 CONFIG_SYS_NR_PIOS 6746 CONFIG_SYS_NR_PIOS
6748 CONFIG_SYS_NR_VM_REGIONS 6747 CONFIG_SYS_NR_VM_REGIONS
6749 CONFIG_SYS_NS16550_CLK 6748 CONFIG_SYS_NS16550_CLK
6750 CONFIG_SYS_NS16550_CLK_DIV 6749 CONFIG_SYS_NS16550_CLK_DIV
6751 CONFIG_SYS_NS16550_COM1 6750 CONFIG_SYS_NS16550_COM1
6752 CONFIG_SYS_NS16550_COM2 6751 CONFIG_SYS_NS16550_COM2
6753 CONFIG_SYS_NS16550_COM3 6752 CONFIG_SYS_NS16550_COM3
6754 CONFIG_SYS_NS16550_COM4 6753 CONFIG_SYS_NS16550_COM4
6755 CONFIG_SYS_NS16550_COM5 6754 CONFIG_SYS_NS16550_COM5
6756 CONFIG_SYS_NS16550_COM6 6755 CONFIG_SYS_NS16550_COM6
6757 CONFIG_SYS_NS16550_IER 6756 CONFIG_SYS_NS16550_IER
6758 CONFIG_SYS_NS16550_MEM32 6757 CONFIG_SYS_NS16550_MEM32
6759 CONFIG_SYS_NS16550_PORT_MAPPED 6758 CONFIG_SYS_NS16550_PORT_MAPPED
6760 CONFIG_SYS_NS16550_REG_SIZE 6759 CONFIG_SYS_NS16550_REG_SIZE
6761 CONFIG_SYS_NS16550_SERIAL 6760 CONFIG_SYS_NS16550_SERIAL
6762 CONFIG_SYS_NS87308_CS0_BASE 6761 CONFIG_SYS_NS87308_CS0_BASE
6763 CONFIG_SYS_NS87308_CS0_CONF 6762 CONFIG_SYS_NS87308_CS0_CONF
6764 CONFIG_SYS_NS87308_CS1_BASE 6763 CONFIG_SYS_NS87308_CS1_BASE
6765 CONFIG_SYS_NS87308_CS1_CONF 6764 CONFIG_SYS_NS87308_CS1_CONF
6766 CONFIG_SYS_NS87308_CS2_BASE 6765 CONFIG_SYS_NS87308_CS2_BASE
6767 CONFIG_SYS_NS87308_CS2_CONF 6766 CONFIG_SYS_NS87308_CS2_CONF
6768 CONFIG_SYS_NS87308_FDC 6767 CONFIG_SYS_NS87308_FDC
6769 CONFIG_SYS_NS87308_FDC_BASE 6768 CONFIG_SYS_NS87308_FDC_BASE
6770 CONFIG_SYS_NS87308_GPIO 6769 CONFIG_SYS_NS87308_GPIO
6771 CONFIG_SYS_NS87308_GPIO_BASE 6770 CONFIG_SYS_NS87308_GPIO_BASE
6772 CONFIG_SYS_NS87308_KBC1 6771 CONFIG_SYS_NS87308_KBC1
6773 CONFIG_SYS_NS87308_KBC1_BASE 6772 CONFIG_SYS_NS87308_KBC1_BASE
6774 CONFIG_SYS_NS87308_KBC2 6773 CONFIG_SYS_NS87308_KBC2
6775 CONFIG_SYS_NS87308_LPT_BASE 6774 CONFIG_SYS_NS87308_LPT_BASE
6776 CONFIG_SYS_NS87308_MOUSE 6775 CONFIG_SYS_NS87308_MOUSE
6777 CONFIG_SYS_NS87308_PARP 6776 CONFIG_SYS_NS87308_PARP
6778 CONFIG_SYS_NS87308_PMC1 6777 CONFIG_SYS_NS87308_PMC1
6779 CONFIG_SYS_NS87308_PMC2 6778 CONFIG_SYS_NS87308_PMC2
6780 CONFIG_SYS_NS87308_PMC3 6779 CONFIG_SYS_NS87308_PMC3
6781 CONFIG_SYS_NS87308_POWRMAN 6780 CONFIG_SYS_NS87308_POWRMAN
6782 CONFIG_SYS_NS87308_PS2MOD 6781 CONFIG_SYS_NS87308_PS2MOD
6783 CONFIG_SYS_NS87308_PWMAN_BASE 6782 CONFIG_SYS_NS87308_PWMAN_BASE
6784 CONFIG_SYS_NS87308_RARP 6783 CONFIG_SYS_NS87308_RARP
6785 CONFIG_SYS_NS87308_RTC_APC 6784 CONFIG_SYS_NS87308_RTC_APC
6786 CONFIG_SYS_NS87308_RTC_BASE 6785 CONFIG_SYS_NS87308_RTC_BASE
6787 CONFIG_SYS_NS87308_UART1 6786 CONFIG_SYS_NS87308_UART1
6788 CONFIG_SYS_NS87308_UART1_BASE 6787 CONFIG_SYS_NS87308_UART1_BASE
6789 CONFIG_SYS_NS87308_UART2 6788 CONFIG_SYS_NS87308_UART2
6790 CONFIG_SYS_NS87308_UART2_BASE 6789 CONFIG_SYS_NS87308_UART2_BASE
6791 CONFIG_SYS_NUM_ADDR_MAP 6790 CONFIG_SYS_NUM_ADDR_MAP
6792 CONFIG_SYS_NUM_CPC 6791 CONFIG_SYS_NUM_CPC
6793 CONFIG_SYS_NUM_DDR_CTLRS 6792 CONFIG_SYS_NUM_DDR_CTLRS
6794 CONFIG_SYS_NUM_FM1_10GEC 6793 CONFIG_SYS_NUM_FM1_10GEC
6795 CONFIG_SYS_NUM_FM1_DTSEC 6794 CONFIG_SYS_NUM_FM1_DTSEC
6796 CONFIG_SYS_NUM_FM2_10GEC 6795 CONFIG_SYS_NUM_FM2_10GEC
6797 CONFIG_SYS_NUM_FM2_DTSEC 6796 CONFIG_SYS_NUM_FM2_DTSEC
6798 CONFIG_SYS_NUM_FMAN 6797 CONFIG_SYS_NUM_FMAN
6799 CONFIG_SYS_NUM_I2C_BUSES 6798 CONFIG_SYS_NUM_I2C_BUSES
6800 CONFIG_SYS_NUM_IRQS 6799 CONFIG_SYS_NUM_IRQS
6801 CONFIG_SYS_NUM_TLBCAMS 6800 CONFIG_SYS_NUM_TLBCAMS
6802 CONFIG_SYS_NVRAM_ACCESS_ROUTINE 6801 CONFIG_SYS_NVRAM_ACCESS_ROUTINE
6803 CONFIG_SYS_NVRAM_BASE 6802 CONFIG_SYS_NVRAM_BASE
6804 CONFIG_SYS_NVRAM_BASE_ADDR 6803 CONFIG_SYS_NVRAM_BASE_ADDR
6805 CONFIG_SYS_NVRAM_SIZE 6804 CONFIG_SYS_NVRAM_SIZE
6806 CONFIG_SYS_OBIR 6805 CONFIG_SYS_OBIR
6807 CONFIG_SYS_OCM_BASE 6806 CONFIG_SYS_OCM_BASE
6808 CONFIG_SYS_OCM_DATA_ADDR 6807 CONFIG_SYS_OCM_DATA_ADDR
6809 CONFIG_SYS_OCM_DATA_SIZE 6808 CONFIG_SYS_OCM_DATA_SIZE
6810 CONFIG_SYS_OCM_SIZE 6809 CONFIG_SYS_OCM_SIZE
6811 CONFIG_SYS_OCM_STATUS_ADDR 6810 CONFIG_SYS_OCM_STATUS_ADDR
6812 CONFIG_SYS_OCM_STATUS_FAIL 6811 CONFIG_SYS_OCM_STATUS_FAIL
6813 CONFIG_SYS_OCM_STATUS_MASK 6812 CONFIG_SYS_OCM_STATUS_MASK
6814 CONFIG_SYS_OCM_STATUS_OK 6813 CONFIG_SYS_OCM_STATUS_OK
6815 CONFIG_SYS_OHCI_BE_CONTROLLER 6814 CONFIG_SYS_OHCI_BE_CONTROLLER
6816 CONFIG_SYS_OHCI_SWAP_REG_ACCESS 6815 CONFIG_SYS_OHCI_SWAP_REG_ACCESS
6817 CONFIG_SYS_OHCI_USE_NPS 6816 CONFIG_SYS_OHCI_USE_NPS
6818 CONFIG_SYS_OMAP24_I2C_SLAVE 6817 CONFIG_SYS_OMAP24_I2C_SLAVE
6819 CONFIG_SYS_OMAP24_I2C_SLAVE1 6818 CONFIG_SYS_OMAP24_I2C_SLAVE1
6820 CONFIG_SYS_OMAP24_I2C_SLAVE2 6819 CONFIG_SYS_OMAP24_I2C_SLAVE2
6821 CONFIG_SYS_OMAP24_I2C_SLAVE3 6820 CONFIG_SYS_OMAP24_I2C_SLAVE3
6822 CONFIG_SYS_OMAP24_I2C_SLAVE4 6821 CONFIG_SYS_OMAP24_I2C_SLAVE4
6823 CONFIG_SYS_OMAP24_I2C_SPEED 6822 CONFIG_SYS_OMAP24_I2C_SPEED
6824 CONFIG_SYS_OMAP24_I2C_SPEED1 6823 CONFIG_SYS_OMAP24_I2C_SPEED1
6825 CONFIG_SYS_OMAP24_I2C_SPEED2 6824 CONFIG_SYS_OMAP24_I2C_SPEED2
6826 CONFIG_SYS_OMAP24_I2C_SPEED3 6825 CONFIG_SYS_OMAP24_I2C_SPEED3
6827 CONFIG_SYS_OMAP24_I2C_SPEED4 6826 CONFIG_SYS_OMAP24_I2C_SPEED4
6828 CONFIG_SYS_OMAP24_I2C_SPEED_PSOC 6827 CONFIG_SYS_OMAP24_I2C_SPEED_PSOC
6829 CONFIG_SYS_OMAP_ABE_SYSCK 6828 CONFIG_SYS_OMAP_ABE_SYSCK
6830 CONFIG_SYS_ONENAND_BASE 6829 CONFIG_SYS_ONENAND_BASE
6831 CONFIG_SYS_ONENAND_BLOCK_SIZE 6830 CONFIG_SYS_ONENAND_BLOCK_SIZE
6832 CONFIG_SYS_ONENAND_PAGE_SIZE 6831 CONFIG_SYS_ONENAND_PAGE_SIZE
6833 CONFIG_SYS_OPENRISC_TMR_HZ 6832 CONFIG_SYS_OPENRISC_TMR_HZ
6834 CONFIG_SYS_OPER_FLASH 6833 CONFIG_SYS_OPER_FLASH
6835 CONFIG_SYS_OR0_64M 6834 CONFIG_SYS_OR0_64M
6836 CONFIG_SYS_OR0_8M 6835 CONFIG_SYS_OR0_8M
6837 CONFIG_SYS_OR0_PRELIM 6836 CONFIG_SYS_OR0_PRELIM
6838 CONFIG_SYS_OR0_REMAP 6837 CONFIG_SYS_OR0_REMAP
6839 CONFIG_SYS_OR1 6838 CONFIG_SYS_OR1
6840 CONFIG_SYS_OR10_PRELIM 6839 CONFIG_SYS_OR10_PRELIM
6841 CONFIG_SYS_OR11_PRELIM 6840 CONFIG_SYS_OR11_PRELIM
6842 CONFIG_SYS_OR1_PRELIM 6841 CONFIG_SYS_OR1_PRELIM
6843 CONFIG_SYS_OR1_REMAP 6842 CONFIG_SYS_OR1_REMAP
6844 CONFIG_SYS_OR2_PRELIM 6843 CONFIG_SYS_OR2_PRELIM
6845 CONFIG_SYS_OR3_CAN 6844 CONFIG_SYS_OR3_CAN
6846 CONFIG_SYS_OR3_PRELIM 6845 CONFIG_SYS_OR3_PRELIM
6847 CONFIG_SYS_OR4_PRELIM 6846 CONFIG_SYS_OR4_PRELIM
6848 CONFIG_SYS_OR5_ISP1362 6847 CONFIG_SYS_OR5_ISP1362
6849 CONFIG_SYS_OR5_PRELIM 6848 CONFIG_SYS_OR5_PRELIM
6850 CONFIG_SYS_OR5_REMAP 6849 CONFIG_SYS_OR5_REMAP
6851 CONFIG_SYS_OR6_64M 6850 CONFIG_SYS_OR6_64M
6852 CONFIG_SYS_OR6_8M 6851 CONFIG_SYS_OR6_8M
6853 CONFIG_SYS_OR6_PRELIM 6852 CONFIG_SYS_OR6_PRELIM
6854 CONFIG_SYS_OR7_PRELIM 6853 CONFIG_SYS_OR7_PRELIM
6855 CONFIG_SYS_OR8_PRELIM 6854 CONFIG_SYS_OR8_PRELIM
6856 CONFIG_SYS_OR9_PRELIM 6855 CONFIG_SYS_OR9_PRELIM
6857 CONFIG_SYS_OR_TIMING_FLASH 6856 CONFIG_SYS_OR_TIMING_FLASH
6858 CONFIG_SYS_OR_TIMING_FLASH_AT_50MHZ 6857 CONFIG_SYS_OR_TIMING_FLASH_AT_50MHZ
6859 CONFIG_SYS_OR_TIMING_MRAM 6858 CONFIG_SYS_OR_TIMING_MRAM
6860 CONFIG_SYS_OR_TIMING_SDRAM 6859 CONFIG_SYS_OR_TIMING_SDRAM
6861 CONFIG_SYS_OSC0_HZ 6860 CONFIG_SYS_OSC0_HZ
6862 CONFIG_SYS_OSC1_HZ 6861 CONFIG_SYS_OSC1_HZ
6863 CONFIG_SYS_OSCIN_FREQ 6862 CONFIG_SYS_OSCIN_FREQ
6864 CONFIG_SYS_OSC_CLK 6863 CONFIG_SYS_OSC_CLK
6865 CONFIG_SYS_OSD_DH 6864 CONFIG_SYS_OSD_DH
6866 CONFIG_SYS_OSD_SCREENS 6865 CONFIG_SYS_OSD_SCREENS
6867 CONFIG_SYS_OSPR_OFFSET 6866 CONFIG_SYS_OSPR_OFFSET
6868 CONFIG_SYS_OS_BASE 6867 CONFIG_SYS_OS_BASE
6869 CONFIG_SYS_P4080_ERRATUM_CPU22 6868 CONFIG_SYS_P4080_ERRATUM_CPU22
6870 CONFIG_SYS_P4080_ERRATUM_PCIE_A003 6869 CONFIG_SYS_P4080_ERRATUM_PCIE_A003
6871 CONFIG_SYS_P4080_ERRATUM_SERDES8 6870 CONFIG_SYS_P4080_ERRATUM_SERDES8
6872 CONFIG_SYS_P4080_ERRATUM_SERDES9 6871 CONFIG_SYS_P4080_ERRATUM_SERDES9
6873 CONFIG_SYS_P4080_ERRATUM_SERDES_A001 6872 CONFIG_SYS_P4080_ERRATUM_SERDES_A001
6874 CONFIG_SYS_P4080_ERRATUM_SERDES_A005 6873 CONFIG_SYS_P4080_ERRATUM_SERDES_A005
6875 CONFIG_SYS_PACNT 6874 CONFIG_SYS_PACNT
6876 CONFIG_SYS_PADAT 6875 CONFIG_SYS_PADAT
6877 CONFIG_SYS_PADDR 6876 CONFIG_SYS_PADDR
6878 CONFIG_SYS_PAGE_SIZE 6877 CONFIG_SYS_PAGE_SIZE
6879 CONFIG_SYS_PAMU_ADDR 6878 CONFIG_SYS_PAMU_ADDR
6880 CONFIG_SYS_PASPAR 6879 CONFIG_SYS_PASPAR
6881 CONFIG_SYS_PAXE_BASE 6880 CONFIG_SYS_PAXE_BASE
6882 CONFIG_SYS_PAXE_SIZE 6881 CONFIG_SYS_PAXE_SIZE
6883 CONFIG_SYS_PBCNT 6882 CONFIG_SYS_PBCNT
6884 CONFIG_SYS_PBDAT 6883 CONFIG_SYS_PBDAT
6885 CONFIG_SYS_PBDDR 6884 CONFIG_SYS_PBDDR
6886 CONFIG_SYS_PBI_FLASH_BASE 6885 CONFIG_SYS_PBI_FLASH_BASE
6887 CONFIG_SYS_PBI_FLASH_WINDOW 6886 CONFIG_SYS_PBI_FLASH_WINDOW
6888 CONFIG_SYS_PBSIZE 6887 CONFIG_SYS_PBSIZE
6889 CONFIG_SYS_PB_LED 6888 CONFIG_SYS_PB_LED
6890 CONFIG_SYS_PCA953X_BRD_CFG0 6889 CONFIG_SYS_PCA953X_BRD_CFG0
6891 CONFIG_SYS_PCA953X_BRD_CFG1 6890 CONFIG_SYS_PCA953X_BRD_CFG1
6892 CONFIG_SYS_PCA953X_BRD_CFG2 6891 CONFIG_SYS_PCA953X_BRD_CFG2
6893 CONFIG_SYS_PCA953X_C0_FLASH_PASS_CS 6892 CONFIG_SYS_PCA953X_C0_FLASH_PASS_CS
6894 CONFIG_SYS_PCA953X_C0_SER0_EN 6893 CONFIG_SYS_PCA953X_C0_SER0_EN
6895 CONFIG_SYS_PCA953X_C0_SER0_MODE 6894 CONFIG_SYS_PCA953X_C0_SER0_MODE
6896 CONFIG_SYS_PCA953X_C0_SER1_EN 6895 CONFIG_SYS_PCA953X_C0_SER1_EN
6897 CONFIG_SYS_PCA953X_C0_SER1_MODE 6896 CONFIG_SYS_PCA953X_C0_SER1_MODE
6898 CONFIG_SYS_PCA953X_C0_VCORE_VID2 6897 CONFIG_SYS_PCA953X_C0_VCORE_VID2
6899 CONFIG_SYS_PCA953X_C0_VCORE_VID3 6898 CONFIG_SYS_PCA953X_C0_VCORE_VID3
6900 CONFIG_SYS_PCA953X_EREADY 6899 CONFIG_SYS_PCA953X_EREADY
6901 CONFIG_SYS_PCA953X_FLASH_PASS_CS 6900 CONFIG_SYS_PCA953X_FLASH_PASS_CS
6902 CONFIG_SYS_PCA953X_GPIO_VPX0 6901 CONFIG_SYS_PCA953X_GPIO_VPX0
6903 CONFIG_SYS_PCA953X_GPIO_VPX1 6902 CONFIG_SYS_PCA953X_GPIO_VPX1
6904 CONFIG_SYS_PCA953X_GPIO_VPX2 6903 CONFIG_SYS_PCA953X_GPIO_VPX2
6905 CONFIG_SYS_PCA953X_GPIO_VPX3 6904 CONFIG_SYS_PCA953X_GPIO_VPX3
6906 CONFIG_SYS_PCA953X_MC_GPIO0 6905 CONFIG_SYS_PCA953X_MC_GPIO0
6907 CONFIG_SYS_PCA953X_MC_GPIO1 6906 CONFIG_SYS_PCA953X_MC_GPIO1
6908 CONFIG_SYS_PCA953X_MC_GPIO2 6907 CONFIG_SYS_PCA953X_MC_GPIO2
6909 CONFIG_SYS_PCA953X_MC_GPIO3 6908 CONFIG_SYS_PCA953X_MC_GPIO3
6910 CONFIG_SYS_PCA953X_MC_GPIO4 6909 CONFIG_SYS_PCA953X_MC_GPIO4
6911 CONFIG_SYS_PCA953X_MC_GPIO5 6910 CONFIG_SYS_PCA953X_MC_GPIO5
6912 CONFIG_SYS_PCA953X_MC_GPIO6 6911 CONFIG_SYS_PCA953X_MC_GPIO6
6913 CONFIG_SYS_PCA953X_MC_GPIO7 6912 CONFIG_SYS_PCA953X_MC_GPIO7
6914 CONFIG_SYS_PCA953X_MONARCH 6913 CONFIG_SYS_PCA953X_MONARCH
6915 CONFIG_SYS_PCA953X_NVM_WP 6914 CONFIG_SYS_PCA953X_NVM_WP
6916 CONFIG_SYS_PCA953X_P0_GA0 6915 CONFIG_SYS_PCA953X_P0_GA0
6917 CONFIG_SYS_PCA953X_P0_GA1 6916 CONFIG_SYS_PCA953X_P0_GA1
6918 CONFIG_SYS_PCA953X_P0_GA2 6917 CONFIG_SYS_PCA953X_P0_GA2
6919 CONFIG_SYS_PCA953X_P0_GA3 6918 CONFIG_SYS_PCA953X_P0_GA3
6920 CONFIG_SYS_PCA953X_P0_GA4 6919 CONFIG_SYS_PCA953X_P0_GA4
6921 CONFIG_SYS_PCA953X_P0_GAP 6920 CONFIG_SYS_PCA953X_P0_GAP
6922 CONFIG_SYS_PCA953X_P14_IO0 6921 CONFIG_SYS_PCA953X_P14_IO0
6923 CONFIG_SYS_PCA953X_P14_IO1 6922 CONFIG_SYS_PCA953X_P14_IO1
6924 CONFIG_SYS_PCA953X_P14_IO2 6923 CONFIG_SYS_PCA953X_P14_IO2
6925 CONFIG_SYS_PCA953X_P14_IO3 6924 CONFIG_SYS_PCA953X_P14_IO3
6926 CONFIG_SYS_PCA953X_P14_IO4 6925 CONFIG_SYS_PCA953X_P14_IO4
6927 CONFIG_SYS_PCA953X_P14_IO5 6926 CONFIG_SYS_PCA953X_P14_IO5
6928 CONFIG_SYS_PCA953X_P14_IO6 6927 CONFIG_SYS_PCA953X_P14_IO6
6929 CONFIG_SYS_PCA953X_P14_IO7 6928 CONFIG_SYS_PCA953X_P14_IO7
6930 CONFIG_SYS_PCA953X_P1_SYSEN 6929 CONFIG_SYS_PCA953X_P1_SYSEN
6931 CONFIG_SYS_PCA953X_PLUG_GPIO0 6930 CONFIG_SYS_PCA953X_PLUG_GPIO0
6932 CONFIG_SYS_PCA953X_PMC0_EREADY 6931 CONFIG_SYS_PCA953X_PMC0_EREADY
6933 CONFIG_SYS_PCA953X_PMC0_MONARCH 6932 CONFIG_SYS_PCA953X_PMC0_MONARCH
6934 CONFIG_SYS_PCA953X_PMC_EREADY 6933 CONFIG_SYS_PCA953X_PMC_EREADY
6935 CONFIG_SYS_PCA953X_PMC_MONARCH 6934 CONFIG_SYS_PCA953X_PMC_MONARCH
6936 CONFIG_SYS_PCA953X_PMC_PRESENT 6935 CONFIG_SYS_PCA953X_PMC_PRESENT
6937 CONFIG_SYS_PCA953X_VPX_FRU_WRCTL 6936 CONFIG_SYS_PCA953X_VPX_FRU_WRCTL
6938 CONFIG_SYS_PCA953X_VPX_GPIO0 6937 CONFIG_SYS_PCA953X_VPX_GPIO0
6939 CONFIG_SYS_PCA953X_VPX_GPIO1 6938 CONFIG_SYS_PCA953X_VPX_GPIO1
6940 CONFIG_SYS_PCA953X_VPX_GPIO2 6939 CONFIG_SYS_PCA953X_VPX_GPIO2
6941 CONFIG_SYS_PCA953X_VPX_GPIO3 6940 CONFIG_SYS_PCA953X_VPX_GPIO3
6942 CONFIG_SYS_PCA953X_XMC0_BIST 6941 CONFIG_SYS_PCA953X_XMC0_BIST
6943 CONFIG_SYS_PCA953X_XMC0_MVMR0 6942 CONFIG_SYS_PCA953X_XMC0_MVMR0
6944 CONFIG_SYS_PCA953X_XMC0_ROOT0 6943 CONFIG_SYS_PCA953X_XMC0_ROOT0
6945 CONFIG_SYS_PCA953X_XMC0_WAKE 6944 CONFIG_SYS_PCA953X_XMC0_WAKE
6946 CONFIG_SYS_PCA953X_XMC_BIST 6945 CONFIG_SYS_PCA953X_XMC_BIST
6947 CONFIG_SYS_PCA953X_XMC_GA0 6946 CONFIG_SYS_PCA953X_XMC_GA0
6948 CONFIG_SYS_PCA953X_XMC_GA1 6947 CONFIG_SYS_PCA953X_XMC_GA1
6949 CONFIG_SYS_PCA953X_XMC_GA2 6948 CONFIG_SYS_PCA953X_XMC_GA2
6950 CONFIG_SYS_PCA953X_XMC_PRESENT 6949 CONFIG_SYS_PCA953X_XMC_PRESENT
6951 CONFIG_SYS_PCA953X_XMC_ROOT0 6950 CONFIG_SYS_PCA953X_XMC_ROOT0
6952 CONFIG_SYS_PCA953X_XMC_WAKE 6951 CONFIG_SYS_PCA953X_XMC_WAKE
6953 CONFIG_SYS_PCCNT 6952 CONFIG_SYS_PCCNT
6954 CONFIG_SYS_PCDAT 6953 CONFIG_SYS_PCDAT
6955 CONFIG_SYS_PCDDR 6954 CONFIG_SYS_PCDDR
6956 CONFIG_SYS_PCI 6955 CONFIG_SYS_PCI
6957 CONFIG_SYS_PCI0_IO_SPACE 6956 CONFIG_SYS_PCI0_IO_SPACE
6958 CONFIG_SYS_PCI1_ADDR 6957 CONFIG_SYS_PCI1_ADDR
6959 CONFIG_SYS_PCI1_IO_BASE 6958 CONFIG_SYS_PCI1_IO_BASE
6960 CONFIG_SYS_PCI1_IO_BUS 6959 CONFIG_SYS_PCI1_IO_BUS
6961 CONFIG_SYS_PCI1_IO_PHYS 6960 CONFIG_SYS_PCI1_IO_PHYS
6962 CONFIG_SYS_PCI1_IO_SIZE 6961 CONFIG_SYS_PCI1_IO_SIZE
6963 CONFIG_SYS_PCI1_IO_VIRT 6962 CONFIG_SYS_PCI1_IO_VIRT
6964 CONFIG_SYS_PCI1_MEM_BASE 6963 CONFIG_SYS_PCI1_MEM_BASE
6965 CONFIG_SYS_PCI1_MEM_BUS 6964 CONFIG_SYS_PCI1_MEM_BUS
6966 CONFIG_SYS_PCI1_MEM_PHYS 6965 CONFIG_SYS_PCI1_MEM_PHYS
6967 CONFIG_SYS_PCI1_MEM_SIZE 6966 CONFIG_SYS_PCI1_MEM_SIZE
6968 CONFIG_SYS_PCI1_MEM_VIRT 6967 CONFIG_SYS_PCI1_MEM_VIRT
6969 CONFIG_SYS_PCI1_MMIO_BASE 6968 CONFIG_SYS_PCI1_MMIO_BASE
6970 CONFIG_SYS_PCI1_MMIO_PHYS 6969 CONFIG_SYS_PCI1_MMIO_PHYS
6971 CONFIG_SYS_PCI1_MMIO_SIZE 6970 CONFIG_SYS_PCI1_MMIO_SIZE
6972 CONFIG_SYS_PCI2_ADDR 6971 CONFIG_SYS_PCI2_ADDR
6973 CONFIG_SYS_PCI2_IO_BASE 6972 CONFIG_SYS_PCI2_IO_BASE
6974 CONFIG_SYS_PCI2_IO_BUS 6973 CONFIG_SYS_PCI2_IO_BUS
6975 CONFIG_SYS_PCI2_IO_PHYS 6974 CONFIG_SYS_PCI2_IO_PHYS
6976 CONFIG_SYS_PCI2_IO_SIZE 6975 CONFIG_SYS_PCI2_IO_SIZE
6977 CONFIG_SYS_PCI2_IO_VIRT 6976 CONFIG_SYS_PCI2_IO_VIRT
6978 CONFIG_SYS_PCI2_MEM_BASE 6977 CONFIG_SYS_PCI2_MEM_BASE
6979 CONFIG_SYS_PCI2_MEM_BUS 6978 CONFIG_SYS_PCI2_MEM_BUS
6980 CONFIG_SYS_PCI2_MEM_PHYS 6979 CONFIG_SYS_PCI2_MEM_PHYS
6981 CONFIG_SYS_PCI2_MEM_SIZE 6980 CONFIG_SYS_PCI2_MEM_SIZE
6982 CONFIG_SYS_PCI2_MEM_VIRT 6981 CONFIG_SYS_PCI2_MEM_VIRT
6983 CONFIG_SYS_PCI2_MMIO_BASE 6982 CONFIG_SYS_PCI2_MMIO_BASE
6984 CONFIG_SYS_PCI2_MMIO_PHYS 6983 CONFIG_SYS_PCI2_MMIO_PHYS
6985 CONFIG_SYS_PCI2_MMIO_SIZE 6984 CONFIG_SYS_PCI2_MMIO_SIZE
6986 CONFIG_SYS_PCI64_MEMORY_BUS 6985 CONFIG_SYS_PCI64_MEMORY_BUS
6987 CONFIG_SYS_PCI9054_IOBASE 6986 CONFIG_SYS_PCI9054_IOBASE
6988 CONFIG_SYS_PCICLK_EQUALS_IPBCLK_DIV2 6987 CONFIG_SYS_PCICLK_EQUALS_IPBCLK_DIV2
6989 CONFIG_SYS_PCIE 6988 CONFIG_SYS_PCIE
6990 CONFIG_SYS_PCIE0_CFGBASE 6989 CONFIG_SYS_PCIE0_CFGBASE
6991 CONFIG_SYS_PCIE0_CFGMASK 6990 CONFIG_SYS_PCIE0_CFGMASK
6992 CONFIG_SYS_PCIE0_MEMBASE 6991 CONFIG_SYS_PCIE0_MEMBASE
6993 CONFIG_SYS_PCIE0_REGBASE 6992 CONFIG_SYS_PCIE0_REGBASE
6994 CONFIG_SYS_PCIE0_UTLBASE 6993 CONFIG_SYS_PCIE0_UTLBASE
6995 CONFIG_SYS_PCIE0_XCFGBASE 6994 CONFIG_SYS_PCIE0_XCFGBASE
6996 CONFIG_SYS_PCIE1_ADDR 6995 CONFIG_SYS_PCIE1_ADDR
6997 CONFIG_SYS_PCIE1_BASE 6996 CONFIG_SYS_PCIE1_BASE
6998 CONFIG_SYS_PCIE1_CFGBASE 6997 CONFIG_SYS_PCIE1_CFGBASE
6999 CONFIG_SYS_PCIE1_CFGMASK 6998 CONFIG_SYS_PCIE1_CFGMASK
7000 CONFIG_SYS_PCIE1_CFG_BASE 6999 CONFIG_SYS_PCIE1_CFG_BASE
7001 CONFIG_SYS_PCIE1_CFG_SIZE 7000 CONFIG_SYS_PCIE1_CFG_SIZE
7002 CONFIG_SYS_PCIE1_IO_BASE 7001 CONFIG_SYS_PCIE1_IO_BASE
7003 CONFIG_SYS_PCIE1_IO_BUS 7002 CONFIG_SYS_PCIE1_IO_BUS
7004 CONFIG_SYS_PCIE1_IO_PHYS 7003 CONFIG_SYS_PCIE1_IO_PHYS
7005 CONFIG_SYS_PCIE1_IO_PHYS_LOW 7004 CONFIG_SYS_PCIE1_IO_PHYS_LOW
7006 CONFIG_SYS_PCIE1_IO_SIZE 7005 CONFIG_SYS_PCIE1_IO_SIZE
7007 CONFIG_SYS_PCIE1_IO_VIRT 7006 CONFIG_SYS_PCIE1_IO_VIRT
7008 CONFIG_SYS_PCIE1_MEMBASE 7007 CONFIG_SYS_PCIE1_MEMBASE
7009 CONFIG_SYS_PCIE1_MEM_BASE 7008 CONFIG_SYS_PCIE1_MEM_BASE
7010 CONFIG_SYS_PCIE1_MEM_BUS 7009 CONFIG_SYS_PCIE1_MEM_BUS
7011 CONFIG_SYS_PCIE1_MEM_PHYS 7010 CONFIG_SYS_PCIE1_MEM_PHYS
7012 CONFIG_SYS_PCIE1_MEM_PHYS_HIGH 7011 CONFIG_SYS_PCIE1_MEM_PHYS_HIGH
7013 CONFIG_SYS_PCIE1_MEM_PHYS_LOW 7012 CONFIG_SYS_PCIE1_MEM_PHYS_LOW
7014 CONFIG_SYS_PCIE1_MEM_SIZE 7013 CONFIG_SYS_PCIE1_MEM_SIZE
7015 CONFIG_SYS_PCIE1_MEM_VIRT 7014 CONFIG_SYS_PCIE1_MEM_VIRT
7016 CONFIG_SYS_PCIE1_NAME 7015 CONFIG_SYS_PCIE1_NAME
7017 CONFIG_SYS_PCIE1_PHYS_ADDR 7016 CONFIG_SYS_PCIE1_PHYS_ADDR
7018 CONFIG_SYS_PCIE1_PHYS_BASE 7017 CONFIG_SYS_PCIE1_PHYS_BASE
7019 CONFIG_SYS_PCIE1_PHYS_SIZE 7018 CONFIG_SYS_PCIE1_PHYS_SIZE
7020 CONFIG_SYS_PCIE1_REGBASE 7019 CONFIG_SYS_PCIE1_REGBASE
7021 CONFIG_SYS_PCIE1_UTLBASE 7020 CONFIG_SYS_PCIE1_UTLBASE
7022 CONFIG_SYS_PCIE1_VIRT_ADDR 7021 CONFIG_SYS_PCIE1_VIRT_ADDR
7023 CONFIG_SYS_PCIE1_XCFGBASE 7022 CONFIG_SYS_PCIE1_XCFGBASE
7024 CONFIG_SYS_PCIE2_ADDR 7023 CONFIG_SYS_PCIE2_ADDR
7025 CONFIG_SYS_PCIE2_BASE 7024 CONFIG_SYS_PCIE2_BASE
7026 CONFIG_SYS_PCIE2_CFGBASE 7025 CONFIG_SYS_PCIE2_CFGBASE
7027 CONFIG_SYS_PCIE2_CFG_BASE 7026 CONFIG_SYS_PCIE2_CFG_BASE
7028 CONFIG_SYS_PCIE2_CFG_SIZE 7027 CONFIG_SYS_PCIE2_CFG_SIZE
7029 CONFIG_SYS_PCIE2_IO_BASE 7028 CONFIG_SYS_PCIE2_IO_BASE
7030 CONFIG_SYS_PCIE2_IO_BUS 7029 CONFIG_SYS_PCIE2_IO_BUS
7031 CONFIG_SYS_PCIE2_IO_PHYS 7030 CONFIG_SYS_PCIE2_IO_PHYS
7032 CONFIG_SYS_PCIE2_IO_PHYS_LOW 7031 CONFIG_SYS_PCIE2_IO_PHYS_LOW
7033 CONFIG_SYS_PCIE2_IO_SIZE 7032 CONFIG_SYS_PCIE2_IO_SIZE
7034 CONFIG_SYS_PCIE2_IO_VIRT 7033 CONFIG_SYS_PCIE2_IO_VIRT
7035 CONFIG_SYS_PCIE2_MEM_BASE 7034 CONFIG_SYS_PCIE2_MEM_BASE
7036 CONFIG_SYS_PCIE2_MEM_BUS 7035 CONFIG_SYS_PCIE2_MEM_BUS
7037 CONFIG_SYS_PCIE2_MEM_PHYS 7036 CONFIG_SYS_PCIE2_MEM_PHYS
7038 CONFIG_SYS_PCIE2_MEM_PHYS_HIGH 7037 CONFIG_SYS_PCIE2_MEM_PHYS_HIGH
7039 CONFIG_SYS_PCIE2_MEM_PHYS_LOW 7038 CONFIG_SYS_PCIE2_MEM_PHYS_LOW
7040 CONFIG_SYS_PCIE2_MEM_SIZE 7039 CONFIG_SYS_PCIE2_MEM_SIZE
7041 CONFIG_SYS_PCIE2_MEM_VIRT 7040 CONFIG_SYS_PCIE2_MEM_VIRT
7042 CONFIG_SYS_PCIE2_NAME 7041 CONFIG_SYS_PCIE2_NAME
7043 CONFIG_SYS_PCIE2_PHYS_ADDR 7042 CONFIG_SYS_PCIE2_PHYS_ADDR
7044 CONFIG_SYS_PCIE2_PHYS_BASE 7043 CONFIG_SYS_PCIE2_PHYS_BASE
7045 CONFIG_SYS_PCIE2_PHYS_SIZE 7044 CONFIG_SYS_PCIE2_PHYS_SIZE
7046 CONFIG_SYS_PCIE2_REGBASE 7045 CONFIG_SYS_PCIE2_REGBASE
7047 CONFIG_SYS_PCIE2_VIRT_ADDR 7046 CONFIG_SYS_PCIE2_VIRT_ADDR
7048 CONFIG_SYS_PCIE2_XCFGBASE 7047 CONFIG_SYS_PCIE2_XCFGBASE
7049 CONFIG_SYS_PCIE3_ADDR 7048 CONFIG_SYS_PCIE3_ADDR
7050 CONFIG_SYS_PCIE3_IO_BUS 7049 CONFIG_SYS_PCIE3_IO_BUS
7051 CONFIG_SYS_PCIE3_IO_PHYS 7050 CONFIG_SYS_PCIE3_IO_PHYS
7052 CONFIG_SYS_PCIE3_IO_SIZE 7051 CONFIG_SYS_PCIE3_IO_SIZE
7053 CONFIG_SYS_PCIE3_IO_VIRT 7052 CONFIG_SYS_PCIE3_IO_VIRT
7054 CONFIG_SYS_PCIE3_MEM_BUS 7053 CONFIG_SYS_PCIE3_MEM_BUS
7055 CONFIG_SYS_PCIE3_MEM_BUS2 7054 CONFIG_SYS_PCIE3_MEM_BUS2
7056 CONFIG_SYS_PCIE3_MEM_PHYS 7055 CONFIG_SYS_PCIE3_MEM_PHYS
7057 CONFIG_SYS_PCIE3_MEM_PHYS2 7056 CONFIG_SYS_PCIE3_MEM_PHYS2
7058 CONFIG_SYS_PCIE3_MEM_SIZE 7057 CONFIG_SYS_PCIE3_MEM_SIZE
7059 CONFIG_SYS_PCIE3_MEM_SIZE2 7058 CONFIG_SYS_PCIE3_MEM_SIZE2
7060 CONFIG_SYS_PCIE3_MEM_VIRT 7059 CONFIG_SYS_PCIE3_MEM_VIRT
7061 CONFIG_SYS_PCIE3_MEM_VIRT2 7060 CONFIG_SYS_PCIE3_MEM_VIRT2
7062 CONFIG_SYS_PCIE3_NAME 7061 CONFIG_SYS_PCIE3_NAME
7063 CONFIG_SYS_PCIE3_PHYS_ADDR 7062 CONFIG_SYS_PCIE3_PHYS_ADDR
7064 CONFIG_SYS_PCIE3_PHYS_SIZE 7063 CONFIG_SYS_PCIE3_PHYS_SIZE
7065 CONFIG_SYS_PCIE4_ADDR 7064 CONFIG_SYS_PCIE4_ADDR
7066 CONFIG_SYS_PCIE4_IO_BUS 7065 CONFIG_SYS_PCIE4_IO_BUS
7067 CONFIG_SYS_PCIE4_IO_PHYS 7066 CONFIG_SYS_PCIE4_IO_PHYS
7068 CONFIG_SYS_PCIE4_IO_SIZE 7067 CONFIG_SYS_PCIE4_IO_SIZE
7069 CONFIG_SYS_PCIE4_IO_VIRT 7068 CONFIG_SYS_PCIE4_IO_VIRT
7070 CONFIG_SYS_PCIE4_MEM_BUS 7069 CONFIG_SYS_PCIE4_MEM_BUS
7071 CONFIG_SYS_PCIE4_MEM_PHYS 7070 CONFIG_SYS_PCIE4_MEM_PHYS
7072 CONFIG_SYS_PCIE4_MEM_SIZE 7071 CONFIG_SYS_PCIE4_MEM_SIZE
7073 CONFIG_SYS_PCIE4_MEM_VIRT 7072 CONFIG_SYS_PCIE4_MEM_VIRT
7074 CONFIG_SYS_PCIE4_NAME 7073 CONFIG_SYS_PCIE4_NAME
7075 CONFIG_SYS_PCIE4_PHYS_ADDR 7074 CONFIG_SYS_PCIE4_PHYS_ADDR
7076 CONFIG_SYS_PCIE4_PHYS_SIZE 7075 CONFIG_SYS_PCIE4_PHYS_SIZE
7077 CONFIG_SYS_PCIE_ADDR_HIGH 7076 CONFIG_SYS_PCIE_ADDR_HIGH
7078 CONFIG_SYS_PCIE_BASE 7077 CONFIG_SYS_PCIE_BASE
7079 CONFIG_SYS_PCIE_CFG0_PHYS_OFF 7078 CONFIG_SYS_PCIE_CFG0_PHYS_OFF
7080 CONFIG_SYS_PCIE_CFG0_SIZE 7079 CONFIG_SYS_PCIE_CFG0_SIZE
7081 CONFIG_SYS_PCIE_CFG1_PHYS_OFF 7080 CONFIG_SYS_PCIE_CFG1_PHYS_OFF
7082 CONFIG_SYS_PCIE_CFG1_SIZE 7081 CONFIG_SYS_PCIE_CFG1_SIZE
7083 CONFIG_SYS_PCIE_INBOUND_BASE 7082 CONFIG_SYS_PCIE_INBOUND_BASE
7084 CONFIG_SYS_PCIE_IO_BUS 7083 CONFIG_SYS_PCIE_IO_BUS
7085 CONFIG_SYS_PCIE_IO_PHYS_OFF 7084 CONFIG_SYS_PCIE_IO_PHYS_OFF
7086 CONFIG_SYS_PCIE_IO_SIZE 7085 CONFIG_SYS_PCIE_IO_SIZE
7087 CONFIG_SYS_PCIE_MEMBASE 7086 CONFIG_SYS_PCIE_MEMBASE
7088 CONFIG_SYS_PCIE_MEMSIZE 7087 CONFIG_SYS_PCIE_MEMSIZE
7089 CONFIG_SYS_PCIE_MEM_BUS 7088 CONFIG_SYS_PCIE_MEM_BUS
7090 CONFIG_SYS_PCIE_MEM_PHYS_OFF 7089 CONFIG_SYS_PCIE_MEM_PHYS_OFF
7091 CONFIG_SYS_PCIE_MEM_SIZE 7090 CONFIG_SYS_PCIE_MEM_SIZE
7092 CONFIG_SYS_PCIE_MMAP_SIZE 7091 CONFIG_SYS_PCIE_MMAP_SIZE
7093 CONFIG_SYS_PCIE_NR_PORTS 7092 CONFIG_SYS_PCIE_NR_PORTS
7094 CONFIG_SYS_PCIE_PHYS 7093 CONFIG_SYS_PCIE_PHYS
7095 CONFIG_SYS_PCIE_VIRT 7094 CONFIG_SYS_PCIE_VIRT
7096 CONFIG_SYS_PCIMSK0_MASK 7095 CONFIG_SYS_PCIMSK0_MASK
7097 CONFIG_SYS_PCIMSK1_MASK 7096 CONFIG_SYS_PCIMSK1_MASK
7098 CONFIG_SYS_PCISPEED_66 7097 CONFIG_SYS_PCISPEED_66
7099 CONFIG_SYS_PCI_64BIT 7098 CONFIG_SYS_PCI_64BIT
7100 CONFIG_SYS_PCI_BAR0 7099 CONFIG_SYS_PCI_BAR0
7101 CONFIG_SYS_PCI_BAR1 7100 CONFIG_SYS_PCI_BAR1
7102 CONFIG_SYS_PCI_BAR2 7101 CONFIG_SYS_PCI_BAR2
7103 CONFIG_SYS_PCI_BAR3 7102 CONFIG_SYS_PCI_BAR3
7104 CONFIG_SYS_PCI_BAR4 7103 CONFIG_SYS_PCI_BAR4
7105 CONFIG_SYS_PCI_BAR5 7104 CONFIG_SYS_PCI_BAR5
7106 CONFIG_SYS_PCI_BASE 7105 CONFIG_SYS_PCI_BASE
7107 CONFIG_SYS_PCI_BOARD_FIXUP_IRQ 7106 CONFIG_SYS_PCI_BOARD_FIXUP_IRQ
7108 CONFIG_SYS_PCI_CACHE_LINE_SIZE 7107 CONFIG_SYS_PCI_CACHE_LINE_SIZE
7109 CONFIG_SYS_PCI_CFG_BASE 7108 CONFIG_SYS_PCI_CFG_BASE
7110 CONFIG_SYS_PCI_CFG_BUS 7109 CONFIG_SYS_PCI_CFG_BUS
7111 CONFIG_SYS_PCI_CFG_PHYS 7110 CONFIG_SYS_PCI_CFG_PHYS
7112 CONFIG_SYS_PCI_CFG_SIZE 7111 CONFIG_SYS_PCI_CFG_SIZE
7113 CONFIG_SYS_PCI_CLASSCODE 7112 CONFIG_SYS_PCI_CLASSCODE
7114 CONFIG_SYS_PCI_CLASSCODE_MONARCH 7113 CONFIG_SYS_PCI_CLASSCODE_MONARCH
7115 CONFIG_SYS_PCI_CLASSCODE_NONMONARCH 7114 CONFIG_SYS_PCI_CLASSCODE_NONMONARCH
7116 CONFIG_SYS_PCI_CON_DEVICE 7115 CONFIG_SYS_PCI_CON_DEVICE
7117 CONFIG_SYS_PCI_EP_MEMORY_BASE 7116 CONFIG_SYS_PCI_EP_MEMORY_BASE
7118 CONFIG_SYS_PCI_FORCE_PCI_CONV 7117 CONFIG_SYS_PCI_FORCE_PCI_CONV
7119 CONFIG_SYS_PCI_IO_BASE 7118 CONFIG_SYS_PCI_IO_BASE
7120 CONFIG_SYS_PCI_IO_BUS 7119 CONFIG_SYS_PCI_IO_BUS
7121 CONFIG_SYS_PCI_IO_PHYS 7120 CONFIG_SYS_PCI_IO_PHYS
7122 CONFIG_SYS_PCI_IO_SIZE 7121 CONFIG_SYS_PCI_IO_SIZE
7123 CONFIG_SYS_PCI_MAP_END 7122 CONFIG_SYS_PCI_MAP_END
7124 CONFIG_SYS_PCI_MAP_START 7123 CONFIG_SYS_PCI_MAP_START
7125 CONFIG_SYS_PCI_MASTER_INIT 7124 CONFIG_SYS_PCI_MASTER_INIT
7126 CONFIG_SYS_PCI_MEMBASE 7125 CONFIG_SYS_PCI_MEMBASE
7127 CONFIG_SYS_PCI_MEMBASE1 7126 CONFIG_SYS_PCI_MEMBASE1
7128 CONFIG_SYS_PCI_MEMBASE2 7127 CONFIG_SYS_PCI_MEMBASE2
7129 CONFIG_SYS_PCI_MEMBASE3 7128 CONFIG_SYS_PCI_MEMBASE3
7130 CONFIG_SYS_PCI_MEMORY_BUS 7129 CONFIG_SYS_PCI_MEMORY_BUS
7131 CONFIG_SYS_PCI_MEMORY_PHYS 7130 CONFIG_SYS_PCI_MEMORY_PHYS
7132 CONFIG_SYS_PCI_MEMORY_SIZE 7131 CONFIG_SYS_PCI_MEMORY_SIZE
7133 CONFIG_SYS_PCI_MEMSIZE 7132 CONFIG_SYS_PCI_MEMSIZE
7134 CONFIG_SYS_PCI_MEM_BASE 7133 CONFIG_SYS_PCI_MEM_BASE
7135 CONFIG_SYS_PCI_MEM_BUS 7134 CONFIG_SYS_PCI_MEM_BUS
7136 CONFIG_SYS_PCI_MEM_PHYS 7135 CONFIG_SYS_PCI_MEM_PHYS
7137 CONFIG_SYS_PCI_MEM_SIZE 7136 CONFIG_SYS_PCI_MEM_SIZE
7138 CONFIG_SYS_PCI_MMIO_BASE 7137 CONFIG_SYS_PCI_MMIO_BASE
7139 CONFIG_SYS_PCI_MMIO_PHYS 7138 CONFIG_SYS_PCI_MMIO_PHYS
7140 CONFIG_SYS_PCI_MMIO_SIZE 7139 CONFIG_SYS_PCI_MMIO_SIZE
7141 CONFIG_SYS_PCI_MSTR0_LOCAL 7140 CONFIG_SYS_PCI_MSTR0_LOCAL
7142 CONFIG_SYS_PCI_MSTR1_LOCAL 7141 CONFIG_SYS_PCI_MSTR1_LOCAL
7143 CONFIG_SYS_PCI_MSTR_IO_BUS 7142 CONFIG_SYS_PCI_MSTR_IO_BUS
7144 CONFIG_SYS_PCI_MSTR_IO_LOCAL 7143 CONFIG_SYS_PCI_MSTR_IO_LOCAL
7145 CONFIG_SYS_PCI_MSTR_IO_SIZE 7144 CONFIG_SYS_PCI_MSTR_IO_SIZE
7146 CONFIG_SYS_PCI_MSTR_MEMIO_BUS 7145 CONFIG_SYS_PCI_MSTR_MEMIO_BUS
7147 CONFIG_SYS_PCI_MSTR_MEMIO_LOCAL 7146 CONFIG_SYS_PCI_MSTR_MEMIO_LOCAL
7148 CONFIG_SYS_PCI_MSTR_MEMIO_SIZE 7147 CONFIG_SYS_PCI_MSTR_MEMIO_SIZE
7149 CONFIG_SYS_PCI_MSTR_MEM_BUS 7148 CONFIG_SYS_PCI_MSTR_MEM_BUS
7150 CONFIG_SYS_PCI_MSTR_MEM_LOCAL 7149 CONFIG_SYS_PCI_MSTR_MEM_LOCAL
7151 CONFIG_SYS_PCI_MSTR_MEM_SIZE 7150 CONFIG_SYS_PCI_MSTR_MEM_SIZE
7152 CONFIG_SYS_PCI_NR_INBOUND_WIN 7151 CONFIG_SYS_PCI_NR_INBOUND_WIN
7153 CONFIG_SYS_PCI_PHYS 7152 CONFIG_SYS_PCI_PHYS
7154 CONFIG_SYS_PCI_PTM1LA 7153 CONFIG_SYS_PCI_PTM1LA
7155 CONFIG_SYS_PCI_PTM1MS 7154 CONFIG_SYS_PCI_PTM1MS
7156 CONFIG_SYS_PCI_PTM1PCI 7155 CONFIG_SYS_PCI_PTM1PCI
7157 CONFIG_SYS_PCI_PTM2LA 7156 CONFIG_SYS_PCI_PTM2LA
7158 CONFIG_SYS_PCI_PTM2MS 7157 CONFIG_SYS_PCI_PTM2MS
7159 CONFIG_SYS_PCI_PTM2PCI 7158 CONFIG_SYS_PCI_PTM2PCI
7160 CONFIG_SYS_PCI_SLV_MEM_BUS 7159 CONFIG_SYS_PCI_SLV_MEM_BUS
7161 CONFIG_SYS_PCI_SLV_MEM_LOCAL 7160 CONFIG_SYS_PCI_SLV_MEM_LOCAL
7162 CONFIG_SYS_PCI_SLV_MEM_SIZE 7161 CONFIG_SYS_PCI_SLV_MEM_SIZE
7163 CONFIG_SYS_PCI_SUBSYS_DEVICEID 7162 CONFIG_SYS_PCI_SUBSYS_DEVICEID
7164 CONFIG_SYS_PCI_SUBSYS_DEVICEID2 7163 CONFIG_SYS_PCI_SUBSYS_DEVICEID2
7165 CONFIG_SYS_PCI_SUBSYS_ID 7164 CONFIG_SYS_PCI_SUBSYS_ID
7166 CONFIG_SYS_PCI_SUBSYS_ID_MONARCH 7165 CONFIG_SYS_PCI_SUBSYS_ID_MONARCH
7167 CONFIG_SYS_PCI_SUBSYS_ID_NONMONARCH 7166 CONFIG_SYS_PCI_SUBSYS_ID_NONMONARCH
7168 CONFIG_SYS_PCI_SUBSYS_VENDORID 7167 CONFIG_SYS_PCI_SUBSYS_VENDORID
7169 CONFIG_SYS_PCI_SYS_MEM_BUS 7168 CONFIG_SYS_PCI_SYS_MEM_BUS
7170 CONFIG_SYS_PCI_SYS_MEM_PHYS 7169 CONFIG_SYS_PCI_SYS_MEM_PHYS
7171 CONFIG_SYS_PCI_SYS_MEM_SIZE 7170 CONFIG_SYS_PCI_SYS_MEM_SIZE
7172 CONFIG_SYS_PCI_TARGBASE 7171 CONFIG_SYS_PCI_TARGBASE
7173 CONFIG_SYS_PCI_TARGET_INIT 7172 CONFIG_SYS_PCI_TARGET_INIT
7174 CONFIG_SYS_PCI_TBATR0 7173 CONFIG_SYS_PCI_TBATR0
7175 CONFIG_SYS_PCI_TBATR1 7174 CONFIG_SYS_PCI_TBATR1
7176 CONFIG_SYS_PCI_TBATR2 7175 CONFIG_SYS_PCI_TBATR2
7177 CONFIG_SYS_PCI_TBATR3 7176 CONFIG_SYS_PCI_TBATR3
7178 CONFIG_SYS_PCI_TBATR4 7177 CONFIG_SYS_PCI_TBATR4
7179 CONFIG_SYS_PCI_TBATR5 7178 CONFIG_SYS_PCI_TBATR5
7180 CONFIG_SYS_PCI_VIRT 7179 CONFIG_SYS_PCI_VIRT
7181 CONFIG_SYS_PCMCIA_ATTRB_ADDR 7180 CONFIG_SYS_PCMCIA_ATTRB_ADDR
7182 CONFIG_SYS_PCMCIA_ATTRB_SIZE 7181 CONFIG_SYS_PCMCIA_ATTRB_SIZE
7183 CONFIG_SYS_PCMCIA_ATTR_BASE 7182 CONFIG_SYS_PCMCIA_ATTR_BASE
7184 CONFIG_SYS_PCMCIA_CIS_WIN 7183 CONFIG_SYS_PCMCIA_CIS_WIN
7185 CONFIG_SYS_PCMCIA_CIS_WIN_SIZE 7184 CONFIG_SYS_PCMCIA_CIS_WIN_SIZE
7186 CONFIG_SYS_PCMCIA_DMA_ADDR 7185 CONFIG_SYS_PCMCIA_DMA_ADDR
7187 CONFIG_SYS_PCMCIA_DMA_SIZE 7186 CONFIG_SYS_PCMCIA_DMA_SIZE
7188 CONFIG_SYS_PCMCIA_IO_ADDR 7187 CONFIG_SYS_PCMCIA_IO_ADDR
7189 CONFIG_SYS_PCMCIA_IO_BASE 7188 CONFIG_SYS_PCMCIA_IO_BASE
7190 CONFIG_SYS_PCMCIA_IO_SIZE 7189 CONFIG_SYS_PCMCIA_IO_SIZE
7191 CONFIG_SYS_PCMCIA_IO_WIN 7190 CONFIG_SYS_PCMCIA_IO_WIN
7192 CONFIG_SYS_PCMCIA_IO_WIN_SIZE 7191 CONFIG_SYS_PCMCIA_IO_WIN_SIZE
7193 CONFIG_SYS_PCMCIA_MEM_ADDR 7192 CONFIG_SYS_PCMCIA_MEM_ADDR
7194 CONFIG_SYS_PCMCIA_MEM_SIZE 7193 CONFIG_SYS_PCMCIA_MEM_SIZE
7195 CONFIG_SYS_PCMCIA_PBR0 7194 CONFIG_SYS_PCMCIA_PBR0
7196 CONFIG_SYS_PCMCIA_PBR1 7195 CONFIG_SYS_PCMCIA_PBR1
7197 CONFIG_SYS_PCMCIA_PBR2 7196 CONFIG_SYS_PCMCIA_PBR2
7198 CONFIG_SYS_PCMCIA_PBR3 7197 CONFIG_SYS_PCMCIA_PBR3
7199 CONFIG_SYS_PCMCIA_PBR4 7198 CONFIG_SYS_PCMCIA_PBR4
7200 CONFIG_SYS_PCMCIA_PBR5 7199 CONFIG_SYS_PCMCIA_PBR5
7201 CONFIG_SYS_PCMCIA_PBR6 7200 CONFIG_SYS_PCMCIA_PBR6
7202 CONFIG_SYS_PCMCIA_PBR7 7201 CONFIG_SYS_PCMCIA_PBR7
7203 CONFIG_SYS_PCMCIA_POR0 7202 CONFIG_SYS_PCMCIA_POR0
7204 CONFIG_SYS_PCMCIA_POR1 7203 CONFIG_SYS_PCMCIA_POR1
7205 CONFIG_SYS_PCMCIA_POR2 7204 CONFIG_SYS_PCMCIA_POR2
7206 CONFIG_SYS_PCMCIA_POR3 7205 CONFIG_SYS_PCMCIA_POR3
7207 CONFIG_SYS_PCMCIA_POR4 7206 CONFIG_SYS_PCMCIA_POR4
7208 CONFIG_SYS_PCMCIA_POR5 7207 CONFIG_SYS_PCMCIA_POR5
7209 CONFIG_SYS_PCMCIA_POR6 7208 CONFIG_SYS_PCMCIA_POR6
7210 CONFIG_SYS_PCMCIA_POR7 7209 CONFIG_SYS_PCMCIA_POR7
7211 CONFIG_SYS_PCMCIA_TIMING 7210 CONFIG_SYS_PCMCIA_TIMING
7212 CONFIG_SYS_PDCNT 7211 CONFIG_SYS_PDCNT
7213 CONFIG_SYS_PDM360NG_COPROC_BAUDRATE 7212 CONFIG_SYS_PDM360NG_COPROC_BAUDRATE
7214 CONFIG_SYS_PDM360NG_COPROC_READ_DELAY 7213 CONFIG_SYS_PDM360NG_COPROC_READ_DELAY
7215 CONFIG_SYS_PEHLPAR 7214 CONFIG_SYS_PEHLPAR
7216 CONFIG_SYS_PEPAR 7215 CONFIG_SYS_PEPAR
7217 CONFIG_SYS_PERIPHERAL_BASE 7216 CONFIG_SYS_PERIPHERAL_BASE
7218 CONFIG_SYS_PFC0 7217 CONFIG_SYS_PFC0
7219 CONFIG_SYS_PFPAR 7218 CONFIG_SYS_PFPAR
7220 CONFIG_SYS_PHYS_ADDR_HIGH 7219 CONFIG_SYS_PHYS_ADDR_HIGH
7221 CONFIG_SYS_PHY_UBOOT_BASE 7220 CONFIG_SYS_PHY_UBOOT_BASE
7222 CONFIG_SYS_PIB_BASE 7221 CONFIG_SYS_PIB_BASE
7223 CONFIG_SYS_PIB_WINDOW_SIZE 7222 CONFIG_SYS_PIB_WINDOW_SIZE
7224 CONFIG_SYS_PICMR0_MASK_ATTRIB 7223 CONFIG_SYS_PICMR0_MASK_ATTRIB
7225 CONFIG_SYS_PIOC_ASR_VAL 7224 CONFIG_SYS_PIOC_ASR_VAL
7226 CONFIG_SYS_PIOC_BSR_VAL 7225 CONFIG_SYS_PIOC_BSR_VAL
7227 CONFIG_SYS_PIOC_PDR_VAL 7226 CONFIG_SYS_PIOC_PDR_VAL
7228 CONFIG_SYS_PIOC_PDR_VAL1 7227 CONFIG_SYS_PIOC_PDR_VAL1
7229 CONFIG_SYS_PIOC_PPUDR_VAL 7228 CONFIG_SYS_PIOC_PPUDR_VAL
7230 CONFIG_SYS_PIOD_PDR_VAL1 7229 CONFIG_SYS_PIOD_PDR_VAL1
7231 CONFIG_SYS_PIOD_PPUDR_VAL 7230 CONFIG_SYS_PIOD_PPUDR_VAL
7232 CONFIG_SYS_PIO_MODE 7231 CONFIG_SYS_PIO_MODE
7233 CONFIG_SYS_PISCR 7232 CONFIG_SYS_PISCR
7234 CONFIG_SYS_PIT_BASE 7233 CONFIG_SYS_PIT_BASE
7235 CONFIG_SYS_PIT_PRESCALE 7234 CONFIG_SYS_PIT_PRESCALE
7236 CONFIG_SYS_PIXIS_VBOOT_ENABLE 7235 CONFIG_SYS_PIXIS_VBOOT_ENABLE
7237 CONFIG_SYS_PIXIS_VBOOT_MASK 7236 CONFIG_SYS_PIXIS_VBOOT_MASK
7238 CONFIG_SYS_PIXIS_VCFGEN0_ENABLE 7237 CONFIG_SYS_PIXIS_VCFGEN0_ENABLE
7239 CONFIG_SYS_PJPAR 7238 CONFIG_SYS_PJPAR
7240 CONFIG_SYS_PL310_BASE 7239 CONFIG_SYS_PL310_BASE
7241 CONFIG_SYS_PLATFORM_SRAM_BASE 7240 CONFIG_SYS_PLATFORM_SRAM_BASE
7242 CONFIG_SYS_PLATFORM_SRAM_BASE_PHYS 7241 CONFIG_SYS_PLATFORM_SRAM_BASE_PHYS
7243 CONFIG_SYS_PLATFORM_SRAM_SIZE 7242 CONFIG_SYS_PLATFORM_SRAM_SIZE
7244 CONFIG_SYS_PLL0_DIV 7243 CONFIG_SYS_PLL0_DIV
7245 CONFIG_SYS_PLL0_MUL 7244 CONFIG_SYS_PLL0_MUL
7246 CONFIG_SYS_PLL0_OPT 7245 CONFIG_SYS_PLL0_OPT
7247 CONFIG_SYS_PLL0_SUPPRESS_CYCLES 7246 CONFIG_SYS_PLL0_SUPPRESS_CYCLES
7248 CONFIG_SYS_PLLAR_VAL 7247 CONFIG_SYS_PLLAR_VAL
7249 CONFIG_SYS_PLLBR_VAL 7248 CONFIG_SYS_PLLBR_VAL
7250 CONFIG_SYS_PLLCR 7249 CONFIG_SYS_PLLCR
7251 CONFIG_SYS_PLL_BYPASS 7250 CONFIG_SYS_PLL_BYPASS
7252 CONFIG_SYS_PLL_FDR 7251 CONFIG_SYS_PLL_FDR
7253 CONFIG_SYS_PLL_ODR 7252 CONFIG_SYS_PLL_ODR
7254 CONFIG_SYS_PLL_RECONFIG 7253 CONFIG_SYS_PLL_RECONFIG
7255 CONFIG_SYS_PLL_SETTLING_TIME 7254 CONFIG_SYS_PLL_SETTLING_TIME
7256 CONFIG_SYS_PLPRCR 7255 CONFIG_SYS_PLPRCR
7257 CONFIG_SYS_PLUG_BASE 7256 CONFIG_SYS_PLUG_BASE
7258 CONFIG_SYS_PMAN 7257 CONFIG_SYS_PMAN
7259 CONFIG_SYS_PMC_BASE 7258 CONFIG_SYS_PMC_BASE
7260 CONFIG_SYS_PMC_BASE_PHYS 7259 CONFIG_SYS_PMC_BASE_PHYS
7261 CONFIG_SYS_PME_CLK 7260 CONFIG_SYS_PME_CLK
7262 CONFIG_SYS_POCMR0_MASK_ATTRIB 7261 CONFIG_SYS_POCMR0_MASK_ATTRIB
7263 CONFIG_SYS_POCMR1_MASK_ATTRIB 7262 CONFIG_SYS_POCMR1_MASK_ATTRIB
7264 CONFIG_SYS_POCMR2_MASK_ATTRIB 7263 CONFIG_SYS_POCMR2_MASK_ATTRIB
7265 CONFIG_SYS_PORTTC 7264 CONFIG_SYS_PORTTC
7266 CONFIG_SYS_POST_BSPEC1 7265 CONFIG_SYS_POST_BSPEC1
7267 CONFIG_SYS_POST_BSPEC2 7266 CONFIG_SYS_POST_BSPEC2
7268 CONFIG_SYS_POST_BSPEC3 7267 CONFIG_SYS_POST_BSPEC3
7269 CONFIG_SYS_POST_BSPEC4 7268 CONFIG_SYS_POST_BSPEC4
7270 CONFIG_SYS_POST_BSPEC5 7269 CONFIG_SYS_POST_BSPEC5
7271 CONFIG_SYS_POST_CACHE 7270 CONFIG_SYS_POST_CACHE
7272 CONFIG_SYS_POST_CACHE_ADDR 7271 CONFIG_SYS_POST_CACHE_ADDR
7273 CONFIG_SYS_POST_CODEC 7272 CONFIG_SYS_POST_CODEC
7274 CONFIG_SYS_POST_COPROC 7273 CONFIG_SYS_POST_COPROC
7275 CONFIG_SYS_POST_CPU 7274 CONFIG_SYS_POST_CPU
7276 CONFIG_SYS_POST_DSP 7275 CONFIG_SYS_POST_DSP
7277 CONFIG_SYS_POST_ECC 7276 CONFIG_SYS_POST_ECC
7278 CONFIG_SYS_POST_ETHER 7277 CONFIG_SYS_POST_ETHER
7279 CONFIG_SYS_POST_ETHER_EXT_LOOPBACK 7278 CONFIG_SYS_POST_ETHER_EXT_LOOPBACK
7280 CONFIG_SYS_POST_ETH_LOOPS 7279 CONFIG_SYS_POST_ETH_LOOPS
7281 CONFIG_SYS_POST_FLASH 7280 CONFIG_SYS_POST_FLASH
7282 CONFIG_SYS_POST_FLASH_END 7281 CONFIG_SYS_POST_FLASH_END
7283 CONFIG_SYS_POST_FLASH_NUM 7282 CONFIG_SYS_POST_FLASH_NUM
7284 CONFIG_SYS_POST_FLASH_START 7283 CONFIG_SYS_POST_FLASH_START
7285 CONFIG_SYS_POST_FPU 7284 CONFIG_SYS_POST_FPU
7286 CONFIG_SYS_POST_FPU_ON 7285 CONFIG_SYS_POST_FPU_ON
7287 CONFIG_SYS_POST_HOTKEYS_GPIO 7286 CONFIG_SYS_POST_HOTKEYS_GPIO
7288 CONFIG_SYS_POST_I2C 7287 CONFIG_SYS_POST_I2C
7289 CONFIG_SYS_POST_I2C_ADDRS 7288 CONFIG_SYS_POST_I2C_ADDRS
7290 CONFIG_SYS_POST_I2C_IGNORES 7289 CONFIG_SYS_POST_I2C_IGNORES
7291 CONFIG_SYS_POST_MEMORY 7290 CONFIG_SYS_POST_MEMORY
7292 CONFIG_SYS_POST_MEMORY_ON 7291 CONFIG_SYS_POST_MEMORY_ON
7293 CONFIG_SYS_POST_MEM_REGIONS 7292 CONFIG_SYS_POST_MEM_REGIONS
7294 CONFIG_SYS_POST_OCM 7293 CONFIG_SYS_POST_OCM
7295 CONFIG_SYS_POST_PREREL 7294 CONFIG_SYS_POST_PREREL
7296 CONFIG_SYS_POST_RTC 7295 CONFIG_SYS_POST_RTC
7297 CONFIG_SYS_POST_SPI 7296 CONFIG_SYS_POST_SPI
7298 CONFIG_SYS_POST_SPR 7297 CONFIG_SYS_POST_SPR
7299 CONFIG_SYS_POST_SYSMON 7298 CONFIG_SYS_POST_SYSMON
7300 CONFIG_SYS_POST_UART 7299 CONFIG_SYS_POST_UART
7301 CONFIG_SYS_POST_UART_TABLE 7300 CONFIG_SYS_POST_UART_TABLE
7302 CONFIG_SYS_POST_USB 7301 CONFIG_SYS_POST_USB
7303 CONFIG_SYS_POST_WATCHDOG 7302 CONFIG_SYS_POST_WATCHDOG
7304 CONFIG_SYS_POST_WORD_ADDR 7303 CONFIG_SYS_POST_WORD_ADDR
7305 CONFIG_SYS_POWER_MANAGER 7304 CONFIG_SYS_POWER_MANAGER
7306 CONFIG_SYS_PPC4XX_USB_ADDR 7305 CONFIG_SYS_PPC4XX_USB_ADDR
7307 CONFIG_SYS_PPC64 7306 CONFIG_SYS_PPC64
7308 CONFIG_SYS_PPC_DDR_WIMGE 7307 CONFIG_SYS_PPC_DDR_WIMGE
7309 CONFIG_SYS_PPC_E500_DEBUG_TLB 7308 CONFIG_SYS_PPC_E500_DEBUG_TLB
7310 CONFIG_SYS_PQSPAR 7309 CONFIG_SYS_PQSPAR
7311 CONFIG_SYS_PRELIM_OR_AM 7310 CONFIG_SYS_PRELIM_OR_AM
7312 CONFIG_SYS_PROMPT_HUSH_PS2 7311 CONFIG_SYS_PROMPT_HUSH_PS2
7313 CONFIG_SYS_PROM_OFFSET 7312 CONFIG_SYS_PROM_OFFSET
7314 CONFIG_SYS_PROM_SIZE 7313 CONFIG_SYS_PROM_SIZE
7315 CONFIG_SYS_PSC1 7314 CONFIG_SYS_PSC1
7316 CONFIG_SYS_PSC3 7315 CONFIG_SYS_PSC3
7317 CONFIG_SYS_PSC4 7316 CONFIG_SYS_PSC4
7318 CONFIG_SYS_PSC6 7317 CONFIG_SYS_PSC6
7319 CONFIG_SYS_PSDMR 7318 CONFIG_SYS_PSDMR
7320 CONFIG_SYS_PSDPAR 7319 CONFIG_SYS_PSDPAR
7321 CONFIG_SYS_PSRT 7320 CONFIG_SYS_PSRT
7322 CONFIG_SYS_PSSR_VAL 7321 CONFIG_SYS_PSSR_VAL
7323 CONFIG_SYS_PTA_PER_CLK 7322 CONFIG_SYS_PTA_PER_CLK
7324 CONFIG_SYS_PTCPAR 7323 CONFIG_SYS_PTCPAR
7325 CONFIG_SYS_PTDPAR 7324 CONFIG_SYS_PTDPAR
7326 CONFIG_SYS_PTL2_BITS 7325 CONFIG_SYS_PTL2_BITS
7327 CONFIG_SYS_PTV 7326 CONFIG_SYS_PTV
7328 CONFIG_SYS_PUAPAR 7327 CONFIG_SYS_PUAPAR
7329 CONFIG_SYS_QE_FMAN_FW_IN_MMC 7328 CONFIG_SYS_QE_FMAN_FW_IN_MMC
7330 CONFIG_SYS_QE_FMAN_FW_IN_NAND 7329 CONFIG_SYS_QE_FMAN_FW_IN_NAND
7331 CONFIG_SYS_QE_FMAN_FW_IN_NOR 7330 CONFIG_SYS_QE_FMAN_FW_IN_NOR
7332 CONFIG_SYS_QE_FMAN_FW_IN_REMOTE 7331 CONFIG_SYS_QE_FMAN_FW_IN_REMOTE
7333 CONFIG_SYS_QE_FMAN_FW_LENGTH 7332 CONFIG_SYS_QE_FMAN_FW_LENGTH
7334 CONFIG_SYS_QE_FW_ADDR 7333 CONFIG_SYS_QE_FW_ADDR
7335 CONFIG_SYS_QE_FW_IN_SPIFLASH 7334 CONFIG_SYS_QE_FW_IN_SPIFLASH
7336 CONFIG_SYS_QMAN_CENA_BASE 7335 CONFIG_SYS_QMAN_CENA_BASE
7337 CONFIG_SYS_QMAN_CENA_SIZE 7336 CONFIG_SYS_QMAN_CENA_SIZE
7338 CONFIG_SYS_QMAN_CINH_BASE 7337 CONFIG_SYS_QMAN_CINH_BASE
7339 CONFIG_SYS_QMAN_CINH_SIZE 7338 CONFIG_SYS_QMAN_CINH_SIZE
7340 CONFIG_SYS_QMAN_MEM_BASE 7339 CONFIG_SYS_QMAN_MEM_BASE
7341 CONFIG_SYS_QMAN_MEM_PHYS 7340 CONFIG_SYS_QMAN_MEM_PHYS
7342 CONFIG_SYS_QMAN_MEM_SIZE 7341 CONFIG_SYS_QMAN_MEM_SIZE
7343 CONFIG_SYS_QMAN_NUM_PORTALS 7342 CONFIG_SYS_QMAN_NUM_PORTALS
7344 CONFIG_SYS_QMAN_SP_CENA_SIZE 7343 CONFIG_SYS_QMAN_SP_CENA_SIZE
7345 CONFIG_SYS_QMAN_SP_CINH_SIZE 7344 CONFIG_SYS_QMAN_SP_CINH_SIZE
7346 CONFIG_SYS_QMAN_SWP_ISDR_REG 7345 CONFIG_SYS_QMAN_SWP_ISDR_REG
7347 CONFIG_SYS_QRIO_BASE 7346 CONFIG_SYS_QRIO_BASE
7348 CONFIG_SYS_QRIO_BASE_PHYS 7347 CONFIG_SYS_QRIO_BASE_PHYS
7349 CONFIG_SYS_QRIO_BR_PRELIM 7348 CONFIG_SYS_QRIO_BR_PRELIM
7350 CONFIG_SYS_QRIO_OR_PRELIM 7349 CONFIG_SYS_QRIO_OR_PRELIM
7351 CONFIG_SYS_R7780MP_OLD_FLASH 7350 CONFIG_SYS_R7780MP_OLD_FLASH
7352 CONFIG_SYS_RAMBOOT 7351 CONFIG_SYS_RAMBOOT
7353 CONFIG_SYS_RAM_BASE 7352 CONFIG_SYS_RAM_BASE
7354 CONFIG_SYS_RAM_CS 7353 CONFIG_SYS_RAM_CS
7355 CONFIG_SYS_RAM_END 7354 CONFIG_SYS_RAM_END
7356 CONFIG_SYS_RAM_FREQ_DIV 7355 CONFIG_SYS_RAM_FREQ_DIV
7357 CONFIG_SYS_RAM_SIZE 7356 CONFIG_SYS_RAM_SIZE
7358 CONFIG_SYS_RCAR_I2C0_BASE 7357 CONFIG_SYS_RCAR_I2C0_BASE
7359 CONFIG_SYS_RCAR_I2C0_SPEED 7358 CONFIG_SYS_RCAR_I2C0_SPEED
7360 CONFIG_SYS_RCAR_I2C1_BASE 7359 CONFIG_SYS_RCAR_I2C1_BASE
7361 CONFIG_SYS_RCAR_I2C1_SPEED 7360 CONFIG_SYS_RCAR_I2C1_SPEED
7362 CONFIG_SYS_RCAR_I2C2_BASE 7361 CONFIG_SYS_RCAR_I2C2_BASE
7363 CONFIG_SYS_RCAR_I2C2_SPEED 7362 CONFIG_SYS_RCAR_I2C2_SPEED
7364 CONFIG_SYS_RCAR_I2C3_BASE 7363 CONFIG_SYS_RCAR_I2C3_BASE
7365 CONFIG_SYS_RCAR_I2C3_SPEED 7364 CONFIG_SYS_RCAR_I2C3_SPEED
7366 CONFIG_SYS_RCCR 7365 CONFIG_SYS_RCCR
7367 CONFIG_SYS_RCWH_PCIHOST 7366 CONFIG_SYS_RCWH_PCIHOST
7368 CONFIG_SYS_READ_SPD 7367 CONFIG_SYS_READ_SPD
7369 CONFIG_SYS_REDUNDAND_ENVIRONMENT 7368 CONFIG_SYS_REDUNDAND_ENVIRONMENT
7370 CONFIG_SYS_RELOC_MONITOR_BASE 7369 CONFIG_SYS_RELOC_MONITOR_BASE
7371 CONFIG_SYS_RELOC_MONITOR_MAX_END 7370 CONFIG_SYS_RELOC_MONITOR_MAX_END
7372 CONFIG_SYS_REMAP_OR_AM 7371 CONFIG_SYS_REMAP_OR_AM
7373 CONFIG_SYS_RESET_ADDR 7372 CONFIG_SYS_RESET_ADDR
7374 CONFIG_SYS_RESET_ADDRESS 7373 CONFIG_SYS_RESET_ADDRESS
7375 CONFIG_SYS_RESET_BASE 7374 CONFIG_SYS_RESET_BASE
7376 CONFIG_SYS_RESET_SCTRL 7375 CONFIG_SYS_RESET_SCTRL
7377 CONFIG_SYS_RFD 7376 CONFIG_SYS_RFD
7378 CONFIG_SYS_RGMII1_PHY_ADDR 7377 CONFIG_SYS_RGMII1_PHY_ADDR
7379 CONFIG_SYS_RGMII2_PHY_ADDR 7378 CONFIG_SYS_RGMII2_PHY_ADDR
7380 CONFIG_SYS_RIO_MEM_BASE 7379 CONFIG_SYS_RIO_MEM_BASE
7381 CONFIG_SYS_RIO_MEM_BUS 7380 CONFIG_SYS_RIO_MEM_BUS
7382 CONFIG_SYS_RIO_MEM_PHYS 7381 CONFIG_SYS_RIO_MEM_PHYS
7383 CONFIG_SYS_RIO_MEM_SIZE 7382 CONFIG_SYS_RIO_MEM_SIZE
7384 CONFIG_SYS_RIO_MEM_VIRT 7383 CONFIG_SYS_RIO_MEM_VIRT
7385 CONFIG_SYS_RMDS 7384 CONFIG_SYS_RMDS
7386 CONFIG_SYS_RMR 7385 CONFIG_SYS_RMR
7387 CONFIG_SYS_ROM_BASE 7386 CONFIG_SYS_ROM_BASE
7388 CONFIG_SYS_ROOTPATH 7387 CONFIG_SYS_ROOTPATH
7389 CONFIG_SYS_RSTC_RMR_VAL 7388 CONFIG_SYS_RSTC_RMR_VAL
7390 CONFIG_SYS_RTCSC 7389 CONFIG_SYS_RTCSC
7391 CONFIG_SYS_RTC_BUS_NUM 7390 CONFIG_SYS_RTC_BUS_NUM
7392 CONFIG_SYS_RTC_CNT 7391 CONFIG_SYS_RTC_CNT
7393 CONFIG_SYS_RTC_DS1337 7392 CONFIG_SYS_RTC_DS1337
7394 CONFIG_SYS_RTC_DS1337_NOOSC 7393 CONFIG_SYS_RTC_DS1337_NOOSC
7395 CONFIG_SYS_RTC_DS1388 7394 CONFIG_SYS_RTC_DS1388
7396 CONFIG_SYS_RTC_OSCILLATOR 7395 CONFIG_SYS_RTC_OSCILLATOR
7397 CONFIG_SYS_RTC_PL031_BASE 7396 CONFIG_SYS_RTC_PL031_BASE
7398 CONFIG_SYS_RTC_REG_BASE_ADDR 7397 CONFIG_SYS_RTC_REG_BASE_ADDR
7399 CONFIG_SYS_RTC_SETUP 7398 CONFIG_SYS_RTC_SETUP
7400 CONFIG_SYS_RV3029_TCR 7399 CONFIG_SYS_RV3029_TCR
7401 CONFIG_SYS_RX_ETH_BUFFER 7400 CONFIG_SYS_RX_ETH_BUFFER
7402 CONFIG_SYS_S3C2410_NAND_HWECC 7401 CONFIG_SYS_S3C2410_NAND_HWECC
7403 CONFIG_SYS_SATA 7402 CONFIG_SYS_SATA
7404 CONFIG_SYS_SATA1 7403 CONFIG_SYS_SATA1
7405 CONFIG_SYS_SATA1_FLAGS 7404 CONFIG_SYS_SATA1_FLAGS
7406 CONFIG_SYS_SATA1_OFFSET 7405 CONFIG_SYS_SATA1_OFFSET
7407 CONFIG_SYS_SATA2 7406 CONFIG_SYS_SATA2
7408 CONFIG_SYS_SATA2_FLAGS 7407 CONFIG_SYS_SATA2_FLAGS
7409 CONFIG_SYS_SATA2_OFFSET 7408 CONFIG_SYS_SATA2_OFFSET
7410 CONFIG_SYS_SATA_ENV_DEV 7409 CONFIG_SYS_SATA_ENV_DEV
7411 CONFIG_SYS_SATA_FAT_BOOT_PARTITION 7410 CONFIG_SYS_SATA_FAT_BOOT_PARTITION
7412 CONFIG_SYS_SATA_MAX_DEVICE 7411 CONFIG_SYS_SATA_MAX_DEVICE
7413 CONFIG_SYS_SBFHDR_DATA_OFFSET 7412 CONFIG_SYS_SBFHDR_DATA_OFFSET
7414 CONFIG_SYS_SBFHDR_SIZE 7413 CONFIG_SYS_SBFHDR_SIZE
7415 CONFIG_SYS_SCCR 7414 CONFIG_SYS_SCCR
7416 CONFIG_SYS_SCCR_ENCCM 7415 CONFIG_SYS_SCCR_ENCCM
7417 CONFIG_SYS_SCCR_PCICM 7416 CONFIG_SYS_SCCR_PCICM
7418 CONFIG_SYS_SCCR_PCIEXP1CM 7417 CONFIG_SYS_SCCR_PCIEXP1CM
7419 CONFIG_SYS_SCCR_PCIEXP2CM 7418 CONFIG_SYS_SCCR_PCIEXP2CM
7420 CONFIG_SYS_SCCR_SATACM 7419 CONFIG_SYS_SCCR_SATACM
7421 CONFIG_SYS_SCCR_TSEC1CM 7420 CONFIG_SYS_SCCR_TSEC1CM
7422 CONFIG_SYS_SCCR_TSEC1ON 7421 CONFIG_SYS_SCCR_TSEC1ON
7423 CONFIG_SYS_SCCR_TSEC2CM 7422 CONFIG_SYS_SCCR_TSEC2CM
7424 CONFIG_SYS_SCCR_TSEC2ON 7423 CONFIG_SYS_SCCR_TSEC2ON
7425 CONFIG_SYS_SCCR_TSECCM 7424 CONFIG_SYS_SCCR_TSECCM
7426 CONFIG_SYS_SCCR_USBDRCM 7425 CONFIG_SYS_SCCR_USBDRCM
7427 CONFIG_SYS_SCCR_USBMPHCM 7426 CONFIG_SYS_SCCR_USBMPHCM
7428 CONFIG_SYS_SCC_TOUT_LOOP 7427 CONFIG_SYS_SCC_TOUT_LOOP
7429 CONFIG_SYS_SCR 7428 CONFIG_SYS_SCR
7430 CONFIG_SYS_SCRATCH_VA 7429 CONFIG_SYS_SCRATCH_VA
7431 CONFIG_SYS_SCSI_MAXDEVICE 7430 CONFIG_SYS_SCSI_MAXDEVICE
7432 CONFIG_SYS_SCSI_MAX_DEVICE 7431 CONFIG_SYS_SCSI_MAX_DEVICE
7433 CONFIG_SYS_SCSI_MAX_LUN 7432 CONFIG_SYS_SCSI_MAX_LUN
7434 CONFIG_SYS_SCSI_MAX_SCSI_ID 7433 CONFIG_SYS_SCSI_MAX_SCSI_ID
7435 CONFIG_SYS_SCSI_SPIN_UP_TIME 7434 CONFIG_SYS_SCSI_SPIN_UP_TIME
7436 CONFIG_SYS_SCSI_SYM53C8XX_CCF 7435 CONFIG_SYS_SCSI_SYM53C8XX_CCF
7437 CONFIG_SYS_SDHC_CLK 7436 CONFIG_SYS_SDHC_CLK
7438 CONFIG_SYS_SDHC_CLK_2_PLL 7437 CONFIG_SYS_SDHC_CLK_2_PLL
7439 CONFIG_SYS_SDIO0 7438 CONFIG_SYS_SDIO0
7440 CONFIG_SYS_SDIO0_MAX_CLK 7439 CONFIG_SYS_SDIO0_MAX_CLK
7441 CONFIG_SYS_SDIO1 7440 CONFIG_SYS_SDIO1
7442 CONFIG_SYS_SDIO1_MAX_CLK 7441 CONFIG_SYS_SDIO1_MAX_CLK
7443 CONFIG_SYS_SDIO2 7442 CONFIG_SYS_SDIO2
7444 CONFIG_SYS_SDIO2_MAX_CLK 7443 CONFIG_SYS_SDIO2_MAX_CLK
7445 CONFIG_SYS_SDIO3 7444 CONFIG_SYS_SDIO3
7446 CONFIG_SYS_SDIO3_MAX_CLK 7445 CONFIG_SYS_SDIO3_MAX_CLK
7447 CONFIG_SYS_SDIO_BASE0 7446 CONFIG_SYS_SDIO_BASE0
7448 CONFIG_SYS_SDIO_BASE1 7447 CONFIG_SYS_SDIO_BASE1
7449 CONFIG_SYS_SDIO_BASE2 7448 CONFIG_SYS_SDIO_BASE2
7450 CONFIG_SYS_SDIO_BASE3 7449 CONFIG_SYS_SDIO_BASE3
7451 CONFIG_SYS_SDMR 7450 CONFIG_SYS_SDMR
7452 CONFIG_SYS_SDRAM 7451 CONFIG_SYS_SDRAM
7453 CONFIG_SYS_SDRAM0_CFG0 7452 CONFIG_SYS_SDRAM0_CFG0
7454 CONFIG_SYS_SDRAM0_CLKTR 7453 CONFIG_SYS_SDRAM0_CLKTR
7455 CONFIG_SYS_SDRAM0_CODT 7454 CONFIG_SYS_SDRAM0_CODT
7456 CONFIG_SYS_SDRAM0_DLCR 7455 CONFIG_SYS_SDRAM0_DLCR
7457 CONFIG_SYS_SDRAM0_INITPLR0 7456 CONFIG_SYS_SDRAM0_INITPLR0
7458 CONFIG_SYS_SDRAM0_INITPLR1 7457 CONFIG_SYS_SDRAM0_INITPLR1
7459 CONFIG_SYS_SDRAM0_INITPLR10 7458 CONFIG_SYS_SDRAM0_INITPLR10
7460 CONFIG_SYS_SDRAM0_INITPLR11 7459 CONFIG_SYS_SDRAM0_INITPLR11
7461 CONFIG_SYS_SDRAM0_INITPLR12 7460 CONFIG_SYS_SDRAM0_INITPLR12
7462 CONFIG_SYS_SDRAM0_INITPLR13 7461 CONFIG_SYS_SDRAM0_INITPLR13
7463 CONFIG_SYS_SDRAM0_INITPLR14 7462 CONFIG_SYS_SDRAM0_INITPLR14
7464 CONFIG_SYS_SDRAM0_INITPLR15 7463 CONFIG_SYS_SDRAM0_INITPLR15
7465 CONFIG_SYS_SDRAM0_INITPLR2 7464 CONFIG_SYS_SDRAM0_INITPLR2
7466 CONFIG_SYS_SDRAM0_INITPLR3 7465 CONFIG_SYS_SDRAM0_INITPLR3
7467 CONFIG_SYS_SDRAM0_INITPLR4 7466 CONFIG_SYS_SDRAM0_INITPLR4
7468 CONFIG_SYS_SDRAM0_INITPLR5 7467 CONFIG_SYS_SDRAM0_INITPLR5
7469 CONFIG_SYS_SDRAM0_INITPLR6 7468 CONFIG_SYS_SDRAM0_INITPLR6
7470 CONFIG_SYS_SDRAM0_INITPLR7 7469 CONFIG_SYS_SDRAM0_INITPLR7
7471 CONFIG_SYS_SDRAM0_INITPLR8 7470 CONFIG_SYS_SDRAM0_INITPLR8
7472 CONFIG_SYS_SDRAM0_INITPLR9 7471 CONFIG_SYS_SDRAM0_INITPLR9
7473 CONFIG_SYS_SDRAM0_MB0CF 7472 CONFIG_SYS_SDRAM0_MB0CF
7474 CONFIG_SYS_SDRAM0_MB0CF_BASE 7473 CONFIG_SYS_SDRAM0_MB0CF_BASE
7475 CONFIG_SYS_SDRAM0_MB1CF 7474 CONFIG_SYS_SDRAM0_MB1CF
7476 CONFIG_SYS_SDRAM0_MB1CF_BASE 7475 CONFIG_SYS_SDRAM0_MB1CF_BASE
7477 CONFIG_SYS_SDRAM0_MB2CF 7476 CONFIG_SYS_SDRAM0_MB2CF
7478 CONFIG_SYS_SDRAM0_MB3CF 7477 CONFIG_SYS_SDRAM0_MB3CF
7479 CONFIG_SYS_SDRAM0_MCOPT1 7478 CONFIG_SYS_SDRAM0_MCOPT1
7480 CONFIG_SYS_SDRAM0_MCOPT2 7479 CONFIG_SYS_SDRAM0_MCOPT2
7481 CONFIG_SYS_SDRAM0_MEMODE 7480 CONFIG_SYS_SDRAM0_MEMODE
7482 CONFIG_SYS_SDRAM0_MMODE 7481 CONFIG_SYS_SDRAM0_MMODE
7483 CONFIG_SYS_SDRAM0_MODT0 7482 CONFIG_SYS_SDRAM0_MODT0
7484 CONFIG_SYS_SDRAM0_MODT1 7483 CONFIG_SYS_SDRAM0_MODT1
7485 CONFIG_SYS_SDRAM0_MODT2 7484 CONFIG_SYS_SDRAM0_MODT2
7486 CONFIG_SYS_SDRAM0_MODT3 7485 CONFIG_SYS_SDRAM0_MODT3
7487 CONFIG_SYS_SDRAM0_RDCC 7486 CONFIG_SYS_SDRAM0_RDCC
7488 CONFIG_SYS_SDRAM0_RFDC 7487 CONFIG_SYS_SDRAM0_RFDC
7489 CONFIG_SYS_SDRAM0_RQDC 7488 CONFIG_SYS_SDRAM0_RQDC
7490 CONFIG_SYS_SDRAM0_RTR 7489 CONFIG_SYS_SDRAM0_RTR
7491 CONFIG_SYS_SDRAM0_SDTR1 7490 CONFIG_SYS_SDRAM0_SDTR1
7492 CONFIG_SYS_SDRAM0_SDTR2 7491 CONFIG_SYS_SDRAM0_SDTR2
7493 CONFIG_SYS_SDRAM0_SDTR3 7492 CONFIG_SYS_SDRAM0_SDTR3
7494 CONFIG_SYS_SDRAM0_TR0 7493 CONFIG_SYS_SDRAM0_TR0
7495 CONFIG_SYS_SDRAM0_WDDCTR 7494 CONFIG_SYS_SDRAM0_WDDCTR
7496 CONFIG_SYS_SDRAM0_WRDTR 7495 CONFIG_SYS_SDRAM0_WRDTR
7497 CONFIG_SYS_SDRAM1 7496 CONFIG_SYS_SDRAM1
7498 CONFIG_SYS_SDRAM_BANKS 7497 CONFIG_SYS_SDRAM_BANKS
7499 CONFIG_SYS_SDRAM_BASE 7498 CONFIG_SYS_SDRAM_BASE
7500 CONFIG_SYS_SDRAM_BASE0 7499 CONFIG_SYS_SDRAM_BASE0
7501 CONFIG_SYS_SDRAM_BASE1 7500 CONFIG_SYS_SDRAM_BASE1
7502 CONFIG_SYS_SDRAM_BASE1xx 7501 CONFIG_SYS_SDRAM_BASE1xx
7503 CONFIG_SYS_SDRAM_BASE2 7502 CONFIG_SYS_SDRAM_BASE2
7504 CONFIG_SYS_SDRAM_CASL 7503 CONFIG_SYS_SDRAM_CASL
7505 CONFIG_SYS_SDRAM_CFG 7504 CONFIG_SYS_SDRAM_CFG
7506 CONFIG_SYS_SDRAM_CFG1 7505 CONFIG_SYS_SDRAM_CFG1
7507 CONFIG_SYS_SDRAM_CFG2 7506 CONFIG_SYS_SDRAM_CFG2
7508 CONFIG_SYS_SDRAM_CL 7507 CONFIG_SYS_SDRAM_CL
7509 CONFIG_SYS_SDRAM_CONF1HB 7508 CONFIG_SYS_SDRAM_CONF1HB
7510 CONFIG_SYS_SDRAM_CONF1LL 7509 CONFIG_SYS_SDRAM_CONF1LL
7511 CONFIG_SYS_SDRAM_CONFPATHB 7510 CONFIG_SYS_SDRAM_CONFPATHB
7512 CONFIG_SYS_SDRAM_CS1 7511 CONFIG_SYS_SDRAM_CS1
7513 CONFIG_SYS_SDRAM_CTP 7512 CONFIG_SYS_SDRAM_CTP
7514 CONFIG_SYS_SDRAM_CTRL 7513 CONFIG_SYS_SDRAM_CTRL
7515 CONFIG_SYS_SDRAM_DRVSTRENGTH 7514 CONFIG_SYS_SDRAM_DRVSTRENGTH
7516 CONFIG_SYS_SDRAM_DRV_STRENGTH 7515 CONFIG_SYS_SDRAM_DRV_STRENGTH
7517 CONFIG_SYS_SDRAM_EMOD 7516 CONFIG_SYS_SDRAM_EMOD
7518 CONFIG_SYS_SDRAM_END 7517 CONFIG_SYS_SDRAM_END
7519 CONFIG_SYS_SDRAM_LDF 7518 CONFIG_SYS_SDRAM_LDF
7520 CONFIG_SYS_SDRAM_LIST 7519 CONFIG_SYS_SDRAM_LIST
7521 CONFIG_SYS_SDRAM_LOWER 7520 CONFIG_SYS_SDRAM_LOWER
7522 CONFIG_SYS_SDRAM_MODE 7521 CONFIG_SYS_SDRAM_MODE
7523 CONFIG_SYS_SDRAM_PLBADDUHB 7522 CONFIG_SYS_SDRAM_PLBADDUHB
7524 CONFIG_SYS_SDRAM_PLBADDULL 7523 CONFIG_SYS_SDRAM_PLBADDULL
7525 CONFIG_SYS_SDRAM_PTA 7524 CONFIG_SYS_SDRAM_PTA
7526 CONFIG_SYS_SDRAM_R0BAS 7525 CONFIG_SYS_SDRAM_R0BAS
7527 CONFIG_SYS_SDRAM_R1BAS 7526 CONFIG_SYS_SDRAM_R1BAS
7528 CONFIG_SYS_SDRAM_R2BAS 7527 CONFIG_SYS_SDRAM_R2BAS
7529 CONFIG_SYS_SDRAM_R3BAS 7528 CONFIG_SYS_SDRAM_R3BAS
7530 CONFIG_SYS_SDRAM_RCD 7529 CONFIG_SYS_SDRAM_RCD
7531 CONFIG_SYS_SDRAM_RFTA 7530 CONFIG_SYS_SDRAM_RFTA
7532 CONFIG_SYS_SDRAM_SIZE 7531 CONFIG_SYS_SDRAM_SIZE
7533 CONFIG_SYS_SDRAM_SIZE0 7532 CONFIG_SYS_SDRAM_SIZE0
7534 CONFIG_SYS_SDRAM_SIZE1 7533 CONFIG_SYS_SDRAM_SIZE1
7535 CONFIG_SYS_SDRAM_SIZE_LAW 7534 CONFIG_SYS_SDRAM_SIZE_LAW
7536 CONFIG_SYS_SDRAM_SIZE_MB 7535 CONFIG_SYS_SDRAM_SIZE_MB
7537 CONFIG_SYS_SDRAM_TABLE 7536 CONFIG_SYS_SDRAM_TABLE
7538 CONFIG_SYS_SDRAM_UPPER 7537 CONFIG_SYS_SDRAM_UPPER
7539 CONFIG_SYS_SDRAM_VAL 7538 CONFIG_SYS_SDRAM_VAL
7540 CONFIG_SYS_SDRAM_VAL1 7539 CONFIG_SYS_SDRAM_VAL1
7541 CONFIG_SYS_SDRAM_VAL10 7540 CONFIG_SYS_SDRAM_VAL10
7542 CONFIG_SYS_SDRAM_VAL11 7541 CONFIG_SYS_SDRAM_VAL11
7543 CONFIG_SYS_SDRAM_VAL12 7542 CONFIG_SYS_SDRAM_VAL12
7544 CONFIG_SYS_SDRAM_VAL2 7543 CONFIG_SYS_SDRAM_VAL2
7545 CONFIG_SYS_SDRAM_VAL3 7544 CONFIG_SYS_SDRAM_VAL3
7546 CONFIG_SYS_SDRAM_VAL4 7545 CONFIG_SYS_SDRAM_VAL4
7547 CONFIG_SYS_SDRAM_VAL5 7546 CONFIG_SYS_SDRAM_VAL5
7548 CONFIG_SYS_SDRAM_VAL6 7547 CONFIG_SYS_SDRAM_VAL6
7549 CONFIG_SYS_SDRAM_VAL7 7548 CONFIG_SYS_SDRAM_VAL7
7550 CONFIG_SYS_SDRAM_VAL8 7549 CONFIG_SYS_SDRAM_VAL8
7551 CONFIG_SYS_SDRAM_VAL9 7550 CONFIG_SYS_SDRAM_VAL9
7552 CONFIG_SYS_SDRAM_tRC 7551 CONFIG_SYS_SDRAM_tRC
7553 CONFIG_SYS_SDRAM_tRCD 7552 CONFIG_SYS_SDRAM_tRCD
7554 CONFIG_SYS_SDRAM_tRFC 7553 CONFIG_SYS_SDRAM_tRFC
7555 CONFIG_SYS_SDRAM_tRP 7554 CONFIG_SYS_SDRAM_tRP
7556 CONFIG_SYS_SDRC_CR_VAL 7555 CONFIG_SYS_SDRC_CR_VAL
7557 CONFIG_SYS_SDRC_MDR_VAL 7556 CONFIG_SYS_SDRC_MDR_VAL
7558 CONFIG_SYS_SDRC_MR_VAL 7557 CONFIG_SYS_SDRC_MR_VAL
7559 CONFIG_SYS_SDRC_MR_VAL1 7558 CONFIG_SYS_SDRC_MR_VAL1
7560 CONFIG_SYS_SDRC_MR_VAL2 7559 CONFIG_SYS_SDRC_MR_VAL2
7561 CONFIG_SYS_SDRC_MR_VAL3 7560 CONFIG_SYS_SDRC_MR_VAL3
7562 CONFIG_SYS_SDRC_MR_VAL4 7561 CONFIG_SYS_SDRC_MR_VAL4
7563 CONFIG_SYS_SDRC_MR_VAL5 7562 CONFIG_SYS_SDRC_MR_VAL5
7564 CONFIG_SYS_SDRC_TR_VAL 7563 CONFIG_SYS_SDRC_TR_VAL
7565 CONFIG_SYS_SDRC_TR_VAL1 7564 CONFIG_SYS_SDRC_TR_VAL1
7566 CONFIG_SYS_SDRC_TR_VAL2 7565 CONFIG_SYS_SDRC_TR_VAL2
7567 CONFIG_SYS_SDSR 7566 CONFIG_SYS_SDSR
7568 CONFIG_SYS_SD_VOLTAGE 7567 CONFIG_SYS_SD_VOLTAGE
7569 CONFIG_SYS_SEC_MON_ADDR 7568 CONFIG_SYS_SEC_MON_ADDR
7570 CONFIG_SYS_SEC_MON_OFFSET 7569 CONFIG_SYS_SEC_MON_OFFSET
7571 CONFIG_SYS_SELF_RST 7570 CONFIG_SYS_SELF_RST
7572 CONFIG_SYS_SERIAL0 7571 CONFIG_SYS_SERIAL0
7573 CONFIG_SYS_SERIAL1 7572 CONFIG_SYS_SERIAL1
7574 CONFIG_SYS_SERIAL2 7573 CONFIG_SYS_SERIAL2
7575 CONFIG_SYS_SERIAL3 7574 CONFIG_SYS_SERIAL3
7576 CONFIG_SYS_SERIAL4 7575 CONFIG_SYS_SERIAL4
7577 CONFIG_SYS_SERIAL5 7576 CONFIG_SYS_SERIAL5
7578 CONFIG_SYS_SERIAL_BOOT 7577 CONFIG_SYS_SERIAL_BOOT
7579 CONFIG_SYS_SFP_ADDR 7578 CONFIG_SYS_SFP_ADDR
7580 CONFIG_SYS_SFP_OFFSET 7579 CONFIG_SYS_SFP_OFFSET
7581 CONFIG_SYS_SGMII1_PHY_ADDR 7580 CONFIG_SYS_SGMII1_PHY_ADDR
7582 CONFIG_SYS_SGMII2_PHY_ADDR 7581 CONFIG_SYS_SGMII2_PHY_ADDR
7583 CONFIG_SYS_SGMII3_PHY_ADDR 7582 CONFIG_SYS_SGMII3_PHY_ADDR
7584 CONFIG_SYS_SGMII_LINERATE_MHZ 7583 CONFIG_SYS_SGMII_LINERATE_MHZ
7585 CONFIG_SYS_SGMII_RATESCALE 7584 CONFIG_SYS_SGMII_RATESCALE
7586 CONFIG_SYS_SGMII_REFCLK_MHZ 7585 CONFIG_SYS_SGMII_REFCLK_MHZ
7587 CONFIG_SYS_SH_SDHI0_BASE 7586 CONFIG_SYS_SH_SDHI0_BASE
7588 CONFIG_SYS_SH_SDHI1_BASE 7587 CONFIG_SYS_SH_SDHI1_BASE
7589 CONFIG_SYS_SH_SDHI2_BASE 7588 CONFIG_SYS_SH_SDHI2_BASE
7590 CONFIG_SYS_SH_SDHI3_BASE 7589 CONFIG_SYS_SH_SDHI3_BASE
7591 CONFIG_SYS_SH_SDHI_NR_CHANNEL 7590 CONFIG_SYS_SH_SDHI_NR_CHANNEL
7592 CONFIG_SYS_SICRH 7591 CONFIG_SYS_SICRH
7593 CONFIG_SYS_SICRL 7592 CONFIG_SYS_SICRL
7594 CONFIG_SYS_SIL1178_I2C 7593 CONFIG_SYS_SIL1178_I2C
7595 CONFIG_SYS_SIMULATE_SPD_EEPROM 7594 CONFIG_SYS_SIMULATE_SPD_EEPROM
7596 CONFIG_SYS_SIUMCR 7595 CONFIG_SYS_SIUMCR
7597 CONFIG_SYS_SIUMCR_HIGH 7596 CONFIG_SYS_SIUMCR_HIGH
7598 CONFIG_SYS_SIUMCR_LOW 7597 CONFIG_SYS_SIUMCR_LOW
7599 CONFIG_SYS_SJA1000_BASE 7598 CONFIG_SYS_SJA1000_BASE
7600 CONFIG_SYS_SMALL_FLASH 7599 CONFIG_SYS_SMALL_FLASH
7601 CONFIG_SYS_SMC0_CYCLE0_VAL 7600 CONFIG_SYS_SMC0_CYCLE0_VAL
7602 CONFIG_SYS_SMC0_MODE0_VAL 7601 CONFIG_SYS_SMC0_MODE0_VAL
7603 CONFIG_SYS_SMC0_PULSE0_VAL 7602 CONFIG_SYS_SMC0_PULSE0_VAL
7604 CONFIG_SYS_SMC0_SETUP0_VAL 7603 CONFIG_SYS_SMC0_SETUP0_VAL
7605 CONFIG_SYS_SMC_CSR0_VAL 7604 CONFIG_SYS_SMC_CSR0_VAL
7606 CONFIG_SYS_SMC_DPMEM_OFFSET 7605 CONFIG_SYS_SMC_DPMEM_OFFSET
7607 CONFIG_SYS_SMC_RXBUFLEN 7606 CONFIG_SYS_SMC_RXBUFLEN
7608 CONFIG_SYS_SMC_UCODE_PATCH 7607 CONFIG_SYS_SMC_UCODE_PATCH
7609 CONFIG_SYS_SMI_BASE 7608 CONFIG_SYS_SMI_BASE
7610 CONFIG_SYS_SPANSION_BASE 7609 CONFIG_SYS_SPANSION_BASE
7611 CONFIG_SYS_SPANSION_BOOT 7610 CONFIG_SYS_SPANSION_BOOT
7612 CONFIG_SYS_SPC1920_PLD_BASE 7611 CONFIG_SYS_SPC1920_PLD_BASE
7613 CONFIG_SYS_SPC1920_SMC1_CLK4 7612 CONFIG_SYS_SPC1920_SMC1_CLK4
7614 CONFIG_SYS_SPCR_OPT 7613 CONFIG_SYS_SPCR_OPT
7615 CONFIG_SYS_SPCR_TSEC1EP 7614 CONFIG_SYS_SPCR_TSEC1EP
7616 CONFIG_SYS_SPCR_TSEC2EP 7615 CONFIG_SYS_SPCR_TSEC2EP
7617 CONFIG_SYS_SPCR_TSECEP 7616 CONFIG_SYS_SPCR_TSECEP
7618 CONFIG_SYS_SPD_BUS_NUM 7617 CONFIG_SYS_SPD_BUS_NUM
7619 CONFIG_SYS_SPD_MAX_DIMMS 7618 CONFIG_SYS_SPD_MAX_DIMMS
7620 CONFIG_SYS_SPI0 7619 CONFIG_SYS_SPI0
7621 CONFIG_SYS_SPI0_NUM_CS 7620 CONFIG_SYS_SPI0_NUM_CS
7622 CONFIG_SYS_SPI1 7621 CONFIG_SYS_SPI1
7623 CONFIG_SYS_SPI1_BASE 7622 CONFIG_SYS_SPI1_BASE
7624 CONFIG_SYS_SPI1_NUM_CS 7623 CONFIG_SYS_SPI1_NUM_CS
7625 CONFIG_SYS_SPI2 7624 CONFIG_SYS_SPI2
7626 CONFIG_SYS_SPI2_BASE 7625 CONFIG_SYS_SPI2_BASE
7627 CONFIG_SYS_SPI2_NUM_CS 7626 CONFIG_SYS_SPI2_NUM_CS
7628 CONFIG_SYS_SPI_ARGS_OFFS 7627 CONFIG_SYS_SPI_ARGS_OFFS
7629 CONFIG_SYS_SPI_ARGS_SIZE 7628 CONFIG_SYS_SPI_ARGS_SIZE
7630 CONFIG_SYS_SPI_BASE 7629 CONFIG_SYS_SPI_BASE
7631 CONFIG_SYS_SPI_CLK 7630 CONFIG_SYS_SPI_CLK
7632 CONFIG_SYS_SPI_CS_ACT 7631 CONFIG_SYS_SPI_CS_ACT
7633 CONFIG_SYS_SPI_CS_BASE 7632 CONFIG_SYS_SPI_CS_BASE
7634 CONFIG_SYS_SPI_CS_USED 7633 CONFIG_SYS_SPI_CS_USED
7635 CONFIG_SYS_SPI_DPMEM_OFFSET 7634 CONFIG_SYS_SPI_DPMEM_OFFSET
7636 CONFIG_SYS_SPI_FLASH_U_BOOT_DST 7635 CONFIG_SYS_SPI_FLASH_U_BOOT_DST
7637 CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS 7636 CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS
7638 CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE 7637 CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE
7639 CONFIG_SYS_SPI_FLASH_U_BOOT_START 7638 CONFIG_SYS_SPI_FLASH_U_BOOT_START
7640 CONFIG_SYS_SPI_INIT_OFFSET 7639 CONFIG_SYS_SPI_INIT_OFFSET
7641 CONFIG_SYS_SPI_KERNEL_OFFS 7640 CONFIG_SYS_SPI_KERNEL_OFFS
7642 CONFIG_SYS_SPI_MXC_WAIT 7641 CONFIG_SYS_SPI_MXC_WAIT
7643 CONFIG_SYS_SPI_RTC_DEVID 7642 CONFIG_SYS_SPI_RTC_DEVID
7644 CONFIG_SYS_SPI_ST_ENABLE_WP_PIN 7643 CONFIG_SYS_SPI_ST_ENABLE_WP_PIN
7645 CONFIG_SYS_SPI_UCODE_PATCH 7644 CONFIG_SYS_SPI_UCODE_PATCH
7646 CONFIG_SYS_SPI_U_BOOT_OFFS 7645 CONFIG_SYS_SPI_U_BOOT_OFFS
7647 CONFIG_SYS_SPI_U_BOOT_SIZE 7646 CONFIG_SYS_SPI_U_BOOT_SIZE
7648 CONFIG_SYS_SPI_WRITE_TOUT 7647 CONFIG_SYS_SPI_WRITE_TOUT
7649 CONFIG_SYS_SPL_ARGS_ADDR 7648 CONFIG_SYS_SPL_ARGS_ADDR
7650 CONFIG_SYS_SPL_LEN 7649 CONFIG_SYS_SPL_LEN
7651 CONFIG_SYS_SPL_MALLOC_SIZE 7650 CONFIG_SYS_SPL_MALLOC_SIZE
7652 CONFIG_SYS_SPL_MALLOC_START 7651 CONFIG_SYS_SPL_MALLOC_START
7653 CONFIG_SYS_SPL_MAX_LEN 7652 CONFIG_SYS_SPL_MAX_LEN
7654 CONFIG_SYS_SPR 7653 CONFIG_SYS_SPR
7655 CONFIG_SYS_SRAM_BASE 7654 CONFIG_SYS_SRAM_BASE
7656 CONFIG_SYS_SRAM_END 7655 CONFIG_SYS_SRAM_END
7657 CONFIG_SYS_SRAM_SIZE 7656 CONFIG_SYS_SRAM_SIZE
7658 CONFIG_SYS_SRAM_START 7657 CONFIG_SYS_SRAM_START
7659 CONFIG_SYS_SRGPL0_CFG_BAR 7658 CONFIG_SYS_SRGPL0_CFG_BAR
7660 CONFIG_SYS_SRGPL0_MNT_BAR 7659 CONFIG_SYS_SRGPL0_MNT_BAR
7661 CONFIG_SYS_SRGPL0_MSG_BAR 7660 CONFIG_SYS_SRGPL0_MSG_BAR
7662 CONFIG_SYS_SRGPL0_REG_BAR 7661 CONFIG_SYS_SRGPL0_REG_BAR
7663 CONFIG_SYS_SRIO 7662 CONFIG_SYS_SRIO
7664 CONFIG_SYS_SRIO1_MEM_BASE 7663 CONFIG_SYS_SRIO1_MEM_BASE
7665 CONFIG_SYS_SRIO1_MEM_BUS 7664 CONFIG_SYS_SRIO1_MEM_BUS
7666 CONFIG_SYS_SRIO1_MEM_PHYS 7665 CONFIG_SYS_SRIO1_MEM_PHYS
7667 CONFIG_SYS_SRIO1_MEM_PHYS_HIGH 7666 CONFIG_SYS_SRIO1_MEM_PHYS_HIGH
7668 CONFIG_SYS_SRIO1_MEM_PHYS_LOW 7667 CONFIG_SYS_SRIO1_MEM_PHYS_LOW
7669 CONFIG_SYS_SRIO1_MEM_SIZE 7668 CONFIG_SYS_SRIO1_MEM_SIZE
7670 CONFIG_SYS_SRIO1_MEM_VIRT 7669 CONFIG_SYS_SRIO1_MEM_VIRT
7671 CONFIG_SYS_SRIO2_MEM_PHYS 7670 CONFIG_SYS_SRIO2_MEM_PHYS
7672 CONFIG_SYS_SRIO2_MEM_SIZE 7671 CONFIG_SYS_SRIO2_MEM_SIZE
7673 CONFIG_SYS_SRIO2_MEM_VIRT 7672 CONFIG_SYS_SRIO2_MEM_VIRT
7674 CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR 7673 CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR
7675 CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR_PHYS 7674 CONFIG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR_PHYS
7676 CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR 7675 CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR
7677 CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR_PHYS 7676 CONFIG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR_PHYS
7678 CONFIG_SYS_SSD_BASE 7677 CONFIG_SYS_SSD_BASE
7679 CONFIG_SYS_SSD_BASE_PHYS 7678 CONFIG_SYS_SSD_BASE_PHYS
7680 CONFIG_SYS_SSP_PORT 7679 CONFIG_SYS_SSP_PORT
7681 CONFIG_SYS_SST_SECT 7680 CONFIG_SYS_SST_SECT
7682 CONFIG_SYS_SST_SECTSZ 7681 CONFIG_SYS_SST_SECTSZ
7683 CONFIG_SYS_STACKSIZE 7682 CONFIG_SYS_STACKSIZE
7684 CONFIG_SYS_STACK_LENGTH 7683 CONFIG_SYS_STACK_LENGTH
7685 CONFIG_SYS_STACK_SIZE 7684 CONFIG_SYS_STACK_SIZE
7686 CONFIG_SYS_STATUS_C 7685 CONFIG_SYS_STATUS_C
7687 CONFIG_SYS_STATUS_OK 7686 CONFIG_SYS_STATUS_OK
7688 CONFIG_SYS_STDIO_DEREGISTER 7687 CONFIG_SYS_STDIO_DEREGISTER
7689 CONFIG_SYS_STMICRO_BOOT 7688 CONFIG_SYS_STMICRO_BOOT
7690 CONFIG_SYS_SUPPORT_64BIT_DATA 7689 CONFIG_SYS_SUPPORT_64BIT_DATA
7691 CONFIG_SYS_SXCNFG_VAL 7690 CONFIG_SYS_SXCNFG_VAL
7692 CONFIG_SYS_SYPCR 7691 CONFIG_SYS_SYPCR
7693 CONFIG_SYS_SYSTEMACE_BASE 7692 CONFIG_SYS_SYSTEMACE_BASE
7694 CONFIG_SYS_SYSTEMACE_WIDTH 7693 CONFIG_SYS_SYSTEMACE_WIDTH
7695 CONFIG_SYS_TBIPA_VALUE 7694 CONFIG_SYS_TBIPA_VALUE
7696 CONFIG_SYS_TBSCR 7695 CONFIG_SYS_TBSCR
7697 CONFIG_SYS_TCLK 7696 CONFIG_SYS_TCLK
7698 CONFIG_SYS_TEMP_STACK_OCM 7697 CONFIG_SYS_TEMP_STACK_OCM
7699 CONFIG_SYS_TEXT_ADDR 7698 CONFIG_SYS_TEXT_ADDR
7700 CONFIG_SYS_TEXT_BASE_NOR 7699 CONFIG_SYS_TEXT_BASE_NOR
7701 CONFIG_SYS_TEXT_BASE_SPL 7700 CONFIG_SYS_TEXT_BASE_SPL
7702 CONFIG_SYS_TFP410_ADDR 7701 CONFIG_SYS_TFP410_ADDR
7703 CONFIG_SYS_TFP410_BUS 7702 CONFIG_SYS_TFP410_BUS
7704 CONFIG_SYS_THUMB_BUILD 7703 CONFIG_SYS_THUMB_BUILD
7705 CONFIG_SYS_TIMERBASE 7704 CONFIG_SYS_TIMERBASE
7706 CONFIG_SYS_TIMER_BASE 7705 CONFIG_SYS_TIMER_BASE
7707 CONFIG_SYS_TIMER_COUNTER 7706 CONFIG_SYS_TIMER_COUNTER
7708 CONFIG_SYS_TIMER_COUNTS_DOWN 7707 CONFIG_SYS_TIMER_COUNTS_DOWN
7709 CONFIG_SYS_TIMER_PRESCALER 7708 CONFIG_SYS_TIMER_PRESCALER
7710 CONFIG_SYS_TIMER_RATE 7709 CONFIG_SYS_TIMER_RATE
7711 CONFIG_SYS_TLB_FOR_BOOT_FLASH 7710 CONFIG_SYS_TLB_FOR_BOOT_FLASH
7712 CONFIG_SYS_TMCNTSC 7711 CONFIG_SYS_TMCNTSC
7713 CONFIG_SYS_TMPVIRT 7712 CONFIG_SYS_TMPVIRT
7714 CONFIG_SYS_TMRINTR_MASK 7713 CONFIG_SYS_TMRINTR_MASK
7715 CONFIG_SYS_TMRINTR_NO 7714 CONFIG_SYS_TMRINTR_NO
7716 CONFIG_SYS_TMRINTR_PEND 7715 CONFIG_SYS_TMRINTR_PEND
7717 CONFIG_SYS_TMRINTR_PRI 7716 CONFIG_SYS_TMRINTR_PRI
7718 CONFIG_SYS_TMRPND_REG 7717 CONFIG_SYS_TMRPND_REG
7719 CONFIG_SYS_TMR_BASE 7718 CONFIG_SYS_TMR_BASE
7720 CONFIG_SYS_TMU_CLK_DIV 7719 CONFIG_SYS_TMU_CLK_DIV
7721 CONFIG_SYS_TSEC1 7720 CONFIG_SYS_TSEC1
7722 CONFIG_SYS_TSEC1_OFFSET 7721 CONFIG_SYS_TSEC1_OFFSET
7723 CONFIG_SYS_TSEC2 7722 CONFIG_SYS_TSEC2
7724 CONFIG_SYS_TSEC2_OFFSET 7723 CONFIG_SYS_TSEC2_OFFSET
7725 CONFIG_SYS_TSEC3_OFFSET 7724 CONFIG_SYS_TSEC3_OFFSET
7726 CONFIG_SYS_TX_ETH_BUFFER 7725 CONFIG_SYS_TX_ETH_BUFFER
7727 CONFIG_SYS_UART1_ALT1_GPIO 7726 CONFIG_SYS_UART1_ALT1_GPIO
7728 CONFIG_SYS_UART1_PRI_GPIO 7727 CONFIG_SYS_UART1_PRI_GPIO
7729 CONFIG_SYS_UART2_ALT1_GPIO 7728 CONFIG_SYS_UART2_ALT1_GPIO
7730 CONFIG_SYS_UART2_ALT3_GPIO 7729 CONFIG_SYS_UART2_ALT3_GPIO
7731 CONFIG_SYS_UART2_PRI_GPIO 7730 CONFIG_SYS_UART2_PRI_GPIO
7732 CONFIG_SYS_UART_BASE 7731 CONFIG_SYS_UART_BASE
7733 CONFIG_SYS_UART_BAUD 7732 CONFIG_SYS_UART_BAUD
7734 CONFIG_SYS_UART_FREQ 7733 CONFIG_SYS_UART_FREQ
7735 CONFIG_SYS_UART_PORT 7734 CONFIG_SYS_UART_PORT
7736 CONFIG_SYS_UBOOT_BASE 7735 CONFIG_SYS_UBOOT_BASE
7737 CONFIG_SYS_UBOOT_END 7736 CONFIG_SYS_UBOOT_END
7738 CONFIG_SYS_UBOOT_START 7737 CONFIG_SYS_UBOOT_START
7739 CONFIG_SYS_UCC_RGMII_MODE 7738 CONFIG_SYS_UCC_RGMII_MODE
7740 CONFIG_SYS_UCC_RMII_MODE 7739 CONFIG_SYS_UCC_RMII_MODE
7741 CONFIG_SYS_UDELAY_BASE 7740 CONFIG_SYS_UDELAY_BASE
7742 CONFIG_SYS_UEC 7741 CONFIG_SYS_UEC
7743 CONFIG_SYS_UEC1_ETH_TYPE 7742 CONFIG_SYS_UEC1_ETH_TYPE
7744 CONFIG_SYS_UEC1_INTERFACE_SPEED 7743 CONFIG_SYS_UEC1_INTERFACE_SPEED
7745 CONFIG_SYS_UEC1_INTERFACE_TYPE 7744 CONFIG_SYS_UEC1_INTERFACE_TYPE
7746 CONFIG_SYS_UEC1_PHY_ADDR 7745 CONFIG_SYS_UEC1_PHY_ADDR
7747 CONFIG_SYS_UEC1_RX_CLK 7746 CONFIG_SYS_UEC1_RX_CLK
7748 CONFIG_SYS_UEC1_TX_CLK 7747 CONFIG_SYS_UEC1_TX_CLK
7749 CONFIG_SYS_UEC1_UCC_NUM 7748 CONFIG_SYS_UEC1_UCC_NUM
7750 CONFIG_SYS_UEC2_ETH_TYPE 7749 CONFIG_SYS_UEC2_ETH_TYPE
7751 CONFIG_SYS_UEC2_INTERFACE_SPEED 7750 CONFIG_SYS_UEC2_INTERFACE_SPEED
7752 CONFIG_SYS_UEC2_INTERFACE_TYPE 7751 CONFIG_SYS_UEC2_INTERFACE_TYPE
7753 CONFIG_SYS_UEC2_PHY_ADDR 7752 CONFIG_SYS_UEC2_PHY_ADDR
7754 CONFIG_SYS_UEC2_RX_CLK 7753 CONFIG_SYS_UEC2_RX_CLK
7755 CONFIG_SYS_UEC2_TX_CLK 7754 CONFIG_SYS_UEC2_TX_CLK
7756 CONFIG_SYS_UEC2_UCC_NUM 7755 CONFIG_SYS_UEC2_UCC_NUM
7757 CONFIG_SYS_UEC3_ETH_TYPE 7756 CONFIG_SYS_UEC3_ETH_TYPE
7758 CONFIG_SYS_UEC3_INTERFACE_SPEED 7757 CONFIG_SYS_UEC3_INTERFACE_SPEED
7759 CONFIG_SYS_UEC3_INTERFACE_TYPE 7758 CONFIG_SYS_UEC3_INTERFACE_TYPE
7760 CONFIG_SYS_UEC3_PHY_ADDR 7759 CONFIG_SYS_UEC3_PHY_ADDR
7761 CONFIG_SYS_UEC3_RX_CLK 7760 CONFIG_SYS_UEC3_RX_CLK
7762 CONFIG_SYS_UEC3_TX_CLK 7761 CONFIG_SYS_UEC3_TX_CLK
7763 CONFIG_SYS_UEC3_UCC_NUM 7762 CONFIG_SYS_UEC3_UCC_NUM
7764 CONFIG_SYS_UEC4_ETH_TYPE 7763 CONFIG_SYS_UEC4_ETH_TYPE
7765 CONFIG_SYS_UEC4_INTERFACE_SPEED 7764 CONFIG_SYS_UEC4_INTERFACE_SPEED
7766 CONFIG_SYS_UEC4_INTERFACE_TYPE 7765 CONFIG_SYS_UEC4_INTERFACE_TYPE
7767 CONFIG_SYS_UEC4_PHY_ADDR 7766 CONFIG_SYS_UEC4_PHY_ADDR
7768 CONFIG_SYS_UEC4_RX_CLK 7767 CONFIG_SYS_UEC4_RX_CLK
7769 CONFIG_SYS_UEC4_TX_CLK 7768 CONFIG_SYS_UEC4_TX_CLK
7770 CONFIG_SYS_UEC4_UCC_NUM 7769 CONFIG_SYS_UEC4_UCC_NUM
7771 CONFIG_SYS_UEC5_ETH_TYPE 7770 CONFIG_SYS_UEC5_ETH_TYPE
7772 CONFIG_SYS_UEC5_INTERFACE_SPEED 7771 CONFIG_SYS_UEC5_INTERFACE_SPEED
7773 CONFIG_SYS_UEC5_INTERFACE_TYPE 7772 CONFIG_SYS_UEC5_INTERFACE_TYPE
7774 CONFIG_SYS_UEC5_PHY_ADDR 7773 CONFIG_SYS_UEC5_PHY_ADDR
7775 CONFIG_SYS_UEC5_RX_CLK 7774 CONFIG_SYS_UEC5_RX_CLK
7776 CONFIG_SYS_UEC5_TX_CLK 7775 CONFIG_SYS_UEC5_TX_CLK
7777 CONFIG_SYS_UEC5_UCC_NUM 7776 CONFIG_SYS_UEC5_UCC_NUM
7778 CONFIG_SYS_UEC6_ETH_TYPE 7777 CONFIG_SYS_UEC6_ETH_TYPE
7779 CONFIG_SYS_UEC6_INTERFACE_SPEED 7778 CONFIG_SYS_UEC6_INTERFACE_SPEED
7780 CONFIG_SYS_UEC6_INTERFACE_TYPE 7779 CONFIG_SYS_UEC6_INTERFACE_TYPE
7781 CONFIG_SYS_UEC6_PHY_ADDR 7780 CONFIG_SYS_UEC6_PHY_ADDR
7782 CONFIG_SYS_UEC6_RX_CLK 7781 CONFIG_SYS_UEC6_RX_CLK
7783 CONFIG_SYS_UEC6_TX_CLK 7782 CONFIG_SYS_UEC6_TX_CLK
7784 CONFIG_SYS_UEC6_UCC_NUM 7783 CONFIG_SYS_UEC6_UCC_NUM
7785 CONFIG_SYS_UEC8_ETH_TYPE 7784 CONFIG_SYS_UEC8_ETH_TYPE
7786 CONFIG_SYS_UEC8_INTERFACE_SPEED 7785 CONFIG_SYS_UEC8_INTERFACE_SPEED
7787 CONFIG_SYS_UEC8_INTERFACE_TYPE 7786 CONFIG_SYS_UEC8_INTERFACE_TYPE
7788 CONFIG_SYS_UEC8_PHY_ADDR 7787 CONFIG_SYS_UEC8_PHY_ADDR
7789 CONFIG_SYS_UEC8_RX_CLK 7788 CONFIG_SYS_UEC8_RX_CLK
7790 CONFIG_SYS_UEC8_TX_CLK 7789 CONFIG_SYS_UEC8_TX_CLK
7791 CONFIG_SYS_UEC8_UCC_NUM 7790 CONFIG_SYS_UEC8_UCC_NUM
7792 CONFIG_SYS_UECx_PHY_ADDR 7791 CONFIG_SYS_UECx_PHY_ADDR
7793 CONFIG_SYS_UHC0_EHCI_BASE 7792 CONFIG_SYS_UHC0_EHCI_BASE
7794 CONFIG_SYS_UHC1_EHCI_BASE 7793 CONFIG_SYS_UHC1_EHCI_BASE
7795 CONFIG_SYS_ULB_CLK 7794 CONFIG_SYS_ULB_CLK
7796 CONFIG_SYS_UMCR 7795 CONFIG_SYS_UMCR
7797 CONFIG_SYS_UNIFY_CACHE 7796 CONFIG_SYS_UNIFY_CACHE
7798 CONFIG_SYS_UNSPEC_PHYID 7797 CONFIG_SYS_UNSPEC_PHYID
7799 CONFIG_SYS_UNSPEC_STRID 7798 CONFIG_SYS_UNSPEC_STRID
7800 CONFIG_SYS_UPDATE_FLASH_SIZE 7799 CONFIG_SYS_UPDATE_FLASH_SIZE
7801 CONFIG_SYS_USB2D0_BASE 7800 CONFIG_SYS_USB2D0_BASE
7802 CONFIG_SYS_USBCTRL 7801 CONFIG_SYS_USBCTRL
7803 CONFIG_SYS_USBD_BASE 7802 CONFIG_SYS_USBD_BASE
7804 CONFIG_SYS_USB_BRGCLK 7803 CONFIG_SYS_USB_BRGCLK
7805 CONFIG_SYS_USB_DEVICE 7804 CONFIG_SYS_USB_DEVICE
7806 CONFIG_SYS_USB_EHCI_CPU_INIT 7805 CONFIG_SYS_USB_EHCI_CPU_INIT
7807 CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 7806 CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS
7808 CONFIG_SYS_USB_EHCI_REGS_BASE 7807 CONFIG_SYS_USB_EHCI_REGS_BASE
7809 CONFIG_SYS_USB_EVENT_POLL 7808 CONFIG_SYS_USB_EVENT_POLL
7810 CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP 7809 CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP
7811 CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE 7810 CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE
7812 CONFIG_SYS_USB_FAT_BOOT_PARTITION 7811 CONFIG_SYS_USB_FAT_BOOT_PARTITION
7813 CONFIG_SYS_USB_HOST 7812 CONFIG_SYS_USB_HOST
7814 CONFIG_SYS_USB_OHCI_BOARD_INIT 7813 CONFIG_SYS_USB_OHCI_BOARD_INIT
7815 CONFIG_SYS_USB_OHCI_CPU_INIT 7814 CONFIG_SYS_USB_OHCI_CPU_INIT
7816 CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 7815 CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS
7817 CONFIG_SYS_USB_OHCI_REGS_BASE 7816 CONFIG_SYS_USB_OHCI_REGS_BASE
7818 CONFIG_SYS_USB_OHCI_SLOT_NAME 7817 CONFIG_SYS_USB_OHCI_SLOT_NAME
7819 CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 7818 CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS
7820 CONFIG_SYS_USER_SWITCHES_BASE 7819 CONFIG_SYS_USER_SWITCHES_BASE
7821 CONFIG_SYS_USE_BOOT_NORFLASH 7820 CONFIG_SYS_USE_BOOT_NORFLASH
7822 CONFIG_SYS_USE_DATAFLASH 7821 CONFIG_SYS_USE_DATAFLASH
7823 CONFIG_SYS_USE_DATAFLASH_CS0 7822 CONFIG_SYS_USE_DATAFLASH_CS0
7824 CONFIG_SYS_USE_DATAFLASH_CS1 7823 CONFIG_SYS_USE_DATAFLASH_CS1
7825 CONFIG_SYS_USE_DATAFLASH_CS3 7824 CONFIG_SYS_USE_DATAFLASH_CS3
7826 CONFIG_SYS_USE_DSPLINK 7825 CONFIG_SYS_USE_DSPLINK
7827 CONFIG_SYS_USE_FLASH 7826 CONFIG_SYS_USE_FLASH
7828 CONFIG_SYS_USE_MAIN_OSCILLATOR 7827 CONFIG_SYS_USE_MAIN_OSCILLATOR
7829 CONFIG_SYS_USE_MMC 7828 CONFIG_SYS_USE_MMC
7830 CONFIG_SYS_USE_MPC834XSYS_USB_PHY 7829 CONFIG_SYS_USE_MPC834XSYS_USB_PHY
7831 CONFIG_SYS_USE_NAND 7830 CONFIG_SYS_USE_NAND
7832 CONFIG_SYS_USE_NANDFLASH 7831 CONFIG_SYS_USE_NANDFLASH
7833 CONFIG_SYS_USE_NOR 7832 CONFIG_SYS_USE_NOR
7834 CONFIG_SYS_USE_NORFLASH 7833 CONFIG_SYS_USE_NORFLASH
7835 CONFIG_SYS_USE_PPCENV 7834 CONFIG_SYS_USE_PPCENV
7836 CONFIG_SYS_USE_SERIALFLASH 7835 CONFIG_SYS_USE_SERIALFLASH
7837 CONFIG_SYS_USE_SPIFLASH 7836 CONFIG_SYS_USE_SPIFLASH
7838 CONFIG_SYS_USE_UBI 7837 CONFIG_SYS_USE_UBI
7839 CONFIG_SYS_USR_EXCEP 7838 CONFIG_SYS_USR_EXCEP
7840 CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 7839 CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS
7841 CONFIG_SYS_U_BOOT_OFFS 7840 CONFIG_SYS_U_BOOT_OFFS
7842 CONFIG_SYS_VA_BITS 7841 CONFIG_SYS_VA_BITS
7843 CONFIG_SYS_VCXK_ACKNOWLEDGE_DDR 7842 CONFIG_SYS_VCXK_ACKNOWLEDGE_DDR
7844 CONFIG_SYS_VCXK_ACKNOWLEDGE_PIN 7843 CONFIG_SYS_VCXK_ACKNOWLEDGE_PIN
7845 CONFIG_SYS_VCXK_ACKNOWLEDGE_PORT 7844 CONFIG_SYS_VCXK_ACKNOWLEDGE_PORT
7846 CONFIG_SYS_VCXK_AUTODETECT 7845 CONFIG_SYS_VCXK_AUTODETECT
7847 CONFIG_SYS_VCXK_BASE 7846 CONFIG_SYS_VCXK_BASE
7848 CONFIG_SYS_VCXK_DEFAULT_LINEALIGN 7847 CONFIG_SYS_VCXK_DEFAULT_LINEALIGN
7849 CONFIG_SYS_VCXK_DOUBLEBUFFERED 7848 CONFIG_SYS_VCXK_DOUBLEBUFFERED
7850 CONFIG_SYS_VCXK_ENABLE_DDR 7849 CONFIG_SYS_VCXK_ENABLE_DDR
7851 CONFIG_SYS_VCXK_ENABLE_PIN 7850 CONFIG_SYS_VCXK_ENABLE_PIN
7852 CONFIG_SYS_VCXK_ENABLE_PORT 7851 CONFIG_SYS_VCXK_ENABLE_PORT
7853 CONFIG_SYS_VCXK_INVERT_DDR 7852 CONFIG_SYS_VCXK_INVERT_DDR
7854 CONFIG_SYS_VCXK_INVERT_PIN 7853 CONFIG_SYS_VCXK_INVERT_PIN
7855 CONFIG_SYS_VCXK_INVERT_PORT 7854 CONFIG_SYS_VCXK_INVERT_PORT
7856 CONFIG_SYS_VCXK_REQUEST_DDR 7855 CONFIG_SYS_VCXK_REQUEST_DDR
7857 CONFIG_SYS_VCXK_REQUEST_PIN 7856 CONFIG_SYS_VCXK_REQUEST_PIN
7858 CONFIG_SYS_VCXK_REQUEST_PORT 7857 CONFIG_SYS_VCXK_REQUEST_PORT
7859 CONFIG_SYS_VCXK_RESET_DDR 7858 CONFIG_SYS_VCXK_RESET_DDR
7860 CONFIG_SYS_VCXK_RESET_PIN 7859 CONFIG_SYS_VCXK_RESET_PIN
7861 CONFIG_SYS_VCXK_RESET_PORT 7860 CONFIG_SYS_VCXK_RESET_PORT
7862 CONFIG_SYS_VGA_RAM_EN 7861 CONFIG_SYS_VGA_RAM_EN
7863 CONFIG_SYS_VIDEO 7862 CONFIG_SYS_VIDEO
7864 CONFIG_SYS_VIDEO_LOGO_MAX_SIZE 7863 CONFIG_SYS_VIDEO_LOGO_MAX_SIZE
7865 CONFIG_SYS_VPC3_BASE 7864 CONFIG_SYS_VPC3_BASE
7866 CONFIG_SYS_VPC3_SIZE 7865 CONFIG_SYS_VPC3_SIZE
7867 CONFIG_SYS_VSC7385_BASE 7866 CONFIG_SYS_VSC7385_BASE
7868 CONFIG_SYS_VSC7385_BASE_PHYS 7867 CONFIG_SYS_VSC7385_BASE_PHYS
7869 CONFIG_SYS_VSC7385_BR_PRELIM 7868 CONFIG_SYS_VSC7385_BR_PRELIM
7870 CONFIG_SYS_VSC7385_OR_PRELIM 7869 CONFIG_SYS_VSC7385_OR_PRELIM
7871 CONFIG_SYS_VSC7385_SIZE 7870 CONFIG_SYS_VSC7385_SIZE
7872 CONFIG_SYS_VSC8601_SKEWFIX 7871 CONFIG_SYS_VSC8601_SKEWFIX
7873 CONFIG_SYS_VXWORKS_MAC_PTR 7872 CONFIG_SYS_VXWORKS_MAC_PTR
7874 CONFIG_SYS_WATCHDOG_FLAGS_ADDR 7873 CONFIG_SYS_WATCHDOG_FLAGS_ADDR
7875 CONFIG_SYS_WATCHDOG_FREQ 7874 CONFIG_SYS_WATCHDOG_FREQ
7876 CONFIG_SYS_WATCHDOG_MAGIC 7875 CONFIG_SYS_WATCHDOG_MAGIC
7877 CONFIG_SYS_WATCHDOG_MAGIC_MASK 7876 CONFIG_SYS_WATCHDOG_MAGIC_MASK
7878 CONFIG_SYS_WATCHDOG_TIME_ADDR 7877 CONFIG_SYS_WATCHDOG_TIME_ADDR
7879 CONFIG_SYS_WATCHDOG_VALUE 7878 CONFIG_SYS_WATCHDOG_VALUE
7880 CONFIG_SYS_WDTC_WDMR_VAL 7879 CONFIG_SYS_WDTC_WDMR_VAL
7881 CONFIG_SYS_WDTTIMERBASE 7880 CONFIG_SYS_WDTTIMERBASE
7882 CONFIG_SYS_WDT_PERIOD_HIGH 7881 CONFIG_SYS_WDT_PERIOD_HIGH
7883 CONFIG_SYS_WDT_PERIOD_LOW 7882 CONFIG_SYS_WDT_PERIOD_LOW
7884 CONFIG_SYS_WHITE_ON_BLACK 7883 CONFIG_SYS_WHITE_ON_BLACK
7885 CONFIG_SYS_WINDOW1_BASE 7884 CONFIG_SYS_WINDOW1_BASE
7886 CONFIG_SYS_WRITE_SWAPPED_DATA 7885 CONFIG_SYS_WRITE_SWAPPED_DATA
7887 CONFIG_SYS_XHCI_USB1_ADDR 7886 CONFIG_SYS_XHCI_USB1_ADDR
7888 CONFIG_SYS_XHCI_USB2_ADDR 7887 CONFIG_SYS_XHCI_USB2_ADDR
7889 CONFIG_SYS_XHCI_USB3_ADDR 7888 CONFIG_SYS_XHCI_USB3_ADDR
7890 CONFIG_SYS_XILINX_SPI_LIST 7889 CONFIG_SYS_XILINX_SPI_LIST
7891 CONFIG_SYS_XIMG_LEN 7890 CONFIG_SYS_XIMG_LEN
7892 CONFIG_SYS_XLB_PIPELINING 7891 CONFIG_SYS_XLB_PIPELINING
7893 CONFIG_SYS_XSVF_DEFAULT_ADDR 7892 CONFIG_SYS_XSVF_DEFAULT_ADDR
7894 CONFIG_SYS_XWAY_EBU_BOOTCFG 7893 CONFIG_SYS_XWAY_EBU_BOOTCFG
7895 CONFIG_SYS_ZYNQ_QSPI_WAIT 7894 CONFIG_SYS_ZYNQ_QSPI_WAIT
7896 CONFIG_SYS_ZYNQ_SPI_WAIT 7895 CONFIG_SYS_ZYNQ_SPI_WAIT
7897 CONFIG_SYS_i2C_FSL 7896 CONFIG_SYS_i2C_FSL
7898 CONFIG_T1023RDB 7897 CONFIG_T1023RDB
7899 CONFIG_T1024RDB 7898 CONFIG_T1024RDB
7900 CONFIG_T1040D4RDB 7899 CONFIG_T1040D4RDB
7901 CONFIG_T1040QDS 7900 CONFIG_T1040QDS
7902 CONFIG_T1040RDB 7901 CONFIG_T1040RDB
7903 CONFIG_T1042D4RDB 7902 CONFIG_T1042D4RDB
7904 CONFIG_T1042RDB 7903 CONFIG_T1042RDB
7905 CONFIG_T1042RDB_PI 7904 CONFIG_T1042RDB_PI
7906 CONFIG_T104XD4RDB 7905 CONFIG_T104XD4RDB
7907 CONFIG_T104xRDB 7906 CONFIG_T104xRDB
7908 CONFIG_T2080QDS 7907 CONFIG_T2080QDS
7909 CONFIG_T2080RDB 7908 CONFIG_T2080RDB
7910 CONFIG_T2081QDS 7909 CONFIG_T2081QDS
7911 CONFIG_T4240QDS 7910 CONFIG_T4240QDS
7912 CONFIG_T4240RDB 7911 CONFIG_T4240RDB
7913 CONFIG_TAM3517_SETTINGS 7912 CONFIG_TAM3517_SETTINGS
7914 CONFIG_TAM3517_SW3_SETTINGS 7913 CONFIG_TAM3517_SW3_SETTINGS
7915 CONFIG_TCA642X 7914 CONFIG_TCA642X
7916 CONFIG_TEGRA_BOARD_STRING 7915 CONFIG_TEGRA_BOARD_STRING
7917 CONFIG_TEGRA_CLOCK_SCALING 7916 CONFIG_TEGRA_CLOCK_SCALING
7918 CONFIG_TEGRA_ENABLE_UARTA 7917 CONFIG_TEGRA_ENABLE_UARTA
7919 CONFIG_TEGRA_ENABLE_UARTB 7918 CONFIG_TEGRA_ENABLE_UARTB
7920 CONFIG_TEGRA_ENABLE_UARTC 7919 CONFIG_TEGRA_ENABLE_UARTC
7921 CONFIG_TEGRA_ENABLE_UARTD 7920 CONFIG_TEGRA_ENABLE_UARTD
7922 CONFIG_TEGRA_ENABLE_UARTE 7921 CONFIG_TEGRA_ENABLE_UARTE
7923 CONFIG_TEGRA_GPU 7922 CONFIG_TEGRA_GPU
7924 CONFIG_TEGRA_KEYBOARD 7923 CONFIG_TEGRA_KEYBOARD
7925 CONFIG_TEGRA_LP0 7924 CONFIG_TEGRA_LP0
7926 CONFIG_TEGRA_MMC 7925 CONFIG_TEGRA_MMC
7927 CONFIG_TEGRA_NAND 7926 CONFIG_TEGRA_NAND
7928 CONFIG_TEGRA_PMU 7927 CONFIG_TEGRA_PMU
7929 CONFIG_TEGRA_SLINK_CTRLS 7928 CONFIG_TEGRA_SLINK_CTRLS
7930 CONFIG_TEGRA_SPI 7929 CONFIG_TEGRA_SPI
7931 CONFIG_TEGRA_UARTA_GPU 7930 CONFIG_TEGRA_UARTA_GPU
7932 CONFIG_TEGRA_UARTA_SDIO1 7931 CONFIG_TEGRA_UARTA_SDIO1
7933 CONFIG_TEGRA_UARTA_UAA_UAB 7932 CONFIG_TEGRA_UARTA_UAA_UAB
7934 CONFIG_TEGRA_VDD_CORE_TPS62361B_SET3 7933 CONFIG_TEGRA_VDD_CORE_TPS62361B_SET3
7935 CONFIG_TEGRA_VDD_CORE_TPS62366A_SET1 7934 CONFIG_TEGRA_VDD_CORE_TPS62366A_SET1
7936 CONFIG_TESTPIN_MASK 7935 CONFIG_TESTPIN_MASK
7937 CONFIG_TESTPIN_REG 7936 CONFIG_TESTPIN_REG
7938 CONFIG_TEST_LIST_SORT 7937 CONFIG_TEST_LIST_SORT
7939 CONFIG_TFP410_I2C_ADDR 7938 CONFIG_TFP410_I2C_ADDR
7940 CONFIG_TFTP_BLOCKSIZE 7939 CONFIG_TFTP_BLOCKSIZE
7941 CONFIG_TFTP_FILE_NAME_MAX_LEN 7940 CONFIG_TFTP_FILE_NAME_MAX_LEN
7942 CONFIG_TFTP_PORT 7941 CONFIG_TFTP_PORT
7943 CONFIG_TFTP_TSIZE 7942 CONFIG_TFTP_TSIZE
7944 CONFIG_THOR_RESET_OFF 7943 CONFIG_THOR_RESET_OFF
7945 CONFIG_THUMB2_KERNEL 7944 CONFIG_THUMB2_KERNEL
7946 CONFIG_THUNDERX 7945 CONFIG_THUNDERX
7947 CONFIG_TI814X 7946 CONFIG_TI814X
7948 CONFIG_TI816X 7947 CONFIG_TI816X
7949 CONFIG_TI816X_DDR_PLL_796 7948 CONFIG_TI816X_DDR_PLL_796
7950 CONFIG_TI816X_EVM_DDR2 7949 CONFIG_TI816X_EVM_DDR2
7951 CONFIG_TI816X_EVM_DDR3 7950 CONFIG_TI816X_EVM_DDR3
7952 CONFIG_TI816X_USE_EMIF0 7951 CONFIG_TI816X_USE_EMIF0
7953 CONFIG_TI816X_USE_EMIF1 7952 CONFIG_TI816X_USE_EMIF1
7954 CONFIG_TI81XX 7953 CONFIG_TI81XX
7955 CONFIG_TIMER_CLK_FREQ 7954 CONFIG_TIMER_CLK_FREQ
7956 CONFIG_TIMESTAMP 7955 CONFIG_TIMESTAMP
7957 CONFIG_TIZEN 7956 CONFIG_TIZEN
7958 CONFIG_TI_KEYSTONE_SERDES 7957 CONFIG_TI_KEYSTONE_SERDES
7959 CONFIG_TI_KSNAV 7958 CONFIG_TI_KSNAV
7960 CONFIG_TI_SPI_MMAP 7959 CONFIG_TI_SPI_MMAP
7961 CONFIG_TMU_CMD_DTT 7960 CONFIG_TMU_CMD_DTT
7962 CONFIG_TMU_TIMER 7961 CONFIG_TMU_TIMER
7963 CONFIG_TOTAL5200 7962 CONFIG_TOTAL5200
7964 CONFIG_TPL_DRIVERS_MISC_SUPPORT 7963 CONFIG_TPL_DRIVERS_MISC_SUPPORT
7965 CONFIG_TPL_PAD_TO 7964 CONFIG_TPL_PAD_TO
7966 CONFIG_TPM_TIS_BASE_ADDRESS 7965 CONFIG_TPM_TIS_BASE_ADDRESS
7967 CONFIG_TPS6586X_POWER 7966 CONFIG_TPS6586X_POWER
7968 CONFIG_TQM5200 7967 CONFIG_TQM5200
7969 CONFIG_TQM5200S 7968 CONFIG_TQM5200S
7970 CONFIG_TQM5200_B 7969 CONFIG_TQM5200_B
7971 CONFIG_TQM5200_REV100 7970 CONFIG_TQM5200_REV100
7972 CONFIG_TQM823L 7971 CONFIG_TQM823L
7973 CONFIG_TQM823M 7972 CONFIG_TQM823M
7974 CONFIG_TQM834X 7973 CONFIG_TQM834X
7975 CONFIG_TQM850L 7974 CONFIG_TQM850L
7976 CONFIG_TQM850M 7975 CONFIG_TQM850M
7977 CONFIG_TQM855L 7976 CONFIG_TQM855L
7978 CONFIG_TQM855M 7977 CONFIG_TQM855M
7979 CONFIG_TQM860L 7978 CONFIG_TQM860L
7980 CONFIG_TQM860M 7979 CONFIG_TQM860M
7981 CONFIG_TQM862L 7980 CONFIG_TQM862L
7982 CONFIG_TQM862M 7981 CONFIG_TQM862M
7983 CONFIG_TQM866M 7982 CONFIG_TQM866M
7984 CONFIG_TQM885D 7983 CONFIG_TQM885D
7985 CONFIG_TQM8xxL 7984 CONFIG_TQM8xxL
7986 CONFIG_TQM8xxM 7985 CONFIG_TQM8xxM
7987 CONFIG_TRACE 7986 CONFIG_TRACE
7988 CONFIG_TRACE_BUFFER_SIZE 7987 CONFIG_TRACE_BUFFER_SIZE
7989 CONFIG_TRACE_EARLY 7988 CONFIG_TRACE_EARLY
7990 CONFIG_TRACE_EARLY_ADDR 7989 CONFIG_TRACE_EARLY_ADDR
7991 CONFIG_TRACE_EARLY_SIZE 7990 CONFIG_TRACE_EARLY_SIZE
7992 CONFIG_TRAILBLAZER 7991 CONFIG_TRAILBLAZER
7993 CONFIG_TRATS 7992 CONFIG_TRATS
7994 CONFIG_TRDX_PID_COLIBRI_VF50 7993 CONFIG_TRDX_PID_COLIBRI_VF50
7995 CONFIG_TRDX_PID_COLIBRI_VF50IT 7994 CONFIG_TRDX_PID_COLIBRI_VF50IT
7996 CONFIG_TRDX_PID_COLIBRI_VF61 7995 CONFIG_TRDX_PID_COLIBRI_VF61
7997 CONFIG_TRDX_PID_COLIBRI_VF61IT 7996 CONFIG_TRDX_PID_COLIBRI_VF61IT
7998 CONFIG_TRDX_VID 7997 CONFIG_TRDX_VID
7999 CONFIG_TSEC 7998 CONFIG_TSEC
8000 CONFIG_TSEC1 7999 CONFIG_TSEC1
8001 CONFIG_TSEC1_NAME 8000 CONFIG_TSEC1_NAME
8002 CONFIG_TSEC2 8001 CONFIG_TSEC2
8003 CONFIG_TSEC2_NAME 8002 CONFIG_TSEC2_NAME
8004 CONFIG_TSEC3 8003 CONFIG_TSEC3
8005 CONFIG_TSEC3_NAME 8004 CONFIG_TSEC3_NAME
8006 CONFIG_TSEC4 8005 CONFIG_TSEC4
8007 CONFIG_TSEC4_NAME 8006 CONFIG_TSEC4_NAME
8008 CONFIG_TSECV2 8007 CONFIG_TSECV2
8009 CONFIG_TSECV2_1 8008 CONFIG_TSECV2_1
8010 CONFIG_TSEC_ENET 8009 CONFIG_TSEC_ENET
8011 CONFIG_TSEC_TBI 8010 CONFIG_TSEC_TBI
8012 CONFIG_TSEC_TBICR_SETTINGS 8011 CONFIG_TSEC_TBICR_SETTINGS
8013 CONFIG_TSI108_ETH_NUM_PORTS 8012 CONFIG_TSI108_ETH_NUM_PORTS
8014 CONFIG_TSIM 8013 CONFIG_TSIM
8015 CONFIG_TUGE1 8014 CONFIG_TUGE1
8016 CONFIG_TULIP 8015 CONFIG_TULIP
8017 CONFIG_TULIP_FIX_DAVICOM 8016 CONFIG_TULIP_FIX_DAVICOM
8018 CONFIG_TULIP_SELECT_MEDIA 8017 CONFIG_TULIP_SELECT_MEDIA
8019 CONFIG_TULIP_USE_IO 8018 CONFIG_TULIP_USE_IO
8020 CONFIG_TUXX1 8019 CONFIG_TUXX1
8021 CONFIG_TWL4030_INPUT 8020 CONFIG_TWL4030_INPUT
8022 CONFIG_TWL4030_KEYPAD 8021 CONFIG_TWL4030_KEYPAD
8023 CONFIG_TWL4030_LED 8022 CONFIG_TWL4030_LED
8024 CONFIG_TWL4030_POWER 8023 CONFIG_TWL4030_POWER
8025 CONFIG_TWL4030_PWM 8024 CONFIG_TWL4030_PWM
8026 CONFIG_TWL4030_USB 8025 CONFIG_TWL4030_USB
8027 CONFIG_TWL6030_INPUT 8026 CONFIG_TWL6030_INPUT
8028 CONFIG_TWL6030_POWER 8027 CONFIG_TWL6030_POWER
8029 CONFIG_TWR 8028 CONFIG_TWR
8030 CONFIG_TWR_P1025 8029 CONFIG_TWR_P1025
8031 CONFIG_TX_DESCR_NUM 8030 CONFIG_TX_DESCR_NUM
8032 CONFIG_TZSW_RESERVED_DRAM_SIZE 8031 CONFIG_TZSW_RESERVED_DRAM_SIZE
8033 CONFIG_T_SH7706LSR 8032 CONFIG_T_SH7706LSR
8034 CONFIG_UART_BASE 8033 CONFIG_UART_BASE
8035 CONFIG_UART_BR_PRELIM 8034 CONFIG_UART_BR_PRELIM
8036 CONFIG_UART_CONSOLE 8035 CONFIG_UART_CONSOLE
8037 CONFIG_UART_CONSOLE_IS_JTAG 8036 CONFIG_UART_CONSOLE_IS_JTAG
8038 CONFIG_UART_MEM 8037 CONFIG_UART_MEM
8039 CONFIG_UART_OR_PRELIM 8038 CONFIG_UART_OR_PRELIM
8040 CONFIG_UBIBLOCK 8039 CONFIG_UBIBLOCK
8041 CONFIG_UBIFS_SILENCE_MSG 8040 CONFIG_UBIFS_SILENCE_MSG
8042 CONFIG_UBIFS_VOLUME 8041 CONFIG_UBIFS_VOLUME
8043 CONFIG_UBI_PART 8042 CONFIG_UBI_PART
8044 CONFIG_UBI_SILENCE_MSG 8043 CONFIG_UBI_SILENCE_MSG
8045 CONFIG_UBI_SIZE 8044 CONFIG_UBI_SIZE
8046 CONFIG_UBOOT1_ENV_ADDR 8045 CONFIG_UBOOT1_ENV_ADDR
8047 CONFIG_UBOOT2_ENV_ADDR 8046 CONFIG_UBOOT2_ENV_ADDR
8048 CONFIG_UBOOTPATH 8047 CONFIG_UBOOTPATH
8049 CONFIG_UBOOT_ENABLE_PADS_ALL 8048 CONFIG_UBOOT_ENABLE_PADS_ALL
8050 CONFIG_UBOOT_ENV_ADDR 8049 CONFIG_UBOOT_ENV_ADDR
8051 CONFIG_UBOOT_SECTOR_COUNT 8050 CONFIG_UBOOT_SECTOR_COUNT
8052 CONFIG_UBOOT_SECTOR_START 8051 CONFIG_UBOOT_SECTOR_START
8053 CONFIG_UCP1020 8052 CONFIG_UCP1020
8054 CONFIG_UCP1020_REV_1_3 8053 CONFIG_UCP1020_REV_1_3
8055 CONFIG_UDP_CHECKSUM 8054 CONFIG_UDP_CHECKSUM
8056 CONFIG_UEC_ETH 8055 CONFIG_UEC_ETH
8057 CONFIG_UEC_ETH1 8056 CONFIG_UEC_ETH1
8058 CONFIG_UEC_ETH2 8057 CONFIG_UEC_ETH2
8059 CONFIG_UEC_ETH3 8058 CONFIG_UEC_ETH3
8060 CONFIG_UEC_ETH4 8059 CONFIG_UEC_ETH4
8061 CONFIG_UEC_ETH5 8060 CONFIG_UEC_ETH5
8062 CONFIG_UEC_ETH6 8061 CONFIG_UEC_ETH6
8063 CONFIG_UEC_ETH7 8062 CONFIG_UEC_ETH7
8064 CONFIG_UEC_ETH8 8063 CONFIG_UEC_ETH8
8065 CONFIG_UID16 8064 CONFIG_UID16
8066 CONFIG_ULI526X 8065 CONFIG_ULI526X
8067 CONFIG_ULPI_REF_CLK 8066 CONFIG_ULPI_REF_CLK
8068 CONFIG_UMSDEVS 8067 CONFIG_UMSDEVS
8069 CONFIG_UNIPHIER_ETH 8068 CONFIG_UNIPHIER_ETH
8070 CONFIG_UPDATEB 8069 CONFIG_UPDATEB
8071 CONFIG_UPDATE_LOAD_ADDR 8070 CONFIG_UPDATE_LOAD_ADDR
8072 CONFIG_UPDATE_TFTP 8071 CONFIG_UPDATE_TFTP
8073 CONFIG_UPDATE_TFTP_CNT_MAX 8072 CONFIG_UPDATE_TFTP_CNT_MAX
8074 CONFIG_UPDATE_TFTP_MSEC_MAX 8073 CONFIG_UPDATE_TFTP_MSEC_MAX
8075 CONFIG_USART1 8074 CONFIG_USART1
8076 CONFIG_USART3 8075 CONFIG_USART3
8077 CONFIG_USART_BASE 8076 CONFIG_USART_BASE
8078 CONFIG_USART_ID 8077 CONFIG_USART_ID
8079 CONFIG_USBBOOTCOMMAND 8078 CONFIG_USBBOOTCOMMAND
8080 CONFIG_USBDEBUG 8079 CONFIG_USBDEBUG
8081 CONFIG_USBD_CONFIGURATION_STR 8080 CONFIG_USBD_CONFIGURATION_STR
8082 CONFIG_USBD_CTRL_INTERFACE_STR 8081 CONFIG_USBD_CTRL_INTERFACE_STR
8083 CONFIG_USBD_DATA_INTERFACE_STR 8082 CONFIG_USBD_DATA_INTERFACE_STR
8084 CONFIG_USBD_HS 8083 CONFIG_USBD_HS
8085 CONFIG_USBD_MANUFACTURER 8084 CONFIG_USBD_MANUFACTURER
8086 CONFIG_USBD_PRODUCTID 8085 CONFIG_USBD_PRODUCTID
8087 CONFIG_USBD_PRODUCTID_CDCACM 8086 CONFIG_USBD_PRODUCTID_CDCACM
8088 CONFIG_USBD_PRODUCTID_GSERIAL 8087 CONFIG_USBD_PRODUCTID_GSERIAL
8089 CONFIG_USBD_PRODUCT_NAME 8088 CONFIG_USBD_PRODUCT_NAME
8090 CONFIG_USBD_SERIAL_BULK_HS_PKTSIZE 8089 CONFIG_USBD_SERIAL_BULK_HS_PKTSIZE
8091 CONFIG_USBD_SERIAL_BULK_PKTSIZE 8090 CONFIG_USBD_SERIAL_BULK_PKTSIZE
8092 CONFIG_USBD_SERIAL_INT_ENDPOINT 8091 CONFIG_USBD_SERIAL_INT_ENDPOINT
8093 CONFIG_USBD_SERIAL_INT_PKTSIZE 8092 CONFIG_USBD_SERIAL_INT_PKTSIZE
8094 CONFIG_USBD_SERIAL_IN_ENDPOINT 8093 CONFIG_USBD_SERIAL_IN_ENDPOINT
8095 CONFIG_USBD_SERIAL_IN_PKTSIZE 8094 CONFIG_USBD_SERIAL_IN_PKTSIZE
8096 CONFIG_USBD_SERIAL_OUT_ENDPOINT 8095 CONFIG_USBD_SERIAL_OUT_ENDPOINT
8097 CONFIG_USBD_SERIAL_OUT_PKTSIZE 8096 CONFIG_USBD_SERIAL_OUT_PKTSIZE
8098 CONFIG_USBD_VENDORID 8097 CONFIG_USBD_VENDORID
8099 CONFIG_USBID_ADDR 8098 CONFIG_USBID_ADDR
8100 CONFIG_USBNET_DEV_ADDR 8099 CONFIG_USBNET_DEV_ADDR
8101 CONFIG_USBNET_HOST_ADDR 8100 CONFIG_USBNET_HOST_ADDR
8102 CONFIG_USBNET_MANUFACTURER 8101 CONFIG_USBNET_MANUFACTURER
8103 CONFIG_USBTTY 8102 CONFIG_USBTTY
8104 CONFIG_USB_AM35X 8103 CONFIG_USB_AM35X
8105 CONFIG_USB_ATMEL 8104 CONFIG_USB_ATMEL
8106 CONFIG_USB_ATMEL_CLK_SEL_PLLB 8105 CONFIG_USB_ATMEL_CLK_SEL_PLLB
8107 CONFIG_USB_ATMEL_CLK_SEL_UPLL 8106 CONFIG_USB_ATMEL_CLK_SEL_UPLL
8108 CONFIG_USB_BIN_FIXUP 8107 CONFIG_USB_BIN_FIXUP
8109 CONFIG_USB_BLACKFIN 8108 CONFIG_USB_BLACKFIN
8110 CONFIG_USB_BLACKFIN_CLKIN 8109 CONFIG_USB_BLACKFIN_CLKIN
8111 CONFIG_USB_BOOTING 8110 CONFIG_USB_BOOTING
8112 CONFIG_USB_CABLE_CHECK 8111 CONFIG_USB_CABLE_CHECK
8113 CONFIG_USB_CLOCK 8112 CONFIG_USB_CLOCK
8114 CONFIG_USB_CONFIG 8113 CONFIG_USB_CONFIG
8115 CONFIG_USB_DEVICE 8114 CONFIG_USB_DEVICE
8116 CONFIG_USB_DEV_BASE 8115 CONFIG_USB_DEV_BASE
8117 CONFIG_USB_DEV_PULLUP_GPIO 8116 CONFIG_USB_DEV_PULLUP_GPIO
8118 CONFIG_USB_DWC2 8117 CONFIG_USB_DWC2
8119 CONFIG_USB_DWC2_REG_ADDR 8118 CONFIG_USB_DWC2_REG_ADDR
8120 CONFIG_USB_EHCI_ARMADA100 8119 CONFIG_USB_EHCI_ARMADA100
8121 CONFIG_USB_EHCI_BASE 8120 CONFIG_USB_EHCI_BASE
8122 CONFIG_USB_EHCI_BASE_LIST 8121 CONFIG_USB_EHCI_BASE_LIST
8123 CONFIG_USB_EHCI_EXYNOS 8122 CONFIG_USB_EHCI_EXYNOS
8124 CONFIG_USB_EHCI_FARADAY 8123 CONFIG_USB_EHCI_FARADAY
8125 CONFIG_USB_EHCI_FSL 8124 CONFIG_USB_EHCI_FSL
8126 CONFIG_USB_EHCI_KIRKWOOD 8125 CONFIG_USB_EHCI_KIRKWOOD
8127 CONFIG_USB_EHCI_MX5 8126 CONFIG_USB_EHCI_MX5
8128 CONFIG_USB_EHCI_MXC 8127 CONFIG_USB_EHCI_MXC
8129 CONFIG_USB_EHCI_MXS 8128 CONFIG_USB_EHCI_MXS
8130 CONFIG_USB_EHCI_OMAP 8129 CONFIG_USB_EHCI_OMAP
8131 CONFIG_USB_EHCI_PCI 8130 CONFIG_USB_EHCI_PCI
8132 CONFIG_USB_EHCI_PPC4XX 8131 CONFIG_USB_EHCI_PPC4XX
8133 CONFIG_USB_EHCI_RMOBILE 8132 CONFIG_USB_EHCI_RMOBILE
8134 CONFIG_USB_EHCI_SPEAR 8133 CONFIG_USB_EHCI_SPEAR
8135 CONFIG_USB_EHCI_SUNXI 8134 CONFIG_USB_EHCI_SUNXI
8136 CONFIG_USB_EHCI_TEGRA 8135 CONFIG_USB_EHCI_TEGRA
8137 CONFIG_USB_EHCI_TXFIFO_THRESH 8136 CONFIG_USB_EHCI_TXFIFO_THRESH
8138 CONFIG_USB_EHCI_VCT 8137 CONFIG_USB_EHCI_VCT
8139 CONFIG_USB_EHCI_VF 8138 CONFIG_USB_EHCI_VF
8140 CONFIG_USB_ETHER 8139 CONFIG_USB_ETHER
8141 CONFIG_USB_ETHER_ASIX 8140 CONFIG_USB_ETHER_ASIX
8142 CONFIG_USB_ETHER_ASIX88179 8141 CONFIG_USB_ETHER_ASIX88179
8143 CONFIG_USB_ETHER_DM9601 8142 CONFIG_USB_ETHER_DM9601
8144 CONFIG_USB_ETHER_MCS7830 8143 CONFIG_USB_ETHER_MCS7830
8145 CONFIG_USB_ETHER_RNDIS 8144 CONFIG_USB_ETHER_RNDIS
8146 CONFIG_USB_ETHER_RTL8152 8145 CONFIG_USB_ETHER_RTL8152
8147 CONFIG_USB_ETHER_SMSC95XX 8146 CONFIG_USB_ETHER_SMSC95XX
8148 CONFIG_USB_ETHER_xxx 8147 CONFIG_USB_ETHER_xxx
8149 CONFIG_USB_ETH_CDC 8148 CONFIG_USB_ETH_CDC
8150 CONFIG_USB_ETH_QMULT 8149 CONFIG_USB_ETH_QMULT
8151 CONFIG_USB_ETH_RNDIS 8150 CONFIG_USB_ETH_RNDIS
8152 CONFIG_USB_ETH_SUBSET 8151 CONFIG_USB_ETH_SUBSET
8153 CONFIG_USB_EXT2_BOOT 8152 CONFIG_USB_EXT2_BOOT
8154 CONFIG_USB_FAT_BOOT 8153 CONFIG_USB_FAT_BOOT
8155 CONFIG_USB_FREQ 8154 CONFIG_USB_FREQ
8156 CONFIG_USB_FUNCTION_DFU 8155 CONFIG_USB_FUNCTION_DFU
8157 CONFIG_USB_FUNCTION_MASS_STORAGE 8156 CONFIG_USB_FUNCTION_MASS_STORAGE
8158 CONFIG_USB_FUNCTION_THOR 8157 CONFIG_USB_FUNCTION_THOR
8159 CONFIG_USB_GADGET_AMD5536UDC 8158 CONFIG_USB_GADGET_AMD5536UDC
8160 CONFIG_USB_GADGET_AT91 8159 CONFIG_USB_GADGET_AT91
8161 CONFIG_USB_GADGET_AU1X00 8160 CONFIG_USB_GADGET_AU1X00
8162 CONFIG_USB_GADGET_DUMMY_HCD 8161 CONFIG_USB_GADGET_DUMMY_HCD
8163 CONFIG_USB_GADGET_DWC2_OTG_PHY 8162 CONFIG_USB_GADGET_DWC2_OTG_PHY
8164 CONFIG_USB_GADGET_FOTG210 8163 CONFIG_USB_GADGET_FOTG210
8165 CONFIG_USB_GADGET_FSL_USB2 8164 CONFIG_USB_GADGET_FSL_USB2
8166 CONFIG_USB_GADGET_GOKU 8165 CONFIG_USB_GADGET_GOKU
8167 CONFIG_USB_GADGET_IMX 8166 CONFIG_USB_GADGET_IMX
8168 CONFIG_USB_GADGET_M66592 8167 CONFIG_USB_GADGET_M66592
8169 CONFIG_USB_GADGET_MASS_STORAGE 8168 CONFIG_USB_GADGET_MASS_STORAGE
8170 CONFIG_USB_GADGET_MPC8272 8169 CONFIG_USB_GADGET_MPC8272
8171 CONFIG_USB_GADGET_MQ11XX 8170 CONFIG_USB_GADGET_MQ11XX
8172 CONFIG_USB_GADGET_MUSBHSFC 8171 CONFIG_USB_GADGET_MUSBHSFC
8173 CONFIG_USB_GADGET_N9604 8172 CONFIG_USB_GADGET_N9604
8174 CONFIG_USB_GADGET_NET2280 8173 CONFIG_USB_GADGET_NET2280
8175 CONFIG_USB_GADGET_OMAP 8174 CONFIG_USB_GADGET_OMAP
8176 CONFIG_USB_GADGET_PXA27X 8175 CONFIG_USB_GADGET_PXA27X
8177 CONFIG_USB_GADGET_PXA2XX 8176 CONFIG_USB_GADGET_PXA2XX
8178 CONFIG_USB_GADGET_S3C2410 8177 CONFIG_USB_GADGET_S3C2410
8179 CONFIG_USB_GADGET_SA1100 8178 CONFIG_USB_GADGET_SA1100
8180 CONFIG_USB_GADGET_SUPERH 8179 CONFIG_USB_GADGET_SUPERH
8181 CONFIG_USB_GADGET_SX2 8180 CONFIG_USB_GADGET_SX2
8182 CONFIG_USB_HOST_ETHER 8181 CONFIG_USB_HOST_ETHER
8183 CONFIG_USB_HOST_XHCI_BASE 8182 CONFIG_USB_HOST_XHCI_BASE
8184 CONFIG_USB_INVENTRA_DMA 8183 CONFIG_USB_INVENTRA_DMA
8185 CONFIG_USB_ISP1301_I2C_ADDR 8184 CONFIG_USB_ISP1301_I2C_ADDR
8186 CONFIG_USB_MAX_CONTROLLER_COUNT 8185 CONFIG_USB_MAX_CONTROLLER_COUNT
8187 CONFIG_USB_MUSB_AM35X 8186 CONFIG_USB_MUSB_AM35X
8188 CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT 8187 CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
8189 CONFIG_USB_MUSB_DSPS 8188 CONFIG_USB_MUSB_DSPS
8190 CONFIG_USB_MUSB_HCD 8189 CONFIG_USB_MUSB_HCD
8191 CONFIG_USB_MUSB_OMAP2PLUS 8190 CONFIG_USB_MUSB_OMAP2PLUS
8192 CONFIG_USB_MUSB_PIO_ONLY 8191 CONFIG_USB_MUSB_PIO_ONLY
8193 CONFIG_USB_MUSB_TIMEOUT 8192 CONFIG_USB_MUSB_TIMEOUT
8194 CONFIG_USB_MUSB_TUSB6010 8193 CONFIG_USB_MUSB_TUSB6010
8195 CONFIG_USB_MUSB_UDC 8194 CONFIG_USB_MUSB_UDC
8196 CONFIG_USB_MUSB_UDD 8195 CONFIG_USB_MUSB_UDD
8197 CONFIG_USB_OHCI 8196 CONFIG_USB_OHCI
8198 CONFIG_USB_OHCI_EP93XX 8197 CONFIG_USB_OHCI_EP93XX
8199 CONFIG_USB_OHCI_LPC32XX 8198 CONFIG_USB_OHCI_LPC32XX
8200 CONFIG_USB_OHCI_NEW 8199 CONFIG_USB_OHCI_NEW
8201 CONFIG_USB_OHCI_S3C24XX 8200 CONFIG_USB_OHCI_S3C24XX
8202 CONFIG_USB_OHCI_SUNXI 8201 CONFIG_USB_OHCI_SUNXI
8203 CONFIG_USB_OMAP3 8202 CONFIG_USB_OMAP3
8204 CONFIG_USB_OTG 8203 CONFIG_USB_OTG
8205 CONFIG_USB_OTG_BLACKLIST_HUB 8204 CONFIG_USB_OTG_BLACKLIST_HUB
8206 CONFIG_USB_PHY_CFG_BASE 8205 CONFIG_USB_PHY_CFG_BASE
8207 CONFIG_USB_PHY_TYPE 8206 CONFIG_USB_PHY_TYPE
8208 CONFIG_USB_PXA25X_SMALL 8207 CONFIG_USB_PXA25X_SMALL
8209 CONFIG_USB_R8A66597_HCD 8208 CONFIG_USB_R8A66597_HCD
8210 CONFIG_USB_SERIALNO 8209 CONFIG_USB_SERIALNO
8211 CONFIG_USB_SS_BASE 8210 CONFIG_USB_SS_BASE
8212 CONFIG_USB_TI_CPPI_DMA 8211 CONFIG_USB_TI_CPPI_DMA
8213 CONFIG_USB_TTY 8212 CONFIG_USB_TTY
8214 CONFIG_USB_TUSB_OMAP_DMA 8213 CONFIG_USB_TUSB_OMAP_DMA
8215 CONFIG_USB_UHCI 8214 CONFIG_USB_UHCI
8216 CONFIG_USB_ULPI_TIMEOUT 8215 CONFIG_USB_ULPI_TIMEOUT
8217 CONFIG_USB_XHCI_EXYNOS 8216 CONFIG_USB_XHCI_EXYNOS
8218 CONFIG_USB_XHCI_FSL 8217 CONFIG_USB_XHCI_FSL
8219 CONFIG_USB_XHCI_KEYSTONE 8218 CONFIG_USB_XHCI_KEYSTONE
8220 CONFIG_USB_XHCI_OMAP 8219 CONFIG_USB_XHCI_OMAP
8221 CONFIG_USB_XHCI_PCI 8220 CONFIG_USB_XHCI_PCI
8222 CONFIG_USB_XHCI_ZYNQMP 8221 CONFIG_USB_XHCI_ZYNQMP
8223 CONFIG_USER_LOWLEVEL_INIT 8222 CONFIG_USER_LOWLEVEL_INIT
8224 CONFIG_USE_ARCH_MEMCPY 8223 CONFIG_USE_ARCH_MEMCPY
8225 CONFIG_USE_ARCH_MEMSET 8224 CONFIG_USE_ARCH_MEMSET
8226 CONFIG_USE_FDT 8225 CONFIG_USE_FDT
8227 CONFIG_USE_INTERRUPT 8226 CONFIG_USE_INTERRUPT
8228 CONFIG_USE_IRQ 8227 CONFIG_USE_IRQ
8229 CONFIG_USE_NAND 8228 CONFIG_USE_NAND
8230 CONFIG_USE_NETDEV 8229 CONFIG_USE_NETDEV
8231 CONFIG_USE_NOR 8230 CONFIG_USE_NOR
8232 CONFIG_USE_ONENAND_BOARD_INIT 8231 CONFIG_USE_ONENAND_BOARD_INIT
8233 CONFIG_USE_SPIFLASH 8232 CONFIG_USE_SPIFLASH
8234 CONFIG_USE_STDINT 8233 CONFIG_USE_STDINT
8235 CONFIG_USE_TTY 8234 CONFIG_USE_TTY
8236 CONFIG_UTBIPAR_INIT_TBIPA 8235 CONFIG_UTBIPAR_INIT_TBIPA
8237 CONFIG_U_BOOT_HDR_ADDR 8236 CONFIG_U_BOOT_HDR_ADDR
8238 CONFIG_U_BOOT_HDR_SIZE 8237 CONFIG_U_BOOT_HDR_SIZE
8239 CONFIG_U_QE 8238 CONFIG_U_QE
8240 CONFIG_V38B 8239 CONFIG_V38B
8241 CONFIG_VAL 8240 CONFIG_VAL
8242 CONFIG_VAR_SIZE_SPL 8241 CONFIG_VAR_SIZE_SPL
8243 CONFIG_VCMA9 8242 CONFIG_VCMA9
8244 CONFIG_VCO_HZ 8243 CONFIG_VCO_HZ
8245 CONFIG_VCO_MULT 8244 CONFIG_VCO_MULT
8246 CONFIG_VCT_NOR 8245 CONFIG_VCT_NOR
8247 CONFIG_VE8313 8246 CONFIG_VE8313
8248 CONFIG_VERY_BIG_RAM 8247 CONFIG_VERY_BIG_RAM
8249 CONFIG_VEXPRESS_EXTENDED_MEMORY_MAP 8248 CONFIG_VEXPRESS_EXTENDED_MEMORY_MAP
8250 CONFIG_VEXPRESS_ORIGINAL_MEMORY_MAP 8249 CONFIG_VEXPRESS_ORIGINAL_MEMORY_MAP
8251 CONFIG_VF610 8250 CONFIG_VF610
8252 CONFIG_VID 8251 CONFIG_VID
8253 CONFIG_VIDEO_BCM2835 8252 CONFIG_VIDEO_BCM2835
8254 CONFIG_VIDEO_BMP_GZIP 8253 CONFIG_VIDEO_BMP_GZIP
8255 CONFIG_VIDEO_BMP_LOGO 8254 CONFIG_VIDEO_BMP_LOGO
8256 CONFIG_VIDEO_BMP_RLE8 8255 CONFIG_VIDEO_BMP_RLE8
8257 CONFIG_VIDEO_CORALP 8256 CONFIG_VIDEO_CORALP
8258 CONFIG_VIDEO_DA8XX 8257 CONFIG_VIDEO_DA8XX
8259 CONFIG_VIDEO_DT_SIMPLEFB 8258 CONFIG_VIDEO_DT_SIMPLEFB
8260 CONFIG_VIDEO_FONT_4X6 8259 CONFIG_VIDEO_FONT_4X6
8261 CONFIG_VIDEO_IPUV3 8260 CONFIG_VIDEO_IPUV3
8262 CONFIG_VIDEO_LCD_I2C_BUS 8261 CONFIG_VIDEO_LCD_I2C_BUS
8263 CONFIG_VIDEO_LOGO 8262 CONFIG_VIDEO_LOGO
8264 CONFIG_VIDEO_MB862xx 8263 CONFIG_VIDEO_MB862xx
8265 CONFIG_VIDEO_MB862xx_ACCEL 8264 CONFIG_VIDEO_MB862xx_ACCEL
8266 CONFIG_VIDEO_MX3 8265 CONFIG_VIDEO_MX3
8267 CONFIG_VIDEO_MXS 8266 CONFIG_VIDEO_MXS
8268 CONFIG_VIDEO_MXS_MODE_SYSTEM 8267 CONFIG_VIDEO_MXS_MODE_SYSTEM
8269 CONFIG_VIDEO_OMAP3 8268 CONFIG_VIDEO_OMAP3
8270 CONFIG_VIDEO_ONBOARD 8269 CONFIG_VIDEO_ONBOARD
8271 CONFIG_VIDEO_SM501 8270 CONFIG_VIDEO_SM501
8272 CONFIG_VIDEO_SM501_16BPP 8271 CONFIG_VIDEO_SM501_16BPP
8273 CONFIG_VIDEO_SM501_32BPP 8272 CONFIG_VIDEO_SM501_32BPP
8274 CONFIG_VIDEO_SM501_8BPP 8273 CONFIG_VIDEO_SM501_8BPP
8275 CONFIG_VIDEO_SM501_PCI 8274 CONFIG_VIDEO_SM501_PCI
8276 CONFIG_VIDEO_STD_TIMINGS 8275 CONFIG_VIDEO_STD_TIMINGS
8277 CONFIG_VIDEO_SUNXI 8276 CONFIG_VIDEO_SUNXI
8278 CONFIG_VIDEO_VCXK 8277 CONFIG_VIDEO_VCXK
8279 CONFIG_VID_FLS_ENV 8278 CONFIG_VID_FLS_ENV
8280 CONFIG_VM86 8279 CONFIG_VM86
8281 CONFIG_VME8349 8280 CONFIG_VME8349
8282 CONFIG_VOIPAC_LCD 8281 CONFIG_VOIPAC_LCD
8283 CONFIG_VOL_MONITOR_INA220 8282 CONFIG_VOL_MONITOR_INA220
8284 CONFIG_VOL_MONITOR_IR36021_READ 8283 CONFIG_VOL_MONITOR_IR36021_READ
8285 CONFIG_VOL_MONITOR_IR36021_SET 8284 CONFIG_VOL_MONITOR_IR36021_SET
8286 CONFIG_VOM405 8285 CONFIG_VOM405
8287 CONFIG_VR_CTL_CLKBUF 8286 CONFIG_VR_CTL_CLKBUF
8288 CONFIG_VR_CTL_FREQ 8287 CONFIG_VR_CTL_FREQ
8289 CONFIG_VR_CTL_VAL 8288 CONFIG_VR_CTL_VAL
8290 CONFIG_VR_CTL_VLEV 8289 CONFIG_VR_CTL_VLEV
8291 CONFIG_VSC7385_ENET 8290 CONFIG_VSC7385_ENET
8292 CONFIG_VSC7385_IMAGE 8291 CONFIG_VSC7385_IMAGE
8293 CONFIG_VSC7385_IMAGE_SIZE 8292 CONFIG_VSC7385_IMAGE_SIZE
8294 CONFIG_VSC9953 8293 CONFIG_VSC9953
8295 CONFIG_VSC_CROSSBAR 8294 CONFIG_VSC_CROSSBAR
8296 CONFIG_WALNUT 8295 CONFIG_WALNUT
8297 CONFIG_WATCHDOG 8296 CONFIG_WATCHDOG
8298 CONFIG_WATCHDOG_BASEADDR 8297 CONFIG_WATCHDOG_BASEADDR
8299 CONFIG_WATCHDOG_IRQ 8298 CONFIG_WATCHDOG_IRQ
8300 CONFIG_WATCHDOG_NOWAYOUT 8299 CONFIG_WATCHDOG_NOWAYOUT
8301 CONFIG_WATCHDOG_PRESC 8300 CONFIG_WATCHDOG_PRESC
8302 CONFIG_WATCHDOG_RC 8301 CONFIG_WATCHDOG_RC
8303 CONFIG_WATCHDOG_TIMEOUT 8302 CONFIG_WATCHDOG_TIMEOUT
8304 CONFIG_WATCHDOG_TIMEOUT_MSECS 8303 CONFIG_WATCHDOG_TIMEOUT_MSECS
8305 CONFIG_WDOG_GPIO_PIN 8304 CONFIG_WDOG_GPIO_PIN
8306 CONFIG_WD_MAX_RATE 8305 CONFIG_WD_MAX_RATE
8307 CONFIG_WD_PERIOD 8306 CONFIG_WD_PERIOD
8308 CONFIG_WINBOND_83C553 8307 CONFIG_WINBOND_83C553
8309 CONFIG_X600 8308 CONFIG_X600
8310 CONFIG_X86EMU_DEBUG 8309 CONFIG_X86EMU_DEBUG
8311 CONFIG_X86EMU_RAW_IO 8310 CONFIG_X86EMU_RAW_IO
8312 CONFIG_X86_64 8311 CONFIG_X86_64
8313 CONFIG_X86_BSWAP 8312 CONFIG_X86_BSWAP
8314 CONFIG_X86_MRC_ADDR 8313 CONFIG_X86_MRC_ADDR
8315 CONFIG_X86_REFCODE_ADDR 8314 CONFIG_X86_REFCODE_ADDR
8316 CONFIG_X86_REFCODE_RUN_ADDR 8315 CONFIG_X86_REFCODE_RUN_ADDR
8317 CONFIG_XGI_XG22_BASE 8316 CONFIG_XGI_XG22_BASE
8318 CONFIG_XILINX_405 8317 CONFIG_XILINX_405
8319 CONFIG_XILINX_440 8318 CONFIG_XILINX_440
8320 CONFIG_XILINX_GPIO 8319 CONFIG_XILINX_GPIO
8321 CONFIG_XILINX_LL_TEMAC 8320 CONFIG_XILINX_LL_TEMAC
8322 CONFIG_XILINX_LL_TEMAC_CLK 8321 CONFIG_XILINX_LL_TEMAC_CLK
8323 CONFIG_XILINX_PPC440_GENERIC 8322 CONFIG_XILINX_PPC440_GENERIC
8324 CONFIG_XILINX_SPI_IDLE_VAL 8323 CONFIG_XILINX_SPI_IDLE_VAL
8325 CONFIG_XILINX_TB_WATCHDOG 8324 CONFIG_XILINX_TB_WATCHDOG
8326 CONFIG_XPEDITE1000 8325 CONFIG_XPEDITE1000
8327 CONFIG_XPEDITE5140 8326 CONFIG_XPEDITE5140
8328 CONFIG_XPEDITE5200 8327 CONFIG_XPEDITE5200
8329 CONFIG_XPEDITE5370 8328 CONFIG_XPEDITE5370
8330 CONFIG_XPEDITE550X 8329 CONFIG_XPEDITE550X
8331 CONFIG_XR16L2751 8330 CONFIG_XR16L2751
8332 CONFIG_XSENGINE 8331 CONFIG_XSENGINE
8333 CONFIG_XTFPGA 8332 CONFIG_XTFPGA
8334 CONFIG_YAFFS2 8333 CONFIG_YAFFS2
8335 CONFIG_YAFFSFS_PROVIDE_VALUES 8334 CONFIG_YAFFSFS_PROVIDE_VALUES
8336 CONFIG_YAFFS_AUTO_UNICODE 8335 CONFIG_YAFFS_AUTO_UNICODE
8337 CONFIG_YAFFS_CASE_INSENSITIVE 8336 CONFIG_YAFFS_CASE_INSENSITIVE
8338 CONFIG_YAFFS_DEFINES_TYPES 8337 CONFIG_YAFFS_DEFINES_TYPES
8339 CONFIG_YAFFS_DIRECT 8338 CONFIG_YAFFS_DIRECT
8340 CONFIG_YAFFS_PROVIDE_DEFS 8339 CONFIG_YAFFS_PROVIDE_DEFS
8341 CONFIG_YAFFS_UNICODE 8340 CONFIG_YAFFS_UNICODE
8342 CONFIG_YAFFS_UTIL 8341 CONFIG_YAFFS_UTIL
8343 CONFIG_YAFFS_WINCE 8342 CONFIG_YAFFS_WINCE
8344 CONFIG_YELLOWSTONE 8343 CONFIG_YELLOWSTONE
8345 CONFIG_YELLOW_LED 8344 CONFIG_YELLOW_LED
8346 CONFIG_YOSEMITE 8345 CONFIG_YOSEMITE
8347 CONFIG_ZBOOT_32 8346 CONFIG_ZBOOT_32
8348 CONFIG_ZC770_XM010 8347 CONFIG_ZC770_XM010
8349 CONFIG_ZC770_XM011 8348 CONFIG_ZC770_XM011
8350 CONFIG_ZC770_XM012 8349 CONFIG_ZC770_XM012
8351 CONFIG_ZC770_XM013 8350 CONFIG_ZC770_XM013
8352 CONFIG_ZLIB 8351 CONFIG_ZLIB
8353 CONFIG_ZLT 8352 CONFIG_ZLT
8354 CONFIG_ZM7300 8353 CONFIG_ZM7300
8355 CONFIG_ZYNQMP_EEPROM 8354 CONFIG_ZYNQMP_EEPROM
8356 CONFIG_ZYNQMP_XHCI_LIST 8355 CONFIG_ZYNQMP_XHCI_LIST
8357 CONFIG_ZYNQ_EEPROM 8356 CONFIG_ZYNQ_EEPROM
8358 CONFIG_ZYNQ_EEPROM_BUS 8357 CONFIG_ZYNQ_EEPROM_BUS
8359 CONFIG_ZYNQ_GEM_EEPROM_ADDR 8358 CONFIG_ZYNQ_GEM_EEPROM_ADDR
8360 CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET 8359 CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET
8361 CONFIG_ZYNQ_HISPD_BROKEN 8360 CONFIG_ZYNQ_HISPD_BROKEN
8362 CONFIG_ZYNQ_I2C0 8361 CONFIG_ZYNQ_I2C0
8363 CONFIG_ZYNQ_I2C1 8362 CONFIG_ZYNQ_I2C1
8364 CONFIG_ZYNQ_PS_CLK_FREQ 8363 CONFIG_ZYNQ_PS_CLK_FREQ
8365 CONFIG_ZYNQ_SDHCI0 8364 CONFIG_ZYNQ_SDHCI0
8366 CONFIG_ZYNQ_SDHCI1 8365 CONFIG_ZYNQ_SDHCI1
8367 CONFIG_ZYNQ_SDHCI_MAX_FREQ 8366 CONFIG_ZYNQ_SDHCI_MAX_FREQ
8368 CONFIG_ZYNQ_SDHCI_MIN_FREQ 8367 CONFIG_ZYNQ_SDHCI_MIN_FREQ
8369 CONFIG_ZYNQ_SERIAL 8368 CONFIG_ZYNQ_SERIAL
8370 CONFIG_eTSEC_MDIO_BUS 8369 CONFIG_eTSEC_MDIO_BUS
8371 8370