.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * Pinctrl data for the NVIDIA Tegra30 pinmux |
---|
3 | 4 | * |
---|
4 | 5 | * Author: Stephen Warren <swarren@nvidia.com> |
---|
5 | 6 | * |
---|
6 | 7 | * Copyright (c) 2011-2012, NVIDIA CORPORATION. All rights reserved. |
---|
7 | | - * |
---|
8 | | - * This program is free software; you can redistribute it and/or modify it |
---|
9 | | - * under the terms and conditions of the GNU General Public License, |
---|
10 | | - * version 2, as published by the Free Software Foundation. |
---|
11 | | - * |
---|
12 | | - * This program is distributed in the hope it will be useful, but WITHOUT |
---|
13 | | - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
---|
14 | | - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
15 | | - * more details. |
---|
16 | 8 | */ |
---|
17 | 9 | |
---|
18 | 10 | #include <linux/init.h> |
---|
.. | .. |
---|
2141 | 2133 | .lock_bit = 7, \ |
---|
2142 | 2134 | .ioreset_bit = PINGROUP_BIT_##ior(8), \ |
---|
2143 | 2135 | .rcv_sel_bit = -1, \ |
---|
2144 | | - .parked_bit = -1, \ |
---|
2145 | 2136 | .drv_reg = -1, \ |
---|
| 2137 | + .parked_bitmask = 0, \ |
---|
2146 | 2138 | } |
---|
2147 | 2139 | |
---|
2148 | 2140 | #define DRV_PINGROUP(pg_name, r, hsm_b, schmitt_b, lpmd_b, drvdn_b, \ |
---|
.. | .. |
---|
2162 | 2154 | .rcv_sel_bit = -1, \ |
---|
2163 | 2155 | .drv_reg = DRV_PINGROUP_REG(r), \ |
---|
2164 | 2156 | .drv_bank = 0, \ |
---|
2165 | | - .parked_bit = -1, \ |
---|
2166 | 2157 | .hsm_bit = hsm_b, \ |
---|
2167 | 2158 | .schmitt_bit = schmitt_b, \ |
---|
2168 | 2159 | .lpmd_bit = lpmd_b, \ |
---|
.. | .. |
---|
2175 | 2166 | .slwf_bit = slwf_b, \ |
---|
2176 | 2167 | .slwf_width = slwf_w, \ |
---|
2177 | 2168 | .drvtype_bit = -1, \ |
---|
| 2169 | + .parked_bitmask = 0, \ |
---|
2178 | 2170 | } |
---|
2179 | 2171 | |
---|
2180 | 2172 | static const struct tegra_pingroup tegra30_groups[] = { |
---|