Message ID | 20211021174223.43310-13-kernel@esmil.dk (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Basic StarFive JH7100 RISC-V SoC support | expand |
On Thu, Oct 21, 2021 at 07:42:19PM +0200, Emil Renner Berthing wrote: > Add a combined pinctrl and GPIO driver for the StarFive JH7100 SoC. > > For each "GPIO" there are two registers for configuring the output and > output enable signals which may come from other peripherals. Among these > are two special signals that are constant 0 and constant 1 respectively. > Controlling the GPIOs from software is done by choosing one of these > signals. In other words the same registers are used for both pinmuxing > and controlling the GPIOs, which makes it easier to combine the pinctrl > and GPIO driver in one. > > I wrote the pinconf and pinmux parts, but the GPIO part of the code is > based on the GPIO driver in the vendor tree written by Huan Feng with > cleanups and fixes by Drew and me. > > Datasheet: https://github.com/starfive-tech/JH7100_Docs/blob/main/JH7100%20Data%20Sheet%20V01.01.04-EN%20(4-21-2021).pdf > Co-developed-by: Huan Feng <huan.feng@starfivetech.com> > Signed-off-by: Huan Feng <huan.feng@starfivetech.com> > Signed-off-by: Emil Renner Berthing <kernel@esmil.dk> > Co-developed-by: Drew Fustini <drew@beagleboard.org> > Signed-off-by: Drew Fustini <drew@beagleboard.org> > --- > MAINTAINERS | 8 + > drivers/pinctrl/Kconfig | 16 + > drivers/pinctrl/Makefile | 1 + > drivers/pinctrl/pinctrl-starfive.c | 1387 ++++++++++++++++++++++++++++ > 4 files changed, 1412 insertions(+) > create mode 100644 drivers/pinctrl/pinctrl-starfive.c > > diff --git a/MAINTAINERS b/MAINTAINERS > index b3f3a29fc91f..1f122f93a5a5 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -17855,6 +17855,14 @@ F: Documentation/devicetree/bindings/clock/starfive,jh7100-clkgen.yaml > F: drivers/clk/starfive/clk-starfive-jh7100.c > F: include/dt-bindings/clock/starfive-jh7100.h > > +STARFIVE JH7100 PINCTRL DRIVER > +M: Emil Renner Berthing <kernel@esmil.dk> > +L: linux-gpio@vger.kernel.org > +S: Maintained > +F: Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml > +F: drivers/pinctrl/pinctrl-starfive.c > +F: include/dt-bindings/pinctrl/pinctrl-starfive.h > + > STARFIVE JH7100 RESET CONTROLLER DRIVER > M: Emil Renner Berthing <kernel@esmil.dk> > S: Maintained > diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig > index 31921108e456..98caa94acf9e 100644 > --- a/drivers/pinctrl/Kconfig > +++ b/drivers/pinctrl/Kconfig > @@ -265,6 +265,22 @@ config PINCTRL_ST > select PINCONF > select GPIOLIB_IRQCHIP > > +config PINCTRL_STARFIVE > + tristate "Pinctrl and GPIO driver for the StarFive JH7100 SoC" > + depends on SOC_STARFIVE || COMPILE_TEST > + default SOC_STARFIVE > + select GENERIC_PINCTRL_GROUPS > + select GENERIC_PINMUX_FUNCTIONS > + select GENERIC_PINCONF > + select GPIOLIB > + select GPIOLIB_IRQCHIP > + select OF_GPIO > + help > + Say yes here to support pin control on the StarFive JH7100 SoC. > + This also provides an interface to the GPIO pins not used by other > + peripherals supporting inputs, outputs, configuring pull-up/pull-down > + and interrupts on input changes. > + > config PINCTRL_STMFX > tristate "STMicroelectronics STMFX GPIO expander pinctrl driver" > depends on I2C > diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile > index 200073bcc2c1..9c258047f11c 100644 > --- a/drivers/pinctrl/Makefile > +++ b/drivers/pinctrl/Makefile > @@ -38,6 +38,7 @@ obj-$(CONFIG_PINCTRL_LANTIQ) += pinctrl-lantiq.o > obj-$(CONFIG_PINCTRL_LPC18XX) += pinctrl-lpc18xx.o > obj-$(CONFIG_PINCTRL_TB10X) += pinctrl-tb10x.o > obj-$(CONFIG_PINCTRL_ST) += pinctrl-st.o > +obj-$(CONFIG_PINCTRL_STARFIVE) += pinctrl-starfive.o > obj-$(CONFIG_PINCTRL_STMFX) += pinctrl-stmfx.o > obj-$(CONFIG_PINCTRL_ZYNQ) += pinctrl-zynq.o > obj-$(CONFIG_PINCTRL_ZYNQMP) += pinctrl-zynqmp.o > diff --git a/drivers/pinctrl/pinctrl-starfive.c b/drivers/pinctrl/pinctrl-starfive.c > new file mode 100644 > index 000000000000..ca99fad883e6 > --- /dev/null > +++ b/drivers/pinctrl/pinctrl-starfive.c > @@ -0,0 +1,1387 @@ > +// SPDX-License-Identifier: GPL-2.0 > +/* > + * Pinctrl / GPIO driver for StarFive JH7100 SoC > + * > + * Copyright (C) 2020 Shanghai StarFive Technology Co., Ltd. > + * Copyright (C) 2021 Emil Renner Berthing <kernel@esmil.dk> > + */ > + > +#include <linux/bits.h> > +#include <linux/clk.h> > +#include <linux/gpio/driver.h> > +#include <linux/io.h> > +#include <linux/mod_devicetable.h> > +#include <linux/module.h> > +#include <linux/of.h> > +#include <linux/platform_device.h> > +#include <linux/reset.h> > +#include <linux/spinlock.h> > + > +#include <linux/pinctrl/pinctrl.h> > +#include <linux/pinctrl/pinmux.h> > + > +#include <dt-bindings/pinctrl/pinctrl-starfive.h> > + > +#include "core.h" > +#include "pinctrl-utils.h" > +#include "pinmux.h" > +#include "pinconf.h" > + > +#define DRIVER_NAME "pinctrl-starfive" > + > +/* > + * Refer to Section 12. GPIO Registers in the JH7100 data sheet: > + * https://github.com/starfive-tech/JH7100_Docs > + */ > +#define NR_GPIOS 64 > + > +/* > + * Global enable for GPIO interrupts. If bit 0 is set to 1 the GPIO interrupts > + * are enabled. If set to 0 the GPIO interrupts are disabled. > + */ > +#define GPIOEN 0x000 > + > +/* > + * The following 32-bit registers come in pairs, but only the offset of the > + * first register is defined. The first controls (interrupts for) GPIO 0-31 and > + * the second GPIO 32-63. > + */ > + > +/* > + * Interrupt Type. If set to 1 the interrupt is edge-triggered. If set to 0 the > + * interrupt is level-triggered. > + */ > +#define GPIOIS 0x010 > + > +/* > + * Edge-Trigger Interrupt Type. If set to 1 the interrupt gets triggered on > + * both positive and negative edges. If set to 0 the interrupt is triggered by a > + * single edge. > + */ > +#define GPIOIBE 0x018 > + > +/* > + * Interrupt Trigger Polarity. If set to 1 the interrupt is triggered on a > + * rising edge (edge-triggered) or high level (level-triggered). If set to 0 the > + * interrupt is triggered on a falling edge (edge-triggered) or low level > + * (level-triggered). > + */ > +#define GPIOIEV 0x020 > + > +/* > + * Interrupt Mask. If set to 1 the interrupt is disabled (masked). If set to 0 > + * the interrupt is enabled (unmasked). > + */ > +#define GPIOIE 0x028 It bothered me that the datasheet used the term GPIOIE for the interrupt mask register. I had used a more verbose #define name because I worried someone reading GPIOIE in functions might mistake it for an interrupt enable register. This happened to me when I was originally working with the gpio driver. However I suppose the best solution would have been to get the datasheet updated as I can see how it is best to have #define names in the driver match the datasheet. > + > +/* > + * Clear Edge-Triggered Interrupts. Write a 1 to clear the edge-triggered > + * interrupt. > + */ > +#define GPIOIC 0x030 > + > +/* > + * Edge-Triggered Interrupt Status. A 1 means the configured edge was detected. > + */ > +#define GPIORIS 0x038 > + > +/* > + * Interrupt Status after Masking. A 1 means the configured edge or level was > + * detected and not masked. > + */ > +#define GPIOMIS 0x040 > + > +/* > + * Data Value. Dynamically reflects the value of the GPIO pin. If 1 the pin is > + * a digital 1 and if 0 the pin is a digital 0. > + */ > +#define GPIODIN 0x048 > + > +/* > + * From the data sheet section 12.2, there are 64 32-bit output data registers > + * and 64 output enable registers. Output data and output enable registers for > + * a given GPIO are contiguous. Eg. GPO0_DOUT_CFG is 0x50 and GPO0_DOEN_CFG is > + * 0x54 while GPO1_DOUT_CFG is 0x58 and GPO1_DOEN_CFG is 0x5c. The stride > + * between GPIO registers is effectively 8, thus: GPOn_DOUT_CFG is 0x50 + 8n > + * and GPOn_DOEN_CFG is 0x54 + 8n. > + */ > +#define GPON_DOUT_CFG 0x050 > +#define GPON_DOEN_CFG 0x054 > + > +/* > + * From Section 12.3, there are 75 input signal configuration registers which > + * are 4 bytes wide starting with GPI_CPU_JTAG_TCK_CFG at 0x250 and ending with > + * GPI_USB_OVER_CURRENT_CFG 0x378 > + */ > +#define GPI_CFG_OFFSET 0x250 > + > +/* > + * Pad Control Bits. There are 16 pad control bits for each pin located in 103 > + * 32-bit registers controlling PAD_GPIO[0] to PAD_GPIO[63] followed by > + * PAD_FUNC_SHARE[0] to PAD_FUNC_SHARE[141]. Odd numbered pins use the upper 16 > + * bit of each register. > + */ > +#define PAD_SLEW_RATE_MASK GENMASK(11, 9) > +#define PAD_SLEW_RATE_POS 9 > +#define PAD_BIAS_STRONG_PULL_UP BIT(8) > +#define PAD_INPUT_ENABLE BIT(7) > +#define PAD_INPUT_SCHMITT_ENABLE BIT(6) > +#define PAD_BIAS_DISABLE BIT(5) > +#define PAD_BIAS_PULL_DOWN BIT(4) > +#define PAD_BIAS_MASK (PAD_BIAS_STRONG_PULL_UP | \ > + PAD_BIAS_DISABLE | \ > + PAD_BIAS_PULL_DOWN) > +#define PAD_DRIVE_STRENGTH_MASK GENMASK(3, 0) > +#define PAD_DRIVE_STRENGTH_POS 0 > + > +/* > + * From Section 11, the IO_PADSHARE_SEL register can be programmed to select > + * one of seven pre-defined multiplexed signal groups on PAD_FUNC_SHARE and > + * PAD_GPIO pads. This is a global setting. > + */ > +#define IO_PADSHARE_SEL 0x1a0 > + > +/* > + * This just needs to be some number such that when > + * sfp->gpio.pin_base = PAD_INVALID_GPIO then > + * starfive_pin_to_gpio(sfp, validpin) is never a valid GPIO number. > + * That is it should underflow and return something >= NR_GPIOS. > + */ > +#define PAD_INVALID_GPIO 0x10000 > + > +/* > + * The packed pinmux values from the device tree look like this: > + * > + * | 31 - 24 | 23 - 16 | 15 - 8 | 7 | 6 | 5 - 0 | > + * | dout | doen | din | dout rev | doen rev | gpio nr | > + * > + * ..but the GPOn_DOUT_CFG and GPOn_DOEN_CFG registers look like this: > + * > + * | 31 | 30 - 8 | 7 - 0 | > + * | dout/doen rev | unused | dout/doen | > + */ > +static unsigned int starfive_pinmux_to_gpio(u32 v) > +{ > + return v & (NR_GPIOS - 1); > +} > + > +static u32 starfive_pinmux_to_dout(u32 v) > +{ > + return ((v & BIT(7)) << (31 - 7)) | ((v >> 24) & GENMASK(7, 0)); > +} > + > +static u32 starfive_pinmux_to_doen(u32 v) > +{ > + return ((v & BIT(6)) << (31 - 6)) | ((v >> 16) & GENMASK(7, 0)); > +} > + > +static u32 starfive_pinmux_to_din(u32 v) > +{ > + return (v >> 8) & GENMASK(7, 0); > +} > + > +/* > + * The maximum GPIO output current depends on the chosen drive strength: > + * > + * DS: 0 1 2 3 4 5 6 7 > + * mA: 14.2 21.2 28.2 35.2 42.2 49.1 56.0 62.8 > + * > + * After rounding that is 7*DS + 14 mA > + */ > +static u32 starfive_drive_strength_to_max_mA(u16 ds) > +{ > + return 7 * ds + 14; > +} > + > +static u16 starfive_drive_strength_from_max_mA(u32 i) > +{ > + return (clamp(i, 14U, 63U) - 14) / 7; > +} > + > +struct starfive_pinctrl { > + struct gpio_chip gc; > + struct pinctrl_gpio_range gpios; > + raw_spinlock_t lock; > + void __iomem *base; > + void __iomem *padctl; > + struct pinctrl_dev *pctl; > +}; > + > +static struct device *starfive_dev(const struct starfive_pinctrl *sfp) > +{ > + return sfp->gc.parent; > +} > + > +static unsigned int starfive_pin_to_gpio(const struct starfive_pinctrl *sfp, > + unsigned int pin) > +{ > + return pin - sfp->gpios.pin_base; > +} > + > +static unsigned int starfive_gpio_to_pin(const struct starfive_pinctrl *sfp, > + unsigned int gpio) > +{ > + return sfp->gpios.pin_base + gpio; > +} > + > +static struct starfive_pinctrl *starfive_from_gc(struct gpio_chip *gc) > +{ > + return container_of(gc, struct starfive_pinctrl, gc); > +} > + > +static struct starfive_pinctrl *starfive_from_irq_data(struct irq_data *d) > +{ > + return starfive_from_gc(irq_data_get_irq_chip_data(d)); > +} > + > +static struct starfive_pinctrl *starfive_from_irq_desc(struct irq_desc *desc) > +{ > + return starfive_from_gc(irq_desc_get_handler_data(desc)); > +} > + > +static const struct pinctrl_pin_desc starfive_pins[] = { > + PINCTRL_PIN(PAD_GPIO(0), "GPIO[0]"), > + PINCTRL_PIN(PAD_GPIO(1), "GPIO[1]"), > + PINCTRL_PIN(PAD_GPIO(2), "GPIO[2]"), > + PINCTRL_PIN(PAD_GPIO(3), "GPIO[3]"), > + PINCTRL_PIN(PAD_GPIO(4), "GPIO[4]"), > + PINCTRL_PIN(PAD_GPIO(5), "GPIO[5]"), > + PINCTRL_PIN(PAD_GPIO(6), "GPIO[6]"), > + PINCTRL_PIN(PAD_GPIO(7), "GPIO[7]"), > + PINCTRL_PIN(PAD_GPIO(8), "GPIO[8]"), > + PINCTRL_PIN(PAD_GPIO(9), "GPIO[9]"), > + PINCTRL_PIN(PAD_GPIO(10), "GPIO[10]"), > + PINCTRL_PIN(PAD_GPIO(11), "GPIO[11]"), > + PINCTRL_PIN(PAD_GPIO(12), "GPIO[12]"), > + PINCTRL_PIN(PAD_GPIO(13), "GPIO[13]"), > + PINCTRL_PIN(PAD_GPIO(14), "GPIO[14]"), > + PINCTRL_PIN(PAD_GPIO(15), "GPIO[15]"), > + PINCTRL_PIN(PAD_GPIO(16), "GPIO[16]"), > + PINCTRL_PIN(PAD_GPIO(17), "GPIO[17]"), > + PINCTRL_PIN(PAD_GPIO(18), "GPIO[18]"), > + PINCTRL_PIN(PAD_GPIO(19), "GPIO[19]"), > + PINCTRL_PIN(PAD_GPIO(20), "GPIO[20]"), > + PINCTRL_PIN(PAD_GPIO(21), "GPIO[21]"), > + PINCTRL_PIN(PAD_GPIO(22), "GPIO[22]"), > + PINCTRL_PIN(PAD_GPIO(23), "GPIO[23]"), > + PINCTRL_PIN(PAD_GPIO(24), "GPIO[24]"), > + PINCTRL_PIN(PAD_GPIO(25), "GPIO[25]"), > + PINCTRL_PIN(PAD_GPIO(26), "GPIO[26]"), > + PINCTRL_PIN(PAD_GPIO(27), "GPIO[27]"), > + PINCTRL_PIN(PAD_GPIO(28), "GPIO[28]"), > + PINCTRL_PIN(PAD_GPIO(29), "GPIO[29]"), > + PINCTRL_PIN(PAD_GPIO(30), "GPIO[30]"), > + PINCTRL_PIN(PAD_GPIO(31), "GPIO[31]"), > + PINCTRL_PIN(PAD_GPIO(32), "GPIO[32]"), > + PINCTRL_PIN(PAD_GPIO(33), "GPIO[33]"), > + PINCTRL_PIN(PAD_GPIO(34), "GPIO[34]"), > + PINCTRL_PIN(PAD_GPIO(35), "GPIO[35]"), > + PINCTRL_PIN(PAD_GPIO(36), "GPIO[36]"), > + PINCTRL_PIN(PAD_GPIO(37), "GPIO[37]"), > + PINCTRL_PIN(PAD_GPIO(38), "GPIO[38]"), > + PINCTRL_PIN(PAD_GPIO(39), "GPIO[39]"), > + PINCTRL_PIN(PAD_GPIO(40), "GPIO[40]"), > + PINCTRL_PIN(PAD_GPIO(41), "GPIO[41]"), > + PINCTRL_PIN(PAD_GPIO(42), "GPIO[42]"), > + PINCTRL_PIN(PAD_GPIO(43), "GPIO[43]"), > + PINCTRL_PIN(PAD_GPIO(44), "GPIO[44]"), > + PINCTRL_PIN(PAD_GPIO(45), "GPIO[45]"), > + PINCTRL_PIN(PAD_GPIO(46), "GPIO[46]"), > + PINCTRL_PIN(PAD_GPIO(47), "GPIO[47]"), > + PINCTRL_PIN(PAD_GPIO(48), "GPIO[48]"), > + PINCTRL_PIN(PAD_GPIO(49), "GPIO[49]"), > + PINCTRL_PIN(PAD_GPIO(50), "GPIO[50]"), > + PINCTRL_PIN(PAD_GPIO(51), "GPIO[51]"), > + PINCTRL_PIN(PAD_GPIO(52), "GPIO[52]"), > + PINCTRL_PIN(PAD_GPIO(53), "GPIO[53]"), > + PINCTRL_PIN(PAD_GPIO(54), "GPIO[54]"), > + PINCTRL_PIN(PAD_GPIO(55), "GPIO[55]"), > + PINCTRL_PIN(PAD_GPIO(56), "GPIO[56]"), > + PINCTRL_PIN(PAD_GPIO(57), "GPIO[57]"), > + PINCTRL_PIN(PAD_GPIO(58), "GPIO[58]"), > + PINCTRL_PIN(PAD_GPIO(59), "GPIO[59]"), > + PINCTRL_PIN(PAD_GPIO(60), "GPIO[60]"), > + PINCTRL_PIN(PAD_GPIO(61), "GPIO[61]"), > + PINCTRL_PIN(PAD_GPIO(62), "GPIO[62]"), > + PINCTRL_PIN(PAD_GPIO(63), "GPIO[63]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(0), "FUNC_SHARE[0]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(1), "FUNC_SHARE[1]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(2), "FUNC_SHARE[2]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(3), "FUNC_SHARE[3]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(4), "FUNC_SHARE[4]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(5), "FUNC_SHARE[5]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(6), "FUNC_SHARE[6]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(7), "FUNC_SHARE[7]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(8), "FUNC_SHARE[8]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(9), "FUNC_SHARE[9]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(10), "FUNC_SHARE[10]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(11), "FUNC_SHARE[11]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(12), "FUNC_SHARE[12]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(13), "FUNC_SHARE[13]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(14), "FUNC_SHARE[14]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(15), "FUNC_SHARE[15]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(16), "FUNC_SHARE[16]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(17), "FUNC_SHARE[17]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(18), "FUNC_SHARE[18]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(19), "FUNC_SHARE[19]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(20), "FUNC_SHARE[20]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(21), "FUNC_SHARE[21]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(22), "FUNC_SHARE[22]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(23), "FUNC_SHARE[23]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(24), "FUNC_SHARE[24]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(25), "FUNC_SHARE[25]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(26), "FUNC_SHARE[26]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(27), "FUNC_SHARE[27]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(28), "FUNC_SHARE[28]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(29), "FUNC_SHARE[29]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(30), "FUNC_SHARE[30]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(31), "FUNC_SHARE[31]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(32), "FUNC_SHARE[32]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(33), "FUNC_SHARE[33]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(34), "FUNC_SHARE[34]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(35), "FUNC_SHARE[35]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(36), "FUNC_SHARE[36]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(37), "FUNC_SHARE[37]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(38), "FUNC_SHARE[38]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(39), "FUNC_SHARE[39]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(40), "FUNC_SHARE[40]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(41), "FUNC_SHARE[41]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(42), "FUNC_SHARE[42]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(43), "FUNC_SHARE[43]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(44), "FUNC_SHARE[44]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(45), "FUNC_SHARE[45]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(46), "FUNC_SHARE[46]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(47), "FUNC_SHARE[47]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(48), "FUNC_SHARE[48]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(49), "FUNC_SHARE[49]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(50), "FUNC_SHARE[50]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(51), "FUNC_SHARE[51]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(52), "FUNC_SHARE[52]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(53), "FUNC_SHARE[53]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(54), "FUNC_SHARE[54]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(55), "FUNC_SHARE[55]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(56), "FUNC_SHARE[56]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(57), "FUNC_SHARE[57]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(58), "FUNC_SHARE[58]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(59), "FUNC_SHARE[59]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(60), "FUNC_SHARE[60]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(61), "FUNC_SHARE[61]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(62), "FUNC_SHARE[62]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(63), "FUNC_SHARE[63]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(64), "FUNC_SHARE[64]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(65), "FUNC_SHARE[65]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(66), "FUNC_SHARE[66]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(67), "FUNC_SHARE[67]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(68), "FUNC_SHARE[68]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(69), "FUNC_SHARE[69]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(70), "FUNC_SHARE[70]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(71), "FUNC_SHARE[71]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(72), "FUNC_SHARE[72]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(73), "FUNC_SHARE[73]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(74), "FUNC_SHARE[74]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(75), "FUNC_SHARE[75]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(76), "FUNC_SHARE[76]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(77), "FUNC_SHARE[77]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(78), "FUNC_SHARE[78]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(79), "FUNC_SHARE[79]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(80), "FUNC_SHARE[80]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(81), "FUNC_SHARE[81]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(82), "FUNC_SHARE[82]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(83), "FUNC_SHARE[83]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(84), "FUNC_SHARE[84]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(85), "FUNC_SHARE[85]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(86), "FUNC_SHARE[86]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(87), "FUNC_SHARE[87]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(88), "FUNC_SHARE[88]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(89), "FUNC_SHARE[89]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(90), "FUNC_SHARE[90]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(91), "FUNC_SHARE[91]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(92), "FUNC_SHARE[92]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(93), "FUNC_SHARE[93]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(94), "FUNC_SHARE[94]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(95), "FUNC_SHARE[95]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(96), "FUNC_SHARE[96]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(97), "FUNC_SHARE[97]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(98), "FUNC_SHARE[98]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(99), "FUNC_SHARE[99]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(100), "FUNC_SHARE[100]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(101), "FUNC_SHARE[101]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(102), "FUNC_SHARE[102]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(103), "FUNC_SHARE[103]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(104), "FUNC_SHARE[104]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(105), "FUNC_SHARE[105]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(106), "FUNC_SHARE[106]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(107), "FUNC_SHARE[107]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(108), "FUNC_SHARE[108]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(109), "FUNC_SHARE[109]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(110), "FUNC_SHARE[110]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(111), "FUNC_SHARE[111]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(112), "FUNC_SHARE[112]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(113), "FUNC_SHARE[113]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(114), "FUNC_SHARE[114]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(115), "FUNC_SHARE[115]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(116), "FUNC_SHARE[116]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(117), "FUNC_SHARE[117]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(118), "FUNC_SHARE[118]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(119), "FUNC_SHARE[119]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(120), "FUNC_SHARE[120]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(121), "FUNC_SHARE[121]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(122), "FUNC_SHARE[122]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(123), "FUNC_SHARE[123]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(124), "FUNC_SHARE[124]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(125), "FUNC_SHARE[125]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(126), "FUNC_SHARE[126]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(127), "FUNC_SHARE[127]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(128), "FUNC_SHARE[128]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(129), "FUNC_SHARE[129]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(130), "FUNC_SHARE[130]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(131), "FUNC_SHARE[131]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(132), "FUNC_SHARE[132]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(133), "FUNC_SHARE[133]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(134), "FUNC_SHARE[134]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(135), "FUNC_SHARE[135]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(136), "FUNC_SHARE[136]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(137), "FUNC_SHARE[137]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(138), "FUNC_SHARE[138]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(139), "FUNC_SHARE[139]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(140), "FUNC_SHARE[140]"), > + PINCTRL_PIN(PAD_FUNC_SHARE(141), "FUNC_SHARE[141]"), > +}; > + > +#ifdef CONFIG_DEBUG_FS > +static void starfive_pin_dbg_show(struct pinctrl_dev *pctldev, > + struct seq_file *s, > + unsigned int pin) > +{ > + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); > + unsigned int gpio = starfive_pin_to_gpio(sfp, pin); > + void __iomem *reg; > + u32 dout, doen; > + > + if (gpio >= NR_GPIOS) > + return; > + > + reg = sfp->base + GPON_DOUT_CFG + 8 * gpio; > + dout = readl_relaxed(reg + 0x000); > + doen = readl_relaxed(reg + 0x004); > + > + seq_printf(s, "dout=%u%s doen=%u%s", > + dout & (u32)GENMASK(7, 0), (dout & BIT(31)) ? "r" : "", > + doen & (u32)GENMASK(7, 0), (doen & BIT(31)) ? "r" : ""); > +} > +#else > +#define starfive_pin_dbg_show NULL > +#endif > + > +static int starfive_dt_node_to_map(struct pinctrl_dev *pctldev, > + struct device_node *np, > + struct pinctrl_map **maps, > + unsigned int *num_maps) > +{ > + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); > + struct device *dev = starfive_dev(sfp); > + const char **pgnames; > + struct pinctrl_map *map; > + struct device_node *child; > + const char *grpname; > + int *pins; > + u32 *pinmux; > + int nmaps; > + int ngroups; > + int ret; > + > + nmaps = 0; > + ngroups = 0; > + for_each_child_of_node(np, child) { > + int npinmux = of_property_count_u32_elems(child, "pinmux"); > + int npins = of_property_count_u32_elems(child, "pins"); > + > + if (npinmux > 0 && npins > 0) { > + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", > + np, child, "both pinmux and pins set"); > + of_node_put(child); > + return -EINVAL; > + } > + > + if (npinmux > 0) { > + nmaps += 2; > + } else if (npins > 0) { > + nmaps += 1; > + } else { > + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", > + np, child, "neither pinmux nor pins set"); > + of_node_put(child); > + return -EINVAL; > + } > + ngroups += 1; > + } > + > + ret = -ENOMEM; > + pgnames = devm_kcalloc(dev, ngroups, sizeof(*pgnames), GFP_KERNEL); > + if (!pgnames) > + return ret; > + > + map = kcalloc(nmaps, sizeof(*map), GFP_KERNEL); > + if (!map) > + goto free_pgnames; > + > + nmaps = 0; > + ngroups = 0; > + for_each_child_of_node(np, child) { > + int npins; > + int i; > + > + ret = -ENOMEM; > + grpname = devm_kasprintf(dev, GFP_KERNEL, "%s.%s", np->name, child->name); > + if (!grpname) > + goto put_child; > + > + pgnames[ngroups++] = grpname; > + > + if ((npins = of_property_count_u32_elems(child, "pinmux")) > 0) { > + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); > + if (!pins) > + goto free_grpname; > + > + pinmux = devm_kcalloc(dev, npins, sizeof(*pinmux), GFP_KERNEL); > + if (!pinmux) > + goto free_pins; > + > + for (i = 0; i < npins; i++) { > + u32 v; > + > + ret = of_property_read_u32_index(child, "pinmux", i, &v); > + if (ret) > + goto free_pinmux; > + pins[i] = starfive_gpio_to_pin(sfp, starfive_pinmux_to_gpio(v)); > + pinmux[i] = v; > + } > + > + map[nmaps].type = PIN_MAP_TYPE_MUX_GROUP; > + map[nmaps].data.mux.function = np->name; > + map[nmaps].data.mux.group = grpname; > + nmaps += 1; > + } else if ((npins = of_property_count_u32_elems(child, "pins")) > 0) { > + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); > + if (!pins) > + goto free_grpname; > + > + pinmux = NULL; > + > + for (i = 0; i < npins; i++) { > + u32 v; > + > + ret = of_property_read_u32_index(child, "pins", i, &v); > + if (ret) > + goto free_pins; > + pins[i] = v; > + } > + } else { > + ret = -EINVAL; > + goto free_grpname; > + } > + > + ret = pinctrl_generic_add_group(pctldev, grpname, pins, npins, pinmux); > + if (ret < 0) { > + dev_err(dev, "error adding group %pOFn.%pOFn: %d\n", > + np, child, ret); > + goto free_pinmux; > + } > + > + ret = pinconf_generic_parse_dt_config(child, pctldev, > + &map[nmaps].data.configs.configs, > + &map[nmaps].data.configs.num_configs); > + if (ret) { > + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", > + np, child, "error parsing pin config"); > + goto put_child; > + } > + > + /* don't create a map if there are no pinconf settings */ > + if (map[nmaps].data.configs.num_configs == 0) > + continue; > + > + map[nmaps].type = PIN_MAP_TYPE_CONFIGS_GROUP; > + map[nmaps].data.configs.group_or_pin = grpname; > + nmaps += 1; > + } > + > + ret = pinmux_generic_add_function(pctldev, np->name, pgnames, ngroups, NULL); > + if (ret < 0) { > + dev_err(dev, "error adding function %pOFn: %d\n", np, ret); > + goto free_map; > + } > + > + *maps = map; > + *num_maps = nmaps; > + return 0; > + > +free_pinmux: > + devm_kfree(dev, pinmux); > +free_pins: > + devm_kfree(dev, pins); > +free_grpname: > + devm_kfree(dev, grpname); > +put_child: > + of_node_put(child); > +free_map: > + pinctrl_utils_free_map(pctldev, map, nmaps); > +free_pgnames: > + devm_kfree(dev, pgnames); > + return ret; > +} > + > +static const struct pinctrl_ops starfive_pinctrl_ops = { > + .get_groups_count = pinctrl_generic_get_group_count, > + .get_group_name = pinctrl_generic_get_group_name, > + .get_group_pins = pinctrl_generic_get_group_pins, > + .pin_dbg_show = starfive_pin_dbg_show, > + .dt_node_to_map = starfive_dt_node_to_map, > + .dt_free_map = pinctrl_utils_free_map, > +}; > + > +static int starfive_set_mux(struct pinctrl_dev *pctldev, > + unsigned int fsel, unsigned int gsel) > +{ > + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); > + struct device *dev = starfive_dev(sfp); > + const struct group_desc *group; > + const u32 *pinmux; > + unsigned int i; > + > + group = pinctrl_generic_get_group(pctldev, gsel); > + if (!group) > + return -EINVAL; > + > + pinmux = group->data; > + for (i = 0; i < group->num_pins; i++) { > + u32 v = pinmux[i]; > + unsigned int gpio = starfive_pinmux_to_gpio(v); > + u32 dout = starfive_pinmux_to_dout(v); > + u32 doen = starfive_pinmux_to_doen(v); > + u32 din = starfive_pinmux_to_din(v); > + void __iomem *reg_dout; > + void __iomem *reg_doen; > + void __iomem *reg_din; > + unsigned long flags; > + > + dev_dbg(dev, "GPIO%u: dout=0x%x doen=0x%x din=0x%x\n", > + gpio, dout, doen, din); > + > + reg_dout = sfp->base + GPON_DOUT_CFG + 8 * gpio; > + reg_doen = sfp->base + GPON_DOEN_CFG + 8 * gpio; > + if (din != GPI_NONE) > + reg_din = sfp->base + GPI_CFG_OFFSET + 4 * din; > + else > + reg_din = NULL; > + > + raw_spin_lock_irqsave(&sfp->lock, flags); > + writel_relaxed(dout, reg_dout); > + writel_relaxed(doen, reg_doen); > + if (reg_din) > + writel_relaxed(gpio + 2, reg_din); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > + } > + > + return 0; > +} > + > +static const struct pinmux_ops starfive_pinmux_ops = { > + .get_functions_count = pinmux_generic_get_function_count, > + .get_function_name = pinmux_generic_get_function_name, > + .get_function_groups = pinmux_generic_get_function_groups, > + .set_mux = starfive_set_mux, > + .strict = true, > +}; > + > +static u16 starfive_padctl_get(struct starfive_pinctrl *sfp, > + unsigned int pin) > +{ > + void __iomem *reg = sfp->padctl + 4 * (pin / 2); > + int shift = 16 * (pin % 2); > + > + return readl_relaxed(reg) >> shift; > +} > + > +static void starfive_padctl_rmw(struct starfive_pinctrl *sfp, > + unsigned int pin, > + u16 _mask, u16 _value) > +{ > + void __iomem *reg = sfp->padctl + 4 * (pin / 2); > + int shift = 16 * (pin % 2); > + u32 mask = (u32)_mask << shift; > + u32 value = (u32)_value << shift; > + unsigned long flags; > + > + dev_dbg(starfive_dev(sfp), > + "padctl_rmw(%u, 0x%03x, 0x%03x)\n", pin, _mask, _value); > + > + raw_spin_lock_irqsave(&sfp->lock, flags); > + value |= readl_relaxed(reg) & ~mask; > + writel_relaxed(value, reg); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > +} > + > +#define PIN_CONFIG_STARFIVE_STRONG_PULL_UP (PIN_CONFIG_END + 1) > + > +static const struct pinconf_generic_params starfive_pinconf_custom_params[] = { > + { "starfive,strong-pull-up", PIN_CONFIG_STARFIVE_STRONG_PULL_UP, 1 }, > +}; > + > +#ifdef CONFIG_DEBUG_FS > +static const struct pin_config_item starfive_pinconf_custom_conf_items[] = { > + PCONFDUMP(PIN_CONFIG_STARFIVE_STRONG_PULL_UP, "input bias strong pull-up", NULL, false), > +}; > + > +static_assert(ARRAY_SIZE(starfive_pinconf_custom_conf_items) == > + ARRAY_SIZE(starfive_pinconf_custom_params)); > +#else > +#define starfive_pinconf_custom_conf_items NULL > +#endif > + > +static int starfive_pinconf_get(struct pinctrl_dev *pctldev, > + unsigned int pin, unsigned long *config) > +{ > + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); > + u16 value = starfive_padctl_get(sfp, pin); > + int param = pinconf_to_config_param(*config); > + u32 arg; > + bool enabled; > + > + switch (param) { > + case PIN_CONFIG_BIAS_DISABLE: > + enabled = value & PAD_BIAS_DISABLE; > + arg = 0; > + break; > + case PIN_CONFIG_BIAS_PULL_DOWN: > + enabled = value & PAD_BIAS_PULL_DOWN; > + arg = 1; > + break; > + case PIN_CONFIG_BIAS_PULL_UP: > + enabled = !(value & PAD_BIAS_MASK); > + arg = 1; > + break; > + case PIN_CONFIG_DRIVE_STRENGTH: > + enabled = value & PAD_DRIVE_STRENGTH_MASK; > + arg = starfive_drive_strength_to_max_mA(value & PAD_DRIVE_STRENGTH_MASK); > + break; > + case PIN_CONFIG_INPUT_ENABLE: > + enabled = value & PAD_INPUT_ENABLE; > + arg = enabled; > + break; > + case PIN_CONFIG_INPUT_SCHMITT_ENABLE: > + enabled = value & PAD_INPUT_SCHMITT_ENABLE; > + arg = enabled; > + break; > + case PIN_CONFIG_SLEW_RATE: > + enabled = value & PAD_SLEW_RATE_MASK; > + arg = (value & PAD_SLEW_RATE_MASK) >> PAD_SLEW_RATE_POS; > + break; > + case PIN_CONFIG_STARFIVE_STRONG_PULL_UP: > + enabled = value & PAD_BIAS_STRONG_PULL_UP; > + arg = enabled; > + break; > + default: > + return -ENOTSUPP; > + } > + > + *config = pinconf_to_config_packed(param, arg); > + return enabled ? 0 : -EINVAL; > +} > + > +static int starfive_pinconf_group_get(struct pinctrl_dev *pctldev, > + unsigned int gsel, unsigned long *config) > +{ > + const struct group_desc *group; > + > + group = pinctrl_generic_get_group(pctldev, gsel); > + if (!group) > + return -EINVAL; > + > + return starfive_pinconf_get(pctldev, group->pins[0], config); > +} > + > +static int starfive_pinconf_group_set(struct pinctrl_dev *pctldev, > + unsigned int gsel, > + unsigned long *configs, > + unsigned int num_configs) > +{ > + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); > + const struct group_desc *group; > + u16 mask, value; > + int i; > + > + group = pinctrl_generic_get_group(pctldev, gsel); > + if (!group) > + return -EINVAL; > + > + mask = 0; > + value = 0; > + for (i = 0; i < num_configs; i++) { > + int param = pinconf_to_config_param(configs[i]); > + u32 arg = pinconf_to_config_argument(configs[i]); > + > + switch (param) { > + case PIN_CONFIG_BIAS_DISABLE: > + mask |= PAD_BIAS_MASK; > + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_DISABLE; > + break; > + case PIN_CONFIG_BIAS_PULL_DOWN: > + if (arg == 0) > + return -ENOTSUPP; > + mask |= PAD_BIAS_MASK; > + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_PULL_DOWN; > + break; > + case PIN_CONFIG_BIAS_PULL_UP: > + if (arg == 0) > + return -ENOTSUPP; > + mask |= PAD_BIAS_MASK; > + value = value & ~PAD_BIAS_MASK; > + break; > + case PIN_CONFIG_DRIVE_STRENGTH: > + mask |= PAD_DRIVE_STRENGTH_MASK; > + value = (value & ~PAD_DRIVE_STRENGTH_MASK) | > + starfive_drive_strength_from_max_mA(arg); > + break; > + case PIN_CONFIG_INPUT_ENABLE: > + mask |= PAD_INPUT_ENABLE; > + if (arg) > + value |= PAD_INPUT_ENABLE; > + else > + value &= ~PAD_INPUT_ENABLE; > + break; > + case PIN_CONFIG_INPUT_SCHMITT_ENABLE: > + mask |= PAD_INPUT_SCHMITT_ENABLE; > + if (arg) > + value |= PAD_INPUT_SCHMITT_ENABLE; > + else > + value &= ~PAD_INPUT_SCHMITT_ENABLE; > + break; > + case PIN_CONFIG_SLEW_RATE: > + mask |= PAD_SLEW_RATE_MASK; > + value = (value & ~PAD_SLEW_RATE_MASK) | > + ((arg << PAD_SLEW_RATE_POS) & PAD_SLEW_RATE_MASK); > + break; > + case PIN_CONFIG_STARFIVE_STRONG_PULL_UP: > + if (arg) { > + mask |= PAD_BIAS_MASK; > + value = (value & ~PAD_BIAS_MASK) | > + PAD_BIAS_STRONG_PULL_UP; > + } else { > + mask |= PAD_BIAS_STRONG_PULL_UP; > + value = value & ~PAD_BIAS_STRONG_PULL_UP; > + } > + break; > + default: > + return -ENOTSUPP; > + } > + } > + > + for (i = 0; i < group->num_pins; i++) > + starfive_padctl_rmw(sfp, group->pins[i], mask, value); > + > + return 0; > +} > + > +#ifdef CONFIG_DEBUG_FS > +static void starfive_pinconf_dbg_show(struct pinctrl_dev *pctldev, > + struct seq_file *s, unsigned int pin) > +{ > + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); > + u16 value = starfive_padctl_get(sfp, pin); > + > + seq_printf(s, " (0x%03x)", value); > +} > +#else > +#define starfive_pinconf_dbg_show NULL > +#endif > + > +static const struct pinconf_ops starfive_pinconf_ops = { > + .pin_config_get = starfive_pinconf_get, > + .pin_config_group_get = starfive_pinconf_group_get, > + .pin_config_group_set = starfive_pinconf_group_set, > + .pin_config_dbg_show = starfive_pinconf_dbg_show, > + .is_generic = true, > +}; > + > +static struct pinctrl_desc starfive_desc = { > + .name = DRIVER_NAME, > + .pins = starfive_pins, > + .npins = ARRAY_SIZE(starfive_pins), > + .pctlops = &starfive_pinctrl_ops, > + .pmxops = &starfive_pinmux_ops, > + .confops = &starfive_pinconf_ops, > + .owner = THIS_MODULE, > + .num_custom_params = ARRAY_SIZE(starfive_pinconf_custom_params), > + .custom_params = starfive_pinconf_custom_params, > + .custom_conf_items = starfive_pinconf_custom_conf_items, > +}; > + > +static int starfive_gpio_request(struct gpio_chip *gc, unsigned int gpio) > +{ > + return pinctrl_gpio_request(gc->base + gpio); > +} > + > +static void starfive_gpio_free(struct gpio_chip *gc, unsigned int gpio) > +{ > + pinctrl_gpio_free(gc->base + gpio); > +} > + > +static int starfive_gpio_get_direction(struct gpio_chip *gc, unsigned int gpio) > +{ > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > + > + if (gpio >= NR_GPIOS) > + return -EINVAL; > + > + /* return GPIO_LINE_DIRECTION_OUT (0) only if doen == GPO_ENABLE (0) */ > + return readl_relaxed(sfp->base + GPON_DOEN_CFG + 8 * gpio) != GPO_ENABLE; > +} > + > +static int starfive_gpio_direction_input(struct gpio_chip *gc, > + unsigned int gpio) > +{ > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > + void __iomem *doen; > + unsigned long flags; > + > + if (gpio >= NR_GPIOS) > + return -EINVAL; > + > + /* enable input and schmitt trigger */ > + starfive_padctl_rmw(sfp, starfive_gpio_to_pin(sfp, gpio), > + PAD_INPUT_ENABLE | PAD_INPUT_SCHMITT_ENABLE, > + PAD_INPUT_ENABLE | PAD_INPUT_SCHMITT_ENABLE); > + > + doen = sfp->base + GPON_DOEN_CFG + 8 * gpio; > + raw_spin_lock_irqsave(&sfp->lock, flags); > + writel_relaxed(GPO_DISABLE, doen); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > + return 0; > +} > + > +static int starfive_gpio_direction_output(struct gpio_chip *gc, > + unsigned int gpio, int value) > +{ > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > + void __iomem *dout; > + void __iomem *doen; > + unsigned long flags; > + > + if (gpio >= NR_GPIOS) > + return -EINVAL; > + > + dout = sfp->base + GPON_DOUT_CFG + 8 * gpio; > + doen = sfp->base + GPON_DOEN_CFG + 8 * gpio; > + raw_spin_lock_irqsave(&sfp->lock, flags); > + writel_relaxed(value, dout); > + writel_relaxed(GPO_ENABLE, doen); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > + > + /* disable input, schmitt trigger and bias */ > + starfive_padctl_rmw(sfp, starfive_gpio_to_pin(sfp, gpio), > + PAD_BIAS_MASK | PAD_INPUT_ENABLE | PAD_INPUT_SCHMITT_ENABLE, > + PAD_BIAS_DISABLE); > + > + return 0; > +} > + > +static int starfive_gpio_get(struct gpio_chip *gc, unsigned int gpio) > +{ > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > + void __iomem *din; > + > + if (gpio >= NR_GPIOS) > + return -EINVAL; > + > + din = sfp->base + GPIODIN + 4 * (gpio / 32); > + return !!(readl_relaxed(din) & BIT(gpio % 32)); > +} > + > +static void starfive_gpio_set(struct gpio_chip *gc, unsigned int gpio, > + int value) > +{ > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > + void __iomem *dout; > + unsigned long flags; > + > + if (gpio >= NR_GPIOS) > + return; > + > + dout = sfp->base + GPON_DOUT_CFG + 8 * gpio; > + raw_spin_lock_irqsave(&sfp->lock, flags); > + writel_relaxed(value, dout); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > +} > + > +static int starfive_gpio_set_config(struct gpio_chip *gc, unsigned int gpio, > + unsigned long config) > +{ > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > + u32 arg = pinconf_to_config_argument(config); > + u16 mask; > + u16 value; > + > + switch (pinconf_to_config_param(config)) { > + case PIN_CONFIG_BIAS_DISABLE: > + mask = PAD_BIAS_MASK; > + value = PAD_BIAS_DISABLE; > + break; > + case PIN_CONFIG_BIAS_PULL_DOWN: > + if (arg == 0) > + return -ENOTSUPP; > + mask = PAD_BIAS_MASK; > + value = PAD_BIAS_PULL_DOWN; > + break; > + case PIN_CONFIG_BIAS_PULL_UP: > + if (arg == 0) > + return -ENOTSUPP; > + mask = PAD_BIAS_MASK; > + value = 0; > + break; > + case PIN_CONFIG_DRIVE_PUSH_PULL: > + return 0; > + case PIN_CONFIG_INPUT_ENABLE: > + mask = PAD_INPUT_ENABLE; > + value = arg ? PAD_INPUT_ENABLE : 0; > + break; > + case PIN_CONFIG_INPUT_SCHMITT_ENABLE: > + mask = PAD_INPUT_SCHMITT_ENABLE; > + value = arg ? PAD_INPUT_SCHMITT_ENABLE : 0; > + break; > + default: > + return -ENOTSUPP; > + }; > + > + starfive_padctl_rmw(sfp, starfive_gpio_to_pin(sfp, gpio), mask, value); > + return 0; > +} > + > +static int starfive_gpio_add_pin_ranges(struct gpio_chip *gc) > +{ > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > + > + sfp->gpios.name = sfp->gc.label; > + sfp->gpios.base = sfp->gc.base; > + /* > + * sfp->gpios.pin_base depends on the chosen signal group > + * and is set in starfive_probe() > + */ > + sfp->gpios.npins = NR_GPIOS; > + sfp->gpios.gc = &sfp->gc; > + pinctrl_add_gpio_range(sfp->pctl, &sfp->gpios); > + return 0; > +} > + > +static void starfive_irq_ack(struct irq_data *d) > +{ > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > + irq_hw_number_t gpio = irqd_to_hwirq(d); > + void __iomem *ic = sfp->base + GPIOIC + 4 * (gpio / 32); > + u32 mask = BIT(gpio % 32); > + unsigned long flags; > + > + raw_spin_lock_irqsave(&sfp->lock, flags); > + writel_relaxed(mask, ic); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > +} > + > +static void starfive_irq_mask(struct irq_data *d) > +{ > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > + irq_hw_number_t gpio = irqd_to_hwirq(d); > + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); > + u32 mask = BIT(gpio % 32); > + unsigned long flags; > + u32 value; > + > + raw_spin_lock_irqsave(&sfp->lock, flags); > + value = readl_relaxed(ie) & ~mask; > + writel_relaxed(value, ie); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > +} > + > +static void starfive_irq_mask_ack(struct irq_data *d) > +{ > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > + irq_hw_number_t gpio = irqd_to_hwirq(d); > + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); > + void __iomem *ic = sfp->base + GPIOIC + 4 * (gpio / 32); > + u32 mask = BIT(gpio % 32); > + unsigned long flags; > + u32 value; > + > + raw_spin_lock_irqsave(&sfp->lock, flags); > + value = readl_relaxed(ie) & ~mask; > + writel_relaxed(value, ie); > + writel_relaxed(mask, ic); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > +} > + > +static void starfive_irq_unmask(struct irq_data *d) > +{ > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > + irq_hw_number_t gpio = irqd_to_hwirq(d); > + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); > + u32 mask = BIT(gpio % 32); > + unsigned long flags; > + u32 value; > + > + raw_spin_lock_irqsave(&sfp->lock, flags); > + value = readl_relaxed(ie) | mask; > + writel_relaxed(value, ie); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > +} > + > +static int starfive_irq_set_type(struct irq_data *d, unsigned int trigger) > +{ > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > + irq_hw_number_t gpio = irqd_to_hwirq(d); > + void __iomem *base = sfp->base + 4 * (gpio / 32); > + u32 mask = BIT(gpio % 32); > + u32 irq_type, edge_both, polarity; > + irq_flow_handler_t handler; > + unsigned long flags; > + > + switch (trigger) { > + case IRQ_TYPE_EDGE_RISING: > + irq_type = mask; /* 1: edge triggered */ > + edge_both = 0; /* 0: single edge */ > + polarity = mask; /* 1: rising edge */ > + handler = handle_edge_irq; > + break; > + case IRQ_TYPE_EDGE_FALLING: > + irq_type = mask; /* 1: edge triggered */ > + edge_both = 0; /* 0: single edge */ > + polarity = 0; /* 0: falling edge */ > + handler = handle_edge_irq; > + break; > + case IRQ_TYPE_EDGE_BOTH: > + irq_type = mask; /* 1: edge triggered */ > + edge_both = mask; /* 1: both edges */ > + polarity = 0; /* 0: ignored */ > + handler = handle_edge_irq; > + break; > + case IRQ_TYPE_LEVEL_HIGH: > + irq_type = 0; /* 0: level triggered */ > + edge_both = 0; /* 0: ignored */ > + polarity = mask; /* 1: high level */ > + handler = handle_level_irq; > + break; > + case IRQ_TYPE_LEVEL_LOW: > + irq_type = 0; /* 0: level triggered */ > + edge_both = 0; /* 0: ignored */ > + polarity = 0; /* 0: low level */ > + handler = handle_level_irq; > + break; > + default: > + irq_set_handler_locked(d, handle_bad_irq); > + return -EINVAL; > + } > + > + irq_set_handler_locked(d, handler); > + > + raw_spin_lock_irqsave(&sfp->lock, flags); > + irq_type |= readl_relaxed(base + GPIOIS) & ~mask; > + writel_relaxed(irq_type, base + GPIOIS); > + edge_both |= readl_relaxed(base + GPIOIBE) & ~mask; > + writel_relaxed(edge_both, base + GPIOIBE); > + polarity |= readl_relaxed(base + GPIOIEV) & ~mask; > + writel_relaxed(polarity, base + GPIOIEV); > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > + return 0; > +} > + > +static struct irq_chip starfive_irq_chip = { > + .irq_ack = starfive_irq_ack, > + .irq_mask = starfive_irq_mask, > + .irq_mask_ack = starfive_irq_mask_ack, > + .irq_unmask = starfive_irq_unmask, > + .irq_set_type = starfive_irq_set_type, > + .flags = IRQCHIP_SET_TYPE_MASKED, > +}; > + > +static void starfive_gpio_irq_handler(struct irq_desc *desc) > +{ > + struct starfive_pinctrl *sfp = starfive_from_irq_desc(desc); > + struct irq_chip *chip = irq_desc_get_chip(desc); > + unsigned long mis; > + unsigned int pin; > + > + chained_irq_enter(chip, desc); > + > + mis = readl_relaxed(sfp->base + GPIOMIS + 0); > + for_each_set_bit(pin, &mis, 32) > + generic_handle_domain_irq(sfp->gc.irq.domain, pin); > + > + mis = readl_relaxed(sfp->base + GPIOMIS + 4); > + for_each_set_bit(pin, &mis, 32) > + generic_handle_domain_irq(sfp->gc.irq.domain, pin + 32); > + > + chained_irq_exit(chip, desc); > +} > + > +static int starfive_gpio_init_hw(struct gpio_chip *gc) > +{ > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > + > + /* mask all GPIO interrupts */ > + writel(0, sfp->base + GPIOIE + 0); > + writel(0, sfp->base + GPIOIE + 4); Woudln't 0 in GPIOIE mean mask is disabled for all interrupts? In other words, wouldn't this enable all the interrupts? Thanks, Drew
On Thu, 21 Oct 2021 at 21:01, Drew Fustini <dfustini@baylibre.com> wrote: > On Thu, Oct 21, 2021 at 07:42:19PM +0200, Emil Renner Berthing wrote: > > +/* > > + * Interrupt Trigger Polarity. If set to 1 the interrupt is triggered on a > > + * rising edge (edge-triggered) or high level (level-triggered). If set to 0 the > > + * interrupt is triggered on a falling edge (edge-triggered) or low level > > + * (level-triggered). > > + */ > > +#define GPIOIEV 0x020 > > + > > +/* > > + * Interrupt Mask. If set to 1 the interrupt is disabled (masked). If set to 0 > > + * the interrupt is enabled (unmasked). > > + */ > > +#define GPIOIE 0x028 > > It bothered me that the datasheet used the term GPIOIE for the interrupt > mask register. I had used a more verbose #define name because I worried > someone reading GPIOIE in functions might mistake it for an interrupt > enable register. This happened to me when I was originally working with > the gpio driver. > > However I suppose the best solution would have been to get the datasheet > updated as I can see how it is best to have #define names in the driver > match the datasheet. > > > +static void starfive_irq_mask(struct irq_data *d) > > +{ > > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > > + irq_hw_number_t gpio = irqd_to_hwirq(d); > > + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); > > + u32 mask = BIT(gpio % 32); > > + unsigned long flags; > > + u32 value; > > + > > + raw_spin_lock_irqsave(&sfp->lock, flags); > > + value = readl_relaxed(ie) & ~mask; > > + writel_relaxed(value, ie); > > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > > +} > > + > > +static void starfive_irq_mask_ack(struct irq_data *d) > > +{ > > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > > + irq_hw_number_t gpio = irqd_to_hwirq(d); > > + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); > > + void __iomem *ic = sfp->base + GPIOIC + 4 * (gpio / 32); > > + u32 mask = BIT(gpio % 32); > > + unsigned long flags; > > + u32 value; > > + > > + raw_spin_lock_irqsave(&sfp->lock, flags); > > + value = readl_relaxed(ie) & ~mask; > > + writel_relaxed(value, ie); > > + writel_relaxed(mask, ic); > > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > > +} > > + > > +static void starfive_irq_unmask(struct irq_data *d) > > +{ > > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > > + irq_hw_number_t gpio = irqd_to_hwirq(d); > > + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); > > + u32 mask = BIT(gpio % 32); > > + unsigned long flags; > > + u32 value; > > + > > + raw_spin_lock_irqsave(&sfp->lock, flags); > > + value = readl_relaxed(ie) | mask; > > + writel_relaxed(value, ie); > > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > > +} > > + ... > > +static int starfive_gpio_init_hw(struct gpio_chip *gc) > > +{ > > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > > + > > + /* mask all GPIO interrupts */ > > + writel(0, sfp->base + GPIOIE + 0); > > + writel(0, sfp->base + GPIOIE + 4); > > Woudln't 0 in GPIOIE mean mask is disabled for all interrupts? > > In other words, wouldn't this enable all the interrupts? Heh, you're right. The code does the exact opposite of what the documentation says it should be doing. However I just tried and with the code as it is now GPIO interrupts work fine, but with the logic flipped the kernel fails to boot. I'm guessing because an interrupt storm. So it seems to me the documentation might be wrong and GPIOIE is actually a good name. Michael Zhu: Can you confirm if a 1 or 0 enables the interrupt in the GPIOIE registers? /Emil
On Thu, Oct 21, 2021 at 09:50:42PM +0200, Emil Renner Berthing wrote: > On Thu, 21 Oct 2021 at 21:01, Drew Fustini <dfustini@baylibre.com> wrote: > > On Thu, Oct 21, 2021 at 07:42:19PM +0200, Emil Renner Berthing wrote: > > > +/* > > > + * Interrupt Trigger Polarity. If set to 1 the interrupt is triggered on a > > > + * rising edge (edge-triggered) or high level (level-triggered). If set to 0 the > > > + * interrupt is triggered on a falling edge (edge-triggered) or low level > > > + * (level-triggered). > > > + */ > > > +#define GPIOIEV 0x020 > > > + > > > +/* > > > + * Interrupt Mask. If set to 1 the interrupt is disabled (masked). If set to 0 > > > + * the interrupt is enabled (unmasked). > > > + */ > > > +#define GPIOIE 0x028 > > > > It bothered me that the datasheet used the term GPIOIE for the interrupt > > mask register. I had used a more verbose #define name because I worried > > someone reading GPIOIE in functions might mistake it for an interrupt > > enable register. This happened to me when I was originally working with > > the gpio driver. > > > > However I suppose the best solution would have been to get the datasheet > > updated as I can see how it is best to have #define names in the driver > > match the datasheet. > > > > > +static void starfive_irq_mask(struct irq_data *d) > > > +{ > > > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > > > + irq_hw_number_t gpio = irqd_to_hwirq(d); > > > + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); > > > + u32 mask = BIT(gpio % 32); > > > + unsigned long flags; > > > + u32 value; > > > + > > > + raw_spin_lock_irqsave(&sfp->lock, flags); > > > + value = readl_relaxed(ie) & ~mask; > > > + writel_relaxed(value, ie); > > > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > > > +} > > > + > > > +static void starfive_irq_mask_ack(struct irq_data *d) > > > +{ > > > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > > > + irq_hw_number_t gpio = irqd_to_hwirq(d); > > > + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); > > > + void __iomem *ic = sfp->base + GPIOIC + 4 * (gpio / 32); > > > + u32 mask = BIT(gpio % 32); > > > + unsigned long flags; > > > + u32 value; > > > + > > > + raw_spin_lock_irqsave(&sfp->lock, flags); > > > + value = readl_relaxed(ie) & ~mask; > > > + writel_relaxed(value, ie); > > > + writel_relaxed(mask, ic); > > > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > > > +} > > > + > > > +static void starfive_irq_unmask(struct irq_data *d) > > > +{ > > > + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); > > > + irq_hw_number_t gpio = irqd_to_hwirq(d); > > > + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); > > > + u32 mask = BIT(gpio % 32); > > > + unsigned long flags; > > > + u32 value; > > > + > > > + raw_spin_lock_irqsave(&sfp->lock, flags); > > > + value = readl_relaxed(ie) | mask; > > > + writel_relaxed(value, ie); > > > + raw_spin_unlock_irqrestore(&sfp->lock, flags); > > > +} > > > + > > ... > > > > +static int starfive_gpio_init_hw(struct gpio_chip *gc) > > > +{ > > > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); > > > + > > > + /* mask all GPIO interrupts */ > > > + writel(0, sfp->base + GPIOIE + 0); > > > + writel(0, sfp->base + GPIOIE + 4); > > > > Woudln't 0 in GPIOIE mean mask is disabled for all interrupts? > > > > In other words, wouldn't this enable all the interrupts? > > Heh, you're right. The code does the exact opposite of what the > documentation says it should be doing. However I just tried and with > the code as it is now GPIO interrupts work fine, but with the logic > flipped the kernel fails to boot. I'm guessing because an interrupt > storm. So it seems to me the documentation might be wrong and GPIOIE > is actually a good name. Ah, it seems I once knew this back in July [1] but never got the documentation changed: NOTE: Table 12-9 in the JH7100 datasheet is incorrect regarding fields GPIOIE_0 and GPIOIE_1. An interrupt is enabled (unmasked) when the bit is set to 1 and it is disabled (masked) when set to 0. The datasheet incorrectly states the opposite. I think this is due to the datasheet author thinking of it as mask field which it is not, it is an enable field. I will raise an issue on the documentation repo. > > Michael Zhu: Can you confirm if a 1 or 0 enables the interrupt in the > GPIOIE registers? > > /Emil [1] https://github.com/esmil/linux/pull/34/commits/e247a259e40312d0202cdbdd686dbba09afc7813
On Thu, Oct 21, 2021 at 8:44 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > > Add a combined pinctrl and GPIO driver for the StarFive JH7100 SoC. > > For each "GPIO" there are two registers for configuring the output and > output enable signals which may come from other peripherals. Among these > are two special signals that are constant 0 and constant 1 respectively. > Controlling the GPIOs from software is done by choosing one of these > signals. In other words the same registers are used for both pinmuxing pin muxing > and controlling the GPIOs, which makes it easier to combine the pinctrl > and GPIO driver in one. > > I wrote the pinconf and pinmux parts, but the GPIO part of the code is > based on the GPIO driver in the vendor tree written by Huan Feng with > cleanups and fixes by Drew and me. ... > +#define PAD_BIAS_MASK (PAD_BIAS_STRONG_PULL_UP | \ > + PAD_BIAS_DISABLE | \ > + PAD_BIAS_PULL_DOWN) It's slightly better looking if the value is begins on the next line #define PAD_BIAS_MASK \ (PAD_BIAS_STRONG_PULL_UP | \ PAD_BIAS_DISABLE | \ PAD_BIAS_PULL_DOWN) ... > + seq_printf(s, "dout=%u%s doen=%u%s", > + dout & (u32)GENMASK(7, 0), (dout & BIT(31)) ? "r" : "", > + doen & (u32)GENMASK(7, 0), (doen & BIT(31)) ? "r" : ""); Why castings? ... > + for_each_child_of_node(np, child) { > + int npinmux = of_property_count_u32_elems(child, "pinmux"); > + int npins = of_property_count_u32_elems(child, "pins"); > + > + if (npinmux > 0 && npins > 0) { > + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", > + np, child, "both pinmux and pins set"); Why %s for string literal?! It's quite unusual. Ditto for other similar cases. > + of_node_put(child); > + return -EINVAL; > + } ... > + } else { > + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", > + np, child, "neither pinmux nor pins set"); > + of_node_put(child); > + return -EINVAL; > + } This can be checjed above with other sanity check(s), right? > + ngroups += 1; > + } ... > + ret = -ENOMEM; It should be below... > + pgnames = devm_kcalloc(dev, ngroups, sizeof(*pgnames), GFP_KERNEL); > + if (!pgnames) > + return ret; ...like here, where it makes more sense. > + map = kcalloc(nmaps, sizeof(*map), GFP_KERNEL); > + if (!map) > + goto free_pgnames; ... > + for_each_child_of_node(np, child) { > + int npins; > + int i; > + > + ret = -ENOMEM; > + grpname = devm_kasprintf(dev, GFP_KERNEL, "%s.%s", np->name, child->name); > + if (!grpname) > + goto put_child; > + > + pgnames[ngroups++] = grpname; > + > + if ((npins = of_property_count_u32_elems(child, "pinmux")) > 0) { > + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); > + if (!pins) > + goto free_grpname; > + > + pinmux = devm_kcalloc(dev, npins, sizeof(*pinmux), GFP_KERNEL); > + if (!pinmux) > + goto free_pins; > + > + for (i = 0; i < npins; i++) { > + u32 v; > + > + ret = of_property_read_u32_index(child, "pinmux", i, &v); > + if (ret) > + goto free_pinmux; > + pins[i] = starfive_gpio_to_pin(sfp, starfive_pinmux_to_gpio(v)); > + pinmux[i] = v; > + } Why you can't use of_property_read_u32_array() APIs? > + map[nmaps].type = PIN_MAP_TYPE_MUX_GROUP; > + map[nmaps].data.mux.function = np->name; > + map[nmaps].data.mux.group = grpname; > + nmaps += 1; > + } else if ((npins = of_property_count_u32_elems(child, "pins")) > 0) { > + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); > + if (!pins) > + goto free_grpname; > + > + pinmux = NULL; > + > + for (i = 0; i < npins; i++) { > + u32 v; > + > + ret = of_property_read_u32_index(child, "pins", i, &v); > + if (ret) > + goto free_pins; > + pins[i] = v; > + } NIH _array() APIs. > + } else { > + ret = -EINVAL; > + goto free_grpname; > + } > + > + ret = pinctrl_generic_add_group(pctldev, grpname, pins, npins, pinmux); > + if (ret < 0) { > + dev_err(dev, "error adding group %pOFn.%pOFn: %d\n", > + np, child, ret); > + goto free_pinmux; > + } > + > + ret = pinconf_generic_parse_dt_config(child, pctldev, > + &map[nmaps].data.configs.configs, > + &map[nmaps].data.configs.num_configs); > + if (ret) { > + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", > + np, child, "error parsing pin config"); > + goto put_child; > + } > + > + /* don't create a map if there are no pinconf settings */ > + if (map[nmaps].data.configs.num_configs == 0) > + continue; > + > + map[nmaps].type = PIN_MAP_TYPE_CONFIGS_GROUP; > + map[nmaps].data.configs.group_or_pin = grpname; > + nmaps += 1; > + } ... > +free_pinmux: > + devm_kfree(dev, pinmux); > +free_pins: > + devm_kfree(dev, pins); > +free_grpname: > + devm_kfree(dev, grpname); > +free_pgnames: > + devm_kfree(dev, pgnames); Just no, please get rid of them either way as I explained in previous reviews. ... > + raw_spin_lock_irqsave(&sfp->lock, flags); > + writel_relaxed(dout, reg_dout); > + writel_relaxed(doen, reg_doen); > + if (reg_din) > + writel_relaxed(gpio + 2, reg_din); Why 0 can't be written? > + raw_spin_unlock_irqrestore(&sfp->lock, flags); ... > + dev_dbg(starfive_dev(sfp), > + "padctl_rmw(%u, 0x%03x, 0x%03x)\n", pin, _mask, _value); One line? ... > + mask = 0; > + value = 0; > + for (i = 0; i < num_configs; i++) { > + int param = pinconf_to_config_param(configs[i]); > + u32 arg = pinconf_to_config_argument(configs[i]); > + > + switch (param) { > + case PIN_CONFIG_BIAS_DISABLE: > + mask |= PAD_BIAS_MASK; > + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_DISABLE; Okay, I have got why you are masking on each iteration, but here is the question, shouldn't you apply the cnages belonged to each of the group of options as it's requested by the user? Here you basically ignore all previous changes to bias. I would expect that you have something like for () { switch (type) { case BIAS*: return apply_bias(); ...other types... default: return err; } } > + break; > + case PIN_CONFIG_BIAS_PULL_DOWN: > + if (arg == 0) > + return -ENOTSUPP; > + mask |= PAD_BIAS_MASK; > + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_PULL_DOWN; > + break; > + case PIN_CONFIG_BIAS_PULL_UP: > + if (arg == 0) > + return -ENOTSUPP; > + mask |= PAD_BIAS_MASK; > + value = value & ~PAD_BIAS_MASK; > + break; > + case PIN_CONFIG_DRIVE_STRENGTH: > + mask |= PAD_DRIVE_STRENGTH_MASK; > + value = (value & ~PAD_DRIVE_STRENGTH_MASK) | > + starfive_drive_strength_from_max_mA(arg); > + break; > + case PIN_CONFIG_INPUT_ENABLE: > + mask |= PAD_INPUT_ENABLE; > + if (arg) > + value |= PAD_INPUT_ENABLE; > + else > + value &= ~PAD_INPUT_ENABLE; > + break; > + case PIN_CONFIG_INPUT_SCHMITT_ENABLE: > + mask |= PAD_INPUT_SCHMITT_ENABLE; > + if (arg) > + value |= PAD_INPUT_SCHMITT_ENABLE; > + else > + value &= ~PAD_INPUT_SCHMITT_ENABLE; > + break; > + case PIN_CONFIG_SLEW_RATE: > + mask |= PAD_SLEW_RATE_MASK; > + value = (value & ~PAD_SLEW_RATE_MASK) | > + ((arg << PAD_SLEW_RATE_POS) & PAD_SLEW_RATE_MASK); > + break; > + case PIN_CONFIG_STARFIVE_STRONG_PULL_UP: > + if (arg) { > + mask |= PAD_BIAS_MASK; > + value = (value & ~PAD_BIAS_MASK) | > + PAD_BIAS_STRONG_PULL_UP; > + } else { > + mask |= PAD_BIAS_STRONG_PULL_UP; > + value = value & ~PAD_BIAS_STRONG_PULL_UP; > + } > + break; > + default: > + return -ENOTSUPP; > + } > + } ... > +static int starfive_gpio_request(struct gpio_chip *gc, unsigned int gpio) > +{ > + return pinctrl_gpio_request(gc->base + gpio); > +} > + > +static void starfive_gpio_free(struct gpio_chip *gc, unsigned int gpio) > +{ > + pinctrl_gpio_free(gc->base + gpio); > +} Point of having these function is...? ... > + if (gpio >= NR_GPIOS) > + return -EINVAL; Dead code? ... > + if (gpio >= NR_GPIOS) > + return -EINVAL; Dead code? ... > + /* enable input and schmitt trigger */ Use capitalization consistently. ... > + if (gpio >= NR_GPIOS) > + return -EINVAL; Dead code? ... > + if (gpio >= NR_GPIOS) > + return -EINVAL; Dead code? ... > + if (gpio >= NR_GPIOS) > + return; Dead code? ... > + struct starfive_pinctrl *sfp = starfive_from_gc(gc); The starfive_from_gc() is useless. Inline it whenever you use it. ... > + case IRQ_TYPE_EDGE_RISING: > + irq_type = mask; /* 1: edge triggered */ > + edge_both = 0; /* 0: single edge */ > + polarity = mask; /* 1: rising edge */ > + handler = handle_edge_irq; > + break; > + case IRQ_TYPE_EDGE_FALLING: > + irq_type = mask; /* 1: edge triggered */ > + edge_both = 0; /* 0: single edge */ > + polarity = 0; /* 0: falling edge */ > + handler = handle_edge_irq > + break; > + case IRQ_TYPE_EDGE_BOTH: > + irq_type = mask; /* 1: edge triggered */ > + edge_both = mask; /* 1: both edges */ > + polarity = 0; /* 0: ignored */ > + handler = handle_edge_irq; Dup. You may do it once without any temporary variable. I haven't got why you haven't addressed this. > + break; > + case IRQ_TYPE_LEVEL_HIGH: > + irq_type = 0; /* 0: level triggered */ > + edge_both = 0; /* 0: ignored */ > + polarity = mask; /* 1: high level */ > + handler = handle_level_irq; > + break; > + case IRQ_TYPE_LEVEL_LOW: > + irq_type = 0; /* 0: level triggered */ > + edge_both = 0; /* 0: ignored */ > + polarity = 0; /* 0: low level */ > + handler = handle_level_irq; Ditto. > + break; ... > + clk = devm_clk_get(dev, NULL); > + if (IS_ERR(clk)) { > + ret = PTR_ERR(clk); Inline into below. > + return dev_err_probe(dev, ret, "could not get clock: %d\n", ret); > + } Ditto for all other similar cases. ... > + ret = clk_prepare_enable(clk); > + if (ret) > + return dev_err_probe(dev, ret, "could not enable clock: %d\n", ret); Double ret?!Ditto for all other similar cases. ... > + if (!device_property_read_u32(dev, "starfive,signal-group", &value)) { Since you are using of_property_* elsewhere, makes sense to use same here, or otherwise, use device_*() APIs there. ... > +done: Perhaps you may factor out the function and get rid of this label.
On Fri, 22 Oct 2021 at 15:32, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > On Thu, Oct 21, 2021 at 8:44 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > > + for_each_child_of_node(np, child) { > > + int npins; > > + int i; > > + > > + ret = -ENOMEM; > > + grpname = devm_kasprintf(dev, GFP_KERNEL, "%s.%s", np->name, child->name); > > + if (!grpname) > > + goto put_child; > > + > > + pgnames[ngroups++] = grpname; > > + > > + if ((npins = of_property_count_u32_elems(child, "pinmux")) > 0) { > > + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); > > + if (!pins) > > + goto free_grpname; > > + > > + pinmux = devm_kcalloc(dev, npins, sizeof(*pinmux), GFP_KERNEL); > > + if (!pinmux) > > + goto free_pins; > > + > > + for (i = 0; i < npins; i++) { > > + u32 v; > > + > > + ret = of_property_read_u32_index(child, "pinmux", i, &v); > > + if (ret) > > + goto free_pinmux; > > + pins[i] = starfive_gpio_to_pin(sfp, starfive_pinmux_to_gpio(v)); > > + pinmux[i] = v; > > + } > > Why you can't use of_property_read_u32_array() APIs? I can here, but.. > > + map[nmaps].type = PIN_MAP_TYPE_MUX_GROUP; > > + map[nmaps].data.mux.function = np->name; > > + map[nmaps].data.mux.group = grpname; > > + nmaps += 1; > > + } else if ((npins = of_property_count_u32_elems(child, "pins")) > 0) { > > + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); > > + if (!pins) > > + goto free_grpname; > > + > > + pinmux = NULL; > > + > > + for (i = 0; i < npins; i++) { > > + u32 v; > > + > > + ret = of_property_read_u32_index(child, "pins", i, &v); > > + if (ret) > > + goto free_pins; > > + pins[i] = v; > > + } > > NIH _array() APIs. .. here the pins array is an int array and not u32 array. I can cast it and and hope Linux will never run on a machine where sizeof(int) != 4 if you think that's better? > > + } else { > > + ret = -EINVAL; > > + goto free_grpname; > > + } > > + > > + ret = pinctrl_generic_add_group(pctldev, grpname, pins, npins, pinmux); > > + if (ret < 0) { > > + dev_err(dev, "error adding group %pOFn.%pOFn: %d\n", > > + np, child, ret); > > + goto free_pinmux; > > + } > > + > > + ret = pinconf_generic_parse_dt_config(child, pctldev, > > + &map[nmaps].data.configs.configs, > > + &map[nmaps].data.configs.num_configs); > > + if (ret) { > > + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", > > + np, child, "error parsing pin config"); > > + goto put_child; > > + } > > + > > + /* don't create a map if there are no pinconf settings */ > > + if (map[nmaps].data.configs.num_configs == 0) > > + continue; > > + > > + map[nmaps].type = PIN_MAP_TYPE_CONFIGS_GROUP; > > + map[nmaps].data.configs.group_or_pin = grpname; > > + nmaps += 1; > > + } > > ... > > > +free_pinmux: > > + devm_kfree(dev, pinmux); > > +free_pins: > > + devm_kfree(dev, pins); > > +free_grpname: > > + devm_kfree(dev, grpname); > > > +free_pgnames: > > + devm_kfree(dev, pgnames); > > Just no, please get rid of them either way as I explained in previous reviews. So I asked you if you thought it was better to leave these unused allocations when parsing the device tree node fails but you never answered that. I didn't want put words in your mouth so I could only assume you didn't. I'd really like a straight answer to that so I have something to refer to when people ask why this driver doesn't do the same as fx. the pinctrl-single. So just to be clear: do you think it's better to leave this unused garbage allocated if parsing the device tree node fails? > > + raw_spin_lock_irqsave(&sfp->lock, flags); > > + writel_relaxed(dout, reg_dout); > > + writel_relaxed(doen, reg_doen); > > + if (reg_din) > > + writel_relaxed(gpio + 2, reg_din); > > Why 0 can't be written? Because signal 0 is a special "always 0" signal and signal 1 is a special "always 1" signal, and after that signal n is the input value of GPIO n - 2. We don't want to overwrite the PoR defaults. > > + mask = 0; > > + value = 0; > > + for (i = 0; i < num_configs; i++) { > > + int param = pinconf_to_config_param(configs[i]); > > + u32 arg = pinconf_to_config_argument(configs[i]); > > > + > > + switch (param) { > > + case PIN_CONFIG_BIAS_DISABLE: > > + mask |= PAD_BIAS_MASK; > > + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_DISABLE; > > Okay, I have got why you are masking on each iteration, but here is > the question, shouldn't you apply the cnages belonged to each of the > group of options as it's requested by the user? Here you basically > ignore all previous changes to bias. > > I would expect that you have something like > > for () { > switch (type) { > case BIAS*: > return apply_bias(); > ...other types... > default: > return err; > } > } I such cases where you get conflicting PIN_CONFIG_BIAS_* settings I don't see why it's better to do the rmw on the padctl register for the first bias setting only to then change the bits again a few microseconds later when the loop encounters the second bias setting. After the loop is done the end result would still be just the last bias setting. > > + break; > > + case PIN_CONFIG_BIAS_PULL_DOWN: > > + if (arg == 0) > > + return -ENOTSUPP; > > + mask |= PAD_BIAS_MASK; > > + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_PULL_DOWN; > > + break; > > + case PIN_CONFIG_BIAS_PULL_UP: > > + if (arg == 0) > > + return -ENOTSUPP; > > + mask |= PAD_BIAS_MASK; > > + value = value & ~PAD_BIAS_MASK; > > + break; > > + case PIN_CONFIG_DRIVE_STRENGTH: > > + mask |= PAD_DRIVE_STRENGTH_MASK; > > + value = (value & ~PAD_DRIVE_STRENGTH_MASK) | > > + starfive_drive_strength_from_max_mA(arg); > > + break; > > + case PIN_CONFIG_INPUT_ENABLE: > > + mask |= PAD_INPUT_ENABLE; > > + if (arg) > > + value |= PAD_INPUT_ENABLE; > > + else > > + value &= ~PAD_INPUT_ENABLE; > > + break; > > + case PIN_CONFIG_INPUT_SCHMITT_ENABLE: > > + mask |= PAD_INPUT_SCHMITT_ENABLE; > > + if (arg) > > + value |= PAD_INPUT_SCHMITT_ENABLE; > > + else > > + value &= ~PAD_INPUT_SCHMITT_ENABLE; > > + break; > > + case PIN_CONFIG_SLEW_RATE: > > + mask |= PAD_SLEW_RATE_MASK; > > + value = (value & ~PAD_SLEW_RATE_MASK) | > > + ((arg << PAD_SLEW_RATE_POS) & PAD_SLEW_RATE_MASK); > > + break; > > + case PIN_CONFIG_STARFIVE_STRONG_PULL_UP: > > + if (arg) { > > + mask |= PAD_BIAS_MASK; > > + value = (value & ~PAD_BIAS_MASK) | > > + PAD_BIAS_STRONG_PULL_UP; > > + } else { > > + mask |= PAD_BIAS_STRONG_PULL_UP; > > + value = value & ~PAD_BIAS_STRONG_PULL_UP; > > + } > > + break; > > + default: > > + return -ENOTSUPP; > > + } > > + } > > ... > > > +static int starfive_gpio_request(struct gpio_chip *gc, unsigned int gpio) > > +{ > > + return pinctrl_gpio_request(gc->base + gpio); > > +} > > + > > +static void starfive_gpio_free(struct gpio_chip *gc, unsigned int gpio) > > +{ > > + pinctrl_gpio_free(gc->base + gpio); > > +} > > Point of having these function is...? These calls tells the pinctrl system that a certain pin is now used for GPIO. Conversely it'll also prevent fx. userspace from doing GPIO on a pin that's already used by I2C, a UART or some other peripheral. > > + /* enable input and schmitt trigger */ > > Use capitalization consistently. I am? > > + case IRQ_TYPE_EDGE_RISING: > > + irq_type = mask; /* 1: edge triggered */ > > + edge_both = 0; /* 0: single edge */ > > + polarity = mask; /* 1: rising edge */ > > + handler = handle_edge_irq; > > + break; > > + case IRQ_TYPE_EDGE_FALLING: > > + irq_type = mask; /* 1: edge triggered */ > > + edge_both = 0; /* 0: single edge */ > > + polarity = 0; /* 0: falling edge */ > > + handler = handle_edge_irq > > + break; > > + case IRQ_TYPE_EDGE_BOTH: > > + irq_type = mask; /* 1: edge triggered */ > > + edge_both = mask; /* 1: both edges */ > > + polarity = 0; /* 0: ignored */ > > + handler = handle_edge_irq; > > Dup. You may do it once without any temporary variable. > I haven't got why you haven't addressed this. So you want two switches on the trigger variable, one for irq_type, edge_both and polarity, and one for the handler? If this is not what you have in mind please be a lot more explicit. Trying to guess what you mean gets really old. > > + break; > > + case IRQ_TYPE_LEVEL_HIGH: > > + irq_type = 0; /* 0: level triggered */ > > + edge_both = 0; /* 0: ignored */ > > + polarity = mask; /* 1: high level */ > > + handler = handle_level_irq; > > + break; > > + case IRQ_TYPE_LEVEL_LOW: > > + irq_type = 0; /* 0: level triggered */ > > + edge_both = 0; /* 0: ignored */ > > + polarity = 0; /* 0: low level */ > > + handler = handle_level_irq; > > Ditto. > > > + break; > > ... > > > + clk = devm_clk_get(dev, NULL); > > + if (IS_ERR(clk)) { > > > + ret = PTR_ERR(clk); > > Inline into below. > > > + return dev_err_probe(dev, ret, "could not get clock: %d\n", ret); > > + } > > Ditto for all other similar cases. So you would rather want this? return dev_err_probe(dev, PTR_ERR(clk), "could not get clock: %d\n", PTR_ERR(clk)); or just not tell why getting the clock failed? > > + if (!device_property_read_u32(dev, "starfive,signal-group", &value)) { > > Since you are using of_property_* elsewhere, makes sense to use same > here, or otherwise, use device_*() APIs there. Wait, so now you want of_property_read_u32(dev->of_node, ...) here again, is that right? /Emil
On Sat, Oct 23, 2021 at 9:46 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > On Fri, 22 Oct 2021 at 15:32, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > > On Thu, Oct 21, 2021 at 8:44 PM Emil Renner Berthing <kernel@esmil.dk> wrote: ... > > > + } else if ((npins = of_property_count_u32_elems(child, "pins")) > 0) { > > > + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); > > > + if (!pins) > > > + goto free_grpname; > > > + > > > + pinmux = NULL; > > > + > > > + for (i = 0; i < npins; i++) { > > > + u32 v; > > > + > > > + ret = of_property_read_u32_index(child, "pins", i, &v); > > > + if (ret) > > > + goto free_pins; > > > + pins[i] = v; > > > + } > > > > NIH _array() APIs. > > .. here the pins array is an int array and not u32 array. I can cast > it and and hope Linux will never run on a machine where sizeof(int) != > 4 if you think that's better? Can you make it u32? ... > > > +free_pinmux: > > > + devm_kfree(dev, pinmux); > > > +free_pins: > > > + devm_kfree(dev, pins); > > > +free_grpname: > > > + devm_kfree(dev, grpname); > > > > > +free_pgnames: > > > + devm_kfree(dev, pgnames); > > > > Just no, please get rid of them either way as I explained in previous reviews. > > So I asked you if you thought it was better to leave these unused > allocations when parsing the device tree node fails but you never > answered that. I didn't want put words in your mouth so I could only > assume you didn't. I'd really like a straight answer to that so I have > something to refer to when people ask why this driver doesn't do the > same as fx. the pinctrl-single. So just to be clear: do you think it's > better to leave this unused garbage allocated if parsing the device > tree node fails? If it's only one time use, I don't think it's good to have it hanging around, BUT at the same time devm_*() is not suitable for such allocations. ... > > > + if (reg_din) > > > + writel_relaxed(gpio + 2, reg_din); > > > > Why 0 can't be written? > > Because signal 0 is a special "always 0" signal and signal 1 is a > special "always 1" signal, and after that signal n is the input value > of GPIO n - 2. We don't want to overwrite the PoR defaults. Okay, this, perhaps, needs a comment (if I have not missed the existing one). And what about checking for reg_din? Do you have some blocks output-only? ... > > > + case PIN_CONFIG_BIAS_DISABLE: > > > + mask |= PAD_BIAS_MASK; > > > + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_DISABLE; > > > > Okay, I have got why you are masking on each iteration, but here is > > the question, shouldn't you apply the cnages belonged to each of the > > group of options as it's requested by the user? Here you basically > > ignore all previous changes to bias. > > > > I would expect that you have something like > > > > for () { > > switch (type) { > > case BIAS*: > > return apply_bias(); > > ...other types... > > default: > > return err; > > } > > } > > I such cases where you get conflicting PIN_CONFIG_BIAS_* settings I > don't see why it's better to do the rmw on the padctl register for the > first bias setting only to then change the bits again a few > microseconds later when the loop encounters the second bias setting. > After the loop is done the end result would still be just the last > bias setting. It could be bias X followed by something else followed by bias Y. You will write something else with bias Y. I admit I don't know this hardware and you and maintainers are supposed to decide what's better, but my guts are telling me that current algo is buggy. > > > + break; ... > > > +static int starfive_gpio_request(struct gpio_chip *gc, unsigned int gpio) > > > +{ > > > + return pinctrl_gpio_request(gc->base + gpio); > > > +} > > > + > > > +static void starfive_gpio_free(struct gpio_chip *gc, unsigned int gpio) > > > +{ > > > + pinctrl_gpio_free(gc->base + gpio); > > > +} > > > > Point of having these function is...? > > These calls tells the pinctrl system that a certain pin is now used > for GPIO. Conversely it'll also prevent fx. userspace from doing GPIO > on a pin that's already used by I2C, a UART or some other peripheral. Isn't pin control doing it by default? ... > > > + /* enable input and schmitt trigger */ > > > > Use capitalization consistently. > > I am? In the comment is one style, in other comments it's another. ... > > > + case IRQ_TYPE_EDGE_RISING: > > > + handler = handle_edge_irq; > > > + break; > > > + case IRQ_TYPE_EDGE_FALLING: > > > + handler = handle_edge_irq > > > + break; > > > + case IRQ_TYPE_EDGE_BOTH: > > > + handler = handle_edge_irq; > > > > Dup. You may do it once without any temporary variable. > > I haven't got why you haven't addressed this. > > So you want two switches on the trigger variable, one for irq_type, > edge_both and polarity, and one for the handler? If this is not what > you have in mind please be a lot more explicit. Trying to guess what > you mean gets really old. switch (type) { case bla bla bla: ...everything except handler... } if (type & EDGE) irq_lock(edge_handler) else if (type & LEVEL) irq_lock(level_handler) > > > > + break; > > > + case IRQ_TYPE_LEVEL_HIGH: > > > + handler = handle_level_irq; > > > + break; > > > + case IRQ_TYPE_LEVEL_LOW: > > > + handler = handle_level_irq; > > > > Ditto. > > > > > + break; ... > > > + clk = devm_clk_get(dev, NULL); > > > + if (IS_ERR(clk)) { > > > > > + ret = PTR_ERR(clk); > > > > Inline into below. > > > > > + return dev_err_probe(dev, ret, "could not get clock: %d\n", ret); > > > + } > > > > Ditto for all other similar cases. > > So you would rather want this? > return dev_err_probe(dev, PTR_ERR(clk), "could not get clock: %d\n", > PTR_ERR(clk)); > or just not tell why getting the clock failed? Of course not, no dup of the printing error code is needed. I guess I mentioned it in another patch. return dev_err_probe(dev, PTR_ERR($error), "$msg\n"); ... > > > + if (!device_property_read_u32(dev, "starfive,signal-group", &value)) { > > > > Since you are using of_property_* elsewhere, makes sense to use same > > here, or otherwise, use device_*() APIs there. > > Wait, so now you want of_property_read_u32(dev->of_node, ...) here > again, is that right? Before I missed that there are other of_property_read*() calls, now since you used them elsewhere it makes sense to be consistent over the code.
On Sat, 23 Oct 2021 at 22:29, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > On Sat, Oct 23, 2021 at 9:46 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > > On Fri, 22 Oct 2021 at 15:32, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > > > On Thu, Oct 21, 2021 at 8:44 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > > > > + } else if ((npins = of_property_count_u32_elems(child, "pins")) > 0) { > > > > + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); > > > > + if (!pins) > > > > + goto free_grpname; > > > > + > > > > + pinmux = NULL; > > > > + > > > > + for (i = 0; i < npins; i++) { > > > > + u32 v; > > > > + > > > > + ret = of_property_read_u32_index(child, "pins", i, &v); > > > > + if (ret) > > > > + goto free_pins; > > > > + pins[i] = v; > > > > + } > > > > > > NIH _array() APIs. > > > > .. here the pins array is an int array and not u32 array. I can cast > > it and and hope Linux will never run on a machine where sizeof(int) != > > 4 if you think that's better? > > Can you make it u32? No, the pinctrl API takes an int array. > > > > +free_pinmux: > > > > + devm_kfree(dev, pinmux); > > > > +free_pins: > > > > + devm_kfree(dev, pins); > > > > +free_grpname: > > > > + devm_kfree(dev, grpname); > > > > > > > +free_pgnames: > > > > + devm_kfree(dev, pgnames); > > > > > > Just no, please get rid of them either way as I explained in previous reviews. > > > > So I asked you if you thought it was better to leave these unused > > allocations when parsing the device tree node fails but you never > > answered that. I didn't want put words in your mouth so I could only > > assume you didn't. I'd really like a straight answer to that so I have > > something to refer to when people ask why this driver doesn't do the > > same as fx. the pinctrl-single. So just to be clear: do you think it's > > better to leave this unused garbage allocated if parsing the device > > tree node fails? > > If it's only one time use, I don't think it's good to have it hanging > around, BUT at the same time devm_*() is not suitable for such > allocations. So is that a yes or a no to my question? It's not clear to me. > > > > + if (reg_din) > > > > + writel_relaxed(gpio + 2, reg_din); > > > > > > Why 0 can't be written? > > > > Because signal 0 is a special "always 0" signal and signal 1 is a > > special "always 1" signal, and after that signal n is the input value > > of GPIO n - 2. We don't want to overwrite the PoR defaults. > > Okay, this, perhaps, needs a comment (if I have not missed the existing one). > > And what about checking for reg_din? Do you have some blocks output-only? I don't know know what you mean by the first question, but yes fx. the uart tx pins would be an example of pins that have their output signal set to the uart peripheral, the output enable set to the special "always enabled" signal, and no input signal is set to any of the tx pins. > > > > + case PIN_CONFIG_BIAS_DISABLE: > > > > + mask |= PAD_BIAS_MASK; > > > > + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_DISABLE; > > > > > > Okay, I have got why you are masking on each iteration, but here is > > > the question, shouldn't you apply the cnages belonged to each of the > > > group of options as it's requested by the user? Here you basically > > > ignore all previous changes to bias. > > > > > > I would expect that you have something like > > > > > > for () { > > > switch (type) { > > > case BIAS*: > > > return apply_bias(); > > > ...other types... > > > default: > > > return err; > > > } > > > } > > > > I such cases where you get conflicting PIN_CONFIG_BIAS_* settings I > > don't see why it's better to do the rmw on the padctl register for the > > first bias setting only to then change the bits again a few > > microseconds later when the loop encounters the second bias setting. > > After the loop is done the end result would still be just the last > > bias setting. > > It could be bias X followed by something else followed by bias Y. You > will write something else with bias Y. I admit I don't know this > hardware and you and maintainers are supposed to decide what's better, > but my guts are telling me that current algo is buggy. So there is only one padctl register pr. pin. I don't see why first setting the bias bits to X, then setting some other bits, and then setting the bias bits to Y would be different from just setting all the bits in one go. Except for during that little microsecond window during the loop that I actually think it's better to avoid. > > > > + break; > > ... > > > > > +static int starfive_gpio_request(struct gpio_chip *gc, unsigned int gpio) > > > > +{ > > > > + return pinctrl_gpio_request(gc->base + gpio); > > > > +} > > > > + > > > > +static void starfive_gpio_free(struct gpio_chip *gc, unsigned int gpio) > > > > +{ > > > > + pinctrl_gpio_free(gc->base + gpio); > > > > +} > > > > > > Point of having these function is...? > > > > These calls tells the pinctrl system that a certain pin is now used > > for GPIO. Conversely it'll also prevent fx. userspace from doing GPIO > > on a pin that's already used by I2C, a UART or some other peripheral. > > Isn't pin control doing it by default? I actually tested that before posting and the answer seems to be no. > ... > > > > > + /* enable input and schmitt trigger */ > > > > > > Use capitalization consistently. > > > > I am? > > In the comment is one style, in other comments it's another. There are documentation comments in the beginning of the file and then there are code comments in the code. I think it's a lot easier to read like that, but if you insist I can lowercase the documentation. > > > > + case IRQ_TYPE_EDGE_RISING: > > > > > + handler = handle_edge_irq; > > > > + break; > > > > + case IRQ_TYPE_EDGE_FALLING: > > > > > + handler = handle_edge_irq > > > > + break; > > > > + case IRQ_TYPE_EDGE_BOTH: > > > > > + handler = handle_edge_irq; > > > > > > Dup. You may do it once without any temporary variable. > > > I haven't got why you haven't addressed this. > > > > So you want two switches on the trigger variable, one for irq_type, > > edge_both and polarity, and one for the handler? If this is not what > > you have in mind please be a lot more explicit. Trying to guess what > > you mean gets really old. > > switch (type) { > case bla bla bla: > ...everything except handler... > } > > if (type & EDGE) > irq_lock(edge_handler) > else if (type & LEVEL) > irq_lock(level_handler) If you look at include/dt-bindings/interrupt-controller/irq.h I don't think such a mask exists. I guess we could do if (trigger & IRQ_TYPE_EDGE_BOTH) edge_handler else if (trigger == IRQ_TYPE_LEVEL_HIGH || trigger == IRQ_TYPE_LEVEL_LOW) level_handler else return -EINVAL ..but at that point I think it's probably easer to read a 2nd switch case or just leave the code as it is. What do you think? > > > > > > + break; > > > > + case IRQ_TYPE_LEVEL_HIGH: > > > > > + handler = handle_level_irq; > > > > + break; > > > > + case IRQ_TYPE_LEVEL_LOW: > > > > > + handler = handle_level_irq; > > > > > > Ditto. > > > > > > > + break; > > ... > > > > > + clk = devm_clk_get(dev, NULL); > > > > + if (IS_ERR(clk)) { > > > > > > > + ret = PTR_ERR(clk); > > > > > > Inline into below. > > > > > > > + return dev_err_probe(dev, ret, "could not get clock: %d\n", ret); > > > > + } > > > > > > Ditto for all other similar cases. > > > > So you would rather want this? > > return dev_err_probe(dev, PTR_ERR(clk), "could not get clock: %d\n", > > PTR_ERR(clk)); > > or just not tell why getting the clock failed? > > Of course not, no dup of the printing error code is needed. I guess I > mentioned it in another patch. > > return dev_err_probe(dev, PTR_ERR($error), "$msg\n"); > > ... > > > > > + if (!device_property_read_u32(dev, "starfive,signal-group", &value)) { > > > > > > Since you are using of_property_* elsewhere, makes sense to use same > > > here, or otherwise, use device_*() APIs there. > > > > Wait, so now you want of_property_read_u32(dev->of_node, ...) here > > again, is that right? > > Before I missed that there are other of_property_read*() calls, now > since you used them elsewhere it makes sense to be consistent over the > code. Gotcha. > -- > With Best Regards, > Andy Shevchenko
On Sat, 23 Oct 2021 at 23:02, Emil Renner Berthing <kernel@esmil.dk> wrote: > On Sat, 23 Oct 2021 at 22:29, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > > On Sat, Oct 23, 2021 at 9:46 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > > > On Fri, 22 Oct 2021 at 15:32, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > > > > On Thu, Oct 21, 2021 at 8:44 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > > > So I asked you if you thought it was better to leave these unused > > > allocations when parsing the device tree node fails but you never > > > answered that. I didn't want put words in your mouth so I could only > > > assume you didn't. I'd really like a straight answer to that so I have > > > something to refer to when people ask why this driver doesn't do the > > > same as fx. the pinctrl-single. So just to be clear: do you think it's > > > better to leave this unused garbage allocated if parsing the device > > > tree node fails? > > > > If it's only one time use, I don't think it's good to have it hanging > > around, BUT at the same time devm_*() is not suitable for such > > allocations. > > So is that a yes or a no to my question? It's not clear to me. I see now that you've probably misunderstood what the code does. It's not one time use. The function parses the device tree and dynamically registers groups and functions with the pinctrl framework. Each group needs a string name, an int array of pins and optionally the pinmux data. Once the group is registered those pieces of data needs to live with the group until the drive is unloaded. But if the device tree parsing fails before the group is registered then those allocations would never be referenced and just hang around as garbage until the driver is unloaded. In such cases fx. pinctrl-single uses devm_free to free them again. > > > > > + if (reg_din) > > > > > + writel_relaxed(gpio + 2, reg_din); > > > > > > > > Why 0 can't be written? > > > > > > Because signal 0 is a special "always 0" signal and signal 1 is a > > > special "always 1" signal, and after that signal n is the input value > > > of GPIO n - 2. We don't want to overwrite the PoR defaults. > > > > Okay, this, perhaps, needs a comment (if I have not missed the existing one). > > > > And what about checking for reg_din? Do you have some blocks output-only? > > I don't know know what you mean by the first question, but yes fx. the > uart tx pins would be an example of pins that have their output signal > set to the uart peripheral, the output enable set to the special > "always enabled" signal, and no input signal is set to any of the tx > pins. > > > > > > + case PIN_CONFIG_BIAS_DISABLE: > > > > > + mask |= PAD_BIAS_MASK; > > > > > + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_DISABLE; > > > > > > > > Okay, I have got why you are masking on each iteration, but here is > > > > the question, shouldn't you apply the cnages belonged to each of the > > > > group of options as it's requested by the user? Here you basically > > > > ignore all previous changes to bias. > > > > > > > > I would expect that you have something like > > > > > > > > for () { > > > > switch (type) { > > > > case BIAS*: > > > > return apply_bias(); > > > > ...other types... > > > > default: > > > > return err; > > > > } > > > > } > > > > > > I such cases where you get conflicting PIN_CONFIG_BIAS_* settings I > > > don't see why it's better to do the rmw on the padctl register for the > > > first bias setting only to then change the bits again a few > > > microseconds later when the loop encounters the second bias setting. > > > After the loop is done the end result would still be just the last > > > bias setting. > > > > It could be bias X followed by something else followed by bias Y. You > > will write something else with bias Y. I admit I don't know this > > hardware and you and maintainers are supposed to decide what's better, > > but my guts are telling me that current algo is buggy. > > So there is only one padctl register pr. pin. I don't see why first > setting the bias bits to X, then setting some other bits, and then > setting the bias bits to Y would be different from just setting all > the bits in one go. Except for during that little microsecond window > during the loop that I actually think it's better to avoid. Maybe an example is in order. Suppose we get strong pull-up, drive strength 3 and pull-down config flags (the strong pull-up and pull down flags conflict) and the padctl value is 0x0c0 (pull-up, input and schmitt trigger enabled). With your solution of just altering the padctl bits immediately we'd call starfive_padctl_rmw 3 times in rapid succession like this: starfive_padctl_rmw(pin, 0x130, 0x100); starfive_padctl_rmw(pin, 0x007, 0x003); starfive_padctl_rmw(pin, 0x130, 0x010); ..and the end result would be 0x0d3, although the strong pull-up would be enabled for the microseconds between the 1st and 3nd call. As the code is now it'd just directly do starfive_padctl_rmw(pin, 0x137, 0x013) ..which again results in 0x0d3, only without the microsecond blink of the strong pull-up.
On Sun, Oct 24, 2021 at 12:29 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > On Sat, 23 Oct 2021 at 23:02, Emil Renner Berthing <kernel@esmil.dk> wrote: > > On Sat, 23 Oct 2021 at 22:29, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > > > On Sat, Oct 23, 2021 at 9:46 PM Emil Renner Berthing <kernel@esmil.dk> wrote: ... > > So is that a yes or a no to my question? It's not clear to me. > > I see now that you've probably misunderstood what the code does. It's > not one time use. The function parses the device tree and dynamically > registers groups and functions with the pinctrl framework. Each group > needs a string name, an int array of pins and optionally the pinmux > data. Once the group is registered those pieces of data needs to live > with the group until the drive is unloaded. But if the device tree > parsing fails before the group is registered then those allocations > would never be referenced and just hang around as garbage until the > driver is unloaded. In such cases fx. pinctrl-single uses devm_free to > free them again. Thank you for elaboration. Please, drop devm_*(). In this case it's inappropriate to use it. pinctrl-single should be amended accordingly, but it's out of scope here. ... > > > > I such cases where you get conflicting PIN_CONFIG_BIAS_* settings I > > > > don't see why it's better to do the rmw on the padctl register for the > > > > first bias setting only to then change the bits again a few > > > > microseconds later when the loop encounters the second bias setting. > > > > After the loop is done the end result would still be just the last > > > > bias setting. > > > > > > It could be bias X followed by something else followed by bias Y. You > > > will write something else with bias Y. I admit I don't know this > > > hardware and you and maintainers are supposed to decide what's better, > > > but my guts are telling me that current algo is buggy. > > > > So there is only one padctl register pr. pin. I don't see why first > > setting the bias bits to X, then setting some other bits, and then > > setting the bias bits to Y would be different from just setting all > > the bits in one go. Except for during that little microsecond window > > during the loop that I actually think it's better to avoid. > > Maybe an example is in order. Suppose we get strong pull-up, drive > strength 3 and pull-down config flags (the strong pull-up and pull > down flags conflict) and the padctl value is 0x0c0 (pull-up, input and > schmitt trigger enabled). With your solution of just altering the > padctl bits immediately we'd call starfive_padctl_rmw 3 times in rapid > succession like this: > > starfive_padctl_rmw(pin, 0x130, 0x100); > starfive_padctl_rmw(pin, 0x007, 0x003); > starfive_padctl_rmw(pin, 0x130, 0x010); > > ..and the end result would be 0x0d3, although the strong pull-up would > be enabled for the microseconds between the 1st and 3nd call. > As the code is now it'd just directly do > > starfive_padctl_rmw(pin, 0x137, 0x013) > > ..which again results in 0x0d3, only without the microsecond blink of > the strong pull-up. You missed the point. Hardware on the other end may behave well differently in these two cases.
On Mon, 25 Oct 2021 at 12:16, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > On Sun, Oct 24, 2021 at 12:29 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > > On Sat, 23 Oct 2021 at 23:02, Emil Renner Berthing <kernel@esmil.dk> wrote: > > > On Sat, 23 Oct 2021 at 22:29, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > > > > On Sat, Oct 23, 2021 at 9:46 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > > ... > > > > So is that a yes or a no to my question? It's not clear to me. > > > > I see now that you've probably misunderstood what the code does. It's > > not one time use. The function parses the device tree and dynamically > > registers groups and functions with the pinctrl framework. Each group > > needs a string name, an int array of pins and optionally the pinmux > > data. Once the group is registered those pieces of data needs to live > > with the group until the drive is unloaded. But if the device tree > > parsing fails before the group is registered then those allocations > > would never be referenced and just hang around as garbage until the > > driver is unloaded. In such cases fx. pinctrl-single uses devm_free to > > free them again. > > Thank you for elaboration. Please, drop devm_*(). In this case it's > inappropriate to use it. pinctrl-single should be amended accordingly, > but it's out of scope here. > > ... > > > > > > I such cases where you get conflicting PIN_CONFIG_BIAS_* settings I > > > > > don't see why it's better to do the rmw on the padctl register for the > > > > > first bias setting only to then change the bits again a few > > > > > microseconds later when the loop encounters the second bias setting. > > > > > After the loop is done the end result would still be just the last > > > > > bias setting. > > > > > > > > It could be bias X followed by something else followed by bias Y. You > > > > will write something else with bias Y. I admit I don't know this > > > > hardware and you and maintainers are supposed to decide what's better, > > > > but my guts are telling me that current algo is buggy. > > > > > > So there is only one padctl register pr. pin. I don't see why first > > > setting the bias bits to X, then setting some other bits, and then > > > setting the bias bits to Y would be different from just setting all > > > the bits in one go. Except for during that little microsecond window > > > during the loop that I actually think it's better to avoid. > > > > Maybe an example is in order. Suppose we get strong pull-up, drive > > strength 3 and pull-down config flags (the strong pull-up and pull > > down flags conflict) and the padctl value is 0x0c0 (pull-up, input and > > schmitt trigger enabled). With your solution of just altering the > > padctl bits immediately we'd call starfive_padctl_rmw 3 times in rapid > > succession like this: > > > > starfive_padctl_rmw(pin, 0x130, 0x100); > > starfive_padctl_rmw(pin, 0x007, 0x003); > > starfive_padctl_rmw(pin, 0x130, 0x010); > > > > ..and the end result would be 0x0d3, although the strong pull-up would > > be enabled for the microseconds between the 1st and 3nd call. > > As the code is now it'd just directly do > > > > starfive_padctl_rmw(pin, 0x137, 0x013) > > > > ..which again results in 0x0d3, only without the microsecond blink of > > the strong pull-up. > > You missed the point. Hardware on the other end may behave well > differently in these two cases. Right, but that can never be an intended behaviour. Which of the conflicting bias settings comes first and is blipped before the 2nd remains entirely depends on how the pinctrl framework parses the devicetree. I'd much rather have it cleanly go to just one of the states, which might be the wrong one, but the conflicting bias settings are wrong to begin with.
On Mon, Oct 25, 2021 at 1:24 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > On Mon, 25 Oct 2021 at 12:16, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > > On Sun, Oct 24, 2021 at 12:29 PM Emil Renner Berthing <kernel@esmil.dk> wrote: > > > On Sat, 23 Oct 2021 at 23:02, Emil Renner Berthing <kernel@esmil.dk> wrote: > > > > On Sat, 23 Oct 2021 at 22:29, Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > > > > > On Sat, Oct 23, 2021 at 9:46 PM Emil Renner Berthing <kernel@esmil.dk> wrote: ... > > > > > > I such cases where you get conflicting PIN_CONFIG_BIAS_* settings I > > > > > > don't see why it's better to do the rmw on the padctl register for the > > > > > > first bias setting only to then change the bits again a few > > > > > > microseconds later when the loop encounters the second bias setting. > > > > > > After the loop is done the end result would still be just the last > > > > > > bias setting. > > > > > > > > > > It could be bias X followed by something else followed by bias Y. You > > > > > will write something else with bias Y. I admit I don't know this > > > > > hardware and you and maintainers are supposed to decide what's better, > > > > > but my guts are telling me that current algo is buggy. > > > > > > > > So there is only one padctl register pr. pin. I don't see why first > > > > setting the bias bits to X, then setting some other bits, and then > > > > setting the bias bits to Y would be different from just setting all > > > > the bits in one go. Except for during that little microsecond window > > > > during the loop that I actually think it's better to avoid. > > > > > > Maybe an example is in order. Suppose we get strong pull-up, drive > > > strength 3 and pull-down config flags (the strong pull-up and pull > > > down flags conflict) and the padctl value is 0x0c0 (pull-up, input and > > > schmitt trigger enabled). With your solution of just altering the > > > padctl bits immediately we'd call starfive_padctl_rmw 3 times in rapid > > > succession like this: > > > > > > starfive_padctl_rmw(pin, 0x130, 0x100); > > > starfive_padctl_rmw(pin, 0x007, 0x003); > > > starfive_padctl_rmw(pin, 0x130, 0x010); > > > > > > ..and the end result would be 0x0d3, although the strong pull-up would > > > be enabled for the microseconds between the 1st and 3nd call. > > > As the code is now it'd just directly do > > > > > > starfive_padctl_rmw(pin, 0x137, 0x013) > > > > > > ..which again results in 0x0d3, only without the microsecond blink of > > > the strong pull-up. > > > > You missed the point. Hardware on the other end may behave well > > differently in these two cases. > > Right, but that can never be an intended behaviour. Which of the > conflicting bias settings comes first and is blipped before the 2nd > remains entirely depends on how the pinctrl framework parses the > devicetree. I'd much rather have it cleanly go to just one of the > states, which might be the wrong one, but the conflicting bias > settings are wrong to begin with. That's why I said that is up to you and maintainers and people who know hardware better than me.
Hi Emil, I love your patch! Yet something to improve: [auto build test ERROR on next-20211021] [also build test ERROR on v5.15-rc7] [cannot apply to robh/for-next clk/clk-next pza/reset/next linus/master v5.15-rc6 v5.15-rc5 v5.15-rc4] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Emil-Renner-Berthing/Basic-StarFive-JH7100-RISC-V-SoC-support/20211022-014605 base: 3196a52aff93186897f15f1a6c03220ce6523d82 config: alpha-randconfig-p002-20211028 (attached as .config) compiler: alpha-linux-gcc (GCC) 11.2.0 reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://github.com/0day-ci/linux/commit/2aa8169a8c5820ad5b70679777e7f6acd4fd4699 git remote add linux-review https://github.com/0day-ci/linux git fetch --no-tags linux-review Emil-Renner-Berthing/Basic-StarFive-JH7100-RISC-V-SoC-support/20211022-014605 git checkout 2aa8169a8c5820ad5b70679777e7f6acd4fd4699 # save the attached .config to linux build tree COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=alpha If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot <lkp@intel.com> All errors (new ones prefixed by >>): drivers/pinctrl/pinctrl-starfive.c: In function 'starfive_dt_node_to_map': >> drivers/pinctrl/pinctrl-starfive.c:591:23: error: implicit declaration of function 'pinconf_generic_parse_dt_config'; did you mean 'pinconf_generic_dump_config'? [-Werror=implicit-function-declaration] 591 | ret = pinconf_generic_parse_dt_config(child, pctldev, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | pinconf_generic_dump_config cc1: some warnings being treated as errors Kconfig warnings: (for reference only) WARNING: unmet direct dependencies detected for OF_GPIO Depends on GPIOLIB && OF && HAS_IOMEM Selected by - PINCTRL_STARFIVE && PINCTRL && (SOC_STARFIVE || COMPILE_TEST WARNING: unmet direct dependencies detected for GPIO_SYSCON Depends on GPIOLIB && HAS_IOMEM && MFD_SYSCON && OF Selected by - GPIO_SAMA5D2_PIOBU && GPIOLIB && HAS_IOMEM && MFD_SYSCON && OF_GPIO vim +591 drivers/pinctrl/pinctrl-starfive.c 475 476 static int starfive_dt_node_to_map(struct pinctrl_dev *pctldev, 477 struct device_node *np, 478 struct pinctrl_map **maps, 479 unsigned int *num_maps) 480 { 481 struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); 482 struct device *dev = starfive_dev(sfp); 483 const char **pgnames; 484 struct pinctrl_map *map; 485 struct device_node *child; 486 const char *grpname; 487 int *pins; 488 u32 *pinmux; 489 int nmaps; 490 int ngroups; 491 int ret; 492 493 nmaps = 0; 494 ngroups = 0; 495 for_each_child_of_node(np, child) { 496 int npinmux = of_property_count_u32_elems(child, "pinmux"); 497 int npins = of_property_count_u32_elems(child, "pins"); 498 499 if (npinmux > 0 && npins > 0) { 500 dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", 501 np, child, "both pinmux and pins set"); 502 of_node_put(child); 503 return -EINVAL; 504 } 505 506 if (npinmux > 0) { 507 nmaps += 2; 508 } else if (npins > 0) { 509 nmaps += 1; 510 } else { 511 dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", 512 np, child, "neither pinmux nor pins set"); 513 of_node_put(child); 514 return -EINVAL; 515 } 516 ngroups += 1; 517 } 518 519 ret = -ENOMEM; 520 pgnames = devm_kcalloc(dev, ngroups, sizeof(*pgnames), GFP_KERNEL); 521 if (!pgnames) 522 return ret; 523 524 map = kcalloc(nmaps, sizeof(*map), GFP_KERNEL); 525 if (!map) 526 goto free_pgnames; 527 528 nmaps = 0; 529 ngroups = 0; 530 for_each_child_of_node(np, child) { 531 int npins; 532 int i; 533 534 ret = -ENOMEM; 535 grpname = devm_kasprintf(dev, GFP_KERNEL, "%s.%s", np->name, child->name); 536 if (!grpname) 537 goto put_child; 538 539 pgnames[ngroups++] = grpname; 540 541 if ((npins = of_property_count_u32_elems(child, "pinmux")) > 0) { 542 pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); 543 if (!pins) 544 goto free_grpname; 545 546 pinmux = devm_kcalloc(dev, npins, sizeof(*pinmux), GFP_KERNEL); 547 if (!pinmux) 548 goto free_pins; 549 550 for (i = 0; i < npins; i++) { 551 u32 v; 552 553 ret = of_property_read_u32_index(child, "pinmux", i, &v); 554 if (ret) 555 goto free_pinmux; 556 pins[i] = starfive_gpio_to_pin(sfp, starfive_pinmux_to_gpio(v)); 557 pinmux[i] = v; 558 } 559 560 map[nmaps].type = PIN_MAP_TYPE_MUX_GROUP; 561 map[nmaps].data.mux.function = np->name; 562 map[nmaps].data.mux.group = grpname; 563 nmaps += 1; 564 } else if ((npins = of_property_count_u32_elems(child, "pins")) > 0) { 565 pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); 566 if (!pins) 567 goto free_grpname; 568 569 pinmux = NULL; 570 571 for (i = 0; i < npins; i++) { 572 u32 v; 573 574 ret = of_property_read_u32_index(child, "pins", i, &v); 575 if (ret) 576 goto free_pins; 577 pins[i] = v; 578 } 579 } else { 580 ret = -EINVAL; 581 goto free_grpname; 582 } 583 584 ret = pinctrl_generic_add_group(pctldev, grpname, pins, npins, pinmux); 585 if (ret < 0) { 586 dev_err(dev, "error adding group %pOFn.%pOFn: %d\n", 587 np, child, ret); 588 goto free_pinmux; 589 } 590 > 591 ret = pinconf_generic_parse_dt_config(child, pctldev, 592 &map[nmaps].data.configs.configs, 593 &map[nmaps].data.configs.num_configs); 594 if (ret) { 595 dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", 596 np, child, "error parsing pin config"); 597 goto put_child; 598 } 599 600 /* don't create a map if there are no pinconf settings */ 601 if (map[nmaps].data.configs.num_configs == 0) 602 continue; 603 604 map[nmaps].type = PIN_MAP_TYPE_CONFIGS_GROUP; 605 map[nmaps].data.configs.group_or_pin = grpname; 606 nmaps += 1; 607 } 608 609 ret = pinmux_generic_add_function(pctldev, np->name, pgnames, ngroups, NULL); 610 if (ret < 0) { 611 dev_err(dev, "error adding function %pOFn: %d\n", np, ret); 612 goto free_map; 613 } 614 615 *maps = map; 616 *num_maps = nmaps; 617 return 0; 618 619 free_pinmux: 620 devm_kfree(dev, pinmux); 621 free_pins: 622 devm_kfree(dev, pins); 623 free_grpname: 624 devm_kfree(dev, grpname); 625 put_child: 626 of_node_put(child); 627 free_map: 628 pinctrl_utils_free_map(pctldev, map, nmaps); 629 free_pgnames: 630 devm_kfree(dev, pgnames); 631 return ret; 632 } 633 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
diff --git a/MAINTAINERS b/MAINTAINERS index b3f3a29fc91f..1f122f93a5a5 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -17855,6 +17855,14 @@ F: Documentation/devicetree/bindings/clock/starfive,jh7100-clkgen.yaml F: drivers/clk/starfive/clk-starfive-jh7100.c F: include/dt-bindings/clock/starfive-jh7100.h +STARFIVE JH7100 PINCTRL DRIVER +M: Emil Renner Berthing <kernel@esmil.dk> +L: linux-gpio@vger.kernel.org +S: Maintained +F: Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml +F: drivers/pinctrl/pinctrl-starfive.c +F: include/dt-bindings/pinctrl/pinctrl-starfive.h + STARFIVE JH7100 RESET CONTROLLER DRIVER M: Emil Renner Berthing <kernel@esmil.dk> S: Maintained diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index 31921108e456..98caa94acf9e 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -265,6 +265,22 @@ config PINCTRL_ST select PINCONF select GPIOLIB_IRQCHIP +config PINCTRL_STARFIVE + tristate "Pinctrl and GPIO driver for the StarFive JH7100 SoC" + depends on SOC_STARFIVE || COMPILE_TEST + default SOC_STARFIVE + select GENERIC_PINCTRL_GROUPS + select GENERIC_PINMUX_FUNCTIONS + select GENERIC_PINCONF + select GPIOLIB + select GPIOLIB_IRQCHIP + select OF_GPIO + help + Say yes here to support pin control on the StarFive JH7100 SoC. + This also provides an interface to the GPIO pins not used by other + peripherals supporting inputs, outputs, configuring pull-up/pull-down + and interrupts on input changes. + config PINCTRL_STMFX tristate "STMicroelectronics STMFX GPIO expander pinctrl driver" depends on I2C diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile index 200073bcc2c1..9c258047f11c 100644 --- a/drivers/pinctrl/Makefile +++ b/drivers/pinctrl/Makefile @@ -38,6 +38,7 @@ obj-$(CONFIG_PINCTRL_LANTIQ) += pinctrl-lantiq.o obj-$(CONFIG_PINCTRL_LPC18XX) += pinctrl-lpc18xx.o obj-$(CONFIG_PINCTRL_TB10X) += pinctrl-tb10x.o obj-$(CONFIG_PINCTRL_ST) += pinctrl-st.o +obj-$(CONFIG_PINCTRL_STARFIVE) += pinctrl-starfive.o obj-$(CONFIG_PINCTRL_STMFX) += pinctrl-stmfx.o obj-$(CONFIG_PINCTRL_ZYNQ) += pinctrl-zynq.o obj-$(CONFIG_PINCTRL_ZYNQMP) += pinctrl-zynqmp.o diff --git a/drivers/pinctrl/pinctrl-starfive.c b/drivers/pinctrl/pinctrl-starfive.c new file mode 100644 index 000000000000..ca99fad883e6 --- /dev/null +++ b/drivers/pinctrl/pinctrl-starfive.c @@ -0,0 +1,1387 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Pinctrl / GPIO driver for StarFive JH7100 SoC + * + * Copyright (C) 2020 Shanghai StarFive Technology Co., Ltd. + * Copyright (C) 2021 Emil Renner Berthing <kernel@esmil.dk> + */ + +#include <linux/bits.h> +#include <linux/clk.h> +#include <linux/gpio/driver.h> +#include <linux/io.h> +#include <linux/mod_devicetable.h> +#include <linux/module.h> +#include <linux/of.h> +#include <linux/platform_device.h> +#include <linux/reset.h> +#include <linux/spinlock.h> + +#include <linux/pinctrl/pinctrl.h> +#include <linux/pinctrl/pinmux.h> + +#include <dt-bindings/pinctrl/pinctrl-starfive.h> + +#include "core.h" +#include "pinctrl-utils.h" +#include "pinmux.h" +#include "pinconf.h" + +#define DRIVER_NAME "pinctrl-starfive" + +/* + * Refer to Section 12. GPIO Registers in the JH7100 data sheet: + * https://github.com/starfive-tech/JH7100_Docs + */ +#define NR_GPIOS 64 + +/* + * Global enable for GPIO interrupts. If bit 0 is set to 1 the GPIO interrupts + * are enabled. If set to 0 the GPIO interrupts are disabled. + */ +#define GPIOEN 0x000 + +/* + * The following 32-bit registers come in pairs, but only the offset of the + * first register is defined. The first controls (interrupts for) GPIO 0-31 and + * the second GPIO 32-63. + */ + +/* + * Interrupt Type. If set to 1 the interrupt is edge-triggered. If set to 0 the + * interrupt is level-triggered. + */ +#define GPIOIS 0x010 + +/* + * Edge-Trigger Interrupt Type. If set to 1 the interrupt gets triggered on + * both positive and negative edges. If set to 0 the interrupt is triggered by a + * single edge. + */ +#define GPIOIBE 0x018 + +/* + * Interrupt Trigger Polarity. If set to 1 the interrupt is triggered on a + * rising edge (edge-triggered) or high level (level-triggered). If set to 0 the + * interrupt is triggered on a falling edge (edge-triggered) or low level + * (level-triggered). + */ +#define GPIOIEV 0x020 + +/* + * Interrupt Mask. If set to 1 the interrupt is disabled (masked). If set to 0 + * the interrupt is enabled (unmasked). + */ +#define GPIOIE 0x028 + +/* + * Clear Edge-Triggered Interrupts. Write a 1 to clear the edge-triggered + * interrupt. + */ +#define GPIOIC 0x030 + +/* + * Edge-Triggered Interrupt Status. A 1 means the configured edge was detected. + */ +#define GPIORIS 0x038 + +/* + * Interrupt Status after Masking. A 1 means the configured edge or level was + * detected and not masked. + */ +#define GPIOMIS 0x040 + +/* + * Data Value. Dynamically reflects the value of the GPIO pin. If 1 the pin is + * a digital 1 and if 0 the pin is a digital 0. + */ +#define GPIODIN 0x048 + +/* + * From the data sheet section 12.2, there are 64 32-bit output data registers + * and 64 output enable registers. Output data and output enable registers for + * a given GPIO are contiguous. Eg. GPO0_DOUT_CFG is 0x50 and GPO0_DOEN_CFG is + * 0x54 while GPO1_DOUT_CFG is 0x58 and GPO1_DOEN_CFG is 0x5c. The stride + * between GPIO registers is effectively 8, thus: GPOn_DOUT_CFG is 0x50 + 8n + * and GPOn_DOEN_CFG is 0x54 + 8n. + */ +#define GPON_DOUT_CFG 0x050 +#define GPON_DOEN_CFG 0x054 + +/* + * From Section 12.3, there are 75 input signal configuration registers which + * are 4 bytes wide starting with GPI_CPU_JTAG_TCK_CFG at 0x250 and ending with + * GPI_USB_OVER_CURRENT_CFG 0x378 + */ +#define GPI_CFG_OFFSET 0x250 + +/* + * Pad Control Bits. There are 16 pad control bits for each pin located in 103 + * 32-bit registers controlling PAD_GPIO[0] to PAD_GPIO[63] followed by + * PAD_FUNC_SHARE[0] to PAD_FUNC_SHARE[141]. Odd numbered pins use the upper 16 + * bit of each register. + */ +#define PAD_SLEW_RATE_MASK GENMASK(11, 9) +#define PAD_SLEW_RATE_POS 9 +#define PAD_BIAS_STRONG_PULL_UP BIT(8) +#define PAD_INPUT_ENABLE BIT(7) +#define PAD_INPUT_SCHMITT_ENABLE BIT(6) +#define PAD_BIAS_DISABLE BIT(5) +#define PAD_BIAS_PULL_DOWN BIT(4) +#define PAD_BIAS_MASK (PAD_BIAS_STRONG_PULL_UP | \ + PAD_BIAS_DISABLE | \ + PAD_BIAS_PULL_DOWN) +#define PAD_DRIVE_STRENGTH_MASK GENMASK(3, 0) +#define PAD_DRIVE_STRENGTH_POS 0 + +/* + * From Section 11, the IO_PADSHARE_SEL register can be programmed to select + * one of seven pre-defined multiplexed signal groups on PAD_FUNC_SHARE and + * PAD_GPIO pads. This is a global setting. + */ +#define IO_PADSHARE_SEL 0x1a0 + +/* + * This just needs to be some number such that when + * sfp->gpio.pin_base = PAD_INVALID_GPIO then + * starfive_pin_to_gpio(sfp, validpin) is never a valid GPIO number. + * That is it should underflow and return something >= NR_GPIOS. + */ +#define PAD_INVALID_GPIO 0x10000 + +/* + * The packed pinmux values from the device tree look like this: + * + * | 31 - 24 | 23 - 16 | 15 - 8 | 7 | 6 | 5 - 0 | + * | dout | doen | din | dout rev | doen rev | gpio nr | + * + * ..but the GPOn_DOUT_CFG and GPOn_DOEN_CFG registers look like this: + * + * | 31 | 30 - 8 | 7 - 0 | + * | dout/doen rev | unused | dout/doen | + */ +static unsigned int starfive_pinmux_to_gpio(u32 v) +{ + return v & (NR_GPIOS - 1); +} + +static u32 starfive_pinmux_to_dout(u32 v) +{ + return ((v & BIT(7)) << (31 - 7)) | ((v >> 24) & GENMASK(7, 0)); +} + +static u32 starfive_pinmux_to_doen(u32 v) +{ + return ((v & BIT(6)) << (31 - 6)) | ((v >> 16) & GENMASK(7, 0)); +} + +static u32 starfive_pinmux_to_din(u32 v) +{ + return (v >> 8) & GENMASK(7, 0); +} + +/* + * The maximum GPIO output current depends on the chosen drive strength: + * + * DS: 0 1 2 3 4 5 6 7 + * mA: 14.2 21.2 28.2 35.2 42.2 49.1 56.0 62.8 + * + * After rounding that is 7*DS + 14 mA + */ +static u32 starfive_drive_strength_to_max_mA(u16 ds) +{ + return 7 * ds + 14; +} + +static u16 starfive_drive_strength_from_max_mA(u32 i) +{ + return (clamp(i, 14U, 63U) - 14) / 7; +} + +struct starfive_pinctrl { + struct gpio_chip gc; + struct pinctrl_gpio_range gpios; + raw_spinlock_t lock; + void __iomem *base; + void __iomem *padctl; + struct pinctrl_dev *pctl; +}; + +static struct device *starfive_dev(const struct starfive_pinctrl *sfp) +{ + return sfp->gc.parent; +} + +static unsigned int starfive_pin_to_gpio(const struct starfive_pinctrl *sfp, + unsigned int pin) +{ + return pin - sfp->gpios.pin_base; +} + +static unsigned int starfive_gpio_to_pin(const struct starfive_pinctrl *sfp, + unsigned int gpio) +{ + return sfp->gpios.pin_base + gpio; +} + +static struct starfive_pinctrl *starfive_from_gc(struct gpio_chip *gc) +{ + return container_of(gc, struct starfive_pinctrl, gc); +} + +static struct starfive_pinctrl *starfive_from_irq_data(struct irq_data *d) +{ + return starfive_from_gc(irq_data_get_irq_chip_data(d)); +} + +static struct starfive_pinctrl *starfive_from_irq_desc(struct irq_desc *desc) +{ + return starfive_from_gc(irq_desc_get_handler_data(desc)); +} + +static const struct pinctrl_pin_desc starfive_pins[] = { + PINCTRL_PIN(PAD_GPIO(0), "GPIO[0]"), + PINCTRL_PIN(PAD_GPIO(1), "GPIO[1]"), + PINCTRL_PIN(PAD_GPIO(2), "GPIO[2]"), + PINCTRL_PIN(PAD_GPIO(3), "GPIO[3]"), + PINCTRL_PIN(PAD_GPIO(4), "GPIO[4]"), + PINCTRL_PIN(PAD_GPIO(5), "GPIO[5]"), + PINCTRL_PIN(PAD_GPIO(6), "GPIO[6]"), + PINCTRL_PIN(PAD_GPIO(7), "GPIO[7]"), + PINCTRL_PIN(PAD_GPIO(8), "GPIO[8]"), + PINCTRL_PIN(PAD_GPIO(9), "GPIO[9]"), + PINCTRL_PIN(PAD_GPIO(10), "GPIO[10]"), + PINCTRL_PIN(PAD_GPIO(11), "GPIO[11]"), + PINCTRL_PIN(PAD_GPIO(12), "GPIO[12]"), + PINCTRL_PIN(PAD_GPIO(13), "GPIO[13]"), + PINCTRL_PIN(PAD_GPIO(14), "GPIO[14]"), + PINCTRL_PIN(PAD_GPIO(15), "GPIO[15]"), + PINCTRL_PIN(PAD_GPIO(16), "GPIO[16]"), + PINCTRL_PIN(PAD_GPIO(17), "GPIO[17]"), + PINCTRL_PIN(PAD_GPIO(18), "GPIO[18]"), + PINCTRL_PIN(PAD_GPIO(19), "GPIO[19]"), + PINCTRL_PIN(PAD_GPIO(20), "GPIO[20]"), + PINCTRL_PIN(PAD_GPIO(21), "GPIO[21]"), + PINCTRL_PIN(PAD_GPIO(22), "GPIO[22]"), + PINCTRL_PIN(PAD_GPIO(23), "GPIO[23]"), + PINCTRL_PIN(PAD_GPIO(24), "GPIO[24]"), + PINCTRL_PIN(PAD_GPIO(25), "GPIO[25]"), + PINCTRL_PIN(PAD_GPIO(26), "GPIO[26]"), + PINCTRL_PIN(PAD_GPIO(27), "GPIO[27]"), + PINCTRL_PIN(PAD_GPIO(28), "GPIO[28]"), + PINCTRL_PIN(PAD_GPIO(29), "GPIO[29]"), + PINCTRL_PIN(PAD_GPIO(30), "GPIO[30]"), + PINCTRL_PIN(PAD_GPIO(31), "GPIO[31]"), + PINCTRL_PIN(PAD_GPIO(32), "GPIO[32]"), + PINCTRL_PIN(PAD_GPIO(33), "GPIO[33]"), + PINCTRL_PIN(PAD_GPIO(34), "GPIO[34]"), + PINCTRL_PIN(PAD_GPIO(35), "GPIO[35]"), + PINCTRL_PIN(PAD_GPIO(36), "GPIO[36]"), + PINCTRL_PIN(PAD_GPIO(37), "GPIO[37]"), + PINCTRL_PIN(PAD_GPIO(38), "GPIO[38]"), + PINCTRL_PIN(PAD_GPIO(39), "GPIO[39]"), + PINCTRL_PIN(PAD_GPIO(40), "GPIO[40]"), + PINCTRL_PIN(PAD_GPIO(41), "GPIO[41]"), + PINCTRL_PIN(PAD_GPIO(42), "GPIO[42]"), + PINCTRL_PIN(PAD_GPIO(43), "GPIO[43]"), + PINCTRL_PIN(PAD_GPIO(44), "GPIO[44]"), + PINCTRL_PIN(PAD_GPIO(45), "GPIO[45]"), + PINCTRL_PIN(PAD_GPIO(46), "GPIO[46]"), + PINCTRL_PIN(PAD_GPIO(47), "GPIO[47]"), + PINCTRL_PIN(PAD_GPIO(48), "GPIO[48]"), + PINCTRL_PIN(PAD_GPIO(49), "GPIO[49]"), + PINCTRL_PIN(PAD_GPIO(50), "GPIO[50]"), + PINCTRL_PIN(PAD_GPIO(51), "GPIO[51]"), + PINCTRL_PIN(PAD_GPIO(52), "GPIO[52]"), + PINCTRL_PIN(PAD_GPIO(53), "GPIO[53]"), + PINCTRL_PIN(PAD_GPIO(54), "GPIO[54]"), + PINCTRL_PIN(PAD_GPIO(55), "GPIO[55]"), + PINCTRL_PIN(PAD_GPIO(56), "GPIO[56]"), + PINCTRL_PIN(PAD_GPIO(57), "GPIO[57]"), + PINCTRL_PIN(PAD_GPIO(58), "GPIO[58]"), + PINCTRL_PIN(PAD_GPIO(59), "GPIO[59]"), + PINCTRL_PIN(PAD_GPIO(60), "GPIO[60]"), + PINCTRL_PIN(PAD_GPIO(61), "GPIO[61]"), + PINCTRL_PIN(PAD_GPIO(62), "GPIO[62]"), + PINCTRL_PIN(PAD_GPIO(63), "GPIO[63]"), + PINCTRL_PIN(PAD_FUNC_SHARE(0), "FUNC_SHARE[0]"), + PINCTRL_PIN(PAD_FUNC_SHARE(1), "FUNC_SHARE[1]"), + PINCTRL_PIN(PAD_FUNC_SHARE(2), "FUNC_SHARE[2]"), + PINCTRL_PIN(PAD_FUNC_SHARE(3), "FUNC_SHARE[3]"), + PINCTRL_PIN(PAD_FUNC_SHARE(4), "FUNC_SHARE[4]"), + PINCTRL_PIN(PAD_FUNC_SHARE(5), "FUNC_SHARE[5]"), + PINCTRL_PIN(PAD_FUNC_SHARE(6), "FUNC_SHARE[6]"), + PINCTRL_PIN(PAD_FUNC_SHARE(7), "FUNC_SHARE[7]"), + PINCTRL_PIN(PAD_FUNC_SHARE(8), "FUNC_SHARE[8]"), + PINCTRL_PIN(PAD_FUNC_SHARE(9), "FUNC_SHARE[9]"), + PINCTRL_PIN(PAD_FUNC_SHARE(10), "FUNC_SHARE[10]"), + PINCTRL_PIN(PAD_FUNC_SHARE(11), "FUNC_SHARE[11]"), + PINCTRL_PIN(PAD_FUNC_SHARE(12), "FUNC_SHARE[12]"), + PINCTRL_PIN(PAD_FUNC_SHARE(13), "FUNC_SHARE[13]"), + PINCTRL_PIN(PAD_FUNC_SHARE(14), "FUNC_SHARE[14]"), + PINCTRL_PIN(PAD_FUNC_SHARE(15), "FUNC_SHARE[15]"), + PINCTRL_PIN(PAD_FUNC_SHARE(16), "FUNC_SHARE[16]"), + PINCTRL_PIN(PAD_FUNC_SHARE(17), "FUNC_SHARE[17]"), + PINCTRL_PIN(PAD_FUNC_SHARE(18), "FUNC_SHARE[18]"), + PINCTRL_PIN(PAD_FUNC_SHARE(19), "FUNC_SHARE[19]"), + PINCTRL_PIN(PAD_FUNC_SHARE(20), "FUNC_SHARE[20]"), + PINCTRL_PIN(PAD_FUNC_SHARE(21), "FUNC_SHARE[21]"), + PINCTRL_PIN(PAD_FUNC_SHARE(22), "FUNC_SHARE[22]"), + PINCTRL_PIN(PAD_FUNC_SHARE(23), "FUNC_SHARE[23]"), + PINCTRL_PIN(PAD_FUNC_SHARE(24), "FUNC_SHARE[24]"), + PINCTRL_PIN(PAD_FUNC_SHARE(25), "FUNC_SHARE[25]"), + PINCTRL_PIN(PAD_FUNC_SHARE(26), "FUNC_SHARE[26]"), + PINCTRL_PIN(PAD_FUNC_SHARE(27), "FUNC_SHARE[27]"), + PINCTRL_PIN(PAD_FUNC_SHARE(28), "FUNC_SHARE[28]"), + PINCTRL_PIN(PAD_FUNC_SHARE(29), "FUNC_SHARE[29]"), + PINCTRL_PIN(PAD_FUNC_SHARE(30), "FUNC_SHARE[30]"), + PINCTRL_PIN(PAD_FUNC_SHARE(31), "FUNC_SHARE[31]"), + PINCTRL_PIN(PAD_FUNC_SHARE(32), "FUNC_SHARE[32]"), + PINCTRL_PIN(PAD_FUNC_SHARE(33), "FUNC_SHARE[33]"), + PINCTRL_PIN(PAD_FUNC_SHARE(34), "FUNC_SHARE[34]"), + PINCTRL_PIN(PAD_FUNC_SHARE(35), "FUNC_SHARE[35]"), + PINCTRL_PIN(PAD_FUNC_SHARE(36), "FUNC_SHARE[36]"), + PINCTRL_PIN(PAD_FUNC_SHARE(37), "FUNC_SHARE[37]"), + PINCTRL_PIN(PAD_FUNC_SHARE(38), "FUNC_SHARE[38]"), + PINCTRL_PIN(PAD_FUNC_SHARE(39), "FUNC_SHARE[39]"), + PINCTRL_PIN(PAD_FUNC_SHARE(40), "FUNC_SHARE[40]"), + PINCTRL_PIN(PAD_FUNC_SHARE(41), "FUNC_SHARE[41]"), + PINCTRL_PIN(PAD_FUNC_SHARE(42), "FUNC_SHARE[42]"), + PINCTRL_PIN(PAD_FUNC_SHARE(43), "FUNC_SHARE[43]"), + PINCTRL_PIN(PAD_FUNC_SHARE(44), "FUNC_SHARE[44]"), + PINCTRL_PIN(PAD_FUNC_SHARE(45), "FUNC_SHARE[45]"), + PINCTRL_PIN(PAD_FUNC_SHARE(46), "FUNC_SHARE[46]"), + PINCTRL_PIN(PAD_FUNC_SHARE(47), "FUNC_SHARE[47]"), + PINCTRL_PIN(PAD_FUNC_SHARE(48), "FUNC_SHARE[48]"), + PINCTRL_PIN(PAD_FUNC_SHARE(49), "FUNC_SHARE[49]"), + PINCTRL_PIN(PAD_FUNC_SHARE(50), "FUNC_SHARE[50]"), + PINCTRL_PIN(PAD_FUNC_SHARE(51), "FUNC_SHARE[51]"), + PINCTRL_PIN(PAD_FUNC_SHARE(52), "FUNC_SHARE[52]"), + PINCTRL_PIN(PAD_FUNC_SHARE(53), "FUNC_SHARE[53]"), + PINCTRL_PIN(PAD_FUNC_SHARE(54), "FUNC_SHARE[54]"), + PINCTRL_PIN(PAD_FUNC_SHARE(55), "FUNC_SHARE[55]"), + PINCTRL_PIN(PAD_FUNC_SHARE(56), "FUNC_SHARE[56]"), + PINCTRL_PIN(PAD_FUNC_SHARE(57), "FUNC_SHARE[57]"), + PINCTRL_PIN(PAD_FUNC_SHARE(58), "FUNC_SHARE[58]"), + PINCTRL_PIN(PAD_FUNC_SHARE(59), "FUNC_SHARE[59]"), + PINCTRL_PIN(PAD_FUNC_SHARE(60), "FUNC_SHARE[60]"), + PINCTRL_PIN(PAD_FUNC_SHARE(61), "FUNC_SHARE[61]"), + PINCTRL_PIN(PAD_FUNC_SHARE(62), "FUNC_SHARE[62]"), + PINCTRL_PIN(PAD_FUNC_SHARE(63), "FUNC_SHARE[63]"), + PINCTRL_PIN(PAD_FUNC_SHARE(64), "FUNC_SHARE[64]"), + PINCTRL_PIN(PAD_FUNC_SHARE(65), "FUNC_SHARE[65]"), + PINCTRL_PIN(PAD_FUNC_SHARE(66), "FUNC_SHARE[66]"), + PINCTRL_PIN(PAD_FUNC_SHARE(67), "FUNC_SHARE[67]"), + PINCTRL_PIN(PAD_FUNC_SHARE(68), "FUNC_SHARE[68]"), + PINCTRL_PIN(PAD_FUNC_SHARE(69), "FUNC_SHARE[69]"), + PINCTRL_PIN(PAD_FUNC_SHARE(70), "FUNC_SHARE[70]"), + PINCTRL_PIN(PAD_FUNC_SHARE(71), "FUNC_SHARE[71]"), + PINCTRL_PIN(PAD_FUNC_SHARE(72), "FUNC_SHARE[72]"), + PINCTRL_PIN(PAD_FUNC_SHARE(73), "FUNC_SHARE[73]"), + PINCTRL_PIN(PAD_FUNC_SHARE(74), "FUNC_SHARE[74]"), + PINCTRL_PIN(PAD_FUNC_SHARE(75), "FUNC_SHARE[75]"), + PINCTRL_PIN(PAD_FUNC_SHARE(76), "FUNC_SHARE[76]"), + PINCTRL_PIN(PAD_FUNC_SHARE(77), "FUNC_SHARE[77]"), + PINCTRL_PIN(PAD_FUNC_SHARE(78), "FUNC_SHARE[78]"), + PINCTRL_PIN(PAD_FUNC_SHARE(79), "FUNC_SHARE[79]"), + PINCTRL_PIN(PAD_FUNC_SHARE(80), "FUNC_SHARE[80]"), + PINCTRL_PIN(PAD_FUNC_SHARE(81), "FUNC_SHARE[81]"), + PINCTRL_PIN(PAD_FUNC_SHARE(82), "FUNC_SHARE[82]"), + PINCTRL_PIN(PAD_FUNC_SHARE(83), "FUNC_SHARE[83]"), + PINCTRL_PIN(PAD_FUNC_SHARE(84), "FUNC_SHARE[84]"), + PINCTRL_PIN(PAD_FUNC_SHARE(85), "FUNC_SHARE[85]"), + PINCTRL_PIN(PAD_FUNC_SHARE(86), "FUNC_SHARE[86]"), + PINCTRL_PIN(PAD_FUNC_SHARE(87), "FUNC_SHARE[87]"), + PINCTRL_PIN(PAD_FUNC_SHARE(88), "FUNC_SHARE[88]"), + PINCTRL_PIN(PAD_FUNC_SHARE(89), "FUNC_SHARE[89]"), + PINCTRL_PIN(PAD_FUNC_SHARE(90), "FUNC_SHARE[90]"), + PINCTRL_PIN(PAD_FUNC_SHARE(91), "FUNC_SHARE[91]"), + PINCTRL_PIN(PAD_FUNC_SHARE(92), "FUNC_SHARE[92]"), + PINCTRL_PIN(PAD_FUNC_SHARE(93), "FUNC_SHARE[93]"), + PINCTRL_PIN(PAD_FUNC_SHARE(94), "FUNC_SHARE[94]"), + PINCTRL_PIN(PAD_FUNC_SHARE(95), "FUNC_SHARE[95]"), + PINCTRL_PIN(PAD_FUNC_SHARE(96), "FUNC_SHARE[96]"), + PINCTRL_PIN(PAD_FUNC_SHARE(97), "FUNC_SHARE[97]"), + PINCTRL_PIN(PAD_FUNC_SHARE(98), "FUNC_SHARE[98]"), + PINCTRL_PIN(PAD_FUNC_SHARE(99), "FUNC_SHARE[99]"), + PINCTRL_PIN(PAD_FUNC_SHARE(100), "FUNC_SHARE[100]"), + PINCTRL_PIN(PAD_FUNC_SHARE(101), "FUNC_SHARE[101]"), + PINCTRL_PIN(PAD_FUNC_SHARE(102), "FUNC_SHARE[102]"), + PINCTRL_PIN(PAD_FUNC_SHARE(103), "FUNC_SHARE[103]"), + PINCTRL_PIN(PAD_FUNC_SHARE(104), "FUNC_SHARE[104]"), + PINCTRL_PIN(PAD_FUNC_SHARE(105), "FUNC_SHARE[105]"), + PINCTRL_PIN(PAD_FUNC_SHARE(106), "FUNC_SHARE[106]"), + PINCTRL_PIN(PAD_FUNC_SHARE(107), "FUNC_SHARE[107]"), + PINCTRL_PIN(PAD_FUNC_SHARE(108), "FUNC_SHARE[108]"), + PINCTRL_PIN(PAD_FUNC_SHARE(109), "FUNC_SHARE[109]"), + PINCTRL_PIN(PAD_FUNC_SHARE(110), "FUNC_SHARE[110]"), + PINCTRL_PIN(PAD_FUNC_SHARE(111), "FUNC_SHARE[111]"), + PINCTRL_PIN(PAD_FUNC_SHARE(112), "FUNC_SHARE[112]"), + PINCTRL_PIN(PAD_FUNC_SHARE(113), "FUNC_SHARE[113]"), + PINCTRL_PIN(PAD_FUNC_SHARE(114), "FUNC_SHARE[114]"), + PINCTRL_PIN(PAD_FUNC_SHARE(115), "FUNC_SHARE[115]"), + PINCTRL_PIN(PAD_FUNC_SHARE(116), "FUNC_SHARE[116]"), + PINCTRL_PIN(PAD_FUNC_SHARE(117), "FUNC_SHARE[117]"), + PINCTRL_PIN(PAD_FUNC_SHARE(118), "FUNC_SHARE[118]"), + PINCTRL_PIN(PAD_FUNC_SHARE(119), "FUNC_SHARE[119]"), + PINCTRL_PIN(PAD_FUNC_SHARE(120), "FUNC_SHARE[120]"), + PINCTRL_PIN(PAD_FUNC_SHARE(121), "FUNC_SHARE[121]"), + PINCTRL_PIN(PAD_FUNC_SHARE(122), "FUNC_SHARE[122]"), + PINCTRL_PIN(PAD_FUNC_SHARE(123), "FUNC_SHARE[123]"), + PINCTRL_PIN(PAD_FUNC_SHARE(124), "FUNC_SHARE[124]"), + PINCTRL_PIN(PAD_FUNC_SHARE(125), "FUNC_SHARE[125]"), + PINCTRL_PIN(PAD_FUNC_SHARE(126), "FUNC_SHARE[126]"), + PINCTRL_PIN(PAD_FUNC_SHARE(127), "FUNC_SHARE[127]"), + PINCTRL_PIN(PAD_FUNC_SHARE(128), "FUNC_SHARE[128]"), + PINCTRL_PIN(PAD_FUNC_SHARE(129), "FUNC_SHARE[129]"), + PINCTRL_PIN(PAD_FUNC_SHARE(130), "FUNC_SHARE[130]"), + PINCTRL_PIN(PAD_FUNC_SHARE(131), "FUNC_SHARE[131]"), + PINCTRL_PIN(PAD_FUNC_SHARE(132), "FUNC_SHARE[132]"), + PINCTRL_PIN(PAD_FUNC_SHARE(133), "FUNC_SHARE[133]"), + PINCTRL_PIN(PAD_FUNC_SHARE(134), "FUNC_SHARE[134]"), + PINCTRL_PIN(PAD_FUNC_SHARE(135), "FUNC_SHARE[135]"), + PINCTRL_PIN(PAD_FUNC_SHARE(136), "FUNC_SHARE[136]"), + PINCTRL_PIN(PAD_FUNC_SHARE(137), "FUNC_SHARE[137]"), + PINCTRL_PIN(PAD_FUNC_SHARE(138), "FUNC_SHARE[138]"), + PINCTRL_PIN(PAD_FUNC_SHARE(139), "FUNC_SHARE[139]"), + PINCTRL_PIN(PAD_FUNC_SHARE(140), "FUNC_SHARE[140]"), + PINCTRL_PIN(PAD_FUNC_SHARE(141), "FUNC_SHARE[141]"), +}; + +#ifdef CONFIG_DEBUG_FS +static void starfive_pin_dbg_show(struct pinctrl_dev *pctldev, + struct seq_file *s, + unsigned int pin) +{ + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); + unsigned int gpio = starfive_pin_to_gpio(sfp, pin); + void __iomem *reg; + u32 dout, doen; + + if (gpio >= NR_GPIOS) + return; + + reg = sfp->base + GPON_DOUT_CFG + 8 * gpio; + dout = readl_relaxed(reg + 0x000); + doen = readl_relaxed(reg + 0x004); + + seq_printf(s, "dout=%u%s doen=%u%s", + dout & (u32)GENMASK(7, 0), (dout & BIT(31)) ? "r" : "", + doen & (u32)GENMASK(7, 0), (doen & BIT(31)) ? "r" : ""); +} +#else +#define starfive_pin_dbg_show NULL +#endif + +static int starfive_dt_node_to_map(struct pinctrl_dev *pctldev, + struct device_node *np, + struct pinctrl_map **maps, + unsigned int *num_maps) +{ + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); + struct device *dev = starfive_dev(sfp); + const char **pgnames; + struct pinctrl_map *map; + struct device_node *child; + const char *grpname; + int *pins; + u32 *pinmux; + int nmaps; + int ngroups; + int ret; + + nmaps = 0; + ngroups = 0; + for_each_child_of_node(np, child) { + int npinmux = of_property_count_u32_elems(child, "pinmux"); + int npins = of_property_count_u32_elems(child, "pins"); + + if (npinmux > 0 && npins > 0) { + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", + np, child, "both pinmux and pins set"); + of_node_put(child); + return -EINVAL; + } + + if (npinmux > 0) { + nmaps += 2; + } else if (npins > 0) { + nmaps += 1; + } else { + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", + np, child, "neither pinmux nor pins set"); + of_node_put(child); + return -EINVAL; + } + ngroups += 1; + } + + ret = -ENOMEM; + pgnames = devm_kcalloc(dev, ngroups, sizeof(*pgnames), GFP_KERNEL); + if (!pgnames) + return ret; + + map = kcalloc(nmaps, sizeof(*map), GFP_KERNEL); + if (!map) + goto free_pgnames; + + nmaps = 0; + ngroups = 0; + for_each_child_of_node(np, child) { + int npins; + int i; + + ret = -ENOMEM; + grpname = devm_kasprintf(dev, GFP_KERNEL, "%s.%s", np->name, child->name); + if (!grpname) + goto put_child; + + pgnames[ngroups++] = grpname; + + if ((npins = of_property_count_u32_elems(child, "pinmux")) > 0) { + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); + if (!pins) + goto free_grpname; + + pinmux = devm_kcalloc(dev, npins, sizeof(*pinmux), GFP_KERNEL); + if (!pinmux) + goto free_pins; + + for (i = 0; i < npins; i++) { + u32 v; + + ret = of_property_read_u32_index(child, "pinmux", i, &v); + if (ret) + goto free_pinmux; + pins[i] = starfive_gpio_to_pin(sfp, starfive_pinmux_to_gpio(v)); + pinmux[i] = v; + } + + map[nmaps].type = PIN_MAP_TYPE_MUX_GROUP; + map[nmaps].data.mux.function = np->name; + map[nmaps].data.mux.group = grpname; + nmaps += 1; + } else if ((npins = of_property_count_u32_elems(child, "pins")) > 0) { + pins = devm_kcalloc(dev, npins, sizeof(*pins), GFP_KERNEL); + if (!pins) + goto free_grpname; + + pinmux = NULL; + + for (i = 0; i < npins; i++) { + u32 v; + + ret = of_property_read_u32_index(child, "pins", i, &v); + if (ret) + goto free_pins; + pins[i] = v; + } + } else { + ret = -EINVAL; + goto free_grpname; + } + + ret = pinctrl_generic_add_group(pctldev, grpname, pins, npins, pinmux); + if (ret < 0) { + dev_err(dev, "error adding group %pOFn.%pOFn: %d\n", + np, child, ret); + goto free_pinmux; + } + + ret = pinconf_generic_parse_dt_config(child, pctldev, + &map[nmaps].data.configs.configs, + &map[nmaps].data.configs.num_configs); + if (ret) { + dev_err(dev, "invalid pinctrl group %pOFn.%pOFn: %s\n", + np, child, "error parsing pin config"); + goto put_child; + } + + /* don't create a map if there are no pinconf settings */ + if (map[nmaps].data.configs.num_configs == 0) + continue; + + map[nmaps].type = PIN_MAP_TYPE_CONFIGS_GROUP; + map[nmaps].data.configs.group_or_pin = grpname; + nmaps += 1; + } + + ret = pinmux_generic_add_function(pctldev, np->name, pgnames, ngroups, NULL); + if (ret < 0) { + dev_err(dev, "error adding function %pOFn: %d\n", np, ret); + goto free_map; + } + + *maps = map; + *num_maps = nmaps; + return 0; + +free_pinmux: + devm_kfree(dev, pinmux); +free_pins: + devm_kfree(dev, pins); +free_grpname: + devm_kfree(dev, grpname); +put_child: + of_node_put(child); +free_map: + pinctrl_utils_free_map(pctldev, map, nmaps); +free_pgnames: + devm_kfree(dev, pgnames); + return ret; +} + +static const struct pinctrl_ops starfive_pinctrl_ops = { + .get_groups_count = pinctrl_generic_get_group_count, + .get_group_name = pinctrl_generic_get_group_name, + .get_group_pins = pinctrl_generic_get_group_pins, + .pin_dbg_show = starfive_pin_dbg_show, + .dt_node_to_map = starfive_dt_node_to_map, + .dt_free_map = pinctrl_utils_free_map, +}; + +static int starfive_set_mux(struct pinctrl_dev *pctldev, + unsigned int fsel, unsigned int gsel) +{ + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); + struct device *dev = starfive_dev(sfp); + const struct group_desc *group; + const u32 *pinmux; + unsigned int i; + + group = pinctrl_generic_get_group(pctldev, gsel); + if (!group) + return -EINVAL; + + pinmux = group->data; + for (i = 0; i < group->num_pins; i++) { + u32 v = pinmux[i]; + unsigned int gpio = starfive_pinmux_to_gpio(v); + u32 dout = starfive_pinmux_to_dout(v); + u32 doen = starfive_pinmux_to_doen(v); + u32 din = starfive_pinmux_to_din(v); + void __iomem *reg_dout; + void __iomem *reg_doen; + void __iomem *reg_din; + unsigned long flags; + + dev_dbg(dev, "GPIO%u: dout=0x%x doen=0x%x din=0x%x\n", + gpio, dout, doen, din); + + reg_dout = sfp->base + GPON_DOUT_CFG + 8 * gpio; + reg_doen = sfp->base + GPON_DOEN_CFG + 8 * gpio; + if (din != GPI_NONE) + reg_din = sfp->base + GPI_CFG_OFFSET + 4 * din; + else + reg_din = NULL; + + raw_spin_lock_irqsave(&sfp->lock, flags); + writel_relaxed(dout, reg_dout); + writel_relaxed(doen, reg_doen); + if (reg_din) + writel_relaxed(gpio + 2, reg_din); + raw_spin_unlock_irqrestore(&sfp->lock, flags); + } + + return 0; +} + +static const struct pinmux_ops starfive_pinmux_ops = { + .get_functions_count = pinmux_generic_get_function_count, + .get_function_name = pinmux_generic_get_function_name, + .get_function_groups = pinmux_generic_get_function_groups, + .set_mux = starfive_set_mux, + .strict = true, +}; + +static u16 starfive_padctl_get(struct starfive_pinctrl *sfp, + unsigned int pin) +{ + void __iomem *reg = sfp->padctl + 4 * (pin / 2); + int shift = 16 * (pin % 2); + + return readl_relaxed(reg) >> shift; +} + +static void starfive_padctl_rmw(struct starfive_pinctrl *sfp, + unsigned int pin, + u16 _mask, u16 _value) +{ + void __iomem *reg = sfp->padctl + 4 * (pin / 2); + int shift = 16 * (pin % 2); + u32 mask = (u32)_mask << shift; + u32 value = (u32)_value << shift; + unsigned long flags; + + dev_dbg(starfive_dev(sfp), + "padctl_rmw(%u, 0x%03x, 0x%03x)\n", pin, _mask, _value); + + raw_spin_lock_irqsave(&sfp->lock, flags); + value |= readl_relaxed(reg) & ~mask; + writel_relaxed(value, reg); + raw_spin_unlock_irqrestore(&sfp->lock, flags); +} + +#define PIN_CONFIG_STARFIVE_STRONG_PULL_UP (PIN_CONFIG_END + 1) + +static const struct pinconf_generic_params starfive_pinconf_custom_params[] = { + { "starfive,strong-pull-up", PIN_CONFIG_STARFIVE_STRONG_PULL_UP, 1 }, +}; + +#ifdef CONFIG_DEBUG_FS +static const struct pin_config_item starfive_pinconf_custom_conf_items[] = { + PCONFDUMP(PIN_CONFIG_STARFIVE_STRONG_PULL_UP, "input bias strong pull-up", NULL, false), +}; + +static_assert(ARRAY_SIZE(starfive_pinconf_custom_conf_items) == + ARRAY_SIZE(starfive_pinconf_custom_params)); +#else +#define starfive_pinconf_custom_conf_items NULL +#endif + +static int starfive_pinconf_get(struct pinctrl_dev *pctldev, + unsigned int pin, unsigned long *config) +{ + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); + u16 value = starfive_padctl_get(sfp, pin); + int param = pinconf_to_config_param(*config); + u32 arg; + bool enabled; + + switch (param) { + case PIN_CONFIG_BIAS_DISABLE: + enabled = value & PAD_BIAS_DISABLE; + arg = 0; + break; + case PIN_CONFIG_BIAS_PULL_DOWN: + enabled = value & PAD_BIAS_PULL_DOWN; + arg = 1; + break; + case PIN_CONFIG_BIAS_PULL_UP: + enabled = !(value & PAD_BIAS_MASK); + arg = 1; + break; + case PIN_CONFIG_DRIVE_STRENGTH: + enabled = value & PAD_DRIVE_STRENGTH_MASK; + arg = starfive_drive_strength_to_max_mA(value & PAD_DRIVE_STRENGTH_MASK); + break; + case PIN_CONFIG_INPUT_ENABLE: + enabled = value & PAD_INPUT_ENABLE; + arg = enabled; + break; + case PIN_CONFIG_INPUT_SCHMITT_ENABLE: + enabled = value & PAD_INPUT_SCHMITT_ENABLE; + arg = enabled; + break; + case PIN_CONFIG_SLEW_RATE: + enabled = value & PAD_SLEW_RATE_MASK; + arg = (value & PAD_SLEW_RATE_MASK) >> PAD_SLEW_RATE_POS; + break; + case PIN_CONFIG_STARFIVE_STRONG_PULL_UP: + enabled = value & PAD_BIAS_STRONG_PULL_UP; + arg = enabled; + break; + default: + return -ENOTSUPP; + } + + *config = pinconf_to_config_packed(param, arg); + return enabled ? 0 : -EINVAL; +} + +static int starfive_pinconf_group_get(struct pinctrl_dev *pctldev, + unsigned int gsel, unsigned long *config) +{ + const struct group_desc *group; + + group = pinctrl_generic_get_group(pctldev, gsel); + if (!group) + return -EINVAL; + + return starfive_pinconf_get(pctldev, group->pins[0], config); +} + +static int starfive_pinconf_group_set(struct pinctrl_dev *pctldev, + unsigned int gsel, + unsigned long *configs, + unsigned int num_configs) +{ + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); + const struct group_desc *group; + u16 mask, value; + int i; + + group = pinctrl_generic_get_group(pctldev, gsel); + if (!group) + return -EINVAL; + + mask = 0; + value = 0; + for (i = 0; i < num_configs; i++) { + int param = pinconf_to_config_param(configs[i]); + u32 arg = pinconf_to_config_argument(configs[i]); + + switch (param) { + case PIN_CONFIG_BIAS_DISABLE: + mask |= PAD_BIAS_MASK; + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_DISABLE; + break; + case PIN_CONFIG_BIAS_PULL_DOWN: + if (arg == 0) + return -ENOTSUPP; + mask |= PAD_BIAS_MASK; + value = (value & ~PAD_BIAS_MASK) | PAD_BIAS_PULL_DOWN; + break; + case PIN_CONFIG_BIAS_PULL_UP: + if (arg == 0) + return -ENOTSUPP; + mask |= PAD_BIAS_MASK; + value = value & ~PAD_BIAS_MASK; + break; + case PIN_CONFIG_DRIVE_STRENGTH: + mask |= PAD_DRIVE_STRENGTH_MASK; + value = (value & ~PAD_DRIVE_STRENGTH_MASK) | + starfive_drive_strength_from_max_mA(arg); + break; + case PIN_CONFIG_INPUT_ENABLE: + mask |= PAD_INPUT_ENABLE; + if (arg) + value |= PAD_INPUT_ENABLE; + else + value &= ~PAD_INPUT_ENABLE; + break; + case PIN_CONFIG_INPUT_SCHMITT_ENABLE: + mask |= PAD_INPUT_SCHMITT_ENABLE; + if (arg) + value |= PAD_INPUT_SCHMITT_ENABLE; + else + value &= ~PAD_INPUT_SCHMITT_ENABLE; + break; + case PIN_CONFIG_SLEW_RATE: + mask |= PAD_SLEW_RATE_MASK; + value = (value & ~PAD_SLEW_RATE_MASK) | + ((arg << PAD_SLEW_RATE_POS) & PAD_SLEW_RATE_MASK); + break; + case PIN_CONFIG_STARFIVE_STRONG_PULL_UP: + if (arg) { + mask |= PAD_BIAS_MASK; + value = (value & ~PAD_BIAS_MASK) | + PAD_BIAS_STRONG_PULL_UP; + } else { + mask |= PAD_BIAS_STRONG_PULL_UP; + value = value & ~PAD_BIAS_STRONG_PULL_UP; + } + break; + default: + return -ENOTSUPP; + } + } + + for (i = 0; i < group->num_pins; i++) + starfive_padctl_rmw(sfp, group->pins[i], mask, value); + + return 0; +} + +#ifdef CONFIG_DEBUG_FS +static void starfive_pinconf_dbg_show(struct pinctrl_dev *pctldev, + struct seq_file *s, unsigned int pin) +{ + struct starfive_pinctrl *sfp = pinctrl_dev_get_drvdata(pctldev); + u16 value = starfive_padctl_get(sfp, pin); + + seq_printf(s, " (0x%03x)", value); +} +#else +#define starfive_pinconf_dbg_show NULL +#endif + +static const struct pinconf_ops starfive_pinconf_ops = { + .pin_config_get = starfive_pinconf_get, + .pin_config_group_get = starfive_pinconf_group_get, + .pin_config_group_set = starfive_pinconf_group_set, + .pin_config_dbg_show = starfive_pinconf_dbg_show, + .is_generic = true, +}; + +static struct pinctrl_desc starfive_desc = { + .name = DRIVER_NAME, + .pins = starfive_pins, + .npins = ARRAY_SIZE(starfive_pins), + .pctlops = &starfive_pinctrl_ops, + .pmxops = &starfive_pinmux_ops, + .confops = &starfive_pinconf_ops, + .owner = THIS_MODULE, + .num_custom_params = ARRAY_SIZE(starfive_pinconf_custom_params), + .custom_params = starfive_pinconf_custom_params, + .custom_conf_items = starfive_pinconf_custom_conf_items, +}; + +static int starfive_gpio_request(struct gpio_chip *gc, unsigned int gpio) +{ + return pinctrl_gpio_request(gc->base + gpio); +} + +static void starfive_gpio_free(struct gpio_chip *gc, unsigned int gpio) +{ + pinctrl_gpio_free(gc->base + gpio); +} + +static int starfive_gpio_get_direction(struct gpio_chip *gc, unsigned int gpio) +{ + struct starfive_pinctrl *sfp = starfive_from_gc(gc); + + if (gpio >= NR_GPIOS) + return -EINVAL; + + /* return GPIO_LINE_DIRECTION_OUT (0) only if doen == GPO_ENABLE (0) */ + return readl_relaxed(sfp->base + GPON_DOEN_CFG + 8 * gpio) != GPO_ENABLE; +} + +static int starfive_gpio_direction_input(struct gpio_chip *gc, + unsigned int gpio) +{ + struct starfive_pinctrl *sfp = starfive_from_gc(gc); + void __iomem *doen; + unsigned long flags; + + if (gpio >= NR_GPIOS) + return -EINVAL; + + /* enable input and schmitt trigger */ + starfive_padctl_rmw(sfp, starfive_gpio_to_pin(sfp, gpio), + PAD_INPUT_ENABLE | PAD_INPUT_SCHMITT_ENABLE, + PAD_INPUT_ENABLE | PAD_INPUT_SCHMITT_ENABLE); + + doen = sfp->base + GPON_DOEN_CFG + 8 * gpio; + raw_spin_lock_irqsave(&sfp->lock, flags); + writel_relaxed(GPO_DISABLE, doen); + raw_spin_unlock_irqrestore(&sfp->lock, flags); + return 0; +} + +static int starfive_gpio_direction_output(struct gpio_chip *gc, + unsigned int gpio, int value) +{ + struct starfive_pinctrl *sfp = starfive_from_gc(gc); + void __iomem *dout; + void __iomem *doen; + unsigned long flags; + + if (gpio >= NR_GPIOS) + return -EINVAL; + + dout = sfp->base + GPON_DOUT_CFG + 8 * gpio; + doen = sfp->base + GPON_DOEN_CFG + 8 * gpio; + raw_spin_lock_irqsave(&sfp->lock, flags); + writel_relaxed(value, dout); + writel_relaxed(GPO_ENABLE, doen); + raw_spin_unlock_irqrestore(&sfp->lock, flags); + + /* disable input, schmitt trigger and bias */ + starfive_padctl_rmw(sfp, starfive_gpio_to_pin(sfp, gpio), + PAD_BIAS_MASK | PAD_INPUT_ENABLE | PAD_INPUT_SCHMITT_ENABLE, + PAD_BIAS_DISABLE); + + return 0; +} + +static int starfive_gpio_get(struct gpio_chip *gc, unsigned int gpio) +{ + struct starfive_pinctrl *sfp = starfive_from_gc(gc); + void __iomem *din; + + if (gpio >= NR_GPIOS) + return -EINVAL; + + din = sfp->base + GPIODIN + 4 * (gpio / 32); + return !!(readl_relaxed(din) & BIT(gpio % 32)); +} + +static void starfive_gpio_set(struct gpio_chip *gc, unsigned int gpio, + int value) +{ + struct starfive_pinctrl *sfp = starfive_from_gc(gc); + void __iomem *dout; + unsigned long flags; + + if (gpio >= NR_GPIOS) + return; + + dout = sfp->base + GPON_DOUT_CFG + 8 * gpio; + raw_spin_lock_irqsave(&sfp->lock, flags); + writel_relaxed(value, dout); + raw_spin_unlock_irqrestore(&sfp->lock, flags); +} + +static int starfive_gpio_set_config(struct gpio_chip *gc, unsigned int gpio, + unsigned long config) +{ + struct starfive_pinctrl *sfp = starfive_from_gc(gc); + u32 arg = pinconf_to_config_argument(config); + u16 mask; + u16 value; + + switch (pinconf_to_config_param(config)) { + case PIN_CONFIG_BIAS_DISABLE: + mask = PAD_BIAS_MASK; + value = PAD_BIAS_DISABLE; + break; + case PIN_CONFIG_BIAS_PULL_DOWN: + if (arg == 0) + return -ENOTSUPP; + mask = PAD_BIAS_MASK; + value = PAD_BIAS_PULL_DOWN; + break; + case PIN_CONFIG_BIAS_PULL_UP: + if (arg == 0) + return -ENOTSUPP; + mask = PAD_BIAS_MASK; + value = 0; + break; + case PIN_CONFIG_DRIVE_PUSH_PULL: + return 0; + case PIN_CONFIG_INPUT_ENABLE: + mask = PAD_INPUT_ENABLE; + value = arg ? PAD_INPUT_ENABLE : 0; + break; + case PIN_CONFIG_INPUT_SCHMITT_ENABLE: + mask = PAD_INPUT_SCHMITT_ENABLE; + value = arg ? PAD_INPUT_SCHMITT_ENABLE : 0; + break; + default: + return -ENOTSUPP; + }; + + starfive_padctl_rmw(sfp, starfive_gpio_to_pin(sfp, gpio), mask, value); + return 0; +} + +static int starfive_gpio_add_pin_ranges(struct gpio_chip *gc) +{ + struct starfive_pinctrl *sfp = starfive_from_gc(gc); + + sfp->gpios.name = sfp->gc.label; + sfp->gpios.base = sfp->gc.base; + /* + * sfp->gpios.pin_base depends on the chosen signal group + * and is set in starfive_probe() + */ + sfp->gpios.npins = NR_GPIOS; + sfp->gpios.gc = &sfp->gc; + pinctrl_add_gpio_range(sfp->pctl, &sfp->gpios); + return 0; +} + +static void starfive_irq_ack(struct irq_data *d) +{ + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); + irq_hw_number_t gpio = irqd_to_hwirq(d); + void __iomem *ic = sfp->base + GPIOIC + 4 * (gpio / 32); + u32 mask = BIT(gpio % 32); + unsigned long flags; + + raw_spin_lock_irqsave(&sfp->lock, flags); + writel_relaxed(mask, ic); + raw_spin_unlock_irqrestore(&sfp->lock, flags); +} + +static void starfive_irq_mask(struct irq_data *d) +{ + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); + irq_hw_number_t gpio = irqd_to_hwirq(d); + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); + u32 mask = BIT(gpio % 32); + unsigned long flags; + u32 value; + + raw_spin_lock_irqsave(&sfp->lock, flags); + value = readl_relaxed(ie) & ~mask; + writel_relaxed(value, ie); + raw_spin_unlock_irqrestore(&sfp->lock, flags); +} + +static void starfive_irq_mask_ack(struct irq_data *d) +{ + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); + irq_hw_number_t gpio = irqd_to_hwirq(d); + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); + void __iomem *ic = sfp->base + GPIOIC + 4 * (gpio / 32); + u32 mask = BIT(gpio % 32); + unsigned long flags; + u32 value; + + raw_spin_lock_irqsave(&sfp->lock, flags); + value = readl_relaxed(ie) & ~mask; + writel_relaxed(value, ie); + writel_relaxed(mask, ic); + raw_spin_unlock_irqrestore(&sfp->lock, flags); +} + +static void starfive_irq_unmask(struct irq_data *d) +{ + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); + irq_hw_number_t gpio = irqd_to_hwirq(d); + void __iomem *ie = sfp->base + GPIOIE + 4 * (gpio / 32); + u32 mask = BIT(gpio % 32); + unsigned long flags; + u32 value; + + raw_spin_lock_irqsave(&sfp->lock, flags); + value = readl_relaxed(ie) | mask; + writel_relaxed(value, ie); + raw_spin_unlock_irqrestore(&sfp->lock, flags); +} + +static int starfive_irq_set_type(struct irq_data *d, unsigned int trigger) +{ + struct starfive_pinctrl *sfp = starfive_from_irq_data(d); + irq_hw_number_t gpio = irqd_to_hwirq(d); + void __iomem *base = sfp->base + 4 * (gpio / 32); + u32 mask = BIT(gpio % 32); + u32 irq_type, edge_both, polarity; + irq_flow_handler_t handler; + unsigned long flags; + + switch (trigger) { + case IRQ_TYPE_EDGE_RISING: + irq_type = mask; /* 1: edge triggered */ + edge_both = 0; /* 0: single edge */ + polarity = mask; /* 1: rising edge */ + handler = handle_edge_irq; + break; + case IRQ_TYPE_EDGE_FALLING: + irq_type = mask; /* 1: edge triggered */ + edge_both = 0; /* 0: single edge */ + polarity = 0; /* 0: falling edge */ + handler = handle_edge_irq; + break; + case IRQ_TYPE_EDGE_BOTH: + irq_type = mask; /* 1: edge triggered */ + edge_both = mask; /* 1: both edges */ + polarity = 0; /* 0: ignored */ + handler = handle_edge_irq; + break; + case IRQ_TYPE_LEVEL_HIGH: + irq_type = 0; /* 0: level triggered */ + edge_both = 0; /* 0: ignored */ + polarity = mask; /* 1: high level */ + handler = handle_level_irq; + break; + case IRQ_TYPE_LEVEL_LOW: + irq_type = 0; /* 0: level triggered */ + edge_both = 0; /* 0: ignored */ + polarity = 0; /* 0: low level */ + handler = handle_level_irq; + break; + default: + irq_set_handler_locked(d, handle_bad_irq); + return -EINVAL; + } + + irq_set_handler_locked(d, handler); + + raw_spin_lock_irqsave(&sfp->lock, flags); + irq_type |= readl_relaxed(base + GPIOIS) & ~mask; + writel_relaxed(irq_type, base + GPIOIS); + edge_both |= readl_relaxed(base + GPIOIBE) & ~mask; + writel_relaxed(edge_both, base + GPIOIBE); + polarity |= readl_relaxed(base + GPIOIEV) & ~mask; + writel_relaxed(polarity, base + GPIOIEV); + raw_spin_unlock_irqrestore(&sfp->lock, flags); + return 0; +} + +static struct irq_chip starfive_irq_chip = { + .irq_ack = starfive_irq_ack, + .irq_mask = starfive_irq_mask, + .irq_mask_ack = starfive_irq_mask_ack, + .irq_unmask = starfive_irq_unmask, + .irq_set_type = starfive_irq_set_type, + .flags = IRQCHIP_SET_TYPE_MASKED, +}; + +static void starfive_gpio_irq_handler(struct irq_desc *desc) +{ + struct starfive_pinctrl *sfp = starfive_from_irq_desc(desc); + struct irq_chip *chip = irq_desc_get_chip(desc); + unsigned long mis; + unsigned int pin; + + chained_irq_enter(chip, desc); + + mis = readl_relaxed(sfp->base + GPIOMIS + 0); + for_each_set_bit(pin, &mis, 32) + generic_handle_domain_irq(sfp->gc.irq.domain, pin); + + mis = readl_relaxed(sfp->base + GPIOMIS + 4); + for_each_set_bit(pin, &mis, 32) + generic_handle_domain_irq(sfp->gc.irq.domain, pin + 32); + + chained_irq_exit(chip, desc); +} + +static int starfive_gpio_init_hw(struct gpio_chip *gc) +{ + struct starfive_pinctrl *sfp = starfive_from_gc(gc); + + /* mask all GPIO interrupts */ + writel(0, sfp->base + GPIOIE + 0); + writel(0, sfp->base + GPIOIE + 4); + /* clear edge interrupt flags */ + writel(~0U, sfp->base + GPIOIC + 0); + writel(~0U, sfp->base + GPIOIC + 4); + /* enable GPIO interrupts */ + writel(1, sfp->base + GPIOEN); + return 0; +} + +static void starfive_disable_clock(void *data) +{ + clk_disable_unprepare(data); +} + +static int starfive_probe(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + struct starfive_pinctrl *sfp; + struct clk *clk; + struct reset_control *rst; + u32 value; + int ret; + + sfp = devm_kzalloc(dev, sizeof(*sfp), GFP_KERNEL); + if (!sfp) + return -ENOMEM; + + sfp->base = devm_platform_ioremap_resource_byname(pdev, "gpio"); + if (IS_ERR(sfp->base)) + return PTR_ERR(sfp->base); + + sfp->padctl = devm_platform_ioremap_resource_byname(pdev, "padctl"); + if (IS_ERR(sfp->padctl)) + return PTR_ERR(sfp->padctl); + + clk = devm_clk_get(dev, NULL); + if (IS_ERR(clk)) { + ret = PTR_ERR(clk); + return dev_err_probe(dev, ret, "could not get clock: %d\n", ret); + } + + rst = devm_reset_control_get_exclusive(dev, NULL); + if (IS_ERR(rst)) { + ret = PTR_ERR(rst); + return dev_err_probe(dev, ret, "could not get reset: %d\n", ret); + } + + ret = clk_prepare_enable(clk); + if (ret) + return dev_err_probe(dev, ret, "could not enable clock: %d\n", ret); + + ret = devm_add_action_or_reset(dev, starfive_disable_clock, clk); + if (ret) + return ret; + + ret = reset_control_deassert(rst); + if (ret) + return dev_err_probe(dev, ret, "could not deassert reset: %d\n", ret); + + platform_set_drvdata(pdev, sfp); + sfp->gc.parent = dev; + raw_spin_lock_init(&sfp->lock); + + ret = devm_pinctrl_register_and_init(dev, &starfive_desc, sfp, &sfp->pctl); + if (ret) + return dev_err_probe(dev, ret, "could not register pinctrl driver: %d\n", ret); + + if (!device_property_read_u32(dev, "starfive,signal-group", &value)) { + if (value > 6) { + dev_err(dev, "invalid signal group %u\n", value); + return -EINVAL; + } + writel(value, sfp->padctl + IO_PADSHARE_SEL); + } + + value = readl(sfp->padctl + IO_PADSHARE_SEL); + switch (value) { + case 0: + sfp->gpios.pin_base = PAD_INVALID_GPIO; + goto done; + case 1: + sfp->gpios.pin_base = PAD_GPIO(0); + break; + case 2: + sfp->gpios.pin_base = PAD_FUNC_SHARE(72); + break; + case 3: + sfp->gpios.pin_base = PAD_FUNC_SHARE(70); + break; + case 4: case 5: case 6: + sfp->gpios.pin_base = PAD_FUNC_SHARE(0); + break; + default: + dev_err(dev, "invalid signal group %u\n", value); + return -EINVAL; + } + + sfp->gc.label = dev_name(dev); + sfp->gc.owner = THIS_MODULE; + sfp->gc.request = starfive_gpio_request; + sfp->gc.free = starfive_gpio_free; + sfp->gc.get_direction = starfive_gpio_get_direction; + sfp->gc.direction_input = starfive_gpio_direction_input; + sfp->gc.direction_output = starfive_gpio_direction_output; + sfp->gc.get = starfive_gpio_get; + sfp->gc.set = starfive_gpio_set; + sfp->gc.set_config = starfive_gpio_set_config; + sfp->gc.add_pin_ranges = starfive_gpio_add_pin_ranges; + sfp->gc.base = -1; + sfp->gc.ngpio = NR_GPIOS; + + starfive_irq_chip.parent_device = dev; + starfive_irq_chip.name = sfp->gc.label; + + sfp->gc.irq.chip = &starfive_irq_chip; + sfp->gc.irq.parent_handler = starfive_gpio_irq_handler; + sfp->gc.irq.num_parents = 1; + sfp->gc.irq.parents = devm_kcalloc(dev, sfp->gc.irq.num_parents, + sizeof(*sfp->gc.irq.parents), GFP_KERNEL); + if (!sfp->gc.irq.parents) + return -ENOMEM; + sfp->gc.irq.default_type = IRQ_TYPE_NONE; + sfp->gc.irq.handler = handle_bad_irq; + sfp->gc.irq.init_hw = starfive_gpio_init_hw; + + ret = platform_get_irq(pdev, 0); + if (ret < 0) + return ret; + sfp->gc.irq.parents[0] = ret; + + ret = devm_gpiochip_add_data(dev, &sfp->gc, sfp); + if (ret) { + dev_err(dev, "could not register gpiochip: %d\n", ret); + return ret; + } + +done: + return pinctrl_enable(sfp->pctl); +} + +static const struct of_device_id starfive_of_match[] = { + { .compatible = "starfive,jh7100-pinctrl" }, + { /* sentinel */ } +}; +MODULE_DEVICE_TABLE(of, starfive_of_match); + +static struct platform_driver starfive_pinctrl_driver = { + .probe = starfive_probe, + .driver = { + .name = DRIVER_NAME, + .of_match_table = starfive_of_match, + }, +}; +module_platform_driver(starfive_pinctrl_driver); + +MODULE_DESCRIPTION("Pinctrl driver for StarFive SoCs"); +MODULE_AUTHOR("Emil Renner Berthing <kernel@esmil.dk>"); +MODULE_LICENSE("GPL v2");