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