Chameleon

Chameleon Svn Source Tree

Root/branches/slice/i386/libsaio/platform.c

1/*
2 * platform.c
3 *
4 * AsereBLN: cleanup
5 */
6
7#include "libsaio.h"
8#include "boot.h"
9#include "bootstruct.h"
10#include "pci.h"
11#include "platform.h"
12#include "cpu.h"
13#include "modules.h"
14
15#ifndef DEBUG_PLATFORM
16#define DEBUG_PLATFORM 0
17#endif
18
19#if DEBUG_PLATFORM
20#define DBG(x...)printf(x)
21#else
22#define DBG(x...)
23#endif
24
25//static
26PlatformInfo_t* Platform;
27
28/** Return if a CPU feature specified by feature is activated (true) or not (false) */
29inline bool platformCPUFeature(uint32_t feature)
30{
31return (Platform->CPU.Features & feature);
32}
33
34/** scan mem for memory autodection purpose */
35void scan_mem() {
36 static bool done = false;
37 if (done) return;
38
39execute_hook("ScanMemory", NULL, NULL, NULL, NULL);
40 done = true;
41}
42
43/**
44 Scan platform hardware information, called by the main entry point (common_boot() )
45 _before_ bootConfig xml parsing settings are loaded
46*/
47void scan_platform(void)
48{
49Platform = malloc(sizeof(PlatformInfo_t));
50memset(Platform, 0, sizeof(PlatformInfo_t));
51gPlatform = (void*)Platform;
52build_pci_dt();
53scan_cpu(); //Platform);
54//scan_mem(); Rek: called after pci devs init in fake_efi now ...
55}
56

Archive Download this file

Revision: 676