1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/pcmcia/sa1100_simpad.c
5 * PCMCIA implementation routines for simpad
8 #include <linux/module.h>
9 #include <linux/kernel.h>
10 #include <linux/device.h>
11 #include <linux/init.h>
13 #include <mach/hardware.h>
14 #include <asm/mach-types.h>
16 #include <mach/simpad.h>
17 #include "sa1100_generic.h"
19 static int simpad_pcmcia_hw_init(struct soc_pcmcia_socket
*skt
)
22 simpad_clear_cs3_bit(VCC_3V_EN
|VCC_5V_EN
|EN0
|EN1
);
24 skt
->stat
[SOC_STAT_CD
].gpio
= GPIO_CF_CD
;
25 skt
->stat
[SOC_STAT_CD
].name
= "CF_CD";
26 skt
->stat
[SOC_STAT_RDY
].gpio
= GPIO_CF_IRQ
;
27 skt
->stat
[SOC_STAT_RDY
].name
= "CF_RDY";
32 static void simpad_pcmcia_hw_shutdown(struct soc_pcmcia_socket
*skt
)
35 /*simpad_set_cs3_bit(PCMCIA_BUFF_DIS);*/
36 simpad_clear_cs3_bit(PCMCIA_RESET
);
40 simpad_pcmcia_socket_state(struct soc_pcmcia_socket
*skt
,
41 struct pcmcia_state
*state
)
43 long cs3reg
= simpad_get_cs3_ro();
45 /* the detect signal is inverted - fix that up here */
46 state
->detect
= !state
->detect
;
48 state
->bvd1
= 1; /* Might be cs3reg & PCMCIA_BVD1 */
49 state
->bvd2
= 1; /* Might be cs3reg & PCMCIA_BVD2 */
51 if ((cs3reg
& (PCMCIA_VS1
|PCMCIA_VS2
)) ==
52 (PCMCIA_VS1
|PCMCIA_VS2
)) {
62 simpad_pcmcia_configure_socket(struct soc_pcmcia_socket
*skt
,
63 const socket_state_t
*state
)
67 local_irq_save(flags
);
69 /* Murphy: see table of MIC2562a-1 */
72 simpad_clear_cs3_bit(VCC_3V_EN
|VCC_5V_EN
|EN0
|EN1
);
76 simpad_clear_cs3_bit(VCC_3V_EN
|EN1
);
77 simpad_set_cs3_bit(VCC_5V_EN
|EN0
);
81 simpad_clear_cs3_bit(VCC_5V_EN
|EN1
);
82 simpad_set_cs3_bit(VCC_3V_EN
|EN0
);
86 printk(KERN_ERR
"%s(): unrecognized Vcc %u\n",
87 __func__
, state
->Vcc
);
88 simpad_clear_cs3_bit(VCC_3V_EN
|VCC_5V_EN
|EN0
|EN1
);
89 local_irq_restore(flags
);
94 local_irq_restore(flags
);
99 static void simpad_pcmcia_socket_suspend(struct soc_pcmcia_socket
*skt
)
101 simpad_set_cs3_bit(PCMCIA_RESET
);
104 static struct pcmcia_low_level simpad_pcmcia_ops
= {
105 .owner
= THIS_MODULE
,
106 .hw_init
= simpad_pcmcia_hw_init
,
107 .hw_shutdown
= simpad_pcmcia_hw_shutdown
,
108 .socket_state
= simpad_pcmcia_socket_state
,
109 .configure_socket
= simpad_pcmcia_configure_socket
,
110 .socket_suspend
= simpad_pcmcia_socket_suspend
,
113 int pcmcia_simpad_init(struct device
*dev
)
117 if (machine_is_simpad())
118 ret
= sa11xx_drv_pcmcia_probe(dev
, &simpad_pcmcia_ops
, 1, 1);