pinctrl: renesas: Updates for v6.9
- Add pin groups for SCIF_CLK2 on R-Car V4H, - Add support for port pins P19 to P28 on RZ/Five, - Miscellaneous fixes and improvements. -----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQQ9qaHoIs/1I4cXmEiKwlD9ZEnxcAUCZcZV0wAKCRCKwlD9ZEnx cAQ6AP9RPb5CW91132jjfoF/+dzAyEZj2YR8ndjrzN2QzOn4tQEAlfEOlavoTikB oXQsRHGaeV8HQr02OEZgNJWYDXQMrAY= =cnIJ -----END PGP SIGNATURE----- Merge tag 'renesas-pinctrl-for-v6.9-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers into devel pinctrl: renesas: Updates for v6.9 - Add pin groups for SCIF_CLK2 on R-Car V4H, - Add support for port pins P19 to P28 on RZ/Five, - Miscellaneous fixes and improvements. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
commit
fd141e173a
@ -46,6 +46,10 @@
|
||||
};
|
||||
};
|
||||
|
||||
&pinctrl {
|
||||
gpio-ranges = <&pinctrl 0 0 232>;
|
||||
};
|
||||
|
||||
&soc {
|
||||
dma-noncoherent;
|
||||
interrupt-parent = <&plic>;
|
||||
|
@ -907,9 +907,11 @@ static void __init sh_pfc_check_cfg_reg(const char *drvname,
|
||||
sh_pfc_err("reg 0x%x: var_field_width declares %u instead of %u bits\n",
|
||||
cfg_reg->reg, rw, cfg_reg->reg_width);
|
||||
|
||||
if (n != cfg_reg->nr_enum_ids)
|
||||
if (n != cfg_reg->nr_enum_ids) {
|
||||
sh_pfc_err("reg 0x%x: enum_ids[] has %u instead of %u values\n",
|
||||
cfg_reg->reg, cfg_reg->nr_enum_ids, n);
|
||||
n = cfg_reg->nr_enum_ids;
|
||||
}
|
||||
|
||||
check_enum_ids:
|
||||
sh_pfc_check_reg_enums(drvname, cfg_reg->reg, cfg_reg->enum_ids, n);
|
||||
|
@ -2384,6 +2384,14 @@ static const unsigned int scif_clk_mux[] = {
|
||||
SCIF_CLK_MARK,
|
||||
};
|
||||
|
||||
static const unsigned int scif_clk2_pins[] = {
|
||||
/* SCIF_CLK2 */
|
||||
RCAR_GP_PIN(8, 11),
|
||||
};
|
||||
static const unsigned int scif_clk2_mux[] = {
|
||||
SCIF_CLK2_MARK,
|
||||
};
|
||||
|
||||
/* - SSI ------------------------------------------------- */
|
||||
static const unsigned int ssi_data_pins[] = {
|
||||
/* SSI_SD */
|
||||
@ -2694,6 +2702,7 @@ static const struct sh_pfc_pin_group pinmux_groups[] = {
|
||||
SH_PFC_PIN_GROUP(scif4_clk),
|
||||
SH_PFC_PIN_GROUP(scif4_ctrl),
|
||||
SH_PFC_PIN_GROUP(scif_clk),
|
||||
SH_PFC_PIN_GROUP(scif_clk2),
|
||||
|
||||
SH_PFC_PIN_GROUP(ssi_data),
|
||||
SH_PFC_PIN_GROUP(ssi_ctrl),
|
||||
@ -3015,6 +3024,10 @@ static const char * const scif_clk_groups[] = {
|
||||
"scif_clk",
|
||||
};
|
||||
|
||||
static const char * const scif_clk2_groups[] = {
|
||||
"scif_clk2",
|
||||
};
|
||||
|
||||
static const char * const ssi_groups[] = {
|
||||
"ssi_data",
|
||||
"ssi_ctrl",
|
||||
@ -3102,6 +3115,7 @@ static const struct sh_pfc_function pinmux_functions[] = {
|
||||
SH_PFC_FUNCTION(scif3),
|
||||
SH_PFC_FUNCTION(scif4),
|
||||
SH_PFC_FUNCTION(scif_clk),
|
||||
SH_PFC_FUNCTION(scif_clk2),
|
||||
|
||||
SH_PFC_FUNCTION(ssi),
|
||||
|
||||
|
@ -5,6 +5,7 @@
|
||||
* Copyright (C) 2021 Renesas Electronics Corporation.
|
||||
*/
|
||||
|
||||
#include <linux/bitfield.h>
|
||||
#include <linux/bitops.h>
|
||||
#include <linux/clk.h>
|
||||
#include <linux/gpio/driver.h>
|
||||
@ -38,8 +39,6 @@
|
||||
*/
|
||||
#define MUX_PIN_ID_MASK GENMASK(15, 0)
|
||||
#define MUX_FUNC_MASK GENMASK(31, 16)
|
||||
#define MUX_FUNC_OFFS 16
|
||||
#define MUX_FUNC(pinconf) (((pinconf) & MUX_FUNC_MASK) >> MUX_FUNC_OFFS)
|
||||
|
||||
/* PIN capabilities */
|
||||
#define PIN_CFG_IOLH_A BIT(0)
|
||||
@ -58,6 +57,8 @@
|
||||
#define PIN_CFG_IOLH_C BIT(13)
|
||||
#define PIN_CFG_SOFT_PS BIT(14)
|
||||
#define PIN_CFG_OEN BIT(15)
|
||||
#define PIN_CFG_VARIABLE BIT(16)
|
||||
#define PIN_CFG_NOGPIO_INT BIT(17)
|
||||
|
||||
#define RZG2L_MPXED_COMMON_PIN_FUNCS(group) \
|
||||
(PIN_CFG_IOLH_##group | \
|
||||
@ -77,27 +78,41 @@
|
||||
PIN_CFG_FILNUM | \
|
||||
PIN_CFG_FILCLKSEL)
|
||||
|
||||
#define PIN_CFG_PIN_MAP_MASK GENMASK_ULL(35, 28)
|
||||
#define PIN_CFG_PIN_REG_MASK GENMASK(27, 20)
|
||||
#define PIN_CFG_MASK GENMASK(19, 0)
|
||||
|
||||
/*
|
||||
* m indicates the bitmap of supported pins, a is the register index
|
||||
* and f is pin configuration capabilities supported.
|
||||
*/
|
||||
#define RZG2L_GPIO_PORT_SPARSE_PACK(m, a, f) (FIELD_PREP_CONST(PIN_CFG_PIN_MAP_MASK, (m)) | \
|
||||
FIELD_PREP_CONST(PIN_CFG_PIN_REG_MASK, (a)) | \
|
||||
FIELD_PREP_CONST(PIN_CFG_MASK, (f)))
|
||||
|
||||
/*
|
||||
* n indicates number of pins in the port, a is the register index
|
||||
* and f is pin configuration capabilities supported.
|
||||
*/
|
||||
#define RZG2L_GPIO_PORT_PACK(n, a, f) (((n) << 28) | ((a) << 20) | (f))
|
||||
#define RZG2L_GPIO_PORT_GET_PINCNT(x) (((x) & GENMASK(30, 28)) >> 28)
|
||||
#define RZG2L_GPIO_PORT_PACK(n, a, f) RZG2L_GPIO_PORT_SPARSE_PACK((1ULL << (n)) - 1, (a), (f))
|
||||
|
||||
/*
|
||||
* BIT(31) indicates dedicated pin, p is the register index while
|
||||
* BIT(63) indicates dedicated pin, p is the register index while
|
||||
* referencing to SR/IEN/IOLH/FILxx registers, b is the register bits
|
||||
* (b * 8) and f is the pin configuration capabilities supported.
|
||||
*/
|
||||
#define RZG2L_SINGLE_PIN BIT(31)
|
||||
#define RZG2L_SINGLE_PIN_PACK(p, b, f) (RZG2L_SINGLE_PIN | \
|
||||
((p) << 24) | ((b) << 20) | (f))
|
||||
#define RZG2L_SINGLE_PIN_GET_BIT(x) (((x) & GENMASK(22, 20)) >> 20)
|
||||
#define RZG2L_SINGLE_PIN BIT_ULL(63)
|
||||
#define RZG2L_SINGLE_PIN_INDEX_MASK GENMASK(30, 24)
|
||||
#define RZG2L_SINGLE_PIN_BITS_MASK GENMASK(22, 20)
|
||||
|
||||
#define RZG2L_SINGLE_PIN_PACK(p, b, f) (RZG2L_SINGLE_PIN | \
|
||||
FIELD_PREP_CONST(RZG2L_SINGLE_PIN_INDEX_MASK, (p)) | \
|
||||
FIELD_PREP_CONST(RZG2L_SINGLE_PIN_BITS_MASK, (b)) | \
|
||||
FIELD_PREP_CONST(PIN_CFG_MASK, (f)))
|
||||
|
||||
#define RZG2L_PIN_CFG_TO_CAPS(cfg) ((cfg) & GENMASK(19, 0))
|
||||
#define RZG2L_PIN_CFG_TO_PORT_OFFSET(cfg) ((cfg) & RZG2L_SINGLE_PIN ? \
|
||||
(((cfg) & GENMASK(30, 24)) >> 24) : \
|
||||
(((cfg) & GENMASK(26, 20)) >> 20))
|
||||
FIELD_GET(RZG2L_SINGLE_PIN_INDEX_MASK, (cfg)) : \
|
||||
FIELD_GET(PIN_CFG_PIN_REG_MASK, (cfg)))
|
||||
|
||||
#define P(off) (0x0000 + (off))
|
||||
#define PM(off) (0x0100 + (off) * 2)
|
||||
@ -189,17 +204,31 @@ struct rzg2l_hwcfg {
|
||||
|
||||
struct rzg2l_dedicated_configs {
|
||||
const char *name;
|
||||
u32 config;
|
||||
u64 config;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct rzg2l_variable_pin_cfg - pin data cfg
|
||||
* @cfg: port pin configuration
|
||||
* @port: port number
|
||||
* @pin: port pin
|
||||
*/
|
||||
struct rzg2l_variable_pin_cfg {
|
||||
u32 cfg:20;
|
||||
u32 port:5;
|
||||
u32 pin:3;
|
||||
};
|
||||
|
||||
struct rzg2l_pinctrl_data {
|
||||
const char * const *port_pins;
|
||||
const u32 *port_pin_configs;
|
||||
const u64 *port_pin_configs;
|
||||
unsigned int n_ports;
|
||||
const struct rzg2l_dedicated_configs *dedicated_pins;
|
||||
unsigned int n_port_pins;
|
||||
unsigned int n_dedicated_pins;
|
||||
const struct rzg2l_hwcfg *hwcfg;
|
||||
const struct rzg2l_variable_pin_cfg *variable_pin_cfg;
|
||||
unsigned int n_variable_pin_cfg;
|
||||
};
|
||||
|
||||
/**
|
||||
@ -235,6 +264,143 @@ struct rzg2l_pinctrl {
|
||||
|
||||
static const u16 available_ps[] = { 1800, 2500, 3300 };
|
||||
|
||||
#ifdef CONFIG_RISCV
|
||||
static u64 rzg2l_pinctrl_get_variable_pin_cfg(struct rzg2l_pinctrl *pctrl,
|
||||
u64 pincfg,
|
||||
unsigned int port,
|
||||
u8 pin)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < pctrl->data->n_variable_pin_cfg; i++) {
|
||||
if (pctrl->data->variable_pin_cfg[i].port == port &&
|
||||
pctrl->data->variable_pin_cfg[i].pin == pin)
|
||||
return (pincfg & ~PIN_CFG_VARIABLE) | pctrl->data->variable_pin_cfg[i].cfg;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct rzg2l_variable_pin_cfg r9a07g043f_variable_pin_cfg[] = {
|
||||
{
|
||||
.port = 20,
|
||||
.pin = 0,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_FILONOFF | PIN_CFG_FILNUM | PIN_CFG_FILCLKSEL |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 20,
|
||||
.pin = 1,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_FILONOFF | PIN_CFG_FILNUM | PIN_CFG_FILCLKSEL |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 20,
|
||||
.pin = 2,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_FILONOFF | PIN_CFG_FILNUM | PIN_CFG_FILCLKSEL |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 20,
|
||||
.pin = 3,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 20,
|
||||
.pin = 4,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 20,
|
||||
.pin = 5,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 20,
|
||||
.pin = 6,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 20,
|
||||
.pin = 7,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 23,
|
||||
.pin = 1,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_NOGPIO_INT
|
||||
},
|
||||
{
|
||||
.port = 23,
|
||||
.pin = 2,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 23,
|
||||
.pin = 3,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 23,
|
||||
.pin = 4,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 23,
|
||||
.pin = 5,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 24,
|
||||
.pin = 0,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 24,
|
||||
.pin = 1,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 24,
|
||||
.pin = 2,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 24,
|
||||
.pin = 3,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 24,
|
||||
.pin = 4,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
{
|
||||
.port = 24,
|
||||
.pin = 5,
|
||||
.cfg = PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_FILONOFF | PIN_CFG_FILNUM | PIN_CFG_FILCLKSEL |
|
||||
PIN_CFG_NOGPIO_INT,
|
||||
},
|
||||
};
|
||||
#endif
|
||||
|
||||
static void rzg2l_pinctrl_set_pfc_mode(struct rzg2l_pinctrl *pctrl,
|
||||
u8 pin, u8 off, u8 func)
|
||||
{
|
||||
@ -295,7 +461,7 @@ static int rzg2l_pinctrl_set_mux(struct pinctrl_dev *pctldev,
|
||||
pins = group->grp.pins;
|
||||
|
||||
for (i = 0; i < group->grp.npins; i++) {
|
||||
unsigned int *pin_data = pctrl->desc.pins[pins[i]].drv_data;
|
||||
u64 *pin_data = pctrl->desc.pins[pins[i]].drv_data;
|
||||
u32 off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
u32 pin = RZG2L_PIN_ID_TO_PIN(pins[i]);
|
||||
|
||||
@ -432,8 +598,8 @@ static int rzg2l_dt_subnode_to_map(struct pinctrl_dev *pctldev,
|
||||
ret = of_property_read_u32_index(np, "pinmux", i, &value);
|
||||
if (ret)
|
||||
goto done;
|
||||
pins[i] = value & MUX_PIN_ID_MASK;
|
||||
psel_val[i] = MUX_FUNC(value);
|
||||
pins[i] = FIELD_GET(MUX_PIN_ID_MASK, value);
|
||||
psel_val[i] = FIELD_GET(MUX_FUNC_MASK, value);
|
||||
}
|
||||
|
||||
if (parent) {
|
||||
@ -447,6 +613,16 @@ static int rzg2l_dt_subnode_to_map(struct pinctrl_dev *pctldev,
|
||||
name = np->name;
|
||||
}
|
||||
|
||||
if (num_configs) {
|
||||
ret = rzg2l_map_add_config(&maps[idx], name,
|
||||
PIN_MAP_TYPE_CONFIGS_GROUP,
|
||||
configs, num_configs);
|
||||
if (ret < 0)
|
||||
goto done;
|
||||
|
||||
idx++;
|
||||
}
|
||||
|
||||
mutex_lock(&pctrl->mutex);
|
||||
|
||||
/* Register a single pin group listing all the pins we read from DT */
|
||||
@ -474,16 +650,6 @@ static int rzg2l_dt_subnode_to_map(struct pinctrl_dev *pctldev,
|
||||
maps[idx].data.mux.function = name;
|
||||
idx++;
|
||||
|
||||
if (num_configs) {
|
||||
ret = rzg2l_map_add_config(&maps[idx], name,
|
||||
PIN_MAP_TYPE_CONFIGS_GROUP,
|
||||
configs, num_configs);
|
||||
if (ret < 0)
|
||||
goto remove_group;
|
||||
|
||||
idx++;
|
||||
}
|
||||
|
||||
dev_dbg(pctrl->dev, "Parsed %pOF with %d pins\n", np, num_pinmux);
|
||||
ret = 0;
|
||||
goto done;
|
||||
@ -558,13 +724,13 @@ done:
|
||||
}
|
||||
|
||||
static int rzg2l_validate_gpio_pin(struct rzg2l_pinctrl *pctrl,
|
||||
u32 cfg, u32 port, u8 bit)
|
||||
u64 cfg, u32 port, u8 bit)
|
||||
{
|
||||
u8 pincount = RZG2L_GPIO_PORT_GET_PINCNT(cfg);
|
||||
u8 pinmap = FIELD_GET(PIN_CFG_PIN_MAP_MASK, cfg);
|
||||
u32 off = RZG2L_PIN_CFG_TO_PORT_OFFSET(cfg);
|
||||
u32 data;
|
||||
u64 data;
|
||||
|
||||
if (bit >= pincount || port >= pctrl->data->n_port_pins)
|
||||
if (!(pinmap & BIT(bit)) || port >= pctrl->data->n_port_pins)
|
||||
return -EINVAL;
|
||||
|
||||
data = pctrl->data->port_pin_configs[port];
|
||||
@ -856,7 +1022,7 @@ static int rzg2l_pinctrl_pinconf_get(struct pinctrl_dev *pctldev,
|
||||
enum pin_config_param param = pinconf_to_config_param(*config);
|
||||
const struct rzg2l_hwcfg *hwcfg = pctrl->data->hwcfg;
|
||||
const struct pinctrl_pin_desc *pin = &pctrl->desc.pins[_pin];
|
||||
unsigned int *pin_data = pin->drv_data;
|
||||
u64 *pin_data = pin->drv_data;
|
||||
unsigned int arg = 0;
|
||||
u32 off, cfg;
|
||||
int ret;
|
||||
@ -866,9 +1032,9 @@ static int rzg2l_pinctrl_pinconf_get(struct pinctrl_dev *pctldev,
|
||||
return -EINVAL;
|
||||
|
||||
off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
cfg = RZG2L_PIN_CFG_TO_CAPS(*pin_data);
|
||||
cfg = FIELD_GET(PIN_CFG_MASK, *pin_data);
|
||||
if (*pin_data & RZG2L_SINGLE_PIN) {
|
||||
bit = RZG2L_SINGLE_PIN_GET_BIT(*pin_data);
|
||||
bit = FIELD_GET(RZG2L_SINGLE_PIN_BITS_MASK, *pin_data);
|
||||
} else {
|
||||
bit = RZG2L_PIN_ID_TO_PIN(_pin);
|
||||
|
||||
@ -959,7 +1125,7 @@ static int rzg2l_pinctrl_pinconf_set(struct pinctrl_dev *pctldev,
|
||||
const struct pinctrl_pin_desc *pin = &pctrl->desc.pins[_pin];
|
||||
const struct rzg2l_hwcfg *hwcfg = pctrl->data->hwcfg;
|
||||
struct rzg2l_pinctrl_pin_settings settings = pctrl->settings[_pin];
|
||||
unsigned int *pin_data = pin->drv_data;
|
||||
u64 *pin_data = pin->drv_data;
|
||||
enum pin_config_param param;
|
||||
unsigned int i, arg, index;
|
||||
u32 cfg, off;
|
||||
@ -970,9 +1136,9 @@ static int rzg2l_pinctrl_pinconf_set(struct pinctrl_dev *pctldev,
|
||||
return -EINVAL;
|
||||
|
||||
off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
cfg = RZG2L_PIN_CFG_TO_CAPS(*pin_data);
|
||||
cfg = FIELD_GET(PIN_CFG_MASK, *pin_data);
|
||||
if (*pin_data & RZG2L_SINGLE_PIN) {
|
||||
bit = RZG2L_SINGLE_PIN_GET_BIT(*pin_data);
|
||||
bit = FIELD_GET(RZG2L_SINGLE_PIN_BITS_MASK, *pin_data);
|
||||
} else {
|
||||
bit = RZG2L_PIN_ID_TO_PIN(_pin);
|
||||
|
||||
@ -1164,7 +1330,7 @@ static int rzg2l_gpio_request(struct gpio_chip *chip, unsigned int offset)
|
||||
{
|
||||
struct rzg2l_pinctrl *pctrl = gpiochip_get_data(chip);
|
||||
const struct pinctrl_pin_desc *pin_desc = &pctrl->desc.pins[offset];
|
||||
u32 *pin_data = pin_desc->drv_data;
|
||||
u64 *pin_data = pin_desc->drv_data;
|
||||
u32 off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
u32 port = RZG2L_PIN_ID_TO_PORT(offset);
|
||||
u8 bit = RZG2L_PIN_ID_TO_PIN(offset);
|
||||
@ -1196,7 +1362,7 @@ static void rzg2l_gpio_set_direction(struct rzg2l_pinctrl *pctrl, u32 offset,
|
||||
bool output)
|
||||
{
|
||||
const struct pinctrl_pin_desc *pin_desc = &pctrl->desc.pins[offset];
|
||||
unsigned int *pin_data = pin_desc->drv_data;
|
||||
u64 *pin_data = pin_desc->drv_data;
|
||||
u32 off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
u8 bit = RZG2L_PIN_ID_TO_PIN(offset);
|
||||
unsigned long flags;
|
||||
@ -1217,7 +1383,7 @@ static int rzg2l_gpio_get_direction(struct gpio_chip *chip, unsigned int offset)
|
||||
{
|
||||
struct rzg2l_pinctrl *pctrl = gpiochip_get_data(chip);
|
||||
const struct pinctrl_pin_desc *pin_desc = &pctrl->desc.pins[offset];
|
||||
unsigned int *pin_data = pin_desc->drv_data;
|
||||
u64 *pin_data = pin_desc->drv_data;
|
||||
u32 off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
u8 bit = RZG2L_PIN_ID_TO_PIN(offset);
|
||||
|
||||
@ -1248,7 +1414,7 @@ static void rzg2l_gpio_set(struct gpio_chip *chip, unsigned int offset,
|
||||
{
|
||||
struct rzg2l_pinctrl *pctrl = gpiochip_get_data(chip);
|
||||
const struct pinctrl_pin_desc *pin_desc = &pctrl->desc.pins[offset];
|
||||
unsigned int *pin_data = pin_desc->drv_data;
|
||||
u64 *pin_data = pin_desc->drv_data;
|
||||
u32 off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
u8 bit = RZG2L_PIN_ID_TO_PIN(offset);
|
||||
unsigned long flags;
|
||||
@ -1281,7 +1447,7 @@ static int rzg2l_gpio_get(struct gpio_chip *chip, unsigned int offset)
|
||||
{
|
||||
struct rzg2l_pinctrl *pctrl = gpiochip_get_data(chip);
|
||||
const struct pinctrl_pin_desc *pin_desc = &pctrl->desc.pins[offset];
|
||||
unsigned int *pin_data = pin_desc->drv_data;
|
||||
u64 *pin_data = pin_desc->drv_data;
|
||||
u32 off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
u8 bit = RZG2L_PIN_ID_TO_PIN(offset);
|
||||
u16 reg16;
|
||||
@ -1366,7 +1532,7 @@ static const char * const rzg2l_gpio_names[] = {
|
||||
"P48_0", "P48_1", "P48_2", "P48_3", "P48_4", "P48_5", "P48_6", "P48_7",
|
||||
};
|
||||
|
||||
static const u32 r9a07g044_gpio_configs[] = {
|
||||
static const u64 r9a07g044_gpio_configs[] = {
|
||||
RZG2L_GPIO_PORT_PACK(2, 0x10, RZG2L_MPXED_PIN_FUNCS),
|
||||
RZG2L_GPIO_PORT_PACK(2, 0x11, RZG2L_MPXED_PIN_FUNCS),
|
||||
RZG2L_GPIO_PORT_PACK(2, 0x12, RZG2L_MPXED_PIN_FUNCS),
|
||||
@ -1418,7 +1584,7 @@ static const u32 r9a07g044_gpio_configs[] = {
|
||||
RZG2L_GPIO_PORT_PACK(5, 0x40, RZG2L_MPXED_PIN_FUNCS),
|
||||
};
|
||||
|
||||
static const u32 r9a07g043_gpio_configs[] = {
|
||||
static const u64 r9a07g043_gpio_configs[] = {
|
||||
RZG2L_GPIO_PORT_PACK(4, 0x10, RZG2L_MPXED_PIN_FUNCS),
|
||||
RZG2L_GPIO_PORT_PACK(5, 0x11, RZG2L_MPXED_ETH_PIN_FUNCS(PIN_CFG_IO_VMC_ETH0)),
|
||||
RZG2L_GPIO_PORT_PACK(4, 0x12, RZG2L_MPXED_ETH_PIN_FUNCS(PIN_CFG_IO_VMC_ETH0)),
|
||||
@ -1438,9 +1604,28 @@ static const u32 r9a07g043_gpio_configs[] = {
|
||||
RZG2L_GPIO_PORT_PACK(2, 0x20, RZG2L_MPXED_PIN_FUNCS),
|
||||
RZG2L_GPIO_PORT_PACK(4, 0x21, RZG2L_MPXED_PIN_FUNCS),
|
||||
RZG2L_GPIO_PORT_PACK(6, 0x22, RZG2L_MPXED_PIN_FUNCS),
|
||||
#ifdef CONFIG_RISCV
|
||||
/* Below additional port pins (P19 - P28) are exclusively available on RZ/Five SoC only */
|
||||
RZG2L_GPIO_PORT_SPARSE_PACK(0x2, 0x06, PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_FILONOFF | PIN_CFG_FILNUM | PIN_CFG_FILCLKSEL |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT), /* P19 */
|
||||
RZG2L_GPIO_PORT_PACK(8, 0x07, PIN_CFG_VARIABLE), /* P20 */
|
||||
RZG2L_GPIO_PORT_SPARSE_PACK(0x2, 0x08, PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT), /* P21 */
|
||||
RZG2L_GPIO_PORT_PACK(4, 0x09, PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_PUPD |
|
||||
PIN_CFG_IEN | PIN_CFG_NOGPIO_INT), /* P22 */
|
||||
RZG2L_GPIO_PORT_SPARSE_PACK(0x3e, 0x0a, PIN_CFG_VARIABLE), /* P23 */
|
||||
RZG2L_GPIO_PORT_PACK(6, 0x0b, PIN_CFG_VARIABLE), /* P24 */
|
||||
RZG2L_GPIO_PORT_SPARSE_PACK(0x2, 0x0c, PIN_CFG_IOLH_B | PIN_CFG_SR | PIN_CFG_FILONOFF |
|
||||
PIN_CFG_FILNUM | PIN_CFG_FILCLKSEL |
|
||||
PIN_CFG_NOGPIO_INT), /* P25 */
|
||||
0x0, /* P26 */
|
||||
0x0, /* P27 */
|
||||
RZG2L_GPIO_PORT_PACK(6, 0x0f, RZG2L_MPXED_PIN_FUNCS | PIN_CFG_NOGPIO_INT), /* P28 */
|
||||
#endif
|
||||
};
|
||||
|
||||
static const u32 r9a08g045_gpio_configs[] = {
|
||||
static const u64 r9a08g045_gpio_configs[] = {
|
||||
RZG2L_GPIO_PORT_PACK(4, 0x20, RZG3S_MPXED_PIN_FUNCS(A)), /* P0 */
|
||||
RZG2L_GPIO_PORT_PACK(5, 0x30, RZG2L_MPXED_ETH_PIN_FUNCS(PIN_CFG_IOLH_C |
|
||||
PIN_CFG_IO_VMC_ETH0)) |
|
||||
@ -1598,22 +1783,28 @@ static const struct rzg2l_dedicated_configs rzg3s_dedicated_pins[] = {
|
||||
PIN_CFG_IO_VMC_SD1)) },
|
||||
};
|
||||
|
||||
static int rzg2l_gpio_get_gpioint(unsigned int virq, const struct rzg2l_pinctrl_data *data)
|
||||
static int rzg2l_gpio_get_gpioint(unsigned int virq, struct rzg2l_pinctrl *pctrl)
|
||||
{
|
||||
const struct pinctrl_pin_desc *pin_desc = &pctrl->desc.pins[virq];
|
||||
const struct rzg2l_pinctrl_data *data = pctrl->data;
|
||||
u64 *pin_data = pin_desc->drv_data;
|
||||
unsigned int gpioint;
|
||||
unsigned int i;
|
||||
u32 port, bit;
|
||||
|
||||
if (*pin_data & PIN_CFG_NOGPIO_INT)
|
||||
return -EINVAL;
|
||||
|
||||
port = virq / 8;
|
||||
bit = virq % 8;
|
||||
|
||||
if (port >= data->n_ports ||
|
||||
bit >= RZG2L_GPIO_PORT_GET_PINCNT(data->port_pin_configs[port]))
|
||||
bit >= hweight8(FIELD_GET(PIN_CFG_PIN_MAP_MASK, data->port_pin_configs[port])))
|
||||
return -EINVAL;
|
||||
|
||||
gpioint = bit;
|
||||
for (i = 0; i < port; i++)
|
||||
gpioint += RZG2L_GPIO_PORT_GET_PINCNT(data->port_pin_configs[i]);
|
||||
gpioint += hweight8(FIELD_GET(PIN_CFG_PIN_MAP_MASK, data->port_pin_configs[i]));
|
||||
|
||||
return gpioint;
|
||||
}
|
||||
@ -1624,7 +1815,7 @@ static void rzg2l_gpio_irq_disable(struct irq_data *d)
|
||||
struct rzg2l_pinctrl *pctrl = container_of(gc, struct rzg2l_pinctrl, gpio_chip);
|
||||
unsigned int hwirq = irqd_to_hwirq(d);
|
||||
const struct pinctrl_pin_desc *pin_desc = &pctrl->desc.pins[hwirq];
|
||||
unsigned int *pin_data = pin_desc->drv_data;
|
||||
u64 *pin_data = pin_desc->drv_data;
|
||||
u32 off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
u8 bit = RZG2L_PIN_ID_TO_PIN(hwirq);
|
||||
unsigned long flags;
|
||||
@ -1651,7 +1842,7 @@ static void rzg2l_gpio_irq_enable(struct irq_data *d)
|
||||
struct rzg2l_pinctrl *pctrl = container_of(gc, struct rzg2l_pinctrl, gpio_chip);
|
||||
unsigned int hwirq = irqd_to_hwirq(d);
|
||||
const struct pinctrl_pin_desc *pin_desc = &pctrl->desc.pins[hwirq];
|
||||
unsigned int *pin_data = pin_desc->drv_data;
|
||||
u64 *pin_data = pin_desc->drv_data;
|
||||
u32 off = RZG2L_PIN_CFG_TO_PORT_OFFSET(*pin_data);
|
||||
u8 bit = RZG2L_PIN_ID_TO_PIN(hwirq);
|
||||
unsigned long flags;
|
||||
@ -1713,7 +1904,7 @@ static int rzg2l_gpio_child_to_parent_hwirq(struct gpio_chip *gc,
|
||||
unsigned long flags;
|
||||
int gpioint, irq;
|
||||
|
||||
gpioint = rzg2l_gpio_get_gpioint(child, pctrl->data);
|
||||
gpioint = rzg2l_gpio_get_gpioint(child, pctrl);
|
||||
if (gpioint < 0)
|
||||
return gpioint;
|
||||
|
||||
@ -1788,7 +1979,8 @@ static void rzg2l_init_irq_valid_mask(struct gpio_chip *gc,
|
||||
bit = offset % 8;
|
||||
|
||||
if (port >= pctrl->data->n_ports ||
|
||||
bit >= RZG2L_GPIO_PORT_GET_PINCNT(pctrl->data->port_pin_configs[port]))
|
||||
bit >= hweight8(FIELD_GET(PIN_CFG_PIN_MAP_MASK,
|
||||
pctrl->data->port_pin_configs[port])))
|
||||
clear_bit(offset, valid_mask);
|
||||
}
|
||||
}
|
||||
@ -1870,7 +2062,7 @@ static int rzg2l_pinctrl_register(struct rzg2l_pinctrl *pctrl)
|
||||
const struct rzg2l_hwcfg *hwcfg = pctrl->data->hwcfg;
|
||||
struct pinctrl_pin_desc *pins;
|
||||
unsigned int i, j;
|
||||
u32 *pin_data;
|
||||
u64 *pin_data;
|
||||
int ret;
|
||||
|
||||
pctrl->desc.name = DRV_NAME;
|
||||
@ -1898,6 +2090,13 @@ static int rzg2l_pinctrl_register(struct rzg2l_pinctrl *pctrl)
|
||||
if (i && !(i % RZG2L_PINS_PER_PORT))
|
||||
j++;
|
||||
pin_data[i] = pctrl->data->port_pin_configs[j];
|
||||
#ifdef CONFIG_RISCV
|
||||
if (pin_data[i] & PIN_CFG_VARIABLE)
|
||||
pin_data[i] = rzg2l_pinctrl_get_variable_pin_cfg(pctrl,
|
||||
pin_data[i],
|
||||
j,
|
||||
i % RZG2L_PINS_PER_PORT);
|
||||
#endif
|
||||
pins[i].drv_data = &pin_data[i];
|
||||
}
|
||||
|
||||
@ -2049,6 +2248,10 @@ static struct rzg2l_pinctrl_data r9a07g043_data = {
|
||||
.n_port_pins = ARRAY_SIZE(r9a07g043_gpio_configs) * RZG2L_PINS_PER_PORT,
|
||||
.n_dedicated_pins = ARRAY_SIZE(rzg2l_dedicated_pins.common),
|
||||
.hwcfg = &rzg2l_hwcfg,
|
||||
#ifdef CONFIG_RISCV
|
||||
.variable_pin_cfg = r9a07g043f_variable_pin_cfg,
|
||||
.n_variable_pin_cfg = ARRAY_SIZE(r9a07g043f_variable_pin_cfg),
|
||||
#endif
|
||||
};
|
||||
|
||||
static struct rzg2l_pinctrl_data r9a07g044_data = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user