]> nv-tegra.nvidia Code Review - linux-2.6.git/blob - drivers/pcmcia/cardbus.c
pcmcia: remove unused bulkmem.h
[linux-2.6.git] / drivers / pcmcia / cardbus.c
1 /*
2  * cardbus.c -- 16-bit PCMCIA core support
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * The initial developer of the original code is David A. Hinds
9  * <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
10  * are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
11  *
12  * (C) 1999             David A. Hinds
13  */
14
15 /*
16  * Cardbus handling has been re-written to be more of a PCI bridge thing,
17  * and the PCI code basically does all the resource handling.
18  *
19  *              Linus, Jan 2000
20  */
21
22
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/string.h>
26 #include <linux/slab.h>
27 #include <linux/mm.h>
28 #include <linux/pci.h>
29 #include <linux/ioport.h>
30 #include <asm/irq.h>
31 #include <asm/io.h>
32
33 #define IN_CARD_SERVICES
34 #include <pcmcia/cs_types.h>
35 #include <pcmcia/ss.h>
36 #include <pcmcia/cs.h>
37 #include <pcmcia/cistpl.h>
38 #include "cs_internal.h"
39
40 /*====================================================================*/
41
42 /* Offsets in the Expansion ROM Image Header */
43 #define ROM_SIGNATURE           0x0000  /* 2 bytes */
44 #define ROM_DATA_PTR            0x0018  /* 2 bytes */
45
46 /* Offsets in the CardBus PC Card Data Structure */
47 #define PCDATA_SIGNATURE        0x0000  /* 4 bytes */
48 #define PCDATA_VPD_PTR          0x0008  /* 2 bytes */
49 #define PCDATA_LENGTH           0x000a  /* 2 bytes */
50 #define PCDATA_REVISION         0x000c
51 #define PCDATA_IMAGE_SZ         0x0010  /* 2 bytes */
52 #define PCDATA_ROM_LEVEL        0x0012  /* 2 bytes */
53 #define PCDATA_CODE_TYPE        0x0014
54 #define PCDATA_INDICATOR        0x0015
55
56 /*=====================================================================
57
58     Expansion ROM's have a special layout, and pointers specify an
59     image number and an offset within that image.  xlate_rom_addr()
60     converts an image/offset address to an absolute offset from the
61     ROM's base address.
62     
63 =====================================================================*/
64
65 static u_int xlate_rom_addr(void __iomem *b, u_int addr)
66 {
67         u_int img = 0, ofs = 0, sz;
68         u_short data;
69         while ((readb(b) == 0x55) && (readb(b + 1) == 0xaa)) {
70                 if (img == (addr >> 28))
71                         return (addr & 0x0fffffff) + ofs;
72                 data = readb(b + ROM_DATA_PTR) + (readb(b + ROM_DATA_PTR + 1) << 8);
73                 sz = 512 * (readb(b + data + PCDATA_IMAGE_SZ) +
74                             (readb(b + data + PCDATA_IMAGE_SZ + 1) << 8));
75                 if ((sz == 0) || (readb(b + data + PCDATA_INDICATOR) & 0x80))
76                         break;
77                 b += sz;
78                 ofs += sz;
79                 img++;
80         }
81         return 0;
82 }
83
84 /*=====================================================================
85
86     These are similar to setup_cis_mem and release_cis_mem for 16-bit
87     cards.  The "result" that is used externally is the cb_cis_virt
88     pointer in the struct pcmcia_socket structure.
89     
90 =====================================================================*/
91
92 static void cb_release_cis_mem(struct pcmcia_socket * s)
93 {
94         if (s->cb_cis_virt) {
95                 cs_dbg(s, 1, "cb_release_cis_mem()\n");
96                 iounmap(s->cb_cis_virt);
97                 s->cb_cis_virt = NULL;
98                 s->cb_cis_res = NULL;
99         }
100 }
101
102 static int cb_setup_cis_mem(struct pcmcia_socket * s, struct resource *res)
103 {
104         unsigned int start, size;
105
106         if (res == s->cb_cis_res)
107                 return 0;
108
109         if (s->cb_cis_res)
110                 cb_release_cis_mem(s);
111
112         start = res->start;
113         size = res->end - start + 1;
114         s->cb_cis_virt = ioremap(start, size);
115
116         if (!s->cb_cis_virt)
117                 return -1;
118
119         s->cb_cis_res = res;
120
121         return 0;
122 }
123
124 /*=====================================================================
125
126     This is used by the CIS processing code to read CIS information
127     from a CardBus device.
128     
129 =====================================================================*/
130
131 int read_cb_mem(struct pcmcia_socket * s, int space, u_int addr, u_int len, void *ptr)
132 {
133         struct pci_dev *dev;
134         struct resource *res;
135
136         cs_dbg(s, 3, "read_cb_mem(%d, %#x, %u)\n", space, addr, len);
137
138         dev = pci_get_slot(s->cb_dev->subordinate, 0);
139         if (!dev)
140                 goto fail;
141
142         /* Config space? */
143         if (space == 0) {
144                 if (addr + len > 0x100)
145                         goto failput;
146                 for (; len; addr++, ptr++, len--)
147                         pci_read_config_byte(dev, addr, ptr);
148                 return 0;
149         }
150
151         res = dev->resource + space - 1;
152
153         pci_dev_put(dev);
154
155         if (!res->flags)
156                 goto fail;
157
158         if (cb_setup_cis_mem(s, res) != 0)
159                 goto fail;
160
161         if (space == 7) {
162                 addr = xlate_rom_addr(s->cb_cis_virt, addr);
163                 if (addr == 0)
164                         goto fail;
165         }
166
167         if (addr + len > res->end - res->start)
168                 goto fail;
169
170         memcpy_fromio(ptr, s->cb_cis_virt + addr, len);
171         return 0;
172
173 failput:
174         pci_dev_put(dev);
175 fail:
176         memset(ptr, 0xff, len);
177         return -1;
178 }
179
180 /*=====================================================================
181
182     cb_alloc() and cb_free() allocate and free the kernel data
183     structures for a Cardbus device, and handle the lowest level PCI
184     device setup issues.
185     
186 =====================================================================*/
187
188 /*
189  * Since there is only one interrupt available to CardBus
190  * devices, all devices downstream of this device must
191  * be using this IRQ.
192  */
193 static void cardbus_assign_irqs(struct pci_bus *bus, int irq)
194 {
195         struct pci_dev *dev;
196
197         list_for_each_entry(dev, &bus->devices, bus_list) {
198                 u8 irq_pin;
199
200                 pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &irq_pin);
201                 if (irq_pin) {
202                         dev->irq = irq;
203                         pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
204                 }
205
206                 if (dev->subordinate)
207                         cardbus_assign_irqs(dev->subordinate, irq);
208         }
209 }
210
211 int __ref cb_alloc(struct pcmcia_socket * s)
212 {
213         struct pci_bus *bus = s->cb_dev->subordinate;
214         struct pci_dev *dev;
215         unsigned int max, pass;
216
217         s->functions = pci_scan_slot(bus, PCI_DEVFN(0, 0));
218 //      pcibios_fixup_bus(bus);
219
220         max = bus->secondary;
221         for (pass = 0; pass < 2; pass++)
222                 list_for_each_entry(dev, &bus->devices, bus_list)
223                         if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
224                             dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
225                                 max = pci_scan_bridge(bus, dev, max, pass);
226
227         /*
228          * Size all resources below the CardBus controller.
229          */
230         pci_bus_size_bridges(bus);
231         pci_bus_assign_resources(bus);
232         cardbus_assign_irqs(bus, s->pci_irq);
233
234         /* socket specific tune function */
235         if (s->tune_bridge)
236                 s->tune_bridge(s, bus);
237
238         pci_enable_bridges(bus);
239         pci_bus_add_devices(bus);
240
241         s->irq.AssignedIRQ = s->pci_irq;
242         return CS_SUCCESS;
243 }
244
245 void cb_free(struct pcmcia_socket * s)
246 {
247         struct pci_dev *bridge = s->cb_dev;
248
249         cb_release_cis_mem(s);
250
251         if (bridge)
252                 pci_remove_behind_bridge(bridge);
253 }