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 | /* * drivers/pcmcia/sa1100_adsbitsy.c * * PCMCIA implementation routines for ADS Bitsy * * 9/18/01 Woojung * Fixed wrong PCMCIA voltage setting * * 7/5/01 Woojung Huh <whuh@applieddata.net> * */ #include <linux/kernel.h> #include <linux/sched.h> #include <linux/init.h> #include <asm/hardware.h> #include <asm/mach-types.h> #include "sa1100_generic.h" #include "sa1111_generic.h" static int adsbitsy_pcmcia_init(struct pcmcia_init *init) { /* Set GPIO_A<3:0> to be outputs for PCMCIA/CF power controller: */ PA_DDR &= ~(GPIO_GPIO0 | GPIO_GPIO1 | GPIO_GPIO2 | GPIO_GPIO3); /* Disable Power 3.3V/5V for PCMCIA/CF */ PA_DWR |= GPIO_GPIO0 | GPIO_GPIO1 | GPIO_GPIO2 | GPIO_GPIO3; /* Why? */ MECR = 0x09430943; return sa1111_pcmcia_init(init); } static int adsbitsy_pcmcia_configure_socket(const struct pcmcia_configure *conf) { unsigned int pa_dwr_mask, pa_dwr_set; int ret; switch (conf->sock) { case 0: pa_dwr_mask = GPIO_GPIO0 | GPIO_GPIO1; switch (conf->vcc) { default: case 0: pa_dwr_set = GPIO_GPIO0 | GPIO_GPIO1; break; case 33: pa_dwr_set = GPIO_GPIO1; break; case 50: pa_dwr_set = GPIO_GPIO0; break; } break; case 1: pa_dwr_mask = GPIO_GPIO2 | GPIO_GPIO3; switch (conf->vcc) { default: case 0: pa_dwr_set = 0; break; case 33: pa_dwr_set = GPIO_GPIO2; break; case 50: pa_dwr_set = GPIO_GPIO3; break; } default: return -1; } if (conf->vpp != conf->vcc && conf->vpp != 0) { printk(KERN_ERR "%s(): CF slot cannot support VPP %u\n", __FUNCTION__, conf->vpp); return -1; } ret = sa1111_pcmcia_configure_socket(conf); if (ret == 0) { unsigned long flags; local_irq_save(flags); PA_DWR = (PA_DWR & ~pa_dwr_mask) | pa_dwr_set; local_irq_restore(flags); } return ret; } static struct pcmcia_low_level adsbitsy_pcmcia_ops = { init: adsbitsy_pcmcia_init, shutdown: sa1111_pcmcia_shutdown, socket_state: sa1111_pcmcia_socket_state, get_irq_info: sa1111_pcmcia_get_irq_info, configure_socket: adsbitsy_pcmcia_configure_socket, socket_init: sa1111_pcmcia_socket_init, socket_suspend: sa1111_pcmcia_socket_suspend, }; int __init pcmcia_adsbitsy_init(void) { int ret = -ENODEV; if (machine_is_adsbitsy()) ret = sa1100_register_pcmcia(&adsbitsy_pcmcia_ops); return ret; } void __exit pcmcia_adsbitsy_exit(void) { sa1100_unregister_pcmcia(&adsbitsy_pcmcia_ops); } |