Home | History | Annotate | Download | only in Include
      1 /*++
      2 
      3 Copyright (c) 1999  - 2014, Intel Corporation. All rights reserved
      4 
      5   This program and the accompanying materials are licensed and made available under
      7   the terms and conditions of the BSD License that accompanies this distribution.
      9   The full text of the license may be found at
     11   http://opensource.org/licenses/bsd-license.php.
     13 
     15   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     17   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     19 
     21 
     23 
     24 Module Name:
     25 
     26   PlatformDefinitions.h
     27 
     28 Abstract:
     29 
     30   This header file provides platform specific definitions used by other modules
     31   for platform specific initialization.
     32 
     33   THIS FILE SHOULD ONLY CONTAIN #defines BECAUSE IT IS CONSUMED BY NON-C MODULES
     34   (ASL and VFR)
     35 
     36   This file should not contain addition or other operations that an ASL compiler or
     37   VFR compiler does not understand.
     38 
     39 --*/
     40 
     41 #ifndef _PLATFORM_DEFINITIONS_H_
     42 #define _PLATFORM_DEFINITIONS_H_
     43 
     44 
     45 //
     46 // Platform Base Address definitions
     47 //
     48 #define PCIEX_BASE_ADDRESS          EDKII_GLUE_PciExpressBaseAddress // Pci Express Configuration Space Base Address
     49 
     50 #define PCIEX_LENGTH                PLATFORM_PCIEXPRESS_LENGTH
     51 
     52 #define THERMAL_BASE_ADDRESS        0xFED08000
     53 
     54 #ifndef MCH_BASE_ADDRESS
     55 #define MCH_BASE_ADDRESS            0xFED10000  // MCH  Register Base Address
     56 #endif
     57 #endif
     58