blob: d80c6eda70e44ca198df25f72ff9716d2beb08a1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Felix Brack44d5c372017-03-22 11:26:44 +01002/*
3 * Copyright (C) EETS GmbH, 2017, Felix Brack <f.brack@eets.ch>
Felix Brack44d5c372017-03-22 11:26:44 +01004 */
5
6#include <common.h>
Simon Glass9d922452017-05-17 17:18:03 -06007#include <dm.h>
Felix Brack44d5c372017-03-22 11:26:44 +01008#include <dm/pinctrl.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +09009#include <linux/libfdt.h>
Felix Brack44d5c372017-03-22 11:26:44 +010010#include <asm/io.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14struct single_pdata {
15 fdt_addr_t base; /* first configuration register */
16 int offset; /* index of last configuration register */
17 u32 mask; /* configuration-value mask bits */
18 int width; /* configuration register bit width */
19};
20
21struct single_fdt_pin_cfg {
22 fdt32_t reg; /* configuration register offset */
23 fdt32_t val; /* configuration register value */
24};
25
26/**
27 * single_configure_pins() - Configure pins based on FDT data
28 *
29 * @dev: Pointer to single pin configuration device which is the parent of
30 * the pins node holding the pin configuration data.
31 * @pins: Pointer to the first element of an array of register/value pairs
32 * of type 'struct single_fdt_pin_cfg'. Each such pair describes the
33 * the pin to be configured and the value to be used for configuration.
34 * This pointer points to a 'pinctrl-single,pins' property in the
35 * device-tree.
36 * @size: Size of the 'pins' array in bytes.
37 * The number of register/value pairs in the 'pins' array therefore
38 * equals to 'size / sizeof(struct single_fdt_pin_cfg)'.
39 */
40static int single_configure_pins(struct udevice *dev,
41 const struct single_fdt_pin_cfg *pins,
42 int size)
43{
44 struct single_pdata *pdata = dev->platdata;
45 int count = size / sizeof(struct single_fdt_pin_cfg);
Lokesh Vutla5a07cf52018-08-16 18:41:49 +053046 phys_addr_t n, reg;
Felix Brack44d5c372017-03-22 11:26:44 +010047 u32 val;
48
James Balean46f51dc2017-04-18 21:06:35 -050049 for (n = 0; n < count; n++, pins++) {
Felix Brack44d5c372017-03-22 11:26:44 +010050 reg = fdt32_to_cpu(pins->reg);
51 if ((reg < 0) || (reg > pdata->offset)) {
Lokesh Vutla5a07cf52018-08-16 18:41:49 +053052 dev_dbg(dev, " invalid register offset 0x%pa\n", &reg);
Felix Brack44d5c372017-03-22 11:26:44 +010053 continue;
54 }
55 reg += pdata->base;
James Balean46f51dc2017-04-18 21:06:35 -050056 val = fdt32_to_cpu(pins->val) & pdata->mask;
Felix Brack44d5c372017-03-22 11:26:44 +010057 switch (pdata->width) {
James Balean46f51dc2017-04-18 21:06:35 -050058 case 16:
59 writew((readw(reg) & ~pdata->mask) | val, reg);
60 break;
Felix Brack44d5c372017-03-22 11:26:44 +010061 case 32:
James Balean46f51dc2017-04-18 21:06:35 -050062 writel((readl(reg) & ~pdata->mask) | val, reg);
Felix Brack44d5c372017-03-22 11:26:44 +010063 break;
64 default:
65 dev_warn(dev, "unsupported register width %i\n",
66 pdata->width);
James Balean46f51dc2017-04-18 21:06:35 -050067 continue;
Felix Brack44d5c372017-03-22 11:26:44 +010068 }
Lokesh Vutla5a07cf52018-08-16 18:41:49 +053069 dev_dbg(dev, " reg/val 0x%pa/0x%08x\n", &reg, val);
Felix Brack44d5c372017-03-22 11:26:44 +010070 }
71 return 0;
72}
73
74static int single_set_state(struct udevice *dev,
75 struct udevice *config)
76{
77 const void *fdt = gd->fdt_blob;
78 const struct single_fdt_pin_cfg *prop;
79 int len;
80
Simon Glassda409cc2017-05-17 17:18:09 -060081 prop = fdt_getprop(fdt, dev_of_offset(config), "pinctrl-single,pins",
82 &len);
Felix Brack44d5c372017-03-22 11:26:44 +010083 if (prop) {
84 dev_dbg(dev, "configuring pins for %s\n", config->name);
85 if (len % sizeof(struct single_fdt_pin_cfg)) {
86 dev_dbg(dev, " invalid pin configuration in fdt\n");
87 return -FDT_ERR_BADSTRUCTURE;
88 }
89 single_configure_pins(dev, prop, len);
90 len = 0;
91 }
92
93 return len;
94}
95
96static int single_ofdata_to_platdata(struct udevice *dev)
97{
98 fdt_addr_t addr;
99 u32 of_reg[2];
100 int res;
101 struct single_pdata *pdata = dev->platdata;
102
Simon Glassda409cc2017-05-17 17:18:09 -0600103 pdata->width = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
Felix Brack44d5c372017-03-22 11:26:44 +0100104 "pinctrl-single,register-width", 0);
105
Simon Glassda409cc2017-05-17 17:18:09 -0600106 res = fdtdec_get_int_array(gd->fdt_blob, dev_of_offset(dev),
Felix Brack44d5c372017-03-22 11:26:44 +0100107 "reg", of_reg, 2);
108 if (res)
109 return res;
110 pdata->offset = of_reg[1] - pdata->width / 8;
111
Simon Glassa821c4a2017-05-17 17:18:05 -0600112 addr = devfdt_get_addr(dev);
Felix Brack44d5c372017-03-22 11:26:44 +0100113 if (addr == FDT_ADDR_T_NONE) {
114 dev_dbg(dev, "no valid base register address\n");
115 return -EINVAL;
116 }
117 pdata->base = addr;
118
Simon Glassda409cc2017-05-17 17:18:09 -0600119 pdata->mask = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
Felix Brack44d5c372017-03-22 11:26:44 +0100120 "pinctrl-single,function-mask",
121 0xffffffff);
122 return 0;
123}
124
125const struct pinctrl_ops single_pinctrl_ops = {
126 .set_state = single_set_state,
127};
128
129static const struct udevice_id single_pinctrl_match[] = {
130 { .compatible = "pinctrl-single" },
131 { /* sentinel */ }
132};
133
134U_BOOT_DRIVER(single_pinctrl) = {
135 .name = "single-pinctrl",
136 .id = UCLASS_PINCTRL,
137 .of_match = single_pinctrl_match,
138 .ops = &single_pinctrl_ops,
139 .flags = DM_FLAG_PRE_RELOC,
140 .platdata_auto_alloc_size = sizeof(struct single_pdata),
141 .ofdata_to_platdata = single_ofdata_to_platdata,
142};