1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Pinctrl data for the NVIDIA Tegra194 pinmux 4 * 5 * Copyright (c) 2019, 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, 9 * version 2, as published by the Free Software Foundation. 10 * 11 * This program is distributed in the hope it will be useful, but WITHOUT 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 14 * more details. 15 */ 16 17 #include <linux/init.h> 18 #include <linux/of.h> 19 #include <linux/platform_device.h> 20 #include <linux/pinctrl/pinctrl.h> 21 #include <linux/pinctrl/pinmux.h> 22 23 #include "pinctrl-tegra.h" 24 25 /* Define unique ID for each pins */ 26 enum pin_id { 27 TEGRA_PIN_PEX_L5_CLKREQ_N_PGG0, 28 TEGRA_PIN_PEX_L5_RST_N_PGG1, 29 }; 30 31 /* Table for pin descriptor */ 32 static const struct pinctrl_pin_desc tegra194_pins[] = { 33 PINCTRL_PIN(TEGRA_PIN_PEX_L5_CLKREQ_N_PGG0, "PEX_L5_CLKREQ_N_PGG0"), 34 PINCTRL_PIN(TEGRA_PIN_PEX_L5_RST_N_PGG1, "PEX_L5_RST_N_PGG1"), 35 }; 36 37 static const unsigned int pex_l5_clkreq_n_pgg0_pins[] = { 38 TEGRA_PIN_PEX_L5_CLKREQ_N_PGG0, 39 }; 40 41 static const unsigned int pex_l5_rst_n_pgg1_pins[] = { 42 TEGRA_PIN_PEX_L5_RST_N_PGG1, 43 }; 44 45 /* Define unique ID for each function */ 46 enum tegra_mux_dt { 47 TEGRA_MUX_RSVD0, 48 TEGRA_MUX_RSVD1, 49 TEGRA_MUX_RSVD2, 50 TEGRA_MUX_RSVD3, 51 TEGRA_MUX_PE5, 52 }; 53 54 /* Make list of each function name */ 55 #define TEGRA_PIN_FUNCTION(lid) \ 56 { \ 57 .name = #lid, \ 58 } 59 60 static struct tegra_function tegra194_functions[] = { 61 TEGRA_PIN_FUNCTION(rsvd0), 62 TEGRA_PIN_FUNCTION(rsvd1), 63 TEGRA_PIN_FUNCTION(rsvd2), 64 TEGRA_PIN_FUNCTION(rsvd3), 65 TEGRA_PIN_FUNCTION(pe5), 66 }; 67 68 #define DRV_PINGROUP_ENTRY_Y(r, drvdn_b, drvdn_w, drvup_b, \ 69 drvup_w, slwr_b, slwr_w, slwf_b, \ 70 slwf_w, bank) \ 71 .drv_reg = ((r)), \ 72 .drv_bank = bank, \ 73 .drvdn_bit = drvdn_b, \ 74 .drvdn_width = drvdn_w, \ 75 .drvup_bit = drvup_b, \ 76 .drvup_width = drvup_w, \ 77 .slwr_bit = slwr_b, \ 78 .slwr_width = slwr_w, \ 79 .slwf_bit = slwf_b, \ 80 .slwf_width = slwf_w 81 82 #define PIN_PINGROUP_ENTRY_Y(r, bank, pupd, e_lpbk, e_input, \ 83 e_od, schmitt_b, drvtype) \ 84 .mux_reg = ((r)), \ 85 .lpmd_bit = -1, \ 86 .lock_bit = -1, \ 87 .hsm_bit = -1, \ 88 .mux_bank = bank, \ 89 .mux_bit = 0, \ 90 .pupd_reg = ((r)), \ 91 .pupd_bank = bank, \ 92 .pupd_bit = 2, \ 93 .tri_reg = ((r)), \ 94 .tri_bank = bank, \ 95 .tri_bit = 4, \ 96 .einput_bit = e_input, \ 97 .odrain_bit = e_od, \ 98 .sfsel_bit = 10, \ 99 .schmitt_bit = schmitt_b, \ 100 .drvtype_bit = 13, \ 101 .parked_bitmask = 0 102 103 #define drive_pex_l5_clkreq_n_pgg0 \ 104 DRV_PINGROUP_ENTRY_Y(0x14004, 12, 5, 20, 5, -1, -1, -1, -1, 0) 105 #define drive_pex_l5_rst_n_pgg1 \ 106 DRV_PINGROUP_ENTRY_Y(0x1400c, 12, 5, 20, 5, -1, -1, -1, -1, 0) 107 108 #define PINGROUP(pg_name, f0, f1, f2, f3, r, bank, pupd, e_lpbk, \ 109 e_input, e_lpdr, e_od, schmitt_b, drvtype, io_rail) \ 110 { \ 111 .name = #pg_name, \ 112 .pins = pg_name##_pins, \ 113 .npins = ARRAY_SIZE(pg_name##_pins), \ 114 .funcs = { \ 115 TEGRA_MUX_##f0, \ 116 TEGRA_MUX_##f1, \ 117 TEGRA_MUX_##f2, \ 118 TEGRA_MUX_##f3, \ 119 }, \ 120 PIN_PINGROUP_ENTRY_Y(r, bank, pupd, e_lpbk, \ 121 e_input, e_od, \ 122 schmitt_b, drvtype), \ 123 drive_##pg_name, \ 124 } 125 126 static const struct tegra_pingroup tegra194_groups[] = { 127 PINGROUP(pex_l5_clkreq_n_pgg0, PE5, RSVD1, RSVD2, RSVD3, 0x14000, 0, 128 Y, -1, 6, 8, 11, 12, N, "vddio_pex_ctl_2"), 129 PINGROUP(pex_l5_rst_n_pgg1, PE5, RSVD1, RSVD2, RSVD3, 0x14008, 0, 130 Y, -1, 6, 8, 11, 12, N, "vddio_pex_ctl_2"), 131 }; 132 133 static const struct tegra_pinctrl_soc_data tegra194_pinctrl = { 134 .pins = tegra194_pins, 135 .npins = ARRAY_SIZE(tegra194_pins), 136 .functions = tegra194_functions, 137 .nfunctions = ARRAY_SIZE(tegra194_functions), 138 .groups = tegra194_groups, 139 .ngroups = ARRAY_SIZE(tegra194_groups), 140 .hsm_in_mux = true, 141 .schmitt_in_mux = true, 142 .drvtype_in_mux = true, 143 .sfsel_in_mux = true, 144 }; 145 146 static int tegra194_pinctrl_probe(struct platform_device *pdev) 147 { 148 return tegra_pinctrl_probe(pdev, &tegra194_pinctrl); 149 } 150 151 static const struct of_device_id tegra194_pinctrl_of_match[] = { 152 { .compatible = "nvidia,tegra194-pinmux", }, 153 { }, 154 }; 155 156 static struct platform_driver tegra194_pinctrl_driver = { 157 .driver = { 158 .name = "tegra194-pinctrl", 159 .of_match_table = tegra194_pinctrl_of_match, 160 }, 161 .probe = tegra194_pinctrl_probe, 162 }; 163 164 static int __init tegra194_pinctrl_init(void) 165 { 166 return platform_driver_register(&tegra194_pinctrl_driver); 167 } 168 arch_initcall(tegra194_pinctrl_init); 169