2 * The PCI Library -- User Access
4 * Copyright (c) 1997--2018 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;
32 if (d->methods->init_dev)
33 d->methods->init_dev(d);
38 pci_link_dev(struct pci_access *a, struct pci_dev *d)
44 * Applications compiled with older versions of libpci do not expect
45 * 32-bit domain numbers. To keep them working, we keep a 16-bit
46 * version of the domain number at the previous location in struct
47 * pci_dev. This will keep backward compatibility on systems which
48 * don't require large domain numbers.
50 if (d->domain > 0xffff)
51 d->domain_16 = 0xffff;
53 d->domain_16 = d->domain;
59 pci_get_dev(struct pci_access *a, int domain, int bus, int dev, int func)
61 struct pci_dev *d = pci_alloc_dev(a);
71 pci_free_properties(struct pci_dev *d)
73 struct pci_property *p;
75 while (p = d->properties)
77 d->properties = p->next;
82 void pci_free_dev(struct pci_dev *d)
84 if (d->methods->cleanup_dev)
85 d->methods->cleanup_dev(d);
88 pci_free_properties(d);
93 pci_read_data(struct pci_dev *d, void *buf, int pos, int len)
96 d->access->error("Unaligned read: pos=%02x, len=%d", pos, len);
97 if (pos + len <= d->cache_len)
98 memcpy(buf, d->cache + pos, len);
99 else if (!d->methods->read(d, pos, buf, len))
100 memset(buf, 0xff, len);
104 pci_read_byte(struct pci_dev *d, int pos)
107 pci_read_data(d, &buf, pos, 1);
112 pci_read_word(struct pci_dev *d, int pos)
115 pci_read_data(d, &buf, pos, 2);
116 return le16_to_cpu(buf);
120 pci_read_long(struct pci_dev *d, int pos)
123 pci_read_data(d, &buf, pos, 4);
124 return le32_to_cpu(buf);
128 pci_read_block(struct pci_dev *d, int pos, byte *buf, int len)
130 return d->methods->read(d, pos, buf, len);
134 pci_read_vpd(struct pci_dev *d, int pos, byte *buf, int len)
136 return d->methods->read_vpd ? d->methods->read_vpd(d, pos, buf, len) : 0;
140 pci_write_data(struct pci_dev *d, void *buf, int pos, int len)
143 d->access->error("Unaligned write: pos=%02x,len=%d", pos, len);
144 if (pos + len <= d->cache_len)
145 memcpy(d->cache + pos, buf, len);
146 return d->methods->write(d, pos, buf, len);
150 pci_write_byte(struct pci_dev *d, int pos, byte data)
152 return pci_write_data(d, &data, pos, 1);
156 pci_write_word(struct pci_dev *d, int pos, word data)
158 word buf = cpu_to_le16(data);
159 return pci_write_data(d, &buf, pos, 2);
163 pci_write_long(struct pci_dev *d, int pos, u32 data)
165 u32 buf = cpu_to_le32(data);
166 return pci_write_data(d, &buf, pos, 4);
170 pci_write_block(struct pci_dev *d, int pos, byte *buf, int len)
172 if (pos < d->cache_len)
174 int l = (pos + len >= d->cache_len) ? (d->cache_len - pos) : len;
175 memcpy(d->cache + pos, buf, l);
177 return d->methods->write(d, pos, buf, len);
181 pci_reset_properties(struct pci_dev *d)
185 d->module_alias = NULL;
188 pci_free_properties(d);
192 pci_fill_info_v35(struct pci_dev *d, int flags)
194 if (flags & PCI_FILL_RESCAN)
196 flags &= ~PCI_FILL_RESCAN;
197 pci_reset_properties(d);
199 if (flags & ~d->known_fields)
200 d->known_fields |= d->methods->fill_info(d, flags & ~d->known_fields);
201 return d->known_fields;
204 /* In version 3.1, pci_fill_info got new flags => versioned alias */
205 /* In versions 3.2, 3.3, 3.4 and 3.5, the same has happened */
206 STATIC_ALIAS(int pci_fill_info(struct pci_dev *d, int flags), pci_fill_info_v35(d, flags));
207 DEFINE_ALIAS(int pci_fill_info_v30(struct pci_dev *d, int flags), pci_fill_info_v35);
208 DEFINE_ALIAS(int pci_fill_info_v31(struct pci_dev *d, int flags), pci_fill_info_v35);
209 DEFINE_ALIAS(int pci_fill_info_v32(struct pci_dev *d, int flags), pci_fill_info_v35);
210 DEFINE_ALIAS(int pci_fill_info_v33(struct pci_dev *d, int flags), pci_fill_info_v35);
211 DEFINE_ALIAS(int pci_fill_info_v34(struct pci_dev *d, int flags), pci_fill_info_v35);
212 SYMBOL_VERSION(pci_fill_info_v30, pci_fill_info@LIBPCI_3.0);
213 SYMBOL_VERSION(pci_fill_info_v31, pci_fill_info@LIBPCI_3.1);
214 SYMBOL_VERSION(pci_fill_info_v32, pci_fill_info@LIBPCI_3.2);
215 SYMBOL_VERSION(pci_fill_info_v33, pci_fill_info@LIBPCI_3.3);
216 SYMBOL_VERSION(pci_fill_info_v34, pci_fill_info@LIBPCI_3.4);
217 SYMBOL_VERSION(pci_fill_info_v35, pci_fill_info@@LIBPCI_3.5);
220 pci_setup_cache(struct pci_dev *d, byte *cache, int len)
227 pci_set_property(struct pci_dev *d, u32 key, char *value)
229 struct pci_property *p;
230 struct pci_property **pp = &d->properties;
246 p = pci_malloc(d->access, sizeof(*p) + strlen(value));
250 strcpy(p->value, value);
256 pci_get_string_property(struct pci_dev *d, u32 prop)
258 struct pci_property *p;
260 for (p = d->properties; p; p = p->next)