Blame view

drivers/ata/pata_opti.c 5.24 KB
09c434b8a   Thomas Gleixner   treewide: Add SPD...
1
  // SPDX-License-Identifier: GPL-2.0-only
669a5db41   Jeff Garzik   [libata] Add a bu...
2
3
4
  /*
   * pata_opti.c 	- ATI PATA for new ATA layer
   *			  (C) 2005 Red Hat Inc
669a5db41   Jeff Garzik   [libata] Add a bu...
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
   *
   * Based on
   *  linux/drivers/ide/pci/opti621.c		Version 0.7	Sept 10, 2002
   *
   *  Copyright (C) 1996-1998  Linus Torvalds & authors (see below)
   *
   * Authors:
   * Jaromir Koutek <miri@punknet.cz>,
   * Jan Harkes <jaharkes@cwi.nl>,
   * Mark Lord <mlord@pobox.com>
   * Some parts of code are from ali14xx.c and from rz1000.c.
   *
   * Also consulted the FreeBSD prototype driver by Kevin Day to try
   * and resolve some confusions. Further documentation can be found in
   * Ralf Brown's interrupt list
   *
   * If you have other variants of the Opti range (Viper/Vendetta) please
   * try this driver with those PCI idents and report back. For the later
   * chips see the pata_optidma driver
   *
   */
  
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/pci.h>
669a5db41   Jeff Garzik   [libata] Add a bu...
30
31
32
33
34
35
  #include <linux/blkdev.h>
  #include <linux/delay.h>
  #include <scsi/scsi_host.h>
  #include <linux/libata.h>
  
  #define DRV_NAME "pata_opti"
a0fcdc025   Jeff Garzik   [libata] Update s...
36
  #define DRV_VERSION "0.2.9"
669a5db41   Jeff Garzik   [libata] Add a bu...
37
38
39
40
41
42
43
44
45
46
47
  
  enum {
  	READ_REG	= 0,	/* index of Read cycle timing register */
  	WRITE_REG 	= 1,	/* index of Write cycle timing register */
  	CNTRL_REG 	= 3,	/* index of Control register */
  	STRAP_REG 	= 5,	/* index of Strap register */
  	MISC_REG 	= 6	/* index of Miscellaneous register */
  };
  
  /**
   *	opti_pre_reset		-	probe begin
cc0680a58   Tejun Heo   libata-link: link...
48
   *	@link: ATA link
d4b2bab4f   Tejun Heo   libata: add deadl...
49
   *	@deadline: deadline jiffies for the operation
669a5db41   Jeff Garzik   [libata] Add a bu...
50
51
52
   *
   *	Set up cable type and use generic probe init
   */
cc0680a58   Tejun Heo   libata-link: link...
53
  static int opti_pre_reset(struct ata_link *link, unsigned long deadline)
669a5db41   Jeff Garzik   [libata] Add a bu...
54
  {
cc0680a58   Tejun Heo   libata-link: link...
55
  	struct ata_port *ap = link->ap;
669a5db41   Jeff Garzik   [libata] Add a bu...
56
57
58
59
60
  	struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  	static const struct pci_bits opti_enable_bits[] = {
  		{ 0x45, 1, 0x80, 0x00 },
  		{ 0x40, 1, 0x08, 0x00 }
  	};
c961922b7   Alan Cox   [PATCH] libata-eh...
61
62
  	if (!pci_test_config_bits(pdev, &opti_enable_bits[ap->port_no]))
  		return -ENOENT;
d4b2bab4f   Tejun Heo   libata: add deadl...
63

9363c3825   Tejun Heo   libata: rename SF...
64
  	return ata_sff_prereset(link, deadline);
669a5db41   Jeff Garzik   [libata] Add a bu...
65
66
67
  }
  
  /**
669a5db41   Jeff Garzik   [libata] Add a bu...
68
69
70
71
72
73
74
75
76
77
78
79
80
   *	opti_write_reg		-	control register setup
   *	@ap: ATA port
   *	@value: value
   *	@reg: control register number
   *
   *	The Opti uses magic 'trapdoor' register accesses to do configuration
   *	rather than using PCI space as other controllers do. The double inw
   *	on the error register activates configuration mode. We can then write
   *	the control register
   */
  
  static void opti_write_reg(struct ata_port *ap, u8 val, int reg)
  {
0d5ff5667   Tejun Heo   libata: convert t...
81
  	void __iomem *regio = ap->ioaddr.cmd_addr;
669a5db41   Jeff Garzik   [libata] Add a bu...
82
83
  
  	/* These 3 unlock the control register access */
0d5ff5667   Tejun Heo   libata: convert t...
84
85
86
  	ioread16(regio + 1);
  	ioread16(regio + 1);
  	iowrite8(3, regio + 2);
669a5db41   Jeff Garzik   [libata] Add a bu...
87
88
  
  	/* Do the I/O */
0d5ff5667   Tejun Heo   libata: convert t...
89
  	iowrite8(val, regio + reg);
669a5db41   Jeff Garzik   [libata] Add a bu...
90
91
  
  	/* Relock */
0d5ff5667   Tejun Heo   libata: convert t...
92
  	iowrite8(0x83, regio + 2);
669a5db41   Jeff Garzik   [libata] Add a bu...
93
  }
669a5db41   Jeff Garzik   [libata] Add a bu...
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
  /**
   *	opti_set_piomode	-	set initial PIO mode data
   *	@ap: ATA interface
   *	@adev: ATA device
   *
   *	Called to do the PIO mode setup. Timing numbers are taken from
   *	the FreeBSD driver then pre computed to keep the code clean. There
   *	are two tables depending on the hardware clock speed.
   */
  
  static void opti_set_piomode(struct ata_port *ap, struct ata_device *adev)
  {
  	struct ata_device *pair = ata_dev_pair(adev);
  	int clock;
  	int pio = adev->pio_mode - XFER_PIO_0;
0d5ff5667   Tejun Heo   libata: convert t...
109
  	void __iomem *regio = ap->ioaddr.cmd_addr;
669a5db41   Jeff Garzik   [libata] Add a bu...
110
111
112
113
114
115
116
117
118
119
120
  	u8 addr;
  
  	/* Address table precomputed with prefetch off and a DCLK of 2 */
  	static const u8 addr_timing[2][5] = {
  		{ 0x30, 0x20, 0x20, 0x10, 0x10 },
  		{ 0x20, 0x20, 0x10, 0x10, 0x10 }
  	};
  	static const u8 data_rec_timing[2][5] = {
  		{ 0x6B, 0x56, 0x42, 0x32, 0x31 },
  		{ 0x58, 0x44, 0x32, 0x22, 0x21 }
  	};
0d5ff5667   Tejun Heo   libata: convert t...
121
122
  	iowrite8(0xff, regio + 5);
  	clock = ioread16(regio + 5) & 1;
669a5db41   Jeff Garzik   [libata] Add a bu...
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
  
  	/*
   	 *	As with many controllers the address setup time is shared
   	 *	and must suit both devices if present.
  	 */
  
  	addr = addr_timing[clock][pio];
  	if (pair) {
  		/* Hardware constraint */
  		u8 pair_addr = addr_timing[clock][pair->pio_mode - XFER_PIO_0];
  		if (pair_addr > addr)
  			addr = pair_addr;
  	}
  
  	/* Commence primary programming sequence */
  	opti_write_reg(ap, adev->devno, MISC_REG);
  	opti_write_reg(ap, data_rec_timing[clock][pio], READ_REG);
  	opti_write_reg(ap, data_rec_timing[clock][pio], WRITE_REG);
  	opti_write_reg(ap, addr, MISC_REG);
  
  	/* Programming sequence complete, override strapping */
  	opti_write_reg(ap, 0x85, CNTRL_REG);
  }
  
  static struct scsi_host_template opti_sht = {
68d1d07b5   Tejun Heo   libata: implement...
148
  	ATA_PIO_SHT(DRV_NAME),
669a5db41   Jeff Garzik   [libata] Add a bu...
149
150
151
  };
  
  static struct ata_port_operations opti_port_ops = {
029cfd6b7   Tejun Heo   libata: implement...
152
153
  	.inherits	= &ata_sff_port_ops,
  	.cable_detect	= ata_cable_40wire,
669a5db41   Jeff Garzik   [libata] Add a bu...
154
  	.set_piomode	= opti_set_piomode,
a1efdaba2   Tejun Heo   libata: make rese...
155
  	.prereset	= opti_pre_reset,
669a5db41   Jeff Garzik   [libata] Add a bu...
156
157
158
159
  };
  
  static int opti_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  {
1626aeb88   Tejun Heo   libata: clean up ...
160
  	static const struct ata_port_info info = {
1d2808fd3   Jeff Garzik   [libata] PATA dri...
161
  		.flags = ATA_FLAG_SLAVE_POSS,
14bdef982   Erik Inge Bolsø   [libata] convert ...
162
  		.pio_mask = ATA_PIO4,
669a5db41   Jeff Garzik   [libata] Add a bu...
163
164
  		.port_ops = &opti_port_ops
  	};
1626aeb88   Tejun Heo   libata: clean up ...
165
  	const struct ata_port_info *ppi[] = { &info, NULL };
669a5db41   Jeff Garzik   [libata] Add a bu...
166

06296a1e6   Joe Perches   ata: Add and use ...
167
  	ata_print_version_once(&dev->dev, DRV_VERSION);
669a5db41   Jeff Garzik   [libata] Add a bu...
168

16ea0fc98   Alan Cox   libata: Pass host...
169
  	return ata_pci_sff_init_one(dev, ppi, &opti_sht, NULL, 0);
669a5db41   Jeff Garzik   [libata] Add a bu...
170
171
172
  }
  
  static const struct pci_device_id opti[] = {
2d2744fc8   Jeff Garzik   [libata] PCI ID t...
173
174
175
176
  	{ PCI_VDEVICE(OPTI, PCI_DEVICE_ID_OPTI_82C621), 0 },
  	{ PCI_VDEVICE(OPTI, PCI_DEVICE_ID_OPTI_82C825), 1 },
  
  	{ },
669a5db41   Jeff Garzik   [libata] Add a bu...
177
178
179
  };
  
  static struct pci_driver opti_pci_driver = {
2d2744fc8   Jeff Garzik   [libata] PCI ID t...
180
  	.name 		= DRV_NAME,
669a5db41   Jeff Garzik   [libata] Add a bu...
181
182
  	.id_table	= opti,
  	.probe 		= opti_init_one,
30ced0f0d   Alan Cox   [PATCH] PATA liba...
183
  	.remove		= ata_pci_remove_one,
58eb8cd56   Bartlomiej Zolnierkiewicz   ata: use CONFIG_P...
184
  #ifdef CONFIG_PM_SLEEP
30ced0f0d   Alan Cox   [PATCH] PATA liba...
185
186
  	.suspend	= ata_pci_device_suspend,
  	.resume		= ata_pci_device_resume,
438ac6d5e   Tejun Heo   libata: add missi...
187
  #endif
669a5db41   Jeff Garzik   [libata] Add a bu...
188
  };
2fc75da0c   Axel Lin   ata: use module_p...
189
  module_pci_driver(opti_pci_driver);
669a5db41   Jeff Garzik   [libata] Add a bu...
190
191
192
193
194
195
  
  MODULE_AUTHOR("Alan Cox");
  MODULE_DESCRIPTION("low-level driver for Opti 621/621X");
  MODULE_LICENSE("GPL");
  MODULE_DEVICE_TABLE(pci, opti);
  MODULE_VERSION(DRV_VERSION);