blob: a38d774ddc9643597bf6ceb87548d35ff380cd31 [file] [log] [blame]
Felix Brack44d5c372017-03-22 11:26:44 +01001/*
2 * Copyright (C) EETS GmbH, 2017, Felix Brack <f.brack@eets.ch>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Simon Glass9d922452017-05-17 17:18:03 -06008#include <dm.h>
Felix Brack44d5c372017-03-22 11:26:44 +01009#include <dm/pinctrl.h>
10#include <libfdt.h>
11#include <asm/io.h>
12
13DECLARE_GLOBAL_DATA_PTR;
14
15struct single_pdata {
16 fdt_addr_t base; /* first configuration register */
17 int offset; /* index of last configuration register */
18 u32 mask; /* configuration-value mask bits */
19 int width; /* configuration register bit width */
20};
21
22struct single_fdt_pin_cfg {
23 fdt32_t reg; /* configuration register offset */
24 fdt32_t val; /* configuration register value */
25};
26
27/**
28 * single_configure_pins() - Configure pins based on FDT data
29 *
30 * @dev: Pointer to single pin configuration device which is the parent of
31 * the pins node holding the pin configuration data.
32 * @pins: Pointer to the first element of an array of register/value pairs
33 * of type 'struct single_fdt_pin_cfg'. Each such pair describes the
34 * the pin to be configured and the value to be used for configuration.
35 * This pointer points to a 'pinctrl-single,pins' property in the
36 * device-tree.
37 * @size: Size of the 'pins' array in bytes.
38 * The number of register/value pairs in the 'pins' array therefore
39 * equals to 'size / sizeof(struct single_fdt_pin_cfg)'.
40 */
41static int single_configure_pins(struct udevice *dev,
42 const struct single_fdt_pin_cfg *pins,
43 int size)
44{
45 struct single_pdata *pdata = dev->platdata;
46 int count = size / sizeof(struct single_fdt_pin_cfg);
47 int n, reg;
48 u32 val;
49
James Balean46f51dc2017-04-18 21:06:35 -050050 for (n = 0; n < count; n++, pins++) {
Felix Brack44d5c372017-03-22 11:26:44 +010051 reg = fdt32_to_cpu(pins->reg);
52 if ((reg < 0) || (reg > pdata->offset)) {
53 dev_dbg(dev, " invalid register offset 0x%08x\n", reg);
Felix Brack44d5c372017-03-22 11:26:44 +010054 continue;
55 }
56 reg += pdata->base;
James Balean46f51dc2017-04-18 21:06:35 -050057 val = fdt32_to_cpu(pins->val) & pdata->mask;
Felix Brack44d5c372017-03-22 11:26:44 +010058 switch (pdata->width) {
James Balean46f51dc2017-04-18 21:06:35 -050059 case 16:
60 writew((readw(reg) & ~pdata->mask) | val, reg);
61 break;
Felix Brack44d5c372017-03-22 11:26:44 +010062 case 32:
James Balean46f51dc2017-04-18 21:06:35 -050063 writel((readl(reg) & ~pdata->mask) | val, reg);
Felix Brack44d5c372017-03-22 11:26:44 +010064 break;
65 default:
66 dev_warn(dev, "unsupported register width %i\n",
67 pdata->width);
James Balean46f51dc2017-04-18 21:06:35 -050068 continue;
Felix Brack44d5c372017-03-22 11:26:44 +010069 }
James Balean46f51dc2017-04-18 21:06:35 -050070 dev_dbg(dev, " reg/val 0x%08x/0x%08x\n",reg, val);
Felix Brack44d5c372017-03-22 11:26:44 +010071 }
72 return 0;
73}
74
75static int single_set_state(struct udevice *dev,
76 struct udevice *config)
77{
78 const void *fdt = gd->fdt_blob;
79 const struct single_fdt_pin_cfg *prop;
80 int len;
81
Simon Glassda409cc2017-05-17 17:18:09 -060082 prop = fdt_getprop(fdt, dev_of_offset(config), "pinctrl-single,pins",
83 &len);
Felix Brack44d5c372017-03-22 11:26:44 +010084 if (prop) {
85 dev_dbg(dev, "configuring pins for %s\n", config->name);
86 if (len % sizeof(struct single_fdt_pin_cfg)) {
87 dev_dbg(dev, " invalid pin configuration in fdt\n");
88 return -FDT_ERR_BADSTRUCTURE;
89 }
90 single_configure_pins(dev, prop, len);
91 len = 0;
92 }
93
94 return len;
95}
96
97static int single_ofdata_to_platdata(struct udevice *dev)
98{
99 fdt_addr_t addr;
100 u32 of_reg[2];
101 int res;
102 struct single_pdata *pdata = dev->platdata;
103
Simon Glassda409cc2017-05-17 17:18:09 -0600104 pdata->width = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
Felix Brack44d5c372017-03-22 11:26:44 +0100105 "pinctrl-single,register-width", 0);
106
Simon Glassda409cc2017-05-17 17:18:09 -0600107 res = fdtdec_get_int_array(gd->fdt_blob, dev_of_offset(dev),
Felix Brack44d5c372017-03-22 11:26:44 +0100108 "reg", of_reg, 2);
109 if (res)
110 return res;
111 pdata->offset = of_reg[1] - pdata->width / 8;
112
Simon Glassa821c4a2017-05-17 17:18:05 -0600113 addr = devfdt_get_addr(dev);
Felix Brack44d5c372017-03-22 11:26:44 +0100114 if (addr == FDT_ADDR_T_NONE) {
115 dev_dbg(dev, "no valid base register address\n");
116 return -EINVAL;
117 }
118 pdata->base = addr;
119
Simon Glassda409cc2017-05-17 17:18:09 -0600120 pdata->mask = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
Felix Brack44d5c372017-03-22 11:26:44 +0100121 "pinctrl-single,function-mask",
122 0xffffffff);
123 return 0;
124}
125
126const struct pinctrl_ops single_pinctrl_ops = {
127 .set_state = single_set_state,
128};
129
130static const struct udevice_id single_pinctrl_match[] = {
131 { .compatible = "pinctrl-single" },
132 { /* sentinel */ }
133};
134
135U_BOOT_DRIVER(single_pinctrl) = {
136 .name = "single-pinctrl",
137 .id = UCLASS_PINCTRL,
138 .of_match = single_pinctrl_match,
139 .ops = &single_pinctrl_ops,
140 .flags = DM_FLAG_PRE_RELOC,
141 .platdata_auto_alloc_size = sizeof(struct single_pdata),
142 .ofdata_to_platdata = single_ofdata_to_platdata,
143};