1 // SPDX-License-Identifier: (GPL-2.0 OR MIT)
3 * Microsemi SoCs serial gpio driver
5 * Author: <lars.povlsen@microchip.com>
7 * Copyright (c) 2018 Microsemi Corporation
17 #include <dm/device_compat.h>
18 #include <linux/bitops.h>
19 #include <linux/err.h>
21 #define MSCC_SGPIOS_PER_BANK 32
22 #define MSCC_SGPIO_BANK_DEPTH 4
33 struct mscc_sgpio_bf {
38 struct mscc_sgpio_props {
40 struct mscc_sgpio_bf auto_repeat;
41 struct mscc_sgpio_bf port_width;
42 struct mscc_sgpio_bf clk_freq;
43 struct mscc_sgpio_bf bit_source;
46 #define __M(bf) GENMASK((bf).end, (bf).beg)
47 #define __F(bf, x) (__M(bf) & ((x) << (bf).beg))
48 #define __X(bf, x) (((x) >> (bf).beg) & GENMASK(((bf).end - (bf).beg), 0))
50 #define MSCC_M_CFG_SIO_AUTO_REPEAT(p) BIT(p->props->auto_repeat.beg)
51 #define MSCC_F_CFG_SIO_PORT_WIDTH(p, x) __F(p->props->port_width, x)
52 #define MSCC_M_CFG_SIO_PORT_WIDTH(p) __M(p->props->port_width)
53 #define MSCC_F_CLOCK_SIO_CLK_FREQ(p, x) __F(p->props->clk_freq, x)
54 #define MSCC_M_CLOCK_SIO_CLK_FREQ(p) __M(p->props->clk_freq)
55 #define MSCC_F_PORT_CFG_BIT_SOURCE(p, x) __F(p->props->bit_source, x)
56 #define MSCC_X_PORT_CFG_BIT_SOURCE(p, x) __X(p->props->bit_source, x)
58 const struct mscc_sgpio_props props_luton = {
59 .regoff = { 0x00, 0x09, 0x29, 0x2a, 0x2b },
60 .auto_repeat = { 5, 5 },
61 .port_width = { 2, 3 },
62 .clk_freq = { 0, 11 },
63 .bit_source = { 0, 11 },
66 const struct mscc_sgpio_props props_ocelot = {
67 .regoff = { 0x00, 0x06, 0x26, 0x04, 0x05 },
68 .auto_repeat = { 10, 10 },
69 .port_width = { 7, 8 },
70 .clk_freq = { 8, 19 },
71 .bit_source = { 12, 23 },
74 struct mscc_sgpio_priv {
78 u32 mode[MSCC_SGPIOS_PER_BANK];
80 const struct mscc_sgpio_props *props;
83 static inline u32 sgpio_readl(struct mscc_sgpio_priv *priv, u32 rno, u32 off)
85 u32 __iomem *reg = &priv->regs[priv->props->regoff[rno] + off];
90 static inline void sgpio_writel(struct mscc_sgpio_priv *priv,
91 u32 val, u32 rno, u32 off)
93 u32 __iomem *reg = &priv->regs[priv->props->regoff[rno] + off];
98 static void sgpio_clrsetbits(struct mscc_sgpio_priv *priv,
99 u32 rno, u32 off, u32 clear, u32 set)
101 u32 __iomem *reg = &priv->regs[priv->props->regoff[rno] + off];
103 clrsetbits_le32(reg, clear, set);
106 static int mscc_sgpio_direction_input(struct udevice *dev, unsigned int gpio)
108 struct mscc_sgpio_priv *priv = dev_get_priv(dev);
110 u32 port = gpio % MSCC_SGPIOS_PER_BANK;
111 u32 bit = gpio / MSCC_SGPIOS_PER_BANK;
113 priv->mode[port] |= BIT(bit);
118 static int mscc_sgpio_direction_output(struct udevice *dev,
119 unsigned int gpio, int value)
121 struct mscc_sgpio_priv *priv = dev_get_priv(dev);
122 u32 port = gpio % MSCC_SGPIOS_PER_BANK;
123 u32 bit = gpio / MSCC_SGPIOS_PER_BANK;
124 u32 mask = 3 << (3 * bit);
126 debug("set: port %d, bit %d, mask 0x%08x, value %d\n",
127 port, bit, mask, value);
129 value = (value & 3) << (3 * bit);
130 sgpio_clrsetbits(priv, REG_PORT_CONFIG, port,
131 MSCC_F_PORT_CFG_BIT_SOURCE(priv, mask),
132 MSCC_F_PORT_CFG_BIT_SOURCE(priv, value));
133 clrbits_le32(&priv->mode[port], BIT(bit));
138 static int mscc_sgpio_get_function(struct udevice *dev, unsigned int gpio)
140 struct mscc_sgpio_priv *priv = dev_get_priv(dev);
141 u32 port = gpio % MSCC_SGPIOS_PER_BANK;
142 u32 bit = gpio / MSCC_SGPIOS_PER_BANK;
143 u32 val = priv->mode[port] & BIT(bit);
151 static int mscc_sgpio_set_value(struct udevice *dev,
152 unsigned int gpio, int value)
154 return mscc_sgpio_direction_output(dev, gpio, value);
157 static int mscc_sgpio_get_value(struct udevice *dev, unsigned int gpio)
159 struct mscc_sgpio_priv *priv = dev_get_priv(dev);
160 u32 port = gpio % MSCC_SGPIOS_PER_BANK;
161 u32 bit = gpio / MSCC_SGPIOS_PER_BANK;
164 if (mscc_sgpio_get_function(dev, gpio) == GPIOF_INPUT) {
165 ret = !!(sgpio_readl(priv, REG_INPUT_DATA, bit) & BIT(port));
167 u32 portval = sgpio_readl(priv, REG_PORT_CONFIG, port);
169 ret = MSCC_X_PORT_CFG_BIT_SOURCE(priv, portval);
170 ret = !!(ret & (3 << (3 * bit)));
173 debug("get: gpio %d, port %d, bit %d, value %d\n",
174 gpio, port, bit, ret);
178 static int mscc_sgpio_get_count(struct udevice *dev)
180 struct ofnode_phandle_args args;
181 int count = 0, i = 0, ret;
183 ret = dev_read_phandle_with_args(dev, "gpio-ranges", NULL, 3, i, &args);
184 while (ret != -ENOENT) {
185 count += args.args[2];
186 ret = dev_read_phandle_with_args(dev, "gpio-ranges", NULL, 3,
192 static int mscc_sgpio_probe(struct udevice *dev)
194 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
195 struct mscc_sgpio_priv *priv = dev_get_priv(dev);
196 int err, div_clock = 0, port;
200 err = clk_get_by_index(dev, 0, &clk);
202 err = clk_get_rate(&clk);
203 if (IS_ERR_VALUE(err)) {
204 dev_err(dev, "Invalid clk rate\n");
209 dev_err(dev, "Failed to get clock\n");
213 priv->props = (const struct mscc_sgpio_props *)dev_get_driver_data(dev);
214 priv->ports = dev_read_u32_default(dev, "mscc,sgpio-ports", 0xFFFFFFFF);
215 priv->clock = dev_read_u32_default(dev, "mscc,sgpio-frequency",
217 if (priv->clock <= 0 || priv->clock > div_clock) {
218 dev_err(dev, "Invalid frequency %d\n", priv->clock);
222 uc_priv->gpio_count = mscc_sgpio_get_count(dev);
223 uc_priv->gpio_count = dev_read_u32_default(dev, "ngpios",
224 uc_priv->gpio_count);
225 if (uc_priv->gpio_count < 1 || uc_priv->gpio_count >
226 (4 * MSCC_SGPIOS_PER_BANK)) {
227 dev_err(dev, "Invalid gpio count %d\n", uc_priv->gpio_count);
230 priv->bitcount = DIV_ROUND_UP(uc_priv->gpio_count,
231 MSCC_SGPIOS_PER_BANK);
232 debug("probe: gpios = %d, bit-count = %d\n",
233 uc_priv->gpio_count, priv->bitcount);
235 priv->regs = (u32 __iomem *)dev_read_addr(dev);
236 uc_priv->bank_name = "sgpio";
238 sgpio_clrsetbits(priv, REG_SIO_CONFIG, 0,
239 MSCC_M_CFG_SIO_PORT_WIDTH(priv),
240 MSCC_F_CFG_SIO_PORT_WIDTH(priv, priv->bitcount - 1) |
241 MSCC_M_CFG_SIO_AUTO_REPEAT(priv));
242 val = div_clock / priv->clock;
243 debug("probe: div-clock = %d KHz, freq = %d KHz, div = %d\n",
244 div_clock / 1000, priv->clock / 1000, val);
245 sgpio_clrsetbits(priv, REG_SIO_CLOCK, 0,
246 MSCC_M_CLOCK_SIO_CLK_FREQ(priv),
247 MSCC_F_CLOCK_SIO_CLK_FREQ(priv, val));
249 for (port = 0; port < 32; port++)
250 sgpio_writel(priv, 0, REG_PORT_CONFIG, port);
251 sgpio_writel(priv, priv->ports, REG_PORT_ENABLE, 0);
253 debug("probe: sgpio regs = %p\n", priv->regs);
258 static const struct dm_gpio_ops mscc_sgpio_ops = {
259 .direction_input = mscc_sgpio_direction_input,
260 .direction_output = mscc_sgpio_direction_output,
261 .get_function = mscc_sgpio_get_function,
262 .get_value = mscc_sgpio_get_value,
263 .set_value = mscc_sgpio_set_value,
266 static const struct udevice_id mscc_sgpio_ids[] = {
267 { .compatible = "mscc,luton-sgpio", .data = (ulong)&props_luton },
268 { .compatible = "mscc,ocelot-sgpio", .data = (ulong)&props_ocelot },
272 U_BOOT_DRIVER(gpio_mscc_sgpio) = {
273 .name = "mscc-sgpio",
275 .of_match = mscc_sgpio_ids,
276 .ops = &mscc_sgpio_ops,
277 .probe = mscc_sgpio_probe,
278 .priv_auto = sizeof(struct mscc_sgpio_priv),