Chameleon

Chameleon Svn Source Tree

Root/branches/valv/branch/i386/libsaio/pci_setup.c

  • Property svn:executable set to
1#include "libsaio.h"
2#include "boot.h"
3#include "bootstruct.h"
4#include "pci.h"
5#include "nvidia.h"
6#include "ati.h"
7#include "gma.h"
8
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:
34dram_controller_dev = current;
35break;
36
37case PCI_CLASS_NETWORK_ETHERNET:
38if (do_eth_devprop)
39set_eth_builtin(current);
40break;
41
42case PCI_CLASS_DISPLAY_VGA:
43if (do_gfx_devprop)
44switch (current->vendor_id)
45{
46case PCI_VENDOR_ID_ATI:
47verbose("ATI VGA Controller [%04x:%04x] :: %s \n",
48current->vendor_id, current->device_id, devicepath);
49setup_ati_devprop(current);
50break;
51
52case PCI_VENDOR_ID_INTEL:
53verbose("Intel Graphics Controller [%04x:%04x] :: %s \n",
54current->vendor_id, current->device_id, devicepath);
55setup_gma_devprop(current);
56break;
57
58case PCI_VENDOR_ID_NVIDIA:
59setup_nvidia_devprop(current);
60break;
61}
62break;
63
64case PCI_CLASS_SERIAL_USB:
65notify_usb_dev(current);
66break;
67
68case PCI_CLASS_BRIDGE_ISA:
69if (do_enable_hpet)
70force_enable_hpet(current);
71break;
72}
73
74setup_pci_devs(current->children);
75current = current->next;
76}
77}
78

Archive Download this file

Revision: 661