2 * The PCI Library -- User Access
4 * Copyright (c) 1997--2008 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL.
17 pci_scan_bus(struct pci_access *a)
23 pci_alloc_dev(struct pci_access *a)
25 struct pci_dev *d = pci_malloc(a, sizeof(struct pci_dev));
27 memset(d, 0, sizeof(*d));
29 d->methods = a->methods;
31 if (d->methods->init_dev)
32 d->methods->init_dev(d);
37 pci_link_dev(struct pci_access *a, struct pci_dev *d)
46 pci_get_dev(struct pci_access *a, int domain, int bus, int dev, int func)
48 struct pci_dev *d = pci_alloc_dev(a);
57 void pci_free_dev(struct pci_dev *d)
59 if (d->methods->cleanup_dev)
60 d->methods->cleanup_dev(d);
65 pci_read_data(struct pci_dev *d, void *buf, int pos, int len)
68 d->access->error("Unaligned read: pos=%02x, len=%d", pos, len);
69 if (pos + len <= d->cache_len)
70 memcpy(buf, d->cache + pos, len);
71 else if (!d->methods->read(d, pos, buf, len))
72 memset(buf, 0xff, len);
76 pci_read_byte(struct pci_dev *d, int pos)
79 pci_read_data(d, &buf, pos, 1);
84 pci_read_word(struct pci_dev *d, int pos)
87 pci_read_data(d, &buf, pos, 2);
88 return le16_to_cpu(buf);
92 pci_read_long(struct pci_dev *d, int pos)
95 pci_read_data(d, &buf, pos, 4);
96 return le32_to_cpu(buf);
100 pci_read_block(struct pci_dev *d, int pos, byte *buf, int len)
102 return d->methods->read(d, pos, buf, len);
106 pci_write_data(struct pci_dev *d, void *buf, int pos, int len)
109 d->access->error("Unaligned write: pos=%02x,len=%d", pos, len);
110 if (pos + len <= d->cache_len)
111 memcpy(d->cache + pos, buf, len);
112 return d->methods->write(d, pos, buf, len);
116 pci_write_byte(struct pci_dev *d, int pos, byte data)
118 return pci_write_data(d, &data, pos, 1);
122 pci_write_word(struct pci_dev *d, int pos, word data)
124 word buf = cpu_to_le16(data);
125 return pci_write_data(d, &buf, pos, 2);
129 pci_write_long(struct pci_dev *d, int pos, u32 data)
131 u32 buf = cpu_to_le32(data);
132 return pci_write_data(d, &buf, pos, 4);
136 pci_write_block(struct pci_dev *d, int pos, byte *buf, int len)
138 if (pos < d->cache_len)
140 int l = (pos + len >= d->cache_len) ? (d->cache_len - pos) : len;
141 memcpy(d->cache + pos, buf, l);
143 return d->methods->write(d, pos, buf, len);
147 pci_fill_info(struct pci_dev *d, int flags)
149 if (flags & PCI_FILL_RESCAN)
151 flags &= ~PCI_FILL_RESCAN;
154 if (flags & ~d->known_fields)
155 d->known_fields |= d->methods->fill_info(d, flags & ~d->known_fields);
156 return d->known_fields;
160 pci_setup_cache(struct pci_dev *d, byte *cache, int len)