Chameleon

Chameleon Svn Source Tree

Root/branches/azimutz/Chazi/i386/modules/GraphicsEnabler/GraphicsEnabler.c

1/*
2 * GraphicsEnabler Module
3 *Enabled many nvidia and ati cards to be used out of the box in
4 *OS X. This was converted from boot2 code to a boot2 module.
5 *
6 */
7
8#include "libsaio.h"
9#include "bootstruct.h"
10#include "boot.h"
11#include "pci.h"
12#include "nvidia.h"
13#include "modules.h"
14
15extern bool setup_ati_devprop(pci_dt_t *ati_dev); //Azi: move to header ??
16
17void GraphicsEnabler_hook(void* arg1, void* arg2, void* arg3, void* arg4);
18
19void GraphicsEnabler_start()
20{
21register_hook_callback("PCIDevice", &GraphicsEnabler_hook);
22}
23
24
25void GraphicsEnabler_hook(void* arg1, void* arg2, void* arg3, void* arg4)
26{
27pci_dt_t* current = arg1;
28
29if(current->class_id != PCI_CLASS_DISPLAY_VGA) return;
30
31char *devicepath = get_pci_dev_path(current);
32
33bool do_gfx_devprop = false;
34getBoolForKey(kGraphicsEnablerKey, &do_gfx_devprop, &bootInfo->bootConfig);
35
36if (do_gfx_devprop)
37{
38switch (current->vendor_id)
39{
40case PCI_VENDOR_ID_ATI:
41verbose("ATI VGA Controller [%04x:%04x] :: %s \n",
42current->vendor_id, current->device_id, devicepath);
43setup_ati_devprop(current);
44break;
45
46case PCI_VENDOR_ID_INTEL:
47//message to be removed once support for these cards is added
48verbose("Intel VGA Controller [%04x:%04x] :: %s (currently NOT SUPPORTED)\n",
49current->vendor_id, current->device_id, devicepath);
50break;
51
52case PCI_VENDOR_ID_NVIDIA:
53setup_nvidia_devprop(current);
54break;
55}
56}
57}
58

Archive Download this file

Revision: 818