1 | /* $Id: pci.c,v 1.1.1.1 2003/07/02 13:57:02 eleph Exp $ */
|
---|
2 | /*
|
---|
3 | * OS/2 implementation of Linux PCI functions (using direct port I/O)
|
---|
4 | *
|
---|
5 | * (C) 2000-2002 InnoTek Systemberatung GmbH
|
---|
6 | * (C) 2000-2001 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
7 | *
|
---|
8 | * Parts based on Linux kernel sources
|
---|
9 | *
|
---|
10 | * This program is free software; you can redistribute it and/or
|
---|
11 | * modify it under the terms of the GNU General Public License as
|
---|
12 | * published by the Free Software Foundation; either version 2 of
|
---|
13 | * the License, or (at your option) any later version.
|
---|
14 | *
|
---|
15 | * This program is distributed in the hope that it will be useful,
|
---|
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
18 | * GNU General Public License for more details.
|
---|
19 | *
|
---|
20 | * You should have received a copy of the GNU General Public
|
---|
21 | * License along with this program; if not, write to the Free
|
---|
22 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
|
---|
23 | * USA.
|
---|
24 | *
|
---|
25 | */
|
---|
26 |
|
---|
27 | #include "linux.h"
|
---|
28 | #include <linux/init.h>
|
---|
29 | #include <linux/poll.h>
|
---|
30 | #include <asm/uaccess.h>
|
---|
31 | #include <asm/hardirq.h>
|
---|
32 | #include <asm/io.h>
|
---|
33 | #include <sound/config.h>
|
---|
34 | #include <sound/core.h>
|
---|
35 | #include <sound/asound.h>
|
---|
36 |
|
---|
37 | #define LINUX
|
---|
38 | #include <ossidc.h>
|
---|
39 | #include <stacktoflat.h>
|
---|
40 | #include <dbgos2.h>
|
---|
41 | #include <osspci.h>
|
---|
42 |
|
---|
43 | #define MAX_PCI_BUSSES 16
|
---|
44 | #define MAX_PCI_DEVICES 16
|
---|
45 |
|
---|
46 | struct pci_dev pci_devices[MAX_PCI_DEVICES] = {0};
|
---|
47 | struct pci_bus pci_busses[MAX_PCI_BUSSES] = {0};
|
---|
48 |
|
---|
49 | BOOL fSuspended = FALSE;
|
---|
50 | extern int nrCardsDetected;
|
---|
51 |
|
---|
52 |
|
---|
53 | #define PCI_CONFIG_ENABLE 0x80000000
|
---|
54 | #define PCI_CONFIG_ADDRESS 0xCF8
|
---|
55 | #define PCI_CONFIG_DATA 0xCFC
|
---|
56 |
|
---|
57 | #ifdef ACPI
|
---|
58 | APIRET APIENTRY ACPIFindPCIDevice(ULONG Bus, ULONG Dev, ULONG Fun, ULONG *PicIRQ, ULONG *ApicIRQ, ULONG *Hdl, char *Component);
|
---|
59 | #endif
|
---|
60 |
|
---|
61 | //******************************************************************************
|
---|
62 | #define CONFIG_CMD(dev, where) \
|
---|
63 | (PCI_CONFIG_ENABLE | (dev->bus->number<<16) | (dev->devfn<<8) | (where & ~3))
|
---|
64 | //******************************************************************************
|
---|
65 | int pci_read_config_byte(struct pci_dev *dev, int where, u8 *value)
|
---|
66 | {
|
---|
67 | outl(CONFIG_CMD(dev,where), PCI_CONFIG_ADDRESS);
|
---|
68 | *value = inb(PCI_CONFIG_DATA + (where&3));
|
---|
69 | return PCIBIOS_SUCCESSFUL;
|
---|
70 | }
|
---|
71 | //******************************************************************************
|
---|
72 | //******************************************************************************
|
---|
73 | int pci_read_config_word(struct pci_dev *dev, int where, u16 *value)
|
---|
74 | {
|
---|
75 | outl(CONFIG_CMD(dev,where), PCI_CONFIG_ADDRESS);
|
---|
76 | *value = inw(PCI_CONFIG_DATA + (where&2));
|
---|
77 | return PCIBIOS_SUCCESSFUL;
|
---|
78 | }
|
---|
79 | //******************************************************************************
|
---|
80 | //******************************************************************************
|
---|
81 | int pci_read_config_dword(struct pci_dev *dev, int where, u32 *value)
|
---|
82 | {
|
---|
83 | outl(CONFIG_CMD(dev,where), PCI_CONFIG_ADDRESS);
|
---|
84 | *value = inl(PCI_CONFIG_DATA);
|
---|
85 | return PCIBIOS_SUCCESSFUL;
|
---|
86 | }
|
---|
87 | //******************************************************************************
|
---|
88 | //******************************************************************************
|
---|
89 | int pci_write_config_byte(struct pci_dev *dev, int where, u8 value)
|
---|
90 | {
|
---|
91 | outl(CONFIG_CMD(dev,where), PCI_CONFIG_ADDRESS);
|
---|
92 | outb(value, PCI_CONFIG_DATA + (where&3));
|
---|
93 | return PCIBIOS_SUCCESSFUL;
|
---|
94 | }
|
---|
95 | //******************************************************************************
|
---|
96 | //******************************************************************************
|
---|
97 | int pci_write_config_word(struct pci_dev *dev, int where, u16 value)
|
---|
98 | {
|
---|
99 | outl(CONFIG_CMD(dev,where), PCI_CONFIG_ADDRESS);
|
---|
100 | outw(value, PCI_CONFIG_DATA + (where&2));
|
---|
101 | return PCIBIOS_SUCCESSFUL;
|
---|
102 | }
|
---|
103 | //******************************************************************************
|
---|
104 | //******************************************************************************
|
---|
105 | int pci_write_config_dword(struct pci_dev *dev, int where, u32 value)
|
---|
106 | {
|
---|
107 | outl(CONFIG_CMD(dev,where), PCI_CONFIG_ADDRESS);
|
---|
108 | outl(value, PCI_CONFIG_DATA);
|
---|
109 | return PCIBIOS_SUCCESSFUL;
|
---|
110 | }
|
---|
111 | //******************************************************************************
|
---|
112 | //******************************************************************************
|
---|
113 | int pcidev_prepare(struct pci_dev *dev)
|
---|
114 | {
|
---|
115 | dprintf(("pcidev_prepare %x not implemented", dev));
|
---|
116 | return 1; //todo: correct return value??
|
---|
117 | }
|
---|
118 | //******************************************************************************
|
---|
119 | //******************************************************************************
|
---|
120 | int pcidev_activate(struct pci_dev *dev)
|
---|
121 | {
|
---|
122 | dprintf(("pcidev_activate %x not implemented", dev));
|
---|
123 | return 1; //todo: correct return value??
|
---|
124 | }
|
---|
125 | //******************************************************************************
|
---|
126 | //******************************************************************************
|
---|
127 | int pcidev_deactivate(struct pci_dev *dev)
|
---|
128 | {
|
---|
129 | dprintf(("pcidev_deactivate %x not implemented", dev));
|
---|
130 | return 1; //todo: correct return value??
|
---|
131 | }
|
---|
132 |
|
---|
133 |
|
---|
134 |
|
---|
135 | //******************************************************************************
|
---|
136 | //******************************************************************************
|
---|
137 | #ifdef ACPI
|
---|
138 | struct SaveIRQForSlot
|
---|
139 | {
|
---|
140 | ULONG ulSlotNo;
|
---|
141 | BYTE LowIRQ;
|
---|
142 | BYTE HighIRQ;
|
---|
143 | BYTE Pin;
|
---|
144 | };
|
---|
145 | extern struct SaveIRQForSlot sISRHigh[];
|
---|
146 | extern int SaveIRQCounter;
|
---|
147 | #endif
|
---|
148 |
|
---|
149 | static int pci_query_device(unsigned int vendor, unsigned int device,
|
---|
150 | struct pci_dev near *pcidev, int idx)
|
---|
151 | {
|
---|
152 | int resNo, addr, found = 0;
|
---|
153 | u32 devNr, busNr, funcNr, detectedId, pciId, cfgaddrreg, temp, temp2;
|
---|
154 | #ifdef ACPI
|
---|
155 | APIRET rc;
|
---|
156 | ULONG temp1,temp3; //PS++
|
---|
157 | #endif
|
---|
158 | u8 headerType;
|
---|
159 |
|
---|
160 | pciId = (device << 16) | vendor;
|
---|
161 |
|
---|
162 | cfgaddrreg = inl(PCI_CONFIG_ADDRESS);
|
---|
163 | for(busNr=0;busNr<MAX_PCI_BUSSES;busNr++) //BusNumber<255
|
---|
164 | {
|
---|
165 | for(devNr=0;devNr<32;devNr++)
|
---|
166 | {
|
---|
167 | for(funcNr=0;funcNr<8;funcNr++)
|
---|
168 | {
|
---|
169 | headerType = 0;
|
---|
170 | temp = PCI_CONFIG_ENABLE | (busNr<<16) | (devNr<<11) | (funcNr<<8);
|
---|
171 | outl(temp, PCI_CONFIG_ADDRESS);
|
---|
172 | detectedId = inl(PCI_CONFIG_DATA);
|
---|
173 | if( detectedId != 0xffffffff )
|
---|
174 | {
|
---|
175 | outl(temp | (PCI_HEADER_TYPE & ~3), PCI_CONFIG_ADDRESS);
|
---|
176 | headerType = inb(PCI_CONFIG_DATA + (PCI_HEADER_TYPE & 3));
|
---|
177 | }
|
---|
178 | // printk("det: %x (%x), need: %x\n", detectedId, headerType, pciId);
|
---|
179 |
|
---|
180 | if( detectedId == pciId &&
|
---|
181 | (headerType & 0x7f) == PCI_HEADER_TYPE_NORMAL )
|
---|
182 | {
|
---|
183 | if( found++ == idx )
|
---|
184 | {
|
---|
185 | memset((void near *)pcidev, 0, sizeof(struct pci_dev));
|
---|
186 |
|
---|
187 | pcidev->vendor = vendor;
|
---|
188 | pcidev->device = device;
|
---|
189 | pcidev->bus = &pci_busses[busNr];
|
---|
190 | pcidev->bus->number = busNr;
|
---|
191 | pcidev->devfn = (devNr << 3) | funcNr;
|
---|
192 | pcidev->hdr_type = headerType & 0x7f;
|
---|
193 |
|
---|
194 | pcidev->prepare = pcidev_prepare;
|
---|
195 | pcidev->activate = pcidev_activate;
|
---|
196 | pcidev->deactivate = pcidev_deactivate;
|
---|
197 | pcidev->active = 1;
|
---|
198 | pcidev->ro = 0;
|
---|
199 | pcidev->sibling = NULL;
|
---|
200 | pcidev->next = NULL;
|
---|
201 | pcidev->dma_mask = 0xFFFFFFFF;
|
---|
202 |
|
---|
203 | // Subsystem ID
|
---|
204 | pci_read_config_word(pcidev, PCI_SUBSYSTEM_VENDOR_ID,
|
---|
205 | &pcidev->subsystem_vendor);
|
---|
206 | pci_read_config_word(pcidev, PCI_SUBSYSTEM_ID,
|
---|
207 | &pcidev->subsystem_device);
|
---|
208 |
|
---|
209 | // I/O and MEM
|
---|
210 | resNo = 0;
|
---|
211 | for( addr = PCI_BASE_ADDRESS_0; addr <= PCI_BASE_ADDRESS_5; addr += 4 )
|
---|
212 | {
|
---|
213 | pci_read_config_dword(pcidev, addr, &temp);
|
---|
214 | if( temp != 0 && temp != 0xffffffff )
|
---|
215 | {
|
---|
216 | pci_write_config_dword(pcidev, addr, 0xffffffff);
|
---|
217 | pci_read_config_dword(pcidev, addr, &temp2);
|
---|
218 | pci_write_config_dword(pcidev, addr, temp);
|
---|
219 |
|
---|
220 | if( temp & PCI_BASE_ADDRESS_SPACE_IO )
|
---|
221 | {
|
---|
222 | pcidev->resource[resNo].flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
|
---|
223 | pcidev->resource[resNo].start = temp & PCI_BASE_ADDRESS_IO_MASK;
|
---|
224 | pcidev->resource[resNo].end = pcidev->resource[resNo].start +
|
---|
225 | ~(temp2 & PCI_BASE_ADDRESS_IO_MASK) + 1;
|
---|
226 | }
|
---|
227 | else
|
---|
228 | {
|
---|
229 | pcidev->resource[resNo].flags = IORESOURCE_MEM | IORESOURCE_MEM_WRITEABLE;
|
---|
230 | pcidev->resource[resNo].start = temp & PCI_BASE_ADDRESS_MEM_MASK;
|
---|
231 | pcidev->resource[resNo].end = pcidev->resource[resNo].start +
|
---|
232 | ~(temp2 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
|
---|
233 | }
|
---|
234 |
|
---|
235 | resNo++;
|
---|
236 |
|
---|
237 | }
|
---|
238 | }
|
---|
239 |
|
---|
240 | // IRQ and PIN
|
---|
241 | pci_read_config_dword(pcidev, PCI_INTERRUPT_LINE, &temp);
|
---|
242 | #ifdef ACPI
|
---|
243 | sISRHigh[SaveIRQCounter].Pin = (temp >> 8) & 0xf;
|
---|
244 | temp2 = temp3 = 0;
|
---|
245 | rc = ACPIFindPCIDevice( (ULONG)busNr, // Bus
|
---|
246 | (ULONG)devNr, // Dev
|
---|
247 | (ULONG)(pcidev->devfn >> 8) & 7, // Function
|
---|
248 | &temp1, // PIC IRQ
|
---|
249 | &temp3, // APIC IRQ
|
---|
250 | NULL, // ACPI handle to finding device
|
---|
251 | "Uniaud32"); // Name for acpi log
|
---|
252 | if (!rc)
|
---|
253 | {
|
---|
254 | // Check APIC IRQ, if we have /SMP /APIC, must be set
|
---|
255 | if (temp1)
|
---|
256 | temp = (temp & (~0xff)) | (temp1 & 0xff);
|
---|
257 | // Check PIC IRQ
|
---|
258 | else if (temp3)
|
---|
259 | temp = (temp & (~0xff)) | (temp3 & 0xff);
|
---|
260 | dprintf(("pci_query_device: IRQs ACPI PIC%d APIC%d", temp1, temp3));
|
---|
261 | sISRHigh[SaveIRQCounter].LowIRQ = temp1;
|
---|
262 | sISRHigh[SaveIRQCounter].HighIRQ = temp3;
|
---|
263 | }
|
---|
264 | #endif /* ACPI */
|
---|
265 | if( (u8)temp && (u8)temp != 0xff )
|
---|
266 | {
|
---|
267 | pcidev->irq_resource[0].flags = IORESOURCE_IRQ;
|
---|
268 | pcidev->irq_resource[0].start =
|
---|
269 | pcidev->irq_resource[0].end = temp & 0xffff;
|
---|
270 | pcidev->irq = (u8)temp;
|
---|
271 | }
|
---|
272 |
|
---|
273 | return 1;
|
---|
274 | }
|
---|
275 | }
|
---|
276 |
|
---|
277 | // don't need to check more, if function 0 not present or single
|
---|
278 | if( funcNr == 0 && !(headerType & 0x80) ) break;
|
---|
279 | }
|
---|
280 | }
|
---|
281 | }
|
---|
282 | outl(cfgaddrreg, PCI_CONFIG_ADDRESS);
|
---|
283 | return 0;
|
---|
284 |
|
---|
285 | }
|
---|
286 |
|
---|
287 | //******************************************************************************
|
---|
288 | //******************************************************************************
|
---|
289 | struct pci_dev *pci_find_device (unsigned int vendor, unsigned int device, struct pci_dev *from)
|
---|
290 | {
|
---|
291 | int i, idx;
|
---|
292 |
|
---|
293 | if((int)from < 8) {
|
---|
294 | idx = (int)from; // dirty hack
|
---|
295 | // return 0;
|
---|
296 | } else
|
---|
297 | idx = 0;
|
---|
298 |
|
---|
299 | for(i=0;i<MAX_PCI_DEVICES;i++)
|
---|
300 | {
|
---|
301 | if(pci_devices[i].devfn == 0)
|
---|
302 | {
|
---|
303 | if( pci_query_device(vendor, device, (struct pci_dev near *)&pci_devices[i], idx) )
|
---|
304 | return &pci_devices[i];
|
---|
305 | else
|
---|
306 | break;
|
---|
307 | }
|
---|
308 | }
|
---|
309 |
|
---|
310 | return NULL;
|
---|
311 | }
|
---|
312 | //******************************************************************************
|
---|
313 | //******************************************************************************
|
---|
314 | struct resource * __request_region(struct resource *a, unsigned long start,
|
---|
315 | unsigned long n, const char *name)
|
---|
316 | {
|
---|
317 | struct resource *resource;
|
---|
318 |
|
---|
319 | if(a->flags & IORESOURCE_MEM) {
|
---|
320 | if(RMRequestMem(/*hResMgr,*/ start, n) == FALSE) {
|
---|
321 | printk("RMRequestIO failed for io %x, length %x\n", start, n);
|
---|
322 | return NULL;
|
---|
323 | }
|
---|
324 | }
|
---|
325 | else if(a->flags & IORESOURCE_IO) {
|
---|
326 | if(RMRequestIO(/*hResMgr,*/ start, n) == FALSE) {
|
---|
327 | printk("RMRequestIO failed for io %x, length %x\n", start, n);
|
---|
328 | return NULL;
|
---|
329 | }
|
---|
330 | }
|
---|
331 |
|
---|
332 | resource = kmalloc(sizeof(struct resource), GFP_KERNEL);
|
---|
333 | if (resource == NULL)
|
---|
334 | return NULL;
|
---|
335 | resource->name = name;
|
---|
336 | resource->start = start;
|
---|
337 | resource->end = start + n; // - 1;
|
---|
338 | resource->flags = a->flags;
|
---|
339 | resource->parent =
|
---|
340 | resource->child = NULL;
|
---|
341 |
|
---|
342 | // insert in list
|
---|
343 | resource->sibling = a->sibling;
|
---|
344 | a->sibling = resource;
|
---|
345 |
|
---|
346 | return resource;
|
---|
347 | }
|
---|
348 | //******************************************************************************
|
---|
349 | //******************************************************************************
|
---|
350 | void __release_region(struct resource *a,
|
---|
351 | unsigned long start, unsigned long n)
|
---|
352 | {
|
---|
353 | struct resource *resource;
|
---|
354 | struct resource **ppres = &a->sibling;
|
---|
355 | unsigned long end = start + n; // - 1;
|
---|
356 |
|
---|
357 | while( *ppres )
|
---|
358 | {
|
---|
359 | resource = *ppres;
|
---|
360 |
|
---|
361 | if( resource->start == start && resource->end == end )
|
---|
362 | {
|
---|
363 | // remove from list
|
---|
364 | *ppres = resource->sibling;
|
---|
365 | kfree(resource);
|
---|
366 | return;
|
---|
367 | }
|
---|
368 |
|
---|
369 | ppres = &resource->sibling;
|
---|
370 | }
|
---|
371 | }
|
---|
372 | //******************************************************************************
|
---|
373 | //******************************************************************************
|
---|
374 | int pci_get_flags (struct pci_dev *dev, int n_base)
|
---|
375 | {
|
---|
376 | if(n_base >= DEVICE_COUNT_RESOURCE || !dev->resource[n_base].flags) {
|
---|
377 | DebugInt3();
|
---|
378 | return 0;
|
---|
379 | }
|
---|
380 | return dev->resource[n_base].flags;
|
---|
381 | }
|
---|
382 | //******************************************************************************
|
---|
383 | //******************************************************************************
|
---|
384 | int pcibios_present(void)
|
---|
385 | {
|
---|
386 | printk("pcibios_present -> pretend BIOS present\n");
|
---|
387 | return 1;
|
---|
388 | }
|
---|
389 | //******************************************************************************
|
---|
390 | //******************************************************************************
|
---|
391 | struct pci_dev *pci_find_slot (unsigned int bus, unsigned int devfn)
|
---|
392 | {
|
---|
393 | printk("pci_find_slot %d %x not implemented!!\n", bus, devfn);
|
---|
394 | DebugInt3();
|
---|
395 | return NULL;
|
---|
396 | }
|
---|
397 | //******************************************************************************
|
---|
398 | //******************************************************************************
|
---|
399 | int pci_dma_supported(struct pci_dev *dev, unsigned long mask)
|
---|
400 | {
|
---|
401 | printk("pci_dma_supported: return TRUE\n");
|
---|
402 | return 1;
|
---|
403 | }
|
---|
404 | //******************************************************************************
|
---|
405 | //******************************************************************************
|
---|
406 | int pci_find_capability(struct pci_dev *dev, int cap)
|
---|
407 | {
|
---|
408 | u16 status;
|
---|
409 | u8 pos, id;
|
---|
410 | int ttl = 48;
|
---|
411 |
|
---|
412 | pci_read_config_word(dev, PCI_STATUS, &status);
|
---|
413 | if (!(status & PCI_STATUS_CAP_LIST))
|
---|
414 | return 0;
|
---|
415 | pci_read_config_byte(dev, PCI_CAPABILITY_LIST, &pos);
|
---|
416 | while (ttl-- && pos >= 0x40) {
|
---|
417 | pos &= ~3;
|
---|
418 | pci_read_config_byte(dev, pos + PCI_CAP_LIST_ID, &id);
|
---|
419 | if (id == 0xff)
|
---|
420 | break;
|
---|
421 | if (id == cap)
|
---|
422 | return pos;
|
---|
423 | pci_read_config_byte(dev, pos + PCI_CAP_LIST_NEXT, &pos);
|
---|
424 | }
|
---|
425 | return 0;
|
---|
426 | }
|
---|
427 | //******************************************************************************
|
---|
428 | /*
|
---|
429 | * Set power management state of a device. For transitions from state D3
|
---|
430 | * it isn't as straightforward as one could assume since many devices forget
|
---|
431 | * their configuration space during wakeup. Returns old power state.
|
---|
432 | */
|
---|
433 | //******************************************************************************
|
---|
434 | int pci_set_power_state(struct pci_dev *dev, int new_state)
|
---|
435 | {
|
---|
436 | u32 base[5], romaddr;
|
---|
437 | u16 pci_command, pwr_command;
|
---|
438 | u8 pci_latency, pci_cacheline;
|
---|
439 | int i, old_state;
|
---|
440 | int pm = pci_find_capability(dev, PCI_CAP_ID_PM);
|
---|
441 |
|
---|
442 | if (!pm)
|
---|
443 | return 0;
|
---|
444 | pci_read_config_word(dev, pm + PCI_PM_CTRL, &pwr_command);
|
---|
445 | old_state = pwr_command & PCI_PM_CTRL_STATE_MASK;
|
---|
446 | if (old_state == new_state)
|
---|
447 | return old_state;
|
---|
448 | if (old_state == 3) {
|
---|
449 | pci_read_config_word(dev, PCI_COMMAND, &pci_command);
|
---|
450 | pci_write_config_word(dev, PCI_COMMAND, pci_command & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY));
|
---|
451 | for (i = 0; i < 5; i++)
|
---|
452 | pci_read_config_dword(dev, PCI_BASE_ADDRESS_0 + i*4, &base[i]);
|
---|
453 | pci_read_config_dword(dev, PCI_ROM_ADDRESS, &romaddr);
|
---|
454 | pci_read_config_byte(dev, PCI_LATENCY_TIMER, &pci_latency);
|
---|
455 | pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &pci_cacheline);
|
---|
456 | pci_write_config_word(dev, pm + PCI_PM_CTRL, new_state);
|
---|
457 | for (i = 0; i < 5; i++)
|
---|
458 | pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + i*4, base[i]);
|
---|
459 | pci_write_config_dword(dev, PCI_ROM_ADDRESS, romaddr);
|
---|
460 | pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
|
---|
461 | pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, pci_cacheline);
|
---|
462 | pci_write_config_byte(dev, PCI_LATENCY_TIMER, pci_latency);
|
---|
463 | pci_write_config_word(dev, PCI_COMMAND, pci_command);
|
---|
464 | } else
|
---|
465 | pci_write_config_word(dev, pm + PCI_PM_CTRL, (pwr_command & ~PCI_PM_CTRL_STATE_MASK) | new_state);
|
---|
466 | return old_state;
|
---|
467 | }
|
---|
468 | //******************************************************************************
|
---|
469 | /*
|
---|
470 | * Initialize device before it's used by a driver. Ask low-level code
|
---|
471 | * to enable I/O and memory. Wake up the device if it was suspended.
|
---|
472 | * Beware, this function can fail.
|
---|
473 | */
|
---|
474 | //******************************************************************************
|
---|
475 | int pci_enable_device(struct pci_dev *dev)
|
---|
476 | {
|
---|
477 | u16 pci_command;
|
---|
478 |
|
---|
479 | printk("pci_enable_device %x\n", dev);
|
---|
480 |
|
---|
481 | pci_read_config_word(dev, PCI_COMMAND, &pci_command);
|
---|
482 | pci_write_config_word(dev, PCI_COMMAND, pci_command | (PCI_COMMAND_IO | PCI_COMMAND_MEMORY));
|
---|
483 | pci_set_power_state(dev, 0);
|
---|
484 | return 0;
|
---|
485 | }
|
---|
486 | //******************************************************************************
|
---|
487 | //******************************************************************************
|
---|
488 | int pci_register_driver(struct pci_driver *driver)
|
---|
489 | {
|
---|
490 | int i, j, dev_num;
|
---|
491 | struct pci_dev *pcidev;
|
---|
492 |
|
---|
493 | for( i = 0; driver->id_table[i].vendor; i++)
|
---|
494 | {
|
---|
495 | dev_num = 0;
|
---|
496 | while( (pcidev = pci_find_device(driver->id_table[i].vendor,
|
---|
497 | driver->id_table[i].device,
|
---|
498 | (struct pci_dev *)dev_num)) != NULL )
|
---|
499 | {
|
---|
500 | RMInit();
|
---|
501 | if( driver->probe) {
|
---|
502 | printk("found: %x, id: %x idx %i\n",driver->id_table[i].vendor, driver->id_table[i].device, dev_num);
|
---|
503 |
|
---|
504 | if(driver->probe(pcidev, &driver->id_table[i]) == 0) {
|
---|
505 | pcidev->pcidriver = (void *)driver;
|
---|
506 | pcidev->current_state = 4;
|
---|
507 |
|
---|
508 | // create adapter
|
---|
509 | RMDone((driver->id_table[i].device << 16) | driver->id_table[i].vendor);
|
---|
510 | nrCardsDetected++;
|
---|
511 | }
|
---|
512 | else pcidev->devfn = 0;
|
---|
513 | }
|
---|
514 |
|
---|
515 | RMDone(0);
|
---|
516 |
|
---|
517 | dev_num++;
|
---|
518 |
|
---|
519 | }
|
---|
520 | }
|
---|
521 | if (nrCardsDetected >=1)
|
---|
522 | return 1;
|
---|
523 |
|
---|
524 | return 0;
|
---|
525 | }
|
---|
526 | //******************************************************************************
|
---|
527 | //******************************************************************************
|
---|
528 | int pci_module_init(struct pci_driver *drv)
|
---|
529 | {
|
---|
530 | int res = pci_register_driver(drv);
|
---|
531 | if (res < 0)
|
---|
532 | return res;
|
---|
533 | if (res == 0)
|
---|
534 | return -ENODEV;
|
---|
535 | return 0;
|
---|
536 | }
|
---|
537 | //******************************************************************************
|
---|
538 | //******************************************************************************
|
---|
539 | int pci_unregister_driver(struct pci_driver *driver)
|
---|
540 | {
|
---|
541 | struct pci_dev *pcidev;
|
---|
542 | int i = 0, j;
|
---|
543 |
|
---|
544 | while(driver->id_table[i].vendor)
|
---|
545 | {
|
---|
546 | for(j=0;j<MAX_PCI_DEVICES;j++)
|
---|
547 | {
|
---|
548 | if(pci_devices[j].vendor == driver->id_table[i].vendor &&
|
---|
549 | pci_devices[j].device == driver->id_table[i].device)
|
---|
550 | {
|
---|
551 | if(driver->remove) {
|
---|
552 | driver->remove(&pci_devices[j]);
|
---|
553 | }
|
---|
554 | }
|
---|
555 | }
|
---|
556 | i++;
|
---|
557 | }
|
---|
558 | return 0;
|
---|
559 | }
|
---|
560 | //******************************************************************************
|
---|
561 | //******************************************************************************
|
---|
562 | void pci_set_master(struct pci_dev *dev)
|
---|
563 | {
|
---|
564 | u16 cmd;
|
---|
565 |
|
---|
566 | pci_read_config_word(dev, PCI_COMMAND, &cmd);
|
---|
567 | if (! (cmd & PCI_COMMAND_MASTER)) {
|
---|
568 | dprintf(("pci_set_master %x", dev));
|
---|
569 | cmd |= PCI_COMMAND_MASTER;
|
---|
570 | pci_write_config_word(dev, PCI_COMMAND, cmd);
|
---|
571 | }
|
---|
572 | return;
|
---|
573 | }
|
---|
574 | //******************************************************************************
|
---|
575 | // * Register a device with power management
|
---|
576 | //******************************************************************************
|
---|
577 | struct pm_dev *pm_register(pm_dev_t type, unsigned long id, pm_callback callback)
|
---|
578 | {
|
---|
579 | dprintf(("pm_register STUB"));
|
---|
580 | DebugInt3();
|
---|
581 | return NULL;
|
---|
582 | }
|
---|
583 | //******************************************************************************
|
---|
584 | // * Unregister a device with power management
|
---|
585 | //******************************************************************************
|
---|
586 | void pm_unregister(struct pm_dev *dev)
|
---|
587 | {
|
---|
588 | dprintf(("pm_unregister STUB"));
|
---|
589 | }
|
---|
590 | //******************************************************************************
|
---|
591 | //******************************************************************************
|
---|
592 | int __compat_get_order(unsigned long size)
|
---|
593 | {
|
---|
594 | int order;
|
---|
595 |
|
---|
596 | size = (size-1) >> (PAGE_SHIFT-1);
|
---|
597 | order = -1;
|
---|
598 | do {
|
---|
599 | size >>= 1;
|
---|
600 | order++;
|
---|
601 | } while (size);
|
---|
602 | return order;
|
---|
603 | }
|
---|
604 | //******************************************************************************
|
---|
605 | //******************************************************************************
|
---|
606 | void *pci_alloc_consistent(struct pci_dev *hwdev,
|
---|
607 | long size, dma_addr_t *dma_handle)
|
---|
608 | {
|
---|
609 | void *ret = NULL;
|
---|
610 | int gfp = GFP_ATOMIC;
|
---|
611 | int order;
|
---|
612 | #ifdef DEBUG
|
---|
613 | dprintf(("pci_alloc_consistent %d mask %x", size, (hwdev) ? hwdev->dma_mask : 0));
|
---|
614 | #endif
|
---|
615 | if (hwdev == NULL || hwdev->dma_mask != 0xffffffff) {
|
---|
616 | //try not to exhaust low memory (< 16mb) so allocate from the high region first
|
---|
617 | //if that doesn't satisfy the dma mask requirement, then get it from the low
|
---|
618 | //regino anyway
|
---|
619 | if(hwdev->dma_mask > 0x00ffffff) {
|
---|
620 | order = __compat_get_order(size);
|
---|
621 | ret = (void *)__get_free_pages(gfp|GFP_DMAHIGHMEM, order);
|
---|
622 | *dma_handle = virt_to_bus(ret);
|
---|
623 | if(*dma_handle > hwdev->dma_mask) {
|
---|
624 | free_pages((unsigned long)ret, __compat_get_order(size));
|
---|
625 | //be sure and allocate below 16 mb
|
---|
626 | gfp |= GFP_DMA;
|
---|
627 | ret = NULL;
|
---|
628 | }
|
---|
629 | }
|
---|
630 | else { //must always allocate below 16 mb
|
---|
631 | gfp |= GFP_DMA;
|
---|
632 | }
|
---|
633 | }
|
---|
634 | if(ret == NULL) {
|
---|
635 | ret = (void *)__get_free_pages(gfp, __compat_get_order(size));
|
---|
636 | }
|
---|
637 |
|
---|
638 | if (ret != NULL) {
|
---|
639 | memset(ret, 0, size);
|
---|
640 | *dma_handle = virt_to_bus(ret);
|
---|
641 | }
|
---|
642 | return ret;
|
---|
643 | }
|
---|
644 | //******************************************************************************
|
---|
645 | //******************************************************************************
|
---|
646 | void pci_free_consistent(struct pci_dev *hwdev, long size,
|
---|
647 | void *vaddr, dma_addr_t dma_handle)
|
---|
648 | {
|
---|
649 | free_pages((unsigned long)vaddr, __compat_get_order(size));
|
---|
650 | }
|
---|
651 | //******************************************************************************
|
---|
652 | //******************************************************************************
|
---|
653 | void pci_set_driver_data (struct pci_dev *dev, void *driver_data)
|
---|
654 | {
|
---|
655 | if (dev)
|
---|
656 | dev->driver_data = driver_data;
|
---|
657 | }
|
---|
658 | //******************************************************************************
|
---|
659 | //******************************************************************************
|
---|
660 | void *pci_get_driver_data (struct pci_dev *dev)
|
---|
661 | {
|
---|
662 | if (dev)
|
---|
663 | return dev->driver_data;
|
---|
664 | return 0;
|
---|
665 | }
|
---|
666 | //******************************************************************************
|
---|
667 | //******************************************************************************
|
---|
668 | unsigned long pci_get_dma_mask (struct pci_dev *dev)
|
---|
669 | {
|
---|
670 | if (dev)
|
---|
671 | return dev->dma_mask;
|
---|
672 | return 0;
|
---|
673 | }
|
---|
674 | //******************************************************************************
|
---|
675 | //******************************************************************************
|
---|
676 | int release_resource(struct resource *newres)
|
---|
677 | {
|
---|
678 | return 0;
|
---|
679 | }
|
---|
680 |
|
---|
681 | //******************************************************************************
|
---|
682 | //******************************************************************************
|
---|
683 | int pci_set_latency_time(struct pci_dev *dev, int latency)
|
---|
684 | {
|
---|
685 | pci_write_config_byte(dev, PCI_LATENCY_TIMER, latency);
|
---|
686 | return 0;
|
---|
687 | }
|
---|
688 |
|
---|
689 | //******************************************************************************
|
---|
690 | //******************************************************************************
|
---|
691 | /**
|
---|
692 | * pci_save_state - save the PCI configuration space of a device before suspending
|
---|
693 | * @dev: - PCI device that we're dealing with
|
---|
694 | * @buffer: - buffer to hold config space context
|
---|
695 | *
|
---|
696 | * @buffer must be large enough to hold the entire PCI 2.2 config space
|
---|
697 | * (>= 64 bytes).
|
---|
698 | */
|
---|
699 | int pci_orig_save_state(struct pci_dev *dev, u32 *buffer)
|
---|
700 | {
|
---|
701 | int i;
|
---|
702 | if (buffer) {
|
---|
703 | /* XXX: 100% dword access ok here? */
|
---|
704 | for (i = 0; i < 16; i++)
|
---|
705 | pci_read_config_dword(dev, i * 4,&buffer[i]);
|
---|
706 | }
|
---|
707 | return 0;
|
---|
708 | }
|
---|
709 |
|
---|
710 | /**
|
---|
711 | * pci_restore_state - Restore the saved state of a PCI device
|
---|
712 | * @dev: - PCI device that we're dealing with
|
---|
713 | * @buffer: - saved PCI config space
|
---|
714 | *
|
---|
715 | */
|
---|
716 | int
|
---|
717 | pci_orig_restore_state(struct pci_dev *dev, u32 *buffer)
|
---|
718 | {
|
---|
719 | int i;
|
---|
720 |
|
---|
721 | if (buffer) {
|
---|
722 | for (i = 0; i < 16; i++)
|
---|
723 | pci_write_config_dword(dev,i * 4, buffer[i]);
|
---|
724 | }
|
---|
725 | /*
|
---|
726 | * otherwise, write the context information we know from bootup.
|
---|
727 | * This works around a problem where warm-booting from Windows
|
---|
728 | * combined with a D3(hot)->D0 transition causes PCI config
|
---|
729 | * header data to be forgotten.
|
---|
730 | */
|
---|
731 | else {
|
---|
732 | for (i = 0; i < 6; i ++)
|
---|
733 | pci_write_config_dword(dev,
|
---|
734 | PCI_BASE_ADDRESS_0 + (i * 4),
|
---|
735 | dev->resource[i].start);
|
---|
736 | pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
|
---|
737 | }
|
---|
738 | return 0;
|
---|
739 | }
|
---|
740 |
|
---|
741 | struct saved_config_tbl {
|
---|
742 | struct pci_dev *pci;
|
---|
743 | u32 config[16];
|
---|
744 | };
|
---|
745 | static struct saved_config_tbl saved_tbl[16];
|
---|
746 |
|
---|
747 | int pci_save_state(struct pci_dev *pci)
|
---|
748 | {
|
---|
749 | int i;
|
---|
750 | /* FIXME: mutex needed for race? */
|
---|
751 | for (i = 0; i < ARRAY_SIZE(saved_tbl); i++) {
|
---|
752 | if (! saved_tbl[i].pci) {
|
---|
753 | saved_tbl[i].pci = pci;
|
---|
754 | pci_orig_save_state(pci, saved_tbl[i].config);
|
---|
755 | return 1;
|
---|
756 | }
|
---|
757 | }
|
---|
758 | printk(KERN_DEBUG "snd: no pci config space found!\n");
|
---|
759 | return 0;
|
---|
760 | }
|
---|
761 |
|
---|
762 | int pci_restore_state(struct pci_dev *pci)
|
---|
763 | {
|
---|
764 | int i;
|
---|
765 | /* FIXME: mutex needed for race? */
|
---|
766 | for (i = 0; i < ARRAY_SIZE(saved_tbl); i++) {
|
---|
767 | if (saved_tbl[i].pci == pci) {
|
---|
768 | saved_tbl[i].pci = NULL;
|
---|
769 | pci_orig_restore_state(pci, saved_tbl[i].config);
|
---|
770 | return 0;
|
---|
771 | }
|
---|
772 | }
|
---|
773 | printk(KERN_DEBUG "snd: no saved pci config!\n");
|
---|
774 | return 1;
|
---|
775 | }
|
---|
776 |
|
---|
777 | void pci_disable_device(struct pci_dev *dev)
|
---|
778 | {
|
---|
779 | u16 pci_command;
|
---|
780 |
|
---|
781 | pci_read_config_word(dev, PCI_COMMAND, &pci_command);
|
---|
782 | if (pci_command & PCI_COMMAND_MASTER) {
|
---|
783 | pci_command &= ~PCI_COMMAND_MASTER;
|
---|
784 | pci_write_config_word(dev, PCI_COMMAND, pci_command);
|
---|
785 | }
|
---|
786 | }
|
---|
787 |
|
---|
788 | int pci_request_region(struct pci_dev *pdev, int bar, char *res_name)
|
---|
789 | {
|
---|
790 | int flags;
|
---|
791 |
|
---|
792 | if (pci_resource_len(pdev, bar) == 0)
|
---|
793 | return 0;
|
---|
794 | flags = pci_get_flags(pdev, bar);
|
---|
795 | if (flags & IORESOURCE_IO) {
|
---|
796 | if (check_region(pci_resource_start(pdev, bar), pci_resource_len(pdev, bar)))
|
---|
797 | goto err_out;
|
---|
798 | request_region(pci_resource_start(pdev, bar),
|
---|
799 | pci_resource_len(pdev, bar), res_name);
|
---|
800 | }
|
---|
801 | else if (flags & IORESOURCE_MEM) {
|
---|
802 | if (check_mem_region(pci_resource_start(pdev, bar), pci_resource_len(pdev, bar)))
|
---|
803 | goto err_out;
|
---|
804 | request_mem_region(pci_resource_start(pdev, bar),
|
---|
805 | pci_resource_len(pdev, bar), res_name);
|
---|
806 | }
|
---|
807 |
|
---|
808 | return 0;
|
---|
809 |
|
---|
810 | err_out:
|
---|
811 | printk(KERN_WARNING "PCI: Unable to reserve %s region #%d:%lx@%lx for device %s\n",
|
---|
812 | flags & IORESOURCE_IO ? "I/O" : "mem",
|
---|
813 | bar + 1, /* PCI BAR # */
|
---|
814 | pci_resource_len(pdev, bar), pci_resource_start(pdev, bar),
|
---|
815 | res_name);
|
---|
816 | return -EBUSY;
|
---|
817 | }
|
---|
818 |
|
---|
819 | void pci_release_region(struct pci_dev *pdev, int bar)
|
---|
820 | {
|
---|
821 | int flags;
|
---|
822 |
|
---|
823 | if (pci_resource_len(pdev, bar) == 0)
|
---|
824 | return;
|
---|
825 | flags = pci_get_flags(pdev, bar);
|
---|
826 | if (flags & IORESOURCE_IO) {
|
---|
827 | release_region(pci_resource_start(pdev, bar),
|
---|
828 | pci_resource_len(pdev, bar));
|
---|
829 | }
|
---|
830 | else if (flags & IORESOURCE_MEM) {
|
---|
831 | release_mem_region(pci_resource_start(pdev, bar),
|
---|
832 | pci_resource_len(pdev, bar));
|
---|
833 | }
|
---|
834 | }
|
---|
835 |
|
---|
836 | int pci_request_regions(struct pci_dev *pdev, char *res_name)
|
---|
837 | {
|
---|
838 | int i;
|
---|
839 |
|
---|
840 | for (i = 0; i < 6; i++)
|
---|
841 | if (pci_request_region(pdev, i, res_name))
|
---|
842 | goto err;
|
---|
843 | return 0;
|
---|
844 | err:
|
---|
845 | while (--i >= 0)
|
---|
846 | pci_release_region(pdev, i);
|
---|
847 | return -EBUSY;
|
---|
848 | }
|
---|
849 |
|
---|
850 | void pci_release_regions(struct pci_dev *pdev)
|
---|
851 | {
|
---|
852 | int i;
|
---|
853 | for (i = 0; i < 6; i++)
|
---|
854 | pci_release_region(pdev, i);
|
---|
855 | }
|
---|
856 |
|
---|
857 | const struct pci_device_id * pci_match_device(const struct pci_device_id *ids, struct pci_dev *dev)
|
---|
858 | {
|
---|
859 | u16 subsystem_vendor, subsystem_device;
|
---|
860 |
|
---|
861 | pci_read_config_word(dev, PCI_SUBSYSTEM_VENDOR_ID, &subsystem_vendor);
|
---|
862 | pci_read_config_word(dev, PCI_SUBSYSTEM_ID, &subsystem_device);
|
---|
863 |
|
---|
864 | while (ids->vendor || ids->subvendor || ids->class_mask) {
|
---|
865 | if ((ids->vendor == PCI_ANY_ID || ids->vendor == dev->vendor) &&
|
---|
866 | (ids->device == PCI_ANY_ID || ids->device == dev->device) &&
|
---|
867 | (ids->subvendor == PCI_ANY_ID || ids->subvendor == subsystem_vendor) &&
|
---|
868 | (ids->subdevice == PCI_ANY_ID || ids->subdevice == subsystem_device) &&
|
---|
869 | !((ids->class ^ dev->_class) & ids->class_mask))
|
---|
870 | return ids;
|
---|
871 | ids++;
|
---|
872 | }
|
---|
873 | return NULL;
|
---|
874 | }
|
---|
875 |
|
---|
876 | int snd_pci_dev_present(const struct pci_device_id *ids)
|
---|
877 | {
|
---|
878 | while (ids->vendor || ids->subvendor) {
|
---|
879 | if (pci_find_device(ids->vendor, ids->subvendor, NULL))
|
---|
880 | return 1;
|
---|
881 | ids++;
|
---|
882 | }
|
---|
883 | return 0;
|
---|
884 | }
|
---|
885 |
|
---|
886 | struct pci_driver_mapping {
|
---|
887 | struct pci_dev *dev;
|
---|
888 | struct pci_driver *drv;
|
---|
889 | unsigned long dma_mask;
|
---|
890 | void *driver_data;
|
---|
891 | u32 saved_config[16];
|
---|
892 | };
|
---|
893 |
|
---|
894 | #define PCI_MAX_MAPPINGS 64
|
---|
895 | static struct pci_driver_mapping drvmap [PCI_MAX_MAPPINGS] = { { NULL, } , };
|
---|
896 |
|
---|
897 |
|
---|
898 | static struct pci_driver_mapping *get_pci_driver_mapping(struct pci_dev *dev)
|
---|
899 | {
|
---|
900 | int i;
|
---|
901 |
|
---|
902 | for (i = 0; i < PCI_MAX_MAPPINGS; i++)
|
---|
903 | if (drvmap[i].dev == dev)
|
---|
904 | return &drvmap[i];
|
---|
905 | return NULL;
|
---|
906 | }
|
---|
907 |
|
---|
908 | struct pci_driver *snd_pci_compat_get_pci_driver(struct pci_dev *dev)
|
---|
909 | {
|
---|
910 | struct pci_driver_mapping *map = get_pci_driver_mapping(dev);
|
---|
911 | if (map)
|
---|
912 | return map->drv;
|
---|
913 | return NULL;
|
---|
914 | }
|
---|
915 | #if 0
|
---|
916 | void * pci_get_drvdata (struct pci_dev *dev)
|
---|
917 | {
|
---|
918 | struct pci_driver_mapping *map = get_pci_driver_mapping(dev);
|
---|
919 | if (map)
|
---|
920 | return map->driver_data;
|
---|
921 | return NULL;
|
---|
922 | }
|
---|
923 |
|
---|
924 |
|
---|
925 | void pci_set_drvdata (struct pci_dev *dev, void *driver_data)
|
---|
926 | {
|
---|
927 | struct pci_driver_mapping *map = get_pci_driver_mapping(dev);
|
---|
928 | if (map)
|
---|
929 | map->driver_data = driver_data;
|
---|
930 | }
|
---|
931 | #endif
|
---|
932 |
|
---|
933 |
|
---|
934 | //******************************************************************************
|
---|
935 | //******************************************************************************
|
---|
936 | OSSRET OSS32_APMResume()
|
---|
937 | {
|
---|
938 | int i;
|
---|
939 | struct pci_driver *driver;
|
---|
940 |
|
---|
941 | dprintf(("OSS32_APMResume"));
|
---|
942 |
|
---|
943 | fSuspended = FALSE;
|
---|
944 |
|
---|
945 | for(i=0;i<MAX_PCI_DEVICES;i++)
|
---|
946 | {
|
---|
947 | if(pci_devices[i].devfn)
|
---|
948 | {
|
---|
949 | driver = pci_devices[i].pcidriver;
|
---|
950 | if(driver && driver->resume) {
|
---|
951 | driver->resume(&pci_devices[i]);
|
---|
952 | }
|
---|
953 | }
|
---|
954 | }
|
---|
955 |
|
---|
956 | return OSSERR_SUCCESS;
|
---|
957 | }
|
---|
958 | //******************************************************************************
|
---|
959 | //******************************************************************************
|
---|
960 | OSSRET OSS32_APMSuspend()
|
---|
961 | {
|
---|
962 | int i;
|
---|
963 | struct pci_driver *driver;
|
---|
964 |
|
---|
965 | dprintf(("OSS32_APMSuspend"));
|
---|
966 |
|
---|
967 | fSuspended = TRUE;
|
---|
968 |
|
---|
969 | for(i=0;i<MAX_PCI_DEVICES;i++)
|
---|
970 | {
|
---|
971 | if(pci_devices[i].devfn)
|
---|
972 | {
|
---|
973 | driver = pci_devices[i].pcidriver;
|
---|
974 | if(driver && driver->suspend) {
|
---|
975 | driver->suspend(&pci_devices[i], SNDRV_CTL_POWER_D3cold);
|
---|
976 | }
|
---|
977 | }
|
---|
978 | }
|
---|
979 |
|
---|
980 | return OSSERR_SUCCESS;
|
---|
981 | }
|
---|
982 |
|
---|