1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/pcmcia/pxa2xx_lubbock.c
6 * Created: Jan 10, 2002
7 * Copyright: MontaVista Software Inc.
9 * Originally based upon linux/drivers/pcmcia/sa1100_neponset.c
11 * Lubbock PCMCIA specific routines.
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/device.h>
16 #include <linux/errno.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
20 #include <asm/hardware/sa1111.h>
21 #include <asm/mach-types.h>
23 #include "sa1111_generic.h"
26 static int lubbock_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
31 ret = max1600_init(skt->socket.dev.parent, &m,
32 skt->nr ? MAX1600_CHAN_B : MAX1600_CHAN_A,
41 lubbock_pcmcia_configure_socket(struct soc_pcmcia_socket *skt,
42 const socket_state_t *state)
44 struct max1600 *m = skt->driver_data;
47 /* Lubbock uses the Maxim MAX1602, with the following connections:
50 * MAX1602 Lubbock Register
52 * ----- ------- ----------------------
53 * A0VPP S0_PWR0 SA-1111 GPIO A<0>
54 * A1VPP S0_PWR1 SA-1111 GPIO A<1>
55 * A0VCC S0_PWR2 SA-1111 GPIO A<2>
56 * A1VCC S0_PWR3 SA-1111 GPIO A<3>
60 * CODE +3.3V Cirrus Code, CODE = High (VY)
63 * MAX1602 Lubbock Register
65 * ----- ------- ----------------------
66 * A0VPP GND VPP is not connected
67 * A1VPP GND VPP is not connected
68 * A0VCC S1_PWR0 MISC_WR<14>
69 * A1VCC S1_PWR1 MISC_WR<15>
72 * 12IN GND VPP is not connected
73 * CODE +3.3V Cirrus Code, CODE = High (VY)
88 ret = sa1111_pcmcia_configure_socket(skt, state);
90 ret = max1600_configure(m, state->Vcc, state->Vpp);
93 if (ret == 0 && state->Vcc == 33) {
94 struct pcmcia_state new_state;
98 * We can't sense the voltage properly on Lubbock before
99 * actually applying some power to the socket (catch 22).
100 * Resense the socket Voltage Sense pins after applying
103 * Note: It takes about 2.5ms for the MAX1602 VCC output
108 sa1111_pcmcia_socket_state(skt, &new_state);
110 if (!new_state.vs_3v && !new_state.vs_Xv) {
112 * Switch to 5V, Configure socket with 5V voltage
114 max1600_configure(m, 0, 0);
117 * It takes about 100ms to turn off Vcc.
122 * We need to hack around the const qualifier as
123 * well to keep this ugly workaround localized and
124 * not force it to the rest of the code. Barf bags
125 * available in the seat pocket in front of you!
127 ((socket_state_t *)state)->Vcc = 50;
128 ((socket_state_t *)state)->Vpp = 50;
137 static struct pcmcia_low_level lubbock_pcmcia_ops = {
138 .owner = THIS_MODULE,
139 .hw_init = lubbock_pcmcia_hw_init,
140 .configure_socket = lubbock_pcmcia_configure_socket,
145 #include "pxa2xx_base.h"
147 int pcmcia_lubbock_init(struct sa1111_dev *sadev)
149 pxa2xx_drv_pcmcia_ops(&lubbock_pcmcia_ops);
150 pxa2xx_configure_sockets(&sadev->dev, &lubbock_pcmcia_ops);
151 return sa1111_pcmcia_add(sadev, &lubbock_pcmcia_ops,
152 pxa2xx_drv_pcmcia_add_one);
155 MODULE_LICENSE("GPL");