1 // SPDX-License-Identifier: GPL-2.0-only
3 * PCMCIA socket code for the MyCable XXS1500 system.
5 * Copyright (c) 2009 Manuel Lauss <manuel.lauss@gmail.com>
9 #include <linux/delay.h>
10 #include <linux/gpio.h>
11 #include <linux/interrupt.h>
13 #include <linux/ioport.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
18 #include <linux/resource.h>
19 #include <linux/slab.h>
20 #include <linux/spinlock.h>
22 #include <pcmcia/ss.h>
23 #include <pcmcia/cistpl.h>
26 #include <asm/mach-au1x00/au1000.h>
28 #define MEM_MAP_SIZE 0x400000
29 #define IO_MAP_SIZE 0x1000
33 * 3.3V cards only; all interfacing is done via gpios:
35 * 0/1: carddetect (00 = card present, xx = huh)
37 * 204: reset (high-act)
38 * 205: buffer enable (low-act)
39 * 208/209: card voltage key (00,01,10,11)
42 * 214: power (low-act)
46 #define GPIO_CARDIRQ 4
47 #define GPIO_RESET 204
48 #define GPIO_OUTEN 205
51 #define GPIO_BATTDEAD 210
52 #define GPIO_BATTWARN 211
53 #define GPIO_POWER 214
55 struct xxs1500_pcmcia_sock
{
56 struct pcmcia_socket socket
;
60 phys_addr_t phys_attr
;
63 /* previous flags for set_socket() */
64 unsigned int old_flags
;
67 #define to_xxs_socket(x) container_of(x, struct xxs1500_pcmcia_sock, socket)
69 static irqreturn_t
cdirq(int irq
, void *data
)
71 struct xxs1500_pcmcia_sock
*sock
= data
;
73 pcmcia_parse_events(&sock
->socket
, SS_DETECT
);
78 static int xxs1500_pcmcia_configure(struct pcmcia_socket
*skt
,
79 struct socket_state_t
*state
)
81 struct xxs1500_pcmcia_sock
*sock
= to_xxs_socket(skt
);
87 gpio_set_value(GPIO_POWER
, 1); /* power off */
90 gpio_set_value(GPIO_POWER
, 0); /* power on */
97 changed
= state
->flags
^ sock
->old_flags
;
99 if (changed
& SS_RESET
) {
100 if (state
->flags
& SS_RESET
) {
101 gpio_set_value(GPIO_RESET
, 1); /* assert reset */
102 gpio_set_value(GPIO_OUTEN
, 1); /* buffers off */
104 gpio_set_value(GPIO_RESET
, 0); /* deassert reset */
105 gpio_set_value(GPIO_OUTEN
, 0); /* buffers on */
110 sock
->old_flags
= state
->flags
;
115 static int xxs1500_pcmcia_get_status(struct pcmcia_socket
*skt
,
123 /* check carddetects: GPIO[0:1] must both be low */
124 if (!gpio_get_value(GPIO_CDA
) && !gpio_get_value(GPIO_CDB
))
127 /* determine card voltage: GPIO[208:209] binary value */
128 i
= (!!gpio_get_value(GPIO_VSL
)) | ((!!gpio_get_value(GPIO_VSH
)) << 1);
134 status
|= SS_3VCARD
; /* 3V card */
136 case 3: /* 5V card, unsupported */
138 status
|= SS_XVCARD
; /* treated as unsupported in core */
141 /* GPIO214: low active power switch */
142 status
|= gpio_get_value(GPIO_POWER
) ? 0 : SS_POWERON
;
144 /* GPIO204: high-active reset line */
145 status
|= gpio_get_value(GPIO_RESET
) ? SS_RESET
: SS_READY
;
148 status
|= gpio_get_value(GPIO_BATTDEAD
) ? 0 : SS_BATDEAD
;
149 status
|= gpio_get_value(GPIO_BATTWARN
) ? 0 : SS_BATWARN
;
156 static int xxs1500_pcmcia_sock_init(struct pcmcia_socket
*skt
)
158 gpio_direction_input(GPIO_CDA
);
159 gpio_direction_input(GPIO_CDB
);
160 gpio_direction_input(GPIO_VSL
);
161 gpio_direction_input(GPIO_VSH
);
162 gpio_direction_input(GPIO_BATTDEAD
);
163 gpio_direction_input(GPIO_BATTWARN
);
164 gpio_direction_output(GPIO_RESET
, 1); /* assert reset */
165 gpio_direction_output(GPIO_OUTEN
, 1); /* disable buffers */
166 gpio_direction_output(GPIO_POWER
, 1); /* power off */
171 static int xxs1500_pcmcia_sock_suspend(struct pcmcia_socket
*skt
)
176 static int au1x00_pcmcia_set_io_map(struct pcmcia_socket
*skt
,
177 struct pccard_io_map
*map
)
179 struct xxs1500_pcmcia_sock
*sock
= to_xxs_socket(skt
);
181 map
->start
= (u32
)sock
->virt_io
;
182 map
->stop
= map
->start
+ IO_MAP_SIZE
;
187 static int au1x00_pcmcia_set_mem_map(struct pcmcia_socket
*skt
,
188 struct pccard_mem_map
*map
)
190 struct xxs1500_pcmcia_sock
*sock
= to_xxs_socket(skt
);
192 if (map
->flags
& MAP_ATTRIB
)
193 map
->static_start
= sock
->phys_attr
+ map
->card_start
;
195 map
->static_start
= sock
->phys_mem
+ map
->card_start
;
200 static struct pccard_operations xxs1500_pcmcia_operations
= {
201 .init
= xxs1500_pcmcia_sock_init
,
202 .suspend
= xxs1500_pcmcia_sock_suspend
,
203 .get_status
= xxs1500_pcmcia_get_status
,
204 .set_socket
= xxs1500_pcmcia_configure
,
205 .set_io_map
= au1x00_pcmcia_set_io_map
,
206 .set_mem_map
= au1x00_pcmcia_set_mem_map
,
209 static int xxs1500_pcmcia_probe(struct platform_device
*pdev
)
211 struct xxs1500_pcmcia_sock
*sock
;
215 sock
= kzalloc(sizeof(struct xxs1500_pcmcia_sock
), GFP_KERNEL
);
221 /* 36bit PCMCIA Attribute area address */
222 r
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "pcmcia-attr");
224 dev_err(&pdev
->dev
, "missing 'pcmcia-attr' resource!\n");
227 sock
->phys_attr
= r
->start
;
229 /* 36bit PCMCIA Memory area address */
230 r
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "pcmcia-mem");
232 dev_err(&pdev
->dev
, "missing 'pcmcia-mem' resource!\n");
235 sock
->phys_mem
= r
->start
;
237 /* 36bit PCMCIA IO area address */
238 r
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "pcmcia-io");
240 dev_err(&pdev
->dev
, "missing 'pcmcia-io' resource!\n");
243 sock
->phys_io
= r
->start
;
247 * PCMCIA client drivers use the inb/outb macros to access
248 * the IO registers. Since mips_io_port_base is added
249 * to the access address of the mips implementation of
250 * inb/outb, we need to subtract it here because we want
251 * to access the I/O or MEM address directly, without
252 * going through this "mips_io_port_base" mechanism.
254 sock
->virt_io
= (void *)(ioremap(sock
->phys_io
, IO_MAP_SIZE
) -
257 if (!sock
->virt_io
) {
258 dev_err(&pdev
->dev
, "cannot remap IO area\n");
263 sock
->socket
.ops
= &xxs1500_pcmcia_operations
;
264 sock
->socket
.owner
= THIS_MODULE
;
265 sock
->socket
.pci_irq
= gpio_to_irq(GPIO_CARDIRQ
);
266 sock
->socket
.features
= SS_CAP_STATIC_MAP
| SS_CAP_PCCARD
;
267 sock
->socket
.map_size
= MEM_MAP_SIZE
;
268 sock
->socket
.io_offset
= (unsigned long)sock
->virt_io
;
269 sock
->socket
.dev
.parent
= &pdev
->dev
;
270 sock
->socket
.resource_ops
= &pccard_static_ops
;
272 platform_set_drvdata(pdev
, sock
);
274 /* setup carddetect irq: use one of the 2 GPIOs as an
277 irq
= gpio_to_irq(GPIO_CDA
);
278 irq_set_irq_type(irq
, IRQ_TYPE_EDGE_BOTH
);
279 ret
= request_irq(irq
, cdirq
, 0, "pcmcia_carddetect", sock
);
281 dev_err(&pdev
->dev
, "cannot setup cd irq\n");
285 ret
= pcmcia_register_socket(&sock
->socket
);
287 dev_err(&pdev
->dev
, "failed to register\n");
291 printk(KERN_INFO
"MyCable XXS1500 PCMCIA socket services\n");
296 free_irq(gpio_to_irq(GPIO_CDA
), sock
);
298 iounmap((void *)(sock
->virt_io
+ (u32
)mips_io_port_base
));
304 static int xxs1500_pcmcia_remove(struct platform_device
*pdev
)
306 struct xxs1500_pcmcia_sock
*sock
= platform_get_drvdata(pdev
);
308 pcmcia_unregister_socket(&sock
->socket
);
309 free_irq(gpio_to_irq(GPIO_CDA
), sock
);
310 iounmap((void *)(sock
->virt_io
+ (u32
)mips_io_port_base
));
316 static struct platform_driver xxs1500_pcmcia_socket_driver
= {
318 .name
= "xxs1500_pcmcia",
320 .probe
= xxs1500_pcmcia_probe
,
321 .remove
= xxs1500_pcmcia_remove
,
324 module_platform_driver(xxs1500_pcmcia_socket_driver
);
326 MODULE_LICENSE("GPL");
327 MODULE_DESCRIPTION("PCMCIA Socket Services for MyCable XXS1500 systems");
328 MODULE_AUTHOR("Manuel Lauss");