1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for Intel I82092AA PCI-PCMCIA bridge.
5 * (C) 2001 Red Hat, Inc.
7 * Author: Arjan Van De Ven <arjanv@redhat.com>
8 * Loosly based on i82365.c from the pcmcia-cs package
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/pci.h>
14 #include <linux/init.h>
15 #include <linux/workqueue.h>
16 #include <linux/interrupt.h>
17 #include <linux/device.h>
19 #include <pcmcia/ss.h>
26 MODULE_LICENSE("GPL");
28 /* PCI core routines */
29 static const struct pci_device_id i82092aa_pci_ids[] = {
30 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82092AA_0) },
33 MODULE_DEVICE_TABLE(pci, i82092aa_pci_ids);
35 static struct pci_driver i82092aa_pci_driver = {
37 .id_table = i82092aa_pci_ids,
38 .probe = i82092aa_pci_probe,
39 .remove = i82092aa_pci_remove,
43 /* the pccard structure and its functions */
44 static struct pccard_operations i82092aa_operations = {
45 .init = i82092aa_init,
46 .get_status = i82092aa_get_status,
47 .set_socket = i82092aa_set_socket,
48 .set_io_map = i82092aa_set_io_map,
49 .set_mem_map = i82092aa_set_mem_map,
52 /* The card can do up to 4 sockets, allocate a structure for each of them */
59 * 2 = card but not initialized,
60 * 3 = operational card
62 unsigned int io_base; /* base io address of the socket */
64 struct pcmcia_socket socket;
65 struct pci_dev *dev; /* The PCI device for the socket */
69 static struct socket_info sockets[MAX_SOCKETS];
70 static int socket_count; /* shortcut */
73 static int i82092aa_pci_probe(struct pci_dev *dev,
74 const struct pci_device_id *id)
76 unsigned char configbyte;
79 ret = pci_enable_device(dev);
83 /* PCI Configuration Control */
84 pci_read_config_byte(dev, 0x40, &configbyte);
86 switch (configbyte&6) {
100 "Oops, you did something we didn't think of.\n");
102 goto err_out_disable;
104 dev_info(&dev->dev, "configured as a %d socket device.\n",
107 if (!request_region(pci_resource_start(dev, 0), 2, "i82092aa")) {
109 goto err_out_disable;
112 for (i = 0; i < socket_count; i++) {
113 sockets[i].card_state = 1; /* 1 = present but empty */
114 sockets[i].io_base = pci_resource_start(dev, 0);
115 sockets[i].dev = dev;
116 sockets[i].socket.features |= SS_CAP_PCCARD;
117 sockets[i].socket.map_size = 0x1000;
118 sockets[i].socket.irq_mask = 0;
119 sockets[i].socket.pci_irq = dev->irq;
120 sockets[i].socket.cb_dev = dev;
121 sockets[i].socket.owner = THIS_MODULE;
123 sockets[i].number = i;
125 if (card_present(i)) {
126 sockets[i].card_state = 3;
127 dev_dbg(&dev->dev, "slot %i is occupied\n", i);
129 dev_dbg(&dev->dev, "slot %i is vacant\n", i);
133 /* Now, specifiy that all interrupts are to be done as PCI interrupts
134 * bitmask, one bit per event, 1 = PCI interrupt, 0 = ISA interrupt
138 /* PCI Interrupt Routing Register */
139 pci_write_config_byte(dev, 0x50, configbyte);
141 /* Register the interrupt handler */
142 dev_dbg(&dev->dev, "Requesting interrupt %i\n", dev->irq);
143 ret = request_irq(dev->irq, i82092aa_interrupt, IRQF_SHARED,
144 "i82092aa", i82092aa_interrupt);
146 dev_err(&dev->dev, "Failed to register IRQ %d, aborting\n",
148 goto err_out_free_res;
151 for (i = 0; i < socket_count; i++) {
152 sockets[i].socket.dev.parent = &dev->dev;
153 sockets[i].socket.ops = &i82092aa_operations;
154 sockets[i].socket.resource_ops = &pccard_nonstatic_ops;
155 ret = pcmcia_register_socket(&sockets[i].socket);
157 goto err_out_free_sockets;
162 err_out_free_sockets:
164 for (i--; i >= 0; i--)
165 pcmcia_unregister_socket(&sockets[i].socket);
167 free_irq(dev->irq, i82092aa_interrupt);
169 release_region(pci_resource_start(dev, 0), 2);
171 pci_disable_device(dev);
175 static void i82092aa_pci_remove(struct pci_dev *dev)
179 free_irq(dev->irq, i82092aa_interrupt);
181 for (i = 0; i < socket_count; i++)
182 pcmcia_unregister_socket(&sockets[i].socket);
185 static DEFINE_SPINLOCK(port_lock);
187 /* basic value read/write functions */
189 static unsigned char indirect_read(int socket, unsigned short reg)
191 unsigned short int port;
195 spin_lock_irqsave(&port_lock, flags);
196 reg += socket * 0x40;
197 port = sockets[socket].io_base;
200 spin_unlock_irqrestore(&port_lock, flags);
204 static void indirect_write(int socket, unsigned short reg, unsigned char value)
206 unsigned short int port;
209 spin_lock_irqsave(&port_lock, flags);
210 reg = reg + socket * 0x40;
211 port = sockets[socket].io_base;
214 spin_unlock_irqrestore(&port_lock, flags);
217 static void indirect_setbit(int socket, unsigned short reg, unsigned char mask)
219 unsigned short int port;
223 spin_lock_irqsave(&port_lock, flags);
224 reg = reg + socket * 0x40;
225 port = sockets[socket].io_base;
231 spin_unlock_irqrestore(&port_lock, flags);
235 static void indirect_resetbit(int socket,
236 unsigned short reg, unsigned char mask)
238 unsigned short int port;
242 spin_lock_irqsave(&port_lock, flags);
243 reg = reg + socket * 0x40;
244 port = sockets[socket].io_base;
250 spin_unlock_irqrestore(&port_lock, flags);
253 static void indirect_write16(int socket,
254 unsigned short reg, unsigned short value)
256 unsigned short int port;
260 spin_lock_irqsave(&port_lock, flags);
261 reg = reg + socket * 0x40;
262 port = sockets[socket].io_base;
273 spin_unlock_irqrestore(&port_lock, flags);
276 /* simple helper functions */
277 /* External clock time, in nanoseconds. 120 ns = 8.33 MHz */
278 static int cycle_time = 120;
280 static int to_cycles(int ns)
283 return ns/cycle_time;
289 /* Interrupt handler functionality */
291 static irqreturn_t i82092aa_interrupt(int irq, void *dev)
297 unsigned int events, active = 0;
301 if (loopcount > 20) {
302 pr_err("i82092aa: infinite eventloop in interrupt\n");
308 for (i = 0; i < socket_count; i++) {
311 /* Inactive socket, should not happen */
312 if (sockets[i].card_state == 0)
315 /* card status change register */
316 csc = indirect_read(i, I365_CSC);
318 if (csc == 0) /* no events on this socket */
323 if (csc & I365_CSC_DETECT) {
325 dev_info(&sockets[i].dev->dev,
326 "Card detected in socket %i!\n", i);
329 if (indirect_read(i, I365_INTCTL) & I365_PC_IOCARD) {
330 /* For IO/CARDS, bit 0 means "read the card" */
331 if (csc & I365_CSC_STSCHG)
334 /* Check for battery/ready events */
335 if (csc & I365_CSC_BVD1)
336 events |= SS_BATDEAD;
337 if (csc & I365_CSC_BVD2)
338 events |= SS_BATWARN;
339 if (csc & I365_CSC_READY)
344 pcmcia_parse_events(&sockets[i].socket, events);
348 if (active == 0) /* no more events to handle */
351 return IRQ_RETVAL(handled);
356 /* socket functions */
358 static int card_present(int socketno)
362 if ((socketno < 0) || (socketno >= MAX_SOCKETS))
364 if (sockets[socketno].io_base == 0)
368 val = indirect_read(socketno, 1); /* Interface status register */
375 static void set_bridge_state(int sock)
377 indirect_write(sock, I365_GBLCTL, 0x00);
378 indirect_write(sock, I365_GENCTL, 0x00);
380 indirect_setbit(sock, I365_INTCTL, 0x08);
384 static int i82092aa_init(struct pcmcia_socket *sock)
387 struct resource res = { .start = 0, .end = 0x0fff };
388 pccard_io_map io = { 0, 0, 0, 0, 1 };
389 pccard_mem_map mem = { .res = &res, };
391 for (i = 0; i < 2; i++) {
393 i82092aa_set_io_map(sock, &io);
395 for (i = 0; i < 5; i++) {
397 i82092aa_set_mem_map(sock, &mem);
403 static int i82092aa_get_status(struct pcmcia_socket *socket, u_int *value)
405 unsigned int sock = container_of(socket,
406 struct socket_info, socket)->number;
409 /* Interface Status Register */
410 status = indirect_read(sock, I365_STATUS);
414 if ((status & I365_CS_DETECT) == I365_CS_DETECT)
417 /* IO cards have a different meaning of bits 0,1 */
418 /* Also notice the inverse-logic on the bits */
419 if (indirect_read(sock, I365_INTCTL) & I365_PC_IOCARD) {
421 if (!(status & I365_CS_STSCHG))
423 } else { /* non I/O card */
424 if (!(status & I365_CS_BVD1))
425 *value |= SS_BATDEAD;
426 if (!(status & I365_CS_BVD2))
427 *value |= SS_BATWARN;
430 if (status & I365_CS_WRPROT)
431 (*value) |= SS_WRPROT; /* card is write protected */
433 if (status & I365_CS_READY)
434 (*value) |= SS_READY; /* card is not busy */
436 if (status & I365_CS_POWERON)
437 (*value) |= SS_POWERON; /* power is applied to the card */
443 static int i82092aa_set_socket(struct pcmcia_socket *socket,
444 socket_state_t *state)
446 struct socket_info *sock_info = container_of(socket, struct socket_info,
448 unsigned int sock = sock_info->number;
451 /* First, set the global controller options */
453 set_bridge_state(sock);
455 /* Values for the IGENC register */
459 /* The reset bit has "inverse" logic */
460 if (!(state->flags & SS_RESET))
461 reg = reg | I365_PC_RESET;
462 if (state->flags & SS_IOCARD)
463 reg = reg | I365_PC_IOCARD;
465 /* IGENC, Interrupt and General Control Register */
466 indirect_write(sock, I365_INTCTL, reg);
468 /* Power registers */
470 reg = I365_PWR_NORESET; /* default: disable resetdrv on resume */
472 if (state->flags & SS_PWR_AUTO) {
473 dev_info(&sock_info->dev->dev, "Auto power\n");
474 reg |= I365_PWR_AUTO; /* automatic power mngmnt */
476 if (state->flags & SS_OUTPUT_ENA) {
477 dev_info(&sock_info->dev->dev, "Power Enabled\n");
478 reg |= I365_PWR_OUT; /* enable power */
481 switch (state->Vcc) {
485 dev_info(&sock_info->dev->dev,
486 "setting voltage to Vcc to 5V on socket %i\n",
491 dev_err(&sock_info->dev->dev,
492 "%s called with invalid VCC power value: %i",
493 __func__, state->Vcc);
497 switch (state->Vpp) {
499 dev_info(&sock_info->dev->dev,
500 "not setting Vpp on socket %i\n", sock);
503 dev_info(&sock_info->dev->dev,
504 "setting Vpp to 5.0 for socket %i\n", sock);
505 reg |= I365_VPP1_5V | I365_VPP2_5V;
508 dev_info(&sock_info->dev->dev, "setting Vpp to 12.0\n");
509 reg |= I365_VPP1_12V | I365_VPP2_12V;
512 dev_err(&sock_info->dev->dev,
513 "%s called with invalid VPP power value: %i",
514 __func__, state->Vcc);
518 if (reg != indirect_read(sock, I365_POWER)) /* only write if changed */
519 indirect_write(sock, I365_POWER, reg);
521 /* Enable specific interrupt events */
524 if (state->csc_mask & SS_DETECT)
525 reg |= I365_CSC_DETECT;
526 if (state->flags & SS_IOCARD) {
527 if (state->csc_mask & SS_STSCHG)
528 reg |= I365_CSC_STSCHG;
530 if (state->csc_mask & SS_BATDEAD)
531 reg |= I365_CSC_BVD1;
532 if (state->csc_mask & SS_BATWARN)
533 reg |= I365_CSC_BVD2;
534 if (state->csc_mask & SS_READY)
535 reg |= I365_CSC_READY;
539 /* now write the value and clear the (probably bogus) pending stuff
540 * by doing a dummy read
543 indirect_write(sock, I365_CSCINT, reg);
544 (void)indirect_read(sock, I365_CSC);
549 static int i82092aa_set_io_map(struct pcmcia_socket *socket,
550 struct pccard_io_map *io)
552 struct socket_info *sock_info = container_of(socket, struct socket_info,
554 unsigned int sock = sock_info->number;
555 unsigned char map, ioctl;
559 /* Check error conditions */
563 if ((io->start > 0xffff) || (io->stop > 0xffff)
564 || (io->stop < io->start))
567 /* Turn off the window before changing anything */
568 if (indirect_read(sock, I365_ADDRWIN) & I365_ENA_IO(map))
569 indirect_resetbit(sock, I365_ADDRWIN, I365_ENA_IO(map));
571 /* write the new values */
572 indirect_write16(sock, I365_IO(map)+I365_W_START, io->start);
573 indirect_write16(sock, I365_IO(map)+I365_W_STOP, io->stop);
575 ioctl = indirect_read(sock, I365_IOCTL) & ~I365_IOCTL_MASK(map);
577 if (io->flags & (MAP_16BIT|MAP_AUTOSZ))
578 ioctl |= I365_IOCTL_16BIT(map);
580 indirect_write(sock, I365_IOCTL, ioctl);
582 /* Turn the window back on if needed */
583 if (io->flags & MAP_ACTIVE)
584 indirect_setbit(sock, I365_ADDRWIN, I365_ENA_IO(map));
589 static int i82092aa_set_mem_map(struct pcmcia_socket *socket,
590 struct pccard_mem_map *mem)
592 struct socket_info *sock_info = container_of(socket, struct socket_info,
594 unsigned int sock = sock_info->number;
595 struct pci_bus_region region;
596 unsigned short base, i;
599 pcibios_resource_to_bus(sock_info->dev->bus, ®ion, mem->res);
605 if ((mem->card_start > 0x3ffffff) || (region.start > region.end) ||
606 (mem->speed > 1000)) {
607 dev_err(&sock_info->dev->dev,
608 "invalid mem map for socket %i: %llx to %llx with a start of %x\n",
610 (unsigned long long)region.start,
611 (unsigned long long)region.end,
616 /* Turn off the window before changing anything */
617 if (indirect_read(sock, I365_ADDRWIN) & I365_ENA_MEM(map))
618 indirect_resetbit(sock, I365_ADDRWIN, I365_ENA_MEM(map));
620 /* write the start address */
621 base = I365_MEM(map);
622 i = (region.start >> 12) & 0x0fff;
623 if (mem->flags & MAP_16BIT)
625 if (mem->flags & MAP_0WS)
627 indirect_write16(sock, base+I365_W_START, i);
629 /* write the stop address */
631 i = (region.end >> 12) & 0x0fff;
632 switch (to_cycles(mem->speed)) {
642 i |= I365_MEM_WS1 | I365_MEM_WS0;
646 indirect_write16(sock, base+I365_W_STOP, i);
650 i = ((mem->card_start - region.start) >> 12) & 0x3fff;
651 if (mem->flags & MAP_WRPROT)
652 i |= I365_MEM_WRPROT;
653 if (mem->flags & MAP_ATTRIB)
655 indirect_write16(sock, base+I365_W_OFF, i);
657 /* Enable the window if necessary */
658 if (mem->flags & MAP_ACTIVE)
659 indirect_setbit(sock, I365_ADDRWIN, I365_ENA_MEM(map));
664 static int i82092aa_module_init(void)
666 return pci_register_driver(&i82092aa_pci_driver);
669 static void i82092aa_module_exit(void)
671 pci_unregister_driver(&i82092aa_pci_driver);
672 if (sockets[0].io_base > 0)
673 release_region(sockets[0].io_base, 2);
676 module_init(i82092aa_module_init);
677 module_exit(i82092aa_module_exit);