2 * The PCI Library -- User Access
4 * Copyright (c) 1997--2013 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);
62 pci_mfree(d->module_alias);
63 pci_mfree(d->phy_slot);
68 pci_read_data(struct pci_dev *d, void *buf, int pos, int len)
71 d->access->error("Unaligned read: pos=%02x, len=%d", pos, len);
72 if (pos + len <= d->cache_len)
73 memcpy(buf, d->cache + pos, len);
74 else if (!d->methods->read(d, pos, buf, len))
75 memset(buf, 0xff, len);
79 pci_read_byte(struct pci_dev *d, int pos)
82 pci_read_data(d, &buf, pos, 1);
87 pci_read_word(struct pci_dev *d, int pos)
90 pci_read_data(d, &buf, pos, 2);
91 return le16_to_cpu(buf);
95 pci_read_long(struct pci_dev *d, int pos)
98 pci_read_data(d, &buf, pos, 4);
99 return le32_to_cpu(buf);
103 pci_read_block(struct pci_dev *d, int pos, byte *buf, int len)
105 return d->methods->read(d, pos, buf, len);
109 pci_read_vpd(struct pci_dev *d, int pos, byte *buf, int len)
111 return d->methods->read_vpd ? d->methods->read_vpd(d, pos, buf, len) : 0;
115 pci_write_data(struct pci_dev *d, void *buf, int pos, int len)
118 d->access->error("Unaligned write: pos=%02x,len=%d", pos, len);
119 if (pos + len <= d->cache_len)
120 memcpy(d->cache + pos, buf, len);
121 return d->methods->write(d, pos, buf, len);
125 pci_write_byte(struct pci_dev *d, int pos, byte data)
127 return pci_write_data(d, &data, pos, 1);
131 pci_write_word(struct pci_dev *d, int pos, word data)
133 word buf = cpu_to_le16(data);
134 return pci_write_data(d, &buf, pos, 2);
138 pci_write_long(struct pci_dev *d, int pos, u32 data)
140 u32 buf = cpu_to_le32(data);
141 return pci_write_data(d, &buf, pos, 4);
145 pci_write_block(struct pci_dev *d, int pos, byte *buf, int len)
147 if (pos < d->cache_len)
149 int l = (pos + len >= d->cache_len) ? (d->cache_len - pos) : len;
150 memcpy(d->cache + pos, buf, l);
152 return d->methods->write(d, pos, buf, len);
156 pci_fill_info_v32(struct pci_dev *d, int flags)
158 if (flags & PCI_FILL_RESCAN)
160 flags &= ~PCI_FILL_RESCAN;
164 if (flags & ~d->known_fields)
165 d->known_fields |= d->methods->fill_info(d, flags & ~d->known_fields);
166 return d->known_fields;
169 /* In version 3.1, pci_fill_info got new flags => versioned alias */
170 /* In version 3.2, the same has happened */
171 STATIC_ALIAS(int pci_fill_info(struct pci_dev *d, int flags), pci_fill_info_v32(d, flags));
172 DEFINE_ALIAS(int pci_fill_info_v30(struct pci_dev *d, int flags), pci_fill_info_v32);
173 DEFINE_ALIAS(int pci_fill_info_v31(struct pci_dev *d, int flags), pci_fill_info_v32);
174 SYMBOL_VERSION(pci_fill_info_v30, pci_fill_info@LIBPCI_3.0);
175 SYMBOL_VERSION(pci_fill_info_v31, pci_fill_info@LIBPCI_3.1);
176 SYMBOL_VERSION(pci_fill_info_v32, pci_fill_info@@LIBPCI_3.2);
179 pci_setup_cache(struct pci_dev *d, byte *cache, int len)