Home | History | Annotate | Download | only in footbridge

Lines Matching defs:pcv

139 footbridge_pci_bus_maxdevs(void *pcv, int busno)
142 printf("footbridge_pci_bus_maxdevs(pcv=%p, busno=%d)\n", pcv, busno);
148 footbridge_pci_make_tag(void *pcv, int bus, int device, int function)
151 printf("footbridge_pci_make_tag(pcv=%p, bus=%d, device=%d, function=%d)\n",
152 pcv, bus, device, function);
158 footbridge_pci_decompose_tag(void *pcv, pcitag_t tag, int *busp, int *devicep, int *functionp)
161 printf("footbridge_pci_decompose_tag(pcv=%p, tag=0x%08x, bp=%p, dp=%p, fp=%p)\n",
162 pcv, (uint32_t)tag, busp, devicep, functionp);
174 footbridge_pci_conf_read(void *pcv, pcitag_t tag, int reg)
183 footbridge_pci_decompose_tag(pcv, tag, &bus, &device, &function);
195 printf("footbridge_pci_conf_read(pcv=%p tag=0x%08x reg=0x%02x)=0x%08x\n",
196 pcv, (uint32_t)tag, reg, data);
202 footbridge_pci_conf_write(void *pcv, pcitag_t tag, int reg, pcireg_t data)
210 footbridge_pci_decompose_tag(pcv, tag, &bus, &device, &function);
220 printf("footbridge_pci_conf_write(pcv=%p tag=0x%08x reg=0x%02x, 0x%08x)\n",
221 pcv, (uint32_t)tag, reg, data);
235 void *pcv = pa->pa_pc;
239 footbridge_pci_decompose_tag(pcv, intrtag, &bus, &device, &function);
240 printf("footbridge_pci_intr_map: pcv=%p, tag=%08x pin=%d line=%d dev=%d\n",
241 pcv, (uint32_t)intrtag, pin, line, device);
313 footbridge_pci_intr_string(void *pcv, pci_intr_handle_t ih, char *buf, size_t len)
316 printf("footbridge_pci_intr_string(pcv=%p, ih=0x%" PRIx64 ")\n", pcv, ih);
333 void *pcv,
344 printf("footbridge_pci_intr_establish(pcv=%p, ih=0x%" PRIx64 ", level=%d, func=%p, arg=%p, xname=%s)\n",
345 pcv, ih, level, func, arg, xname);
349 intrstr = footbridge_pci_intr_string(pcv, ih, buf, sizeof(buf));
369 footbridge_pci_intr_disestablish(void *pcv, void *cookie)
372 printf("footbridge_pci_intr_disestablish(pcv=%p, cookie=%p)\n",
373 pcv, cookie);