blob: e965b251ca24dd923b421d628f264046bde76462 [file] [log] [blame]
Akira Iguchia619f981b2007-01-26 16:28:18 +09001/*
2 * Support for IDE interfaces on Celleb platform
3 *
4 * (C) Copyright 2006 TOSHIBA CORPORATION
5 *
6 * This code is based on drivers/ata/ata_piix.c:
7 * Copyright 2003-2005 Red Hat Inc
8 * Copyright 2003-2005 Jeff Garzik
9 * Copyright (C) 1998-1999 Andrzej Krzysztofowicz, Author and Maintainer
10 * Copyright (C) 1998-2000 Andre Hedrick <andre@linux-ide.org>
11 * Copyright (C) 2003 Red Hat Inc <alan@redhat.com>
12 *
13 * and drivers/ata/ahci.c:
14 * Copyright 2004-2005 Red Hat, Inc.
15 *
16 * and drivers/ata/libata-core.c:
17 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
18 * Copyright 2003-2004 Jeff Garzik
19 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License along
31 * with this program; if not, write to the Free Software Foundation, Inc.,
32 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
33 */
34
35#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/pci.h>
38#include <linux/init.h>
39#include <linux/blkdev.h>
40#include <linux/delay.h>
41#include <linux/device.h>
42#include <scsi/scsi_host.h>
43#include <linux/libata.h>
44
45#define DRV_NAME "pata_scc"
Jeff Garzik2a3103c2007-08-31 04:54:06 -040046#define DRV_VERSION "0.3"
Akira Iguchia619f981b2007-01-26 16:28:18 +090047
48#define PCI_DEVICE_ID_TOSHIBA_SCC_ATA 0x01b4
49
50/* PCI BARs */
51#define SCC_CTRL_BAR 0
52#define SCC_BMID_BAR 1
53
54/* offset of CTRL registers */
55#define SCC_CTL_PIOSHT 0x000
56#define SCC_CTL_PIOCT 0x004
57#define SCC_CTL_MDMACT 0x008
58#define SCC_CTL_MCRCST 0x00C
59#define SCC_CTL_SDMACT 0x010
60#define SCC_CTL_SCRCST 0x014
61#define SCC_CTL_UDENVT 0x018
62#define SCC_CTL_TDVHSEL 0x020
63#define SCC_CTL_MODEREG 0x024
64#define SCC_CTL_ECMODE 0xF00
65#define SCC_CTL_MAEA0 0xF50
66#define SCC_CTL_MAEC0 0xF54
67#define SCC_CTL_CCKCTRL 0xFF0
68
69/* offset of BMID registers */
70#define SCC_DMA_CMD 0x000
71#define SCC_DMA_STATUS 0x004
72#define SCC_DMA_TABLE_OFS 0x008
73#define SCC_DMA_INTMASK 0x010
74#define SCC_DMA_INTST 0x014
75#define SCC_DMA_PTERADD 0x018
76#define SCC_REG_CMD_ADDR 0x020
77#define SCC_REG_DATA 0x000
78#define SCC_REG_ERR 0x004
79#define SCC_REG_FEATURE 0x004
80#define SCC_REG_NSECT 0x008
81#define SCC_REG_LBAL 0x00C
82#define SCC_REG_LBAM 0x010
83#define SCC_REG_LBAH 0x014
84#define SCC_REG_DEVICE 0x018
85#define SCC_REG_STATUS 0x01C
86#define SCC_REG_CMD 0x01C
87#define SCC_REG_ALTSTATUS 0x020
88
89/* register value */
90#define TDVHSEL_MASTER 0x00000001
91#define TDVHSEL_SLAVE 0x00000004
92
93#define MODE_JCUSFEN 0x00000080
94
95#define ECMODE_VALUE 0x01
96
97#define CCKCTRL_ATARESET 0x00040000
98#define CCKCTRL_BUFCNT 0x00020000
99#define CCKCTRL_CRST 0x00010000
100#define CCKCTRL_OCLKEN 0x00000100
101#define CCKCTRL_ATACLKOEN 0x00000002
102#define CCKCTRL_LCLKEN 0x00000001
103
104#define QCHCD_IOS_SS 0x00000001
105
106#define QCHSD_STPDIAG 0x00020000
107
108#define INTMASK_MSK 0xD1000012
109#define INTSTS_SERROR 0x80000000
110#define INTSTS_PRERR 0x40000000
111#define INTSTS_RERR 0x10000000
112#define INTSTS_ICERR 0x01000000
113#define INTSTS_BMSINT 0x00000010
114#define INTSTS_BMHE 0x00000008
115#define INTSTS_IOIRQS 0x00000004
116#define INTSTS_INTRQ 0x00000002
117#define INTSTS_ACTEINT 0x00000001
118
119
120/* PIO transfer mode table */
121/* JCHST */
122static const unsigned long JCHSTtbl[2][7] = {
123 {0x0E, 0x05, 0x02, 0x03, 0x02, 0x00, 0x00}, /* 100MHz */
124 {0x13, 0x07, 0x04, 0x04, 0x03, 0x00, 0x00} /* 133MHz */
125};
126
127/* JCHHT */
128static const unsigned long JCHHTtbl[2][7] = {
129 {0x0E, 0x02, 0x02, 0x02, 0x02, 0x00, 0x00}, /* 100MHz */
130 {0x13, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00} /* 133MHz */
131};
132
133/* JCHCT */
134static const unsigned long JCHCTtbl[2][7] = {
135 {0x1D, 0x1D, 0x1C, 0x0B, 0x06, 0x00, 0x00}, /* 100MHz */
136 {0x27, 0x26, 0x26, 0x0E, 0x09, 0x00, 0x00} /* 133MHz */
137};
138
139/* DMA transfer mode table */
140/* JCHDCTM/JCHDCTS */
141static const unsigned long JCHDCTxtbl[2][7] = {
142 {0x0A, 0x06, 0x04, 0x03, 0x01, 0x00, 0x00}, /* 100MHz */
143 {0x0E, 0x09, 0x06, 0x04, 0x02, 0x01, 0x00} /* 133MHz */
144};
145
146/* JCSTWTM/JCSTWTS */
147static const unsigned long JCSTWTxtbl[2][7] = {
148 {0x06, 0x04, 0x03, 0x02, 0x02, 0x02, 0x00}, /* 100MHz */
149 {0x09, 0x06, 0x04, 0x02, 0x02, 0x02, 0x02} /* 133MHz */
150};
151
152/* JCTSS */
153static const unsigned long JCTSStbl[2][7] = {
154 {0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x00}, /* 100MHz */
155 {0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05} /* 133MHz */
156};
157
158/* JCENVT */
159static const unsigned long JCENVTtbl[2][7] = {
160 {0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00}, /* 100MHz */
161 {0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02} /* 133MHz */
162};
163
164/* JCACTSELS/JCACTSELM */
165static const unsigned long JCACTSELtbl[2][7] = {
166 {0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00}, /* 100MHz */
167 {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01} /* 133MHz */
168};
169
170static const struct pci_device_id scc_pci_tbl[] = {
171 {PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_SCC_ATA,
172 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
173 { } /* terminate list */
174};
175
176/**
177 * scc_set_piomode - Initialize host controller PATA PIO timings
178 * @ap: Port whose timings we are configuring
179 * @adev: um
180 *
181 * Set PIO mode for device.
182 *
183 * LOCKING:
184 * None (inherited from caller).
185 */
186
187static void scc_set_piomode (struct ata_port *ap, struct ata_device *adev)
188{
189 unsigned int pio = adev->pio_mode - XFER_PIO_0;
190 void __iomem *ctrl_base = ap->host->iomap[SCC_CTRL_BAR];
191 void __iomem *cckctrl_port = ctrl_base + SCC_CTL_CCKCTRL;
192 void __iomem *piosht_port = ctrl_base + SCC_CTL_PIOSHT;
193 void __iomem *pioct_port = ctrl_base + SCC_CTL_PIOCT;
194 unsigned long reg;
195 int offset;
196
197 reg = in_be32(cckctrl_port);
198 if (reg & CCKCTRL_ATACLKOEN)
199 offset = 1; /* 133MHz */
200 else
201 offset = 0; /* 100MHz */
202
203 reg = JCHSTtbl[offset][pio] << 16 | JCHHTtbl[offset][pio];
204 out_be32(piosht_port, reg);
205 reg = JCHCTtbl[offset][pio];
206 out_be32(pioct_port, reg);
207}
208
209/**
210 * scc_set_dmamode - Initialize host controller PATA DMA timings
211 * @ap: Port whose timings we are configuring
212 * @adev: um
213 * @udma: udma mode, 0 - 6
214 *
215 * Set UDMA mode for device.
216 *
217 * LOCKING:
218 * None (inherited from caller).
219 */
220
221static void scc_set_dmamode (struct ata_port *ap, struct ata_device *adev)
222{
223 unsigned int udma = adev->dma_mode;
224 unsigned int is_slave = (adev->devno != 0);
225 u8 speed = udma;
226 void __iomem *ctrl_base = ap->host->iomap[SCC_CTRL_BAR];
227 void __iomem *cckctrl_port = ctrl_base + SCC_CTL_CCKCTRL;
228 void __iomem *mdmact_port = ctrl_base + SCC_CTL_MDMACT;
229 void __iomem *mcrcst_port = ctrl_base + SCC_CTL_MCRCST;
230 void __iomem *sdmact_port = ctrl_base + SCC_CTL_SDMACT;
231 void __iomem *scrcst_port = ctrl_base + SCC_CTL_SCRCST;
232 void __iomem *udenvt_port = ctrl_base + SCC_CTL_UDENVT;
233 void __iomem *tdvhsel_port = ctrl_base + SCC_CTL_TDVHSEL;
234 int offset, idx;
235
Jeff Garzika84471f2007-02-26 05:51:33 -0500236 if (in_be32(cckctrl_port) & CCKCTRL_ATACLKOEN)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900237 offset = 1; /* 133MHz */
238 else
239 offset = 0; /* 100MHz */
240
241 if (speed >= XFER_UDMA_0)
242 idx = speed - XFER_UDMA_0;
243 else
244 return;
245
246 if (is_slave) {
247 out_be32(sdmact_port, JCHDCTxtbl[offset][idx]);
248 out_be32(scrcst_port, JCSTWTxtbl[offset][idx]);
249 out_be32(tdvhsel_port,
250 (in_be32(tdvhsel_port) & ~TDVHSEL_SLAVE) | (JCACTSELtbl[offset][idx] << 2));
251 } else {
252 out_be32(mdmact_port, JCHDCTxtbl[offset][idx]);
253 out_be32(mcrcst_port, JCSTWTxtbl[offset][idx]);
254 out_be32(tdvhsel_port,
255 (in_be32(tdvhsel_port) & ~TDVHSEL_MASTER) | JCACTSELtbl[offset][idx]);
256 }
257 out_be32(udenvt_port,
258 JCTSStbl[offset][idx] << 16 | JCENVTtbl[offset][idx]);
259}
260
Akira Iguchidcd03442007-07-17 12:10:17 +0900261unsigned long scc_mode_filter(struct ata_device *adev, unsigned long mask)
262{
263 /* errata A308 workaround: limit ATAPI UDMA mode to UDMA4 */
264 if (adev->class == ATA_DEV_ATAPI &&
265 (mask & (0xE0 << ATA_SHIFT_UDMA))) {
266 printk(KERN_INFO "%s: limit ATAPI UDMA to UDMA4\n", DRV_NAME);
267 mask &= ~(0xE0 << ATA_SHIFT_UDMA);
268 }
Tejun Heo9363c382008-04-07 22:47:16 +0900269 return ata_bmdma_mode_filter(adev, mask);
Akira Iguchidcd03442007-07-17 12:10:17 +0900270}
271
Akira Iguchia619f981b2007-01-26 16:28:18 +0900272/**
273 * scc_tf_load - send taskfile registers to host controller
274 * @ap: Port to which output is sent
275 * @tf: ATA taskfile register set
276 *
Tejun Heo9363c382008-04-07 22:47:16 +0900277 * Note: Original code is ata_sff_tf_load().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900278 */
279
280static void scc_tf_load (struct ata_port *ap, const struct ata_taskfile *tf)
281{
282 struct ata_ioports *ioaddr = &ap->ioaddr;
283 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
284
285 if (tf->ctl != ap->last_ctl) {
286 out_be32(ioaddr->ctl_addr, tf->ctl);
287 ap->last_ctl = tf->ctl;
288 ata_wait_idle(ap);
289 }
290
291 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
292 out_be32(ioaddr->feature_addr, tf->hob_feature);
293 out_be32(ioaddr->nsect_addr, tf->hob_nsect);
294 out_be32(ioaddr->lbal_addr, tf->hob_lbal);
295 out_be32(ioaddr->lbam_addr, tf->hob_lbam);
296 out_be32(ioaddr->lbah_addr, tf->hob_lbah);
297 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
298 tf->hob_feature,
299 tf->hob_nsect,
300 tf->hob_lbal,
301 tf->hob_lbam,
302 tf->hob_lbah);
303 }
304
305 if (is_addr) {
306 out_be32(ioaddr->feature_addr, tf->feature);
307 out_be32(ioaddr->nsect_addr, tf->nsect);
308 out_be32(ioaddr->lbal_addr, tf->lbal);
309 out_be32(ioaddr->lbam_addr, tf->lbam);
310 out_be32(ioaddr->lbah_addr, tf->lbah);
311 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
312 tf->feature,
313 tf->nsect,
314 tf->lbal,
315 tf->lbam,
316 tf->lbah);
317 }
318
319 if (tf->flags & ATA_TFLAG_DEVICE) {
320 out_be32(ioaddr->device_addr, tf->device);
321 VPRINTK("device 0x%X\n", tf->device);
322 }
323
324 ata_wait_idle(ap);
325}
326
327/**
328 * scc_check_status - Read device status reg & clear interrupt
329 * @ap: port where the device is
330 *
331 * Note: Original code is ata_check_status().
332 */
333
334static u8 scc_check_status (struct ata_port *ap)
335{
336 return in_be32(ap->ioaddr.status_addr);
337}
338
339/**
340 * scc_tf_read - input device's ATA taskfile shadow registers
341 * @ap: Port from which input is read
342 * @tf: ATA taskfile register set for storing input
343 *
Tejun Heo9363c382008-04-07 22:47:16 +0900344 * Note: Original code is ata_sff_tf_read().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900345 */
346
347static void scc_tf_read (struct ata_port *ap, struct ata_taskfile *tf)
348{
349 struct ata_ioports *ioaddr = &ap->ioaddr;
350
351 tf->command = scc_check_status(ap);
352 tf->feature = in_be32(ioaddr->error_addr);
353 tf->nsect = in_be32(ioaddr->nsect_addr);
354 tf->lbal = in_be32(ioaddr->lbal_addr);
355 tf->lbam = in_be32(ioaddr->lbam_addr);
356 tf->lbah = in_be32(ioaddr->lbah_addr);
357 tf->device = in_be32(ioaddr->device_addr);
358
359 if (tf->flags & ATA_TFLAG_LBA48) {
360 out_be32(ioaddr->ctl_addr, tf->ctl | ATA_HOB);
361 tf->hob_feature = in_be32(ioaddr->error_addr);
362 tf->hob_nsect = in_be32(ioaddr->nsect_addr);
363 tf->hob_lbal = in_be32(ioaddr->lbal_addr);
364 tf->hob_lbam = in_be32(ioaddr->lbam_addr);
365 tf->hob_lbah = in_be32(ioaddr->lbah_addr);
Petr Vandrovecfe36cb52007-07-20 07:44:44 -0400366 out_be32(ioaddr->ctl_addr, tf->ctl);
367 ap->last_ctl = tf->ctl;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900368 }
369}
370
371/**
372 * scc_exec_command - issue ATA command to host controller
373 * @ap: port to which command is being issued
374 * @tf: ATA taskfile register set
375 *
Tejun Heo9363c382008-04-07 22:47:16 +0900376 * Note: Original code is ata_sff_exec_command().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900377 */
378
379static void scc_exec_command (struct ata_port *ap,
380 const struct ata_taskfile *tf)
381{
Tejun Heo878d4fe2007-02-21 16:36:33 +0900382 DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900383
384 out_be32(ap->ioaddr.command_addr, tf->command);
Tejun Heo9363c382008-04-07 22:47:16 +0900385 ata_sff_pause(ap);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900386}
387
388/**
389 * scc_check_altstatus - Read device alternate status reg
390 * @ap: port where the device is
391 */
392
393static u8 scc_check_altstatus (struct ata_port *ap)
394{
395 return in_be32(ap->ioaddr.altstatus_addr);
396}
397
398/**
Tejun Heo9363c382008-04-07 22:47:16 +0900399 * scc_dev_select - Select device 0/1 on ATA bus
Akira Iguchia619f981b2007-01-26 16:28:18 +0900400 * @ap: ATA channel to manipulate
401 * @device: ATA device (numbered from zero) to select
402 *
Tejun Heo9363c382008-04-07 22:47:16 +0900403 * Note: Original code is ata_sff_dev_select().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900404 */
405
Tejun Heo9363c382008-04-07 22:47:16 +0900406static void scc_dev_select (struct ata_port *ap, unsigned int device)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900407{
408 u8 tmp;
409
410 if (device == 0)
411 tmp = ATA_DEVICE_OBS;
412 else
413 tmp = ATA_DEVICE_OBS | ATA_DEV1;
414
415 out_be32(ap->ioaddr.device_addr, tmp);
Tejun Heo9363c382008-04-07 22:47:16 +0900416 ata_sff_pause(ap);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900417}
418
419/**
420 * scc_bmdma_setup - Set up PCI IDE BMDMA transaction
421 * @qc: Info associated with this ATA transaction.
422 *
423 * Note: Original code is ata_bmdma_setup().
424 */
425
426static void scc_bmdma_setup (struct ata_queued_cmd *qc)
427{
428 struct ata_port *ap = qc->ap;
429 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
430 u8 dmactl;
431 void __iomem *mmio = ap->ioaddr.bmdma_addr;
432
433 /* load PRD table addr */
434 out_be32(mmio + SCC_DMA_TABLE_OFS, ap->prd_dma);
435
436 /* specify data direction, triple-check start bit is clear */
437 dmactl = in_be32(mmio + SCC_DMA_CMD);
438 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
439 if (!rw)
440 dmactl |= ATA_DMA_WR;
441 out_be32(mmio + SCC_DMA_CMD, dmactl);
442
443 /* issue r/w command */
Tejun Heo5682ed32008-04-07 22:47:16 +0900444 ap->ops->sff_exec_command(ap, &qc->tf);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900445}
446
447/**
448 * scc_bmdma_start - Start a PCI IDE BMDMA transaction
449 * @qc: Info associated with this ATA transaction.
450 *
451 * Note: Original code is ata_bmdma_start().
452 */
453
454static void scc_bmdma_start (struct ata_queued_cmd *qc)
455{
456 struct ata_port *ap = qc->ap;
457 u8 dmactl;
458 void __iomem *mmio = ap->ioaddr.bmdma_addr;
459
460 /* start host DMA transaction */
461 dmactl = in_be32(mmio + SCC_DMA_CMD);
462 out_be32(mmio + SCC_DMA_CMD, dmactl | ATA_DMA_START);
463}
464
465/**
466 * scc_devchk - PATA device presence detection
467 * @ap: ATA channel to examine
468 * @device: Device to examine (starting at zero)
469 *
470 * Note: Original code is ata_devchk().
471 */
472
473static unsigned int scc_devchk (struct ata_port *ap,
474 unsigned int device)
475{
476 struct ata_ioports *ioaddr = &ap->ioaddr;
477 u8 nsect, lbal;
478
Tejun Heo5682ed32008-04-07 22:47:16 +0900479 ap->ops->sff_dev_select(ap, device);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900480
481 out_be32(ioaddr->nsect_addr, 0x55);
482 out_be32(ioaddr->lbal_addr, 0xaa);
483
484 out_be32(ioaddr->nsect_addr, 0xaa);
485 out_be32(ioaddr->lbal_addr, 0x55);
486
487 out_be32(ioaddr->nsect_addr, 0x55);
488 out_be32(ioaddr->lbal_addr, 0xaa);
489
490 nsect = in_be32(ioaddr->nsect_addr);
491 lbal = in_be32(ioaddr->lbal_addr);
492
493 if ((nsect == 0x55) && (lbal == 0xaa))
494 return 1; /* we found a device */
495
496 return 0; /* nothing found */
497}
498
499/**
Tejun Heo705e76b2008-04-07 22:47:19 +0900500 * scc_wait_after_reset - wait for devices to become ready after reset
Akira Iguchia619f981b2007-01-26 16:28:18 +0900501 *
Tejun Heo705e76b2008-04-07 22:47:19 +0900502 * Note: Original code is ata_sff_wait_after_reset
Akira Iguchia619f981b2007-01-26 16:28:18 +0900503 */
504
Tejun Heo705e76b2008-04-07 22:47:19 +0900505int scc_wait_after_reset(struct ata_link *link, unsigned int devmask,
506 unsigned long deadline)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900507{
Tejun Heo705e76b2008-04-07 22:47:19 +0900508 struct ata_port *ap = link->ap;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900509 struct ata_ioports *ioaddr = &ap->ioaddr;
510 unsigned int dev0 = devmask & (1 << 0);
511 unsigned int dev1 = devmask & (1 << 1);
Tejun Heo705e76b2008-04-07 22:47:19 +0900512 int rc, ret = 0;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900513
Tejun Heo705e76b2008-04-07 22:47:19 +0900514 /* Spec mandates ">= 2ms" before checking status. We wait
515 * 150ms, because that was the magic delay used for ATAPI
516 * devices in Hale Landis's ATADRVR, for the period of time
517 * between when the ATA command register is written, and then
518 * status is checked. Because waiting for "a while" before
519 * checking status is fine, post SRST, we perform this magic
520 * delay here as well.
521 *
522 * Old drivers/ide uses the 2mS rule and then waits for ready.
Akira Iguchia619f981b2007-01-26 16:28:18 +0900523 */
Tejun Heo705e76b2008-04-07 22:47:19 +0900524 msleep(150);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900525
Tejun Heo705e76b2008-04-07 22:47:19 +0900526 /* always check readiness of the master device */
527 rc = ata_sff_wait_ready(link, deadline);
528 /* -ENODEV means the odd clown forgot the D7 pulldown resistor
529 * and TF status is 0xff, bail out on it too.
Akira Iguchia619f981b2007-01-26 16:28:18 +0900530 */
Tejun Heo705e76b2008-04-07 22:47:19 +0900531 if (rc)
532 return rc;
533
534 /* if device 1 was found in ata_devchk, wait for register
535 * access briefly, then wait for BSY to clear.
536 */
537 if (dev1) {
538 int i;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900539
Tejun Heo5682ed32008-04-07 22:47:16 +0900540 ap->ops->sff_dev_select(ap, 1);
Tejun Heo705e76b2008-04-07 22:47:19 +0900541
542 /* Wait for register access. Some ATAPI devices fail
543 * to set nsect/lbal after reset, so don't waste too
544 * much time on it. We're gonna wait for !BSY anyway.
545 */
546 for (i = 0; i < 2; i++) {
547 u8 nsect, lbal;
548
549 nsect = in_be32(ioaddr->nsect_addr);
550 lbal = in_be32(ioaddr->lbal_addr);
551 if ((nsect == 1) && (lbal == 1))
552 break;
553 msleep(50); /* give drive a breather */
554 }
555
556 rc = ata_sff_wait_ready(link, deadline);
557 if (rc) {
558 if (rc != -ENODEV)
559 return rc;
560 ret = rc;
561 }
Tony Breeds7e068372007-05-23 14:26:43 -0700562 }
Akira Iguchia619f981b2007-01-26 16:28:18 +0900563
564 /* is all this really necessary? */
Tejun Heo5682ed32008-04-07 22:47:16 +0900565 ap->ops->sff_dev_select(ap, 0);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900566 if (dev1)
Tejun Heo5682ed32008-04-07 22:47:16 +0900567 ap->ops->sff_dev_select(ap, 1);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900568 if (dev0)
Tejun Heo5682ed32008-04-07 22:47:16 +0900569 ap->ops->sff_dev_select(ap, 0);
Tony Breeds7e068372007-05-23 14:26:43 -0700570
Tejun Heo705e76b2008-04-07 22:47:19 +0900571 return ret;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900572}
573
574/**
575 * scc_bus_softreset - PATA device software reset
576 *
577 * Note: Original code is ata_bus_softreset().
578 */
579
Tony Breeds7e068372007-05-23 14:26:43 -0700580static unsigned int scc_bus_softreset(struct ata_port *ap, unsigned int devmask,
581 unsigned long deadline)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900582{
583 struct ata_ioports *ioaddr = &ap->ioaddr;
584
Tejun Heo878d4fe2007-02-21 16:36:33 +0900585 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900586
587 /* software reset. causes dev0 to be selected */
588 out_be32(ioaddr->ctl_addr, ap->ctl);
589 udelay(20);
590 out_be32(ioaddr->ctl_addr, ap->ctl | ATA_SRST);
591 udelay(20);
592 out_be32(ioaddr->ctl_addr, ap->ctl);
593
Stephen Rothwelle50e3ce2008-04-09 13:34:40 +1000594 scc_wait_after_reset(&ap->link, devmask, deadline);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900595
596 return 0;
597}
598
599/**
Tejun Heo9363c382008-04-07 22:47:16 +0900600 * scc_softreset - reset host port via ATA SRST
Akira Iguchia619f981b2007-01-26 16:28:18 +0900601 * @ap: port to reset
602 * @classes: resulting classes of attached devices
Tony Breeds7e068372007-05-23 14:26:43 -0700603 * @deadline: deadline jiffies for the operation
Akira Iguchia619f981b2007-01-26 16:28:18 +0900604 *
Tejun Heo9363c382008-04-07 22:47:16 +0900605 * Note: Original code is ata_sff_softreset().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900606 */
607
Tejun Heo9363c382008-04-07 22:47:16 +0900608static int scc_softreset(struct ata_link *link, unsigned int *classes,
609 unsigned long deadline)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900610{
Satyam Sharmab90fe232007-09-22 08:20:09 +0530611 struct ata_port *ap = link->ap;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900612 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
613 unsigned int devmask = 0, err_mask;
614 u8 err;
615
616 DPRINTK("ENTER\n");
617
Akira Iguchia619f981b2007-01-26 16:28:18 +0900618 /* determine if device 0/1 are present */
619 if (scc_devchk(ap, 0))
620 devmask |= (1 << 0);
621 if (slave_possible && scc_devchk(ap, 1))
622 devmask |= (1 << 1);
623
624 /* select device 0 again */
Tejun Heo5682ed32008-04-07 22:47:16 +0900625 ap->ops->sff_dev_select(ap, 0);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900626
627 /* issue bus reset */
628 DPRINTK("about to softreset, devmask=%x\n", devmask);
Tony Breeds7e068372007-05-23 14:26:43 -0700629 err_mask = scc_bus_softreset(ap, devmask, deadline);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900630 if (err_mask) {
631 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
632 err_mask);
633 return -EIO;
634 }
635
636 /* determine by signature whether we have ATA or ATAPI devices */
Tejun Heo9363c382008-04-07 22:47:16 +0900637 classes[0] = ata_sff_dev_classify(&ap->link.device[0],
Tejun Heo3f198592007-09-02 23:23:57 +0900638 devmask & (1 << 0), &err);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900639 if (slave_possible && err != 0x81)
Tejun Heo9363c382008-04-07 22:47:16 +0900640 classes[1] = ata_sff_dev_classify(&ap->link.device[1],
Tejun Heo3f198592007-09-02 23:23:57 +0900641 devmask & (1 << 1), &err);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900642
Akira Iguchia619f981b2007-01-26 16:28:18 +0900643 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
644 return 0;
645}
646
647/**
648 * scc_bmdma_stop - Stop PCI IDE BMDMA transfer
649 * @qc: Command we are ending DMA for
650 */
651
652static void scc_bmdma_stop (struct ata_queued_cmd *qc)
653{
654 struct ata_port *ap = qc->ap;
655 void __iomem *ctrl_base = ap->host->iomap[SCC_CTRL_BAR];
656 void __iomem *bmid_base = ap->host->iomap[SCC_BMID_BAR];
657 u32 reg;
658
659 while (1) {
660 reg = in_be32(bmid_base + SCC_DMA_INTST);
661
662 if (reg & INTSTS_SERROR) {
663 printk(KERN_WARNING "%s: SERROR\n", DRV_NAME);
664 out_be32(bmid_base + SCC_DMA_INTST, INTSTS_SERROR|INTSTS_BMSINT);
665 out_be32(bmid_base + SCC_DMA_CMD,
666 in_be32(bmid_base + SCC_DMA_CMD) & ~ATA_DMA_START);
667 continue;
668 }
669
670 if (reg & INTSTS_PRERR) {
671 u32 maea0, maec0;
672 maea0 = in_be32(ctrl_base + SCC_CTL_MAEA0);
673 maec0 = in_be32(ctrl_base + SCC_CTL_MAEC0);
674 printk(KERN_WARNING "%s: PRERR [addr:%x cmd:%x]\n", DRV_NAME, maea0, maec0);
675 out_be32(bmid_base + SCC_DMA_INTST, INTSTS_PRERR|INTSTS_BMSINT);
676 out_be32(bmid_base + SCC_DMA_CMD,
677 in_be32(bmid_base + SCC_DMA_CMD) & ~ATA_DMA_START);
678 continue;
679 }
680
681 if (reg & INTSTS_RERR) {
682 printk(KERN_WARNING "%s: Response Error\n", DRV_NAME);
683 out_be32(bmid_base + SCC_DMA_INTST, INTSTS_RERR|INTSTS_BMSINT);
684 out_be32(bmid_base + SCC_DMA_CMD,
685 in_be32(bmid_base + SCC_DMA_CMD) & ~ATA_DMA_START);
686 continue;
687 }
688
689 if (reg & INTSTS_ICERR) {
690 out_be32(bmid_base + SCC_DMA_CMD,
691 in_be32(bmid_base + SCC_DMA_CMD) & ~ATA_DMA_START);
692 printk(KERN_WARNING "%s: Illegal Configuration\n", DRV_NAME);
693 out_be32(bmid_base + SCC_DMA_INTST, INTSTS_ICERR|INTSTS_BMSINT);
694 continue;
695 }
696
697 if (reg & INTSTS_BMSINT) {
698 unsigned int classes;
Tony Breeds7e068372007-05-23 14:26:43 -0700699 unsigned long deadline = jiffies + ATA_TMOUT_BOOT;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900700 printk(KERN_WARNING "%s: Internal Bus Error\n", DRV_NAME);
701 out_be32(bmid_base + SCC_DMA_INTST, INTSTS_BMSINT);
702 /* TBD: SW reset */
Tejun Heo9363c382008-04-07 22:47:16 +0900703 scc_softreset(&ap->link, &classes, deadline);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900704 continue;
705 }
706
707 if (reg & INTSTS_BMHE) {
708 out_be32(bmid_base + SCC_DMA_INTST, INTSTS_BMHE);
709 continue;
710 }
711
712 if (reg & INTSTS_ACTEINT) {
713 out_be32(bmid_base + SCC_DMA_INTST, INTSTS_ACTEINT);
714 continue;
715 }
716
717 if (reg & INTSTS_IOIRQS) {
718 out_be32(bmid_base + SCC_DMA_INTST, INTSTS_IOIRQS);
719 continue;
720 }
721 break;
722 }
723
724 /* clear start/stop bit */
725 out_be32(bmid_base + SCC_DMA_CMD,
726 in_be32(bmid_base + SCC_DMA_CMD) & ~ATA_DMA_START);
727
728 /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
Tejun Heo9363c382008-04-07 22:47:16 +0900729 ata_sff_altstatus(ap); /* dummy read */
Akira Iguchia619f981b2007-01-26 16:28:18 +0900730}
731
732/**
733 * scc_bmdma_status - Read PCI IDE BMDMA status
734 * @ap: Port associated with this ATA transaction.
735 */
736
737static u8 scc_bmdma_status (struct ata_port *ap)
738{
Akira Iguchia619f981b2007-01-26 16:28:18 +0900739 void __iomem *mmio = ap->ioaddr.bmdma_addr;
Akira Iguchifae57d32007-07-10 18:29:34 +0900740 u8 host_stat = in_be32(mmio + SCC_DMA_STATUS);
741 u32 int_status = in_be32(mmio + SCC_DMA_INTST);
Satyam Sharmab90fe232007-09-22 08:20:09 +0530742 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->link.active_tag);
Akira Iguchifae57d32007-07-10 18:29:34 +0900743 static int retry = 0;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900744
Akira Iguchifae57d32007-07-10 18:29:34 +0900745 /* return if IOS_SS is cleared */
746 if (!(in_be32(mmio + SCC_DMA_CMD) & ATA_DMA_START))
747 return host_stat;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900748
Akira Iguchifae57d32007-07-10 18:29:34 +0900749 /* errata A252,A308 workaround: Step4 */
Tejun Heo9363c382008-04-07 22:47:16 +0900750 if ((ata_sff_altstatus(ap) & ATA_ERR) && (int_status & INTSTS_INTRQ))
Akira Iguchifae57d32007-07-10 18:29:34 +0900751 return (host_stat | ATA_DMA_INTR);
752
753 /* errata A308 workaround Step5 */
754 if (int_status & INTSTS_IOIRQS) {
755 host_stat |= ATA_DMA_INTR;
756
757 /* We don't check ATAPI DMA because it is limited to UDMA4 */
758 if ((qc->tf.protocol == ATA_PROT_DMA &&
759 qc->dev->xfer_mode > XFER_UDMA_4)) {
760 if (!(int_status & INTSTS_ACTEINT)) {
Akira Iguchidcd03442007-07-17 12:10:17 +0900761 printk(KERN_WARNING "ata%u: operation failed (transfer data loss)\n",
762 ap->print_id);
Akira Iguchifae57d32007-07-10 18:29:34 +0900763 host_stat |= ATA_DMA_ERR;
764 if (retry++)
Akira Iguchidcd03442007-07-17 12:10:17 +0900765 ap->udma_mask &= ~(1 << qc->dev->xfer_mode);
Akira Iguchifae57d32007-07-10 18:29:34 +0900766 } else
767 retry = 0;
768 }
Akira Iguchia619f981b2007-01-26 16:28:18 +0900769 }
770
771 return host_stat;
772}
773
774/**
775 * scc_data_xfer - Transfer data by PIO
Tejun Heo55dba312007-12-05 16:43:07 +0900776 * @dev: device for this I/O
Akira Iguchia619f981b2007-01-26 16:28:18 +0900777 * @buf: data buffer
778 * @buflen: buffer length
Tejun Heo55dba312007-12-05 16:43:07 +0900779 * @rw: read/write
Akira Iguchia619f981b2007-01-26 16:28:18 +0900780 *
Tejun Heo9363c382008-04-07 22:47:16 +0900781 * Note: Original code is ata_sff_data_xfer().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900782 */
783
Tejun Heo55dba312007-12-05 16:43:07 +0900784static unsigned int scc_data_xfer (struct ata_device *dev, unsigned char *buf,
785 unsigned int buflen, int rw)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900786{
Tejun Heo55dba312007-12-05 16:43:07 +0900787 struct ata_port *ap = dev->link->ap;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900788 unsigned int words = buflen >> 1;
789 unsigned int i;
Al Viro826cd152008-03-25 05:18:11 +0000790 __le16 *buf16 = (__le16 *) buf;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900791 void __iomem *mmio = ap->ioaddr.data_addr;
792
793 /* Transfer multiple of 2 bytes */
Tejun Heo55dba312007-12-05 16:43:07 +0900794 if (rw == READ)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900795 for (i = 0; i < words; i++)
Al Viro826cd152008-03-25 05:18:11 +0000796 buf16[i] = cpu_to_le16(in_be32(mmio));
Tejun Heo55dba312007-12-05 16:43:07 +0900797 else
798 for (i = 0; i < words; i++)
Al Viro826cd152008-03-25 05:18:11 +0000799 out_be32(mmio, le16_to_cpu(buf16[i]));
Akira Iguchia619f981b2007-01-26 16:28:18 +0900800
801 /* Transfer trailing 1 byte, if any. */
802 if (unlikely(buflen & 0x01)) {
Al Viro826cd152008-03-25 05:18:11 +0000803 __le16 align_buf[1] = { 0 };
Akira Iguchia619f981b2007-01-26 16:28:18 +0900804 unsigned char *trailing_buf = buf + buflen - 1;
805
Tejun Heo55dba312007-12-05 16:43:07 +0900806 if (rw == READ) {
Al Viro826cd152008-03-25 05:18:11 +0000807 align_buf[0] = cpu_to_le16(in_be32(mmio));
Akira Iguchia619f981b2007-01-26 16:28:18 +0900808 memcpy(trailing_buf, align_buf, 1);
Tejun Heo55dba312007-12-05 16:43:07 +0900809 } else {
810 memcpy(align_buf, trailing_buf, 1);
Al Viro826cd152008-03-25 05:18:11 +0000811 out_be32(mmio, le16_to_cpu(align_buf[0]));
Akira Iguchia619f981b2007-01-26 16:28:18 +0900812 }
Tejun Heo55dba312007-12-05 16:43:07 +0900813 words++;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900814 }
Tejun Heo55dba312007-12-05 16:43:07 +0900815
816 return words << 1;
Akira Iguchia619f981b2007-01-26 16:28:18 +0900817}
818
819/**
820 * scc_irq_on - Enable interrupts on a port.
821 * @ap: Port on which interrupts are enabled.
822 *
Tejun Heo9363c382008-04-07 22:47:16 +0900823 * Note: Original code is ata_sff_irq_on().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900824 */
825
826static u8 scc_irq_on (struct ata_port *ap)
827{
828 struct ata_ioports *ioaddr = &ap->ioaddr;
829 u8 tmp;
830
831 ap->ctl &= ~ATA_NIEN;
832 ap->last_ctl = ap->ctl;
833
834 out_be32(ioaddr->ctl_addr, ap->ctl);
835 tmp = ata_wait_idle(ap);
836
Tejun Heo5682ed32008-04-07 22:47:16 +0900837 ap->ops->sff_irq_clear(ap);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900838
839 return tmp;
840}
841
842/**
Tejun Heo9363c382008-04-07 22:47:16 +0900843 * scc_freeze - Freeze BMDMA controller port
Akira Iguchia619f981b2007-01-26 16:28:18 +0900844 * @ap: port to freeze
845 *
Tejun Heo9363c382008-04-07 22:47:16 +0900846 * Note: Original code is ata_sff_freeze().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900847 */
848
Tejun Heo9363c382008-04-07 22:47:16 +0900849static void scc_freeze (struct ata_port *ap)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900850{
851 struct ata_ioports *ioaddr = &ap->ioaddr;
852
853 ap->ctl |= ATA_NIEN;
854 ap->last_ctl = ap->ctl;
855
856 out_be32(ioaddr->ctl_addr, ap->ctl);
857
858 /* Under certain circumstances, some controllers raise IRQ on
859 * ATA_NIEN manipulation. Also, many controllers fail to mask
860 * previously pending IRQ on ATA_NIEN assertion. Clear it.
861 */
Tejun Heo5682ed32008-04-07 22:47:16 +0900862 ap->ops->sff_check_status(ap);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900863
Tejun Heo5682ed32008-04-07 22:47:16 +0900864 ap->ops->sff_irq_clear(ap);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900865}
866
867/**
868 * scc_pata_prereset - prepare for reset
869 * @ap: ATA port to be reset
Tony Breeds7e068372007-05-23 14:26:43 -0700870 * @deadline: deadline jiffies for the operation
Akira Iguchia619f981b2007-01-26 16:28:18 +0900871 */
872
Satyam Sharmab90fe232007-09-22 08:20:09 +0530873static int scc_pata_prereset(struct ata_link *link, unsigned long deadline)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900874{
Satyam Sharmab90fe232007-09-22 08:20:09 +0530875 link->ap->cbl = ATA_CBL_PATA80;
Tejun Heo9363c382008-04-07 22:47:16 +0900876 return ata_sff_prereset(link, deadline);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900877}
878
879/**
Tejun Heo9363c382008-04-07 22:47:16 +0900880 * scc_postreset - standard postreset callback
Akira Iguchia619f981b2007-01-26 16:28:18 +0900881 * @ap: the target ata_port
882 * @classes: classes of attached devices
883 *
Tejun Heo9363c382008-04-07 22:47:16 +0900884 * Note: Original code is ata_sff_postreset().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900885 */
886
Tejun Heo9363c382008-04-07 22:47:16 +0900887static void scc_postreset(struct ata_link *link, unsigned int *classes)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900888{
Satyam Sharmab90fe232007-09-22 08:20:09 +0530889 struct ata_port *ap = link->ap;
890
Akira Iguchia619f981b2007-01-26 16:28:18 +0900891 DPRINTK("ENTER\n");
892
Akira Iguchia619f981b2007-01-26 16:28:18 +0900893 /* is double-select really necessary? */
894 if (classes[0] != ATA_DEV_NONE)
Tejun Heo5682ed32008-04-07 22:47:16 +0900895 ap->ops->sff_dev_select(ap, 1);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900896 if (classes[1] != ATA_DEV_NONE)
Tejun Heo5682ed32008-04-07 22:47:16 +0900897 ap->ops->sff_dev_select(ap, 0);
Akira Iguchia619f981b2007-01-26 16:28:18 +0900898
899 /* bail out if no device is present */
900 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
901 DPRINTK("EXIT, no device\n");
902 return;
903 }
904
905 /* set up device control */
906 if (ap->ioaddr.ctl_addr)
907 out_be32(ap->ioaddr.ctl_addr, ap->ctl);
908
909 DPRINTK("EXIT\n");
910}
911
912/**
Tejun Heo9363c382008-04-07 22:47:16 +0900913 * scc_irq_clear - Clear PCI IDE BMDMA interrupt.
Akira Iguchia619f981b2007-01-26 16:28:18 +0900914 * @ap: Port associated with this ATA transaction.
915 *
Tejun Heo9363c382008-04-07 22:47:16 +0900916 * Note: Original code is ata_sff_irq_clear().
Akira Iguchia619f981b2007-01-26 16:28:18 +0900917 */
918
Tejun Heo9363c382008-04-07 22:47:16 +0900919static void scc_irq_clear (struct ata_port *ap)
Akira Iguchia619f981b2007-01-26 16:28:18 +0900920{
921 void __iomem *mmio = ap->ioaddr.bmdma_addr;
922
923 if (!mmio)
924 return;
925
926 out_be32(mmio + SCC_DMA_STATUS, in_be32(mmio + SCC_DMA_STATUS));
927}
928
929/**
930 * scc_port_start - Set port up for dma.
931 * @ap: Port to initialize
932 *
933 * Allocate space for PRD table using ata_port_start().
934 * Set PRD table address for PTERADD. (PRD Transfer End Read)
935 */
936
937static int scc_port_start (struct ata_port *ap)
938{
939 void __iomem *mmio = ap->ioaddr.bmdma_addr;
940 int rc;
941
942 rc = ata_port_start(ap);
943 if (rc)
944 return rc;
945
946 out_be32(mmio + SCC_DMA_PTERADD, ap->prd_dma);
947 return 0;
948}
949
950/**
951 * scc_port_stop - Undo scc_port_start()
952 * @ap: Port to shut down
953 *
954 * Reset PTERADD.
955 */
956
957static void scc_port_stop (struct ata_port *ap)
958{
959 void __iomem *mmio = ap->ioaddr.bmdma_addr;
960
961 out_be32(mmio + SCC_DMA_PTERADD, 0);
962}
963
964static struct scsi_host_template scc_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900965 ATA_BMDMA_SHT(DRV_NAME),
Akira Iguchia619f981b2007-01-26 16:28:18 +0900966};
967
Tejun Heoc1796d92008-03-27 19:44:24 +0900968static struct ata_port_operations scc_pata_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900969 .inherits = &ata_bmdma_port_ops,
970
Akira Iguchia619f981b2007-01-26 16:28:18 +0900971 .set_piomode = scc_set_piomode,
972 .set_dmamode = scc_set_dmamode,
Akira Iguchidcd03442007-07-17 12:10:17 +0900973 .mode_filter = scc_mode_filter,
Akira Iguchia619f981b2007-01-26 16:28:18 +0900974
Tejun Heo5682ed32008-04-07 22:47:16 +0900975 .sff_tf_load = scc_tf_load,
976 .sff_tf_read = scc_tf_read,
977 .sff_exec_command = scc_exec_command,
978 .sff_check_status = scc_check_status,
979 .sff_check_altstatus = scc_check_altstatus,
980 .sff_dev_select = scc_dev_select,
Akira Iguchia619f981b2007-01-26 16:28:18 +0900981
982 .bmdma_setup = scc_bmdma_setup,
983 .bmdma_start = scc_bmdma_start,
984 .bmdma_stop = scc_bmdma_stop,
985 .bmdma_status = scc_bmdma_status,
Tejun Heo5682ed32008-04-07 22:47:16 +0900986 .sff_data_xfer = scc_data_xfer,
Akira Iguchia619f981b2007-01-26 16:28:18 +0900987
Tejun Heo9363c382008-04-07 22:47:16 +0900988 .freeze = scc_freeze,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900989 .prereset = scc_pata_prereset,
Tejun Heo9363c382008-04-07 22:47:16 +0900990 .softreset = scc_softreset,
991 .postreset = scc_postreset,
Akira Iguchia619f981b2007-01-26 16:28:18 +0900992 .post_internal_cmd = scc_bmdma_stop,
993
Tejun Heo5682ed32008-04-07 22:47:16 +0900994 .sff_irq_clear = scc_irq_clear,
995 .sff_irq_on = scc_irq_on,
Akira Iguchia619f981b2007-01-26 16:28:18 +0900996
997 .port_start = scc_port_start,
998 .port_stop = scc_port_stop,
999};
1000
1001static struct ata_port_info scc_port_info[] = {
1002 {
Akira Iguchia619f981b2007-01-26 16:28:18 +09001003 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_MMIO | ATA_FLAG_NO_LEGACY,
1004 .pio_mask = 0x1f, /* pio0-4 */
1005 .mwdma_mask = 0x00,
1006 .udma_mask = ATA_UDMA6,
1007 .port_ops = &scc_pata_ops,
1008 },
1009};
1010
1011/**
1012 * scc_reset_controller - initialize SCC PATA controller.
1013 */
1014
Tejun Heo5d728822007-04-17 23:44:08 +09001015static int scc_reset_controller(struct ata_host *host)
Akira Iguchia619f981b2007-01-26 16:28:18 +09001016{
Tejun Heo5d728822007-04-17 23:44:08 +09001017 void __iomem *ctrl_base = host->iomap[SCC_CTRL_BAR];
1018 void __iomem *bmid_base = host->iomap[SCC_BMID_BAR];
Akira Iguchia619f981b2007-01-26 16:28:18 +09001019 void __iomem *cckctrl_port = ctrl_base + SCC_CTL_CCKCTRL;
1020 void __iomem *mode_port = ctrl_base + SCC_CTL_MODEREG;
1021 void __iomem *ecmode_port = ctrl_base + SCC_CTL_ECMODE;
1022 void __iomem *intmask_port = bmid_base + SCC_DMA_INTMASK;
1023 void __iomem *dmastatus_port = bmid_base + SCC_DMA_STATUS;
1024 u32 reg = 0;
1025
1026 out_be32(cckctrl_port, reg);
1027 reg |= CCKCTRL_ATACLKOEN;
1028 out_be32(cckctrl_port, reg);
1029 reg |= CCKCTRL_LCLKEN | CCKCTRL_OCLKEN;
1030 out_be32(cckctrl_port, reg);
1031 reg |= CCKCTRL_CRST;
1032 out_be32(cckctrl_port, reg);
1033
1034 for (;;) {
1035 reg = in_be32(cckctrl_port);
1036 if (reg & CCKCTRL_CRST)
1037 break;
1038 udelay(5000);
1039 }
1040
1041 reg |= CCKCTRL_ATARESET;
1042 out_be32(cckctrl_port, reg);
1043 out_be32(ecmode_port, ECMODE_VALUE);
1044 out_be32(mode_port, MODE_JCUSFEN);
1045 out_be32(intmask_port, INTMASK_MSK);
1046
1047 if (in_be32(dmastatus_port) & QCHSD_STPDIAG) {
1048 printk(KERN_WARNING "%s: failed to detect 80c cable. (PDIAG# is high)\n", DRV_NAME);
1049 return -EIO;
1050 }
1051
1052 return 0;
1053}
1054
1055/**
1056 * scc_setup_ports - initialize ioaddr with SCC PATA port offsets.
1057 * @ioaddr: IO address structure to be initialized
1058 * @base: base address of BMID region
1059 */
1060
1061static void scc_setup_ports (struct ata_ioports *ioaddr, void __iomem *base)
1062{
1063 ioaddr->cmd_addr = base + SCC_REG_CMD_ADDR;
1064 ioaddr->altstatus_addr = ioaddr->cmd_addr + SCC_REG_ALTSTATUS;
1065 ioaddr->ctl_addr = ioaddr->cmd_addr + SCC_REG_ALTSTATUS;
1066 ioaddr->bmdma_addr = base;
1067 ioaddr->data_addr = ioaddr->cmd_addr + SCC_REG_DATA;
1068 ioaddr->error_addr = ioaddr->cmd_addr + SCC_REG_ERR;
1069 ioaddr->feature_addr = ioaddr->cmd_addr + SCC_REG_FEATURE;
1070 ioaddr->nsect_addr = ioaddr->cmd_addr + SCC_REG_NSECT;
1071 ioaddr->lbal_addr = ioaddr->cmd_addr + SCC_REG_LBAL;
1072 ioaddr->lbam_addr = ioaddr->cmd_addr + SCC_REG_LBAM;
1073 ioaddr->lbah_addr = ioaddr->cmd_addr + SCC_REG_LBAH;
1074 ioaddr->device_addr = ioaddr->cmd_addr + SCC_REG_DEVICE;
1075 ioaddr->status_addr = ioaddr->cmd_addr + SCC_REG_STATUS;
1076 ioaddr->command_addr = ioaddr->cmd_addr + SCC_REG_CMD;
1077}
1078
Tejun Heo5d728822007-04-17 23:44:08 +09001079static int scc_host_init(struct ata_host *host)
Akira Iguchia619f981b2007-01-26 16:28:18 +09001080{
Tejun Heo5d728822007-04-17 23:44:08 +09001081 struct pci_dev *pdev = to_pci_dev(host->dev);
Akira Iguchia619f981b2007-01-26 16:28:18 +09001082 int rc;
1083
Tejun Heo5d728822007-04-17 23:44:08 +09001084 rc = scc_reset_controller(host);
Akira Iguchia619f981b2007-01-26 16:28:18 +09001085 if (rc)
1086 return rc;
1087
Akira Iguchia619f981b2007-01-26 16:28:18 +09001088 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
1089 if (rc)
1090 return rc;
1091 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
1092 if (rc)
1093 return rc;
1094
Tejun Heo5d728822007-04-17 23:44:08 +09001095 scc_setup_ports(&host->ports[0]->ioaddr, host->iomap[SCC_BMID_BAR]);
Akira Iguchia619f981b2007-01-26 16:28:18 +09001096
1097 pci_set_master(pdev);
1098
1099 return 0;
1100}
1101
1102/**
1103 * scc_init_one - Register SCC PATA device with kernel services
1104 * @pdev: PCI device to register
1105 * @ent: Entry in scc_pci_tbl matching with @pdev
1106 *
1107 * LOCKING:
1108 * Inherited from PCI layer (may sleep).
1109 *
1110 * RETURNS:
1111 * Zero on success, or -ERRNO value.
1112 */
1113
1114static int scc_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1115{
1116 static int printed_version;
1117 unsigned int board_idx = (unsigned int) ent->driver_data;
Tejun Heo5d728822007-04-17 23:44:08 +09001118 const struct ata_port_info *ppi[] = { &scc_port_info[board_idx], NULL };
Alexey Dobriyan0397bad2007-05-03 23:44:59 +04001119 struct ata_host *host;
Akira Iguchia619f981b2007-01-26 16:28:18 +09001120 int rc;
1121
1122 if (!printed_version++)
1123 dev_printk(KERN_DEBUG, &pdev->dev,
1124 "version " DRV_VERSION "\n");
1125
Alexey Dobriyan0397bad2007-05-03 23:44:59 +04001126 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 1);
Tejun Heo5d728822007-04-17 23:44:08 +09001127 if (!host)
1128 return -ENOMEM;
1129
Akira Iguchia619f981b2007-01-26 16:28:18 +09001130 rc = pcim_enable_device(pdev);
1131 if (rc)
1132 return rc;
1133
1134 rc = pcim_iomap_regions(pdev, (1 << SCC_CTRL_BAR) | (1 << SCC_BMID_BAR), DRV_NAME);
1135 if (rc == -EBUSY)
1136 pcim_pin_device(pdev);
1137 if (rc)
1138 return rc;
Tejun Heo5d728822007-04-17 23:44:08 +09001139 host->iomap = pcim_iomap_table(pdev);
Akira Iguchia619f981b2007-01-26 16:28:18 +09001140
Tejun Heocbcdd872007-08-18 13:14:55 +09001141 ata_port_pbar_desc(host->ports[0], SCC_CTRL_BAR, -1, "ctrl");
1142 ata_port_pbar_desc(host->ports[0], SCC_BMID_BAR, -1, "bmid");
1143
Tejun Heo5d728822007-04-17 23:44:08 +09001144 rc = scc_host_init(host);
Akira Iguchia619f981b2007-01-26 16:28:18 +09001145 if (rc)
1146 return rc;
1147
Tejun Heo9363c382008-04-07 22:47:16 +09001148 return ata_host_activate(host, pdev->irq, ata_sff_interrupt,
1149 IRQF_SHARED, &scc_sht);
Akira Iguchia619f981b2007-01-26 16:28:18 +09001150}
1151
1152static struct pci_driver scc_pci_driver = {
1153 .name = DRV_NAME,
1154 .id_table = scc_pci_tbl,
1155 .probe = scc_init_one,
1156 .remove = ata_pci_remove_one,
1157#ifdef CONFIG_PM
1158 .suspend = ata_pci_device_suspend,
1159 .resume = ata_pci_device_resume,
1160#endif
1161};
1162
1163static int __init scc_init (void)
1164{
1165 int rc;
1166
1167 DPRINTK("pci_register_driver\n");
1168 rc = pci_register_driver(&scc_pci_driver);
1169 if (rc)
1170 return rc;
1171
1172 DPRINTK("done\n");
1173 return 0;
1174}
1175
1176static void __exit scc_exit (void)
1177{
1178 pci_unregister_driver(&scc_pci_driver);
1179}
1180
1181module_init(scc_init);
1182module_exit(scc_exit);
1183
1184MODULE_AUTHOR("Toshiba corp");
1185MODULE_DESCRIPTION("SCSI low-level driver for Toshiba SCC PATA controller");
1186MODULE_LICENSE("GPL");
1187MODULE_DEVICE_TABLE(pci, scc_pci_tbl);
1188MODULE_VERSION(DRV_VERSION);