pinctrl-tegra194.c (7ae9fb1b7ecbb5d85d07857943f677fd1a559b18) pinctrl-tegra194.c (fad57233501beb5bd25f037cb9128a533e710600)
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Pinctrl data for the NVIDIA Tegra194 pinmux
4 *
5 * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,

--- 1175 unchanged lines hidden (view full) ---

1184 TEGRA_MUX_I2S5,
1185 TEGRA_MUX_USB,
1186 TEGRA_MUX_UFS0,
1187 TEGRA_MUX_DGPU,
1188 TEGRA_MUX_SDMMC4,
1189};
1190
1191/* Make list of each function name */
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Pinctrl data for the NVIDIA Tegra194 pinmux
4 *
5 * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,

--- 1175 unchanged lines hidden (view full) ---

1184 TEGRA_MUX_I2S5,
1185 TEGRA_MUX_USB,
1186 TEGRA_MUX_UFS0,
1187 TEGRA_MUX_DGPU,
1188 TEGRA_MUX_SDMMC4,
1189};
1190
1191/* Make list of each function name */
1192#define TEGRA_PIN_FUNCTION(lid) \
1193 { \
1194 .name = #lid, \
1195 }
1192#define TEGRA_PIN_FUNCTION(lid) #lid
1196
1193
1197static struct tegra_function tegra194_functions[] = {
1194static const char * const tegra194_functions[] = {
1198 TEGRA_PIN_FUNCTION(rsvd0),
1199 TEGRA_PIN_FUNCTION(rsvd1),
1200 TEGRA_PIN_FUNCTION(rsvd2),
1201 TEGRA_PIN_FUNCTION(rsvd3),
1202 TEGRA_PIN_FUNCTION(touch),
1203 TEGRA_PIN_FUNCTION(uartc),
1204 TEGRA_PIN_FUNCTION(i2c8),
1205 TEGRA_PIN_FUNCTION(uartg),

--- 705 unchanged lines hidden ---
1195 TEGRA_PIN_FUNCTION(rsvd0),
1196 TEGRA_PIN_FUNCTION(rsvd1),
1197 TEGRA_PIN_FUNCTION(rsvd2),
1198 TEGRA_PIN_FUNCTION(rsvd3),
1199 TEGRA_PIN_FUNCTION(touch),
1200 TEGRA_PIN_FUNCTION(uartc),
1201 TEGRA_PIN_FUNCTION(i2c8),
1202 TEGRA_PIN_FUNCTION(uartg),

--- 705 unchanged lines hidden ---