diff options
author | wdenk <wdenk> | 2004-08-02 23:22:59 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-08-02 23:22:59 +0000 |
commit | 6705d81e90ed4466d6e4f445104826096da0c521 (patch) | |
tree | 4ed03c864323dacd8609cb4f84a7a8000cea6792 /include/configs | |
parent | 68ceb29e7133a0f972f53d3d61fd61207374baec (diff) | |
download | u-boot-6705d81e90ed4466d6e4f445104826096da0c521.tar.gz |
* Patch by Andreas Engel, 12 Jul 2004:
Replaced hardcoded PL011 clock frequency with config variable.
Fixed wrong CONFIG_CMD_DFL doc.
* Patch by Thomas Viehweger, 09 Jun 2004:
make it possible to remove chpart when there is only one partition
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/integratorap.h | 1 | ||||
-rw-r--r-- | include/configs/integratorcp.h | 2 | ||||
-rw-r--r-- | include/configs/versatile.h | 3 |
3 files changed, 6 insertions, 0 deletions
diff --git a/include/configs/integratorap.h b/include/configs/integratorap.h index 1f0792f820..2674b52bf5 100644 --- a/include/configs/integratorap.h +++ b/include/configs/integratorap.h @@ -60,6 +60,7 @@ #define CFG_PL010_SERIAL #define CONFIG_CONS_INDEX 0 #define CONFIG_BAUDRATE 38400 +#define CONFIG_PL01x_PORTS { (void *) (CFG_SERIAL0), (void *) (CFG_SERIAL1) } #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } #define CFG_SERIAL0 0x16000000 #define CFG_SERIAL1 0x17000000 diff --git a/include/configs/integratorcp.h b/include/configs/integratorcp.h index eb814e7d67..136974846c 100644 --- a/include/configs/integratorcp.h +++ b/include/configs/integratorcp.h @@ -66,6 +66,8 @@ * NS16550 Configuration */ #define CFG_PL011_SERIAL +#define CONFIG_PL011_CLOCK 14745600 +#define CONFIG_PL01x_PORTS { (void *)CFG_SERIAL0, (void *)CFG_SERIAL1 } #define CONFIG_CONS_INDEX 0 #define CONFIG_BAUDRATE 38400 #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } diff --git a/include/configs/versatile.h b/include/configs/versatile.h index 8df0e46a90..49d72518f5 100644 --- a/include/configs/versatile.h +++ b/include/configs/versatile.h @@ -87,7 +87,10 @@ * NS16550 Configuration */ #define CFG_PL011_SERIAL +#define CONFIG_PL011_CLOCK 24000000 +#define CONFIG_PL01x_PORTS { (void *)CFG_SERIAL0, (void *)CFG_SERIAL1 } #define CONFIG_CONS_INDEX 0 + #define CONFIG_BAUDRATE 38400 #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } #define CFG_SERIAL0 0x101F1000 |