1 /** @file 2 GUID for the HOB that caches the base address of the PL011 serial port, for 3 when PCD access is not available. 4 5 Copyright (C) 2014, Red Hat, Inc. 6 7 This program and the accompanying materials are licensed and made available 8 under the terms and conditions of the BSD License that accompanies this 9 distribution. The full text of the license may be found at 10 http://opensource.org/licenses/bsd-license.php. 11 12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT 13 WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 14 15 **/ 16 17 #ifndef __EARLY_PL011_BASE_ADDRESS_H__ 18 #define __EARLY_PL011_BASE_ADDRESS_H__ 19 20 #define EARLY_PL011_BASE_ADDRESS_GUID { \ 21 0xB199DEA9, 0xFD5C, 0x4A84, \ 22 { 0x80, 0x82, 0x2F, 0x41, 0x70, 0x78, 0x03, 0x05 } \ 23 } 24 25 extern EFI_GUID gEarlyPL011BaseAddressGuid; 26 27 #endif 28