mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
2025cf9e19
Based on 1 normalized pattern(s): 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 this program is distributed in the hope it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 263 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190529141901.208660670@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
38 lines
1.0 KiB
C
38 lines
1.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* This header provides constants for Tegra pinctrl bindings.
|
|
*
|
|
* Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Author: Laxman Dewangan <ldewangan@nvidia.com>
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_PINCTRL_TEGRA_H
|
|
#define _DT_BINDINGS_PINCTRL_TEGRA_H
|
|
|
|
/*
|
|
* Enable/disable for diffeent dt properties. This is applicable for
|
|
* properties nvidia,enable-input, nvidia,tristate, nvidia,open-drain,
|
|
* nvidia,lock, nvidia,rcv-sel, nvidia,high-speed-mode, nvidia,schmitt.
|
|
*/
|
|
#define TEGRA_PIN_DISABLE 0
|
|
#define TEGRA_PIN_ENABLE 1
|
|
|
|
#define TEGRA_PIN_PULL_NONE 0
|
|
#define TEGRA_PIN_PULL_DOWN 1
|
|
#define TEGRA_PIN_PULL_UP 2
|
|
|
|
/* Low power mode driver */
|
|
#define TEGRA_PIN_LP_DRIVE_DIV_8 0
|
|
#define TEGRA_PIN_LP_DRIVE_DIV_4 1
|
|
#define TEGRA_PIN_LP_DRIVE_DIV_2 2
|
|
#define TEGRA_PIN_LP_DRIVE_DIV_1 3
|
|
|
|
/* Rising/Falling slew rate */
|
|
#define TEGRA_PIN_SLEW_RATE_FASTEST 0
|
|
#define TEGRA_PIN_SLEW_RATE_FAST 1
|
|
#define TEGRA_PIN_SLEW_RATE_SLOW 2
|
|
#define TEGRA_PIN_SLEW_RATE_SLOWEST 3
|
|
|
|
#endif
|