diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2010-10-27 21:24:06 +0000 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2010-10-27 21:24:06 +0000 |
commit | 69c4bd8bd3337d3027d1e9f3b05da7f25cd3cbc6 (patch) | |
tree | 4aa6a46e7ccba923903e66ede51eb993ef861c16 /package/uboot-kirkwood/files/board | |
parent | 2d35f3f02e2c0bf3834bafe7b78427e433227ea0 (diff) | |
download | upstream-69c4bd8bd3337d3027d1e9f3b05da7f25cd3cbc6.tar.gz upstream-69c4bd8bd3337d3027d1e9f3b05da7f25cd3cbc6.tar.bz2 upstream-69c4bd8bd3337d3027d1e9f3b05da7f25cd3cbc6.zip |
[uboot-kirkwood] Fixed support for Iomega
* Added configuration file.
* Set blue power led during bootup
* enabled pci express
Signed-off-by: Wojciech Dubowik <Wojciech.Dubowik@neratec.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23683 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uboot-kirkwood/files/board')
-rw-r--r-- | package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.c | 16 | ||||
-rw-r--r-- | package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.h | 4 |
2 files changed, 10 insertions, 10 deletions
diff --git a/package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.c b/package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.c index b188fa3ed0..ee5d5875ee 100644 --- a/package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.c +++ b/package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.c @@ -55,7 +55,7 @@ int board_init(void) MPP9_TW_SCK, MPP10_UART0_TXD, MPP11_UART0_RXD, - MPP12_SD_CLK, + MPP12_GPO, MPP13_SD_CMD, MPP14_SD_D0, MPP15_SD_D1, @@ -84,14 +84,14 @@ int board_init(void) MPP38_GPIO, MPP39_TDM_SPI_CS0, MPP40_TDM_SPI_SCK, - MPP41_TDM_SPI_MISO, - MPP42_TDM_SPI_MOSI, - MPP43_TDM_CODEC_INTn, + MPP41_GPIO, + MPP42_GPIO, + MPP43_GPIO, MPP44_GPIO, - MPP45_TDM_PCLK, - MPP46_TDM_FS, - MPP47_TDM_DRX, - MPP48_TDM_DTX, + MPP45_GPIO, + MPP46_GPIO, + MPP47_GPIO, + MPP48_GPIO, MPP49_GPIO, 0 }; diff --git a/package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.h b/package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.h index 835adbaf5f..4774c0757a 100644 --- a/package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.h +++ b/package/uboot-kirkwood/files/board/Marvell/iconnect/iconnect.h @@ -26,9 +26,9 @@ #define __ICONNECT_H #define ICONNECT_OE_LOW (~(1 << 7)) -#define ICONNECT_OE_HIGH (~(1 << 2 | 1 << 12)) +#define ICONNECT_OE_HIGH (~(1 << 10)) #define ICONNECT_OE_VAL_LOW (0) -#define ICONNECT_OE_VAL_HIGH (1 << 12) +#define ICONNECT_OE_VAL_HIGH (1 << 10) /* PHY related */ #define MV88E1116_LED_FCTRL_REG 10 |