summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Liu <r63238@freescale.com>2008-03-26 22:49:44 +0800
committerWolfgang Denk <wd@denx.de>2008-03-26 23:38:51 +0100
commitc7057b529c3c3cb9c0ac9060686a4068f1491bbe (patch)
tree8525c3cd0fabf30fe590d91cfb1902519191993b /include
parent83c7f470a4ce94f33600f11ae85ce4dcf00aa90c (diff)
downloadtalos-obmc-uboot-c7057b529c3c3cb9c0ac9060686a4068f1491bbe.tar.gz
talos-obmc-uboot-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 'include')
-rw-r--r--include/part.h3
-rw-r--r--include/sata.h6
2 files changed, 9 insertions, 0 deletions
diff --git a/include/part.h b/include/part.h
index 8407aa05d2..cb1b758334 100644
--- a/include/part.h
+++ b/include/part.h
@@ -49,6 +49,7 @@ typedef struct block_dev_desc {
unsigned long start,
lbaint_t blkcnt,
const void *buffer);
+ void *priv; /* driver private struct pointer */
}block_dev_desc_t;
/* Interface types: */
@@ -60,6 +61,7 @@ typedef struct block_dev_desc {
#define IF_TYPE_DOC 5
#define IF_TYPE_MMC 6
#define IF_TYPE_SD 7
+#define IF_TYPE_SATA 8
/* Part types */
#define PART_TYPE_UNKNOWN 0x00
@@ -92,6 +94,7 @@ typedef struct disk_partition {
/* Misc _get_dev functions */
block_dev_desc_t* get_dev(char* ifname, int dev);
block_dev_desc_t* ide_get_dev(int dev);
+block_dev_desc_t* sata_get_dev(int dev);
block_dev_desc_t* scsi_get_dev(int dev);
block_dev_desc_t* usb_stor_get_dev(int dev);
block_dev_desc_t* mmc_get_dev(int dev);
diff --git a/include/sata.h b/include/sata.h
new file mode 100644
index 0000000000..b4b702903e
--- /dev/null
+++ b/include/sata.h
@@ -0,0 +1,6 @@
+int init_sata(int dev);
+int scan_sata(int dev);
+ulong sata_read(int dev, ulong blknr, ulong blkcnt, void *buffer);
+ulong sata_write(int dev, ulong blknr, ulong blkcnt, const void *buffer);
+
+int sata_initialize(void);
OpenPOWER on IntegriCloud