sata_uli.c 6.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 *  sata_uli.c - ULi Electronics SATA
 *
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2, or (at your option)
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; see the file COPYING.  If not, write to
 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *
 *  libata documentation is available via 'make {ps|pdf}docs',
 *  as Documentation/DocBook/libata.*
 *
 *  Hardware documentation available under NDA.
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/init.h>
#include <linux/blkdev.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
34
#include <linux/device.h>
L
Linus Torvalds 已提交
35 36 37 38
#include <scsi/scsi_host.h>
#include <linux/libata.h>

#define DRV_NAME	"sata_uli"
J
Jeff Garzik 已提交
39
#define DRV_VERSION	"1.3"
L
Linus Torvalds 已提交
40 41 42 43 44 45

enum {
	uli_5289		= 0,
	uli_5287		= 1,
	uli_5281		= 2,

46 47
	uli_max_ports		= 4,

L
Linus Torvalds 已提交
48 49 50 51 52 53 54
	/* PCI configuration registers */
	ULI5287_BASE		= 0x90, /* sata0 phy SCR registers */
	ULI5287_OFFS		= 0x10, /* offset from sata0->sata1 phy regs */
	ULI5281_BASE		= 0x60, /* sata0 phy SCR  registers */
	ULI5281_OFFS		= 0x60, /* offset from sata0->sata1 phy regs */
};

55 56 57 58
struct uli_priv {
	unsigned int		scr_cfg_addr[uli_max_ports];
};

59
static int uli_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
T
Tejun Heo 已提交
60 61
static int uli_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
static int uli_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
L
Linus Torvalds 已提交
62

63
static const struct pci_device_id uli_pci_tbl[] = {
64 65 66 67
	{ PCI_VDEVICE(AL, 0x5289), uli_5289 },
	{ PCI_VDEVICE(AL, 0x5287), uli_5287 },
	{ PCI_VDEVICE(AL, 0x5281), uli_5281 },

L
Linus Torvalds 已提交
68 69 70 71 72 73 74 75 76 77
	{ }	/* terminate list */
};

static struct pci_driver uli_pci_driver = {
	.name			= DRV_NAME,
	.id_table		= uli_pci_tbl,
	.probe			= uli_init_one,
	.remove			= ata_pci_remove_one,
};

78
static struct scsi_host_template uli_sht = {
79
	ATA_BMDMA_SHT(DRV_NAME),
L
Linus Torvalds 已提交
80 81
};

82 83
static struct ata_port_operations uli_ops = {
	.inherits		= &ata_bmdma_port_ops,
L
Linus Torvalds 已提交
84 85
	.scr_read		= uli_scr_read,
	.scr_write		= uli_scr_write,
T
Tejun Heo 已提交
86
	.hardreset		= ATA_OP_NULL,
L
Linus Torvalds 已提交
87 88
};

T
Tejun Heo 已提交
89
static const struct ata_port_info uli_port_info = {
90 91
	.flags		= ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
			  ATA_FLAG_IGN_SIMPLEX,
92
	.pio_mask       = 0x1f,		/* pio0-4 */
93
	.udma_mask      = ATA_UDMA6,
L
Linus Torvalds 已提交
94 95 96 97 98 99 100 101 102 103 104 105
	.port_ops       = &uli_ops,
};


MODULE_AUTHOR("Peer Chen");
MODULE_DESCRIPTION("low-level driver for ULi Electronics SATA controller");
MODULE_LICENSE("GPL");
MODULE_DEVICE_TABLE(pci, uli_pci_tbl);
MODULE_VERSION(DRV_VERSION);

static unsigned int get_scr_cfg_addr(struct ata_port *ap, unsigned int sc_reg)
{
J
Jeff Garzik 已提交
106
	struct uli_priv *hpriv = ap->host->private_data;
107
	return hpriv->scr_cfg_addr[ap->port_no] + (4 * sc_reg);
L
Linus Torvalds 已提交
108 109
}

T
Tejun Heo 已提交
110
static u32 uli_scr_cfg_read(struct ata_link *link, unsigned int sc_reg)
L
Linus Torvalds 已提交
111
{
T
Tejun Heo 已提交
112 113
	struct pci_dev *pdev = to_pci_dev(link->ap->host->dev);
	unsigned int cfg_addr = get_scr_cfg_addr(link->ap, sc_reg);
L
Linus Torvalds 已提交
114 115 116 117 118 119
	u32 val;

	pci_read_config_dword(pdev, cfg_addr, &val);
	return val;
}

T
Tejun Heo 已提交
120
static void uli_scr_cfg_write(struct ata_link *link, unsigned int scr, u32 val)
L
Linus Torvalds 已提交
121
{
T
Tejun Heo 已提交
122 123
	struct pci_dev *pdev = to_pci_dev(link->ap->host->dev);
	unsigned int cfg_addr = get_scr_cfg_addr(link->ap, scr);
L
Linus Torvalds 已提交
124 125 126 127

	pci_write_config_dword(pdev, cfg_addr, val);
}

T
Tejun Heo 已提交
128
static int uli_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
L
Linus Torvalds 已提交
129 130
{
	if (sc_reg > SCR_CONTROL)
131
		return -EINVAL;
L
Linus Torvalds 已提交
132

T
Tejun Heo 已提交
133
	*val = uli_scr_cfg_read(link, sc_reg);
134
	return 0;
L
Linus Torvalds 已提交
135 136
}

T
Tejun Heo 已提交
137
static int uli_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
L
Linus Torvalds 已提交
138
{
139
	if (sc_reg > SCR_CONTROL) //SCR_CONTROL=2, SCR_ERROR=1, SCR_STATUS=0
140
		return -EINVAL;
L
Linus Torvalds 已提交
141

T
Tejun Heo 已提交
142
	uli_scr_cfg_write(link, sc_reg, val);
143
	return 0;
L
Linus Torvalds 已提交
144 145
}

146
static int uli_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
L
Linus Torvalds 已提交
147
{
148
	static int printed_version;
149
	const struct ata_port_info *ppi[] = { &uli_port_info, NULL };
L
Linus Torvalds 已提交
150
	unsigned int board_idx = (unsigned int) ent->driver_data;
151
	struct ata_host *host;
152
	struct uli_priv *hpriv;
T
Tejun Heo 已提交
153
	void __iomem * const *iomap;
154 155
	struct ata_ioports *ioaddr;
	int n_ports, rc;
L
Linus Torvalds 已提交
156

157 158 159
	if (!printed_version++)
		dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");

160
	rc = pcim_enable_device(pdev);
L
Linus Torvalds 已提交
161 162 163
	if (rc)
		return rc;

164 165 166
	n_ports = 2;
	if (board_idx == uli_5287)
		n_ports = 4;
T
Tejun Heo 已提交
167 168 169 170 171

	/* allocate the host */
	host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
	if (!host)
		return -ENOMEM;
L
Linus Torvalds 已提交
172

173 174 175
	hpriv = devm_kzalloc(&pdev->dev, sizeof(*hpriv), GFP_KERNEL);
	if (!hpriv)
		return -ENOMEM;
176
	host->private_data = hpriv;
177

T
Tejun Heo 已提交
178
	/* the first two ports are standard SFF */
T
Tejun Heo 已提交
179
	rc = ata_pci_sff_init_host(host);
T
Tejun Heo 已提交
180 181 182
	if (rc)
		return rc;

T
Tejun Heo 已提交
183
	rc = ata_pci_bmdma_init(host);
T
Tejun Heo 已提交
184 185 186
	if (rc)
		return rc;

187
	iomap = host->iomap;
T
Tejun Heo 已提交
188

L
Linus Torvalds 已提交
189 190
	switch (board_idx) {
	case uli_5287:
T
Tejun Heo 已提交
191 192 193
		/* If there are four, the last two live right after
		 * the standard SFF ports.
		 */
194 195
		hpriv->scr_cfg_addr[0] = ULI5287_BASE;
		hpriv->scr_cfg_addr[1] = ULI5287_BASE + ULI5287_OFFS;
L
Linus Torvalds 已提交
196

197 198 199 200
		ioaddr = &host->ports[2]->ioaddr;
		ioaddr->cmd_addr = iomap[0] + 8;
		ioaddr->altstatus_addr =
		ioaddr->ctl_addr = (void __iomem *)
T
Tejun Heo 已提交
201
			((unsigned long)iomap[1] | ATA_PCI_CTL_OFS) + 4;
202
		ioaddr->bmdma_addr = iomap[4] + 16;
203
		hpriv->scr_cfg_addr[2] = ULI5287_BASE + ULI5287_OFFS*4;
T
Tejun Heo 已提交
204
		ata_sff_std_ports(ioaddr);
L
Linus Torvalds 已提交
205

206 207 208 209 210 211
		ata_port_desc(host->ports[2],
			"cmd 0x%llx ctl 0x%llx bmdma 0x%llx",
			(unsigned long long)pci_resource_start(pdev, 0) + 8,
			((unsigned long long)pci_resource_start(pdev, 1) | ATA_PCI_CTL_OFS) + 4,
			(unsigned long long)pci_resource_start(pdev, 4) + 16);

212 213 214 215
		ioaddr = &host->ports[3]->ioaddr;
		ioaddr->cmd_addr = iomap[2] + 8;
		ioaddr->altstatus_addr =
		ioaddr->ctl_addr = (void __iomem *)
T
Tejun Heo 已提交
216
			((unsigned long)iomap[3] | ATA_PCI_CTL_OFS) + 4;
217
		ioaddr->bmdma_addr = iomap[4] + 24;
218
		hpriv->scr_cfg_addr[3] = ULI5287_BASE + ULI5287_OFFS*5;
T
Tejun Heo 已提交
219
		ata_sff_std_ports(ioaddr);
220 221 222 223 224 225 226

		ata_port_desc(host->ports[2],
			"cmd 0x%llx ctl 0x%llx bmdma 0x%llx",
			(unsigned long long)pci_resource_start(pdev, 2) + 9,
			((unsigned long long)pci_resource_start(pdev, 3) | ATA_PCI_CTL_OFS) + 4,
			(unsigned long long)pci_resource_start(pdev, 4) + 24);

L
Linus Torvalds 已提交
227 228 229
		break;

	case uli_5289:
230 231
		hpriv->scr_cfg_addr[0] = ULI5287_BASE;
		hpriv->scr_cfg_addr[1] = ULI5287_BASE + ULI5287_OFFS;
L
Linus Torvalds 已提交
232 233 234
		break;

	case uli_5281:
235 236
		hpriv->scr_cfg_addr[0] = ULI5281_BASE;
		hpriv->scr_cfg_addr[1] = ULI5281_BASE + ULI5281_OFFS;
L
Linus Torvalds 已提交
237 238 239 240 241 242 243 244
		break;

	default:
		BUG();
		break;
	}

	pci_set_master(pdev);
B
Brett M Russ 已提交
245
	pci_intx(pdev, 1);
T
Tejun Heo 已提交
246 247
	return ata_host_activate(host, pdev->irq, ata_sff_interrupt,
				 IRQF_SHARED, &uli_sht);
L
Linus Torvalds 已提交
248 249 250 251
}

static int __init uli_init(void)
{
252
	return pci_register_driver(&uli_pci_driver);
L
Linus Torvalds 已提交
253 254 255 256 257 258 259 260 261 262
}

static void __exit uli_exit(void)
{
	pci_unregister_driver(&uli_pci_driver);
}


module_init(uli_init);
module_exit(uli_exit);