forked from xt-sys/exectos
29 lines
731 B
C
29 lines
731 B
C
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtoskrnl/hl/globals.c
|
|
* DESCRIPTION: Architecture independent global variables related to HL subsystem
|
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
*/
|
|
|
|
#include <xtos.h>
|
|
|
|
|
|
/* ACPI tables cache list */
|
|
LIST_ENTRY HlpAcpiCacheList;
|
|
|
|
/* ACPI Root System Description Pointer (RSDP) */
|
|
PACPI_RSDP HlpAcpiRsdp;
|
|
|
|
/* Active processors count */
|
|
KAFFINITY HlpActiveProcessors;
|
|
|
|
/* APIC mode */
|
|
HAL_APIC_MODE HlpApicMode;
|
|
|
|
/* FrameBuffer information */
|
|
HAL_FRAMEBUFFER_DATA HlpFrameBufferData;
|
|
|
|
/* Processors identity table */
|
|
HAL_PROCESSOR_IDENTITY HlpProcessorsIdentity[MAXIMUM_PROCESSORS] = {{0}};
|