diff options
author | wdenk <wdenk> | 2003-03-28 14:40:36 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-03-28 14:40:36 +0000 |
commit | 506f044131515a80c7c8479a84df028be880b34e (patch) | |
tree | 69a2ef7bf6676dbeb0733043bb02ad8abe93a319 /include/configs/SXNI855T.h | |
parent | cdd8a0f1517b89349265465bf334db32e2304b45 (diff) | |
download | u-boot-imx-506f044131515a80c7c8479a84df028be880b34e.zip u-boot-imx-506f044131515a80c7c8479a84df028be880b34e.tar.gz u-boot-imx-506f044131515a80c7c8479a84df028be880b34e.tar.bz2 |
Patches by Dave Ellis, 18 Mar 2003 for SXNI855T board:
- fix SRAM and SDRAM memory sizing
- add status LED support
- add MAC address for second (SCC1) ethernet port
Update default environment for TQM8260 board
Diffstat (limited to 'include/configs/SXNI855T.h')
-rw-r--r-- | include/configs/SXNI855T.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/configs/SXNI855T.h b/include/configs/SXNI855T.h index 8725f27..a7f0c21 100644 --- a/include/configs/SXNI855T.h +++ b/include/configs/SXNI855T.h @@ -81,6 +81,32 @@ #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ #endif +/*----------------------------------------------------------------------- + * Definitions for status LED + */ +#define CONFIG_STATUS_LED 1 /* Status LED enabled */ + +# define STATUS_LED_PAR im_ioport.iop_papar +# define STATUS_LED_DIR im_ioport.iop_padir +# define STATUS_LED_ODR im_ioport.iop_paodr +# define STATUS_LED_DAT im_ioport.iop_padat + +# define STATUS_LED_BIT 0x8000 /* LED 0 is on PA.0 */ +# define STATUS_LED_PERIOD ((CFG_HZ / 2) / 5) /* blink at 5 Hz */ +# define STATUS_LED_STATE STATUS_LED_BLINKING + +# define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */ + +# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */ + +#ifdef DEV /* development (debug) settings */ +#define CONFIG_BOOT_LED_STATE STATUS_LED_OFF +#else /* production settings */ +#define CONFIG_BOOT_LED_STATE STATUS_LED_ON +#endif + +#define CONFIG_SHOW_BOOT_PROGRESS 1 + #define CONFIG_BOOTCOMMAND "bootm f8040000 f8100000" /* autoboot command */ #define CONFIG_BOOTARGS "root=/dev/ram ip=off" |