Chameleon

Chameleon Svn Source Tree

Root/branches/Chimera/i386/libsaio/pci_setup.c

1#include "libsaio.h"
2#include "boot.h"
3#include "bootstruct.h"
4#include "pci.h"
5#include "nvidia.h"
6
7
8extern bool setup_ati_devprop(pci_dt_t *ati_dev);
9extern void set_eth_builtin(pci_dt_t *eth_dev);
10extern void notify_usb_dev(pci_dt_t *pci_dev);
11extern void force_enable_hpet(pci_dt_t *lpc_dev);
12
13extern pci_dt_t *dram_controller_dev;
14
15void setup_pci_devs(pci_dt_t *pci_dt)
16{
17char *devicepath;
18bool do_eth_devprop, do_gfx_devprop, do_enable_hpet;
19pci_dt_t *current = pci_dt;
20
21do_eth_devprop = do_gfx_devprop = do_enable_hpet = false;
22
23getBoolForKey(kEthernetBuiltIn, &do_eth_devprop, &bootInfo->bootConfig);
24getBoolForKey(kGraphicsEnabler, &do_gfx_devprop, &bootInfo->bootConfig);
25getBoolForKey(kForceHPET, &do_enable_hpet, &bootInfo->bootConfig);
26
27while (current)
28{
29devicepath = get_pci_dev_path(current);
30
31switch (current->class_id)
32{
33case PCI_CLASS_BRIDGE_HOST:
34if (current->dev.addr == PCIADDR(0, 0, 0))
35dram_controller_dev = current;
36break;
37
38case PCI_CLASS_NETWORK_ETHERNET:
39if (do_eth_devprop)
40set_eth_builtin(current);
41break;
42
43case PCI_CLASS_DISPLAY_VGA:
44if (do_gfx_devprop)
45switch (current->vendor_id)
46{
47case PCI_VENDOR_ID_ATI:
48setup_ati_devprop(current);
49break;
50
51case PCI_VENDOR_ID_INTEL:
52/* message to be removed once support for these cards is added */
53verbose("Intel VGA Controller [%04x:%04x] :: %s (currently NOT SUPPORTED)\n",
54current->vendor_id, current->device_id, devicepath);
55break;
56
57case PCI_VENDOR_ID_NVIDIA:
58setup_nvidia_devprop(current);
59break;
60}
61break;
62
63case PCI_CLASS_SERIAL_USB:
64notify_usb_dev(current);
65break;
66
67case PCI_CLASS_BRIDGE_ISA:
68if (do_enable_hpet)
69force_enable_hpet(current);
70break;
71}
72
73setup_pci_devs(current->children);
74current = current->next;
75}
76}
77

Archive Download this file

Revision: 878