]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/ata/pata_marvell.c
ipv4: convert dst_metrics.refcnt from atomic_t to refcount_t
[mirror_ubuntu-artful-kernel.git] / drivers / ata / pata_marvell.c
CommitLineData
75742cb4
AC
1/*
2 * Marvell PATA driver.
3 *
4 * For the moment we drive the PATA port in legacy mode. That
5 * isn't making full use of the device functionality but it is
6 * easy to get working.
7 *
ab771630 8 * (c) 2006 Red Hat
75742cb4
AC
9 */
10
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/pci.h>
75742cb4
AC
14#include <linux/blkdev.h>
15#include <linux/delay.h>
16#include <linux/device.h>
17#include <scsi/scsi_host.h>
18#include <linux/libata.h>
19#include <linux/ata.h>
20
21#define DRV_NAME "pata_marvell"
5b66c829 22#define DRV_VERSION "0.1.6"
75742cb4
AC
23
24/**
5b66c829
AC
25 * marvell_pata_active - check if PATA is active
26 * @pdev: PCI device
75742cb4 27 *
5b66c829
AC
28 * Returns 1 if the PATA port may be active. We know how to check this
29 * for the 6145 but not the other devices
75742cb4
AC
30 */
31
5b66c829 32static int marvell_pata_active(struct pci_dev *pdev)
75742cb4 33{
5b66c829 34 int i;
75742cb4 35 u32 devices;
75742cb4 36 void __iomem *barp;
75742cb4 37
5b66c829
AC
38 /* We don't yet know how to do this for other devices */
39 if (pdev->device != 0x6145)
4fca377f 40 return 1;
75742cb4 41
6e9d8629 42 barp = pci_iomap(pdev, 5, 0x10);
75742cb4
AC
43 if (barp == NULL)
44 return -ENOMEM;
5b66c829 45
75742cb4
AC
46 printk("BAR5:");
47 for(i = 0; i <= 0x0F; i++)
90925d30 48 printk("%02X:%02X ", i, ioread8(barp + i));
75742cb4 49 printk("\n");
f20b16ff 50
90925d30 51 devices = ioread32(barp + 0x0C);
6e9d8629 52 pci_iounmap(pdev, barp);
f20b16ff 53
5b66c829
AC
54 if (devices & 0x10)
55 return 1;
56 return 0;
57}
58
59/**
2a2beac9 60 * marvell_pre_reset - probe begin
5b66c829
AC
61 * @link: link
62 * @deadline: deadline jiffies for the operation
63 *
64 * Perform the PATA port setup we need.
65 */
66
67static int marvell_pre_reset(struct ata_link *link, unsigned long deadline)
68{
69 struct ata_port *ap = link->ap;
70 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
71
72 if (pdev->device == 0x6145 && ap->port_no == 0 &&
73 !marvell_pata_active(pdev)) /* PATA enable ? */
74 return -ENOENT;
27c78b37 75
9363c382 76 return ata_sff_prereset(link, deadline);
307c6054 77}
75742cb4 78
307c6054
AC
79static int marvell_cable_detect(struct ata_port *ap)
80{
75742cb4
AC
81 /* Cable type */
82 switch(ap->port_no)
83 {
6e9d8629 84 case 0:
0d5ff566 85 if (ioread8(ap->ioaddr.bmdma_addr + 1) & 1)
307c6054
AC
86 return ATA_CBL_PATA40;
87 return ATA_CBL_PATA80;
6e9d8629 88 case 1: /* Legacy SATA port */
307c6054 89 return ATA_CBL_SATA;
75742cb4 90 }
d4b2bab4 91
307c6054
AC
92 BUG();
93 return 0; /* Our BUG macro needs the right markup */
75742cb4
AC
94}
95
75742cb4
AC
96/* No PIO or DMA methods needed for this device */
97
98static struct scsi_host_template marvell_sht = {
68d1d07b 99 ATA_BMDMA_SHT(DRV_NAME),
75742cb4
AC
100};
101
029cfd6b
TH
102static struct ata_port_operations marvell_ops = {
103 .inherits = &ata_bmdma_port_ops,
307c6054 104 .cable_detect = marvell_cable_detect,
887125e3 105 .prereset = marvell_pre_reset,
75742cb4
AC
106};
107
108
109/**
110 * marvell_init_one - Register Marvell ATA PCI device with kernel services
111 * @pdev: PCI device to register
112 * @ent: Entry in marvell_pci_tbl matching with @pdev
113 *
114 * Called from kernel PCI layer.
115 *
116 * LOCKING:
117 * Inherited from PCI layer (may sleep).
118 *
119 * RETURNS:
120 * Zero on success, or -ERRNO value.
121 */
122
123static int marvell_init_one (struct pci_dev *pdev, const struct pci_device_id *id)
124{
1626aeb8 125 static const struct ata_port_info info = {
1d2808fd 126 .flags = ATA_FLAG_SLAVE_POSS,
75742cb4 127
14bdef98
EIB
128 .pio_mask = ATA_PIO4,
129 .mwdma_mask = ATA_MWDMA2,
bf6263a8 130 .udma_mask = ATA_UDMA5,
75742cb4
AC
131
132 .port_ops = &marvell_ops,
133 };
1626aeb8 134 static const struct ata_port_info info_sata = {
75742cb4 135 /* Slave possible as its magically mapped not real */
1d2808fd 136 .flags = ATA_FLAG_SLAVE_POSS,
75742cb4 137
14bdef98
EIB
138 .pio_mask = ATA_PIO4,
139 .mwdma_mask = ATA_MWDMA2,
bf6263a8 140 .udma_mask = ATA_UDMA6,
75742cb4
AC
141
142 .port_ops = &marvell_ops,
143 };
1626aeb8 144 const struct ata_port_info *ppi[] = { &info, &info_sata };
6e9d8629 145
75742cb4 146 if (pdev->device == 0x6101)
1626aeb8 147 ppi[1] = &ata_dummy_port_info;
6e9d8629 148
5219d653 149#if IS_ENABLED(CONFIG_SATA_AHCI)
5b66c829
AC
150 if (!marvell_pata_active(pdev)) {
151 printk(KERN_INFO DRV_NAME ": PATA port not active, deferring to AHCI driver.\n");
152 return -ENODEV;
153 }
154#endif
1c5afdf7 155 return ata_pci_bmdma_init_one(pdev, ppi, &marvell_sht, NULL, 0);
75742cb4
AC
156}
157
158static const struct pci_device_id marvell_pci_tbl[] = {
159 { PCI_DEVICE(0x11AB, 0x6101), },
d36ee189
AC
160 { PCI_DEVICE(0x11AB, 0x6121), },
161 { PCI_DEVICE(0x11AB, 0x6123), },
75742cb4 162 { PCI_DEVICE(0x11AB, 0x6145), },
f920fe1c
PD
163 { PCI_DEVICE(0x1B4B, 0x91A0), },
164 { PCI_DEVICE(0x1B4B, 0x91A4), },
165
75742cb4
AC
166 { } /* terminate list */
167};
168
169static struct pci_driver marvell_pci_driver = {
170 .name = DRV_NAME,
171 .id_table = marvell_pci_tbl,
172 .probe = marvell_init_one,
173 .remove = ata_pci_remove_one,
58eb8cd5 174#ifdef CONFIG_PM_SLEEP
30ced0f0
AC
175 .suspend = ata_pci_device_suspend,
176 .resume = ata_pci_device_resume,
438ac6d5 177#endif
75742cb4
AC
178};
179
2fc75da0 180module_pci_driver(marvell_pci_driver);
75742cb4
AC
181
182MODULE_AUTHOR("Alan Cox");
183MODULE_DESCRIPTION("SCSI low-level driver for Marvell ATA in legacy mode");
184MODULE_LICENSE("GPL");
185MODULE_DEVICE_TABLE(pci, marvell_pci_tbl);
186MODULE_VERSION(DRV_VERSION);