Chameleon

Chameleon Svn Source Tree

Root/branches/azimutz/Cleancut/i386/libsaio/pci_setup.c

1#include "libsaio.h"
2#include "boot.h"
3#include "bootstruct.h"
4#include "pci.h"
5#include "modules.h"
6#include "modules.h"
7
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{
17bool do_eth_devprop, do_enable_hpet;
18pci_dt_t *current = pci_dt;
19
20do_eth_devprop = do_enable_hpet = false;
21
22getBoolForKey(kEthernetBuiltIn, &do_eth_devprop, &bootInfo->bootConfig);
23getBoolForKey(kForceHPET, &do_enable_hpet, &bootInfo->bootConfig);
24
25while (current)
26{
27switch (current->class_id)
28{
29case PCI_CLASS_BRIDGE_HOST:
30if (current->dev.addr == PCIADDR(0, 0, 0))
31dram_controller_dev = current;
32break;
33
34case PCI_CLASS_NETWORK_ETHERNET:
35if (do_eth_devprop)
36set_eth_builtin(current);
37break;
38
39case PCI_CLASS_SERIAL_USB:
40notify_usb_dev(current);
41break;
42
43case PCI_CLASS_BRIDGE_ISA:
44if (do_enable_hpet)
45force_enable_hpet(current);
46break;
47}
48
49execute_hook("PCIDevice", current, NULL, NULL, NULL);
50
51setup_pci_devs(current->children);
52current = current->next;
53}
54}
55

Archive Download this file

Revision: 899