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> |
| 15 | #include <linux/hdreg.h> |
| 16 | #include <linux/ide.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/zorro.h> |
Adrian Bunk | 513f3c1 | 2008-06-10 20:56:38 +0200 | [diff] [blame] | 19 | #include <linux/module.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 | /* |
| 28 | * Bases of the IDE interfaces |
| 29 | */ |
| 30 | |
| 31 | #define GAYLE_BASE_4000 0xdd2020 /* A4000/A4000T */ |
| 32 | #define GAYLE_BASE_1200 0xda0000 /* A1200/A600 and E-Matrix 530 */ |
| 33 | |
Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame^] | 34 | #define GAYLE_IDEREG_SIZE 0x2000 |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* |
| 37 | * Offsets from one of the above bases |
| 38 | */ |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #define GAYLE_CONTROL 0x101a |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | /* |
| 43 | * These are at different offsets from the base |
| 44 | */ |
| 45 | |
| 46 | #define GAYLE_IRQ_4000 0xdd3020 /* MSB = 1, Harddisk is source of */ |
| 47 | #define GAYLE_IRQ_1200 0xda9000 /* interrupt */ |
| 48 | |
| 49 | |
| 50 | /* |
| 51 | * Offset of the secondary port for IDE doublers |
| 52 | * Note that GAYLE_CONTROL is NOT available then! |
| 53 | */ |
| 54 | |
| 55 | #define GAYLE_NEXT_PORT 0x1000 |
| 56 | |
| 57 | #ifndef CONFIG_BLK_DEV_IDEDOUBLER |
| 58 | #define GAYLE_NUM_HWIFS 1 |
| 59 | #define GAYLE_NUM_PROBE_HWIFS GAYLE_NUM_HWIFS |
| 60 | #define GAYLE_HAS_CONTROL_REG 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #else /* CONFIG_BLK_DEV_IDEDOUBLER */ |
| 62 | #define GAYLE_NUM_HWIFS 2 |
| 63 | #define GAYLE_NUM_PROBE_HWIFS (ide_doubler ? GAYLE_NUM_HWIFS : \ |
| 64 | GAYLE_NUM_HWIFS-1) |
| 65 | #define GAYLE_HAS_CONTROL_REG (!ide_doubler) |
Adrian Bunk | 513f3c1 | 2008-06-10 20:56:38 +0200 | [diff] [blame] | 66 | |
Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 67 | static int ide_doubler; |
Bartlomiej Zolnierkiewicz | 9dcba7f | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 68 | module_param_named(doubler, ide_doubler, bool, 0); |
| 69 | MODULE_PARM_DESC(doubler, "enable support for IDE doublers"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #endif /* CONFIG_BLK_DEV_IDEDOUBLER */ |
| 71 | |
| 72 | |
| 73 | /* |
| 74 | * Check and acknowledge the interrupt status |
| 75 | */ |
| 76 | |
| 77 | static int gayle_ack_intr_a4000(ide_hwif_t *hwif) |
| 78 | { |
| 79 | unsigned char ch; |
| 80 | |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 81 | ch = z_readb(hwif->io_ports.irq_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | if (!(ch & GAYLE_IRQ_IDE)) |
| 83 | return 0; |
| 84 | return 1; |
| 85 | } |
| 86 | |
| 87 | static int gayle_ack_intr_a1200(ide_hwif_t *hwif) |
| 88 | { |
| 89 | unsigned char ch; |
| 90 | |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 91 | ch = z_readb(hwif->io_ports.irq_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | if (!(ch & GAYLE_IRQ_IDE)) |
| 93 | return 0; |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 94 | (void)z_readb(hwif->io_ports.status_addr); |
| 95 | z_writeb(0x7c, hwif->io_ports.irq_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | return 1; |
| 97 | } |
| 98 | |
Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 99 | static void __init gayle_setup_ports(hw_regs_t *hw, unsigned long base, |
| 100 | unsigned long ctl, unsigned long irq_port, |
Adrian Bunk | 56efa7b | 2008-02-11 00:32:14 +0100 | [diff] [blame] | 101 | ide_ack_intr_t *ack_intr) |
Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 102 | { |
| 103 | int i; |
| 104 | |
| 105 | memset(hw, 0, sizeof(*hw)); |
| 106 | |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 107 | hw->io_ports.data_addr = base; |
Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 108 | |
| 109 | for (i = 1; i < 8; i++) |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 110 | hw->io_ports_array[i] = base + 2 + i * 4; |
Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 111 | |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 112 | hw->io_ports.ctl_addr = ctl; |
| 113 | hw->io_ports.irq_addr = irq_port; |
Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +0100 | [diff] [blame] | 114 | |
| 115 | hw->irq = IRQ_AMIGA_PORTS; |
| 116 | hw->ack_intr = ack_intr; |
Bartlomiej Zolnierkiewicz | d427e83 | 2008-06-10 20:56:37 +0200 | [diff] [blame] | 117 | |
| 118 | hw->chipset = ide_generic; |
Bartlomiej Zolnierkiewicz | 29dd597 | 2008-02-06 02:57:50 +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; |
| 129 | ide_ack_intr_t *ack_intr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | int a4000, i; |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 131 | hw_regs_t hw[GAYLE_NUM_HWIFS], *hws[] = { NULL, NULL, NULL, NULL }; |
Bartlomiej Zolnierkiewicz | 8ac4ce7 | 2008-01-26 20:13:06 +0100 | [diff] [blame] | 132 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
| 134 | if (!MACH_IS_AMIGA) |
Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 135 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
| 137 | if ((a4000 = AMIGAHW_PRESENT(A4000_IDE)) || AMIGAHW_PRESENT(A1200_IDE)) |
| 138 | goto found; |
| 139 | |
| 140 | #ifdef CONFIG_ZORRO |
| 141 | if (zorro_find_device(ZORRO_PROD_MTEC_VIPER_MK_V_E_MATRIX_530_SCSI_IDE, |
| 142 | NULL)) |
| 143 | goto found; |
| 144 | #endif |
Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 145 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | found: |
Bartlomiej Zolnierkiewicz | c99c92c | 2008-01-26 20:13:09 +0100 | [diff] [blame] | 148 | printk(KERN_INFO "ide: Gayle IDE controller (A%d style%s)\n", |
| 149 | a4000 ? 4000 : 1200, |
| 150 | #ifdef CONFIG_BLK_DEV_IDEDOUBLER |
| 151 | ide_doubler ? ", IDE doubler" : |
| 152 | #endif |
| 153 | ""); |
| 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | if (a4000) { |
| 156 | phys_base = GAYLE_BASE_4000; |
| 157 | irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_4000); |
| 158 | ack_intr = gayle_ack_intr_a4000; |
| 159 | } else { |
| 160 | phys_base = GAYLE_BASE_1200; |
| 161 | irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_1200); |
| 162 | ack_intr = gayle_ack_intr_a1200; |
| 163 | } |
| 164 | /* |
| 165 | * FIXME: we now have selectable modes between mmio v/s iomio |
| 166 | */ |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | res_start = ((unsigned long)phys_base) & ~(GAYLE_NEXT_PORT-1); |
| 169 | res_n = GAYLE_IDEREG_SIZE; |
| 170 | |
| 171 | if (!request_mem_region(res_start, res_n, "IDE")) |
Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame^] | 172 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame^] | 174 | for (i = 0; i < GAYLE_NUM_PROBE_HWIFS; i++) { |
| 175 | ide_hwif_t *hwif; |
| 176 | |
| 177 | base = (unsigned long)ZTWO_VADDR(phys_base + i * GAYLE_NEXT_PORT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | ctrlport = GAYLE_HAS_CONTROL_REG ? (base + GAYLE_CONTROL) : 0; |
| 179 | |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 180 | gayle_setup_ports(&hw[i], base, ctrlport, irqport, ack_intr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Bartlomiej Zolnierkiewicz | 59bff5b | 2008-04-26 17:36:32 +0200 | [diff] [blame] | 182 | hwif = ide_find_port(); |
Bartlomiej Zolnierkiewicz | cbb010c | 2008-01-26 20:13:06 +0100 | [diff] [blame] | 183 | if (hwif) { |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 184 | hwif->chipset = ide_generic; |
Bartlomiej Zolnierkiewicz | cbb010c | 2008-01-26 20:13:06 +0100 | [diff] [blame] | 185 | |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 186 | hws[i] = &hw[i]; |
| 187 | idx[i] = hwif->index; |
Bartlomiej Zolnierkiewicz | 73dc532 | 2008-07-23 19:55:56 +0200 | [diff] [blame^] | 188 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | } |
Bartlomiej Zolnierkiewicz | 8ac4ce7 | 2008-01-26 20:13:06 +0100 | [diff] [blame] | 190 | |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 191 | ide_device_add(idx, NULL, hws); |
Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 192 | |
| 193 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 195 | |
| 196 | module_init(gayle_init); |
Adrian Bunk | 6e1d17d | 2008-04-02 21:22:04 +0200 | [diff] [blame] | 197 | |
| 198 | MODULE_LICENSE("GPL"); |