| 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> | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 19 | #include <linux/platform_device.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 |  | 
 | 21 | #include <asm/setup.h> | 
 | 22 | #include <asm/amigahw.h> | 
 | 23 | #include <asm/amigaints.h> | 
 | 24 | #include <asm/amigayle.h> | 
 | 25 |  | 
 | 26 |  | 
 | 27 |     /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 |      *  Offsets from one of the above bases | 
 | 29 |      */ | 
 | 30 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #define GAYLE_CONTROL	0x101a | 
 | 32 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 |     /* | 
 | 34 |      *  These are at different offsets from the base | 
 | 35 |      */ | 
 | 36 |  | 
 | 37 | #define GAYLE_IRQ_4000	0xdd3020	/* MSB = 1, Harddisk is source of */ | 
 | 38 | #define GAYLE_IRQ_1200	0xda9000	/* interrupt */ | 
 | 39 |  | 
 | 40 |  | 
 | 41 |     /* | 
 | 42 |      *  Offset of the secondary port for IDE doublers | 
 | 43 |      *  Note that GAYLE_CONTROL is NOT available then! | 
 | 44 |      */ | 
 | 45 |  | 
 | 46 | #define GAYLE_NEXT_PORT	0x1000 | 
 | 47 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #define GAYLE_NUM_HWIFS		2 | 
 | 49 | #define GAYLE_NUM_PROBE_HWIFS	(ide_doubler ? GAYLE_NUM_HWIFS : \ | 
 | 50 | 					       GAYLE_NUM_HWIFS-1) | 
 | 51 | #define GAYLE_HAS_CONTROL_REG	(!ide_doubler) | 
| Adrian Bunk | 513f3c1 | 2008-06-10 20:56:38 +0200 | [diff] [blame] | 52 |  | 
| Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 53 | static int ide_doubler; | 
| Bartlomiej Zolnierkiewicz | 9dcba7f | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 54 | module_param_named(doubler, ide_doubler, bool, 0); | 
 | 55 | MODULE_PARM_DESC(doubler, "enable support for IDE doublers"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 |  | 
 | 57 |     /* | 
 | 58 |      *  Check and acknowledge the interrupt status | 
 | 59 |      */ | 
 | 60 |  | 
| Sergei Shtylyov | f4d3ffa | 2009-06-15 18:52:58 +0200 | [diff] [blame] | 61 | static int gayle_test_irq(ide_hwif_t *hwif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 63 | 	unsigned char ch; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 65 | 	ch = z_readb(hwif->io_ports.irq_addr); | 
 | 66 | 	if (!(ch & GAYLE_IRQ_IDE)) | 
 | 67 | 		return 0; | 
 | 68 | 	return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | } | 
 | 70 |  | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 71 | static void gayle_a1200_clear_irq(ide_drive_t *drive) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 73 | 	ide_hwif_t *hwif = drive->hwif; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 75 | 	(void)z_readb(hwif->io_ports.status_addr); | 
 | 76 | 	z_writeb(0x7c, hwif->io_ports.irq_addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } | 
 | 78 |  | 
| Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 79 | 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] | 80 | 				     unsigned long ctl, unsigned long irq_port) | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 81 | { | 
 | 82 | 	int i; | 
 | 83 |  | 
 | 84 | 	memset(hw, 0, sizeof(*hw)); | 
 | 85 |  | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 86 | 	hw->io_ports.data_addr = base; | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 87 |  | 
 | 88 | 	for (i = 1; i < 8; i++) | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 89 | 		hw->io_ports_array[i] = base + 2 + i * 4; | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 90 |  | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 91 | 	hw->io_ports.ctl_addr = ctl; | 
 | 92 | 	hw->io_ports.irq_addr = irq_port; | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 93 |  | 
 | 94 | 	hw->irq = IRQ_AMIGA_PORTS; | 
| Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 95 | } | 
 | 96 |  | 
| Sergei Shtylyov | f4d3ffa | 2009-06-15 18:52:58 +0200 | [diff] [blame] | 97 | static const struct ide_port_ops gayle_a4000_port_ops = { | 
 | 98 | 	.test_irq		= gayle_test_irq, | 
 | 99 | }; | 
 | 100 |  | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 101 | static const struct ide_port_ops gayle_a1200_port_ops = { | 
 | 102 | 	.clear_irq		= gayle_a1200_clear_irq, | 
| Sergei Shtylyov | f4d3ffa | 2009-06-15 18:52:58 +0200 | [diff] [blame] | 103 | 	.test_irq		= gayle_test_irq, | 
| Sergei Shtylyov | eba8999 | 2009-06-15 18:52:57 +0200 | [diff] [blame] | 104 | }; | 
 | 105 |  | 
| Bartlomiej Zolnierkiewicz | a4cd1a3 | 2008-12-29 20:27:33 +0100 | [diff] [blame] | 106 | static const struct ide_port_info gayle_port_info = { | 
| Bartlomiej Zolnierkiewicz | 09a3e79 | 2009-03-27 12:46:23 +0100 | [diff] [blame] | 107 | 	.host_flags		= IDE_HFLAG_MMIO | IDE_HFLAG_SERIALIZE | | 
 | 108 | 				  IDE_HFLAG_NO_DMA, | 
| Bartlomiej Zolnierkiewicz | 255115fb | 2009-03-27 12:46:27 +0100 | [diff] [blame] | 109 | 	.irq_flags		= IRQF_SHARED, | 
| Bartlomiej Zolnierkiewicz | 29e52cf | 2009-05-17 19:12:22 +0200 | [diff] [blame] | 110 | 	.chipset		= ide_generic, | 
| Bartlomiej Zolnierkiewicz | a4cd1a3 | 2008-12-29 20:27:33 +0100 | [diff] [blame] | 111 | }; | 
 | 112 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 |     /* | 
 | 114 |      *  Probe for a Gayle IDE interface (and optionally for an IDE doubler) | 
 | 115 |      */ | 
 | 116 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 117 | static int __init amiga_gayle_ide_probe(struct platform_device *pdev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 119 | 	struct resource *res; | 
 | 120 | 	struct gayle_ide_platform_data *pdata; | 
 | 121 | 	unsigned long base, ctrlport, irqport; | 
 | 122 | 	unsigned int i; | 
 | 123 | 	int error; | 
 | 124 | 	struct ide_hw hw[GAYLE_NUM_HWIFS], *hws[GAYLE_NUM_HWIFS]; | 
 | 125 | 	struct ide_port_info d = gayle_port_info; | 
 | 126 | 	struct ide_host *host; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 128 | 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
 | 129 | 	if (!res) | 
 | 130 | 		return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 132 | 	if (!request_mem_region(res->start, resource_size(res), "IDE")) | 
| Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 133 | 		return -EBUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 135 | 	pdata = pdev->dev.platform_data; | 
 | 136 | 	pr_info("ide: Gayle IDE controller (A%u style%s)\n", | 
 | 137 | 		pdata->explicit_ack ? 1200 : 4000, | 
 | 138 | 		ide_doubler ? ", IDE doubler" : ""); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 140 | 	base = (unsigned long)ZTWO_VADDR(pdata->base); | 
 | 141 | 	ctrlport = 0; | 
 | 142 | 	irqport = (unsigned long)ZTWO_VADDR(pdata->irqport); | 
 | 143 | 	if (pdata->explicit_ack) | 
 | 144 | 		d.port_ops = &gayle_a1200_port_ops; | 
 | 145 | 	else | 
 | 146 | 		d.port_ops = &gayle_a4000_port_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 148 | 	for (i = 0; i < GAYLE_NUM_PROBE_HWIFS; i++, base += GAYLE_NEXT_PORT) { | 
 | 149 | 		if (GAYLE_HAS_CONTROL_REG) | 
 | 150 | 			ctrlport = base + GAYLE_CONTROL; | 
| Bartlomiej Zolnierkiewicz | 8ac4ce7 | 2008-01-26 20:13:06 +0100 | [diff] [blame] | 151 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 152 | 		gayle_setup_ports(&hw[i], base, ctrlport, irqport); | 
 | 153 | 		hws[i] = &hw[i]; | 
 | 154 | 	} | 
| Bartlomiej Zolnierkiewicz | 96cc112 | 2008-07-24 22:53:34 +0200 | [diff] [blame] | 155 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 156 | 	error = ide_host_add(&d, hws, i, &host); | 
 | 157 | 	if (error) | 
 | 158 | 		goto out; | 
 | 159 |  | 
 | 160 | 	platform_set_drvdata(pdev, host); | 
 | 161 | 	return 0; | 
 | 162 |  | 
 | 163 | out: | 
 | 164 | 	release_mem_region(res->start, resource_size(res)); | 
 | 165 | 	return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } | 
| Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 167 |  | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 168 | static int __exit amiga_gayle_ide_remove(struct platform_device *pdev) | 
 | 169 | { | 
 | 170 | 	struct ide_host *host = platform_get_drvdata(pdev); | 
 | 171 | 	struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
 | 172 |  | 
 | 173 | 	ide_host_remove(host); | 
 | 174 | 	release_mem_region(res->start, resource_size(res)); | 
 | 175 | 	return 0; | 
 | 176 | } | 
 | 177 |  | 
 | 178 | static struct platform_driver amiga_gayle_ide_driver = { | 
 | 179 | 	.remove = __exit_p(amiga_gayle_ide_remove), | 
 | 180 | 	.driver   = { | 
 | 181 | 		.name	= "amiga-gayle-ide", | 
 | 182 | 		.owner	= THIS_MODULE, | 
 | 183 | 	}, | 
 | 184 | }; | 
 | 185 |  | 
 | 186 | static int __init amiga_gayle_ide_init(void) | 
 | 187 | { | 
 | 188 | 	return platform_driver_probe(&amiga_gayle_ide_driver, | 
 | 189 | 				     amiga_gayle_ide_probe); | 
 | 190 | } | 
 | 191 |  | 
 | 192 | module_init(amiga_gayle_ide_init); | 
 | 193 |  | 
 | 194 | static void __exit amiga_gayle_ide_exit(void) | 
 | 195 | { | 
 | 196 | 	platform_driver_unregister(&amiga_gayle_ide_driver); | 
 | 197 | } | 
 | 198 |  | 
 | 199 | module_exit(amiga_gayle_ide_exit); | 
| Adrian Bunk | 6e1d17d | 2008-04-02 21:22:04 +0200 | [diff] [blame] | 200 |  | 
 | 201 | MODULE_LICENSE("GPL"); | 
| Geert Uytterhoeven | 9aed230 | 2009-12-08 20:12:20 +0100 | [diff] [blame] | 202 | MODULE_ALIAS("platform:amiga-gayle-ide"); |