- Linus: drop support for old-style Makefiles entirely. Big.
[davej-history.git] / drivers / pci / compat.c
blobce058cc0e7c358a0d7e9fa5d59f21e5291c90a33
1 /*
2 * $Id: compat.c,v 1.1 1998/02/16 10:35:50 mj Exp $
4 * PCI Bus Services -- Function For Backward Compatibility
6 * Copyright 1998--2000 Martin Mares <mj@suse.cz>
7 */
9 #include <linux/types.h>
10 #include <linux/kernel.h>
11 #include <linux/pci.h>
13 int
14 pcibios_present(void)
16 return !list_empty(&pci_devices);
19 int
20 pcibios_find_class(unsigned int class, unsigned short index, unsigned char *bus, unsigned char *devfn)
22 const struct pci_dev *dev = NULL;
23 int cnt = 0;
25 while ((dev = pci_find_class(class, dev)))
26 if (index == cnt++) {
27 *bus = dev->bus->number;
28 *devfn = dev->devfn;
29 return PCIBIOS_SUCCESSFUL;
31 return PCIBIOS_DEVICE_NOT_FOUND;
35 int
36 pcibios_find_device(unsigned short vendor, unsigned short device, unsigned short index,
37 unsigned char *bus, unsigned char *devfn)
39 const struct pci_dev *dev = NULL;
40 int cnt = 0;
42 while ((dev = pci_find_device(vendor, device, dev)))
43 if (index == cnt++) {
44 *bus = dev->bus->number;
45 *devfn = dev->devfn;
46 return PCIBIOS_SUCCESSFUL;
48 return PCIBIOS_DEVICE_NOT_FOUND;
51 #define PCI_OP(rw,size,type) \
52 int pcibios_##rw##_config_##size (unsigned char bus, unsigned char dev_fn, \
53 unsigned char where, unsigned type val) \
54 { \
55 struct pci_dev *dev = pci_find_slot(bus, dev_fn); \
56 if (!dev) return PCIBIOS_DEVICE_NOT_FOUND; \
57 return pci_##rw##_config_##size(dev, where, val); \
60 PCI_OP(read, byte, char *)
61 PCI_OP(read, word, short *)
62 PCI_OP(read, dword, int *)
63 PCI_OP(write, byte, char)
64 PCI_OP(write, word, short)
65 PCI_OP(write, dword, int)