Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * drivers/pcmcia/sa1100_cerf.c |
| 4 | * |
| 5 | * PCMCIA implementation routines for CerfBoard |
| 6 | * Based off the Assabet. |
| 7 | * |
| 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/module.h> |
| 10 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/device.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/delay.h> |
Russell King | bbb58a1 | 2012-01-18 12:32:37 +0000 | [diff] [blame] | 14 | #include <linux/gpio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 16 | #include <mach/hardware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <asm/mach-types.h> |
| 18 | #include <asm/irq.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 19 | #include <mach/cerf.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "sa1100_generic.h" |
| 21 | |
| 22 | #define CERF_SOCKET 1 |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | static int cerf_pcmcia_hw_init(struct soc_pcmcia_socket *skt) |
| 25 | { |
Russell King | bbb58a1 | 2012-01-18 12:32:37 +0000 | [diff] [blame] | 26 | int ret; |
| 27 | |
| 28 | ret = gpio_request_one(CERF_GPIO_CF_RESET, GPIOF_OUT_INIT_LOW, "CF_RESET"); |
| 29 | if (ret) |
| 30 | return ret; |
| 31 | |
Russell King | f793e3a | 2012-01-13 23:03:57 +0000 | [diff] [blame] | 32 | skt->stat[SOC_STAT_CD].gpio = CERF_GPIO_CF_CD; |
| 33 | skt->stat[SOC_STAT_CD].name = "CF_CD"; |
| 34 | skt->stat[SOC_STAT_BVD1].gpio = CERF_GPIO_CF_BVD1; |
| 35 | skt->stat[SOC_STAT_BVD1].name = "CF_BVD1"; |
| 36 | skt->stat[SOC_STAT_BVD2].gpio = CERF_GPIO_CF_BVD2; |
| 37 | skt->stat[SOC_STAT_BVD2].name = "CF_BVD2"; |
| 38 | skt->stat[SOC_STAT_RDY].gpio = CERF_GPIO_CF_IRQ; |
| 39 | skt->stat[SOC_STAT_RDY].name = "CF_IRQ"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Russell King | f793e3a | 2012-01-13 23:03:57 +0000 | [diff] [blame] | 41 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | } |
| 43 | |
Russell King | bbb58a1 | 2012-01-18 12:32:37 +0000 | [diff] [blame] | 44 | static void cerf_pcmcia_hw_shutdown(struct soc_pcmcia_socket *skt) |
| 45 | { |
| 46 | gpio_free(CERF_GPIO_CF_RESET); |
| 47 | } |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | static int |
| 50 | cerf_pcmcia_configure_socket(struct soc_pcmcia_socket *skt, |
| 51 | const socket_state_t *state) |
| 52 | { |
| 53 | switch (state->Vcc) { |
| 54 | case 0: |
| 55 | case 50: |
| 56 | case 33: |
| 57 | break; |
| 58 | |
| 59 | default: |
| 60 | printk(KERN_ERR "%s(): unrecognized Vcc %u\n", |
Harvey Harrison | 2e11cb4 | 2008-05-01 04:34:54 -0700 | [diff] [blame] | 61 | __func__, state->Vcc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | return -1; |
| 63 | } |
| 64 | |
Russell King | bbb58a1 | 2012-01-18 12:32:37 +0000 | [diff] [blame] | 65 | gpio_set_value(CERF_GPIO_CF_RESET, !!(state->flags & SS_RESET)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | return 0; |
| 68 | } |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | static struct pcmcia_low_level cerf_pcmcia_ops = { |
| 71 | .owner = THIS_MODULE, |
| 72 | .hw_init = cerf_pcmcia_hw_init, |
Russell King | bbb58a1 | 2012-01-18 12:32:37 +0000 | [diff] [blame] | 73 | .hw_shutdown = cerf_pcmcia_hw_shutdown, |
Russell King | a1d0500 | 2016-08-31 08:49:46 +0100 | [diff] [blame] | 74 | .socket_state = soc_common_cf_socket_state, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | .configure_socket = cerf_pcmcia_configure_socket, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | }; |
| 77 | |
Bill Pemberton | 34cdf25 | 2012-11-19 13:23:12 -0500 | [diff] [blame] | 78 | int pcmcia_cerf_init(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { |
| 80 | int ret = -ENODEV; |
| 81 | |
| 82 | if (machine_is_cerf()) |
| 83 | ret = sa11xx_drv_pcmcia_probe(dev, &cerf_pcmcia_ops, CERF_SOCKET, 1); |
| 84 | |
| 85 | return ret; |
| 86 | } |