123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- #ifndef _AHCI_H_
- #define _AHCI_H_
- #include <pci.h>
- #define AHCI_PCI_BAR 0x24
- #define AHCI_MAX_SG 56
- #define AHCI_CMD_SLOT_SZ 32
- #define AHCI_MAX_CMD_SLOT 32
- #define AHCI_RX_FIS_SZ 256
- #define AHCI_CMD_TBL_HDR 0x80
- #define AHCI_CMD_TBL_CDB 0x40
- #define AHCI_CMD_TBL_SZ AHCI_CMD_TBL_HDR + (AHCI_MAX_SG * 16)
- #define AHCI_PORT_PRIV_DMA_SZ (AHCI_CMD_SLOT_SZ * AHCI_MAX_CMD_SLOT + \
- AHCI_CMD_TBL_SZ + AHCI_RX_FIS_SZ)
- #define AHCI_CMD_ATAPI (1 << 5)
- #define AHCI_CMD_WRITE (1 << 6)
- #define AHCI_CMD_PREFETCH (1 << 7)
- #define AHCI_CMD_RESET (1 << 8)
- #define AHCI_CMD_CLR_BUSY (1 << 10)
- #define RX_FIS_D2H_REG 0x40
- #define HOST_CAP 0x00
- #define HOST_CTL 0x04
- #define HOST_IRQ_STAT 0x08
- #define HOST_PORTS_IMPL 0x0c
- #define HOST_VERSION 0x10
- #define HOST_CAP2 0x24
- #define HOST_RESET (1 << 0)
- #define HOST_IRQ_EN (1 << 1)
- #define HOST_AHCI_EN (1 << 31)
- #define PORT_LST_ADDR 0x00
- #define PORT_LST_ADDR_HI 0x04
- #define PORT_FIS_ADDR 0x08
- #define PORT_FIS_ADDR_HI 0x0c
- #define PORT_IRQ_STAT 0x10
- #define PORT_IRQ_MASK 0x14
- #define PORT_CMD 0x18
- #define PORT_TFDATA 0x20
- #define PORT_SIG 0x24
- #define PORT_CMD_ISSUE 0x38
- #define PORT_SCR 0x28
- #define PORT_SCR_STAT 0x28
- #define PORT_SCR_CTL 0x2c
- #define PORT_SCR_ERR 0x30
- #define PORT_SCR_ACT 0x34
- #ifdef CONFIG_SUNXI_AHCI
- #define PORT_P0DMACR 0x70
- #endif
- #define PORT_IRQ_COLD_PRES (1 << 31)
- #define PORT_IRQ_TF_ERR (1 << 30)
- #define PORT_IRQ_HBUS_ERR (1 << 29)
- #define PORT_IRQ_HBUS_DATA_ERR (1 << 28)
- #define PORT_IRQ_IF_ERR (1 << 27)
- #define PORT_IRQ_IF_NONFATAL (1 << 26)
- #define PORT_IRQ_OVERFLOW (1 << 24)
- #define PORT_IRQ_BAD_PMP (1 << 23)
- #define PORT_IRQ_PHYRDY (1 << 22)
- #define PORT_IRQ_DEV_ILCK (1 << 7)
- #define PORT_IRQ_CONNECT (1 << 6)
- #define PORT_IRQ_SG_DONE (1 << 5)
- #define PORT_IRQ_UNK_FIS (1 << 4)
- #define PORT_IRQ_SDB_FIS (1 << 3)
- #define PORT_IRQ_DMAS_FIS (1 << 2)
- #define PORT_IRQ_PIOS_FIS (1 << 1)
- #define PORT_IRQ_D2H_REG_FIS (1 << 0)
- #define PORT_IRQ_FATAL PORT_IRQ_TF_ERR | PORT_IRQ_HBUS_ERR \
- | PORT_IRQ_HBUS_DATA_ERR | PORT_IRQ_IF_ERR
- #define DEF_PORT_IRQ PORT_IRQ_FATAL | PORT_IRQ_PHYRDY \
- | PORT_IRQ_CONNECT | PORT_IRQ_SG_DONE \
- | PORT_IRQ_UNK_FIS | PORT_IRQ_SDB_FIS \
- | PORT_IRQ_DMAS_FIS | PORT_IRQ_PIOS_FIS \
- | PORT_IRQ_D2H_REG_FIS
- #define PORT_SCR_STAT_DET_MASK 0x3
- #define PORT_SCR_STAT_DET_COMINIT 0x1
- #define PORT_SCR_STAT_DET_PHYRDY 0x3
- #define PORT_CMD_ATAPI (1 << 24)
- #define PORT_CMD_LIST_ON (1 << 15)
- #define PORT_CMD_FIS_ON (1 << 14)
- #define PORT_CMD_FIS_RX (1 << 4)
- #define PORT_CMD_CLO (1 << 3)
- #define PORT_CMD_POWER_ON (1 << 2)
- #define PORT_CMD_SPIN_UP (1 << 1)
- #define PORT_CMD_START (1 << 0)
- #define PORT_CMD_ICC_ACTIVE (0x1 << 28)
- #define PORT_CMD_ICC_PARTIAL (0x2 << 28)
- #define PORT_CMD_ICC_SLUMBER (0x6 << 28)
- #define AHCI_MAX_PORTS 32
- #define ATA_FLAG_SATA (1 << 3)
- #define ATA_FLAG_NO_LEGACY (1 << 4)
- #define ATA_FLAG_MMIO (1 << 6)
- #define ATA_FLAG_SATA_RESET (1 << 7)
- #define ATA_FLAG_PIO_DMA (1 << 8)
- #define ATA_FLAG_NO_ATAPI (1 << 11)
- struct ahci_cmd_hdr {
- u32 opts;
- u32 status;
- u32 tbl_addr;
- u32 tbl_addr_hi;
- u32 reserved[4];
- };
- struct ahci_sg {
- u32 addr;
- u32 addr_hi;
- u32 reserved;
- u32 flags_size;
- };
- struct ahci_ioports {
- void __iomem *cmd_addr;
- void __iomem *scr_addr;
- void __iomem *port_mmio;
- struct ahci_cmd_hdr *cmd_slot;
- struct ahci_sg *cmd_tbl_sg;
- ulong cmd_tbl;
- u32 rx_fis;
- };
- struct ahci_probe_ent {
- #if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
- struct udevice *dev;
- #else
- pci_dev_t dev;
- #endif
- struct ahci_ioports port[AHCI_MAX_PORTS];
- u32 n_ports;
- u32 hard_port_no;
- u32 host_flags;
- u32 host_set_flags;
- void __iomem *mmio_base;
- u32 pio_mask;
- u32 udma_mask;
- u32 flags;
- u32 cap;
- u32 port_map;
- u32 link_port_map;
- };
- int ahci_init(void __iomem *base);
- int ahci_reset(void __iomem *base);
- #endif
|