1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*++
- Copyright (c) 2013 Minoca Corp. All Rights Reserved
- Module Name:
- realview.h
- Abstract:
- This header contains definitions for the RealView hardware modules.
- Author:
- Evan Green 14-Jul-2013
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // Define the signature of the RealView ACPI table.
- //
- #define REALVIEW_SIGNATURE 0x57564C52 // 'WVLR'
- //
- // Define the number of timers in the RealView timer block.
- //
- #define REALVIEW_TIMER_COUNT 2
- //
- // Define the default UART base and clock frequency if enumeration is forced.
- //
- #define REALVIEW_UART_BASE 0x10009000
- #define REALVIEW_UART_CLOCK_FREQUENCY 14745600
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- /*++
- Structure Description:
- This structure describes the RealView ACPI table.
- Members:
- Header - Stores the standard ACPI table header. The signature here is
- 'WVLR'.
- Pl110PhysicalAddress - Stores the phyiscal address of the PL110 LCD
- controller.
- TimerPhysicalAddress - Stores the physical addressES of the timer blocks.
- TimerFrequency - Stores the frequencies of the timers, or zero for
- unknown.
- TimerGsi - Stores the Global System Interrupt numbers of the timers.
- DebugUartPhysicalAddress - Stores the physical address of the UART used for
- serial debugging.
- DebugUartClockFrequency - Stores the frequency of the clock use for the
- UART.
- --*/
- typedef struct _REALVIEW_TABLE {
- DESCRIPTION_HEADER Header;
- ULONGLONG Pl110PhysicalAddress;
- ULONGLONG TimerPhysicalAddress[REALVIEW_TIMER_COUNT];
- ULONGLONG TimerFrequency[REALVIEW_TIMER_COUNT];
- ULONG TimerGsi[REALVIEW_TIMER_COUNT];
- ULONGLONG DebugUartPhysicalAddress;
- ULONG DebugUartClockFrequency;
- } PACKED REALVIEW_TABLE, *PREALVIEW_TABLE;
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // -------------------------------------------------------- Function Prototypes
- //
|