Chameleon

Chameleon Svn Source Tree

Root/branches/meklort/i386/modules/Memory/Memory.c

Source at commit 550 created 13 years 6 months ago.
By meklort, Removed static keyword from moduels. Fixed a few issues. NOTE: ACPI module is currently required for a proper boot.
1/*
2 * DRAM Controller Module
3 * Scans the dram controller and notifies OS X of the memory modules.
4 *This was converted from boot2 code to a boot2 module.
5 *
6 */
7
8#include "libsaio.h"
9#include "pci.h"
10#include "platform.h"
11#include "dram_controllers.h"
12#include "spd.h"
13#include "boot.h"
14#include "bootstruct.h"
15#include "modules.h"
16
17pci_dt_t * dram_controller_dev = NULL;
18
19
20void Memory_hook(void* arg1, void* arg2, void* arg3, void* arg4);
21void Memory_PCIDevice_hook(void* arg1, void* arg2, void* arg3, void* arg4);
22
23
24void Memory_start()
25{
26register_hook_callback("PCIDevice", &Memory_PCIDevice_hook);
27register_hook_callback("ScanMemory", &Memory_hook);
28
29}
30
31void Memory_PCIDevice_hook(void* arg1, void* arg2, void* arg3, void* arg4)
32{
33pci_dt_t* current = arg1;
34if(current->class_id == PCI_CLASS_BRIDGE_HOST)
35{
36dram_controller_dev = current;
37}
38}
39
40void Memory_hook(void* arg1, void* arg2, void* arg3, void* arg4)
41{
42
43
44bool useAutodetection = true;
45 getBoolForKey(kUseMemDetect, &useAutodetection, &bootInfo->bootConfig);
46
47
48 if (useAutodetection) {
49
50if (dram_controller_dev!=NULL) {
51scan_dram_controller(dram_controller_dev); // Rek: pci dev ram controller direct and fully informative scan ...
52}
53scan_memory(Platform); // unfortunately still necesary for some comp where spd cant read correct speed
54scan_spd(Platform);
55//getc();
56 }
57
58}

Archive Download this file

Revision: 550