@@ -341,7 +341,7 @@ The following options need to be configured:
341
341
342
342
CFG_SYS_FSL_DDR_SDRAM_BASE_PHY
343
343
Physical address from the view of DDR controllers. It is the
344
- same as CONFIG_SYS_DDR_SDRAM_BASE for all Power SoCs. But
344
+ same as CFG_SYS_DDR_SDRAM_BASE for all Power SoCs. But
345
345
it could be different for ARM SoCs.
346
346
347
347
- MIPS CPU options:
@@ -352,7 +352,7 @@ The following options need to be configured:
352
352
be swapped if a flash programmer is used.
353
353
354
354
- ARM options:
355
- CONFIG_SYS_EXCEPTION_VECTORS_HIGH
355
+ CFG_SYS_EXCEPTION_VECTORS_HIGH
356
356
357
357
Select high exception vectors of the ARM core, e.g., do not
358
358
clear the V bit of the c1 register of CP15.
@@ -415,7 +415,7 @@ The following options need to be configured:
415
415
the defaults discussed just above.
416
416
417
417
- Cache Configuration for ARM:
418
- CONFIG_SYS_PL310_BASE - Physical base address of PL310
418
+ CFG_SYS_PL310_BASE - Physical base address of PL310
419
419
controller register space
420
420
421
421
- Serial Ports:
@@ -485,7 +485,7 @@ The following options need to be configured:
485
485
- GPIO Support:
486
486
CONFIG_PCA953X - use NXP's PCA953X series I2C GPIO
487
487
488
- The CONFIG_SYS_I2C_PCA953X_WIDTH option specifies a list of
488
+ The CFG_SYS_I2C_PCA953X_WIDTH option specifies a list of
489
489
chip-ngpio pairs that tell the PCA953X driver the number of
490
490
pins supported by a particular chip.
491
491
@@ -927,21 +927,21 @@ The following options need to be configured:
927
927
928
928
CONFIG_SYS_I2C_DIRECT_BUS
929
929
define this, if you don't use i2c muxes on your hardware.
930
- if CONFIG_SYS_I2C_MAX_HOPS is not defined or == 0 you can
930
+ if CFG_SYS_I2C_MAX_HOPS is not defined or == 0 you can
931
931
omit this define.
932
932
933
- CONFIG_SYS_I2C_MAX_HOPS
933
+ CFG_SYS_I2C_MAX_HOPS
934
934
define how many muxes are maximal consecutively connected
935
935
on one i2c bus. If you not use i2c muxes, omit this
936
936
define.
937
937
938
- CONFIG_SYS_I2C_BUSES
938
+ CFG_SYS_I2C_BUSES
939
939
hold a list of buses you want to use, only used if
940
940
CONFIG_SYS_I2C_DIRECT_BUS is not defined, for example
941
- a board with CONFIG_SYS_I2C_MAX_HOPS = 1 and
941
+ a board with CFG_SYS_I2C_MAX_HOPS = 1 and
942
942
CFG_SYS_NUM_I2C_BUSES = 9:
943
943
944
- CONFIG_SYS_I2C_BUSES {{0, {I2C_NULL_HOP}}, \
944
+ CFG_SYS_I2C_BUSES {{0, {I2C_NULL_HOP}}, \
945
945
{0, {{I2C_MUX_PCA9547, 0x70, 1}}}, \
946
946
{0, {{I2C_MUX_PCA9547, 0x70, 2}}}, \
947
947
{0, {{I2C_MUX_PCA9547, 0x70, 3}}}, \
@@ -1044,7 +1044,7 @@ The following options need to be configured:
1044
1044
active. To switch to a different bus, use the 'i2c dev' command.
1045
1045
Note that bus numbering is zero-based.
1046
1046
1047
- CONFIG_SYS_I2C_NOPROBES
1047
+ CFG_SYS_I2C_NOPROBES
1048
1048
1049
1049
This option specifies a list of I2C devices that will be skipped
1050
1050
when the 'i2c probe' command is issued. If CONFIG_I2C_MULTI_BUS
@@ -1053,16 +1053,16 @@ The following options need to be configured:
1053
1053
1054
1054
e.g.
1055
1055
#undef CONFIG_I2C_MULTI_BUS
1056
- #define CONFIG_SYS_I2C_NOPROBES {0x50,0x68}
1056
+ #define CFG_SYS_I2C_NOPROBES {0x50,0x68}
1057
1057
1058
1058
will skip addresses 0x50 and 0x68 on a board with one I2C bus
1059
1059
1060
1060
#define CONFIG_I2C_MULTI_BUS
1061
- #define CONFIG_SYS_I2C_NOPROBES {{0,0x50},{0,0x68},{1,0x54}}
1061
+ #define CFG_SYS_I2C_NOPROBES {{0,0x50},{0,0x68},{1,0x54}}
1062
1062
1063
1063
will skip addresses 0x50 and 0x68 on bus 0 and address 0x54 on bus 1
1064
1064
1065
- CONFIG_SYS_RTC_BUS_NUM
1065
+ CFG_SYS_RTC_BUS_NUM
1066
1066
1067
1067
If defined, then this indicates the I2C bus number for the RTC.
1068
1068
If not defined, then U-Boot assumes that RTC is on I2C bus 0.
@@ -1120,19 +1120,19 @@ The following options need to be configured:
1120
1120
configuration if the INIT_B line goes low (which
1121
1121
indicated a CRC error).
1122
1122
1123
- CONFIG_SYS_FPGA_WAIT_INIT
1123
+ CFG_SYS_FPGA_WAIT_INIT
1124
1124
1125
1125
Maximum time to wait for the INIT_B line to de-assert
1126
1126
after PROB_B has been de-asserted during a Virtex II
1127
1127
FPGA configuration sequence. The default time is 500
1128
1128
ms.
1129
1129
1130
- CONFIG_SYS_FPGA_WAIT_BUSY
1130
+ CFG_SYS_FPGA_WAIT_BUSY
1131
1131
1132
1132
Maximum time to wait for BUSY to de-assert during
1133
1133
Virtex II FPGA configuration. The default is 5 ms.
1134
1134
1135
- CONFIG_SYS_FPGA_WAIT_CONFIG
1135
+ CFG_SYS_FPGA_WAIT_CONFIG
1136
1136
1137
1137
Time to wait after FPGA configuration. The default is
1138
1138
200 ms.
@@ -1429,12 +1429,12 @@ Configuration Settings:
1429
1429
- CONFIG_SYS_PROMPT: This is what U-Boot prints on the console to
1430
1430
prompt for user input.
1431
1431
1432
- - CONFIG_SYS_BAUDRATE_TABLE :
1432
+ - CFG_SYS_BAUDRATE_TABLE :
1433
1433
List of legal baudrate settings for this board.
1434
1434
1435
- - CONFIG_SYS_MEM_RESERVE_SECURE
1435
+ - CFG_SYS_MEM_RESERVE_SECURE
1436
1436
Only implemented for ARMv8 for now.
1437
- If defined, the size of CONFIG_SYS_MEM_RESERVE_SECURE memory
1437
+ If defined, the size of CFG_SYS_MEM_RESERVE_SECURE memory
1438
1438
is substracted from total RAM and won't be reported to OS.
1439
1439
This memory can be used as secure memory. A variable
1440
1440
gd->arch.secure_ram is used to track the location. In systems
@@ -1444,7 +1444,7 @@ Configuration Settings:
1444
1444
- CFG_SYS_SDRAM_BASE:
1445
1445
Physical start address of SDRAM. _Must_ be 0 here.
1446
1446
1447
- - CONFIG_SYS_FLASH_BASE :
1447
+ - CFG_SYS_FLASH_BASE :
1448
1448
Physical start address of Flash memory.
1449
1449
1450
1450
- CONFIG_SYS_MALLOC_LEN:
@@ -1468,16 +1468,16 @@ Configuration Settings:
1468
1468
boards which do not use the full malloc in SPL (which is
1469
1469
enabled with CONFIG_SYS_SPL_MALLOC).
1470
1470
1471
- - CONFIG_SYS_BOOTMAPSZ :
1471
+ - CFG_SYS_BOOTMAPSZ :
1472
1472
Maximum size of memory mapped by the startup code of
1473
1473
the Linux kernel; all data that must be processed by
1474
1474
the Linux kernel (bd_info, boot arguments, FDT blob if
1475
1475
used) must be put below this limit, unless "bootm_low"
1476
1476
environment variable is defined and non-zero. In such case
1477
1477
all data for the Linux kernel must be between "bootm_low"
1478
- and "bootm_low" + CONFIG_SYS_BOOTMAPSZ . The environment
1478
+ and "bootm_low" + CFG_SYS_BOOTMAPSZ . The environment
1479
1479
variable "bootm_mapsize" will override the value of
1480
- CONFIG_SYS_BOOTMAPSZ . If CONFIG_SYS_BOOTMAPSZ is undefined,
1480
+ CFG_SYS_BOOTMAPSZ . If CFG_SYS_BOOTMAPSZ is undefined,
1481
1481
then the value in "bootm_size" will be used instead.
1482
1482
1483
1483
- CONFIG_SYS_BOOT_GET_CMDLINE:
@@ -1638,37 +1638,37 @@ Low Level (hardware related) configuration options:
1638
1638
Default (power-on reset) physical address of CCSR on Freescale
1639
1639
PowerPC SOCs.
1640
1640
1641
- - CONFIG_SYS_CCSRBAR :
1641
+ - CFG_SYS_CCSRBAR :
1642
1642
Virtual address of CCSR. On a 32-bit build, this is typically
1643
1643
the same value as CONFIG_SYS_CCSRBAR_DEFAULT.
1644
1644
1645
- - CONFIG_SYS_CCSRBAR_PHYS :
1645
+ - CFG_SYS_CCSRBAR_PHYS :
1646
1646
Physical address of CCSR. CCSR can be relocated to a new
1647
1647
physical address, if desired. In this case, this macro should
1648
1648
be set to that address. Otherwise, it should be set to the
1649
1649
same value as CONFIG_SYS_CCSRBAR_DEFAULT. For example, CCSR
1650
1650
is typically relocated on 36-bit builds. It is recommended
1651
1651
that this macro be defined via the _HIGH and _LOW macros:
1652
1652
1653
- #define CONFIG_SYS_CCSRBAR_PHYS ((CONFIG_SYS_CCSRBAR_PHYS_HIGH
1654
- * 1ull) << 32 | CONFIG_SYS_CCSRBAR_PHYS_LOW )
1653
+ #define CFG_SYS_CCSRBAR_PHYS ((CFG_SYS_CCSRBAR_PHYS_HIGH
1654
+ * 1ull) << 32 | CFG_SYS_CCSRBAR_PHYS_LOW )
1655
1655
1656
- - CONFIG_SYS_CCSRBAR_PHYS_HIGH :
1657
- Bits 33-36 of CONFIG_SYS_CCSRBAR_PHYS . This value is typically
1656
+ - CFG_SYS_CCSRBAR_PHYS_HIGH :
1657
+ Bits 33-36 of CFG_SYS_CCSRBAR_PHYS . This value is typically
1658
1658
either 0 (32-bit build) or 0xF (36-bit build). This macro is
1659
1659
used in assembly code, so it must not contain typecasts or
1660
1660
integer size suffixes (e.g. "ULL").
1661
1661
1662
- - CONFIG_SYS_CCSRBAR_PHYS_LOW :
1663
- Lower 32-bits of CONFIG_SYS_CCSRBAR_PHYS . This macro is
1662
+ - CFG_SYS_CCSRBAR_PHYS_LOW :
1663
+ Lower 32-bits of CFG_SYS_CCSRBAR_PHYS . This macro is
1664
1664
used in assembly code, so it must not contain typecasts or
1665
1665
integer size suffixes (e.g. "ULL").
1666
1666
1667
1667
- CONFIG_SYS_IMMR: Physical address of the Internal Memory.
1668
1668
DO NOT CHANGE unless you know exactly what you're
1669
1669
doing! (11-4) [MPC8xx systems only]
1670
1670
1671
- - CONFIG_SYS_INIT_RAM_ADDR :
1671
+ - CFG_SYS_INIT_RAM_ADDR :
1672
1672
1673
1673
Start address of memory area that can be used for
1674
1674
initial data and stack; please note that this must be
@@ -2737,7 +2737,7 @@ locked as (mis-) used as memory, etc.
2737
2737
cause you grief during the initial boot! It is frequently not
2738
2738
used.
2739
2739
2740
- CONFIG_SYS_INIT_RAM_ADDR should be somewhere that won't interfere
2740
+ CFG_SYS_INIT_RAM_ADDR should be somewhere that won't interfere
2741
2741
with your processor/board/system design. The default value
2742
2742
you will find in any recent u-boot distribution in
2743
2743
walnut.h should work for you. I'd set it to a value larger
0 commit comments