diff options
| author | Dave Liu <r63238@freescale.com> | 2008-03-26 22:49:44 +0800 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-03-26 23:38:51 +0100 | 
| commit | c7057b529c3c3cb9c0ac9060686a4068f1491bbe (patch) | |
| tree | 8525c3cd0fabf30fe590d91cfb1902519191993b /disk/part.c | |
| parent | 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c (diff) | |
| download | olio-uboot-2014.01-c7057b529c3c3cb9c0ac9060686a4068f1491bbe.tar.xz olio-uboot-2014.01-c7057b529c3c3cb9c0ac9060686a4068f1491bbe.zip | |
ata: add the support for SATA framework
- add the SATA framework
- add the SATA command line
Signed-off-by: Dave Liu <daveliu@freescale.com>
Diffstat (limited to 'disk/part.c')
| -rw-r--r-- | disk/part.c | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/disk/part.c b/disk/part.c index 56b9427c2..3c71208a1 100644 --- a/disk/part.c +++ b/disk/part.c @@ -35,6 +35,7 @@  #endif  #if (defined(CONFIG_CMD_IDE) || \ +     defined(CONFIG_CMD_SATA) || \       defined(CONFIG_CMD_SCSI) || \       defined(CONFIG_CMD_USB) || \       defined(CONFIG_MMC) || \ @@ -49,6 +50,9 @@ static const struct block_drvr block_drvr[] = {  #if defined(CONFIG_CMD_IDE)  	{ .name = "ide", .get_dev = ide_get_dev, },  #endif +#if defined(CONFIG_CMD_SATA) +	{.name = "sata", .get_dev = sata_get_dev, }, +#endif  #if defined(CONFIG_CMD_SCSI)  	{ .name = "scsi", .get_dev = scsi_get_dev, },  #endif @@ -87,6 +91,7 @@ block_dev_desc_t *get_dev(char* ifname, int dev)  #endif  #if (defined(CONFIG_CMD_IDE) || \ +     defined(CONFIG_CMD_SATA) || \       defined(CONFIG_CMD_SCSI) || \       defined(CONFIG_CMD_USB) || \       defined(CONFIG_MMC) || \ @@ -116,6 +121,12 @@ void dev_print (block_dev_desc_t *dev_desc)  			dev_desc->vendor,  			dev_desc->revision,  			dev_desc->product); +	} +	if (dev_desc->if_type==IF_TYPE_SATA) { +		printf ("Model: %s Firm: %s Ser#: %s\n", +			dev_desc->vendor, +			dev_desc->revision, +			dev_desc->product);  	} else {  		printf ("Vendor: %s Prod.: %s Rev: %s\n",  			dev_desc->vendor, @@ -177,6 +188,7 @@ void dev_print (block_dev_desc_t *dev_desc)  #endif  #if (defined(CONFIG_CMD_IDE) || \ +     defined(CONFIG_CMD_SATA) || \       defined(CONFIG_CMD_SCSI) || \       defined(CONFIG_CMD_USB) || \       defined(CONFIG_MMC)		|| \ @@ -271,6 +283,8 @@ static void print_part_header (const char *type, block_dev_desc_t * dev_desc)  	switch (dev_desc->if_type) {  		case IF_TYPE_IDE:  	puts ("IDE");  					break; +		case IF_TYPE_SATA:	puts ("SATA"); +					break;  		case IF_TYPE_SCSI: 	puts ("SCSI");  					break;  		case IF_TYPE_ATAPI:	puts ("ATAPI"); |