forked from rrcarlosr/Jetpack
23 lines
689 B
C
23 lines
689 B
C
/*
|
|
* pinctrl-tegra-io-pad.h: Provides constants for Tegra IO pads
|
|
* pinctrl bindings.
|
|
*
|
|
* Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Author: Laxman Dewangan <ldewangan@nvidia.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_PINCTRL_TEGRA_IO_PAD_H
|
|
#define _DT_BINDINGS_PINCTRL_TEGRA_IO_PAD_H
|
|
|
|
/* Power source voltage of IO pads. */
|
|
#define TEGRA_IO_PAD_VOLTAGE_1800000UV 0
|
|
#define TEGRA_IO_PAD_VOLTAGE_3300000UV 1
|
|
#define TEGRA_IO_PAD_VOLTAGE_1200000UV 3
|
|
#endif
|
|
|