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 | /* * drivers/pcmcia/sa1100_pangolin.c * * PCMCIA implementation routines for Pangolin * */ #include <linux/config.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/init.h> #include <asm/hardware.h> #include <asm/irq.h> #include "sa1100_generic.h" static int pangolin_pcmcia_init(struct pcmcia_init *init){ int res; #ifndef CONFIG_SA1100_PANGOLIN_PCMCIA_IDE /* Enable PCMCIA bus: */ GPCR = GPIO_PCMCIA_BUS_ON; #endif /* Set transition detect */ set_irq_type(IRQ_PCMCIA_CD, IRQT_NOEDGE); set_irq_type(IRQ_PCMCIA_IRQ, IRQT_FALLING); /* Register interrupts */ res = request_irq(IRQ_PCMCIA_CD, init->handler, SA_INTERRUPT, "PCMCIA_CD", NULL); if (res >= 0) /* 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__, IRQ_PCMCIA_CD, res); return res; } static int pangolin_pcmcia_shutdown(void) { /* disable IRQs */ free_irq(IRQ_PCMCIA_CD, NULL); #ifndef CONFIG_SA1100_PANGOLIN_PCMCIA_IDE /* Disable PCMCIA bus: */ GPSR = GPIO_PCMCIA_BUS_ON; #endif return 0; } static int pangolin_pcmcia_socket_state(struct pcmcia_state_array *state_array){ unsigned long levels; if(state_array->size<2) return -1; memset(state_array->state, 0, (state_array->size)*sizeof(struct pcmcia_state)); levels=GPLR; #ifndef CONFIG_SA1100_PANGOLIN_PCMCIA_IDE state_array->state[1].detect=((levels & GPIO_PCMCIA_CD)==0)?1:0; state_array->state[1].ready=(levels & GPIO_PCMCIA_IRQ)?1:0; state_array->state[1].bvd1=1; /* Not available on Pangolin. */ state_array->state[1].bvd2=1; /* Not available on Pangolin. */ state_array->state[1].wrprot=0; /* Not available on Pangolin. */ state_array->state[1].vs_3v=1; /* Can only apply 3.3V on Pangolin. */ state_array->state[1].vs_Xv=0; #else state_array->state[0].detect=((levels & GPIO_PCMCIA_CD)==0)?1:0; state_array->state[0].ready=(levels & GPIO_PCMCIA_IRQ)?1:0; state_array->state[0].bvd1=1; /* Not available on Pangolin. */ state_array->state[0].bvd2=1; /* Not available on Pangolin. */ state_array->state[0].wrprot=0; /* Not available on Pangolin. */ state_array->state[0].vs_3v=0; /* voltage level is determined by jumper setting */ state_array->state[0].vs_Xv=0; #endif return 1; } static int pangolin_pcmcia_get_irq_info(struct pcmcia_irq_info *info){ if(info->sock>1) return -1; #ifndef CONFIG_SA1100_PANGOLIN_PCMCIA_IDE if(info->sock==1) info->irq=IRQ_PCMCIA_IRQ; #else if(info->sock==0) info->irq=IRQ_PCMCIA_IRQ; #endif return 0; } static int pangolin_pcmcia_configure_socket(const struct pcmcia_configure *configure) { unsigned long value, flags; if(configure->sock>1) return -1; #ifndef CONFIG_SA1100_PANGOLIN_PCMCIA_IDE if(configure->sock==0) return 0; #endif local_irq_save(flags); /* Murphy: BUS_ON different from POWER ? */ switch(configure->vcc){ case 0: break; #ifndef CONFIG_SA1100_PANGOLIN_PCMCIA_IDE 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. */ break; #else case 50: printk(KERN_WARNING "%s(): CS asked for 5V, determinded by jumper setting...\n", __FUNCTION__); break; case 33: printk(KERN_WARNING "%s(): CS asked for 3.3V, determined by jumper setting...\n", __FUNCTION__); break; #endif default: printk(KERN_ERR "%s(): unrecognized Vcc %u\n", __FUNCTION__, configure->vcc); local_irq_restore(flags); return -1; } #ifdef CONFIG_SA1100_PANGOLIN_PCMCIA_IDE /* reset & unreset request */ if(configure->sock==0) { if(configure->reset) { GPSR |= GPIO_PCMCIA_RESET; } else { GPCR |= GPIO_PCMCIA_RESET; } } #endif /* Silently ignore Vpp, output enable, speaker enable. */ local_irq_restore(flags); return 0; } static int pangolin_pcmcia_socket_init(int sock) { if (sock == 1) set_irq_type(IRQ_PCmCIA_CD, IRQT_BOTHEDGE); return 0; } static int pangolin_pcmcia_socket_suspend(int sock) { if (sock == 1) set_irq_type(IRQ_PCmCIA_CD, IRQT_NOEDGE); return 0; } static struct pcmcia_low_level pangolin_pcmcia_ops = { init: pangolin_pcmcia_init, shutdown: pangolin_pcmcia_shutdown, socket_state: pangolin_pcmcia_socket_state, get_irq_info: pangolin_pcmcia_get_irq_info, configure_socket: pangolin_pcmcia_configure_socket, socket_init: pangolin_pcmcia_socket_init, socket_suspend, pangolin_pcmcia_socket_suspend, }; int __init pcmcia_pangolin_init(void) { int ret = -ENODEV; if (machine_is_pangolin()) ret = sa1100_register_pcmcia(&pangolin_pcmcia_ops); return ret; } void __exit pcmcia_pangolin_exit(void) { sa1100_unregister_pcmcia(&pangolin_pcmcia_ops); } |