2 * The PCI Library -- Internal Include File
4 * Copyright (c) 1997--2003 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL.
12 #define UNUSED __attribute__((unused))
18 #ifdef HAVE_PM_LINUX_BYTEORDER_H
20 #include <asm/byteorder.h>
21 #define cpu_to_le16 __cpu_to_le16
22 #define cpu_to_le32 __cpu_to_le32
23 #define le16_to_cpu __le16_to_cpu
24 #define le32_to_cpu __le32_to_cpu
30 #define BYTE_ORDER __BYTE_ORDER
31 #define BIG_ENDIAN __BIG_ENDIAN
35 #include <sys/types.h>
39 #include <sys/byteorder.h>
40 #define BIG_ENDIAN 4321
42 #define BYTE_ORDER 1234
44 #define BYTE_ORDER 4321
48 #if BYTE_ORDER == BIG_ENDIAN
49 #define cpu_to_le16 swab16
50 #define cpu_to_le32 swab32
51 #define le16_to_cpu swab16
52 #define le32_to_cpu swab32
54 static inline word swab16(word w)
56 return (w << 8) | ((w >> 8) & 0xff);
59 static inline u32 swab32(u32 w)
61 return ((w & 0xff000000) >> 24) |
62 ((w & 0x00ff0000) >> 8) |
63 ((w & 0x0000ff00) << 8) |
64 ((w & 0x000000ff) << 24);
67 #define cpu_to_le16(x) (x)
68 #define cpu_to_le32(x) (x)
69 #define le16_to_cpu(x) (x)
70 #define le32_to_cpu(x) (x)
77 void (*config)(struct pci_access *);
78 int (*detect)(struct pci_access *);
79 void (*init)(struct pci_access *);
80 void (*cleanup)(struct pci_access *);
81 void (*scan)(struct pci_access *);
82 int (*fill_info)(struct pci_dev *, int flags);
83 int (*read)(struct pci_dev *, int pos, byte *buf, int len);
84 int (*write)(struct pci_dev *, int pos, byte *buf, int len);
85 void (*init_dev)(struct pci_dev *);
86 void (*cleanup_dev)(struct pci_dev *);
89 void pci_generic_scan_bus(struct pci_access *, byte *busmap, int bus);
90 void pci_generic_scan(struct pci_access *);
91 int pci_generic_fill_info(struct pci_dev *, int flags);
92 int pci_generic_block_read(struct pci_dev *, int pos, byte *buf, int len);
93 int pci_generic_block_write(struct pci_dev *, int pos, byte *buf, int len);
95 void *pci_malloc(struct pci_access *, int);
96 void pci_mfree(void *);
98 struct pci_dev *pci_alloc_dev(struct pci_access *);
99 int pci_link_dev(struct pci_access *, struct pci_dev *);
101 extern struct pci_methods pm_intel_conf1, pm_intel_conf2, pm_linux_proc,
102 pm_syscalls, pm_fbsd_device, pm_aix_device, pm_nbsd_libpci, pm_dump;