Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | /* * drivers/pcmcia/sa1100_assabet.c * * PCMCIA implementation routines for Assabet * */ #include <linux/config.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/errno.h> #include <linux/init.h> #include <asm/hardware.h> #include <asm/irq.h> #include <asm/arch/assabet.h> #include "sa1100_generic.h" static struct irqs { int irq; const char *str; } irqs[] = { { ASSABET_IRQ_GPIO_CF_CD, "CF_CD" }, { ASSABET_IRQ_GPIO_CF_BVD2, "CF_BVD2" }, { ASSABET_IRQ_GPIO_CF_BVD1, "CF_BVD1" }, }; static int assabet_pcmcia_init(struct pcmcia_init *init) { int i, res; /* Set transition detect */ set_irq_type(ASSABET_IRQ_GPIO_CF_IRQ, IRQT_FALLING); /* Register interrupts */ for (i = 0; i < ARRAY_SIZE(irqs); i++) { set_irq_type(irqs[i].irq, IRQT_NOEDGE); res = request_irq(irqs[i].irq, init->handler, SA_INTERRUPT, irqs[i].str, NULL); if (res) goto irq_err; } /* There's only one slot, but it's "Slot 1": */ return 2; irq_err: printk(KERN_ERR "%s: request for IRQ%d failed (%d)\n", __FUNCTION__, irqs[i].irq, res); while (i--) free_irq(irqs[i].irq, NULL); return res; } /* * Release all resources. */ static int assabet_pcmcia_shutdown(void) { int i; for (i = 0; i < ARRAY_SIZE(irqs); i++) free_irq(irqs[i].irq, NULL); return 0; } static int assabet_pcmcia_socket_state(struct pcmcia_state_array *state_array) { unsigned long levels; if (state_array->size < 2) return -1; levels = GPLR; state_array->state[1].detect = (levels & ASSABET_GPIO_CF_CD) ? 0 : 1; state_array->state[1].ready = (levels & ASSABET_GPIO_CF_IRQ) ? 1 : 0; state_array->state[1].bvd1 = (levels & ASSABET_GPIO_CF_BVD1) ? 1 : 0; state_array->state[1].bvd2 = (levels & ASSABET_GPIO_CF_BVD2) ? 1 : 0; state_array->state[1].wrprot = 0; /* Not available on Assabet. */ state_array->state[1].vs_3v = 1; /* Can only apply 3.3V on Assabet. */ state_array->state[1].vs_Xv = 0; return 1; } static int assabet_pcmcia_get_irq_info(struct pcmcia_irq_info *info) { if (info->sock > 1) return -1; if (info->sock == 1) info->irq = ASSABET_IRQ_GPIO_CF_IRQ; return 0; } static int assabet_pcmcia_configure_socket(const struct pcmcia_configure *configure) { unsigned int mask; if (configure->sock > 1) return -1; if (configure->sock == 0) return 0; switch (configure->vcc) { case 0: mask = 0; break; case 50: printk(KERN_WARNING "%s(): CS asked for 5V, applying 3.3V...\n", __FUNCTION__); case 33: /* Can only apply 3.3V to the CF slot. */ mask = ASSABET_BCR_CF_PWR; break; default: printk(KERN_ERR "%s(): unrecognized Vcc %u\n", __FUNCTION__, configure->vcc); return -1; } /* Silently ignore Vpp, output enable, speaker enable. */ if (configure->reset) mask |= ASSABET_BCR_CF_RST; ASSABET_BCR_frob(ASSABET_BCR_CF_RST | ASSABET_BCR_CF_PWR, mask); /* * Handle suspend mode properly. This prevents a * flood of IRQs from the CF device. */ if (configure->irq) enable_irq(ASSABET_IRQ_GPIO_CF_IRQ); else disable_irq(ASSABET_IRQ_GPIO_CF_IRQ); return 0; } /* * Enable card status IRQs on (re-)initialisation. This can * be called at initialisation, power management event, or * pcmcia event. */ static int assabet_pcmcia_socket_init(int sock) { int i; if (sock == 1) { /* * Enable CF bus */ ASSABET_BCR_clear(ASSABET_BCR_CF_BUS_OFF); for (i = 0; i < ARRAY_SIZE(irqs); i++) set_irq_type(irqs[i].irq, IRQT_BOTHEDGE); } return 0; } /* * Disable card status IRQs on suspend. */ static int assabet_pcmcia_socket_suspend(int sock) { int i; if (sock == 1) { for (i = 0; i < ARRAY_SIZE(irqs); i++) set_irq_type(irqs[i].irq, IRQT_NOEDGE); /* * Tristate the CF bus signals. Also assert CF * reset as per user guide page 4-11. */ ASSABET_BCR_set(ASSABET_BCR_CF_BUS_OFF | ASSABET_BCR_CF_RST); } return 0; } static struct pcmcia_low_level assabet_pcmcia_ops = { init: assabet_pcmcia_init, shutdown: assabet_pcmcia_shutdown, socket_state: assabet_pcmcia_socket_state, get_irq_info: assabet_pcmcia_get_irq_info, configure_socket: assabet_pcmcia_configure_socket, socket_init: assabet_pcmcia_socket_init, socket_suspend: assabet_pcmcia_socket_suspend, }; int __init pcmcia_assabet_init(void) { int ret = -ENODEV; if (machine_is_assabet()) { if (!machine_has_neponset()) ret = sa1100_register_pcmcia(&assabet_pcmcia_ops); #ifndef CONFIG_ASSABET_NEPONSET else printk(KERN_ERR "Card Services disabled: missing " "Neponset support\n"); #endif } return ret; } void __exit pcmcia_assabet_exit(void) { sa1100_unregister_pcmcia(&assabet_pcmcia_ops); } |