2 * H8/300 generic IDE interface
5 #include <linux/init.h>
14 __asm__("mov.b %w1,r1h\n\t" \
23 static void mm_outw(u16 d
, unsigned long a
)
25 __asm__("mov.b %w0,r2h\n\t"
33 static u16
mm_inw(unsigned long a
)
35 register u16 r
__asm__("er0");
36 __asm__("mov.w @%1,r2\n\t"
45 static void mm_outsw(unsigned long addr
, void *buf
, u32 len
)
47 unsigned short *bp
= (unsigned short *)buf
;
48 for (; len
> 0; len
--, bp
++)
49 *(volatile u16
*)addr
= bswap(*bp
);
52 static void mm_insw(unsigned long addr
, void *buf
, u32 len
)
54 unsigned short *bp
= (unsigned short *)buf
;
55 for (; len
> 0; len
--, bp
++)
56 *bp
= bswap(*(volatile u16
*)addr
);
59 #define H8300_IDE_GAP (2)
61 static inline void hw_setup(hw_regs_t
*hw
)
65 memset(hw
, 0, sizeof(hw_regs_t
));
66 for (i
= 0; i
<= IDE_STATUS_OFFSET
; i
++)
67 hw
->io_ports
[i
] = CONFIG_H8300_IDE_BASE
+ H8300_IDE_GAP
*i
;
68 hw
->io_ports
[IDE_CONTROL_OFFSET
] = CONFIG_H8300_IDE_ALT
;
69 hw
->irq
= EXT_IRQ0
+ CONFIG_H8300_IDE_IRQ
;
70 hw
->chipset
= ide_generic
;
73 static inline void hwif_setup(ide_hwif_t
*hwif
)
75 default_hwif_iops(hwif
);
79 hwif
->OUTSW
= mm_outsw
;
86 static int __init
h8300_ide_init(void)
91 u8 idx
[4] = { 0xff, 0xff, 0xff, 0xff };
93 if (!request_region(CONFIG_H8300_IDE_BASE
, H8300_IDE_GAP
*8, "ide-h8300"))
95 if (!request_region(CONFIG_H8300_IDE_ALT
, H8300_IDE_GAP
, "ide-h8300")) {
96 release_region(CONFIG_H8300_IDE_BASE
, H8300_IDE_GAP
*8);
103 hwif
= ide_find_port(hw
.io_ports
[IDE_DATA_OFFSET
]);
105 printk(KERN_ERR
"ide-h8300: IDE I/F register failed\n");
110 ide_init_port_data(hwif
, index
);
111 ide_init_port_hw(hwif
, &hw
);
113 printk(KERN_INFO
"ide%d: H8/300 generic IDE interface\n", index
);
117 ide_device_add(idx
, NULL
);
122 printk(KERN_ERR
"ide-h8300: IDE I/F resource already used.\n");
127 module_init(h8300_ide_init
);