| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Bartlomiej Zolnierkiewicz | 58f189f | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 2 |  *  Amiga Gayle IDE Driver | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 |  * | 
 | 4 |  *     Created 9 Jul 1997 by Geert Uytterhoeven | 
 | 5 |  * | 
 | 6 |  *  This file is subject to the terms and conditions of the GNU General Public | 
 | 7 |  *  License.  See the file COPYING in the main directory of this archive for | 
 | 8 |  *  more details. | 
 | 9 |  */ | 
 | 10 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/types.h> | 
 | 12 | #include <linux/mm.h> | 
 | 13 | #include <linux/interrupt.h> | 
 | 14 | #include <linux/blkdev.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/ide.h> | 
 | 16 | #include <linux/init.h> | 
 | 17 | #include <linux/zorro.h> | 
| Adrian Bunk | 513f3c1 | 2008-06-10 20:56:38 +0200 | [diff] [blame] | 18 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 |  | 
 | 20 | #include <asm/setup.h> | 
 | 21 | #include <asm/amigahw.h> | 
 | 22 | #include <asm/amigaints.h> | 
 | 23 | #include <asm/amigayle.h> | 
 | 24 |  | 
 | 25 |  | 
 | 26 |     /* | 
 | 27 |      *  Bases of the IDE interfaces | 
 | 28 |      */ | 
 | 29 |  | 
 | 30 | #define GAYLE_BASE_4000	0xdd2020	/* A4000/A4000T */ | 
 | 31 | #define GAYLE_BASE_1200	0xda0000	/* A1200/A600 and E-Matrix 530 */ | 
 | 32 |  | 
| Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 33 | #define GAYLE_IDEREG_SIZE	0x2000 | 
 | 34 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 |     /* | 
 | 36 |      *  Offsets from one of the above bases | 
 | 37 |      */ | 
 | 38 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #define GAYLE_CONTROL	0x101a | 
 | 40 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 |     /* | 
 | 42 |      *  These are at different offsets from the base | 
 | 43 |      */ | 
 | 44 |  | 
 | 45 | #define GAYLE_IRQ_4000	0xdd3020	/* MSB = 1, Harddisk is source of */ | 
 | 46 | #define GAYLE_IRQ_1200	0xda9000	/* interrupt */ | 
 | 47 |  | 
 | 48 |  | 
 | 49 |     /* | 
 | 50 |      *  Offset of the secondary port for IDE doublers | 
 | 51 |      *  Note that GAYLE_CONTROL is NOT available then! | 
 | 52 |      */ | 
 | 53 |  | 
 | 54 | #define GAYLE_NEXT_PORT	0x1000 | 
 | 55 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #define GAYLE_NUM_HWIFS		2 | 
 | 57 | #define GAYLE_NUM_PROBE_HWIFS	(ide_doubler ? GAYLE_NUM_HWIFS : \ | 
 | 58 | 					       GAYLE_NUM_HWIFS-1) | 
 | 59 | #define GAYLE_HAS_CONTROL_REG	(!ide_doubler) | 
| Adrian Bunk | 513f3c1 | 2008-06-10 20:56:38 +0200 | [diff] [blame] | 60 |  | 
| Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 61 | static int ide_doubler; | 
| Bartlomiej Zolnierkiewicz | 9dcba7f | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 62 | module_param_named(doubler, ide_doubler, bool, 0); | 
 | 63 | MODULE_PARM_DESC(doubler, "enable support for IDE doublers"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 |  | 
 | 65 |     /* | 
 | 66 |      *  Check and acknowledge the interrupt status | 
 | 67 |      */ | 
 | 68 |  | 
| Sergei Shtylyov | f4d3ffa | 2009-06-15 18:52:58 +0200 | [diff] [blame] | 69 | static int gayle_test_irq(ide_hwif_t *hwif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { | 
 | 71 |     unsigned char ch; | 
 | 72 |  | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 73 |     ch = z_readb(hwif->io_ports.irq_addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 |     if (!(ch & GAYLE_IRQ_IDE)) | 
 | 75 | 	return 0; | 
 | 76 |     return 1; | 
 | 77 | } | 
 | 78 |  | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 79 | static void gayle_a1200_clear_irq(ide_drive_t *drive) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 81 |     ide_hwif_t *hwif = drive->hwif; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 |  | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 83 |     (void)z_readb(hwif->io_ports.status_addr); | 
 | 84 |     z_writeb(0x7c, hwif->io_ports.irq_addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } | 
 | 86 |  | 
| Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 87 | static void __init gayle_setup_ports(struct ide_hw *hw, unsigned long base, | 
| Sergei Shtylyov | f4d3ffa | 2009-06-15 18:52:58 +0200 | [diff] [blame] | 88 | 				     unsigned long ctl, unsigned long irq_port) | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 89 | { | 
 | 90 | 	int i; | 
 | 91 |  | 
 | 92 | 	memset(hw, 0, sizeof(*hw)); | 
 | 93 |  | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 94 | 	hw->io_ports.data_addr = base; | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 95 |  | 
 | 96 | 	for (i = 1; i < 8; i++) | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 97 | 		hw->io_ports_array[i] = base + 2 + i * 4; | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 98 |  | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 99 | 	hw->io_ports.ctl_addr = ctl; | 
 | 100 | 	hw->io_ports.irq_addr = irq_port; | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 101 |  | 
 | 102 | 	hw->irq = IRQ_AMIGA_PORTS; | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 103 | } | 
 | 104 |  | 
| Sergei Shtylyov | f4d3ffa | 2009-06-15 18:52:58 +0200 | [diff] [blame] | 105 | static const struct ide_port_ops gayle_a4000_port_ops = { | 
 | 106 | 	.test_irq		= gayle_test_irq, | 
 | 107 | }; | 
 | 108 |  | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 109 | static const struct ide_port_ops gayle_a1200_port_ops = { | 
 | 110 | 	.clear_irq		= gayle_a1200_clear_irq, | 
| Sergei Shtylyov | f4d3ffa | 2009-06-15 18:52:58 +0200 | [diff] [blame] | 111 | 	.test_irq		= gayle_test_irq, | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 112 | }; | 
 | 113 |  | 
| Bartlomiej Zolnierkiewicz | a4cd1a3 | 2008-12-29 20:27:33 +0100 | [diff] [blame] | 114 | static const struct ide_port_info gayle_port_info = { | 
| Bartlomiej Zolnierkiewicz | 09a3e79 | 2009-03-27 12:46:23 +0100 | [diff] [blame] | 115 | 	.host_flags		= IDE_HFLAG_MMIO | IDE_HFLAG_SERIALIZE | | 
 | 116 | 				  IDE_HFLAG_NO_DMA, | 
| Bartlomiej Zolnierkiewicz | 255115fb | 2009-03-27 12:46:27 +0100 | [diff] [blame] | 117 | 	.irq_flags		= IRQF_SHARED, | 
| Bartlomiej Zolnierkiewicz | 29e52cf | 2009-05-17 19:12:22 +0200 | [diff] [blame] | 118 | 	.chipset		= ide_generic, | 
| Bartlomiej Zolnierkiewicz | a4cd1a3 | 2008-12-29 20:27:33 +0100 | [diff] [blame] | 119 | }; | 
 | 120 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 |     /* | 
 | 122 |      *  Probe for a Gayle IDE interface (and optionally for an IDE doubler) | 
 | 123 |      */ | 
 | 124 |  | 
| Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 125 | static int __init gayle_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | { | 
| Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 127 |     unsigned long phys_base, res_start, res_n; | 
 | 128 |     unsigned long base, ctrlport, irqport; | 
| Bartlomiej Zolnierkiewicz | 96cc112 | 2008-07-24 22:53:34 +0200 | [diff] [blame] | 129 |     int a4000, i, rc; | 
| Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 130 |     struct ide_hw hw[GAYLE_NUM_HWIFS], *hws[GAYLE_NUM_HWIFS]; | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 131 |     struct ide_port_info d = gayle_port_info; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 |  | 
 | 133 |     if (!MACH_IS_AMIGA) | 
| Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 134 | 	return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 |  | 
 | 136 |     if ((a4000 = AMIGAHW_PRESENT(A4000_IDE)) || AMIGAHW_PRESENT(A1200_IDE)) | 
 | 137 | 	goto found; | 
 | 138 |  | 
 | 139 | #ifdef CONFIG_ZORRO | 
 | 140 |     if (zorro_find_device(ZORRO_PROD_MTEC_VIPER_MK_V_E_MATRIX_530_SCSI_IDE, | 
 | 141 | 			  NULL)) | 
 | 142 | 	goto found; | 
 | 143 | #endif | 
| Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 144 |     return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 |  | 
 | 146 | found: | 
| Bartlomiej Zolnierkiewicz | c99c92c | 2008-01-26 20:13:09 +0100 | [diff] [blame] | 147 | 	printk(KERN_INFO "ide: Gayle IDE controller (A%d style%s)\n", | 
 | 148 | 			 a4000 ? 4000 : 1200, | 
| Bartlomiej Zolnierkiewicz | 9f5af4d | 2009-03-31 20:15:26 +0200 | [diff] [blame] | 149 | 			 ide_doubler ? ", IDE doubler" : ""); | 
| Bartlomiej Zolnierkiewicz | c99c92c | 2008-01-26 20:13:09 +0100 | [diff] [blame] | 150 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | 	if (a4000) { | 
 | 152 | 	    phys_base = GAYLE_BASE_4000; | 
 | 153 | 	    irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_4000); | 
| Sergei Shtylyov | f4d3ffa | 2009-06-15 18:52:58 +0200 | [diff] [blame] | 154 | 	    d.port_ops = &gayle_a4000_port_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | 	} else { | 
 | 156 | 	    phys_base = GAYLE_BASE_1200; | 
 | 157 | 	    irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_1200); | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 158 | 	    d.port_ops = &gayle_a1200_port_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | 	res_start = ((unsigned long)phys_base) & ~(GAYLE_NEXT_PORT-1); | 
 | 162 | 	res_n = GAYLE_IDEREG_SIZE; | 
 | 163 |  | 
 | 164 | 	if (!request_mem_region(res_start, res_n, "IDE")) | 
| Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 165 | 		return -EBUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 |  | 
| Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 167 |     for (i = 0; i < GAYLE_NUM_PROBE_HWIFS; i++) { | 
| Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 168 | 	base = (unsigned long)ZTWO_VADDR(phys_base + i * GAYLE_NEXT_PORT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | 	ctrlport = GAYLE_HAS_CONTROL_REG ? (base + GAYLE_CONTROL) : 0; | 
 | 170 |  | 
| Sergei Shtylyov | f4d3ffa | 2009-06-15 18:52:58 +0200 | [diff] [blame] | 171 | 	gayle_setup_ports(&hw[i], base, ctrlport, irqport); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 |  | 
| Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 173 | 	hws[i] = &hw[i]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 |     } | 
| Bartlomiej Zolnierkiewicz | 8ac4ce7 | 2008-01-26 20:13:06 +0100 | [diff] [blame] | 175 |  | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 176 |     rc = ide_host_add(&d, hws, i, NULL); | 
| Bartlomiej Zolnierkiewicz | 96cc112 | 2008-07-24 22:53:34 +0200 | [diff] [blame] | 177 |     if (rc) | 
 | 178 | 	release_mem_region(res_start, res_n); | 
 | 179 |  | 
 | 180 |     return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } | 
| Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 182 |  | 
 | 183 | module_init(gayle_init); | 
| Adrian Bunk | 6e1d17d | 2008-04-02 21:22:04 +0200 | [diff] [blame] | 184 |  | 
 | 185 | MODULE_LICENSE("GPL"); |