4
* (Based on public domain libpci example.c written by Martin Mares.)
5
* Copyright (c) 2006 Jakub Jermar
7
* Can be freely distributed and used under the terms of the GNU GPL.
20
#include <ipc/services.h>
23
#include "libpci/pci.h"
25
#define PCI_CONF1 0xcf8
26
#define PCI_CONF1_SIZE 8
30
static struct pci_access *pacc;
32
int main(int argc, char *argv[])
37
ipcarg_t ns_in_phone_hash;
39
printf("%s: HelenOS PCI driver\n", NAME);
42
* Gain control over PCI configuration ports.
44
iospace_enable(task_get_id(), (void *) PCI_CONF1, PCI_CONF1_SIZE);
46
pacc = pci_alloc(); /* Get the pci_access structure */
47
pci_init(pacc); /* Initialize the PCI library */
48
pci_scan_bus(pacc); /* We want to get the list of devices */
49
for(dev=pacc->devices; dev; dev=dev->next) { /* Iterate over all devices */
50
pci_fill_info(dev, PCI_FILL_IDENT | PCI_FILL_BASES | PCI_FILL_IRQ);
51
c = pci_read_word(dev, PCI_CLASS_DEVICE); /* Read config register directly */
52
printf("%02x:%02x.%d vendor=%04x device=%04x class=%04x irq=%d base0=%lx\n",
53
dev->bus, dev->dev, dev->func, dev->vendor_id, dev->device_id,
54
c, dev->irq, dev->base_addr[0]);
55
printf("\t%s\n", pci_lookup_name(pacc, buf, sizeof(buf), PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
56
dev->vendor_id, dev->device_id));
59
printf("%s: registering at naming service.\n", NAME);
60
if (ipc_connect_to_me(PHONE_NS, SERVICE_PCI, 0, 0, &ns_in_phone_hash) != 0) {
61
printf("Failed to register %s at naming service.\n", NAME);
65
printf("%s: accepting connections\n", NAME);
69
ipcarg_t retval = ENOTSUP;
71
callid = ipc_wait_for_call(&call);
72
switch(IPC_GET_METHOD(call)) {
73
case IPC_M_CONNECT_ME_TO:
77
ipc_answer_0(callid, retval);
78
printf("%s: received call from %lX\n", NAME,