mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-18 08:08:09 +02:00
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4144 This Library provides functions consuming MIPI SYS-T submodule. Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Zhiguang Liu <zhiguang.liu@intel.com> Cc: Guo Gua <gua.guo@intel.com> Cc: Chan Laura <laura.chan@intel.com> Cc: Prakashan Krishnadas Veliyathuparambil <krishnadas.veliyathuparambil.prakashan@intel.com> Cc: K N Karthik <karthik.k.n@intel.com> Signed-off-by: Guo Gua <gua.guo@intel.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: K N Karthik <karthik.k.n@intel.com> Reviewed-by: Chan Laura <laura.chan@intel.com> Acked-by: Liming Gao <gaoliming@byosoft.com.cn>
53 lines
1.4 KiB
INI
53 lines
1.4 KiB
INI
## @file
|
|
# A library providing funcitons to communicate with mipi sys-T submodule.
|
|
#
|
|
# Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = MipiSysTLib
|
|
FILE_GUID = A58B0510-9E6D-4747-95D8-E5B8AF4633E6
|
|
MODULE_TYPE = BASE
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = MipiSysTLib
|
|
|
|
DEFINE MIPI_HEADER_PATH = mipisyst/library/include/mipi_syst
|
|
DEFINE MIPI_SOURCE_PATH = mipisyst/library/src
|
|
|
|
#
|
|
# The following information is for reference only and not required by the build tools.
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64
|
|
#
|
|
|
|
[LibraryClasses]
|
|
IoLib
|
|
BaseMemoryLib
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
|
|
[Sources]
|
|
MipiSysTLib.c
|
|
mipi_syst.h
|
|
Platform.c
|
|
Platform.h
|
|
$(MIPI_HEADER_PATH)/api.h
|
|
$(MIPI_HEADER_PATH)/crc32.h
|
|
$(MIPI_HEADER_PATH)/compiler.h
|
|
$(MIPI_HEADER_PATH)/message.h
|
|
$(MIPI_HEADER_PATH)/inline.h
|
|
$(MIPI_SOURCE_PATH)/mipi_syst_init.c
|
|
$(MIPI_SOURCE_PATH)/mipi_syst_api.c
|
|
$(MIPI_SOURCE_PATH)/mipi_syst_crc32.c
|
|
$(MIPI_SOURCE_PATH)/mipi_syst_writer.c
|
|
$(MIPI_SOURCE_PATH)/mipi_syst_inline.c
|
|
$(MIPI_SOURCE_PATH)/mipi_syst_compiler.c
|
|
|
|
[BuildOptions]
|
|
*_*_*_CC_FLAGS = -DMIPI_SYST_STATIC
|