2012-02-02 05:04:47 +08:00
|
|
|
/*
|
|
|
|
* Driver for the NVIDIA Tegra pinmux
|
|
|
|
*
|
2012-04-12 02:53:09 +08:00
|
|
|
* Copyright (c) 2011-2012, NVIDIA CORPORATION. All rights reserved.
|
2012-02-02 05:04:47 +08:00
|
|
|
*
|
|
|
|
* Derived from code:
|
|
|
|
* Copyright (C) 2010 Google, Inc.
|
|
|
|
* Copyright (C) 2010 NVIDIA Corporation
|
|
|
|
* Copyright (C) 2009-2011 ST-Ericsson AB
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/io.h>
|
2012-04-12 02:53:09 +08:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/platform_device.h>
|
2012-04-04 23:27:50 +08:00
|
|
|
#include <linux/pinctrl/machine.h>
|
2012-02-02 05:04:47 +08:00
|
|
|
#include <linux/pinctrl/pinctrl.h>
|
|
|
|
#include <linux/pinctrl/pinmux.h>
|
|
|
|
#include <linux/pinctrl/pinconf.h>
|
2012-04-04 23:27:50 +08:00
|
|
|
#include <linux/slab.h>
|
2012-02-02 05:04:47 +08:00
|
|
|
|
2016-01-23 23:30:08 +08:00
|
|
|
#include "../core.h"
|
|
|
|
#include "../pinctrl-utils.h"
|
2012-02-02 05:04:47 +08:00
|
|
|
#include "pinctrl-tegra.h"
|
|
|
|
|
|
|
|
static inline u32 pmx_readl(struct tegra_pmx *pmx, u32 bank, u32 reg)
|
|
|
|
{
|
|
|
|
return readl(pmx->regs[bank] + reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void pmx_writel(struct tegra_pmx *pmx, u32 val, u32 bank, u32 reg)
|
|
|
|
{
|
|
|
|
writel(val, pmx->regs[bank] + reg);
|
|
|
|
}
|
|
|
|
|
2012-03-30 13:55:40 +08:00
|
|
|
static int tegra_pinctrl_get_groups_count(struct pinctrl_dev *pctldev)
|
2012-02-02 05:04:47 +08:00
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
|
|
|
|
2012-03-30 13:55:40 +08:00
|
|
|
return pmx->soc->ngroups;
|
2012-02-02 05:04:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *tegra_pinctrl_get_group_name(struct pinctrl_dev *pctldev,
|
|
|
|
unsigned group)
|
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
|
|
|
|
|
|
|
return pmx->soc->groups[group].name;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tegra_pinctrl_get_group_pins(struct pinctrl_dev *pctldev,
|
|
|
|
unsigned group,
|
|
|
|
const unsigned **pins,
|
|
|
|
unsigned *num_pins)
|
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
|
|
|
|
|
|
|
*pins = pmx->soc->groups[group].pins;
|
|
|
|
*num_pins = pmx->soc->groups[group].npins;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-12 05:42:56 +08:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
2012-02-02 05:04:47 +08:00
|
|
|
static void tegra_pinctrl_pin_dbg_show(struct pinctrl_dev *pctldev,
|
|
|
|
struct seq_file *s,
|
|
|
|
unsigned offset)
|
|
|
|
{
|
2012-04-12 02:53:09 +08:00
|
|
|
seq_printf(s, " %s", dev_name(pctldev->dev));
|
2012-02-02 05:04:47 +08:00
|
|
|
}
|
2012-04-12 05:42:56 +08:00
|
|
|
#endif
|
2012-02-02 05:04:47 +08:00
|
|
|
|
2012-04-04 23:27:50 +08:00
|
|
|
static const struct cfg_param {
|
|
|
|
const char *property;
|
|
|
|
enum tegra_pinconf_param param;
|
|
|
|
} cfg_params[] = {
|
|
|
|
{"nvidia,pull", TEGRA_PINCONF_PARAM_PULL},
|
|
|
|
{"nvidia,tristate", TEGRA_PINCONF_PARAM_TRISTATE},
|
|
|
|
{"nvidia,enable-input", TEGRA_PINCONF_PARAM_ENABLE_INPUT},
|
|
|
|
{"nvidia,open-drain", TEGRA_PINCONF_PARAM_OPEN_DRAIN},
|
|
|
|
{"nvidia,lock", TEGRA_PINCONF_PARAM_LOCK},
|
|
|
|
{"nvidia,io-reset", TEGRA_PINCONF_PARAM_IORESET},
|
2013-01-08 15:32:36 +08:00
|
|
|
{"nvidia,rcv-sel", TEGRA_PINCONF_PARAM_RCV_SEL},
|
2015-02-25 05:00:50 +08:00
|
|
|
{"nvidia,io-hv", TEGRA_PINCONF_PARAM_RCV_SEL},
|
2012-04-04 23:27:50 +08:00
|
|
|
{"nvidia,high-speed-mode", TEGRA_PINCONF_PARAM_HIGH_SPEED_MODE},
|
|
|
|
{"nvidia,schmitt", TEGRA_PINCONF_PARAM_SCHMITT},
|
|
|
|
{"nvidia,low-power-mode", TEGRA_PINCONF_PARAM_LOW_POWER_MODE},
|
|
|
|
{"nvidia,pull-down-strength", TEGRA_PINCONF_PARAM_DRIVE_DOWN_STRENGTH},
|
|
|
|
{"nvidia,pull-up-strength", TEGRA_PINCONF_PARAM_DRIVE_UP_STRENGTH},
|
|
|
|
{"nvidia,slew-rate-falling", TEGRA_PINCONF_PARAM_SLEW_RATE_FALLING},
|
|
|
|
{"nvidia,slew-rate-rising", TEGRA_PINCONF_PARAM_SLEW_RATE_RISING},
|
2013-01-08 15:32:36 +08:00
|
|
|
{"nvidia,drive-type", TEGRA_PINCONF_PARAM_DRIVE_TYPE},
|
2012-04-04 23:27:50 +08:00
|
|
|
};
|
|
|
|
|
2013-08-21 19:23:38 +08:00
|
|
|
static int tegra_pinctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev,
|
2012-11-11 10:31:31 +08:00
|
|
|
struct device_node *np,
|
|
|
|
struct pinctrl_map **map,
|
|
|
|
unsigned *reserved_maps,
|
|
|
|
unsigned *num_maps)
|
2012-04-04 23:27:50 +08:00
|
|
|
{
|
2013-08-21 19:23:38 +08:00
|
|
|
struct device *dev = pctldev->dev;
|
2012-04-04 23:27:50 +08:00
|
|
|
int ret, i;
|
|
|
|
const char *function;
|
|
|
|
u32 val;
|
|
|
|
unsigned long config;
|
|
|
|
unsigned long *configs = NULL;
|
|
|
|
unsigned num_configs = 0;
|
|
|
|
unsigned reserve;
|
|
|
|
struct property *prop;
|
|
|
|
const char *group;
|
|
|
|
|
|
|
|
ret = of_property_read_string(np, "nvidia,function", &function);
|
2012-04-24 00:05:22 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
/* EINVAL=missing, which is fine since it's optional */
|
|
|
|
if (ret != -EINVAL)
|
|
|
|
dev_err(dev,
|
|
|
|
"could not parse property nvidia,function\n");
|
2012-04-04 23:27:50 +08:00
|
|
|
function = NULL;
|
2012-04-24 00:05:22 +08:00
|
|
|
}
|
2012-04-04 23:27:50 +08:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(cfg_params); i++) {
|
|
|
|
ret = of_property_read_u32(np, cfg_params[i].property, &val);
|
|
|
|
if (!ret) {
|
|
|
|
config = TEGRA_PINCONF_PACK(cfg_params[i].param, val);
|
2013-08-21 19:23:38 +08:00
|
|
|
ret = pinctrl_utils_add_config(pctldev, &configs,
|
|
|
|
&num_configs, config);
|
2012-04-04 23:27:50 +08:00
|
|
|
if (ret < 0)
|
|
|
|
goto exit;
|
2012-04-24 00:05:22 +08:00
|
|
|
/* EINVAL=missing, which is fine since it's optional */
|
|
|
|
} else if (ret != -EINVAL) {
|
|
|
|
dev_err(dev, "could not parse property %s\n",
|
|
|
|
cfg_params[i].property);
|
2012-04-04 23:27:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
reserve = 0;
|
|
|
|
if (function != NULL)
|
|
|
|
reserve++;
|
|
|
|
if (num_configs)
|
|
|
|
reserve++;
|
|
|
|
ret = of_property_count_strings(np, "nvidia,pins");
|
2012-04-24 00:05:22 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(dev, "could not parse property nvidia,pins\n");
|
2012-04-04 23:27:50 +08:00
|
|
|
goto exit;
|
2012-04-24 00:05:22 +08:00
|
|
|
}
|
2012-04-04 23:27:50 +08:00
|
|
|
reserve *= ret;
|
|
|
|
|
2013-08-21 19:23:38 +08:00
|
|
|
ret = pinctrl_utils_reserve_map(pctldev, map, reserved_maps,
|
|
|
|
num_maps, reserve);
|
2012-04-04 23:27:50 +08:00
|
|
|
if (ret < 0)
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
of_property_for_each_string(np, "nvidia,pins", prop, group) {
|
|
|
|
if (function) {
|
2013-08-21 19:23:38 +08:00
|
|
|
ret = pinctrl_utils_add_map_mux(pctldev, map,
|
|
|
|
reserved_maps, num_maps, group,
|
|
|
|
function);
|
2012-04-04 23:27:50 +08:00
|
|
|
if (ret < 0)
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num_configs) {
|
2013-08-21 19:23:38 +08:00
|
|
|
ret = pinctrl_utils_add_map_configs(pctldev, map,
|
|
|
|
reserved_maps, num_maps, group,
|
|
|
|
configs, num_configs,
|
|
|
|
PIN_MAP_TYPE_CONFIGS_GROUP);
|
2012-04-04 23:27:50 +08:00
|
|
|
if (ret < 0)
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
exit:
|
|
|
|
kfree(configs);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-11-11 10:31:31 +08:00
|
|
|
static int tegra_pinctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
|
|
|
|
struct device_node *np_config,
|
|
|
|
struct pinctrl_map **map,
|
|
|
|
unsigned *num_maps)
|
2012-04-04 23:27:50 +08:00
|
|
|
{
|
|
|
|
unsigned reserved_maps;
|
|
|
|
struct device_node *np;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
reserved_maps = 0;
|
|
|
|
*map = NULL;
|
|
|
|
*num_maps = 0;
|
|
|
|
|
|
|
|
for_each_child_of_node(np_config, np) {
|
2013-08-21 19:23:38 +08:00
|
|
|
ret = tegra_pinctrl_dt_subnode_to_map(pctldev, np, map,
|
2012-04-24 00:05:22 +08:00
|
|
|
&reserved_maps, num_maps);
|
2012-04-04 23:27:50 +08:00
|
|
|
if (ret < 0) {
|
2016-03-31 19:44:42 +08:00
|
|
|
pinctrl_utils_free_map(pctldev, *map,
|
2013-08-21 19:23:38 +08:00
|
|
|
*num_maps);
|
2015-12-22 00:39:44 +08:00
|
|
|
of_node_put(np);
|
2012-04-04 23:27:50 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-02-16 17:25:07 +08:00
|
|
|
static const struct pinctrl_ops tegra_pinctrl_ops = {
|
2012-03-30 13:55:40 +08:00
|
|
|
.get_groups_count = tegra_pinctrl_get_groups_count,
|
2012-02-02 05:04:47 +08:00
|
|
|
.get_group_name = tegra_pinctrl_get_group_name,
|
|
|
|
.get_group_pins = tegra_pinctrl_get_group_pins,
|
2012-04-12 05:42:56 +08:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
2012-02-02 05:04:47 +08:00
|
|
|
.pin_dbg_show = tegra_pinctrl_pin_dbg_show,
|
2012-04-12 05:42:56 +08:00
|
|
|
#endif
|
2012-04-04 23:27:50 +08:00
|
|
|
.dt_node_to_map = tegra_pinctrl_dt_node_to_map,
|
2016-03-31 19:44:42 +08:00
|
|
|
.dt_free_map = pinctrl_utils_free_map,
|
2012-02-02 05:04:47 +08:00
|
|
|
};
|
|
|
|
|
2012-03-30 13:55:40 +08:00
|
|
|
static int tegra_pinctrl_get_funcs_count(struct pinctrl_dev *pctldev)
|
2012-02-02 05:04:47 +08:00
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
|
|
|
|
2012-03-30 13:55:40 +08:00
|
|
|
return pmx->soc->nfunctions;
|
2012-02-02 05:04:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *tegra_pinctrl_get_func_name(struct pinctrl_dev *pctldev,
|
|
|
|
unsigned function)
|
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
|
|
|
|
|
|
|
return pmx->soc->functions[function].name;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tegra_pinctrl_get_func_groups(struct pinctrl_dev *pctldev,
|
|
|
|
unsigned function,
|
|
|
|
const char * const **groups,
|
|
|
|
unsigned * const num_groups)
|
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
|
|
|
|
|
|
|
*groups = pmx->soc->functions[function].groups;
|
|
|
|
*num_groups = pmx->soc->functions[function].ngroups;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-09-03 19:02:56 +08:00
|
|
|
static int tegra_pinctrl_set_mux(struct pinctrl_dev *pctldev,
|
|
|
|
unsigned function,
|
|
|
|
unsigned group)
|
2012-02-02 05:04:47 +08:00
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
|
|
|
const struct tegra_pingroup *g;
|
|
|
|
int i;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
g = &pmx->soc->groups[group];
|
|
|
|
|
2012-04-24 00:05:22 +08:00
|
|
|
if (WARN_ON(g->mux_reg < 0))
|
2012-02-02 05:04:47 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(g->funcs); i++) {
|
|
|
|
if (g->funcs[i] == function)
|
|
|
|
break;
|
|
|
|
}
|
2012-04-24 00:05:22 +08:00
|
|
|
if (WARN_ON(i == ARRAY_SIZE(g->funcs)))
|
2012-02-02 05:04:47 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
val = pmx_readl(pmx, g->mux_bank, g->mux_reg);
|
|
|
|
val &= ~(0x3 << g->mux_bit);
|
|
|
|
val |= i << g->mux_bit;
|
|
|
|
pmx_writel(pmx, val, g->mux_bank, g->mux_reg);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-02-16 17:25:07 +08:00
|
|
|
static const struct pinmux_ops tegra_pinmux_ops = {
|
2012-03-30 13:55:40 +08:00
|
|
|
.get_functions_count = tegra_pinctrl_get_funcs_count,
|
2012-02-02 05:04:47 +08:00
|
|
|
.get_function_name = tegra_pinctrl_get_func_name,
|
|
|
|
.get_function_groups = tegra_pinctrl_get_func_groups,
|
2014-09-03 19:02:56 +08:00
|
|
|
.set_mux = tegra_pinctrl_set_mux,
|
2012-02-02 05:04:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int tegra_pinconf_reg(struct tegra_pmx *pmx,
|
|
|
|
const struct tegra_pingroup *g,
|
|
|
|
enum tegra_pinconf_param param,
|
2012-04-12 05:42:56 +08:00
|
|
|
bool report_err,
|
2012-02-02 05:04:47 +08:00
|
|
|
s8 *bank, s16 *reg, s8 *bit, s8 *width)
|
|
|
|
{
|
|
|
|
switch (param) {
|
|
|
|
case TEGRA_PINCONF_PARAM_PULL:
|
|
|
|
*bank = g->pupd_bank;
|
|
|
|
*reg = g->pupd_reg;
|
|
|
|
*bit = g->pupd_bit;
|
|
|
|
*width = 2;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_TRISTATE:
|
|
|
|
*bank = g->tri_bank;
|
|
|
|
*reg = g->tri_reg;
|
|
|
|
*bit = g->tri_bit;
|
|
|
|
*width = 1;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_ENABLE_INPUT:
|
pinctrl: tegra: remove redundant data table fields
Any SoC which supports the einput, odrain, lock, ioreset, or rcv_sel
options has the relevant HW register fields in the same register as the
mux function selection. Similarly, the drvtype option is always in the
drive register, if it is supported at all. Hence, we don't need to have
struct *_reg fields in the pin group table to define which register and
bank to use for those options. Delete this to save space in the driver's
data tables.
However, many of those options are not supported on all SoCs, or not
supported on some pingroups. We need a way to detect when they are
supported. Previously, this was indicated by setting the struct *_reg
field to -1. With the struct *_reg fields removed, we use the struct
*_bit fields for this purpose instead. The struct *_bit fields need to
be expanded from 5 to 6 bits in order to store a value outside the valid
HW bit range of 0..31.
Even without removing the struct *_reg fields, we still need to add code
to validate the struct *_bit fields, since some struct *_bit fields were
already being set to -1, without an option-specific struct *_reg field to
"guard" them. In other words, before this change, the pinmux driver might
allow some unsupported options to be written to HW.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2014-04-16 01:00:50 +08:00
|
|
|
*bank = g->mux_bank;
|
|
|
|
*reg = g->mux_reg;
|
2012-02-02 05:04:47 +08:00
|
|
|
*bit = g->einput_bit;
|
|
|
|
*width = 1;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_OPEN_DRAIN:
|
pinctrl: tegra: remove redundant data table fields
Any SoC which supports the einput, odrain, lock, ioreset, or rcv_sel
options has the relevant HW register fields in the same register as the
mux function selection. Similarly, the drvtype option is always in the
drive register, if it is supported at all. Hence, we don't need to have
struct *_reg fields in the pin group table to define which register and
bank to use for those options. Delete this to save space in the driver's
data tables.
However, many of those options are not supported on all SoCs, or not
supported on some pingroups. We need a way to detect when they are
supported. Previously, this was indicated by setting the struct *_reg
field to -1. With the struct *_reg fields removed, we use the struct
*_bit fields for this purpose instead. The struct *_bit fields need to
be expanded from 5 to 6 bits in order to store a value outside the valid
HW bit range of 0..31.
Even without removing the struct *_reg fields, we still need to add code
to validate the struct *_bit fields, since some struct *_bit fields were
already being set to -1, without an option-specific struct *_reg field to
"guard" them. In other words, before this change, the pinmux driver might
allow some unsupported options to be written to HW.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2014-04-16 01:00:50 +08:00
|
|
|
*bank = g->mux_bank;
|
|
|
|
*reg = g->mux_reg;
|
2012-02-02 05:04:47 +08:00
|
|
|
*bit = g->odrain_bit;
|
|
|
|
*width = 1;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_LOCK:
|
pinctrl: tegra: remove redundant data table fields
Any SoC which supports the einput, odrain, lock, ioreset, or rcv_sel
options has the relevant HW register fields in the same register as the
mux function selection. Similarly, the drvtype option is always in the
drive register, if it is supported at all. Hence, we don't need to have
struct *_reg fields in the pin group table to define which register and
bank to use for those options. Delete this to save space in the driver's
data tables.
However, many of those options are not supported on all SoCs, or not
supported on some pingroups. We need a way to detect when they are
supported. Previously, this was indicated by setting the struct *_reg
field to -1. With the struct *_reg fields removed, we use the struct
*_bit fields for this purpose instead. The struct *_bit fields need to
be expanded from 5 to 6 bits in order to store a value outside the valid
HW bit range of 0..31.
Even without removing the struct *_reg fields, we still need to add code
to validate the struct *_bit fields, since some struct *_bit fields were
already being set to -1, without an option-specific struct *_reg field to
"guard" them. In other words, before this change, the pinmux driver might
allow some unsupported options to be written to HW.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2014-04-16 01:00:50 +08:00
|
|
|
*bank = g->mux_bank;
|
|
|
|
*reg = g->mux_reg;
|
2012-02-02 05:04:47 +08:00
|
|
|
*bit = g->lock_bit;
|
|
|
|
*width = 1;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_IORESET:
|
pinctrl: tegra: remove redundant data table fields
Any SoC which supports the einput, odrain, lock, ioreset, or rcv_sel
options has the relevant HW register fields in the same register as the
mux function selection. Similarly, the drvtype option is always in the
drive register, if it is supported at all. Hence, we don't need to have
struct *_reg fields in the pin group table to define which register and
bank to use for those options. Delete this to save space in the driver's
data tables.
However, many of those options are not supported on all SoCs, or not
supported on some pingroups. We need a way to detect when they are
supported. Previously, this was indicated by setting the struct *_reg
field to -1. With the struct *_reg fields removed, we use the struct
*_bit fields for this purpose instead. The struct *_bit fields need to
be expanded from 5 to 6 bits in order to store a value outside the valid
HW bit range of 0..31.
Even without removing the struct *_reg fields, we still need to add code
to validate the struct *_bit fields, since some struct *_bit fields were
already being set to -1, without an option-specific struct *_reg field to
"guard" them. In other words, before this change, the pinmux driver might
allow some unsupported options to be written to HW.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2014-04-16 01:00:50 +08:00
|
|
|
*bank = g->mux_bank;
|
|
|
|
*reg = g->mux_reg;
|
2012-02-02 05:04:47 +08:00
|
|
|
*bit = g->ioreset_bit;
|
|
|
|
*width = 1;
|
|
|
|
break;
|
2013-01-08 15:32:36 +08:00
|
|
|
case TEGRA_PINCONF_PARAM_RCV_SEL:
|
pinctrl: tegra: remove redundant data table fields
Any SoC which supports the einput, odrain, lock, ioreset, or rcv_sel
options has the relevant HW register fields in the same register as the
mux function selection. Similarly, the drvtype option is always in the
drive register, if it is supported at all. Hence, we don't need to have
struct *_reg fields in the pin group table to define which register and
bank to use for those options. Delete this to save space in the driver's
data tables.
However, many of those options are not supported on all SoCs, or not
supported on some pingroups. We need a way to detect when they are
supported. Previously, this was indicated by setting the struct *_reg
field to -1. With the struct *_reg fields removed, we use the struct
*_bit fields for this purpose instead. The struct *_bit fields need to
be expanded from 5 to 6 bits in order to store a value outside the valid
HW bit range of 0..31.
Even without removing the struct *_reg fields, we still need to add code
to validate the struct *_bit fields, since some struct *_bit fields were
already being set to -1, without an option-specific struct *_reg field to
"guard" them. In other words, before this change, the pinmux driver might
allow some unsupported options to be written to HW.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2014-04-16 01:00:50 +08:00
|
|
|
*bank = g->mux_bank;
|
|
|
|
*reg = g->mux_reg;
|
2013-01-08 15:32:36 +08:00
|
|
|
*bit = g->rcv_sel_bit;
|
|
|
|
*width = 1;
|
|
|
|
break;
|
2012-02-02 05:04:47 +08:00
|
|
|
case TEGRA_PINCONF_PARAM_HIGH_SPEED_MODE:
|
2015-02-25 05:00:49 +08:00
|
|
|
if (pmx->soc->hsm_in_mux) {
|
|
|
|
*bank = g->mux_bank;
|
|
|
|
*reg = g->mux_reg;
|
|
|
|
} else {
|
|
|
|
*bank = g->drv_bank;
|
|
|
|
*reg = g->drv_reg;
|
|
|
|
}
|
2012-02-02 05:04:47 +08:00
|
|
|
*bit = g->hsm_bit;
|
|
|
|
*width = 1;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_SCHMITT:
|
2015-02-25 05:00:49 +08:00
|
|
|
if (pmx->soc->schmitt_in_mux) {
|
|
|
|
*bank = g->mux_bank;
|
|
|
|
*reg = g->mux_reg;
|
|
|
|
} else {
|
|
|
|
*bank = g->drv_bank;
|
|
|
|
*reg = g->drv_reg;
|
|
|
|
}
|
2012-02-02 05:04:47 +08:00
|
|
|
*bit = g->schmitt_bit;
|
|
|
|
*width = 1;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_LOW_POWER_MODE:
|
|
|
|
*bank = g->drv_bank;
|
|
|
|
*reg = g->drv_reg;
|
|
|
|
*bit = g->lpmd_bit;
|
2012-10-17 19:39:36 +08:00
|
|
|
*width = 2;
|
2012-02-02 05:04:47 +08:00
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_DRIVE_DOWN_STRENGTH:
|
|
|
|
*bank = g->drv_bank;
|
|
|
|
*reg = g->drv_reg;
|
|
|
|
*bit = g->drvdn_bit;
|
|
|
|
*width = g->drvdn_width;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_DRIVE_UP_STRENGTH:
|
|
|
|
*bank = g->drv_bank;
|
|
|
|
*reg = g->drv_reg;
|
|
|
|
*bit = g->drvup_bit;
|
|
|
|
*width = g->drvup_width;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_SLEW_RATE_FALLING:
|
|
|
|
*bank = g->drv_bank;
|
|
|
|
*reg = g->drv_reg;
|
|
|
|
*bit = g->slwf_bit;
|
|
|
|
*width = g->slwf_width;
|
|
|
|
break;
|
|
|
|
case TEGRA_PINCONF_PARAM_SLEW_RATE_RISING:
|
|
|
|
*bank = g->drv_bank;
|
|
|
|
*reg = g->drv_reg;
|
|
|
|
*bit = g->slwr_bit;
|
|
|
|
*width = g->slwr_width;
|
|
|
|
break;
|
2013-01-08 15:32:36 +08:00
|
|
|
case TEGRA_PINCONF_PARAM_DRIVE_TYPE:
|
2015-02-25 05:00:49 +08:00
|
|
|
if (pmx->soc->drvtype_in_mux) {
|
|
|
|
*bank = g->mux_bank;
|
|
|
|
*reg = g->mux_reg;
|
|
|
|
} else {
|
|
|
|
*bank = g->drv_bank;
|
|
|
|
*reg = g->drv_reg;
|
|
|
|
}
|
2013-01-08 15:32:36 +08:00
|
|
|
*bit = g->drvtype_bit;
|
|
|
|
*width = 2;
|
|
|
|
break;
|
2012-02-02 05:04:47 +08:00
|
|
|
default:
|
|
|
|
dev_err(pmx->dev, "Invalid config param %04x\n", param);
|
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
|
|
|
|
2016-05-03 01:23:24 +08:00
|
|
|
if (*reg < 0 || *bit < 0) {
|
2014-04-15 05:33:42 +08:00
|
|
|
if (report_err) {
|
|
|
|
const char *prop = "unknown";
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(cfg_params); i++) {
|
|
|
|
if (cfg_params[i].param == param) {
|
|
|
|
prop = cfg_params[i].property;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-12 05:42:56 +08:00
|
|
|
dev_err(pmx->dev,
|
2014-04-15 05:33:42 +08:00
|
|
|
"Config param %04x (%s) not supported on group %s\n",
|
|
|
|
param, prop, g->name);
|
|
|
|
}
|
2012-02-02 05:04:47 +08:00
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tegra_pinconf_get(struct pinctrl_dev *pctldev,
|
|
|
|
unsigned pin, unsigned long *config)
|
|
|
|
{
|
2012-04-24 00:05:22 +08:00
|
|
|
dev_err(pctldev->dev, "pin_config_get op not supported\n");
|
2012-02-02 05:04:47 +08:00
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tegra_pinconf_set(struct pinctrl_dev *pctldev,
|
2013-08-28 02:32:12 +08:00
|
|
|
unsigned pin, unsigned long *configs,
|
|
|
|
unsigned num_configs)
|
2012-02-02 05:04:47 +08:00
|
|
|
{
|
2012-04-24 00:05:22 +08:00
|
|
|
dev_err(pctldev->dev, "pin_config_set op not supported\n");
|
2012-02-02 05:04:47 +08:00
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tegra_pinconf_group_get(struct pinctrl_dev *pctldev,
|
|
|
|
unsigned group, unsigned long *config)
|
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
|
|
|
enum tegra_pinconf_param param = TEGRA_PINCONF_UNPACK_PARAM(*config);
|
|
|
|
u16 arg;
|
|
|
|
const struct tegra_pingroup *g;
|
|
|
|
int ret;
|
|
|
|
s8 bank, bit, width;
|
|
|
|
s16 reg;
|
|
|
|
u32 val, mask;
|
|
|
|
|
|
|
|
g = &pmx->soc->groups[group];
|
|
|
|
|
2012-04-12 05:42:56 +08:00
|
|
|
ret = tegra_pinconf_reg(pmx, g, param, true, &bank, ®, &bit,
|
|
|
|
&width);
|
2012-02-02 05:04:47 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
val = pmx_readl(pmx, bank, reg);
|
|
|
|
mask = (1 << width) - 1;
|
|
|
|
arg = (val >> bit) & mask;
|
|
|
|
|
|
|
|
*config = TEGRA_PINCONF_PACK(param, arg);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tegra_pinconf_group_set(struct pinctrl_dev *pctldev,
|
2013-08-28 02:32:12 +08:00
|
|
|
unsigned group, unsigned long *configs,
|
|
|
|
unsigned num_configs)
|
2012-02-02 05:04:47 +08:00
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
2013-08-28 02:32:12 +08:00
|
|
|
enum tegra_pinconf_param param;
|
|
|
|
u16 arg;
|
2012-02-02 05:04:47 +08:00
|
|
|
const struct tegra_pingroup *g;
|
2013-08-28 02:32:12 +08:00
|
|
|
int ret, i;
|
2012-02-02 05:04:47 +08:00
|
|
|
s8 bank, bit, width;
|
|
|
|
s16 reg;
|
|
|
|
u32 val, mask;
|
|
|
|
|
|
|
|
g = &pmx->soc->groups[group];
|
|
|
|
|
2013-08-28 02:32:12 +08:00
|
|
|
for (i = 0; i < num_configs; i++) {
|
|
|
|
param = TEGRA_PINCONF_UNPACK_PARAM(configs[i]);
|
|
|
|
arg = TEGRA_PINCONF_UNPACK_ARG(configs[i]);
|
2012-02-02 05:04:47 +08:00
|
|
|
|
2013-08-28 02:32:12 +08:00
|
|
|
ret = tegra_pinconf_reg(pmx, g, param, true, &bank, ®, &bit,
|
|
|
|
&width);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2012-02-02 05:04:47 +08:00
|
|
|
|
2013-08-28 02:32:12 +08:00
|
|
|
val = pmx_readl(pmx, bank, reg);
|
|
|
|
|
|
|
|
/* LOCK can't be cleared */
|
|
|
|
if (param == TEGRA_PINCONF_PARAM_LOCK) {
|
|
|
|
if ((val & BIT(bit)) && !arg) {
|
|
|
|
dev_err(pctldev->dev, "LOCK bit cannot be cleared\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2012-04-24 00:05:22 +08:00
|
|
|
}
|
2012-02-02 05:04:47 +08:00
|
|
|
|
2013-08-28 02:32:12 +08:00
|
|
|
/* Special-case Boolean values; allow any non-zero as true */
|
|
|
|
if (width == 1)
|
|
|
|
arg = !!arg;
|
2012-02-02 05:04:47 +08:00
|
|
|
|
2013-08-28 02:32:12 +08:00
|
|
|
/* Range-check user-supplied value */
|
|
|
|
mask = (1 << width) - 1;
|
|
|
|
if (arg & ~mask) {
|
|
|
|
dev_err(pctldev->dev,
|
|
|
|
"config %lx: %x too big for %d bit register\n",
|
|
|
|
configs[i], arg, width);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2012-02-02 05:04:47 +08:00
|
|
|
|
2013-08-28 02:32:12 +08:00
|
|
|
/* Update register */
|
|
|
|
val &= ~(mask << bit);
|
|
|
|
val |= arg << bit;
|
|
|
|
pmx_writel(pmx, val, bank, reg);
|
|
|
|
} /* for each config */
|
2012-02-02 05:04:47 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-12 05:42:56 +08:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
2012-02-02 05:04:47 +08:00
|
|
|
static void tegra_pinconf_dbg_show(struct pinctrl_dev *pctldev,
|
|
|
|
struct seq_file *s, unsigned offset)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-04-12 05:42:56 +08:00
|
|
|
static const char *strip_prefix(const char *s)
|
|
|
|
{
|
|
|
|
const char *comma = strchr(s, ',');
|
|
|
|
if (!comma)
|
|
|
|
return s;
|
|
|
|
|
|
|
|
return comma + 1;
|
|
|
|
}
|
|
|
|
|
2012-02-02 05:04:47 +08:00
|
|
|
static void tegra_pinconf_group_dbg_show(struct pinctrl_dev *pctldev,
|
2012-04-12 05:42:56 +08:00
|
|
|
struct seq_file *s, unsigned group)
|
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
|
|
|
|
const struct tegra_pingroup *g;
|
|
|
|
int i, ret;
|
|
|
|
s8 bank, bit, width;
|
|
|
|
s16 reg;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
g = &pmx->soc->groups[group];
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(cfg_params); i++) {
|
|
|
|
ret = tegra_pinconf_reg(pmx, g, cfg_params[i].param, false,
|
|
|
|
&bank, ®, &bit, &width);
|
|
|
|
if (ret < 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
val = pmx_readl(pmx, bank, reg);
|
|
|
|
val >>= bit;
|
|
|
|
val &= (1 << width) - 1;
|
|
|
|
|
|
|
|
seq_printf(s, "\n\t%s=%u",
|
|
|
|
strip_prefix(cfg_params[i].property), val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tegra_pinconf_config_dbg_show(struct pinctrl_dev *pctldev,
|
|
|
|
struct seq_file *s,
|
|
|
|
unsigned long config)
|
2012-02-02 05:04:47 +08:00
|
|
|
{
|
2012-04-12 05:42:56 +08:00
|
|
|
enum tegra_pinconf_param param = TEGRA_PINCONF_UNPACK_PARAM(config);
|
|
|
|
u16 arg = TEGRA_PINCONF_UNPACK_ARG(config);
|
|
|
|
const char *pname = "unknown";
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(cfg_params); i++) {
|
|
|
|
if (cfg_params[i].param == param) {
|
|
|
|
pname = cfg_params[i].property;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
seq_printf(s, "%s=%d", strip_prefix(pname), arg);
|
2012-02-02 05:04:47 +08:00
|
|
|
}
|
2012-04-12 05:42:56 +08:00
|
|
|
#endif
|
2012-02-02 05:04:47 +08:00
|
|
|
|
2013-02-16 17:25:07 +08:00
|
|
|
static const struct pinconf_ops tegra_pinconf_ops = {
|
2012-02-02 05:04:47 +08:00
|
|
|
.pin_config_get = tegra_pinconf_get,
|
|
|
|
.pin_config_set = tegra_pinconf_set,
|
|
|
|
.pin_config_group_get = tegra_pinconf_group_get,
|
|
|
|
.pin_config_group_set = tegra_pinconf_group_set,
|
2012-04-12 05:42:56 +08:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
2012-02-02 05:04:47 +08:00
|
|
|
.pin_config_dbg_show = tegra_pinconf_dbg_show,
|
|
|
|
.pin_config_group_dbg_show = tegra_pinconf_group_dbg_show,
|
2012-04-12 05:42:56 +08:00
|
|
|
.pin_config_config_dbg_show = tegra_pinconf_config_dbg_show,
|
|
|
|
#endif
|
2012-02-02 05:04:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct pinctrl_gpio_range tegra_pinctrl_gpio_range = {
|
|
|
|
.name = "Tegra GPIOs",
|
|
|
|
.id = 0,
|
|
|
|
.base = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct pinctrl_desc tegra_pinctrl_desc = {
|
|
|
|
.pctlops = &tegra_pinctrl_ops,
|
|
|
|
.pmxops = &tegra_pinmux_ops,
|
|
|
|
.confops = &tegra_pinconf_ops,
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
};
|
|
|
|
|
2016-04-08 05:37:08 +08:00
|
|
|
static void tegra_pinctrl_clear_parked_bits(struct tegra_pmx *pmx)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
const struct tegra_pingroup *g;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
for (i = 0; i < pmx->soc->ngroups; ++i) {
|
2016-05-24 18:59:43 +08:00
|
|
|
g = &pmx->soc->groups[i];
|
|
|
|
if (g->parked_bit >= 0) {
|
|
|
|
val = pmx_readl(pmx, g->mux_bank, g->mux_reg);
|
2016-04-08 05:37:08 +08:00
|
|
|
val &= ~(1 << g->parked_bit);
|
2016-05-24 18:59:43 +08:00
|
|
|
pmx_writel(pmx, val, g->mux_bank, g->mux_reg);
|
2016-04-08 05:37:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-26 23:40:24 +08:00
|
|
|
static bool gpio_node_has_range(const char *compatible)
|
2015-07-14 16:29:55 +08:00
|
|
|
{
|
|
|
|
struct device_node *np;
|
|
|
|
bool has_prop = false;
|
|
|
|
|
2018-07-26 23:40:24 +08:00
|
|
|
np = of_find_compatible_node(NULL, NULL, compatible);
|
2015-07-14 16:29:55 +08:00
|
|
|
if (!np)
|
|
|
|
return has_prop;
|
|
|
|
|
|
|
|
has_prop = of_find_property(np, "gpio-ranges", NULL);
|
|
|
|
|
|
|
|
of_node_put(np);
|
|
|
|
|
|
|
|
return has_prop;
|
|
|
|
}
|
|
|
|
|
2012-12-22 05:10:23 +08:00
|
|
|
int tegra_pinctrl_probe(struct platform_device *pdev,
|
2012-04-12 02:53:09 +08:00
|
|
|
const struct tegra_pinctrl_soc_data *soc_data)
|
2012-02-02 05:04:47 +08:00
|
|
|
{
|
|
|
|
struct tegra_pmx *pmx;
|
|
|
|
struct resource *res;
|
|
|
|
int i;
|
2014-03-08 03:22:16 +08:00
|
|
|
const char **group_pins;
|
|
|
|
int fn, gn, gfn;
|
2012-02-02 05:04:47 +08:00
|
|
|
|
|
|
|
pmx = devm_kzalloc(&pdev->dev, sizeof(*pmx), GFP_KERNEL);
|
2017-12-28 22:15:08 +08:00
|
|
|
if (!pmx)
|
2012-02-02 05:04:47 +08:00
|
|
|
return -ENOMEM;
|
2017-12-28 22:15:08 +08:00
|
|
|
|
2012-02-02 05:04:47 +08:00
|
|
|
pmx->dev = &pdev->dev;
|
2012-04-12 02:53:09 +08:00
|
|
|
pmx->soc = soc_data;
|
2012-02-02 05:04:47 +08:00
|
|
|
|
2014-03-08 03:22:16 +08:00
|
|
|
/*
|
|
|
|
* Each mux group will appear in 4 functions' list of groups.
|
|
|
|
* This over-allocates slightly, since not all groups are mux groups.
|
|
|
|
*/
|
treewide: devm_kzalloc() -> devm_kcalloc()
The devm_kzalloc() function has a 2-factor argument form, devm_kcalloc().
This patch replaces cases of:
devm_kzalloc(handle, a * b, gfp)
with:
devm_kcalloc(handle, a * b, gfp)
as well as handling cases of:
devm_kzalloc(handle, a * b * c, gfp)
with:
devm_kzalloc(handle, array3_size(a, b, c), gfp)
as it's slightly less ugly than:
devm_kcalloc(handle, array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
devm_kzalloc(handle, 4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
Some manual whitespace fixes were needed in this patch, as Coccinelle
really liked to write "=devm_kcalloc..." instead of "= devm_kcalloc...".
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
expression HANDLE;
type TYPE;
expression THING, E;
@@
(
devm_kzalloc(HANDLE,
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
devm_kzalloc(HANDLE,
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression HANDLE;
expression COUNT;
typedef u8;
typedef __u8;
@@
(
devm_kzalloc(HANDLE,
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(char) * COUNT
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
expression HANDLE;
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
expression HANDLE;
identifier SIZE, COUNT;
@@
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression HANDLE;
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
devm_kzalloc(HANDLE,
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression HANDLE;
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
expression HANDLE;
identifier STRIDE, SIZE, COUNT;
@@
(
devm_kzalloc(HANDLE,
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression HANDLE;
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
devm_kzalloc(HANDLE, C1 * C2 * C3, ...)
|
devm_kzalloc(HANDLE,
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
devm_kzalloc(HANDLE,
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
devm_kzalloc(HANDLE,
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
devm_kzalloc(HANDLE,
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression HANDLE;
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
devm_kzalloc(HANDLE, sizeof(THING) * C2, ...)
|
devm_kzalloc(HANDLE, sizeof(TYPE) * C2, ...)
|
devm_kzalloc(HANDLE, C1 * C2 * C3, ...)
|
devm_kzalloc(HANDLE, C1 * C2, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- (E1) * E2
+ E1, E2
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- (E1) * (E2)
+ E1, E2
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-13 05:07:58 +08:00
|
|
|
pmx->group_pins = devm_kcalloc(&pdev->dev,
|
|
|
|
soc_data->ngroups * 4, sizeof(*pmx->group_pins),
|
2014-03-08 03:22:16 +08:00
|
|
|
GFP_KERNEL);
|
|
|
|
if (!pmx->group_pins)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
group_pins = pmx->group_pins;
|
|
|
|
for (fn = 0; fn < soc_data->nfunctions; fn++) {
|
|
|
|
struct tegra_function *func = &soc_data->functions[fn];
|
|
|
|
|
|
|
|
func->groups = group_pins;
|
|
|
|
|
|
|
|
for (gn = 0; gn < soc_data->ngroups; gn++) {
|
|
|
|
const struct tegra_pingroup *g = &soc_data->groups[gn];
|
|
|
|
|
|
|
|
if (g->mux_reg == -1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (gfn = 0; gfn < 4; gfn++)
|
|
|
|
if (g->funcs[gfn] == fn)
|
|
|
|
break;
|
|
|
|
if (gfn == 4)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
BUG_ON(group_pins - pmx->group_pins >=
|
|
|
|
soc_data->ngroups * 4);
|
|
|
|
*group_pins++ = g->name;
|
|
|
|
func->ngroups++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-02 05:04:47 +08:00
|
|
|
tegra_pinctrl_gpio_range.npins = pmx->soc->ngpios;
|
2012-04-12 02:53:09 +08:00
|
|
|
tegra_pinctrl_desc.name = dev_name(&pdev->dev);
|
2012-02-02 05:04:47 +08:00
|
|
|
tegra_pinctrl_desc.pins = pmx->soc->pins;
|
|
|
|
tegra_pinctrl_desc.npins = pmx->soc->npins;
|
|
|
|
|
|
|
|
for (i = 0; ; i++) {
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, i);
|
|
|
|
if (!res)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pmx->nbanks = i;
|
|
|
|
|
treewide: devm_kzalloc() -> devm_kcalloc()
The devm_kzalloc() function has a 2-factor argument form, devm_kcalloc().
This patch replaces cases of:
devm_kzalloc(handle, a * b, gfp)
with:
devm_kcalloc(handle, a * b, gfp)
as well as handling cases of:
devm_kzalloc(handle, a * b * c, gfp)
with:
devm_kzalloc(handle, array3_size(a, b, c), gfp)
as it's slightly less ugly than:
devm_kcalloc(handle, array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
devm_kzalloc(handle, 4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
Some manual whitespace fixes were needed in this patch, as Coccinelle
really liked to write "=devm_kcalloc..." instead of "= devm_kcalloc...".
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
expression HANDLE;
type TYPE;
expression THING, E;
@@
(
devm_kzalloc(HANDLE,
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
devm_kzalloc(HANDLE,
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression HANDLE;
expression COUNT;
typedef u8;
typedef __u8;
@@
(
devm_kzalloc(HANDLE,
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(char) * COUNT
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
expression HANDLE;
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
expression HANDLE;
identifier SIZE, COUNT;
@@
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression HANDLE;
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
devm_kzalloc(HANDLE,
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression HANDLE;
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
expression HANDLE;
identifier STRIDE, SIZE, COUNT;
@@
(
devm_kzalloc(HANDLE,
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression HANDLE;
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
devm_kzalloc(HANDLE, C1 * C2 * C3, ...)
|
devm_kzalloc(HANDLE,
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
devm_kzalloc(HANDLE,
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
devm_kzalloc(HANDLE,
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
devm_kzalloc(HANDLE,
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression HANDLE;
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
devm_kzalloc(HANDLE, sizeof(THING) * C2, ...)
|
devm_kzalloc(HANDLE, sizeof(TYPE) * C2, ...)
|
devm_kzalloc(HANDLE, C1 * C2 * C3, ...)
|
devm_kzalloc(HANDLE, C1 * C2, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- (E1) * E2
+ E1, E2
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- (E1) * (E2)
+ E1, E2
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-13 05:07:58 +08:00
|
|
|
pmx->regs = devm_kcalloc(&pdev->dev, pmx->nbanks, sizeof(*pmx->regs),
|
2012-02-02 05:04:47 +08:00
|
|
|
GFP_KERNEL);
|
2017-12-28 22:15:08 +08:00
|
|
|
if (!pmx->regs)
|
2014-02-05 21:41:34 +08:00
|
|
|
return -ENOMEM;
|
2012-02-02 05:04:47 +08:00
|
|
|
|
|
|
|
for (i = 0; i < pmx->nbanks; i++) {
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, i);
|
2013-08-27 09:07:23 +08:00
|
|
|
pmx->regs[i] = devm_ioremap_resource(&pdev->dev, res);
|
|
|
|
if (IS_ERR(pmx->regs[i]))
|
|
|
|
return PTR_ERR(pmx->regs[i]);
|
2012-02-02 05:04:47 +08:00
|
|
|
}
|
|
|
|
|
2016-02-24 17:14:07 +08:00
|
|
|
pmx->pctl = devm_pinctrl_register(&pdev->dev, &tegra_pinctrl_desc, pmx);
|
2015-06-09 12:01:16 +08:00
|
|
|
if (IS_ERR(pmx->pctl)) {
|
2012-02-02 05:04:47 +08:00
|
|
|
dev_err(&pdev->dev, "Couldn't register pinctrl driver\n");
|
2015-06-09 12:01:16 +08:00
|
|
|
return PTR_ERR(pmx->pctl);
|
2012-02-02 05:04:47 +08:00
|
|
|
}
|
|
|
|
|
2016-04-08 05:37:08 +08:00
|
|
|
tegra_pinctrl_clear_parked_bits(pmx);
|
|
|
|
|
2018-07-26 23:40:24 +08:00
|
|
|
if (!gpio_node_has_range(pmx->soc->gpio_compatible))
|
2015-07-14 16:29:55 +08:00
|
|
|
pinctrl_add_gpio_range(pmx->pctl, &tegra_pinctrl_gpio_range);
|
2012-02-02 05:04:47 +08:00
|
|
|
|
|
|
|
platform_set_drvdata(pdev, pmx);
|
|
|
|
|
|
|
|
dev_dbg(&pdev->dev, "Probed Tegra pinctrl driver\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|