summaryrefslogtreecommitdiff
path: root/drivers/pinctrl
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2013-11-07 19:20:38 +0530
committerLaxman Dewangan <ldewangan@nvidia.com>2013-11-08 02:34:07 -0800
commitd71d31e06e059b063f0525eb5a02cfbc344c48e4 (patch)
tree14cd95d8aed3a5ca544903ae70b9ce54cf7dbb7f /drivers/pinctrl
parent3893cfbd120398a10b812824c8bebdd89e855bd7 (diff)
pinctrl: tegra: add drive initialisation table for Tegra114
Change-Id: Ida0d652c227b18f89b9d50ed5af33cadf569ea83 Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: http://git-master/r/327755
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r--drivers/pinctrl/pinctrl-tegra114.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/pinctrl/pinctrl-tegra114.c b/drivers/pinctrl/pinctrl-tegra114.c
index 3b323116e97a..a5d8d48f9b71 100644
--- a/drivers/pinctrl/pinctrl-tegra114.c
+++ b/drivers/pinctrl/pinctrl-tegra114.c
@@ -2799,6 +2799,10 @@ static const struct tegra_pingroup tegra114_groups[] = {
DRV_PINGROUP(vbus, 0x99c, 2, 3, 4, 12, 5, 20, 5, 28, 2, 30, 2, N),
};
+static struct tegra_pinctrl_group_config_data t114_pin_drive_group_soc_data[] = {
+ TEGRA_PINCTRL_SET_DRIVE("at2", 0, 0, 0, 48, 55, 0, 0, 0),
+};
+
static const struct tegra_pinctrl_soc_data tegra114_pinctrl = {
.ngpios = NUM_GPIOS,
.pins = tegra114_pins,
@@ -2807,6 +2811,8 @@ static const struct tegra_pinctrl_soc_data tegra114_pinctrl = {
.nfunctions = ARRAY_SIZE(tegra114_functions),
.groups = tegra114_groups,
.ngroups = ARRAY_SIZE(tegra114_groups),
+ .config_data = t114_pin_drive_group_soc_data,
+ .nconfig_data = ARRAY_SIZE(t114_pin_drive_group_soc_data),
};
static int tegra114_pinctrl_probe(struct platform_device *pdev)