coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
pinmux.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __SOC_NVIDIA_TEGRA_PINMUX_H__
4 #define __SOC_NVIDIA_TEGRA_PINMUX_H__
5 
6 #include <stdint.h>
7 
8 void pinmux_set_config(int pin_index, uint32_t config);
9 uint32_t pinmux_get_config(int pin_index);
10 
11 #endif /* __SOC_NVIDIA_TEGRA_PINMUX_H__ */
enum board_config config
Definition: memory.c:448
void pinmux_set_config(int pin_index, uint32_t config)
Definition: pinmux.c:10
uint32_t pinmux_get_config(int pin_index)
Definition: pinmux.c:15
unsigned int uint32_t
Definition: stdint.h:14