blob: 9a4632bebc194d7190a0776de42166b4526d852e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __SOC_NVIDIA_TEGRA_PINMUX_H__
#define __SOC_NVIDIA_TEGRA_PINMUX_H__
#include <stdint.h>
void pinmux_set_config(int pin_index, uint32_t config);
uint32_t pinmux_get_config(int pin_index);
#endif /* __SOC_NVIDIA_TEGRA_PINMUX_H__ */
|