2 * Driver for MagicBox 2.0 onboard CompactFlash adapter.
4 * Written by Wojtek Kaniewski <wojtekka@toxygen.net>
5 * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
7 * GNU General Public License.
10 #include <linux/version.h>
11 #include <linux/types.h>
13 #include <linux/interrupt.h>
14 #include <linux/blkdev.h>
15 #include <linux/hdreg.h>
16 #include <linux/ide.h>
17 #include <linux/delay.h>
18 #include <linux/platform_device.h>
22 #define MAGICBOX_CF_IRQ 25
24 static u8
magicbox_ide_inb(unsigned long port
)
26 return (u8
) (readw((void __iomem
*) port
) >> 8) & 0xff;
29 static void magicbox_ide_outb(u8 value
, unsigned long port
)
31 writew(value
<< 8, (void __iomem
*) port
);
34 static void magicbox_ide_outbsync(ide_drive_t
*drive
, u8 value
,
37 writew(value
<< 8, (void __iomem
*) port
);
40 static inline void magicbox_ide_insw(unsigned long port
, void *addr
, u32 count
)
44 for (ptr
= addr
; count
--; ptr
++)
45 *ptr
= readw((void __iomem
*) port
);
48 static inline void magicbox_ide_insl(unsigned long port
, void *addr
, u32 count
)
52 for (ptr
= addr
; count
--; ptr
++)
53 *ptr
= readl((void __iomem
*) port
);
56 static inline void magicbox_ide_outsw(unsigned long port
, void *addr
,
61 for (ptr
= addr
; count
--; ptr
++)
62 writew(*ptr
, (void __iomem
*) port
);
65 static inline void magicbox_ide_outsl(unsigned long port
, void *addr
,
70 for (ptr
= addr
; count
--; ptr
++)
71 writel(*ptr
, (void __iomem
*) port
);
74 static void magicbox_ide_tf_load(ide_drive_t
*drive
, ide_task_t
*task
)
76 struct ide_io_ports
*io_ports
= &drive
->hwif
->io_ports
;
77 struct ide_taskfile
*tf
= &task
->tf
;
78 u8 HIHI
= (task
->tf_flags
& IDE_TFLAG_LBA48
) ? 0xE0 : 0xEF;
80 if (task
->tf_flags
& IDE_TFLAG_FLAGGED
)
83 ide_set_irq(drive
, 1);
85 if (task
->tf_flags
& IDE_TFLAG_OUT_DATA
)
86 writel((tf
->hob_data
<< 8) | tf
->data
,
87 (void __iomem
*) io_ports
->data_addr
);
89 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_FEATURE
)
90 magicbox_ide_outb(tf
->hob_feature
, io_ports
->feature_addr
);
91 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_NSECT
)
92 magicbox_ide_outb(tf
->hob_nsect
, io_ports
->nsect_addr
);
93 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_LBAL
)
94 magicbox_ide_outb(tf
->hob_lbal
, io_ports
->lbal_addr
);
95 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_LBAM
)
96 magicbox_ide_outb(tf
->hob_lbam
, io_ports
->lbam_addr
);
97 if (task
->tf_flags
& IDE_TFLAG_OUT_HOB_LBAH
)
98 magicbox_ide_outb(tf
->hob_lbah
, io_ports
->lbah_addr
);
100 if (task
->tf_flags
& IDE_TFLAG_OUT_FEATURE
)
101 magicbox_ide_outb(tf
->feature
, io_ports
->feature_addr
);
102 if (task
->tf_flags
& IDE_TFLAG_OUT_NSECT
)
103 magicbox_ide_outb(tf
->nsect
, io_ports
->nsect_addr
);
104 if (task
->tf_flags
& IDE_TFLAG_OUT_LBAL
)
105 magicbox_ide_outb(tf
->lbal
, io_ports
->lbal_addr
);
106 if (task
->tf_flags
& IDE_TFLAG_OUT_LBAM
)
107 magicbox_ide_outb(tf
->lbam
, io_ports
->lbam_addr
);
108 if (task
->tf_flags
& IDE_TFLAG_OUT_LBAH
)
109 magicbox_ide_outb(tf
->lbah
, io_ports
->lbah_addr
);
111 if (task
->tf_flags
& IDE_TFLAG_OUT_DEVICE
)
112 magicbox_ide_outb((tf
->device
& HIHI
) | drive
->select
.all
,
113 io_ports
->device_addr
);
116 static void magicbox_ide_tf_read(ide_drive_t
*drive
, ide_task_t
*task
)
118 struct ide_io_ports
*io_ports
= &drive
->hwif
->io_ports
;
119 struct ide_taskfile
*tf
= &task
->tf
;
121 if (task
->tf_flags
& IDE_TFLAG_IN_DATA
) {
122 u16 data
= (u16
) readl((void __iomem
*) io_ports
->data_addr
);
124 tf
->data
= data
& 0xff;
125 tf
->hob_data
= (data
>> 8) & 0xff;
128 /* be sure we're looking at the low order bits */
129 magicbox_ide_outb(drive
->ctl
& ~0x80, io_ports
->ctl_addr
);
131 if (task
->tf_flags
& IDE_TFLAG_IN_NSECT
)
132 tf
->nsect
= magicbox_ide_inb(io_ports
->nsect_addr
);
133 if (task
->tf_flags
& IDE_TFLAG_IN_LBAL
)
134 tf
->lbal
= magicbox_ide_inb(io_ports
->lbal_addr
);
135 if (task
->tf_flags
& IDE_TFLAG_IN_LBAM
)
136 tf
->lbam
= magicbox_ide_inb(io_ports
->lbam_addr
);
137 if (task
->tf_flags
& IDE_TFLAG_IN_LBAH
)
138 tf
->lbah
= magicbox_ide_inb(io_ports
->lbah_addr
);
139 if (task
->tf_flags
& IDE_TFLAG_IN_DEVICE
)
140 tf
->device
= magicbox_ide_inb(io_ports
->device_addr
);
142 if (task
->tf_flags
& IDE_TFLAG_LBA48
) {
143 magicbox_ide_outb(drive
->ctl
| 0x80, io_ports
->ctl_addr
);
145 if (task
->tf_flags
& IDE_TFLAG_IN_HOB_FEATURE
)
146 tf
->hob_feature
= magicbox_ide_inb(io_ports
->feature_addr
);
147 if (task
->tf_flags
& IDE_TFLAG_IN_HOB_NSECT
)
148 tf
->hob_nsect
= magicbox_ide_inb(io_ports
->nsect_addr
);
149 if (task
->tf_flags
& IDE_TFLAG_IN_HOB_LBAL
)
150 tf
->hob_lbal
= magicbox_ide_inb(io_ports
->lbal_addr
);
151 if (task
->tf_flags
& IDE_TFLAG_IN_HOB_LBAM
)
152 tf
->hob_lbam
= magicbox_ide_inb(io_ports
->lbam_addr
);
153 if (task
->tf_flags
& IDE_TFLAG_IN_HOB_LBAH
)
154 tf
->hob_lbah
= magicbox_ide_inb(io_ports
->lbah_addr
);
158 static void magicbox_ide_input_data(ide_drive_t
*drive
, struct request
*rq
,
159 void *buf
, unsigned int len
)
161 unsigned long port
= drive
->hwif
->io_ports
.data_addr
;
165 if (drive
->io_32bit
) {
166 magicbox_ide_insl(port
, buf
, len
/ 4);
169 magicbox_ide_insw(port
, (u8
*)buf
+ (len
& ~3), 1);
171 magicbox_ide_insw(port
, buf
, len
/ 2);
174 static void magicbox_ide_output_data(ide_drive_t
*drive
, struct request
*rq
,
175 void *buf
, unsigned int len
)
177 unsigned long port
= drive
->hwif
->io_ports
.data_addr
;
181 if (drive
->io_32bit
) {
182 magicbox_ide_outsl(port
, buf
, len
/ 4);
185 magicbox_ide_outsw(port
, (u8
*)buf
+ (len
& ~3), 1);
187 magicbox_ide_outsw(port
, buf
, len
/ 2);
190 static void __init
magicbox_ide_setup_hw(hw_regs_t
*hw
, u16 __iomem
*base
,
191 u16 __iomem
*ctrl
, int irq
)
193 unsigned long port
= (unsigned long) base
;
196 memset(hw
, 0, sizeof(*hw
));
197 for (i
= 0; i
<= 7; i
++)
198 hw
->io_ports_array
[i
] = port
+ i
* 2;
201 * the IDE control register is at ATA address 6,
202 * with CS1 active instead of CS0
204 hw
->io_ports
.ctl_addr
= (unsigned long)ctrl
+ (6 * 2);
208 hw
->chipset
= ide_generic
;
212 static int __init
magibox_ide_probe(void)
218 u8 idx
[4] = { 0xff, 0xff, 0xff, 0xff };
221 /* Remap physical address space */
222 base
= ioremap_nocache(0xff100000, 4096);
228 ctrl
= ioremap_nocache(0xff200000, 4096);
234 magicbox_ide_setup_hw(&hw
, base
, ctrl
, MAGICBOX_CF_IRQ
);
236 hwif
= ide_find_port();
242 ide_init_port_data(hwif
, hwif
->index
);
243 ide_init_port_hw(hwif
, &hw
);
245 hwif
->host_flags
= IDE_HFLAG_MMIO
;
247 hwif
->tf_load
= magicbox_ide_tf_load
;
248 hwif
->tf_read
= magicbox_ide_tf_read
;
250 hwif
->input_data
= magicbox_ide_input_data
;
251 hwif
->output_data
= magicbox_ide_output_data
;
253 hwif
->drives
[0].unmask
= 1;
254 hwif
->OUTB
= magicbox_ide_outb
;
255 hwif
->OUTBSYNC
= magicbox_ide_outbsync
;
256 hwif
->INB
= magicbox_ide_inb
;
258 printk(KERN_INFO
"ide%d: Magicbox CF interface\n", hwif
->index
);
260 idx
[0] = hwif
->index
;
262 ide_device_add(idx
, NULL
);
274 static int __init
magicbox_ide_init(void)
276 /* Turn on PerWE instead of PCIsomething */
277 mtdcr(DCRN_CPC0_PCI_BASE
,
278 mfdcr(DCRN_CPC0_PCI_BASE
) | (0x80000000L
>> 27));
280 /* PerCS1 (CF's CS0): base 0xff100000, 16-bit, rw */
281 mtdcr(DCRN_EBC_BASE
, 1);
282 mtdcr(DCRN_EBC_BASE
+ 1, 0xff11a000);
283 mtdcr(DCRN_EBC_BASE
, 0x11);
284 mtdcr(DCRN_EBC_BASE
+ 1, 0x080bd800);
286 /* PerCS2 (CF's CS1): base 0xff200000, 16-bit, rw */
287 mtdcr(DCRN_EBC_BASE
, 2);
288 mtdcr(DCRN_EBC_BASE
+ 1, 0xff21a000);
289 mtdcr(DCRN_EBC_BASE
, 0x12);
290 mtdcr(DCRN_EBC_BASE
+ 1, 0x080bd800);
292 /* Set interrupt to low-to-high-edge-triggered */
293 mtdcr(UIC0_TR
, mfdcr(UIC0_TR
) & ~(0x80000000L
>> MAGICBOX_CF_IRQ
));
294 mtdcr(UIC0_PR
, mfdcr(UIC0_PR
) | (0x80000000L
>> MAGICBOX_CF_IRQ
));
296 return magibox_ide_probe();
299 module_init(magicbox_ide_init
);
301 MODULE_LICENSE("GPL");