libata.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:18k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  Copyright 2003-2005 Red Hat, Inc.  All rights reserved.
  3.  *  Copyright 2003-2005 Jeff Garzik
  4.  *
  5.  *
  6.  *  This program is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published by
  8.  *  the Free Software Foundation; either version 2, or (at your option)
  9.  *  any later version.
  10.  *
  11.  *  This program is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; see the file COPYING.  If not, write to
  18.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  *
  21.  *  libata documentation is available via 'make {ps|pdf}docs',
  22.  *  as Documentation/DocBook/libata.*
  23.  *
  24.  */
  25. #ifndef __LINUX_LIBATA_H__
  26. #define __LINUX_LIBATA_H__
  27. #include <linux/delay.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/pci.h>
  30. #include <asm/io.h>
  31. #include <linux/ata.h>
  32. #include <linux/workqueue.h>
  33. /*
  34.  * compile-time options
  35.  */
  36. #undef ATA_DEBUG /* debugging output */
  37. #undef ATA_VERBOSE_DEBUG /* yet more debugging output */
  38. #undef ATA_IRQ_TRAP /* define to ack screaming irqs */
  39. #undef ATA_NDEBUG /* define to disable quick runtime checks */
  40. #undef ATA_ENABLE_PATA /* define to enable PATA support in some
  41.  * low-level drivers */
  42. #undef ATAPI_ENABLE_DMADIR /* enables ATAPI DMADIR bridge support */
  43. /* note: prints function name for you */
  44. #ifdef ATA_DEBUG
  45. #define DPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
  46. #ifdef ATA_VERBOSE_DEBUG
  47. #define VPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
  48. #else
  49. #define VPRINTK(fmt, args...)
  50. #endif /* ATA_VERBOSE_DEBUG */
  51. #else
  52. #define DPRINTK(fmt, args...)
  53. #define VPRINTK(fmt, args...)
  54. #endif /* ATA_DEBUG */
  55. #ifdef ATA_NDEBUG
  56. #define assert(expr)
  57. #else
  58. #define assert(expr) 
  59.         if(unlikely(!(expr))) {                                   
  60.         printk(KERN_ERR "Assertion failed! %s,%s,%s,line=%dn", 
  61.         #expr,__FILE__,__FUNCTION__,__LINE__);          
  62.         }
  63. #endif
  64. /* defines only for the constants which don't work well as enums */
  65. #define ATA_TAG_POISON 0xfafbfcfdU
  66. /* move to PCI layer? */
  67. static inline struct device *pci_dev_to_dev(struct pci_dev *pdev)
  68. {
  69. return &pdev->dev;
  70. }
  71. enum {
  72. /* various global constants */
  73. LIBATA_MAX_PRD = ATA_MAX_PRD / 2,
  74. ATA_MAX_PORTS = 8,
  75. ATA_DEF_QUEUE = 1,
  76. ATA_MAX_QUEUE = 1,
  77. ATA_MAX_SECTORS = 200, /* FIXME */
  78. ATA_MAX_BUS = 2,
  79. ATA_DEF_BUSY_WAIT = 10000,
  80. ATA_SHORT_PAUSE = (HZ >> 6) + 1,
  81. ATA_SHT_EMULATED = 1,
  82. ATA_SHT_CMD_PER_LUN = 1,
  83. ATA_SHT_THIS_ID = -1,
  84. ATA_SHT_USE_CLUSTERING = 0,
  85. /* struct ata_device stuff */
  86. ATA_DFLAG_LBA48 = (1 << 0), /* device supports LBA48 */
  87. ATA_DFLAG_PIO = (1 << 1), /* device currently in PIO mode */
  88. ATA_DFLAG_LOCK_SECTORS = (1 << 2), /* don't adjust max_sectors */
  89. ATA_DEV_UNKNOWN = 0, /* unknown device */
  90. ATA_DEV_ATA = 1, /* ATA device */
  91. ATA_DEV_ATA_UNSUP = 2, /* ATA device (unsupported) */
  92. ATA_DEV_ATAPI = 3, /* ATAPI device */
  93. ATA_DEV_ATAPI_UNSUP = 4, /* ATAPI device (unsupported) */
  94. ATA_DEV_NONE = 5, /* no device */
  95. /* struct ata_port flags */
  96. ATA_FLAG_SLAVE_POSS = (1 << 1), /* host supports slave dev */
  97.     /* (doesn't imply presence) */
  98. ATA_FLAG_PORT_DISABLED = (1 << 2), /* port is disabled, ignore it */
  99. ATA_FLAG_SATA = (1 << 3),
  100. ATA_FLAG_NO_LEGACY = (1 << 4), /* no legacy mode check */
  101. ATA_FLAG_SRST = (1 << 5), /* use ATA SRST, not E.D.D. */
  102. ATA_FLAG_MMIO = (1 << 6), /* use MMIO, not PIO */
  103. ATA_FLAG_SATA_RESET = (1 << 7), /* use COMRESET */
  104. ATA_FLAG_PIO_DMA = (1 << 8), /* PIO cmds via DMA */
  105. ATA_FLAG_NOINTR = (1 << 9), /* FIXME: Remove this once
  106.      * proper HSM is in place. */
  107. ATA_QCFLAG_ACTIVE = (1 << 1), /* cmd not yet ack'd to scsi lyer */
  108. ATA_QCFLAG_SG = (1 << 3), /* have s/g table? */
  109. ATA_QCFLAG_SINGLE = (1 << 4), /* no s/g, just a single buffer */
  110. ATA_QCFLAG_DMAMAP = ATA_QCFLAG_SG | ATA_QCFLAG_SINGLE,
  111. /* various lengths of time */
  112. ATA_TMOUT_EDD = 5 * HZ, /* hueristic */
  113. ATA_TMOUT_PIO = 30 * HZ,
  114. ATA_TMOUT_BOOT = 30 * HZ, /* hueristic */
  115. ATA_TMOUT_BOOT_QUICK = 7 * HZ, /* hueristic */
  116. ATA_TMOUT_CDB = 30 * HZ,
  117. ATA_TMOUT_CDB_QUICK = 5 * HZ,
  118. /* ATA bus states */
  119. BUS_UNKNOWN = 0,
  120. BUS_DMA = 1,
  121. BUS_IDLE = 2,
  122. BUS_NOINTR = 3,
  123. BUS_NODATA = 4,
  124. BUS_TIMER = 5,
  125. BUS_PIO = 6,
  126. BUS_EDD = 7,
  127. BUS_IDENTIFY = 8,
  128. BUS_PACKET = 9,
  129. /* SATA port states */
  130. PORT_UNKNOWN = 0,
  131. PORT_ENABLED = 1,
  132. PORT_DISABLED = 2,
  133. /* encoding various smaller bitmaps into a single
  134.  * unsigned long bitmap
  135.  */
  136. ATA_SHIFT_UDMA = 0,
  137. ATA_SHIFT_MWDMA = 8,
  138. ATA_SHIFT_PIO = 11,
  139. };
  140. enum pio_task_states {
  141. PIO_ST_UNKNOWN,
  142. PIO_ST_IDLE,
  143. PIO_ST_POLL,
  144. PIO_ST_TMOUT,
  145. PIO_ST,
  146. PIO_ST_LAST,
  147. PIO_ST_LAST_POLL,
  148. PIO_ST_ERR,
  149. };
  150. /* forward declarations */
  151. struct scsi_device;
  152. struct ata_port_operations;
  153. struct ata_port;
  154. struct ata_queued_cmd;
  155. /* typedefs */
  156. typedef int (*ata_qc_cb_t) (struct ata_queued_cmd *qc, u8 drv_stat);
  157. struct ata_ioports {
  158. unsigned long cmd_addr;
  159. unsigned long data_addr;
  160. unsigned long error_addr;
  161. unsigned long feature_addr;
  162. unsigned long nsect_addr;
  163. unsigned long lbal_addr;
  164. unsigned long lbam_addr;
  165. unsigned long lbah_addr;
  166. unsigned long device_addr;
  167. unsigned long status_addr;
  168. unsigned long command_addr;
  169. unsigned long altstatus_addr;
  170. unsigned long ctl_addr;
  171. unsigned long bmdma_addr;
  172. unsigned long scr_addr;
  173. };
  174. struct ata_probe_ent {
  175. struct list_head node;
  176. struct device  *dev;
  177. struct ata_port_operations *port_ops;
  178. Scsi_Host_Template *sht;
  179. struct ata_ioports port[ATA_MAX_PORTS];
  180. unsigned int n_ports;
  181. unsigned int hard_port_no;
  182. unsigned int pio_mask;
  183. unsigned int mwdma_mask;
  184. unsigned int udma_mask;
  185. unsigned int legacy_mode;
  186. unsigned long irq;
  187. unsigned int irq_flags;
  188. unsigned long host_flags;
  189. void __iomem *mmio_base;
  190. void *private_data;
  191. };
  192. struct ata_host_set {
  193. spinlock_t lock;
  194. struct device  *dev;
  195. unsigned long irq;
  196. void __iomem *mmio_base;
  197. unsigned int n_ports;
  198. void *private_data;
  199. struct ata_port_operations *ops;
  200. struct ata_port * ports[0];
  201. };
  202. struct ata_queued_cmd {
  203. struct ata_port *ap;
  204. struct ata_device *dev;
  205. struct scsi_cmnd *scsicmd;
  206. void (*scsidone)(struct scsi_cmnd *);
  207. struct ata_taskfile tf;
  208. u8 cdb[ATAPI_CDB_LEN];
  209. unsigned long flags; /* ATA_QCFLAG_xxx */
  210. unsigned int tag;
  211. unsigned int n_elem;
  212. int dma_dir;
  213. unsigned int nsect;
  214. unsigned int cursect;
  215. unsigned int nbytes;
  216. unsigned int curbytes;
  217. unsigned int cursg;
  218. unsigned int cursg_ofs;
  219. struct scatterlist sgent;
  220. void *buf_virt;
  221. struct scatterlist *sg;
  222. ata_qc_cb_t complete_fn;
  223. struct completion *waiting;
  224. void *private_data;
  225. };
  226. struct ata_host_stats {
  227. unsigned long unhandled_irq;
  228. unsigned long idle_irq;
  229. unsigned long rw_reqbuf;
  230. };
  231. struct ata_device {
  232. u64 n_sectors; /* size of device, if ATA */
  233. unsigned long flags; /* ATA_DFLAG_xxx */
  234. unsigned int class; /* ATA_DEV_xxx */
  235. unsigned int devno; /* 0 or 1 */
  236. u16 id[ATA_ID_WORDS]; /* IDENTIFY xxx DEVICE data */
  237. u8 pio_mode;
  238. u8 dma_mode;
  239. u8 xfer_mode;
  240. unsigned int xfer_shift; /* ATA_SHIFT_xxx */
  241. /* cache info about current transfer mode */
  242. u8 xfer_protocol; /* taskfile xfer protocol */
  243. u8 read_cmd; /* opcode to use on read */
  244. u8 write_cmd; /* opcode to use on write */
  245. };
  246. struct ata_port {
  247. struct Scsi_Host *host; /* our co-allocated scsi host */
  248. struct ata_port_operations *ops;
  249. unsigned long flags; /* ATA_FLAG_xxx */
  250. unsigned int id; /* unique id req'd by scsi midlyr */
  251. unsigned int port_no; /* unique port #; from zero */
  252. unsigned int hard_port_no; /* hardware port #; from zero */
  253. struct ata_prd *prd;  /* our SG list */
  254. dma_addr_t prd_dma; /* and its DMA mapping */
  255. struct ata_ioports ioaddr; /* ATA cmd/ctl/dma register blocks */
  256. u8 ctl; /* cache of ATA control register */
  257. u8 last_ctl; /* Cache last written value */
  258. unsigned int bus_state;
  259. unsigned int port_state;
  260. unsigned int pio_mask;
  261. unsigned int mwdma_mask;
  262. unsigned int udma_mask;
  263. unsigned int cbl; /* cable type; ATA_CBL_xxx */
  264. unsigned int cdb_len;
  265. struct ata_device device[ATA_MAX_DEVICES];
  266. struct ata_queued_cmd qcmd[ATA_MAX_QUEUE];
  267. unsigned long qactive;
  268. unsigned int active_tag;
  269. struct ata_host_stats stats;
  270. struct ata_host_set *host_set;
  271. struct work_struct packet_task;
  272. struct work_struct pio_task;
  273. unsigned int pio_task_state;
  274. unsigned long pio_task_timeout;
  275. void *private_data;
  276. };
  277. struct ata_port_operations {
  278. void (*port_disable) (struct ata_port *);
  279. void (*dev_config) (struct ata_port *, struct ata_device *);
  280. void (*set_piomode) (struct ata_port *, struct ata_device *);
  281. void (*set_dmamode) (struct ata_port *, struct ata_device *);
  282. void (*tf_load) (struct ata_port *ap, struct ata_taskfile *tf);
  283. void (*tf_read) (struct ata_port *ap, struct ata_taskfile *tf);
  284. void (*exec_command)(struct ata_port *ap, struct ata_taskfile *tf);
  285. u8   (*check_status)(struct ata_port *ap);
  286. u8   (*check_altstatus)(struct ata_port *ap);
  287. u8   (*check_err)(struct ata_port *ap);
  288. void (*dev_select)(struct ata_port *ap, unsigned int device);
  289. void (*phy_reset) (struct ata_port *ap);
  290. void (*post_set_mode) (struct ata_port *ap);
  291. int (*check_atapi_dma) (struct ata_queued_cmd *qc);
  292. void (*bmdma_setup) (struct ata_queued_cmd *qc);
  293. void (*bmdma_start) (struct ata_queued_cmd *qc);
  294. void (*qc_prep) (struct ata_queued_cmd *qc);
  295. int (*qc_issue) (struct ata_queued_cmd *qc);
  296. void (*eng_timeout) (struct ata_port *ap);
  297. irqreturn_t (*irq_handler)(int, void *, struct pt_regs *);
  298. void (*irq_clear) (struct ata_port *);
  299. u32 (*scr_read) (struct ata_port *ap, unsigned int sc_reg);
  300. void (*scr_write) (struct ata_port *ap, unsigned int sc_reg,
  301.    u32 val);
  302. int (*port_start) (struct ata_port *ap);
  303. void (*port_stop) (struct ata_port *ap);
  304. void (*host_stop) (struct ata_host_set *host_set);
  305. void (*bmdma_stop) (struct ata_queued_cmd *qc);
  306. u8   (*bmdma_status) (struct ata_port *ap);
  307. };
  308. struct ata_port_info {
  309. Scsi_Host_Template *sht;
  310. unsigned long host_flags;
  311. unsigned long pio_mask;
  312. unsigned long mwdma_mask;
  313. unsigned long udma_mask;
  314. struct ata_port_operations *port_ops;
  315. };
  316. extern void ata_port_probe(struct ata_port *);
  317. extern void __sata_phy_reset(struct ata_port *ap);
  318. extern void sata_phy_reset(struct ata_port *ap);
  319. extern void ata_bus_reset(struct ata_port *ap);
  320. extern void ata_port_disable(struct ata_port *);
  321. extern void ata_std_ports(struct ata_ioports *ioaddr);
  322. #ifdef CONFIG_PCI
  323. extern int ata_pci_init_one (struct pci_dev *pdev, struct ata_port_info **port_info,
  324.      unsigned int n_ports);
  325. extern void ata_pci_remove_one (struct pci_dev *pdev);
  326. #endif /* CONFIG_PCI */
  327. extern int ata_device_add(struct ata_probe_ent *ent);
  328. extern void ata_host_set_remove(struct ata_host_set *host_set);
  329. extern int ata_scsi_detect(Scsi_Host_Template *sht);
  330. extern int ata_scsi_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
  331. extern int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *));
  332. extern int ata_scsi_error(struct Scsi_Host *host);
  333. extern int ata_scsi_release(struct Scsi_Host *host);
  334. extern unsigned int ata_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc);
  335. /*
  336.  * Default driver ops implementations
  337.  */
  338. extern void ata_tf_load(struct ata_port *ap, struct ata_taskfile *tf);
  339. extern void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
  340. extern void ata_tf_to_fis(struct ata_taskfile *tf, u8 *fis, u8 pmp);
  341. extern void ata_tf_from_fis(u8 *fis, struct ata_taskfile *tf);
  342. extern void ata_noop_dev_select (struct ata_port *ap, unsigned int device);
  343. extern void ata_std_dev_select (struct ata_port *ap, unsigned int device);
  344. extern u8 ata_check_status(struct ata_port *ap);
  345. extern u8 ata_altstatus(struct ata_port *ap);
  346. extern u8 ata_chk_err(struct ata_port *ap);
  347. extern void ata_exec_command(struct ata_port *ap, struct ata_taskfile *tf);
  348. extern int ata_port_start (struct ata_port *ap);
  349. extern void ata_port_stop (struct ata_port *ap);
  350. extern void ata_host_stop (struct ata_host_set *host_set);
  351. extern irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
  352. extern void ata_qc_prep(struct ata_queued_cmd *qc);
  353. extern int ata_qc_issue_prot(struct ata_queued_cmd *qc);
  354. extern void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf,
  355. unsigned int buflen);
  356. extern void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
  357.  unsigned int n_elem);
  358. extern unsigned int ata_dev_classify(struct ata_taskfile *tf);
  359. extern void ata_dev_id_string(u16 *id, unsigned char *s,
  360.       unsigned int ofs, unsigned int len);
  361. extern void ata_dev_config(struct ata_port *ap, unsigned int i);
  362. extern void ata_bmdma_setup (struct ata_queued_cmd *qc);
  363. extern void ata_bmdma_start (struct ata_queued_cmd *qc);
  364. extern void ata_bmdma_stop(struct ata_queued_cmd *qc);
  365. extern u8   ata_bmdma_status(struct ata_port *ap);
  366. extern void ata_bmdma_irq_clear(struct ata_port *ap);
  367. extern void ata_qc_complete(struct ata_queued_cmd *qc, u8 drv_stat);
  368. extern void ata_eng_timeout(struct ata_port *ap);
  369. extern void ata_scsi_simulate(u16 *id, struct scsi_cmnd *cmd,
  370.       void (*done)(struct scsi_cmnd *));
  371. extern int ata_std_bios_param(struct scsi_device *sdev,
  372.       struct block_device *bdev,
  373.       sector_t capacity, int geom[]);
  374. extern int ata_scsi_slave_config(struct scsi_device *sdev);
  375. #ifdef CONFIG_PCI
  376. struct pci_bits {
  377. unsigned int reg; /* PCI config register to read */
  378. unsigned int width; /* 1 (8 bit), 2 (16 bit), 4 (32 bit) */
  379. unsigned long mask;
  380. unsigned long val;
  381. };
  382. extern void ata_pci_host_stop (struct ata_host_set *host_set);
  383. extern struct ata_probe_ent *
  384. ata_pci_init_native_mode(struct pci_dev *pdev, struct ata_port_info **port);
  385. extern int pci_test_config_bits(struct pci_dev *pdev, struct pci_bits *bits);
  386. #endif /* CONFIG_PCI */
  387. static inline unsigned int ata_tag_valid(unsigned int tag)
  388. {
  389. return (tag < ATA_MAX_QUEUE) ? 1 : 0;
  390. }
  391. static inline unsigned int ata_dev_present(struct ata_device *dev)
  392. {
  393. return ((dev->class == ATA_DEV_ATA) ||
  394. (dev->class == ATA_DEV_ATAPI));
  395. }
  396. static inline u8 ata_chk_status(struct ata_port *ap)
  397. {
  398. return ap->ops->check_status(ap);
  399. }
  400. /**
  401.  * ata_pause - Flush writes and pause 400 nanoseconds.
  402.  * @ap: Port to wait for.
  403.  *
  404.  * LOCKING:
  405.  * Inherited from caller.
  406.  */
  407. static inline void ata_pause(struct ata_port *ap)
  408. {
  409. ata_altstatus(ap);
  410. ndelay(400);
  411. }
  412. /**
  413.  * ata_busy_wait - Wait for a port status register
  414.  * @ap: Port to wait for.
  415.  *
  416.  * Waits up to max*10 microseconds for the selected bits in the port's
  417.  * status register to be cleared.
  418.  * Returns final value of status register.
  419.  *
  420.  * LOCKING:
  421.  * Inherited from caller.
  422.  */
  423. static inline u8 ata_busy_wait(struct ata_port *ap, unsigned int bits,
  424.        unsigned int max)
  425. {
  426. u8 status;
  427. do {
  428. udelay(10);
  429. status = ata_chk_status(ap);
  430. max--;
  431. } while ((status & bits) && (max > 0));
  432. return status;
  433. }
  434. /**
  435.  * ata_wait_idle - Wait for a port to be idle.
  436.  * @ap: Port to wait for.
  437.  *
  438.  * Waits up to 10ms for port's BUSY and DRQ signals to clear.
  439.  * Returns final value of status register.
  440.  *
  441.  * LOCKING:
  442.  * Inherited from caller.
  443.  */
  444. static inline u8 ata_wait_idle(struct ata_port *ap)
  445. {
  446. u8 status = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
  447. if (status & (ATA_BUSY | ATA_DRQ)) {
  448. unsigned long l = ap->ioaddr.status_addr;
  449. printk(KERN_WARNING
  450.        "ATA: abnormal status 0x%X on port 0x%lXn",
  451.        status, l);
  452. }
  453. return status;
  454. }
  455. static inline void ata_qc_set_polling(struct ata_queued_cmd *qc)
  456. {
  457. qc->tf.ctl |= ATA_NIEN;
  458. }
  459. static inline struct ata_queued_cmd *ata_qc_from_tag (struct ata_port *ap,
  460.       unsigned int tag)
  461. {
  462. if (likely(ata_tag_valid(tag)))
  463. return &ap->qcmd[tag];
  464. return NULL;
  465. }
  466. static inline void ata_tf_init(struct ata_port *ap, struct ata_taskfile *tf, unsigned int device)
  467. {
  468. memset(tf, 0, sizeof(*tf));
  469. tf->ctl = ap->ctl;
  470. if (device == 0)
  471. tf->device = ATA_DEVICE_OBS;
  472. else
  473. tf->device = ATA_DEVICE_OBS | ATA_DEV1;
  474. }
  475. /**
  476.  * ata_irq_on - Enable interrupts on a port.
  477.  * @ap: Port on which interrupts are enabled.
  478.  *
  479.  * Enable interrupts on a legacy IDE device using MMIO or PIO,
  480.  * wait for idle, clear any pending interrupts.
  481.  *
  482.  * LOCKING:
  483.  * Inherited from caller.
  484.  */
  485. static inline u8 ata_irq_on(struct ata_port *ap)
  486. {
  487. struct ata_ioports *ioaddr = &ap->ioaddr;
  488. u8 tmp;
  489. ap->ctl &= ~ATA_NIEN;
  490. ap->last_ctl = ap->ctl;
  491. if (ap->flags & ATA_FLAG_MMIO)
  492. writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
  493. else
  494. outb(ap->ctl, ioaddr->ctl_addr);
  495. tmp = ata_wait_idle(ap);
  496. ap->ops->irq_clear(ap);
  497. return tmp;
  498. }
  499. /**
  500.  * ata_irq_ack - Acknowledge a device interrupt.
  501.  * @ap: Port on which interrupts are enabled.
  502.  *
  503.  * Wait up to 10 ms for legacy IDE device to become idle (BUSY
  504.  * or BUSY+DRQ clear).  Obtain dma status and port status from
  505.  * device.  Clear the interrupt.  Return port status.
  506.  *
  507.  * LOCKING:
  508.  */
  509. static inline u8 ata_irq_ack(struct ata_port *ap, unsigned int chk_drq)
  510. {
  511. unsigned int bits = chk_drq ? ATA_BUSY | ATA_DRQ : ATA_BUSY;
  512. u8 host_stat, post_stat, status;
  513. status = ata_busy_wait(ap, bits, 1000);
  514. if (status & bits)
  515. DPRINTK("abnormal status 0x%Xn", status);
  516. /* get controller status; clear intr, err bits */
  517. if (ap->flags & ATA_FLAG_MMIO) {
  518. void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
  519. host_stat = readb(mmio + ATA_DMA_STATUS);
  520. writeb(host_stat | ATA_DMA_INTR | ATA_DMA_ERR,
  521.        mmio + ATA_DMA_STATUS);
  522. post_stat = readb(mmio + ATA_DMA_STATUS);
  523. } else {
  524. host_stat = inb(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
  525. outb(host_stat | ATA_DMA_INTR | ATA_DMA_ERR,
  526.      ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
  527. post_stat = inb(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
  528. }
  529. VPRINTK("irq ack: host_stat 0x%X, new host_stat 0x%X, drv_stat 0x%Xn",
  530. host_stat, post_stat, status);
  531. return status;
  532. }
  533. static inline u32 scr_read(struct ata_port *ap, unsigned int reg)
  534. {
  535. return ap->ops->scr_read(ap, reg);
  536. }
  537. static inline void scr_write(struct ata_port *ap, unsigned int reg, u32 val)
  538. {
  539. ap->ops->scr_write(ap, reg, val);
  540. }
  541. static inline void scr_write_flush(struct ata_port *ap, unsigned int reg,
  542.    u32 val)
  543. {
  544. ap->ops->scr_write(ap, reg, val);
  545. (void) ap->ops->scr_read(ap, reg);
  546. }
  547. static inline unsigned int sata_dev_present(struct ata_port *ap)
  548. {
  549. return ((scr_read(ap, SCR_STATUS) & 0xf) == 0x3) ? 1 : 0;
  550. }
  551. static inline int ata_try_flush_cache(struct ata_device *dev)
  552. {
  553. return ata_id_wcache_enabled(dev->id) ||
  554.        ata_id_has_flush(dev->id) ||
  555.        ata_id_has_flush_ext(dev->id);
  556. }
  557. #endif /* __LINUX_LIBATA_H__ */