diff options
author | Paul Burton <paul.burton@imgtec.com> | 2015-01-29 10:38:20 +0000 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2015-01-29 13:11:02 +0100 |
commit | ba21a453a58fc02b890f4064b293b1cb09fe7484 (patch) | |
tree | 0d58a392c462c7ebf135a1286e97e051d2391158 /include | |
parent | 8755d50706742e4d302a335f4e69dd6430ec12a2 (diff) | |
download | u-boot-imx-ba21a453a58fc02b890f4064b293b1cb09fe7484.zip u-boot-imx-ba21a453a58fc02b890f4064b293b1cb09fe7484.tar.gz u-boot-imx-ba21a453a58fc02b890f4064b293b1cb09fe7484.tar.bz2 |
malta: IDE support
This patch adds IDE support to the MIPS Malta board. The IDE controller
is enabled after probing the PCI bus and otherwise just makes use of
U-boot generic IDE support.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/malta.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/configs/malta.h b/include/configs/malta.h index 684d249..ed5da6c 100644 --- a/include/configs/malta.h +++ b/include/configs/malta.h @@ -107,6 +107,16 @@ (CONFIG_SYS_FLASH_BASE + (4 << 20) - CONFIG_ENV_SIZE) /* + * IDE/ATA + */ +#define CONFIG_SYS_IDE_MAXBUS 1 +#define CONFIG_SYS_IDE_MAXDEVICE 2 +#define CONFIG_SYS_ATA_BASE_ADDR CONFIG_SYS_ISA_IO_BASE_ADDRESS +#define CONFIG_SYS_ATA_IDE0_OFFSET 0x01f0 +#define CONFIG_SYS_ATA_DATA_OFFSET 0 +#define CONFIG_SYS_ATA_REG_OFFSET 0 + +/* * Commands */ #include <config_cmd_default.h> @@ -118,6 +128,7 @@ #define CONFIG_CMD_DATE #define CONFIG_CMD_DHCP +#define CONFIG_CMD_IDE #define CONFIG_CMD_PCI #define CONFIG_CMD_PING |