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
7
8extern void set_eth_builtin(pci_dt_t *eth_dev);
9extern void notify_usb_dev(pci_dt_t *pci_dev);
10extern void force_enable_hpet(pci_dt_t *lpc_dev);
11
12extern pci_dt_t *dram_controller_dev;
13
14void setup_pci_devs(pci_dt_t *pci_dt)
15{
16bool do_eth_devprop, do_enable_hpet;
17pci_dt_t *current = pci_dt;
18
19do_eth_devprop = do_enable_hpet = false;
20
21getBoolForKey(kEthernetBuiltIn, &do_eth_devprop, &bootInfo->bootConfig);
22getBoolForKey(kForceHPET, &do_enable_hpet, &bootInfo->bootConfig);
23
24while (current)
25{
26execute_hook("PCIDevice", current, NULL, NULL, NULL);
27
28switch (current->class_id)
29{
30case PCI_CLASS_BRIDGE_HOST:
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
49setup_pci_devs(current->children);
50current = current->next;
51}
52}
53

Archive Download this file

Revision: 813