diff options
| author | Jin Zhengxiong <jason@bus.ap.freescale.net> | 2006-08-23 19:10:44 +0800 | 
|---|---|---|
| committer | Jon Loeliger <jdl@freescale.com> | 2006-08-23 10:39:01 -0500 | 
| commit | 4782ac80b02f0d01afd309e2200dd3c7037f2ba4 (patch) | |
| tree | b2c1dbf6a73617a5b1e0ff961f0d4e97342e33a2 /common/cmd_scsi.c | |
| parent | d8ea2acf5f137cae99417df4f573d036ee384668 (diff) | |
| download | olio-uboot-2014.01-4782ac80b02f0d01afd309e2200dd3c7037f2ba4.tar.xz olio-uboot-2014.01-4782ac80b02f0d01afd309e2200dd3c7037f2ba4.zip | |
Add AHCI support to u-boot
Add AHCI support in u-boot, enable the sata disk controllers which
following the AHCI protocol.
Signed-off-by:Jason Jin<jason.jin@freescale.com>
Diffstat (limited to 'common/cmd_scsi.c')
| -rw-r--r-- | common/cmd_scsi.c | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/common/cmd_scsi.c b/common/cmd_scsi.c index e8048611f..cc08743d5 100644 --- a/common/cmd_scsi.c +++ b/common/cmd_scsi.c @@ -43,8 +43,13 @@  #else  #define SCSI_DEV_ID		CONFIG_SCSI_DEV_ID  #endif +#elif defined CONFIG_SATA_ULI5288 + +#define SCSI_VEND_ID 0x10b9 +#define SCSI_DEV_ID  0x5288 +  #else -#error CONFIG_SCSI_SYM53C8XX must be defined +#error no scsi device defined  #endif |