2 * TX4939 internal IDE driver
3 * Based on RBTX49xx patch from CELF patch archive.
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
9 * (C) Copyright TOSHIBA CORPORATION 2005-2007
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/ide.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/platform_device.h>
19 #include <linux/scatterlist.h>
23 #define MODNAME "tx4939ide"
25 /* ATA Shadow Registers (8-bit except for Data which is 16-bit) */
26 #define TX4939IDE_Data 0x000
27 #define TX4939IDE_Error_Feature 0x001
28 #define TX4939IDE_Sec 0x002
29 #define TX4939IDE_LBA0 0x003
30 #define TX4939IDE_LBA1 0x004
31 #define TX4939IDE_LBA2 0x005
32 #define TX4939IDE_DevHead 0x006
33 #define TX4939IDE_Stat_Cmd 0x007
34 #define TX4939IDE_AltStat_DevCtl 0x402
35 /* H/W DMA Registers */
36 #define TX4939IDE_DMA_Cmd 0x800 /* 8-bit */
37 #define TX4939IDE_DMA_Stat 0x802 /* 8-bit */
38 #define TX4939IDE_PRD_Ptr 0x804 /* 32-bit */
39 /* ATA100 CORE Registers (16-bit) */
40 #define TX4939IDE_Sys_Ctl 0xc00
41 #define TX4939IDE_Xfer_Cnt_1 0xc08
42 #define TX4939IDE_Xfer_Cnt_2 0xc0a
43 #define TX4939IDE_Sec_Cnt 0xc10
44 #define TX4939IDE_Start_Lo_Addr 0xc18
45 #define TX4939IDE_Start_Up_Addr 0xc20
46 #define TX4939IDE_Add_Ctl 0xc28
47 #define TX4939IDE_Lo_Burst_Cnt 0xc30
48 #define TX4939IDE_Up_Burst_Cnt 0xc38
49 #define TX4939IDE_PIO_Addr 0xc88
50 #define TX4939IDE_H_Rst_Tim 0xc90
51 #define TX4939IDE_Int_Ctl 0xc98
52 #define TX4939IDE_Pkt_Cmd 0xcb8
53 #define TX4939IDE_Bxfer_Cnt_Hi 0xcc0
54 #define TX4939IDE_Bxfer_Cnt_Lo 0xcc8
55 #define TX4939IDE_Dev_TErr 0xcd0
56 #define TX4939IDE_Pkt_Xfer_Ctl 0xcd8
57 #define TX4939IDE_Start_TAddr 0xce0
59 /* bits for Int_Ctl */
60 #define TX4939IDE_INT_ADDRERR 0x80
61 #define TX4939IDE_INT_REACHMUL 0x40
62 #define TX4939IDE_INT_DEVTIMING 0x20
63 #define TX4939IDE_INT_UDMATERM 0x10
64 #define TX4939IDE_INT_TIMER 0x08
65 #define TX4939IDE_INT_BUSERR 0x04
66 #define TX4939IDE_INT_XFEREND 0x02
67 #define TX4939IDE_INT_HOST 0x01
69 #define TX4939IDE_IGNORE_INTS \
70 (TX4939IDE_INT_ADDRERR | TX4939IDE_INT_REACHMUL | \
71 TX4939IDE_INT_DEVTIMING | TX4939IDE_INT_UDMATERM | \
72 TX4939IDE_INT_TIMER | TX4939IDE_INT_XFEREND)
75 #define tx4939ide_swizzlel(a) ((a) ^ 4)
76 #define tx4939ide_swizzlew(a) ((a) ^ 6)
77 #define tx4939ide_swizzleb(a) ((a) ^ 7)
79 #define tx4939ide_swizzlel(a) (a)
80 #define tx4939ide_swizzlew(a) (a)
81 #define tx4939ide_swizzleb(a) (a)
84 static u16
tx4939ide_readw(void __iomem
*base
, u32 reg
)
86 return __raw_readw(base
+ tx4939ide_swizzlew(reg
));
88 static u8
tx4939ide_readb(void __iomem
*base
, u32 reg
)
90 return __raw_readb(base
+ tx4939ide_swizzleb(reg
));
92 static void tx4939ide_writel(u32 val
, void __iomem
*base
, u32 reg
)
94 __raw_writel(val
, base
+ tx4939ide_swizzlel(reg
));
96 static void tx4939ide_writew(u16 val
, void __iomem
*base
, u32 reg
)
98 __raw_writew(val
, base
+ tx4939ide_swizzlew(reg
));
100 static void tx4939ide_writeb(u8 val
, void __iomem
*base
, u32 reg
)
102 __raw_writeb(val
, base
+ tx4939ide_swizzleb(reg
));
105 #define TX4939IDE_BASE(hwif) ((void __iomem *)(hwif)->extra_base)
107 static void tx4939ide_set_pio_mode(ide_drive_t
*drive
, const u8 pio
)
109 ide_hwif_t
*hwif
= drive
->hwif
;
110 int is_slave
= drive
->dn
;
115 pair
= ide_get_pair_dev(drive
);
117 safe
= min(safe
, ide_get_best_pio_mode(pair
, 255, 4));
119 * Update Command Transfer Mode for master/slave and Data
120 * Transfer Mode for this drive.
122 mask
= is_slave
? 0x07f00000 : 0x000007f0;
123 val
= ((safe
<< 8) | (pio
<< 4)) << (is_slave
? 16 : 0);
124 hwif
->select_data
= (hwif
->select_data
& ~mask
) | val
;
125 /* tx4939ide_tf_load_fixup() will set the Sys_Ctl register */
128 static void tx4939ide_set_dma_mode(ide_drive_t
*drive
, const u8 mode
)
130 ide_hwif_t
*hwif
= drive
->hwif
;
133 /* Update Data Transfer Mode for this drive. */
134 if (mode
>= XFER_UDMA_0
)
135 val
= mode
- XFER_UDMA_0
+ 8;
137 val
= mode
- XFER_MW_DMA_0
+ 5;
145 hwif
->select_data
= (hwif
->select_data
& ~mask
) | val
;
146 /* tx4939ide_tf_load_fixup() will set the Sys_Ctl register */
149 static u16
tx4939ide_check_error_ints(ide_hwif_t
*hwif
)
151 void __iomem
*base
= TX4939IDE_BASE(hwif
);
152 u16 ctl
= tx4939ide_readw(base
, TX4939IDE_Int_Ctl
);
154 if (ctl
& TX4939IDE_INT_BUSERR
) {
156 u16 sysctl
= tx4939ide_readw(base
, TX4939IDE_Sys_Ctl
);
158 tx4939ide_writew(sysctl
| 0x4000, base
, TX4939IDE_Sys_Ctl
);
160 /* wait 12GBUSCLK (typ. 60ns @ GBUS200MHz, max 270ns) */
162 tx4939ide_writew(sysctl
, base
, TX4939IDE_Sys_Ctl
);
164 if (ctl
& (TX4939IDE_INT_ADDRERR
|
165 TX4939IDE_INT_DEVTIMING
| TX4939IDE_INT_BUSERR
))
166 pr_err("%s: Error interrupt %#x (%s%s%s )\n",
168 ctl
& TX4939IDE_INT_ADDRERR
? " Address-Error" : "",
169 ctl
& TX4939IDE_INT_DEVTIMING
? " DEV-Timing" : "",
170 ctl
& TX4939IDE_INT_BUSERR
? " Bus-Error" : "");
174 static void tx4939ide_clear_irq(ide_drive_t
*drive
)
181 * tx4939ide_dma_test_irq() and tx4939ide_dma_end() do all job
184 if (drive
->waiting_for_dma
)
187 base
= TX4939IDE_BASE(hwif
);
188 ctl
= tx4939ide_check_error_ints(hwif
);
189 tx4939ide_writew(ctl
, base
, TX4939IDE_Int_Ctl
);
192 static u8
tx4939ide_cable_detect(ide_hwif_t
*hwif
)
194 void __iomem
*base
= TX4939IDE_BASE(hwif
);
196 return tx4939ide_readw(base
, TX4939IDE_Sys_Ctl
) & 0x2000 ?
197 ATA_CBL_PATA40
: ATA_CBL_PATA80
;
201 static void tx4939ide_dma_host_set(ide_drive_t
*drive
, int on
)
203 ide_hwif_t
*hwif
= drive
->hwif
;
205 void __iomem
*base
= TX4939IDE_BASE(hwif
);
206 u8 dma_stat
= tx4939ide_readb(base
, TX4939IDE_DMA_Stat
);
209 dma_stat
|= (1 << (5 + unit
));
211 dma_stat
&= ~(1 << (5 + unit
));
213 tx4939ide_writeb(dma_stat
, base
, TX4939IDE_DMA_Stat
);
216 #define tx4939ide_dma_host_set ide_dma_host_set
219 static u8
tx4939ide_clear_dma_status(void __iomem
*base
)
223 /* read DMA status for INTR & ERROR flags */
224 dma_stat
= tx4939ide_readb(base
, TX4939IDE_DMA_Stat
);
225 /* clear INTR & ERROR flags */
226 tx4939ide_writeb(dma_stat
| ATA_DMA_INTR
| ATA_DMA_ERR
, base
,
228 /* recover intmask cleared by writing to bit2 of DMA_Stat */
229 tx4939ide_writew(TX4939IDE_IGNORE_INTS
<< 8, base
, TX4939IDE_Int_Ctl
);
234 /* custom ide_build_dmatable to handle swapped layout */
235 static int tx4939ide_build_dmatable(ide_drive_t
*drive
, struct ide_cmd
*cmd
)
237 ide_hwif_t
*hwif
= drive
->hwif
;
238 u32
*table
= (u32
*)hwif
->dmatable_cpu
;
239 unsigned int count
= 0;
241 struct scatterlist
*sg
;
243 for_each_sg(hwif
->sg_table
, sg
, cmd
->sg_nents
, i
) {
244 u32 cur_addr
, cur_len
, bcount
;
246 cur_addr
= sg_dma_address(sg
);
247 cur_len
= sg_dma_len(sg
);
250 * Fill in the DMA table, without crossing any 64kB boundaries.
254 if (count
++ >= PRD_ENTRIES
)
255 goto use_pio_instead
;
257 bcount
= 0x10000 - (cur_addr
& 0xffff);
258 if (bcount
> cur_len
)
261 * This workaround for zero count seems required.
262 * (standard ide_build_dmatable does it too)
264 if (bcount
== 0x10000)
266 *table
++ = bcount
& 0xffff;
274 *(table
- 2) |= 0x80000000;
279 printk(KERN_ERR
"%s: %s\n", drive
->name
,
280 count
? "DMA table too small" : "empty DMA table?");
282 ide_destroy_dmatable(drive
);
284 return 0; /* revert to PIO for this request */
287 #define tx4939ide_build_dmatable ide_build_dmatable
290 static int tx4939ide_dma_setup(ide_drive_t
*drive
, struct ide_cmd
*cmd
)
292 ide_hwif_t
*hwif
= drive
->hwif
;
293 void __iomem
*base
= TX4939IDE_BASE(hwif
);
294 u8 rw
= (cmd
->tf_flags
& IDE_TFLAG_WRITE
) ? 0 : ATA_DMA_WR
;
296 /* fall back to PIO! */
297 if (tx4939ide_build_dmatable(drive
, cmd
) == 0) {
298 ide_map_sg(drive
, cmd
);
303 tx4939ide_writel(hwif
->dmatable_dma
, base
, TX4939IDE_PRD_Ptr
);
306 tx4939ide_writeb(rw
, base
, TX4939IDE_DMA_Cmd
);
308 /* clear INTR & ERROR flags */
309 tx4939ide_clear_dma_status(base
);
311 drive
->waiting_for_dma
= 1;
313 tx4939ide_writew(SECTOR_SIZE
/ 2, base
, drive
->dn
?
314 TX4939IDE_Xfer_Cnt_2
: TX4939IDE_Xfer_Cnt_1
);
316 tx4939ide_writew(cmd
->rq
->nr_sectors
, base
, TX4939IDE_Sec_Cnt
);
321 static int tx4939ide_dma_end(ide_drive_t
*drive
)
323 ide_hwif_t
*hwif
= drive
->hwif
;
324 u8 dma_stat
, dma_cmd
;
325 void __iomem
*base
= TX4939IDE_BASE(hwif
);
326 u16 ctl
= tx4939ide_readw(base
, TX4939IDE_Int_Ctl
);
328 drive
->waiting_for_dma
= 0;
330 /* get DMA command mode */
331 dma_cmd
= tx4939ide_readb(base
, TX4939IDE_DMA_Cmd
);
333 tx4939ide_writeb(dma_cmd
& ~ATA_DMA_START
, base
, TX4939IDE_DMA_Cmd
);
335 /* read and clear the INTR & ERROR bits */
336 dma_stat
= tx4939ide_clear_dma_status(base
);
338 /* purge DMA mappings */
339 ide_destroy_dmatable(drive
);
340 /* verify good DMA status */
343 if ((dma_stat
& (ATA_DMA_INTR
| ATA_DMA_ERR
| ATA_DMA_ACTIVE
)) == 0 &&
344 (ctl
& (TX4939IDE_INT_XFEREND
| TX4939IDE_INT_HOST
)) ==
345 (TX4939IDE_INT_XFEREND
| TX4939IDE_INT_HOST
))
346 /* INT_IDE lost... bug? */
348 return ((dma_stat
& (ATA_DMA_INTR
| ATA_DMA_ERR
| ATA_DMA_ACTIVE
)) !=
349 ATA_DMA_INTR
) ? 0x10 | dma_stat
: 0;
352 /* returns 1 if DMA IRQ issued, 0 otherwise */
353 static int tx4939ide_dma_test_irq(ide_drive_t
*drive
)
355 ide_hwif_t
*hwif
= drive
->hwif
;
356 void __iomem
*base
= TX4939IDE_BASE(hwif
);
361 ctl
= tx4939ide_check_error_ints(hwif
);
362 ide_int
= ctl
& (TX4939IDE_INT_XFEREND
| TX4939IDE_INT_HOST
);
364 case TX4939IDE_INT_HOST
:
365 /* On error, XFEREND might not be asserted. */
366 stat
= tx4939ide_readb(base
, TX4939IDE_AltStat_DevCtl
);
367 if ((stat
& (ATA_BUSY
| ATA_DRQ
| ATA_ERR
)) == ATA_ERR
)
370 /* Wait for XFEREND (Mask HOST and unmask XFEREND) */
371 ctl
&= ~TX4939IDE_INT_XFEREND
<< 8;
374 case TX4939IDE_INT_HOST
| TX4939IDE_INT_XFEREND
:
375 dma_stat
= tx4939ide_readb(base
, TX4939IDE_DMA_Stat
);
376 if (!(dma_stat
& ATA_DMA_INTR
))
377 pr_warning("%s: weird interrupt status. "
378 "DMA_Stat %#02x int_ctl %#04x\n",
379 hwif
->name
, dma_stat
, ctl
);
384 * Do not clear XFEREND, HOST now. They will be cleared by
385 * clearing bit2 of DMA_Stat.
388 tx4939ide_writew(ctl
, base
, TX4939IDE_Int_Ctl
);
393 static u8
tx4939ide_dma_sff_read_status(ide_hwif_t
*hwif
)
395 void __iomem
*base
= TX4939IDE_BASE(hwif
);
397 return tx4939ide_readb(base
, TX4939IDE_DMA_Stat
);
400 #define tx4939ide_dma_sff_read_status ide_dma_sff_read_status
403 static void tx4939ide_init_hwif(ide_hwif_t
*hwif
)
405 void __iomem
*base
= TX4939IDE_BASE(hwif
);
408 tx4939ide_writew(0x8000, base
, TX4939IDE_Sys_Ctl
);
410 /* at least 20 GBUSCLK (typ. 100ns @ GBUS200MHz, max 450ns) */
412 tx4939ide_writew(0x0000, base
, TX4939IDE_Sys_Ctl
);
413 /* mask some interrupts and clear all interrupts */
414 tx4939ide_writew((TX4939IDE_IGNORE_INTS
<< 8) | 0xff, base
,
417 tx4939ide_writew(0x0008, base
, TX4939IDE_Lo_Burst_Cnt
);
418 tx4939ide_writew(0, base
, TX4939IDE_Up_Burst_Cnt
);
421 static int tx4939ide_init_dma(ide_hwif_t
*hwif
, const struct ide_port_info
*d
)
424 hwif
->extra_base
+ tx4939ide_swizzleb(TX4939IDE_DMA_Cmd
);
426 * Note that we cannot use ATA_DMA_TABLE_OFS, ATA_DMA_STATUS
429 return ide_allocate_dma_engine(hwif
);
432 static void tx4939ide_tf_load_fixup(ide_drive_t
*drive
)
434 ide_hwif_t
*hwif
= drive
->hwif
;
435 void __iomem
*base
= TX4939IDE_BASE(hwif
);
436 u16 sysctl
= hwif
->select_data
>> (drive
->dn
? 16 : 0);
439 * Fix ATA100 CORE System Control Register. (The write to the
440 * Device/Head register may write wrong data to the System
442 * While Sys_Ctl is written here, selectproc is not needed.
444 tx4939ide_writew(sysctl
, base
, TX4939IDE_Sys_Ctl
);
449 /* custom iops (independent from SWAP_IO_SPACE) */
450 static u8
tx4939ide_inb(unsigned long port
)
452 return __raw_readb((void __iomem
*)port
);
455 static void tx4939ide_outb(u8 value
, unsigned long port
)
457 __raw_writeb(value
, (void __iomem
*)port
);
460 static void tx4939ide_tf_load(ide_drive_t
*drive
, struct ide_cmd
*cmd
)
462 ide_hwif_t
*hwif
= drive
->hwif
;
463 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
464 struct ide_taskfile
*tf
= &cmd
->tf
;
465 u8 HIHI
= cmd
->tf_flags
& IDE_TFLAG_LBA48
? 0xE0 : 0xEF;
467 if (cmd
->ftf_flags
& IDE_FTFLAG_FLAGGED
)
470 if (cmd
->ftf_flags
& IDE_FTFLAG_OUT_DATA
) {
471 u16 data
= (tf
->hob_data
<< 8) | tf
->data
;
474 __raw_writew(data
, (void __iomem
*)io_ports
->data_addr
);
477 if (cmd
->tf_flags
& IDE_TFLAG_OUT_HOB_FEATURE
)
478 tx4939ide_outb(tf
->hob_feature
, io_ports
->feature_addr
);
479 if (cmd
->tf_flags
& IDE_TFLAG_OUT_HOB_NSECT
)
480 tx4939ide_outb(tf
->hob_nsect
, io_ports
->nsect_addr
);
481 if (cmd
->tf_flags
& IDE_TFLAG_OUT_HOB_LBAL
)
482 tx4939ide_outb(tf
->hob_lbal
, io_ports
->lbal_addr
);
483 if (cmd
->tf_flags
& IDE_TFLAG_OUT_HOB_LBAM
)
484 tx4939ide_outb(tf
->hob_lbam
, io_ports
->lbam_addr
);
485 if (cmd
->tf_flags
& IDE_TFLAG_OUT_HOB_LBAH
)
486 tx4939ide_outb(tf
->hob_lbah
, io_ports
->lbah_addr
);
488 if (cmd
->tf_flags
& IDE_TFLAG_OUT_FEATURE
)
489 tx4939ide_outb(tf
->feature
, io_ports
->feature_addr
);
490 if (cmd
->tf_flags
& IDE_TFLAG_OUT_NSECT
)
491 tx4939ide_outb(tf
->nsect
, io_ports
->nsect_addr
);
492 if (cmd
->tf_flags
& IDE_TFLAG_OUT_LBAL
)
493 tx4939ide_outb(tf
->lbal
, io_ports
->lbal_addr
);
494 if (cmd
->tf_flags
& IDE_TFLAG_OUT_LBAM
)
495 tx4939ide_outb(tf
->lbam
, io_ports
->lbam_addr
);
496 if (cmd
->tf_flags
& IDE_TFLAG_OUT_LBAH
)
497 tx4939ide_outb(tf
->lbah
, io_ports
->lbah_addr
);
499 if (cmd
->tf_flags
& IDE_TFLAG_OUT_DEVICE
) {
500 tx4939ide_outb((tf
->device
& HIHI
) | drive
->select
,
501 io_ports
->device_addr
);
502 tx4939ide_tf_load_fixup(drive
);
506 static void tx4939ide_tf_read(ide_drive_t
*drive
, struct ide_cmd
*cmd
)
508 ide_hwif_t
*hwif
= drive
->hwif
;
509 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
510 struct ide_taskfile
*tf
= &cmd
->tf
;
512 if (cmd
->ftf_flags
& IDE_FTFLAG_IN_DATA
) {
516 data
= __raw_readw((void __iomem
*)io_ports
->data_addr
);
517 tf
->data
= data
& 0xff;
518 tf
->hob_data
= (data
>> 8) & 0xff;
521 /* be sure we're looking at the low order bits */
522 tx4939ide_outb(ATA_DEVCTL_OBS
& ~0x80, io_ports
->ctl_addr
);
524 if (cmd
->tf_flags
& IDE_TFLAG_IN_FEATURE
)
525 tf
->feature
= tx4939ide_inb(io_ports
->feature_addr
);
526 if (cmd
->tf_flags
& IDE_TFLAG_IN_NSECT
)
527 tf
->nsect
= tx4939ide_inb(io_ports
->nsect_addr
);
528 if (cmd
->tf_flags
& IDE_TFLAG_IN_LBAL
)
529 tf
->lbal
= tx4939ide_inb(io_ports
->lbal_addr
);
530 if (cmd
->tf_flags
& IDE_TFLAG_IN_LBAM
)
531 tf
->lbam
= tx4939ide_inb(io_ports
->lbam_addr
);
532 if (cmd
->tf_flags
& IDE_TFLAG_IN_LBAH
)
533 tf
->lbah
= tx4939ide_inb(io_ports
->lbah_addr
);
534 if (cmd
->tf_flags
& IDE_TFLAG_IN_DEVICE
)
535 tf
->device
= tx4939ide_inb(io_ports
->device_addr
);
537 if (cmd
->tf_flags
& IDE_TFLAG_LBA48
) {
538 tx4939ide_outb(ATA_DEVCTL_OBS
| 0x80, io_ports
->ctl_addr
);
540 if (cmd
->tf_flags
& IDE_TFLAG_IN_HOB_FEATURE
)
542 tx4939ide_inb(io_ports
->feature_addr
);
543 if (cmd
->tf_flags
& IDE_TFLAG_IN_HOB_NSECT
)
544 tf
->hob_nsect
= tx4939ide_inb(io_ports
->nsect_addr
);
545 if (cmd
->tf_flags
& IDE_TFLAG_IN_HOB_LBAL
)
546 tf
->hob_lbal
= tx4939ide_inb(io_ports
->lbal_addr
);
547 if (cmd
->tf_flags
& IDE_TFLAG_IN_HOB_LBAM
)
548 tf
->hob_lbam
= tx4939ide_inb(io_ports
->lbam_addr
);
549 if (cmd
->tf_flags
& IDE_TFLAG_IN_HOB_LBAH
)
550 tf
->hob_lbah
= tx4939ide_inb(io_ports
->lbah_addr
);
554 static void tx4939ide_input_data_swap(ide_drive_t
*drive
, struct request
*rq
,
555 void *buf
, unsigned int len
)
557 unsigned long port
= drive
->hwif
->io_ports
.data_addr
;
558 unsigned short *ptr
= buf
;
559 unsigned int count
= (len
+ 1) / 2;
562 *ptr
++ = cpu_to_le16(__raw_readw((void __iomem
*)port
));
563 __ide_flush_dcache_range((unsigned long)buf
, roundup(len
, 2));
566 static void tx4939ide_output_data_swap(ide_drive_t
*drive
, struct request
*rq
,
567 void *buf
, unsigned int len
)
569 unsigned long port
= drive
->hwif
->io_ports
.data_addr
;
570 unsigned short *ptr
= buf
;
571 unsigned int count
= (len
+ 1) / 2;
574 __raw_writew(le16_to_cpu(*ptr
), (void __iomem
*)port
);
577 __ide_flush_dcache_range((unsigned long)buf
, roundup(len
, 2));
580 static const struct ide_tp_ops tx4939ide_tp_ops
= {
581 .exec_command
= ide_exec_command
,
582 .read_status
= ide_read_status
,
583 .read_altstatus
= ide_read_altstatus
,
585 .set_irq
= ide_set_irq
,
587 .tf_load
= tx4939ide_tf_load
,
588 .tf_read
= tx4939ide_tf_read
,
590 .input_data
= tx4939ide_input_data_swap
,
591 .output_data
= tx4939ide_output_data_swap
,
594 #else /* __LITTLE_ENDIAN */
596 static void tx4939ide_tf_load(ide_drive_t
*drive
, struct ide_cmd
*cmd
)
598 ide_tf_load(drive
, cmd
);
600 if (cmd
->tf_flags
& IDE_TFLAG_OUT_DEVICE
)
601 tx4939ide_tf_load_fixup(drive
);
604 static const struct ide_tp_ops tx4939ide_tp_ops
= {
605 .exec_command
= ide_exec_command
,
606 .read_status
= ide_read_status
,
607 .read_altstatus
= ide_read_altstatus
,
609 .set_irq
= ide_set_irq
,
611 .tf_load
= tx4939ide_tf_load
,
612 .tf_read
= ide_tf_read
,
614 .input_data
= ide_input_data
,
615 .output_data
= ide_output_data
,
618 #endif /* __LITTLE_ENDIAN */
620 static const struct ide_port_ops tx4939ide_port_ops
= {
621 .set_pio_mode
= tx4939ide_set_pio_mode
,
622 .set_dma_mode
= tx4939ide_set_dma_mode
,
623 .clear_irq
= tx4939ide_clear_irq
,
624 .cable_detect
= tx4939ide_cable_detect
,
627 static const struct ide_dma_ops tx4939ide_dma_ops
= {
628 .dma_host_set
= tx4939ide_dma_host_set
,
629 .dma_setup
= tx4939ide_dma_setup
,
630 .dma_start
= ide_dma_start
,
631 .dma_end
= tx4939ide_dma_end
,
632 .dma_test_irq
= tx4939ide_dma_test_irq
,
633 .dma_lost_irq
= ide_dma_lost_irq
,
634 .dma_timer_expiry
= ide_dma_sff_timer_expiry
,
635 .dma_sff_read_status
= tx4939ide_dma_sff_read_status
,
638 static const struct ide_port_info tx4939ide_port_info __initdata
= {
639 .init_hwif
= tx4939ide_init_hwif
,
640 .init_dma
= tx4939ide_init_dma
,
641 .port_ops
= &tx4939ide_port_ops
,
642 .dma_ops
= &tx4939ide_dma_ops
,
643 .tp_ops
= &tx4939ide_tp_ops
,
644 .host_flags
= IDE_HFLAG_MMIO
,
645 .pio_mask
= ATA_PIO4
,
646 .mwdma_mask
= ATA_MWDMA2
,
647 .udma_mask
= ATA_UDMA5
,
648 .chipset
= ide_generic
,
651 static int __init
tx4939ide_probe(struct platform_device
*pdev
)
654 hw_regs_t
*hws
[] = { &hw
, NULL
, NULL
, NULL
};
655 struct ide_host
*host
;
656 struct resource
*res
;
658 unsigned long mapbase
;
660 irq
= platform_get_irq(pdev
, 0);
663 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
667 if (!devm_request_mem_region(&pdev
->dev
, res
->start
,
668 res
->end
- res
->start
+ 1, "tx4938ide"))
670 mapbase
= (unsigned long)devm_ioremap(&pdev
->dev
, res
->start
,
671 res
->end
- res
->start
+ 1);
674 memset(&hw
, 0, sizeof(hw
));
675 hw
.io_ports
.data_addr
=
676 mapbase
+ tx4939ide_swizzlew(TX4939IDE_Data
);
677 hw
.io_ports
.error_addr
=
678 mapbase
+ tx4939ide_swizzleb(TX4939IDE_Error_Feature
);
679 hw
.io_ports
.nsect_addr
=
680 mapbase
+ tx4939ide_swizzleb(TX4939IDE_Sec
);
681 hw
.io_ports
.lbal_addr
=
682 mapbase
+ tx4939ide_swizzleb(TX4939IDE_LBA0
);
683 hw
.io_ports
.lbam_addr
=
684 mapbase
+ tx4939ide_swizzleb(TX4939IDE_LBA1
);
685 hw
.io_ports
.lbah_addr
=
686 mapbase
+ tx4939ide_swizzleb(TX4939IDE_LBA2
);
687 hw
.io_ports
.device_addr
=
688 mapbase
+ tx4939ide_swizzleb(TX4939IDE_DevHead
);
689 hw
.io_ports
.command_addr
=
690 mapbase
+ tx4939ide_swizzleb(TX4939IDE_Stat_Cmd
);
691 hw
.io_ports
.ctl_addr
=
692 mapbase
+ tx4939ide_swizzleb(TX4939IDE_AltStat_DevCtl
);
696 pr_info("TX4939 IDE interface (base %#lx, irq %d)\n", mapbase
, irq
);
697 host
= ide_host_alloc(&tx4939ide_port_info
, hws
);
700 /* use extra_base for base address of the all registers */
701 host
->ports
[0]->extra_base
= mapbase
;
702 ret
= ide_host_register(host
, &tx4939ide_port_info
, hws
);
707 platform_set_drvdata(pdev
, host
);
711 static int __exit
tx4939ide_remove(struct platform_device
*pdev
)
713 struct ide_host
*host
= platform_get_drvdata(pdev
);
715 ide_host_remove(host
);
720 static int tx4939ide_resume(struct platform_device
*dev
)
722 struct ide_host
*host
= platform_get_drvdata(dev
);
723 ide_hwif_t
*hwif
= host
->ports
[0];
725 tx4939ide_init_hwif(hwif
);
729 #define tx4939ide_resume NULL
732 static struct platform_driver tx4939ide_driver
= {
735 .owner
= THIS_MODULE
,
737 .remove
= __exit_p(tx4939ide_remove
),
738 .resume
= tx4939ide_resume
,
741 static int __init
tx4939ide_init(void)
743 return platform_driver_probe(&tx4939ide_driver
, tx4939ide_probe
);
746 static void __exit
tx4939ide_exit(void)
748 platform_driver_unregister(&tx4939ide_driver
);
751 module_init(tx4939ide_init
);
752 module_exit(tx4939ide_exit
);
754 MODULE_DESCRIPTION("TX4939 internal IDE driver");
755 MODULE_LICENSE("GPL");
756 MODULE_ALIAS("platform:tx4939ide");