2 * Copyright (C) 2001 Broadcom Corporation
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 /* Derived loosely from ide-pmac.c, so:
21 * Copyright (C) 1998 Paul Mackerras.
22 * Copyright (C) 1995-1998 Mark Lord
24 #include <linux/config.h>
25 #include <linux/types.h>
26 #include <linux/kernel.h>
27 #include <linux/sched.h>
28 #include <linux/init.h>
29 #include <linux/delay.h>
30 #include <linux/ide.h>
34 #include <asm/sibyte/sb1250_regs.h>
35 #include <asm/sibyte/sb1250_int.h>
36 #include <asm/sibyte/sb1250_genbus.h>
37 #include <asm/sibyte/64bit.h>
38 #include <asm/sibyte/board.h>
40 /* Note: this should be general for any board using IDE on GenBus */
42 extern struct ide_ops std_ide_ops
;
44 static ide_hwif_t
*sb_ide_hwif
= NULL
;
45 static unsigned long ide_base
;
47 #define SIBYTE_IDE_BASE (KSEG1ADDR(ide_base)-mips_io_port_base)
48 #define SIBYTE_IDE_REG(pcaddr) (SIBYTE_IDE_BASE + ((pcaddr)<<5))
51 * We are limiting the number of PCI-IDE devices to leave room for
52 * GenBus IDE (and possibly PCMCIA/CF?)
54 static int sibyte_ide_default_irq(ide_ioreg_t base
)
59 static ide_ioreg_t
sibyte_ide_default_io_base(int index
)
64 static void sibyte_ide_init_hwif_ports (hw_regs_t
*hw
, ide_ioreg_t data_port
,
65 ide_ioreg_t ctrl_port
, int *irq
)
67 std_ide_ops
.ide_init_hwif_ports(hw
, data_port
, ctrl_port
, irq
);
70 static int sibyte_ide_request_irq(unsigned int irq
,
71 void (*handler
)(int,void *, struct pt_regs
*),
72 unsigned long flags
, const char *device
,
75 return request_irq(irq
, handler
, flags
, device
, dev_id
);
78 static void sibyte_ide_free_irq(unsigned int irq
, void *dev_id
)
80 free_irq(irq
, dev_id
);
83 static inline int is_sibyte_ide(ide_ioreg_t from
)
85 return (sb_ide_hwif
&&
86 ((from
== sb_ide_hwif
->io_ports
[IDE_DATA_OFFSET
]) ||
87 (from
== sb_ide_hwif
->io_ports
[IDE_ERROR_OFFSET
]) ||
88 (from
== sb_ide_hwif
->io_ports
[IDE_NSECTOR_OFFSET
]) ||
89 (from
== sb_ide_hwif
->io_ports
[IDE_SECTOR_OFFSET
]) ||
90 (from
== sb_ide_hwif
->io_ports
[IDE_LCYL_OFFSET
]) ||
91 (from
== sb_ide_hwif
->io_ports
[IDE_HCYL_OFFSET
]) ||
92 (from
== sb_ide_hwif
->io_ports
[IDE_SELECT_OFFSET
]) ||
93 (from
== sb_ide_hwif
->io_ports
[IDE_STATUS_OFFSET
]) ||
94 (from
== sb_ide_hwif
->io_ports
[IDE_CONTROL_OFFSET
])));
97 static int sibyte_ide_check_region(ide_ioreg_t from
, unsigned int extent
)
99 /* Figure out if it's the SiByte IDE; if so, don't do anything
100 since our I/O space is in a weird place. */
101 if (is_sibyte_ide(from
))
104 #ifdef CONFIG_BLK_DEV_IDE
105 return std_ide_ops
.ide_check_region(from
, extent
);
111 static void sibyte_ide_request_region(ide_ioreg_t from
, unsigned int extent
,
114 #ifdef CONFIG_BLK_DEV_IDE
115 if (!is_sibyte_ide(from
))
116 std_ide_ops
.ide_request_region(from
, extent
, name
);
120 static void sibyte_ide_release_region(ide_ioreg_t from
, unsigned int extent
)
122 #ifdef CONFIG_BLK_DEV_IDE
123 if (!is_sibyte_ide(from
))
124 std_ide_ops
.ide_release_region(from
, extent
);
128 struct ide_ops sibyte_ide_ops
= {
129 &sibyte_ide_default_irq
,
130 &sibyte_ide_default_io_base
,
131 &sibyte_ide_init_hwif_ports
,
132 &sibyte_ide_request_irq
,
133 &sibyte_ide_free_irq
,
134 &sibyte_ide_check_region
,
135 &sibyte_ide_request_region
,
136 &sibyte_ide_release_region
140 * I/O operations. The FPGA for SiByte generic bus IDE deals with
141 * byte-swapping for us, so we can't share the I/O macros with other
142 * IDE (e.g. PCI-IDE) devices.
145 #define sibyte_outb(val,port) \
147 *(volatile u8 *)(mips_io_port_base + (port)) = val; \
150 #define sibyte_outw(val,port) \
152 *(volatile u16 *)(mips_io_port_base + (port)) = val; \
155 #define sibyte_outl(val,port) \
157 *(volatile u32 *)(mips_io_port_base + (port)) = val; \
160 static inline unsigned char sibyte_inb(unsigned long port
)
162 return (*(volatile u8
*)(mips_io_port_base
+ (port
)));
165 static inline unsigned short sibyte_inw(unsigned long port
)
167 return (*(volatile u16
*)(mips_io_port_base
+ (port
)));
170 static inline unsigned int sibyte_inl(unsigned long port
)
172 return (*(volatile u32
*)(mips_io_port_base
+ (port
)));
176 static inline void sibyte_outsb(unsigned long port
, void *addr
, unsigned int count
)
179 sibyte_outb(*(u8
*)addr
, port
);
184 static inline void sibyte_insb(unsigned long port
, void *addr
, unsigned int count
)
187 *(u8
*)addr
= sibyte_inb(port
);
192 static inline void sibyte_outsw(unsigned long port
, void *addr
, unsigned int count
)
195 sibyte_outw(*(u16
*)addr
, port
);
200 static inline void sibyte_insw(unsigned long port
, void *addr
, unsigned int count
)
203 *(u16
*)addr
= sibyte_inw(port
);
208 static inline void sibyte_outsl(unsigned long port
, void *addr
, unsigned int count
)
211 sibyte_outl(*(u32
*)addr
, port
);
216 static inline void sibyte_insl(unsigned long port
, void *addr
, unsigned int count
)
219 *(u32
*)addr
= sibyte_inl(port
);
224 static void sibyte_ideproc(ide_ide_action_t action
, ide_drive_t
*drive
,
225 void *buffer
, unsigned int count
)
227 /* slow? vlb_sync? */
229 case ideproc_ide_input_data
:
230 if (drive
->io_32bit
) {
231 sibyte_insl(IDE_DATA_REG
, buffer
, count
);
233 sibyte_insw(IDE_DATA_REG
, buffer
, count
<<1);
236 case ideproc_ide_output_data
:
237 if (drive
->io_32bit
) {
238 sibyte_outsl(IDE_DATA_REG
, buffer
, count
);
240 sibyte_outsw(IDE_DATA_REG
, buffer
, count
<<1);
243 case ideproc_atapi_input_bytes
:
245 if (drive
->io_32bit
) {
246 sibyte_insl(IDE_DATA_REG
, buffer
, count
>>2);
248 sibyte_insw(IDE_DATA_REG
, buffer
, count
>>1);
250 if ((count
& 3) >= 2)
251 sibyte_insw(IDE_DATA_REG
, (char *)buffer
+ (count
& ~3), 1);
253 case ideproc_atapi_output_bytes
:
255 if (drive
->io_32bit
) {
256 sibyte_outsl(IDE_DATA_REG
, buffer
, count
>>2);
258 sibyte_outsw(IDE_DATA_REG
, buffer
, count
>>1);
260 if ((count
& 3) >= 2)
261 sibyte_outsw(IDE_DATA_REG
, (char *)buffer
+ (count
& ~3), 1);
267 * selectproc and intrproc aren't really necessary, since
268 * byte-swapping doesn't affect byte ops; they are included for
271 static void sibyte_selectproc(ide_drive_t
*drive
)
273 sibyte_outb(drive
->select
.all
, IDE_SELECT_REG
);
276 static void sibyte_intrproc(ide_drive_t
*drive
)
278 sibyte_outb(drive
->ctl
|2, IDE_CONTROL_REG
);
281 void __init
sibyte_ide_probe(void)
286 * Find the first untaken slot in hwifs
288 for (i
= 0; i
< MAX_HWIFS
; i
++) {
289 if (!ide_hwifs
[i
].io_ports
[IDE_DATA_OFFSET
]) {
293 if (i
== MAX_HWIFS
) {
294 printk("No space for SiByte onboard IDE driver in ide_hwifs[]. Not enabled.\n");
298 /* Find memory base address */
300 /* Pass1 workaround (bug 1624) */
301 if (sb1250_pass
== K_SYS_REVISION_PASS1
)
302 ide_base
= G_IO_START_ADDR(csr_in32(4+(IO_SPACE_BASE
|A_IO_EXT_REG(R_IO_EXT_REG(R_IO_EXT_START_ADDR
, IDE_CS
))))) << S_IO_ADDRBASE
;
305 ide_base
= G_IO_START_ADDR(csr_in32(IO_SPACE_BASE
|A_IO_EXT_REG(R_IO_EXT_REG(R_IO_EXT_START_ADDR
, IDE_CS
)))) << S_IO_ADDRBASE
;
308 * Set up our stuff; we're a little odd because our io_ports
309 * aren't in the usual place, and byte-swapping isn't
312 hwif
= &ide_hwifs
[i
];
313 hwif
->hw
.io_ports
[IDE_DATA_OFFSET
] = SIBYTE_IDE_REG(0x1f0);
314 hwif
->hw
.io_ports
[IDE_ERROR_OFFSET
] = SIBYTE_IDE_REG(0x1f1);
315 hwif
->hw
.io_ports
[IDE_NSECTOR_OFFSET
] = SIBYTE_IDE_REG(0x1f2);
316 hwif
->hw
.io_ports
[IDE_SECTOR_OFFSET
] = SIBYTE_IDE_REG(0x1f3);
317 hwif
->hw
.io_ports
[IDE_LCYL_OFFSET
] = SIBYTE_IDE_REG(0x1f4);
318 hwif
->hw
.io_ports
[IDE_HCYL_OFFSET
] = SIBYTE_IDE_REG(0x1f5);
319 hwif
->hw
.io_ports
[IDE_SELECT_OFFSET
] = SIBYTE_IDE_REG(0x1f6);
320 hwif
->hw
.io_ports
[IDE_STATUS_OFFSET
] = SIBYTE_IDE_REG(0x1f7);
321 hwif
->hw
.io_ports
[IDE_CONTROL_OFFSET
] = SIBYTE_IDE_REG(0x3f6);
322 hwif
->hw
.irq
= K_INT_GB_IDE
;
323 hwif
->irq
= K_INT_GB_IDE
;
325 /* Use our own non-byte-swapping routines */
326 hwif
->ideproc
= sibyte_ideproc
;
327 hwif
->selectproc
= sibyte_selectproc
;
328 hwif
->intrproc
= sibyte_intrproc
;
330 memcpy(hwif
->io_ports
, hwif
->hw
.io_ports
, sizeof(hwif
->io_ports
));
331 printk("SiByte onboard IDE configured as device %i\n", i
);