Chameleon

Chameleon Svn Source Tree

Root/branches/rek_obsolete/i386/libsaio/spd.c

Source at commit 177 created 13 years 10 months ago.
By valv, call the cpu/freq detection code late in the booter. Thanks Kabyl. New FSB detection code, plus a FixFSB and busratio keys. Added support for newer intel CPUs (Core i7/i5/i3). More nVidia Device-IDs added. Got rid of some annoying verbose messages. Healed DSDT dependency. Better CPU injection.
1/*
2 * Copyright 2010 AsereBLN. All rights reserved. <aserebln@googlemail.com>
3 *
4 * spd.c - obtain serial presene detect memory information
5 */
6
7#include "libsaio.h"
8#include "pci.h"
9#include "platform.h"
10#include "spd.h"
11
12#ifndef DEBUG_SPD
13#define DEBUG_SPD 0
14#endif
15
16#if DEBUG_SPD
17#define DBG(x...)printf(x)
18#else
19#define DBG(x...)
20#endif
21
22void scan_spd(PlatformInfo_t *p)
23{
24/* NYI */
25}
26

Archive Download this file

Revision: 177