blob: 11f200a2a156fe69ba02434211f35237db4d855b [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_netcell.c - Netcell PATA driver
3 *
4 * (c) 2006 Red Hat <alan@redhat.com>
5 */
6
7#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/pci.h>
10#include <linux/init.h>
11#include <linux/blkdev.h>
12#include <linux/delay.h>
13#include <linux/device.h>
14#include <scsi/scsi_host.h>
15#include <linux/libata.h>
16#include <linux/ata.h>
17
18#define DRV_NAME "pata_netcell"
Alan Cox3b4ba592007-03-26 21:43:40 -080019#define DRV_VERSION "0.1.7"
Jeff Garzik669a5db2006-08-29 18:12:40 -040020
21/* No PIO or DMA methods needed for this device */
22
23static struct scsi_host_template netcell_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +090024 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -040025};
26
27static const struct ata_port_operations netcell_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -040028 /* Task file is PCI ATA format, use helpers */
29 .tf_load = ata_tf_load,
30 .tf_read = ata_tf_read,
31 .check_status = ata_check_status,
32 .exec_command = ata_exec_command,
33 .dev_select = ata_std_dev_select,
34
Tejun Heo6bd99b42008-03-25 12:22:48 +090035 .mode_filter = ata_pci_default_filter,
Jeff Garzik669a5db2006-08-29 18:12:40 -040036 .freeze = ata_bmdma_freeze,
37 .thaw = ata_bmdma_thaw,
Alan Cox3b4ba592007-03-26 21:43:40 -080038 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -040039 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Cox3b4ba592007-03-26 21:43:40 -080040 .cable_detect = ata_cable_80wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -040041
42 /* BMDMA handling is PCI ATA format, use helpers */
43 .bmdma_setup = ata_bmdma_setup,
44 .bmdma_start = ata_bmdma_start,
45 .bmdma_stop = ata_bmdma_stop,
46 .bmdma_status = ata_bmdma_status,
47 .qc_prep = ata_qc_prep,
48 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +090049 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -040050
Jeff Garzikbda30282006-09-27 05:41:13 -040051 /* IRQ-related hooks */
Jeff Garzik669a5db2006-08-29 18:12:40 -040052 .irq_handler = ata_interrupt,
53 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +090054 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -040055
56 /* Generic PATA PCI ATA helpers */
Alan Cox81ad1832007-08-22 22:55:41 +010057 .port_start = ata_sff_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -040058};
59
60
61/**
62 * netcell_init_one - Register Netcell ATA PCI device with kernel services
63 * @pdev: PCI device to register
64 * @ent: Entry in netcell_pci_tbl matching with @pdev
65 *
66 * Called from kernel PCI layer.
67 *
68 * LOCKING:
69 * Inherited from PCI layer (may sleep).
70 *
71 * RETURNS:
72 * Zero on success, or -ERRNO value.
73 */
74
75static int netcell_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
76{
77 static int printed_version;
Tejun Heo1626aeb2007-05-04 12:43:58 +020078 static const struct ata_port_info info = {
Jeff Garzik669a5db2006-08-29 18:12:40 -040079 .sht = &netcell_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -040080 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -040081 /* Actually we don't really care about these as the
82 firmware deals with it */
83 .pio_mask = 0x1f, /* pio0-4 */
84 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -040085 .udma_mask = ATA_UDMA5, /* UDMA 133 */
Jeff Garzik669a5db2006-08-29 18:12:40 -040086 .port_ops = &netcell_ops,
87 };
Tejun Heo1626aeb2007-05-04 12:43:58 +020088 const struct ata_port_info *port_info[] = { &info, NULL };
Tejun Heof08048e2008-03-25 12:22:47 +090089 int rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -040090
91 if (!printed_version++)
92 dev_printk(KERN_DEBUG, &pdev->dev,
93 "version " DRV_VERSION "\n");
94
Tejun Heof08048e2008-03-25 12:22:47 +090095 rc = pcim_enable_device(pdev);
96 if (rc)
97 return rc;
98
Jeff Garzik669a5db2006-08-29 18:12:40 -040099 /* Any chip specific setup/optimisation/messages here */
100 ata_pci_clear_simplex(pdev);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400101
Jeff Garzik669a5db2006-08-29 18:12:40 -0400102 /* And let the library code do the work */
Tejun Heo1626aeb2007-05-04 12:43:58 +0200103 return ata_pci_init_one(pdev, port_info);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400104}
105
106static const struct pci_device_id netcell_pci_tbl[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400107 { PCI_VDEVICE(NETCELL, PCI_DEVICE_ID_REVOLUTION), },
108
Jeff Garzik669a5db2006-08-29 18:12:40 -0400109 { } /* terminate list */
110};
111
112static struct pci_driver netcell_pci_driver = {
113 .name = DRV_NAME,
114 .id_table = netcell_pci_tbl,
115 .probe = netcell_init_one,
116 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900117#ifdef CONFIG_PM
Alan30ced0f2006-11-22 16:57:36 +0000118 .suspend = ata_pci_device_suspend,
119 .resume = ata_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900120#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400121};
122
123static int __init netcell_init(void)
124{
125 return pci_register_driver(&netcell_pci_driver);
126}
127
128static void __exit netcell_exit(void)
129{
130 pci_unregister_driver(&netcell_pci_driver);
131}
132
133module_init(netcell_init);
134module_exit(netcell_exit);
135
136MODULE_AUTHOR("Alan Cox");
137MODULE_DESCRIPTION("SCSI low-level driver for Netcell PATA RAID");
138MODULE_LICENSE("GPL");
139MODULE_DEVICE_TABLE(pci, netcell_pci_tbl);
140MODULE_VERSION(DRV_VERSION);
141