xref: /OK3568_Linux_fs/kernel/drivers/ata/pata_mpiix.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun // SPDX-License-Identifier: GPL-2.0-only
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * pata_mpiix.c 	- Intel MPIIX PATA for new ATA layer
4*4882a593Smuzhiyun  *			  (C) 2005-2006 Red Hat Inc
5*4882a593Smuzhiyun  *			  Alan Cox <alan@lxorguk.ukuu.org.uk>
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  * The MPIIX is different enough to the PIIX4 and friends that we give it
8*4882a593Smuzhiyun  * a separate driver. The old ide/pci code handles this by just not tuning
9*4882a593Smuzhiyun  * MPIIX at all.
10*4882a593Smuzhiyun  *
11*4882a593Smuzhiyun  * The MPIIX also differs in another important way from the majority of PIIX
12*4882a593Smuzhiyun  * devices. The chip is a bridge (pardon the pun) between the old world of
13*4882a593Smuzhiyun  * ISA IDE and PCI IDE. Although the ATA timings are PCI configured the actual
14*4882a593Smuzhiyun  * IDE controller is not decoded in PCI space and the chip does not claim to
15*4882a593Smuzhiyun  * be IDE class PCI. This requires slightly non-standard probe logic compared
16*4882a593Smuzhiyun  * with PCI IDE and also that we do not disable the device when our driver is
17*4882a593Smuzhiyun  * unloaded (as it has many other functions).
18*4882a593Smuzhiyun  *
19*4882a593Smuzhiyun  * The driver consciously keeps this logic internally to avoid pushing quirky
20*4882a593Smuzhiyun  * PATA history into the clean libata layer.
21*4882a593Smuzhiyun  *
22*4882a593Smuzhiyun  * Thinkpad specific note: If you boot an MPIIX using a thinkpad with a PCMCIA
23*4882a593Smuzhiyun  * hard disk present this driver will not detect it. This is not a bug. In this
24*4882a593Smuzhiyun  * configuration the secondary port of the MPIIX is disabled and the addresses
25*4882a593Smuzhiyun  * are decoded by the PCMCIA bridge and therefore are for a generic IDE driver
26*4882a593Smuzhiyun  * to operate.
27*4882a593Smuzhiyun  */
28*4882a593Smuzhiyun 
29*4882a593Smuzhiyun #include <linux/kernel.h>
30*4882a593Smuzhiyun #include <linux/module.h>
31*4882a593Smuzhiyun #include <linux/pci.h>
32*4882a593Smuzhiyun #include <linux/blkdev.h>
33*4882a593Smuzhiyun #include <linux/delay.h>
34*4882a593Smuzhiyun #include <scsi/scsi_host.h>
35*4882a593Smuzhiyun #include <linux/libata.h>
36*4882a593Smuzhiyun 
37*4882a593Smuzhiyun #define DRV_NAME "pata_mpiix"
38*4882a593Smuzhiyun #define DRV_VERSION "0.7.7"
39*4882a593Smuzhiyun 
40*4882a593Smuzhiyun enum {
41*4882a593Smuzhiyun 	IDETIM = 0x6C,		/* IDE control register */
42*4882a593Smuzhiyun 	IORDY = (1 << 1),
43*4882a593Smuzhiyun 	PPE = (1 << 2),
44*4882a593Smuzhiyun 	FTIM = (1 << 0),
45*4882a593Smuzhiyun 	ENABLED = (1 << 15),
46*4882a593Smuzhiyun 	SECONDARY = (1 << 14)
47*4882a593Smuzhiyun };
48*4882a593Smuzhiyun 
mpiix_pre_reset(struct ata_link * link,unsigned long deadline)49*4882a593Smuzhiyun static int mpiix_pre_reset(struct ata_link *link, unsigned long deadline)
50*4882a593Smuzhiyun {
51*4882a593Smuzhiyun 	struct ata_port *ap = link->ap;
52*4882a593Smuzhiyun 	struct pci_dev *pdev = to_pci_dev(ap->host->dev);
53*4882a593Smuzhiyun 	static const struct pci_bits mpiix_enable_bits = { 0x6D, 1, 0x80, 0x80 };
54*4882a593Smuzhiyun 
55*4882a593Smuzhiyun 	if (!pci_test_config_bits(pdev, &mpiix_enable_bits))
56*4882a593Smuzhiyun 		return -ENOENT;
57*4882a593Smuzhiyun 
58*4882a593Smuzhiyun 	return ata_sff_prereset(link, deadline);
59*4882a593Smuzhiyun }
60*4882a593Smuzhiyun 
61*4882a593Smuzhiyun /**
62*4882a593Smuzhiyun  *	mpiix_set_piomode	-	set initial PIO mode data
63*4882a593Smuzhiyun  *	@ap: ATA interface
64*4882a593Smuzhiyun  *	@adev: ATA device
65*4882a593Smuzhiyun  *
66*4882a593Smuzhiyun  *	Called to do the PIO mode setup. The MPIIX allows us to program the
67*4882a593Smuzhiyun  *	IORDY sample point (2-5 clocks), recovery (1-4 clocks) and whether
68*4882a593Smuzhiyun  *	prefetching or IORDY are used.
69*4882a593Smuzhiyun  *
70*4882a593Smuzhiyun  *	This would get very ugly because we can only program timing for one
71*4882a593Smuzhiyun  *	device at a time, the other gets PIO0. Fortunately libata calls
72*4882a593Smuzhiyun  *	our qc_issue command before a command is issued so we can flip the
73*4882a593Smuzhiyun  *	timings back and forth to reduce the pain.
74*4882a593Smuzhiyun  */
75*4882a593Smuzhiyun 
mpiix_set_piomode(struct ata_port * ap,struct ata_device * adev)76*4882a593Smuzhiyun static void mpiix_set_piomode(struct ata_port *ap, struct ata_device *adev)
77*4882a593Smuzhiyun {
78*4882a593Smuzhiyun 	int control = 0;
79*4882a593Smuzhiyun 	int pio = adev->pio_mode - XFER_PIO_0;
80*4882a593Smuzhiyun 	struct pci_dev *pdev = to_pci_dev(ap->host->dev);
81*4882a593Smuzhiyun 	u16 idetim;
82*4882a593Smuzhiyun 	static const	 /* ISP  RTC */
83*4882a593Smuzhiyun 	u8 timings[][2]	= { { 0, 0 },
84*4882a593Smuzhiyun 			    { 0, 0 },
85*4882a593Smuzhiyun 			    { 1, 0 },
86*4882a593Smuzhiyun 			    { 2, 1 },
87*4882a593Smuzhiyun 			    { 2, 3 }, };
88*4882a593Smuzhiyun 
89*4882a593Smuzhiyun 	pci_read_config_word(pdev, IDETIM, &idetim);
90*4882a593Smuzhiyun 
91*4882a593Smuzhiyun 	/* Mask the IORDY/TIME/PPE for this device */
92*4882a593Smuzhiyun 	if (adev->class == ATA_DEV_ATA)
93*4882a593Smuzhiyun 		control |= PPE;		/* Enable prefetch/posting for disk */
94*4882a593Smuzhiyun 	if (ata_pio_need_iordy(adev))
95*4882a593Smuzhiyun 		control |= IORDY;
96*4882a593Smuzhiyun 	if (pio > 1)
97*4882a593Smuzhiyun 		control |= FTIM;	/* This drive is on the fast timing bank */
98*4882a593Smuzhiyun 
99*4882a593Smuzhiyun 	/* Mask out timing and clear both TIME bank selects */
100*4882a593Smuzhiyun 	idetim &= 0xCCEE;
101*4882a593Smuzhiyun 	idetim &= ~(0x07  << (4 * adev->devno));
102*4882a593Smuzhiyun 	idetim |= control << (4 * adev->devno);
103*4882a593Smuzhiyun 
104*4882a593Smuzhiyun 	idetim |= (timings[pio][0] << 12) | (timings[pio][1] << 8);
105*4882a593Smuzhiyun 	pci_write_config_word(pdev, IDETIM, idetim);
106*4882a593Smuzhiyun 
107*4882a593Smuzhiyun 	/* We use ap->private_data as a pointer to the device currently
108*4882a593Smuzhiyun 	   loaded for timing */
109*4882a593Smuzhiyun 	ap->private_data = adev;
110*4882a593Smuzhiyun }
111*4882a593Smuzhiyun 
112*4882a593Smuzhiyun /**
113*4882a593Smuzhiyun  *	mpiix_qc_issue		-	command issue
114*4882a593Smuzhiyun  *	@qc: command pending
115*4882a593Smuzhiyun  *
116*4882a593Smuzhiyun  *	Called when the libata layer is about to issue a command. We wrap
117*4882a593Smuzhiyun  *	this interface so that we can load the correct ATA timings if
118*4882a593Smuzhiyun  *	necessary. Our logic also clears TIME0/TIME1 for the other device so
119*4882a593Smuzhiyun  *	that, even if we get this wrong, cycles to the other device will
120*4882a593Smuzhiyun  *	be made PIO0.
121*4882a593Smuzhiyun  */
122*4882a593Smuzhiyun 
mpiix_qc_issue(struct ata_queued_cmd * qc)123*4882a593Smuzhiyun static unsigned int mpiix_qc_issue(struct ata_queued_cmd *qc)
124*4882a593Smuzhiyun {
125*4882a593Smuzhiyun 	struct ata_port *ap = qc->ap;
126*4882a593Smuzhiyun 	struct ata_device *adev = qc->dev;
127*4882a593Smuzhiyun 
128*4882a593Smuzhiyun 	/* If modes have been configured and the channel data is not loaded
129*4882a593Smuzhiyun 	   then load it. We have to check if pio_mode is set as the core code
130*4882a593Smuzhiyun 	   does not set adev->pio_mode to XFER_PIO_0 while probing as would be
131*4882a593Smuzhiyun 	   logical */
132*4882a593Smuzhiyun 
133*4882a593Smuzhiyun 	if (adev->pio_mode && adev != ap->private_data)
134*4882a593Smuzhiyun 		mpiix_set_piomode(ap, adev);
135*4882a593Smuzhiyun 
136*4882a593Smuzhiyun 	return ata_sff_qc_issue(qc);
137*4882a593Smuzhiyun }
138*4882a593Smuzhiyun 
139*4882a593Smuzhiyun static struct scsi_host_template mpiix_sht = {
140*4882a593Smuzhiyun 	ATA_PIO_SHT(DRV_NAME),
141*4882a593Smuzhiyun };
142*4882a593Smuzhiyun 
143*4882a593Smuzhiyun static struct ata_port_operations mpiix_port_ops = {
144*4882a593Smuzhiyun 	.inherits	= &ata_sff_port_ops,
145*4882a593Smuzhiyun 	.qc_issue	= mpiix_qc_issue,
146*4882a593Smuzhiyun 	.cable_detect	= ata_cable_40wire,
147*4882a593Smuzhiyun 	.set_piomode	= mpiix_set_piomode,
148*4882a593Smuzhiyun 	.prereset	= mpiix_pre_reset,
149*4882a593Smuzhiyun 	.sff_data_xfer	= ata_sff_data_xfer32,
150*4882a593Smuzhiyun };
151*4882a593Smuzhiyun 
mpiix_init_one(struct pci_dev * dev,const struct pci_device_id * id)152*4882a593Smuzhiyun static int mpiix_init_one(struct pci_dev *dev, const struct pci_device_id *id)
153*4882a593Smuzhiyun {
154*4882a593Smuzhiyun 	/* Single threaded by the PCI probe logic */
155*4882a593Smuzhiyun 	struct ata_host *host;
156*4882a593Smuzhiyun 	struct ata_port *ap;
157*4882a593Smuzhiyun 	void __iomem *cmd_addr, *ctl_addr;
158*4882a593Smuzhiyun 	u16 idetim;
159*4882a593Smuzhiyun 	int cmd, ctl, irq;
160*4882a593Smuzhiyun 
161*4882a593Smuzhiyun 	ata_print_version_once(&dev->dev, DRV_VERSION);
162*4882a593Smuzhiyun 
163*4882a593Smuzhiyun 	host = ata_host_alloc(&dev->dev, 1);
164*4882a593Smuzhiyun 	if (!host)
165*4882a593Smuzhiyun 		return -ENOMEM;
166*4882a593Smuzhiyun 	ap = host->ports[0];
167*4882a593Smuzhiyun 
168*4882a593Smuzhiyun 	/* MPIIX has many functions which can be turned on or off according
169*4882a593Smuzhiyun 	   to other devices present. Make sure IDE is enabled before we try
170*4882a593Smuzhiyun 	   and use it */
171*4882a593Smuzhiyun 
172*4882a593Smuzhiyun 	pci_read_config_word(dev, IDETIM, &idetim);
173*4882a593Smuzhiyun 	if (!(idetim & ENABLED))
174*4882a593Smuzhiyun 		return -ENODEV;
175*4882a593Smuzhiyun 
176*4882a593Smuzhiyun 	/* See if it's primary or secondary channel... */
177*4882a593Smuzhiyun 	if (!(idetim & SECONDARY)) {
178*4882a593Smuzhiyun 		cmd = 0x1F0;
179*4882a593Smuzhiyun 		ctl = 0x3F6;
180*4882a593Smuzhiyun 		irq = 14;
181*4882a593Smuzhiyun 	} else {
182*4882a593Smuzhiyun 		cmd = 0x170;
183*4882a593Smuzhiyun 		ctl = 0x376;
184*4882a593Smuzhiyun 		irq = 15;
185*4882a593Smuzhiyun 	}
186*4882a593Smuzhiyun 
187*4882a593Smuzhiyun 	cmd_addr = devm_ioport_map(&dev->dev, cmd, 8);
188*4882a593Smuzhiyun 	ctl_addr = devm_ioport_map(&dev->dev, ctl, 1);
189*4882a593Smuzhiyun 	if (!cmd_addr || !ctl_addr)
190*4882a593Smuzhiyun 		return -ENOMEM;
191*4882a593Smuzhiyun 
192*4882a593Smuzhiyun 	ata_port_desc(ap, "cmd 0x%x ctl 0x%x", cmd, ctl);
193*4882a593Smuzhiyun 
194*4882a593Smuzhiyun 	/* We do our own plumbing to avoid leaking special cases for whacko
195*4882a593Smuzhiyun 	   ancient hardware into the core code. There are two issues to
196*4882a593Smuzhiyun 	   worry about.  #1 The chip is a bridge so if in legacy mode and
197*4882a593Smuzhiyun 	   without BARs set fools the setup.  #2 If you pci_disable_device
198*4882a593Smuzhiyun 	   the MPIIX your box goes castors up */
199*4882a593Smuzhiyun 
200*4882a593Smuzhiyun 	ap->ops = &mpiix_port_ops;
201*4882a593Smuzhiyun 	ap->pio_mask = ATA_PIO4;
202*4882a593Smuzhiyun 	ap->flags |= ATA_FLAG_SLAVE_POSS;
203*4882a593Smuzhiyun 
204*4882a593Smuzhiyun 	ap->ioaddr.cmd_addr = cmd_addr;
205*4882a593Smuzhiyun 	ap->ioaddr.ctl_addr = ctl_addr;
206*4882a593Smuzhiyun 	ap->ioaddr.altstatus_addr = ctl_addr;
207*4882a593Smuzhiyun 
208*4882a593Smuzhiyun 	/* Let libata fill in the port details */
209*4882a593Smuzhiyun 	ata_sff_std_ports(&ap->ioaddr);
210*4882a593Smuzhiyun 
211*4882a593Smuzhiyun 	/* activate host */
212*4882a593Smuzhiyun 	return ata_host_activate(host, irq, ata_sff_interrupt, IRQF_SHARED,
213*4882a593Smuzhiyun 				 &mpiix_sht);
214*4882a593Smuzhiyun }
215*4882a593Smuzhiyun 
216*4882a593Smuzhiyun static const struct pci_device_id mpiix[] = {
217*4882a593Smuzhiyun 	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_82371MX), },
218*4882a593Smuzhiyun 
219*4882a593Smuzhiyun 	{ },
220*4882a593Smuzhiyun };
221*4882a593Smuzhiyun 
222*4882a593Smuzhiyun static struct pci_driver mpiix_pci_driver = {
223*4882a593Smuzhiyun 	.name 		= DRV_NAME,
224*4882a593Smuzhiyun 	.id_table	= mpiix,
225*4882a593Smuzhiyun 	.probe 		= mpiix_init_one,
226*4882a593Smuzhiyun 	.remove		= ata_pci_remove_one,
227*4882a593Smuzhiyun #ifdef CONFIG_PM_SLEEP
228*4882a593Smuzhiyun 	.suspend	= ata_pci_device_suspend,
229*4882a593Smuzhiyun 	.resume		= ata_pci_device_resume,
230*4882a593Smuzhiyun #endif
231*4882a593Smuzhiyun };
232*4882a593Smuzhiyun 
233*4882a593Smuzhiyun module_pci_driver(mpiix_pci_driver);
234*4882a593Smuzhiyun 
235*4882a593Smuzhiyun MODULE_AUTHOR("Alan Cox");
236*4882a593Smuzhiyun MODULE_DESCRIPTION("low-level driver for Intel MPIIX");
237*4882a593Smuzhiyun MODULE_LICENSE("GPL");
238*4882a593Smuzhiyun MODULE_DEVICE_TABLE(pci, mpiix);
239*4882a593Smuzhiyun MODULE_VERSION(DRV_VERSION);
240