| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 |  * H8/300 generic IDE interface | 
 | 3 |  */ | 
 | 4 |  | 
 | 5 | #include <linux/init.h> | 
 | 6 | #include <linux/ide.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 |  | 
 | 8 | #include <asm/io.h> | 
 | 9 | #include <asm/irq.h> | 
 | 10 |  | 
| Bartlomiej Zolnierkiewicz | eb3aff5 | 2008-07-16 20:33:42 +0200 | [diff] [blame] | 11 | #define DRV_NAME "ide-h8300" | 
 | 12 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #define bswap(d) \ | 
 | 14 | ({					\ | 
 | 15 | 	u16 r;				\ | 
 | 16 | 	__asm__("mov.b %w1,r1h\n\t"	\ | 
 | 17 | 		"mov.b %x1,r1l\n\t"	\ | 
 | 18 | 		"mov.w r1,%0"		\ | 
 | 19 | 		:"=r"(r)		\ | 
 | 20 | 		:"r"(d)			\ | 
 | 21 | 		:"er1");		\ | 
 | 22 | 	(r);				\ | 
 | 23 | }) | 
 | 24 |  | 
 | 25 | static void mm_outw(u16 d, unsigned long a) | 
 | 26 | { | 
 | 27 | 	__asm__("mov.b %w0,r2h\n\t" | 
 | 28 | 		"mov.b %x0,r2l\n\t" | 
 | 29 | 		"mov.w r2,@%1" | 
 | 30 | 		: | 
 | 31 | 		:"r"(d),"r"(a) | 
 | 32 | 		:"er2"); | 
 | 33 | } | 
 | 34 |  | 
 | 35 | static u16 mm_inw(unsigned long a) | 
 | 36 | { | 
 | 37 | 	register u16 r __asm__("er0"); | 
 | 38 | 	__asm__("mov.w @%1,r2\n\t" | 
 | 39 | 		"mov.b r2l,%x0\n\t" | 
 | 40 | 		"mov.b r2h,%w0" | 
 | 41 | 		:"=r"(r) | 
 | 42 | 		:"r"(a) | 
 | 43 | 		:"er2"); | 
 | 44 | 	return r; | 
 | 45 | } | 
 | 46 |  | 
| Bartlomiej Zolnierkiewicz | 92fcaaa | 2008-04-28 23:44:40 +0200 | [diff] [blame] | 47 | static void h8300_tf_load(ide_drive_t *drive, ide_task_t *task) | 
 | 48 | { | 
 | 49 | 	ide_hwif_t *hwif = drive->hwif; | 
 | 50 | 	struct ide_io_ports *io_ports = &hwif->io_ports; | 
 | 51 | 	struct ide_taskfile *tf = &task->tf; | 
 | 52 | 	u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF; | 
 | 53 |  | 
 | 54 | 	if (task->tf_flags & IDE_TFLAG_FLAGGED) | 
 | 55 | 		HIHI = 0xFF; | 
 | 56 |  | 
| Bartlomiej Zolnierkiewicz | 92fcaaa | 2008-04-28 23:44:40 +0200 | [diff] [blame] | 57 | 	if (task->tf_flags & IDE_TFLAG_OUT_DATA) | 
 | 58 | 		mm_outw((tf->hob_data << 8) | tf->data, io_ports->data_addr); | 
 | 59 |  | 
 | 60 | 	if (task->tf_flags & IDE_TFLAG_OUT_HOB_FEATURE) | 
 | 61 | 		outb(tf->hob_feature, io_ports->feature_addr); | 
 | 62 | 	if (task->tf_flags & IDE_TFLAG_OUT_HOB_NSECT) | 
 | 63 | 		outb(tf->hob_nsect, io_ports->nsect_addr); | 
 | 64 | 	if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAL) | 
 | 65 | 		outb(tf->hob_lbal, io_ports->lbal_addr); | 
 | 66 | 	if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAM) | 
 | 67 | 		outb(tf->hob_lbam, io_ports->lbam_addr); | 
 | 68 | 	if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAH) | 
 | 69 | 		outb(tf->hob_lbah, io_ports->lbah_addr); | 
 | 70 |  | 
 | 71 | 	if (task->tf_flags & IDE_TFLAG_OUT_FEATURE) | 
 | 72 | 		outb(tf->feature, io_ports->feature_addr); | 
 | 73 | 	if (task->tf_flags & IDE_TFLAG_OUT_NSECT) | 
 | 74 | 		outb(tf->nsect, io_ports->nsect_addr); | 
 | 75 | 	if (task->tf_flags & IDE_TFLAG_OUT_LBAL) | 
 | 76 | 		outb(tf->lbal, io_ports->lbal_addr); | 
 | 77 | 	if (task->tf_flags & IDE_TFLAG_OUT_LBAM) | 
 | 78 | 		outb(tf->lbam, io_ports->lbam_addr); | 
 | 79 | 	if (task->tf_flags & IDE_TFLAG_OUT_LBAH) | 
 | 80 | 		outb(tf->lbah, io_ports->lbah_addr); | 
 | 81 |  | 
 | 82 | 	if (task->tf_flags & IDE_TFLAG_OUT_DEVICE) | 
| Bartlomiej Zolnierkiewicz | 7f612f2 | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 83 | 		outb((tf->device & HIHI) | drive->select, | 
| Bartlomiej Zolnierkiewicz | 92fcaaa | 2008-04-28 23:44:40 +0200 | [diff] [blame] | 84 | 		     io_ports->device_addr); | 
 | 85 | } | 
 | 86 |  | 
 | 87 | static void h8300_tf_read(ide_drive_t *drive, ide_task_t *task) | 
 | 88 | { | 
 | 89 | 	ide_hwif_t *hwif = drive->hwif; | 
 | 90 | 	struct ide_io_ports *io_ports = &hwif->io_ports; | 
 | 91 | 	struct ide_taskfile *tf = &task->tf; | 
 | 92 |  | 
 | 93 | 	if (task->tf_flags & IDE_TFLAG_IN_DATA) { | 
 | 94 | 		u16 data = mm_inw(io_ports->data_addr); | 
 | 95 |  | 
 | 96 | 		tf->data = data & 0xff; | 
 | 97 | 		tf->hob_data = (data >> 8) & 0xff; | 
 | 98 | 	} | 
 | 99 |  | 
 | 100 | 	/* be sure we're looking at the low order bits */ | 
| Bartlomiej Zolnierkiewicz | ff07488 | 2008-07-15 21:21:50 +0200 | [diff] [blame] | 101 | 	outb(ATA_DEVCTL_OBS & ~0x80, io_ports->ctl_addr); | 
| Bartlomiej Zolnierkiewicz | 92fcaaa | 2008-04-28 23:44:40 +0200 | [diff] [blame] | 102 |  | 
| Bartlomiej Zolnierkiewicz | 92eb438 | 2008-07-23 19:55:53 +0200 | [diff] [blame] | 103 | 	if (task->tf_flags & IDE_TFLAG_IN_FEATURE) | 
 | 104 | 		tf->feature = inb(io_ports->feature_addr); | 
| Bartlomiej Zolnierkiewicz | 92fcaaa | 2008-04-28 23:44:40 +0200 | [diff] [blame] | 105 | 	if (task->tf_flags & IDE_TFLAG_IN_NSECT) | 
 | 106 | 		tf->nsect  = inb(io_ports->nsect_addr); | 
 | 107 | 	if (task->tf_flags & IDE_TFLAG_IN_LBAL) | 
 | 108 | 		tf->lbal   = inb(io_ports->lbal_addr); | 
 | 109 | 	if (task->tf_flags & IDE_TFLAG_IN_LBAM) | 
 | 110 | 		tf->lbam   = inb(io_ports->lbam_addr); | 
 | 111 | 	if (task->tf_flags & IDE_TFLAG_IN_LBAH) | 
 | 112 | 		tf->lbah   = inb(io_ports->lbah_addr); | 
 | 113 | 	if (task->tf_flags & IDE_TFLAG_IN_DEVICE) | 
 | 114 | 		tf->device = inb(io_ports->device_addr); | 
 | 115 |  | 
 | 116 | 	if (task->tf_flags & IDE_TFLAG_LBA48) { | 
| Bartlomiej Zolnierkiewicz | ff07488 | 2008-07-15 21:21:50 +0200 | [diff] [blame] | 117 | 		outb(ATA_DEVCTL_OBS | 0x80, io_ports->ctl_addr); | 
| Bartlomiej Zolnierkiewicz | 92fcaaa | 2008-04-28 23:44:40 +0200 | [diff] [blame] | 118 |  | 
 | 119 | 		if (task->tf_flags & IDE_TFLAG_IN_HOB_FEATURE) | 
 | 120 | 			tf->hob_feature = inb(io_ports->feature_addr); | 
 | 121 | 		if (task->tf_flags & IDE_TFLAG_IN_HOB_NSECT) | 
 | 122 | 			tf->hob_nsect   = inb(io_ports->nsect_addr); | 
 | 123 | 		if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAL) | 
 | 124 | 			tf->hob_lbal    = inb(io_ports->lbal_addr); | 
 | 125 | 		if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAM) | 
 | 126 | 			tf->hob_lbam    = inb(io_ports->lbam_addr); | 
 | 127 | 		if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAH) | 
 | 128 | 			tf->hob_lbah    = inb(io_ports->lbah_addr); | 
 | 129 | 	} | 
 | 130 | } | 
 | 131 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | static void mm_outsw(unsigned long addr, void *buf, u32 len) | 
 | 133 | { | 
 | 134 | 	unsigned short *bp = (unsigned short *)buf; | 
 | 135 | 	for (; len > 0; len--, bp++) | 
 | 136 | 		*(volatile u16 *)addr = bswap(*bp); | 
 | 137 | } | 
 | 138 |  | 
 | 139 | static void mm_insw(unsigned long addr, void *buf, u32 len) | 
 | 140 | { | 
 | 141 | 	unsigned short *bp = (unsigned short *)buf; | 
 | 142 | 	for (; len > 0; len--, bp++) | 
 | 143 | 		*bp = bswap(*(volatile u16 *)addr); | 
 | 144 | } | 
 | 145 |  | 
| Bartlomiej Zolnierkiewicz | f04ff9c | 2008-04-28 23:44:37 +0200 | [diff] [blame] | 146 | static void h8300_input_data(ide_drive_t *drive, struct request *rq, | 
 | 147 | 			     void *buf, unsigned int len) | 
 | 148 | { | 
 | 149 | 	mm_insw(drive->hwif->io_ports.data_addr, buf, (len + 1) / 2); | 
 | 150 | } | 
 | 151 |  | 
 | 152 | static void h8300_output_data(ide_drive_t *drive, struct request *rq, | 
 | 153 | 			      void *buf, unsigned int len) | 
 | 154 | { | 
 | 155 | 	mm_outsw(drive->hwif->io_ports.data_addr, buf, (len + 1) / 2); | 
 | 156 | } | 
 | 157 |  | 
| Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 158 | static const struct ide_tp_ops h8300_tp_ops = { | 
 | 159 | 	.exec_command		= ide_exec_command, | 
 | 160 | 	.read_status		= ide_read_status, | 
 | 161 | 	.read_altstatus		= ide_read_altstatus, | 
| Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 162 |  | 
 | 163 | 	.set_irq		= ide_set_irq, | 
 | 164 |  | 
 | 165 | 	.tf_load		= h8300_tf_load, | 
 | 166 | 	.tf_read		= h8300_tf_read, | 
 | 167 |  | 
 | 168 | 	.input_data		= h8300_input_data, | 
 | 169 | 	.output_data		= h8300_output_data, | 
 | 170 | }; | 
 | 171 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | #define H8300_IDE_GAP (2) | 
 | 173 |  | 
 | 174 | static inline void hw_setup(hw_regs_t *hw) | 
 | 175 | { | 
 | 176 | 	int i; | 
 | 177 |  | 
 | 178 | 	memset(hw, 0, sizeof(hw_regs_t)); | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 179 | 	for (i = 0; i <= 7; i++) | 
 | 180 | 		hw->io_ports_array[i] = CONFIG_H8300_IDE_BASE + H8300_IDE_GAP*i; | 
 | 181 | 	hw->io_ports.ctl_addr = CONFIG_H8300_IDE_ALT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | 	hw->irq = EXT_IRQ0 + CONFIG_H8300_IDE_IRQ; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | 	hw->chipset = ide_generic; | 
 | 184 | } | 
 | 185 |  | 
| Bartlomiej Zolnierkiewicz | f81eb80 | 2008-07-16 20:33:42 +0200 | [diff] [blame] | 186 | static const struct ide_port_info h8300_port_info = { | 
| Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 187 | 	.tp_ops			= &h8300_tp_ops, | 
| Bartlomiej Zolnierkiewicz | f81eb80 | 2008-07-16 20:33:42 +0200 | [diff] [blame] | 188 | 	.host_flags		= IDE_HFLAG_NO_IO_32BIT | IDE_HFLAG_NO_DMA, | 
 | 189 | }; | 
 | 190 |  | 
| Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 191 | static int __init h8300_ide_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { | 
| Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 193 | 	hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 |  | 
| Bartlomiej Zolnierkiewicz | 740c397 | 2008-07-16 20:33:43 +0200 | [diff] [blame] | 195 | 	printk(KERN_INFO DRV_NAME ": H8/300 generic IDE interface\n"); | 
 | 196 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | 	if (!request_region(CONFIG_H8300_IDE_BASE, H8300_IDE_GAP*8, "ide-h8300")) | 
 | 198 | 		goto out_busy; | 
 | 199 | 	if (!request_region(CONFIG_H8300_IDE_ALT, H8300_IDE_GAP, "ide-h8300")) { | 
 | 200 | 		release_region(CONFIG_H8300_IDE_BASE, H8300_IDE_GAP*8); | 
 | 201 | 		goto out_busy; | 
 | 202 | 	} | 
 | 203 |  | 
 | 204 | 	hw_setup(&hw); | 
 | 205 |  | 
| Bartlomiej Zolnierkiewicz | 6f904d0 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 206 | 	return ide_host_add(&h8300_port_info, hws, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 |  | 
 | 208 | out_busy: | 
 | 209 | 	printk(KERN_ERR "ide-h8300: IDE I/F resource already used.\n"); | 
| Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 210 |  | 
 | 211 | 	return -EBUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } | 
| Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 213 |  | 
 | 214 | module_init(h8300_ide_init); | 
| Adrian Bunk | f95dc32 | 2008-04-02 21:22:03 +0200 | [diff] [blame] | 215 |  | 
 | 216 | MODULE_LICENSE("GPL"); |