2 * drivers/pcmcia/m32r_cfc.c
4 * Device driver for the CFC functionality of M32R.
6 * Copyright (c) 2001, 2002, 2003, 2004
7 * Hiroyuki Kondo, Naoto Sugai, Hayato Fujiwara
10 #include <linux/module.h>
11 #include <linux/moduleparam.h>
12 #include <linux/init.h>
13 #include <linux/types.h>
14 #include <linux/fcntl.h>
15 #include <linux/string.h>
16 #include <linux/kernel.h>
17 #include <linux/errno.h>
18 #include <linux/timer.h>
19 #include <linux/sched.h>
20 #include <linux/slab.h>
21 #include <linux/ioport.h>
22 #include <linux/delay.h>
23 #include <linux/workqueue.h>
24 #include <linux/interrupt.h>
25 #include <linux/platform_device.h>
26 #include <linux/bitops.h>
29 #include <asm/system.h>
31 #include <pcmcia/cs_types.h>
32 #include <pcmcia/ss.h>
33 #include <pcmcia/cs.h>
35 #undef MAX_IO_WIN /* FIXME */
37 #undef MAX_WIN /* FIXME */
43 static int m32r_cfc_debug;
44 module_param(m32r_cfc_debug, int, 0644);
45 #define debug(lvl, fmt, arg...) do { \
46 if (m32r_cfc_debug > (lvl)) \
47 printk(KERN_DEBUG "m32r_cfc: " fmt , ## arg); \
50 #define debug(n, args...) do { } while (0)
53 /* Poll status interval -- 0 means default to interrupt */
54 static int poll_interval = 0;
56 typedef enum pcc_space { as_none = 0, as_comm, as_attr, as_io } pcc_as_t;
58 typedef struct pcc_socket {
60 struct pcmcia_socket socket;
64 u_long base; /* PCC register base */
65 u_char cs_irq1, cs_irq2, intr;
66 pccard_io_map io_map[MAX_IO_WIN];
67 pccard_mem_map mem_map[MAX_WIN];
70 pcc_as_t current_space;
73 struct proc_dir_entry *proc;
77 static int pcc_sockets = 0;
78 static pcc_socket_t socket[M32R_MAX_PCC] = {
82 /*====================================================================*/
84 static unsigned int pcc_get(u_short, unsigned int);
85 static void pcc_set(u_short, unsigned int , unsigned int );
87 static DEFINE_SPINLOCK(pcc_lock);
89 #if !defined(CONFIG_PLAT_USRV)
90 static inline u_long pcc_port2addr(unsigned long port, int size) {
94 if (size == 1) { /* byte access */
97 addr = CFC_IO_MAPBASE_BYTE - CFC_IOPORT_BASE + odd + port;
99 addr = CFC_IO_MAPBASE_WORD - CFC_IOPORT_BASE + port;
103 #else /* CONFIG_PLAT_USRV */
104 static inline u_long pcc_port2addr(unsigned long port, int size) {
106 u_long addr = ((port - CFC_IOPORT_BASE) & 0xf000) << 8;
108 if (size == 1) { /* byte access */
112 addr = (addr | CFC_IO_MAPBASE_BYTE) + odd + (port & 0xfff);
113 } else if (size == 2) /* word access */
114 addr = (addr | CFC_IO_MAPBASE_WORD) + (port & 0xfff);
118 #endif /* CONFIG_PLAT_USRV */
120 void pcc_ioread_byte(int sock, unsigned long port, void *buf, size_t size,
121 size_t nmemb, int flag)
124 unsigned char *bp = (unsigned char *)buf;
127 debug(3, "m32r_cfc: pcc_ioread_byte: sock=%d, port=%#lx, buf=%p, "
128 "size=%u, nmemb=%d, flag=%d\n",
129 sock, port, buf, size, nmemb, flag);
131 addr = pcc_port2addr(port, 1);
133 printk("m32r_cfc:ioread_byte null port :%#lx\n",port);
136 debug(3, "m32r_cfc: pcc_ioread_byte: addr=%#lx\n", addr);
138 spin_lock_irqsave(&pcc_lock, flags);
142 spin_unlock_irqrestore(&pcc_lock, flags);
145 void pcc_ioread_word(int sock, unsigned long port, void *buf, size_t size,
146 size_t nmemb, int flag)
149 unsigned short *bp = (unsigned short *)buf;
152 debug(3, "m32r_cfc: pcc_ioread_word: sock=%d, port=%#lx, "
153 "buf=%p, size=%u, nmemb=%d, flag=%d\n",
154 sock, port, buf, size, nmemb, flag);
157 printk("m32r_cfc: ioread_word :illigal size %u : %#lx\n", size,
160 printk("m32r_cfc: ioread_word :insw \n");
162 addr = pcc_port2addr(port, 2);
164 printk("m32r_cfc:ioread_word null port :%#lx\n",port);
167 debug(3, "m32r_cfc: pcc_ioread_word: addr=%#lx\n", addr);
169 spin_lock_irqsave(&pcc_lock, flags);
173 spin_unlock_irqrestore(&pcc_lock, flags);
176 void pcc_iowrite_byte(int sock, unsigned long port, void *buf, size_t size,
177 size_t nmemb, int flag)
180 unsigned char *bp = (unsigned char *)buf;
183 debug(3, "m32r_cfc: pcc_iowrite_byte: sock=%d, port=%#lx, "
184 "buf=%p, size=%u, nmemb=%d, flag=%d\n",
185 sock, port, buf, size, nmemb, flag);
188 addr = pcc_port2addr(port, 1);
190 printk("m32r_cfc:iowrite_byte null port:%#lx\n",port);
193 debug(3, "m32r_cfc: pcc_iowrite_byte: addr=%#lx\n", addr);
195 spin_lock_irqsave(&pcc_lock, flags);
198 spin_unlock_irqrestore(&pcc_lock, flags);
201 void pcc_iowrite_word(int sock, unsigned long port, void *buf, size_t size,
202 size_t nmemb, int flag)
205 unsigned short *bp = (unsigned short *)buf;
208 debug(3, "m32r_cfc: pcc_iowrite_word: sock=%d, port=%#lx, "
209 "buf=%p, size=%u, nmemb=%d, flag=%d\n",
210 sock, port, buf, size, nmemb, flag);
213 printk("m32r_cfc: iowrite_word :illigal size %u : %#lx\n",
216 printk("m32r_cfc: iowrite_word :outsw \n");
218 addr = pcc_port2addr(port, 2);
220 printk("m32r_cfc:iowrite_word null addr :%#lx\n",port);
225 printk("m32r_cfc:iowrite_word port addr (%#lx):%#lx\n", port,
230 debug(3, "m32r_cfc: pcc_iowrite_word: addr=%#lx\n", addr);
232 spin_lock_irqsave(&pcc_lock, flags);
235 spin_unlock_irqrestore(&pcc_lock, flags);
238 /*====================================================================*/
240 #define IS_REGISTERED 0x2000
241 #define IS_ALIVE 0x8000
243 typedef struct pcc_t {
248 static pcc_t pcc[] = {
249 #if !defined(CONFIG_PLAT_USRV)
250 { "m32r_cfc", 0 }, { "", 0 },
251 #else /* CONFIG_PLAT_USRV */
252 { "m32r_cfc", 0 }, { "m32r_cfc", 0 }, { "m32r_cfc", 0 },
253 { "m32r_cfc", 0 }, { "m32r_cfc", 0 }, { "", 0 },
254 #endif /* CONFIG_PLAT_USRV */
257 static irqreturn_t pcc_interrupt(int, void *, struct pt_regs *);
259 /*====================================================================*/
261 static struct timer_list poll_timer;
263 static unsigned int pcc_get(u_short sock, unsigned int reg)
265 unsigned int val = inw(reg);
266 debug(3, "m32r_cfc: pcc_get: reg(0x%08x)=0x%04x\n", reg, val);
271 static void pcc_set(u_short sock, unsigned int reg, unsigned int data)
274 debug(3, "m32r_cfc: pcc_set: reg(0x%08x)=0x%04x\n", reg, data);
277 /*======================================================================
279 See if a card is present, powered up, in IO mode, and already
280 bound to a (non PC Card) Linux driver. We leave these alone.
282 We make an exception for cards that seem to be serial devices.
284 ======================================================================*/
286 static int __init is_alive(u_short sock)
290 debug(3, "m32r_cfc: is_alive:\n");
293 stat = pcc_get(sock, (unsigned int)PLD_CFSTS);
296 printk("Card is detected at socket %d : stat = 0x%08x\n", sock, stat);
297 debug(3, "m32r_cfc: is_alive: sock stat is 0x%04x\n", stat);
302 static void add_pcc_socket(ulong base, int irq, ulong mapaddr, kio_addr_t ioaddr)
304 pcc_socket_t *t = &socket[pcc_sockets];
306 debug(3, "m32r_cfc: add_pcc_socket: base=%#lx, irq=%d, "
307 "mapaddr=%#lx, ioaddr=%08x\n",
308 base, irq, mapaddr, ioaddr);
312 t->mapaddr = mapaddr;
313 #if !defined(CONFIG_PLAT_USRV)
316 t->cs_irq1 = irq; // insert irq
317 t->cs_irq2 = irq + 1; // eject irq
318 #else /* CONFIG_PLAT_USRV */
321 t->cs_irq1 = 0; // insert irq
322 t->cs_irq2 = 0; // eject irq
323 #endif /* CONFIG_PLAT_USRV */
325 if (is_alive(pcc_sockets))
326 t->flags |= IS_ALIVE;
329 #if !defined(CONFIG_PLAT_USRV)
330 request_region((unsigned int)PLD_CFRSTCR, 0x20, "m32r_cfc");
331 #else /* CONFIG_PLAT_USRV */
333 unsigned int reg_base;
335 reg_base = (unsigned int)PLD_CFRSTCR;
336 reg_base |= pcc_sockets << 8;
337 request_region(reg_base, 0x20, "m32r_cfc");
339 #endif /* CONFIG_PLAT_USRV */
340 printk(KERN_INFO " %s ", pcc[pcc_sockets].name);
341 printk("pcc at 0x%08lx\n", t->base);
343 /* Update socket interrupt information, capabilities */
344 t->socket.features |= (SS_CAP_PCCARD | SS_CAP_STATIC_MAP);
345 t->socket.map_size = M32R_PCC_MAPSIZE;
346 t->socket.io_offset = ioaddr; /* use for io access offset */
347 t->socket.irq_mask = 0;
348 #if !defined(CONFIG_PLAT_USRV)
349 t->socket.pci_irq = PLD_IRQ_CFIREQ ; /* card interrupt */
350 #else /* CONFIG_PLAT_USRV */
351 t->socket.pci_irq = PLD_IRQ_CF0 + pcc_sockets;
352 #endif /* CONFIG_PLAT_USRV */
354 #ifndef CONFIG_PLAT_USRV
355 /* insert interrupt */
356 request_irq(irq, pcc_interrupt, 0, "m32r_cfc", pcc_interrupt);
357 #ifndef CONFIG_PLAT_MAPPI3
358 /* eject interrupt */
359 request_irq(irq+1, pcc_interrupt, 0, "m32r_cfc", pcc_interrupt);
361 debug(3, "m32r_cfc: enable CFMSK, RDYSEL\n");
362 pcc_set(pcc_sockets, (unsigned int)PLD_CFIMASK, 0x01);
363 #endif /* CONFIG_PLAT_USRV */
364 #if defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_USRV) || defined(CONFIG_PLAT_OPSPUT)
365 pcc_set(pcc_sockets, (unsigned int)PLD_CFCR1, 0x0200);
373 /*====================================================================*/
375 static irqreturn_t pcc_interrupt(int irq, void *dev, struct pt_regs *regs)
381 debug(3, "m32r_cfc: pcc_interrupt: irq=%d, dev=%p, regs=%p\n",
383 for (i = 0; i < pcc_sockets; i++) {
384 if (socket[i].cs_irq1 != irq && socket[i].cs_irq2 != irq)
388 debug(3, "m32r_cfc: pcc_interrupt: socket %d irq 0x%02x ",
390 events |= SS_DETECT; /* insert or eject */
392 pcmcia_parse_events(&socket[i].socket, events);
394 debug(3, "m32r_cfc: pcc_interrupt: done\n");
396 return IRQ_RETVAL(handled);
397 } /* pcc_interrupt */
399 static void pcc_interrupt_wrapper(u_long data)
401 debug(3, "m32r_cfc: pcc_interrupt_wrapper:\n");
402 pcc_interrupt(0, NULL, NULL);
403 init_timer(&poll_timer);
404 poll_timer.expires = jiffies + poll_interval;
405 add_timer(&poll_timer);
408 /*====================================================================*/
410 static int _pcc_get_status(u_short sock, u_int *value)
414 debug(3, "m32r_cfc: _pcc_get_status:\n");
415 status = pcc_get(sock, (unsigned int)PLD_CFSTS);
416 *value = (status) ? SS_DETECT : 0;
417 debug(3, "m32r_cfc: _pcc_get_status: status=0x%08x\n", status);
419 #if defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_USRV) || defined(CONFIG_PLAT_OPSPUT)
421 /* enable CF power */
422 status = inw((unsigned int)PLD_CPCR);
423 if (!(status & PLD_CPCR_CF)) {
424 debug(3, "m32r_cfc: _pcc_get_status: "
425 "power on (CPCR=0x%08x)\n", status);
426 status |= PLD_CPCR_CF;
427 outw(status, (unsigned int)PLD_CPCR);
430 *value |= SS_POWERON;
432 pcc_set(sock, (unsigned int)PLD_CFBUFCR,0);/* enable buffer */
435 *value |= SS_READY; /* always ready */
438 /* disable CF power */
439 status = inw((unsigned int)PLD_CPCR);
440 status &= ~PLD_CPCR_CF;
441 outw(status, (unsigned int)PLD_CPCR);
443 debug(3, "m32r_cfc: _pcc_get_status: "
444 "power off (CPCR=0x%08x)\n", status);
446 #elif defined(CONFIG_PLAT_MAPPI2) || defined(CONFIG_PLAT_MAPPI3)
448 status = pcc_get(sock, (unsigned int)PLD_CPCR);
449 if (status == 0) { /* power off */
450 pcc_set(sock, (unsigned int)PLD_CPCR, 1);
451 pcc_set(sock, (unsigned int)PLD_CFBUFCR,0); /* force buffer off for ZA-36 */
454 *value |= SS_POWERON;
456 pcc_set(sock, (unsigned int)PLD_CFBUFCR,0);
458 pcc_set(sock, (unsigned int)PLD_CFRSTCR, 0x0101);
459 udelay(25); /* for IDE reset */
460 pcc_set(sock, (unsigned int)PLD_CFRSTCR, 0x0100);
461 mdelay(2); /* for IDE reset */
466 /* disable CF power */
467 pcc_set(sock, (unsigned int)PLD_CPCR, 0);
469 debug(3, "m32r_cfc: _pcc_get_status: "
470 "power off (CPCR=0x%08x)\n", status);
473 #error no platform configuration
475 debug(3, "m32r_cfc: _pcc_get_status: GetStatus(%d) = %#4.4x\n",
480 /*====================================================================*/
482 static int _pcc_set_socket(u_short sock, socket_state_t *state)
484 debug(3, "m32r_cfc: SetSocket(%d, flags %#3.3x, Vcc %d, Vpp %d, "
485 "io_irq %d, csc_mask %#2.2x)\n", sock, state->flags,
486 state->Vcc, state->Vpp, state->io_irq, state->csc_mask);
488 #if defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_USRV) || defined(CONFIG_PLAT_OPSPUT) || defined(CONFIG_PLAT_MAPPI2) || defined(CONFIG_PLAT_MAPPI3)
490 if ((state->Vcc != 50) && (state->Vcc != 33))
492 /* accept 5V and 3.3V */
495 if (state->flags & SS_RESET) {
496 debug(3, ":RESET\n");
497 pcc_set(sock,(unsigned int)PLD_CFRSTCR,0x101);
499 pcc_set(sock,(unsigned int)PLD_CFRSTCR,0x100);
501 if (state->flags & SS_OUTPUT_ENA){
502 debug(3, ":OUTPUT_ENA\n");
504 pcc_set(sock,(unsigned int)PLD_CFBUFCR,0);
506 pcc_set(sock,(unsigned int)PLD_CFBUFCR,1);
510 if(state->flags & SS_IOCARD){
513 if (state->flags & SS_PWR_AUTO) {
514 debug(3, ":PWR_AUTO");
516 if (state->csc_mask & SS_DETECT)
517 debug(3, ":csc-SS_DETECT");
518 if (state->flags & SS_IOCARD) {
519 if (state->csc_mask & SS_STSCHG)
522 if (state->csc_mask & SS_BATDEAD)
523 debug(3, ":BATDEAD");
524 if (state->csc_mask & SS_BATWARN)
525 debug(3, ":BATWARN");
526 if (state->csc_mask & SS_READY)
534 /*====================================================================*/
536 static int _pcc_set_io_map(u_short sock, struct pccard_io_map *io)
540 debug(3, "m32r_cfc: SetIOMap(%d, %d, %#2.2x, %d ns, "
541 "%#lx-%#lx)\n", sock, io->map, io->flags,
542 io->speed, io->start, io->stop);
548 /*====================================================================*/
550 static int _pcc_set_mem_map(u_short sock, struct pccard_mem_map *mem)
553 u_char map = mem->map;
555 pcc_socket_t *t = &socket[sock];
557 debug(3, "m32r_cfc: SetMemMap(%d, %d, %#2.2x, %d ns, "
558 "%#lx, %#x)\n", sock, map, mem->flags,
559 mem->speed, mem->static_start, mem->card_start);
564 if ((map > MAX_WIN) || (mem->card_start > 0x3ffffff)){
571 if ((mem->flags & MAP_ACTIVE) == 0) {
572 t->current_space = as_none;
579 if (mem->flags & MAP_ATTRIB) {
580 t->current_space = as_attr;
582 t->current_space = as_comm;
588 addr = t->mapaddr + (mem->card_start & M32R_PCC_MAPMASK);
589 mem->static_start = addr + mem->card_start;
595 #if 0 /* driver model ordering issue */
596 /*======================================================================
598 Routines for accessing socket information and register dumps via
601 ======================================================================*/
603 static ssize_t show_info(struct class_device *class_dev, char *buf)
605 pcc_socket_t *s = container_of(class_dev, struct pcc_socket,
608 return sprintf(buf, "type: %s\nbase addr: 0x%08lx\n",
609 pcc[s->type].name, s->base);
612 static ssize_t show_exca(struct class_device *class_dev, char *buf)
619 static CLASS_DEVICE_ATTR(info, S_IRUGO, show_info, NULL);
620 static CLASS_DEVICE_ATTR(exca, S_IRUGO, show_exca, NULL);
623 /*====================================================================*/
625 /* this is horribly ugly... proper locking needs to be done here at
627 #define LOCKED(x) do { \
629 unsigned long flags; \
630 spin_lock_irqsave(&pcc_lock, flags); \
632 spin_unlock_irqrestore(&pcc_lock, flags); \
637 static int pcc_get_status(struct pcmcia_socket *s, u_int *value)
639 unsigned int sock = container_of(s, struct pcc_socket, socket)->number;
641 if (socket[sock].flags & IS_ALIVE) {
642 debug(3, "m32r_cfc: pcc_get_status: sock(%d) -EINVAL\n", sock);
646 debug(3, "m32r_cfc: pcc_get_status: sock(%d)\n", sock);
647 LOCKED(_pcc_get_status(sock, value));
650 static int pcc_set_socket(struct pcmcia_socket *s, socket_state_t *state)
652 unsigned int sock = container_of(s, struct pcc_socket, socket)->number;
654 if (socket[sock].flags & IS_ALIVE) {
655 debug(3, "m32r_cfc: pcc_set_socket: sock(%d) -EINVAL\n", sock);
658 debug(3, "m32r_cfc: pcc_set_socket: sock(%d)\n", sock);
659 LOCKED(_pcc_set_socket(sock, state));
662 static int pcc_set_io_map(struct pcmcia_socket *s, struct pccard_io_map *io)
664 unsigned int sock = container_of(s, struct pcc_socket, socket)->number;
666 if (socket[sock].flags & IS_ALIVE) {
667 debug(3, "m32r_cfc: pcc_set_io_map: sock(%d) -EINVAL\n", sock);
670 debug(3, "m32r_cfc: pcc_set_io_map: sock(%d)\n", sock);
671 LOCKED(_pcc_set_io_map(sock, io));
674 static int pcc_set_mem_map(struct pcmcia_socket *s, struct pccard_mem_map *mem)
676 unsigned int sock = container_of(s, struct pcc_socket, socket)->number;
678 if (socket[sock].flags & IS_ALIVE) {
679 debug(3, "m32r_cfc: pcc_set_mem_map: sock(%d) -EINVAL\n", sock);
682 debug(3, "m32r_cfc: pcc_set_mem_map: sock(%d)\n", sock);
683 LOCKED(_pcc_set_mem_map(sock, mem));
686 static int pcc_init(struct pcmcia_socket *s)
688 debug(3, "m32r_cfc: pcc_init()\n");
692 static struct pccard_operations pcc_operations = {
694 .get_status = pcc_get_status,
695 .set_socket = pcc_set_socket,
696 .set_io_map = pcc_set_io_map,
697 .set_mem_map = pcc_set_mem_map,
700 /*====================================================================*/
702 static struct device_driver pcc_driver = {
704 .bus = &platform_bus_type,
705 .suspend = pcmcia_socket_dev_suspend,
706 .resume = pcmcia_socket_dev_resume,
709 static struct platform_device pcc_device = {
714 /*====================================================================*/
716 static int __init init_m32r_pcc(void)
720 ret = driver_register(&pcc_driver);
724 ret = platform_device_register(&pcc_device);
726 driver_unregister(&pcc_driver);
730 #if defined(CONFIG_PLAT_MAPPI2) || defined(CONFIG_PLAT_MAPPI3)
731 pcc_set(0, (unsigned int)PLD_CFCR0, 0x0f0f);
732 pcc_set(0, (unsigned int)PLD_CFCR1, 0x0200);
737 #if !defined(CONFIG_PLAT_USRV)
738 add_pcc_socket(M32R_PCC0_BASE, PLD_IRQ_CFC_INSERT, CFC_ATTR_MAPBASE,
740 #else /* CONFIG_PLAT_USRV */
745 for (i = 0 ; i < M32R_MAX_PCC ; i++) {
746 base = (ulong)PLD_CFRSTCR;
747 base = base | (i << 8);
748 ioaddr = (i + 1) << 12;
749 mapaddr = CFC_ATTR_MAPBASE | (i << 20);
750 add_pcc_socket(base, 0, mapaddr, ioaddr);
753 #endif /* CONFIG_PLAT_USRV */
755 if (pcc_sockets == 0) {
756 printk("socket is not found.\n");
757 platform_device_unregister(&pcc_device);
758 driver_unregister(&pcc_driver);
762 /* Set up interrupt handler(s) */
764 for (i = 0 ; i < pcc_sockets ; i++) {
765 socket[i].socket.dev.dev = &pcc_device.dev;
766 socket[i].socket.ops = &pcc_operations;
767 socket[i].socket.resource_ops = &pccard_nonstatic_ops;
768 socket[i].socket.owner = THIS_MODULE;
769 socket[i].number = i;
770 ret = pcmcia_register_socket(&socket[i].socket);
772 socket[i].flags |= IS_REGISTERED;
774 #if 0 /* driver model ordering issue */
775 class_device_create_file(&socket[i].socket.dev,
776 &class_device_attr_info);
777 class_device_create_file(&socket[i].socket.dev,
778 &class_device_attr_exca);
782 /* Finally, schedule a polling interrupt */
783 if (poll_interval != 0) {
784 poll_timer.function = pcc_interrupt_wrapper;
786 init_timer(&poll_timer);
787 poll_timer.expires = jiffies + poll_interval;
788 add_timer(&poll_timer);
792 } /* init_m32r_pcc */
794 static void __exit exit_m32r_pcc(void)
798 for (i = 0; i < pcc_sockets; i++)
799 if (socket[i].flags & IS_REGISTERED)
800 pcmcia_unregister_socket(&socket[i].socket);
802 platform_device_unregister(&pcc_device);
803 if (poll_interval != 0)
804 del_timer_sync(&poll_timer);
806 driver_unregister(&pcc_driver);
807 } /* exit_m32r_pcc */
809 module_init(init_m32r_pcc);
810 module_exit(exit_m32r_pcc);
811 MODULE_LICENSE("Dual MPL/GPL");
812 /*====================================================================*/