You've already forked slimbootloader
mirror of
https://github.com/Dasharo/slimbootloader.git
synced 2026-03-06 15:26:20 -08:00
5e10bd1e07
To align with EDK2, update file license to use BSD+Patent license Signed-off-by: Guo Dong <guo.dong@intel.com>
24 lines
596 B
C
24 lines
596 B
C
/** @file
|
|
|
|
Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __GPIO_LIB_H__
|
|
#define __GPIO_LIB_H__
|
|
|
|
/**
|
|
Set GPIO PAD DW 0 and 1 registers for S/W/SW/N/NW GPIO communities
|
|
|
|
@param[in] Gpio_Pin_Num GPIO Pin Number to configure
|
|
@param[in] Gpio_Conf_Data GPIO_CONF_PAD_INIT data array
|
|
for each GPIO communities.
|
|
**/
|
|
VOID
|
|
GpioPadConfigTable (
|
|
IN UINT32 Gpio_Pin_Num,
|
|
IN VOID *Gpio_Conf_Data
|
|
);
|
|
|
|
#endif /* __GPIO_LIB_H__ */ |