Chameleon

Chameleon Svn Source Tree

Root/branches/cparm/i386/libsaio/platform.h

1/*
2 * platform.h
3 * AsereBLN: reworked and extended
4 *
5 */
6
7#ifndef __LIBSAIO_PLATFORM_H
8#define __LIBSAIO_PLATFORM_H
9
10#include "libsaio.h"
11#include "cpuid.h"
12#include "cpu_data.h"
13
14#define bitmask(h,l)((_Bit(h)|(_Bit(h)-1)) & ~(_Bit(l)-1))
15#define bitfield(x,h,l)(((x) & bitmask(h,l)) >> l)
16
17#define quad(hi,lo) (((uint64_t)(hi)) << 32 | (lo))
18
19/* Additional models supported by Chameleon (NOT SUPPORTED BY THE APPLE'S ORIGINAL KERNEL) */
20#define CPUID_MODEL_BANIAS 0x09
21#define CPUID_MODEL_DOTHAN 0x0D
22#define CPUID_MODEL_ATOM0x1C
23
24/* CPUID Vendor */
25#define CPUID_VENDOR_INTEL 0x756E6547
26#define CPUID_VENDOR_AMD 0x68747541
27
28/* SMBIOS Memory Types */
29#define SMB_MEM_TYPE_UNDEFINED0
30#define SMB_MEM_TYPE_OTHER1
31#define SMB_MEM_TYPE_UNKNOWN2
32#define SMB_MEM_TYPE_DRAM3
33#define SMB_MEM_TYPE_EDRAM4
34#define SMB_MEM_TYPE_VRAM5
35#define SMB_MEM_TYPE_SRAM6
36#define SMB_MEM_TYPE_RAM7
37#define SMB_MEM_TYPE_ROM8
38#define SMB_MEM_TYPE_FLASH9
39#define SMB_MEM_TYPE_EEPROM10
40#define SMB_MEM_TYPE_FEPROM11
41#define SMB_MEM_TYPE_EPROM12
42#define SMB_MEM_TYPE_CDRAM13
43#define SMB_MEM_TYPE_3DRAM14
44#define SMB_MEM_TYPE_SDRAM15
45#define SMB_MEM_TYPE_SGRAM16
46#define SMB_MEM_TYPE_RDRAM17
47#define SMB_MEM_TYPE_DDR18
48#define SMB_MEM_TYPE_DDR219
49#define SMB_MEM_TYPE_FBDIMM20
50#define SMB_MEM_TYPE_DDR324// Supported in 10.5.6+ AppleSMBIOS
51
52/* Memory Configuration Types */
53#define SMB_MEM_CHANNEL_UNKNOWN0
54#define SMB_MEM_CHANNEL_SINGLE1
55#define SMB_MEM_CHANNEL_DUAL2
56#define SMB_MEM_CHANNEL_TRIPLE3
57
58/* Maximum number of ram slots */
59#define MAX_RAM_SLOTS8
60#define RAM_SLOT_ENUMERATOR{0, 2, 4, 1, 3, 5, 6, 8, 10, 7, 9, 11}
61
62/* Maximum number of SPD bytes */
63#define MAX_SPD_SIZE256
64
65/* Size of SMBIOS UUID in bytes */
66#define UUID_LEN16
67
68typedef struct _RamSlotInfo_t {
69 uint32_tModuleSize;// Size of Module in MB
70 uint32_tFrequency; // in Mhz
71 const char*Vendor;
72 const char*PartNo;
73 const char*SerialNo;
74 char*spd;// SPD Dump
75 boolInUse;
76 uint8_tType;
77 uint8_tBankConnections; // table type 6, see (3.3.7)
78 uint8_tBankConnCnt;
79
80} RamSlotInfo_t;
81
82#define envVendor "boot.cpu.vendor"
83#define envFamily "boot.cpu.family"
84
85#define envCPUIDMaxBasic "boot.cpu.max_basic"
86#define envCPUIDMaxExt "boot.cpu.max_ext"
87#define envMicrocodeVersion "boot.cpu.microcode_version"
88#define envSignature "boot.cpu.signature"
89#define envStepping "boot.cpu.stepping"
90#define envModel "boot.cpu.model"
91#define envBrandString "boot.cpu.brand_string"
92#define envNoThreads "boot.cpu.logical_per_package"
93#define envNoCores "boot.cpu.cores_per_package"
94#define envExtModel "boot.cpu.extmodel"
95#define envExtFamily "boot.cpu.extfamily"
96#define envBrand "boot.cpu.brand"
97#define envFeatures "boot.cpu.feature_bits"
98#define envExtFeatures "boot.cpu.extfeature_bits"
99
100#define envSubCstates "boot.cpu.mwait.sub_Cstates"
101#define envExtensions "boot.cpu.mwait.extensions"
102
103#define envDynamicAcceleration "boot.cpu.thermal.dynamic_acceleration"
104#define envInvariantAPICTimer "boot.cpu.thermal.invariant_APIC_timer"
105#define envFineGrainClockMod "boot.cpu.thermal.fine_grain_clock_mod"
106
107#define envIsMobile "boot.hw.is_mobile"
108#define envMaxCoef "boot.hw.maxcoef"
109#define envMaxDiv "boot.hw.maxdiv"
110#define envCurrCoef "boot.hw.currcoef"
111#define envCurrDiv "boot.hw.currdiv"
112#define envTSCFreq "boot.hw.tscfrequency"
113#define envFSBFreq "boot.hw.busfrequency"
114#define envCPUFreq "boot.hw.cpufrequency"
115#define envIsServer "boot.hw.is_server"
116#define envHardwareSignature "boot.hw.signature"
117#define envType "boot.hw.type"
118#define envUUID "boot.hw.uuid_ptr"
119#define envSysId "boot.hw.sysid"
120#define envgBIOSDev "boot.hw.bios_device"
121#define envgDeviceCount "boot.hw.device_count"
122#define envarchCpuType"boot.hw.cputype"
123
124#define envgHaveKernelCache"boot.kern.HaveKernelCache"
125#define envAdler32"boot.kern.adler32"
126#define envkCacheFile "boot.kern.kernelcache"
127#define envMKextName "boot.kern.mkextcache"
128#define envArgCntRemaining "boot.kern.argCount_remaining"
129#define envgBootArgs"boot.kern.boot_args"
130
131#define envgBootMode "boot.options.boot_mode"
132#define envSysConfigValid "boot.options.sysconfing_valid"
133#define envgOverrideKernel "boot.options.kernel_overide"
134#define envgEnableCDROMRescan "boot.options.rescan_cdrom"
135#define envgScanSingleDrive "boot.options.single_drive"
136#define envShouldboot "boot.options.should_boot"
137#define envgVerboseMode "boot.options.boot_verbose"
138
139#define envDriverExtSpec "boot.drivers.extspec"
140#define envDriverSpec "boot.drivers.spec"
141#define envDriverFileSpec "boot.drivers.filespec"
142#define envDriverTempSpec "boot.drivers.tempspec"
143#define envDriverFileName "boot.drivers.filename"
144
145#define envBootBanner "boot.ui.banner"
146#define envBootPrompt "boot.ui.prompt"
147#define envBootRescanPrompt "boot.ui.promptrescan"
148
149#define envgMenuRow "boot.ui.menu_row"
150#define envgMenuHeight "boot.ui.menu_height"
151#define envgMenuItemCount "boot.ui.menu_itemcount"
152#define envgMenuTop "boot.ui.menu_top"
153#define envgMenuBottom "boot.ui.menu_bottom"
154#define envgMenuSelection "boot.ui.menu_selection"
155#define envgMenuStart "boot.ui.menu_start"
156#define envgMenuEnd "boot.ui.menu_end"
157
158#define envConsoleErr"boot.console.stderr"
159
160#define envDeviceNumber "boot.dev.efi.devcount"
161#define envEFIString "boot.dev.efi.efistring"
162
163#define envgBootFileType"boot.disk.Bootfiletype"
164#define envHFSLoadVerbose"boot.disk.HFSLoadVerbose"
165#define envgFSLoadAddress"boot.disk.FSLoadAddress"
166#define envgBIOSBootVolume"boot.disk.BIOSBootVolume"
167#define envgBootVolume"boot.disk.BootVolume"
168
169#define envConvMem "boot.memmap.Conventional"
170#define envExtMem "boot.memmap.Extended"
171#define envMemoryMap "boot.memmap.Address"
172#define envMemoryMapCnt "boot.memmap.Count"
173#define envMemoryMapNode "boot.memmap.devNode"
174
175#define envRamFrequency "boot.ram.frequency"
176#define envRamCas "boot.ram.tCAS"
177#define envRamTrc "boot.ram.tRCD"
178#define envRamRas "boot.ram.tRAS"
179#define envRamTrp "boot.ram.tRP"
180#define envRamChannels "boot.ram.channels"
181#define envRamType "boot.ram.type"
182#define envRamDimm "boot.ram.dimm"
183
184#define envDMIMemModules "boot.dmi.memory_modules"
185#define envDMIMaxMemorySlots "boot.dmi.max_slots"
186#define envDMICntMemorySlots "boot.dmi.slots_count"
187#define envDmiDimm "boot.dmi.dimm"
188
189#if UNUSED
190typedef struct _PlatformInfo_t {
191
192 struct CPU_t {
193 uint64_tFeatures;// CPU Features like MMX, SSE2, VT ...
194 uint64_tExtFeatures; // CPU Extended Features like SYSCALL, XD, EM64T, LAHF ...
195 uint32_tVendor;// Vendor
196 uint32_tSignature;// Signature
197 uint8_t Stepping;// Stepping
198 uint8_t Model;// Model
199 uint8_t ExtModel;// Extended Model
200 uint8_t Family;// Family
201 uint8_t ExtFamily;// Extended Family
202 uint32_tNoCores;// No Cores per Package
203 uint32_tNoThreads;// Threads per Package
204 uint8_tMaxCoef;// Max Multiplier
205 uint8_tMaxDiv;
206 uint8_tCurrCoef;// Current Multiplier
207 uint8_tCurrDiv;
208 uint64_tTSCFrequency;// TSC Frequency Hz
209 uint64_tFSBFrequency;// FSB Frequency Hz
210 uint64_tCPUFrequency;// CPU Frequency Hz
211 charBrandString[48];// 48 Byte Branding String
212 uint8_t Brand;
213 uint32_tMicrocodeVersion; // The microcode version number a.k.a. signature a.k.a. BIOS ID
214
215 bool isMobile;
216 bool isServer;// Unlike isMobile, if this value is set it will disable all kind of detection and enforce "Server" as platform (must be set by user)
217
218 boolean_tdynamic_acceleration;
219 boolean_tinvariant_APIC_timer;
220 boolean_tfine_grain_clock_mod;
221
222 uint32_t cpuid_max_basic;
223uint32_t cpuid_max_ext;
224 uint32_tsub_Cstates;
225 uint32_t extensions;
226
227 } CPU;
228
229 struct RAM_t {
230 uint64_tFrequency;// Ram Frequency
231 uint32_tDivider;// Memory divider
232 uint8_tCAS;// CAS 1/2/2.5/3/4/5/6/7
233 uint8_tTRC;
234 uint8_tTRP;
235 uint8_tRAS;
236 uint8_tChannels;// Channel Configuration Single,Dual or Triple
237 uint8_tNoSlots;// Maximum no of slots available
238 uint8_tType;// Standard SMBIOS v2.5 Memory Type
239 RamSlotInfo_tDIMM[MAX_RAM_SLOTS];// Information about each slot
240 } RAM;
241
242 struct DMI {
243 intMaxMemorySlots;// number of memory slots polulated by SMBIOS
244 intCntMemorySlots;// number of memory slots counted
245 intMemoryModules;// number of memory modules installed
246 intDIMM[MAX_RAM_SLOTS];// Information and SPD mapping for each slot
247 } DMI;
248
249uint8_tType;// System Type: 1=Desktop, 2=Portable... according ACPI2.0 (FACP: PreferredProfile)
250uint8_t*UUID; // SMBios UUID
251uint32_thardware_signature;
252int8_tsysid[16];
253
254} PlatformInfo_t;
255#endif
256
257#endif /* !__LIBSAIO_PLATFORM_H */
258

Archive Download this file

Revision: 1984