GNU Linux-libre 4.14.290-gnu1
[releases.git] / drivers / ata / pata_marvell.c
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  *
8  *      (c) 2006 Red Hat
9  */
10
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/pci.h>
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"
22 #define DRV_VERSION     "0.1.6"
23
24 /**
25  *      marvell_pata_active     -       check if PATA is active
26  *      @pdev: PCI device
27  *
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
30  */
31
32 static int marvell_pata_active(struct pci_dev *pdev)
33 {
34         int i;
35         u32 devices;
36         void __iomem *barp;
37
38         /* We don't yet know how to do this for other devices */
39         if (pdev->device != 0x6145)
40                 return 1;
41
42         barp = pci_iomap(pdev, 5, 0x10);
43         if (barp == NULL)
44                 return -ENOMEM;
45
46         printk("BAR5:");
47         for(i = 0; i <= 0x0F; i++)
48                 printk("%02X:%02X ", i, ioread8(barp + i));
49         printk("\n");
50
51         devices = ioread32(barp + 0x0C);
52         pci_iounmap(pdev, barp);
53
54         if (devices & 0x10)
55                 return 1;
56         return 0;
57 }
58
59 /**
60  *      marvell_pre_reset       -       probe begin
61  *      @link: link
62  *      @deadline: deadline jiffies for the operation
63  *
64  *      Perform the PATA port setup we need.
65  */
66
67 static 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;
75
76         return ata_sff_prereset(link, deadline);
77 }
78
79 static int marvell_cable_detect(struct ata_port *ap)
80 {
81         /* Cable type */
82         switch(ap->port_no)
83         {
84         case 0:
85                 if (!ap->ioaddr.bmdma_addr)
86                         return ATA_CBL_PATA_UNK;
87                 if (ioread8(ap->ioaddr.bmdma_addr + 1) & 1)
88                         return ATA_CBL_PATA40;
89                 return ATA_CBL_PATA80;
90         case 1: /* Legacy SATA port */
91                 return ATA_CBL_SATA;
92         }
93
94         BUG();
95         return 0;       /* Our BUG macro needs the right markup */
96 }
97
98 /* No PIO or DMA methods needed for this device */
99
100 static struct scsi_host_template marvell_sht = {
101         ATA_BMDMA_SHT(DRV_NAME),
102 };
103
104 static struct ata_port_operations marvell_ops = {
105         .inherits               = &ata_bmdma_port_ops,
106         .cable_detect           = marvell_cable_detect,
107         .prereset               = marvell_pre_reset,
108 };
109
110
111 /**
112  *      marvell_init_one - Register Marvell ATA PCI device with kernel services
113  *      @pdev: PCI device to register
114  *      @ent: Entry in marvell_pci_tbl matching with @pdev
115  *
116  *      Called from kernel PCI layer.
117  *
118  *      LOCKING:
119  *      Inherited from PCI layer (may sleep).
120  *
121  *      RETURNS:
122  *      Zero on success, or -ERRNO value.
123  */
124
125 static int marvell_init_one (struct pci_dev *pdev, const struct pci_device_id *id)
126 {
127         static const struct ata_port_info info = {
128                 .flags          = ATA_FLAG_SLAVE_POSS,
129
130                 .pio_mask       = ATA_PIO4,
131                 .mwdma_mask     = ATA_MWDMA2,
132                 .udma_mask      = ATA_UDMA5,
133
134                 .port_ops       = &marvell_ops,
135         };
136         static const struct ata_port_info info_sata = {
137                 /* Slave possible as its magically mapped not real */
138                 .flags          = ATA_FLAG_SLAVE_POSS,
139
140                 .pio_mask       = ATA_PIO4,
141                 .mwdma_mask     = ATA_MWDMA2,
142                 .udma_mask      = ATA_UDMA6,
143
144                 .port_ops       = &marvell_ops,
145         };
146         const struct ata_port_info *ppi[] = { &info, &info_sata };
147
148         if (pdev->device == 0x6101)
149                 ppi[1] = &ata_dummy_port_info;
150
151 #if IS_ENABLED(CONFIG_SATA_AHCI)
152         if (!marvell_pata_active(pdev)) {
153                 printk(KERN_INFO DRV_NAME ": PATA port not active, deferring to AHCI driver.\n");
154                 return -ENODEV;
155         }
156 #endif
157         return ata_pci_bmdma_init_one(pdev, ppi, &marvell_sht, NULL, 0);
158 }
159
160 static const struct pci_device_id marvell_pci_tbl[] = {
161         { PCI_DEVICE(0x11AB, 0x6101), },
162         { PCI_DEVICE(0x11AB, 0x6121), },
163         { PCI_DEVICE(0x11AB, 0x6123), },
164         { PCI_DEVICE(0x11AB, 0x6145), },
165         { PCI_DEVICE(0x1B4B, 0x91A0), },
166         { PCI_DEVICE(0x1B4B, 0x91A4), },
167
168         { }     /* terminate list */
169 };
170
171 static struct pci_driver marvell_pci_driver = {
172         .name                   = DRV_NAME,
173         .id_table               = marvell_pci_tbl,
174         .probe                  = marvell_init_one,
175         .remove                 = ata_pci_remove_one,
176 #ifdef CONFIG_PM_SLEEP
177         .suspend                = ata_pci_device_suspend,
178         .resume                 = ata_pci_device_resume,
179 #endif
180 };
181
182 module_pci_driver(marvell_pci_driver);
183
184 MODULE_AUTHOR("Alan Cox");
185 MODULE_DESCRIPTION("SCSI low-level driver for Marvell ATA in legacy mode");
186 MODULE_LICENSE("GPL");
187 MODULE_DEVICE_TABLE(pci, marvell_pci_tbl);
188 MODULE_VERSION(DRV_VERSION);