You've already forked edk2-platforms
mirror of
https://github.com/Dasharo/edk2-platforms.git
synced 2026-03-06 14:51:43 -08:00
In preparation for adding Raspberry Pi 4 support, the Pi 3 platform is restructured by factorizing all the drivers and libraries that are going to be commonly used by the two platforms. Because much of the Pi 4 SoC is an extension of the Pi 3 one this means that almost everything, except the ACPI tables, is moved up into a new common RaspberryPi/ subdirectory that will serve both platforms. The .dec is also moved to this directory, under a new RaspberryPi.dec name, and existing references to it are updated. This commit requires the edk2-non-osi in use to contain commit 243e55f622ea in order to build. Signed-off-by: Pete Batard <pete@akeo.ie> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
31 lines
827 B
C
31 lines
827 B
C
/** @file
|
|
*
|
|
* Copyright (c) 2018, Andrei Warkentin <andrey.warkentin@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
*
|
|
**/
|
|
|
|
#ifndef __EXTENDED_TEXT_OUT_PROTOCOL_H__
|
|
#define __EXTENDED_TEXT_OUT_PROTOCOL_H__
|
|
|
|
#include <Protocol/SimpleTextOut.h>
|
|
#include <Protocol/GraphicsOutput.h>
|
|
|
|
#define EXTENDED_TEXT_OUTPUT_PROTOCOL_GUID \
|
|
{ \
|
|
0x387477ff, 0xffc7, 0xffd2, {0x8e, 0x39, 0x0, 0xff, 0xc9, 0x69, 0x72, 0x3b } \
|
|
}
|
|
|
|
typedef struct _EXTENDED_TEXT_OUTPUT_PROTOCOL EXTENDED_TEXT_OUTPUT_PROTOCOL;
|
|
|
|
struct _EXTENDED_TEXT_OUTPUT_PROTOCOL {
|
|
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *TextOut;
|
|
EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
|
|
BOOLEAN AutoWrap;
|
|
};
|
|
|
|
extern EFI_GUID gExtendedTextOutputProtocolGuid;
|
|
|
|
#endif /* __EXTENDED_TEXT_OUT_PROTOCOL_H__ */
|