Subversion Repositories HelenOS

Rev

Rev 4204 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1181 jermar 1
/*
1301 jermar 2
 * HelenOS PCI driver.
3
 *
2471 jermar 4
 * (Based on public domain libpci example.c written by Martin Mares.)
2071 jermar 5
 * Copyright (c) 2006 Jakub Jermar
1181 jermar 6
 *
1301 jermar 7
 * Can be freely distributed and used under the terms of the GNU GPL.
1181 jermar 8
 */
9
 
1740 jermar 10
/**
11
 * @addtogroup pci
12
 * @{
13
 */
14
 
1181 jermar 15
#include <stdio.h>
16
#include <ddi.h>
17
#include <task.h>
18
#include <stdlib.h>
1353 jermar 19
#include <ipc/ipc.h>
20
#include <ipc/services.h>
1335 jermar 21
#include <errno.h>
1181 jermar 22
 
1301 jermar 23
#include "libpci/pci.h"
24
 
1335 jermar 25
#define NAME        "PCI"
26
 
1343 jermar 27
static struct pci_access *pacc;
28
 
1181 jermar 29
int main(int argc, char *argv[])
30
{
1301 jermar 31
    struct pci_dev *dev;
32
    unsigned int c;
33
    char buf[80];
1336 jermar 34
    ipcarg_t ns_in_phone_hash;
1301 jermar 35
 
1335 jermar 36
    printf("%s: HelenOS PCI driver\n", NAME);
4221 trochtova 37
 
4204 trochtova 38
    pacc = pci_alloc();           /* Get the pci_access structure */   
1301 jermar 39
    pci_init(pacc);               /* Initialize the PCI library */
40
    pci_scan_bus(pacc);           /* We want to get the list of devices */
41
    for(dev=pacc->devices; dev; dev=dev->next) {   /* Iterate over all devices */
1324 jermar 42
        pci_fill_info(dev, PCI_FILL_IDENT | PCI_FILL_BASES | PCI_FILL_IRQ);
1301 jermar 43
        c = pci_read_word(dev, PCI_CLASS_DEVICE); /* Read config register directly */
44
        printf("%02x:%02x.%d vendor=%04x device=%04x class=%04x irq=%d base0=%lx\n",
45
            dev->bus, dev->dev, dev->func, dev->vendor_id, dev->device_id,
46
            c, dev->irq, dev->base_addr[0]);
47
        printf("\t%s\n", pci_lookup_name(pacc, buf, sizeof(buf), PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
48
            dev->vendor_id, dev->device_id));
49
    }
50
 
1335 jermar 51
    printf("%s: registering at naming service.\n", NAME);
2637 cejka 52
    if (ipc_connect_to_me(PHONE_NS, SERVICE_PCI, 0, 0, &ns_in_phone_hash) != 0) {
1335 jermar 53
        printf("Failed to register %s at naming service.\n", NAME);
54
        return -1;
55
    }
1343 jermar 56
 
1335 jermar 57
    printf("%s: accepting connections\n", NAME);
1343 jermar 58
    while (1) {    
1335 jermar 59
        ipc_call_t call;
60
        ipc_callid_t callid;
2619 jermar 61
        ipcarg_t retval = ENOTSUP;
1343 jermar 62
 
1365 jermar 63
        callid = ipc_wait_for_call(&call);
1343 jermar 64
        switch(IPC_GET_METHOD(call)) {
65
        case IPC_M_CONNECT_ME_TO:
2619 jermar 66
            retval = EOK;
1343 jermar 67
            break;
68
        }
2619 jermar 69
        ipc_answer_0(callid, retval);
70
        printf("%s: received call from %lX\n", NAME,
71
            call.in_phone_hash);
1335 jermar 72
    }
1343 jermar 73
 
74
    pci_cleanup(pacc);
1181 jermar 75
    return 0;
76
}
1740 jermar 77
 
78
/**
79
 * @}
80
 */