Dave Liu | 0ff7cba | 2008-03-27 18:50:41 +0800 | [diff] [blame] | 1 | #ifndef __ATA_PIIX_H__ |
| 2 | #define __ATA_PIIX_H__ |
mushtaq khan | 66d9dbe | 2007-04-20 14:23:02 +0530 | [diff] [blame] | 3 | |
| 4 | #if (DEBUG_SATA) |
| 5 | #define PRINTF(fmt,args...) printf (fmt ,##args) |
| 6 | #else |
| 7 | #define PRINTF(fmt,args...) |
| 8 | #endif |
| 9 | |
| 10 | struct sata_ioports { |
| 11 | unsigned long cmd_addr; |
| 12 | unsigned long data_addr; |
| 13 | unsigned long error_addr; |
| 14 | unsigned long feature_addr; |
| 15 | unsigned long nsect_addr; |
| 16 | unsigned long lbal_addr; |
| 17 | unsigned long lbam_addr; |
| 18 | unsigned long lbah_addr; |
| 19 | unsigned long device_addr; |
| 20 | unsigned long status_addr; |
| 21 | unsigned long command_addr; |
| 22 | unsigned long altstatus_addr; |
| 23 | unsigned long ctl_addr; |
| 24 | unsigned long bmdma_addr; |
| 25 | unsigned long scr_addr; |
| 26 | }; |
| 27 | |
| 28 | struct sata_port { |
Wolfgang Denk | 3162eb8 | 2007-05-15 23:38:05 +0200 | [diff] [blame] | 29 | unsigned char port_no; /* primary=0, secondary=1 */ |
| 30 | struct sata_ioports ioaddr; /* ATA cmd/ctl/dma reg blks */ |
mushtaq khan | 66d9dbe | 2007-04-20 14:23:02 +0530 | [diff] [blame] | 31 | unsigned char ctl_reg; |
| 32 | unsigned char last_ctl; |
Mushtaq Khan | 1f2a058 | 2007-06-30 18:50:48 +0200 | [diff] [blame] | 33 | unsigned char port_state; /* 1-port is available and */ |
| 34 | /* 0-port is not available */ |
mushtaq khan | 66d9dbe | 2007-04-20 14:23:02 +0530 | [diff] [blame] | 35 | unsigned char dev_mask; |
| 36 | }; |
| 37 | |
| 38 | /***********SATA LIBRARY SPECIFIC DEFINITIONS AND DECLARATIONS**************/ |
| 39 | #ifdef SATA_DECL /*SATA library specific declarations */ |
Graeme Russ | 31b9ab3 | 2009-08-23 12:59:51 +1000 | [diff] [blame] | 40 | inline void |
mushtaq khan | 66d9dbe | 2007-04-20 14:23:02 +0530 | [diff] [blame] | 41 | ata_dump_id (u16 * id) |
| 42 | { |
Dave Liu | 0ff7cba | 2008-03-27 18:50:41 +0800 | [diff] [blame] | 43 | PRINTF ("49 = 0x%04x " |
| 44 | "53 = 0x%04x " |
| 45 | "63 = 0x%04x " |
| 46 | "64 = 0x%04x " |
| 47 | "75 = 0x%04x \n", id[49], id[53], id[63], id[64], id[75]); |
| 48 | PRINTF ("80 = 0x%04x " |
| 49 | "81 = 0x%04x " |
| 50 | "82 = 0x%04x " |
| 51 | "83 = 0x%04x " |
| 52 | "84 = 0x%04x \n", id[80], id[81], id[82], id[83], id[84]); |
| 53 | PRINTF ("88 = 0x%04x " "93 = 0x%04x\n", id[88], id[93]); |
mushtaq khan | 66d9dbe | 2007-04-20 14:23:02 +0530 | [diff] [blame] | 54 | } |
| 55 | #endif |
| 56 | |
| 57 | #ifdef SATA_DECL /*SATA library specific declarations */ |
| 58 | int sata_bus_softreset (int num); |
| 59 | void sata_identify (int num, int dev); |
| 60 | void sata_port (struct sata_ioports *ioport); |
| 61 | void set_Feature_cmd (int num, int dev); |
| 62 | int sata_devchk (struct sata_ioports *ioaddr, int dev); |
| 63 | void dev_select (struct sata_ioports *ioaddr, int dev); |
| 64 | u8 sata_busy_wait (struct sata_ioports *ioaddr, int bits, unsigned int max); |
| 65 | u8 sata_chk_status (struct sata_ioports *ioaddr); |
Mushtaq Khan | 1f2a058 | 2007-06-30 18:50:48 +0200 | [diff] [blame] | 66 | ulong sata_read (int device, ulong blknr,lbaint_t blkcnt, void * buffer); |
| 67 | ulong sata_write (int device,ulong blknr, lbaint_t blkcnt, void * buffer); |
mushtaq khan | 66d9dbe | 2007-04-20 14:23:02 +0530 | [diff] [blame] | 68 | void msleep (int count); |
mushtaq khan | 66d9dbe | 2007-04-20 14:23:02 +0530 | [diff] [blame] | 69 | #endif |
| 70 | |
| 71 | /************DRIVER SPECIFIC DEFINITIONS AND DECLARATIONS**************/ |
| 72 | |
| 73 | #ifdef DRV_DECL /*Driver specific declaration */ |
Dave Liu | 8e9bb43 | 2008-03-26 22:50:45 +0800 | [diff] [blame] | 74 | int init_sata (int dev); |
mushtaq khan | 66d9dbe | 2007-04-20 14:23:02 +0530 | [diff] [blame] | 75 | #endif |
| 76 | |
| 77 | #ifdef DRV_DECL /*Defines Driver Specific variables */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 78 | struct sata_port port[CONFIG_SYS_SATA_MAXBUS]; |
mushtaq khan | 66d9dbe | 2007-04-20 14:23:02 +0530 | [diff] [blame] | 79 | #endif |
Dave Liu | 0ff7cba | 2008-03-27 18:50:41 +0800 | [diff] [blame] | 80 | |
| 81 | #endif /* __ATA_PIIX_H__ */ |