ahci.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. /*
  2. * Copyright (c) 2006-2020, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-08-19 lizhirui porting to ls2k
  9. */
  10. #ifndef _AHCI_H_
  11. #define _AHCI_H_
  12. #define AHCI_PCI_BAR 0x24
  13. #define AHCI_MAX_SG 56 /* hardware max is 64K */
  14. #define AHCI_CMD_SLOT_SZ 32
  15. #define AHCI_MAX_CMD_SLOT 32
  16. #define AHCI_RX_FIS_SZ 256
  17. #define AHCI_CMD_TBL_HDR 0x80
  18. #define AHCI_CMD_TBL_CDB 0x40
  19. #define AHCI_CMD_TBL_SZ AHCI_CMD_TBL_HDR + (AHCI_MAX_SG * 16)
  20. #define AHCI_PORT_PRIV_DMA_SZ (AHCI_CMD_SLOT_SZ * AHCI_MAX_CMD_SLOT + \
  21. AHCI_CMD_TBL_SZ + AHCI_RX_FIS_SZ)
  22. #define AHCI_CMD_ATAPI (1 << 5)
  23. #define AHCI_CMD_WRITE (1 << 6)
  24. #define AHCI_CMD_PREFETCH (1 << 7)
  25. #define AHCI_CMD_RESET (1 << 8)
  26. #define AHCI_CMD_CLR_BUSY (1 << 10)
  27. #define RX_FIS_D2H_REG 0x40 /* offset of D2H Register FIS data */
  28. /* Global controller registers */
  29. #define HOST_CAP 0x00 /* host capabilities */
  30. #define HOST_CTL 0x04 /* global host control */
  31. #define HOST_IRQ_STAT 0x08 /* interrupt status */
  32. #define HOST_PORTS_IMPL 0x0c /* bitmap of implemented ports */
  33. #define HOST_VERSION 0x10 /* AHCI spec. version compliancy */
  34. #define HOST_CAP2 0x24 /* host capabilities, extended */
  35. /* HOST_CTL bits */
  36. #define HOST_RESET (1 << 0) /* reset controller; self-clear */
  37. #define HOST_IRQ_EN (1 << 1) /* global IRQ enable */
  38. #define HOST_AHCI_EN (1 << 31) /* AHCI enabled */
  39. /* Registers for each SATA port */
  40. #define PORT_LST_ADDR 0x00 /* command list DMA addr */
  41. #define PORT_LST_ADDR_HI 0x04 /* command list DMA addr hi */
  42. #define PORT_FIS_ADDR 0x08 /* FIS rx buf addr */
  43. #define PORT_FIS_ADDR_HI 0x0c /* FIS rx buf addr hi */
  44. #define PORT_IRQ_STAT 0x10 /* interrupt status */
  45. #define PORT_IRQ_MASK 0x14 /* interrupt enable/disable mask */
  46. #define PORT_CMD 0x18 /* port command */
  47. #define PORT_TFDATA 0x20 /* taskfile data */
  48. #define PORT_SIG 0x24 /* device TF signature */
  49. #define PORT_CMD_ISSUE 0x38 /* command issue */
  50. #define PORT_SCR 0x28 /* SATA phy register block */
  51. #define PORT_SCR_STAT 0x28 /* SATA phy register: SStatus */
  52. #define PORT_SCR_CTL 0x2c /* SATA phy register: SControl */
  53. #define PORT_SCR_ERR 0x30 /* SATA phy register: SError */
  54. #define PORT_SCR_ACT 0x34 /* SATA phy register: SActive */
  55. #ifdef CONFIG_SUNXI_AHCI
  56. #define PORT_P0DMACR 0x70 /* SUNXI specific "DMA register" */
  57. #endif
  58. /* PORT_IRQ_{STAT,MASK} bits */
  59. #define PORT_IRQ_COLD_PRES (1 << 31) /* cold presence detect */
  60. #define PORT_IRQ_TF_ERR (1 << 30) /* task file error */
  61. #define PORT_IRQ_HBUS_ERR (1 << 29) /* host bus fatal error */
  62. #define PORT_IRQ_HBUS_DATA_ERR (1 << 28) /* host bus data error */
  63. #define PORT_IRQ_IF_ERR (1 << 27) /* interface fatal error */
  64. #define PORT_IRQ_IF_NONFATAL (1 << 26) /* interface non-fatal error */
  65. #define PORT_IRQ_OVERFLOW (1 << 24) /* xfer exhausted available S/G */
  66. #define PORT_IRQ_BAD_PMP (1 << 23) /* incorrect port multiplier */
  67. #define PORT_IRQ_PHYRDY (1 << 22) /* PhyRdy changed */
  68. #define PORT_IRQ_DEV_ILCK (1 << 7) /* device interlock */
  69. #define PORT_IRQ_CONNECT (1 << 6) /* port connect change status */
  70. #define PORT_IRQ_SG_DONE (1 << 5) /* descriptor processed */
  71. #define PORT_IRQ_UNK_FIS (1 << 4) /* unknown FIS rx'd */
  72. #define PORT_IRQ_SDB_FIS (1 << 3) /* Set Device Bits FIS rx'd */
  73. #define PORT_IRQ_DMAS_FIS (1 << 2) /* DMA Setup FIS rx'd */
  74. #define PORT_IRQ_PIOS_FIS (1 << 1) /* PIO Setup FIS rx'd */
  75. #define PORT_IRQ_D2H_REG_FIS (1 << 0) /* D2H Register FIS rx'd */
  76. #define PORT_IRQ_FATAL PORT_IRQ_TF_ERR | PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR | PORT_IRQ_IF_ERR
  77. #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
  78. /* PORT_SCR_STAT bits */
  79. #define PORT_SCR_STAT_DET_MASK 0x3
  80. #define PORT_SCR_STAT_DET_COMINIT 0x1
  81. #define PORT_SCR_STAT_DET_PHYRDY 0x3
  82. /* PORT_CMD bits */
  83. #define PORT_CMD_ATAPI (1 << 24) /* Device is ATAPI */
  84. #define PORT_CMD_LIST_ON (1 << 15) /* cmd list DMA engine running */
  85. #define PORT_CMD_FIS_ON (1 << 14) /* FIS DMA engine running */
  86. #define PORT_CMD_FIS_RX (1 << 4) /* Enable FIS receive DMA engine */
  87. #define PORT_CMD_CLO (1 << 3) /* Command list override */
  88. #define PORT_CMD_POWER_ON (1 << 2) /* Power up device */
  89. #define PORT_CMD_SPIN_UP (1 << 1) /* Spin up device */
  90. #define PORT_CMD_START (1 << 0) /* Enable port DMA engine */
  91. #define PORT_CMD_ICC_ACTIVE (0x1 << 28) /* Put i/f in active state */
  92. #define PORT_CMD_ICC_PARTIAL (0x2 << 28) /* Put i/f in partial state */
  93. #define PORT_CMD_ICC_SLUMBER (0x6 << 28) /* Put i/f in slumber state */
  94. #define AHCI_MAX_PORTS 32
  95. #define ATA_FLAG_SATA (1 << 3)
  96. #define ATA_FLAG_NO_LEGACY (1 << 4) /* no legacy mode check */
  97. #define ATA_FLAG_MMIO (1 << 6) /* use MMIO, not PIO */
  98. #define ATA_FLAG_SATA_RESET (1 << 7) /* (obsolete) use COMRESET */
  99. #define ATA_FLAG_PIO_DMA (1 << 8) /* PIO cmds via DMA */
  100. #define ATA_FLAG_NO_ATAPI (1 << 11) /* No ATAPI support */
  101. struct ahci_cmd_hdr
  102. {
  103. u32 opts;
  104. u32 status;
  105. u64 tbl_addr;
  106. //u32 tbl_addr_hi;
  107. u32 reserved[4];
  108. };
  109. struct ahci_sg
  110. {
  111. u64 addr;
  112. //u32 addr_hi;
  113. u32 reserved;
  114. u32 flags_size;
  115. };
  116. struct ahci_ioports
  117. {
  118. void __iomem *port_mmio;
  119. struct ahci_cmd_hdr *cmd_slot;
  120. struct ahci_sg *cmd_tbl_sg;
  121. ulong cmd_tbl;
  122. u32 rx_fis;
  123. };
  124. /**
  125. * struct ahci_uc_priv - information about an AHCI controller
  126. *
  127. * When driver model is used, this is accessible using dev_get_uclass_priv(dev)
  128. * where dev is the controller (although at present it sometimes stands alone).
  129. */
  130. struct ahci_uc_priv
  131. {
  132. struct rt_device parent;
  133. struct ahci_ioports port[AHCI_MAX_PORTS];
  134. u16 *ataid[AHCI_MAX_PORTS];
  135. u32 n_ports;
  136. u32 hard_port_no;
  137. u32 host_flags;
  138. u32 host_set_flags;
  139. void *mmio_base;
  140. u32 pio_mask;
  141. u32 udma_mask;
  142. u32 flags;
  143. u32 cap; /* cache of HOST_CAP register */
  144. u32 port_map; /* cache of HOST_PORTS_IMPL reg */
  145. u32 link_port_map; /*linkup port map*/
  146. };
  147. struct ahci_ops
  148. {
  149. /**
  150. * reset() - reset the controller
  151. *
  152. * @dev: Controller to reset
  153. * @return 0 if OK, -ve on error
  154. */
  155. int (*reset)(struct rt_device *dev);
  156. /**
  157. * port_status() - get the status of a SATA port
  158. *
  159. * @dev: Controller to reset
  160. * @port: Port number to check (0 for first)
  161. * @return 0 if detected, -ENXIO if nothing on port, other -ve on error
  162. */
  163. int (*port_status)(struct rt_device *dev, int port);
  164. /**
  165. * scan() - scan SATA ports
  166. *
  167. * @dev: Controller to scan
  168. * @return 0 if OK, -ve on error
  169. */
  170. int (*scan)(struct rt_device *dev);
  171. };
  172. #define ahci_get_ops(dev) ((struct ahci_ops *)(dev)->driver->ops)
  173. /**
  174. * sata_reset() - reset the controller
  175. *
  176. * @dev: Controller to reset
  177. * @return 0 if OK, -ve on error
  178. */
  179. int sata_reset(struct rt_device *dev);
  180. /**
  181. * sata_port_status() - get the status of a SATA port
  182. *
  183. * @dev: Controller to reset
  184. * @port: Port number to check (0 for first)
  185. * @return 0 if detected, -ENXIO if nothin on port, other -ve on error
  186. */
  187. int sata_dm_port_status(struct rt_device *dev, int port);
  188. /**
  189. * sata_scan() - scan SATA ports
  190. *
  191. * @dev: Controller to scan
  192. * @return 0 if OK, -ve on error
  193. */
  194. int sata_scan(struct rt_device *dev);
  195. int ahci_init(void __iomem *base);
  196. int ahci_reset(void __iomem *base);
  197. /**
  198. * ahci_init_one_dm() - set up a single AHCI port
  199. *
  200. * @dev: Controller to init
  201. */
  202. int ahci_init_one_dm(struct rt_device *dev);
  203. /**
  204. * ahci_start_ports_dm() - start all AHCI ports for a controller
  205. *
  206. * @dev: Controller containing ports to start
  207. */
  208. int ahci_start_ports_dm(struct rt_device *dev);
  209. /**
  210. * ahci_init_dm() - init AHCI for a controller, finding all ports
  211. *
  212. * @dev: Device to init
  213. */
  214. int ahci_init_dm(struct rt_device *dev, void __iomem *base);
  215. /**
  216. * ahci_bind_scsi() - bind a new SCSI bus as a child
  217. *
  218. * Note that the SCSI bus device will itself bind block devices
  219. *
  220. * @ahci_dev: AHCI parent device
  221. * @devp: Returns new SCSI bus device
  222. * @return 0 if OK, -ve on error
  223. */
  224. int ahci_bind_scsi(struct rt_device *ahci_dev, struct rt_device **devp);
  225. /**
  226. * ahci_probe_scsi() - probe and scan the attached SCSI bus
  227. *
  228. * Note that the SCSI device will itself bind block devices for any storage
  229. * devices it finds.
  230. *
  231. * @ahci_dev: AHCI parent device
  232. * @base: Base address of AHCI port
  233. * @return 0 if OK, -ve on error
  234. */
  235. int ahci_probe_scsi(struct rt_device *ahci_dev, ulong base);
  236. /**
  237. * ahci_probe_scsi_pci() - probe and scan the attached SCSI bus on PCI
  238. *
  239. * Note that the SCSI device will itself bind block devices for any storage
  240. * devices it finds.
  241. *
  242. * @ahci_dev: AHCI parent device
  243. * @return 0 if OK, -ve on error
  244. */
  245. int ahci_probe_scsi_pci(struct rt_device *ahci_dev);
  246. #endif