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