blob: ab764960fa7faf82ace592a55734fadcdd77d66a [file] [log] [blame]
Stephen Warrene2969952014-03-21 12:28:54 -06001/*
2 * (C) Copyright 2010-2014
3 * NVIDIA Corporation <www.nvidia.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef _TEGRA_PINMUX_H_
9#define _TEGRA_PINMUX_H_
10
11#include <asm/arch/tegra.h>
12
13/* The pullup/pulldown state of a pin group */
14enum pmux_pull {
15 PMUX_PULL_NORMAL = 0,
16 PMUX_PULL_DOWN,
17 PMUX_PULL_UP,
18};
19
20/* Defines whether a pin group is tristated or in normal operation */
21enum pmux_tristate {
22 PMUX_TRI_NORMAL = 0,
23 PMUX_TRI_TRISTATE = 1,
24};
25
26#ifdef TEGRA_PMX_HAS_PIN_IO_BIT_ETC
27enum pmux_pin_io {
28 PMUX_PIN_OUTPUT = 0,
29 PMUX_PIN_INPUT = 1,
30 PMUX_PIN_NONE,
31};
32
33enum pmux_pin_lock {
34 PMUX_PIN_LOCK_DEFAULT = 0,
35 PMUX_PIN_LOCK_DISABLE,
36 PMUX_PIN_LOCK_ENABLE,
37};
38
39enum pmux_pin_od {
40 PMUX_PIN_OD_DEFAULT = 0,
41 PMUX_PIN_OD_DISABLE,
42 PMUX_PIN_OD_ENABLE,
43};
44
45enum pmux_pin_ioreset {
46 PMUX_PIN_IO_RESET_DEFAULT = 0,
47 PMUX_PIN_IO_RESET_DISABLE,
48 PMUX_PIN_IO_RESET_ENABLE,
49};
50
51#ifdef TEGRA_PMX_HAS_RCV_SEL
52enum pmux_pin_rcv_sel {
53 PMUX_PIN_RCV_SEL_DEFAULT = 0,
54 PMUX_PIN_RCV_SEL_NORMAL,
55 PMUX_PIN_RCV_SEL_HIGH,
56};
57#endif /* TEGRA_PMX_HAS_RCV_SEL */
58#endif /* TEGRA_PMX_HAS_PIN_IO_BIT_ETC */
59
60/*
61 * This defines the configuration for a pin, including the function assigned,
62 * pull up/down settings and tristate settings. Having set up one of these
63 * you can call pinmux_config_pingroup() to configure a pin in one step. Also
64 * available is pinmux_config_table() to configure a list of pins.
65 */
Stephen Warrendfb42fc2014-03-21 12:28:56 -060066struct pmux_pingrp_config {
Stephen Warrend3812942014-03-21 15:58:03 -060067 u32 pingrp:16; /* pin group PMUX_PINGRP_... */
68 u32 func:8; /* function to assign PMUX_FUNC_... */
69 u32 pull:2; /* pull up/down/normal PMUX_PULL_...*/
70 u32 tristate:2; /* tristate or normal PMUX_TRI_... */
Stephen Warrene2969952014-03-21 12:28:54 -060071#ifdef TEGRA_PMX_HAS_PIN_IO_BIT_ETC
Stephen Warrend3812942014-03-21 15:58:03 -060072 u32 io:2; /* input or output PMUX_PIN_... */
73 u32 lock:2; /* lock enable/disable PMUX_PIN... */
74 u32 od:2; /* open-drain or push-pull driver */
75 u32 ioreset:2; /* input/output reset PMUX_PIN... */
Stephen Warrene2969952014-03-21 12:28:54 -060076#ifdef TEGRA_PMX_HAS_RCV_SEL
Stephen Warrend3812942014-03-21 15:58:03 -060077 u32 rcv_sel:2; /* select between High and Normal */
78 /* VIL/VIH receivers */
Stephen Warrene2969952014-03-21 12:28:54 -060079#endif
80#endif
81};
82
Stephen Warrenbb144692014-04-22 14:37:54 -060083#if !defined(CONFIG_TEGRA20) && !defined(CONFIG_TEGRA30)
Stephen Warrenf799b032015-02-18 13:27:03 -070084/* Set/clear the pinmux CLAMP_INPUTS_WHEN_TRISTATED bit */
Stephen Warrenbb144692014-04-22 14:37:54 -060085void pinmux_set_tristate_input_clamping(void);
Stephen Warrenf799b032015-02-18 13:27:03 -070086void pinmux_clear_tristate_input_clamping(void);
Stephen Warrenbb144692014-04-22 14:37:54 -060087#endif
88
Stephen Warrene2969952014-03-21 12:28:54 -060089/* Set the mux function for a pin group */
90void pinmux_set_func(enum pmux_pingrp pin, enum pmux_func func);
91
92/* Set the pull up/down feature for a pin group */
93void pinmux_set_pullupdown(enum pmux_pingrp pin, enum pmux_pull pupd);
94
Stephen Warrene2969952014-03-21 12:28:54 -060095/* Set a pin group to tristate */
96void pinmux_tristate_enable(enum pmux_pingrp pin);
97
98/* Set a pin group to normal (non tristate) */
99void pinmux_tristate_disable(enum pmux_pingrp pin);
100
101#ifdef TEGRA_PMX_HAS_PIN_IO_BIT_ETC
102/* Set a pin group as input or output */
103void pinmux_set_io(enum pmux_pingrp pin, enum pmux_pin_io io);
104#endif
105
Stephen Warrene2969952014-03-21 12:28:54 -0600106/**
107 * Configure a list of pin groups
108 *
109 * @param config List of config items
110 * @param len Number of config items in list
111 */
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600112void pinmux_config_pingrp_table(const struct pmux_pingrp_config *config,
113 int len);
Stephen Warrene2969952014-03-21 12:28:54 -0600114
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600115#ifdef TEGRA_PMX_HAS_DRVGRPS
Stephen Warrene2969952014-03-21 12:28:54 -0600116
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600117#define PMUX_SLWF_MIN 0
118#define PMUX_SLWF_MAX 3
119#define PMUX_SLWF_NONE -1
Stephen Warrene2969952014-03-21 12:28:54 -0600120
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600121#define PMUX_SLWR_MIN 0
122#define PMUX_SLWR_MAX 3
123#define PMUX_SLWR_NONE -1
Stephen Warrene2969952014-03-21 12:28:54 -0600124
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600125#define PMUX_DRVUP_MIN 0
126#define PMUX_DRVUP_MAX 127
127#define PMUX_DRVUP_NONE -1
Stephen Warrene2969952014-03-21 12:28:54 -0600128
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600129#define PMUX_DRVDN_MIN 0
130#define PMUX_DRVDN_MAX 127
131#define PMUX_DRVDN_NONE -1
Stephen Warrene2969952014-03-21 12:28:54 -0600132
133/* Defines a pin group cfg's low-power mode select */
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600134enum pmux_lpmd {
135 PMUX_LPMD_X8 = 0,
136 PMUX_LPMD_X4,
137 PMUX_LPMD_X2,
138 PMUX_LPMD_X,
139 PMUX_LPMD_NONE = -1,
Stephen Warrene2969952014-03-21 12:28:54 -0600140};
141
142/* Defines whether a pin group cfg's schmidt is enabled or not */
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600143enum pmux_schmt {
144 PMUX_SCHMT_DISABLE = 0,
145 PMUX_SCHMT_ENABLE = 1,
146 PMUX_SCHMT_NONE = -1,
Stephen Warrene2969952014-03-21 12:28:54 -0600147};
148
149/* Defines whether a pin group cfg's high-speed mode is enabled or not */
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600150enum pmux_hsm {
151 PMUX_HSM_DISABLE = 0,
152 PMUX_HSM_ENABLE = 1,
153 PMUX_HSM_NONE = -1,
Stephen Warrene2969952014-03-21 12:28:54 -0600154};
155
156/*
157 * This defines the configuration for a pin group's pad control config
158 */
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600159struct pmux_drvgrp_config {
Stephen Warrend3812942014-03-21 15:58:03 -0600160 u32 drvgrp:16; /* pin group PMUX_DRVGRP_x */
161 u32 slwf:3; /* falling edge slew */
162 u32 slwr:3; /* rising edge slew */
163 u32 drvup:8; /* pull-up drive strength */
164 u32 drvdn:8; /* pull-down drive strength */
165 u32 lpmd:3; /* low-power mode selection */
166 u32 schmt:2; /* schmidt enable */
167 u32 hsm:2; /* high-speed mode enable */
Stephen Warrene2969952014-03-21 12:28:54 -0600168};
169
170/**
171 * Set the GP pad configs
172 *
173 * @param config List of config items
174 * @param len Number of config items in list
175 */
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600176void pinmux_config_drvgrp_table(const struct pmux_drvgrp_config *config,
177 int len);
Stephen Warrene2969952014-03-21 12:28:54 -0600178
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600179#endif /* TEGRA_PMX_HAS_DRVGRPS */
Stephen Warrene2969952014-03-21 12:28:54 -0600180
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600181struct pmux_pingrp_desc {
Stephen Warrend3812942014-03-21 15:58:03 -0600182 u8 funcs[4];
Stephen Warrene2969952014-03-21 12:28:54 -0600183#if defined(CONFIG_TEGRA20)
Stephen Warrend3812942014-03-21 15:58:03 -0600184 u8 ctl_id;
185 u8 pull_id;
Stephen Warrene2969952014-03-21 12:28:54 -0600186#endif /* CONFIG_TEGRA20 */
187};
188
Stephen Warrendfb42fc2014-03-21 12:28:56 -0600189extern const struct pmux_pingrp_desc *tegra_soc_pingroups;
Stephen Warrene2969952014-03-21 12:28:54 -0600190
191#endif /* _TEGRA_PINMUX_H_ */