blob: 734b31d3dc17621fc7a5a6c6f815413c09183be1 [file] [log] [blame]
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +03001/*
2 * Synopsys HSDK SDP Generic PLL clock driver
3 *
4 * Copyright (C) 2017 Synopsys
5 * Author: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
6 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030013#include <asm-generic/gpio.h>
14#include <asm/io.h>
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030015#include <dm.h>
16#include <errno.h>
Simon Glasscd93d622020-05-10 11:40:13 -060017#include <linux/bitops.h>
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030018#include <linux/printk.h>
19
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030020#define DRV_NAME "gpio_creg"
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030021
22struct hsdk_creg_gpio {
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030023 u32 *regs;
24 u8 shift;
25 u8 activate;
26 u8 deactivate;
27 u8 bit_per_gpio;
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030028};
29
30static int hsdk_creg_gpio_set_value(struct udevice *dev, unsigned oft, int val)
31{
32 struct hsdk_creg_gpio *hcg = dev_get_priv(dev);
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030033 u8 reg_shift = oft * hcg->bit_per_gpio + hcg->shift;
34 u32 reg = readl(hcg->regs);
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030035
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030036 reg &= ~(GENMASK(hcg->bit_per_gpio - 1, 0) << reg_shift);
37 reg |= ((val ? hcg->deactivate : hcg->activate) << reg_shift);
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030038
39 writel(reg, hcg->regs);
40
41 return 0;
42}
43
44static int hsdk_creg_gpio_direction_output(struct udevice *dev, unsigned oft,
45 int val)
46{
47 hsdk_creg_gpio_set_value(dev, oft, val);
48
49 return 0;
50}
51
52static int hsdk_creg_gpio_direction_input(struct udevice *dev, unsigned oft)
53{
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030054 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
55
56 pr_err("%s can't be used as input!\n", uc_priv->bank_name);
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030057
58 return -ENOTSUPP;
59}
60
61static int hsdk_creg_gpio_get_value(struct udevice *dev, unsigned int oft)
62{
63 struct hsdk_creg_gpio *hcg = dev_get_priv(dev);
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030064 u32 val = readl(hcg->regs);
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030065
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030066 val >>= oft * hcg->bit_per_gpio + hcg->shift;
67 val &= GENMASK(hcg->bit_per_gpio - 1, 0);
68 return (val == hcg->deactivate) ? 1 : 0;
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030069}
70
71static const struct dm_gpio_ops hsdk_creg_gpio_ops = {
72 .direction_output = hsdk_creg_gpio_direction_output,
73 .direction_input = hsdk_creg_gpio_direction_input,
74 .set_value = hsdk_creg_gpio_set_value,
75 .get_value = hsdk_creg_gpio_get_value,
76};
77
78static int hsdk_creg_gpio_probe(struct udevice *dev)
79{
80 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
81 struct hsdk_creg_gpio *hcg = dev_get_priv(dev);
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030082 u32 shift, bit_per_gpio, activate, deactivate, gpio_count;
83 const u8 *defaults;
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030084
Masahiro Yamada702e57e2020-08-04 14:14:43 +090085 hcg->regs = dev_read_addr_ptr(dev);
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030086 gpio_count = dev_read_u32_default(dev, "gpio-count", 1);
87 shift = dev_read_u32_default(dev, "gpio-first-shift", 0);
88 bit_per_gpio = dev_read_u32_default(dev, "gpio-bit-per-line", 1);
89 activate = dev_read_u32_default(dev, "gpio-activate-val", 1);
90 deactivate = dev_read_u32_default(dev, "gpio-deactivate-val", 0);
91 defaults = dev_read_u8_array_ptr(dev, "gpio-default-val", gpio_count);
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +030092
93 uc_priv->bank_name = dev_read_string(dev, "gpio-bank-name");
94 if (!uc_priv->bank_name)
95 uc_priv->bank_name = dev_read_name(dev);
96
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +030097 if (!bit_per_gpio) {
98 pr_err("%s: 'gpio-bit-per-line' can't be 0\n",
99 uc_priv->bank_name);
100
101 return -EINVAL;
102 }
103
104 if (!gpio_count) {
105 pr_err("%s: 'gpio-count' can't be 0\n",
106 uc_priv->bank_name);
107
108 return -EINVAL;
109 }
110
111 if ((gpio_count * bit_per_gpio + shift) > 32) {
112 pr_err("%s: u32 io register overflow: try to use %u bits\n",
113 uc_priv->bank_name, gpio_count * bit_per_gpio + shift);
114
115 return -EINVAL;
116 }
117
118 if (GENMASK(31, bit_per_gpio) & activate) {
119 pr_err("%s: 'gpio-activate-val' can't be more than %lu\n",
120 uc_priv->bank_name, GENMASK(bit_per_gpio - 1, 0));
121
122 return -EINVAL;
123 }
124
125 if (GENMASK(31, bit_per_gpio) & deactivate) {
126 pr_err("%s: 'gpio-deactivate-val' can't be more than %lu\n",
127 uc_priv->bank_name, GENMASK(bit_per_gpio - 1, 0));
128
129 return -EINVAL;
130 }
131
132 if (activate == deactivate) {
133 pr_err("%s: 'gpio-deactivate-val' and 'gpio-activate-val' can't be equal\n",
134 uc_priv->bank_name);
135
136 return -EINVAL;
137 }
138
139 hcg->shift = (u8)shift;
140 hcg->bit_per_gpio = (u8)bit_per_gpio;
141 hcg->activate = (u8)activate;
142 hcg->deactivate = (u8)deactivate;
143 uc_priv->gpio_count = gpio_count;
144
145 /* Setup default GPIO value if we have "gpio-default-val" array */
146 if (defaults)
147 for (u8 i = 0; i < gpio_count; i++)
148 hsdk_creg_gpio_set_value(dev, i, defaults[i]);
149
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +0300150 pr_debug("%s GPIO [0x%p] controller with %d gpios probed\n",
151 uc_priv->bank_name, hcg->regs, uc_priv->gpio_count);
152
153 return 0;
154}
155
156static const struct udevice_id hsdk_creg_gpio_ids[] = {
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +0300157 { .compatible = "snps,creg-gpio" },
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +0300158 { }
159};
160
161U_BOOT_DRIVER(gpio_hsdk_creg) = {
Eugeniy Paltsevfe3eb7a2018-06-08 17:58:23 +0300162 .name = DRV_NAME,
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +0300163 .id = UCLASS_GPIO,
164 .ops = &hsdk_creg_gpio_ops,
165 .probe = hsdk_creg_gpio_probe,
166 .of_match = hsdk_creg_gpio_ids,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700167 .plat_auto = sizeof(struct hsdk_creg_gpio),
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +0300168};