1 /*++ 2 3 Copyright (c) 2004 - 2006, Intel Corporation. All rights reserved.<BR> 4 This program and the accompanying materials 5 are licensed and made available under the terms and conditions of the BSD License 6 which accompanies this distribution. The full text of the license may be found at 7 http://opensource.org/licenses/bsd-license.php 8 9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 11 12 Module Name: 13 14 Tiano.h 15 16 Abstract: 17 18 Tiano master include file. 19 20 This is the main include file for Tiano components. 21 22 Don't add include files to the list for convenience, only add things 23 that are architectural. Don't add Protocols or GUID include files here 24 25 --*/ 26 27 #ifndef _TIANO_H_ 28 #define _TIANO_H_ 29 30 31 #include "TianoCommon.h" 32 #include "TianoApi.h" 33 #include "EfiDebug.h" 34 #include "TianoDevicePath.h" 35 #include "EfiSpec.h" 36 37 // 38 // EFI Revision information 39 // 40 #define EFI_FIRMWARE_MAJOR_REVISION 0x1000 41 #define EFI_FIRMWARE_MINOR_REVISION 1 42 #define EFI_FIRMWARE_REVISION ((EFI_FIRMWARE_MAJOR_REVISION << 16) | (EFI_FIRMWARE_MINOR_REVISION)) 43 44 #endif 45