blob: 2a4fef8d28cb9eed0560af7edc27a65bad96bdd4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Mateusz Kulikowski15a58532016-03-31 23:12:31 +02002/*
Sumit Garg60900b42022-08-04 19:57:17 +05303 * Qualcomm generic pmic gpio driver
Mateusz Kulikowski15a58532016-03-31 23:12:31 +02004 *
5 * (C) Copyright 2015 Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Mateusz Kulikowski15a58532016-03-31 23:12:31 +02006 */
7
8#include <common.h>
9#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060010#include <log.h>
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020011#include <power/pmic.h>
12#include <spmi/spmi.h>
13#include <asm/io.h>
14#include <asm/gpio.h>
15#include <linux/bitops.h>
16
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020017/* Register offset for each gpio */
18#define REG_OFFSET(x) ((x) * 0x100)
19
20/* Register maps */
21
Sumit Garg60900b42022-08-04 19:57:17 +053022/* Type and subtype are shared for all PMIC peripherals */
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020023#define REG_TYPE 0x4
24#define REG_SUBTYPE 0x5
25
Sumit Garg35642572022-08-04 19:57:18 +053026/* GPIO peripheral type and subtype out_values */
27#define REG_TYPE_VAL 0x10
28#define REG_SUBTYPE_GPIO_4CH 0x1
29#define REG_SUBTYPE_GPIOC_4CH 0x5
30#define REG_SUBTYPE_GPIO_8CH 0x9
31#define REG_SUBTYPE_GPIOC_8CH 0xd
32#define REG_SUBTYPE_GPIO_LV 0x10
33#define REG_SUBTYPE_GPIO_MV 0x11
34
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020035#define REG_STATUS 0x08
36#define REG_STATUS_VAL_MASK 0x1
37
38/* MODE_CTL */
Jorge Ramirez-Ortiz35561612018-01-10 11:33:51 +010039#define REG_CTL 0x40
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020040#define REG_CTL_MODE_MASK 0x70
41#define REG_CTL_MODE_INPUT 0x00
42#define REG_CTL_MODE_INOUT 0x20
43#define REG_CTL_MODE_OUTPUT 0x10
44#define REG_CTL_OUTPUT_MASK 0x0F
Sumit Garg35642572022-08-04 19:57:18 +053045#define REG_CTL_LV_MV_MODE_MASK 0x3
46#define REG_CTL_LV_MV_MODE_INPUT 0x0
47#define REG_CTL_LV_MV_MODE_INOUT 0x2
48#define REG_CTL_LV_MV_MODE_OUTPUT 0x1
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020049
50#define REG_DIG_VIN_CTL 0x41
51#define REG_DIG_VIN_VIN0 0
52
53#define REG_DIG_PULL_CTL 0x42
54#define REG_DIG_PULL_NO_PU 0x5
55
Sumit Garg35642572022-08-04 19:57:18 +053056#define REG_LV_MV_OUTPUT_CTL 0x44
57#define REG_LV_MV_OUTPUT_CTL_MASK 0x80
58#define REG_LV_MV_OUTPUT_CTL_SHIFT 7
59
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020060#define REG_DIG_OUT_CTL 0x45
61#define REG_DIG_OUT_CTL_CMOS (0x0 << 4)
62#define REG_DIG_OUT_CTL_DRIVE_L 0x1
63
64#define REG_EN_CTL 0x46
65#define REG_EN_CTL_ENABLE (1 << 7)
66
Sumit Garg60900b42022-08-04 19:57:17 +053067struct qcom_gpio_bank {
Tom Rini44d15c22016-04-12 15:11:23 -040068 uint32_t pid; /* Peripheral ID on SPMI bus */
Sumit Garg35642572022-08-04 19:57:18 +053069 bool lv_mv_type; /* If subtype is GPIO_LV(0x10) or GPIO_MV(0x11) */
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020070};
71
Sumit Garg60900b42022-08-04 19:57:17 +053072static int qcom_gpio_set_direction(struct udevice *dev, unsigned offset,
73 bool input, int value)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020074{
Sumit Garg60900b42022-08-04 19:57:17 +053075 struct qcom_gpio_bank *priv = dev_get_priv(dev);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020076 uint32_t gpio_base = priv->pid + REG_OFFSET(offset);
Sumit Garg35642572022-08-04 19:57:18 +053077 uint32_t reg_ctl_val;
Mateusz Kulikowski15a58532016-03-31 23:12:31 +020078 int ret;
79
80 /* Disable the GPIO */
81 ret = pmic_clrsetbits(dev->parent, gpio_base + REG_EN_CTL,
82 REG_EN_CTL_ENABLE, 0);
83 if (ret < 0)
84 return ret;
85
Sumit Garg35642572022-08-04 19:57:18 +053086 /* Select the mode and output */
87 if (priv->lv_mv_type) {
88 if (input)
89 reg_ctl_val = REG_CTL_LV_MV_MODE_INPUT;
90 else
91 reg_ctl_val = REG_CTL_LV_MV_MODE_INOUT;
92 } else {
93 if (input)
94 reg_ctl_val = REG_CTL_MODE_INPUT;
95 else
96 reg_ctl_val = REG_CTL_MODE_INOUT | !!value;
97 }
98
99 ret = pmic_reg_write(dev->parent, gpio_base + REG_CTL, reg_ctl_val);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200100 if (ret < 0)
101 return ret;
102
Sumit Garg35642572022-08-04 19:57:18 +0530103 if (priv->lv_mv_type && !input) {
104 ret = pmic_reg_write(dev->parent,
105 gpio_base + REG_LV_MV_OUTPUT_CTL,
106 !!value << REG_LV_MV_OUTPUT_CTL_SHIFT);
107 if (ret < 0)
108 return ret;
109 }
110
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200111 /* Set the right pull (no pull) */
112 ret = pmic_reg_write(dev->parent, gpio_base + REG_DIG_PULL_CTL,
113 REG_DIG_PULL_NO_PU);
114 if (ret < 0)
115 return ret;
116
117 /* Configure output pin drivers if needed */
118 if (!input) {
119 /* Select the VIN - VIN0, pin is input so it doesn't matter */
120 ret = pmic_reg_write(dev->parent, gpio_base + REG_DIG_VIN_CTL,
121 REG_DIG_VIN_VIN0);
122 if (ret < 0)
123 return ret;
124
125 /* Set the right dig out control */
126 ret = pmic_reg_write(dev->parent, gpio_base + REG_DIG_OUT_CTL,
127 REG_DIG_OUT_CTL_CMOS |
128 REG_DIG_OUT_CTL_DRIVE_L);
129 if (ret < 0)
130 return ret;
131 }
132
133 /* Enable the GPIO */
134 return pmic_clrsetbits(dev->parent, gpio_base + REG_EN_CTL, 0,
135 REG_EN_CTL_ENABLE);
136}
137
Sumit Garg60900b42022-08-04 19:57:17 +0530138static int qcom_gpio_direction_input(struct udevice *dev, unsigned offset)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200139{
Sumit Garg60900b42022-08-04 19:57:17 +0530140 return qcom_gpio_set_direction(dev, offset, true, 0);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200141}
142
Sumit Garg60900b42022-08-04 19:57:17 +0530143static int qcom_gpio_direction_output(struct udevice *dev, unsigned offset,
144 int value)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200145{
Sumit Garg60900b42022-08-04 19:57:17 +0530146 return qcom_gpio_set_direction(dev, offset, false, value);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200147}
148
Sumit Garg60900b42022-08-04 19:57:17 +0530149static int qcom_gpio_get_function(struct udevice *dev, unsigned offset)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200150{
Sumit Garg60900b42022-08-04 19:57:17 +0530151 struct qcom_gpio_bank *priv = dev_get_priv(dev);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200152 uint32_t gpio_base = priv->pid + REG_OFFSET(offset);
153 int reg;
154
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200155 reg = pmic_reg_read(dev->parent, gpio_base + REG_CTL);
156 if (reg < 0)
157 return reg;
158
Sumit Garg35642572022-08-04 19:57:18 +0530159 if (priv->lv_mv_type) {
160 switch (reg & REG_CTL_LV_MV_MODE_MASK) {
161 case REG_CTL_LV_MV_MODE_INPUT:
162 return GPIOF_INPUT;
163 case REG_CTL_LV_MV_MODE_INOUT: /* Fallthrough */
164 case REG_CTL_LV_MV_MODE_OUTPUT:
165 return GPIOF_OUTPUT;
166 default:
167 return GPIOF_UNKNOWN;
168 }
169 } else {
170 switch (reg & REG_CTL_MODE_MASK) {
171 case REG_CTL_MODE_INPUT:
172 return GPIOF_INPUT;
173 case REG_CTL_MODE_INOUT: /* Fallthrough */
174 case REG_CTL_MODE_OUTPUT:
175 return GPIOF_OUTPUT;
176 default:
177 return GPIOF_UNKNOWN;
178 }
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200179 }
180}
181
Sumit Garg60900b42022-08-04 19:57:17 +0530182static int qcom_gpio_get_value(struct udevice *dev, unsigned offset)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200183{
Sumit Garg60900b42022-08-04 19:57:17 +0530184 struct qcom_gpio_bank *priv = dev_get_priv(dev);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200185 uint32_t gpio_base = priv->pid + REG_OFFSET(offset);
186 int reg;
187
188 reg = pmic_reg_read(dev->parent, gpio_base + REG_STATUS);
189 if (reg < 0)
190 return reg;
191
192 return !!(reg & REG_STATUS_VAL_MASK);
193}
194
Sumit Garg60900b42022-08-04 19:57:17 +0530195static int qcom_gpio_set_value(struct udevice *dev, unsigned offset,
196 int value)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200197{
Sumit Garg60900b42022-08-04 19:57:17 +0530198 struct qcom_gpio_bank *priv = dev_get_priv(dev);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200199 uint32_t gpio_base = priv->pid + REG_OFFSET(offset);
200
201 /* Set the output value of the gpio */
Sumit Garg35642572022-08-04 19:57:18 +0530202 if (priv->lv_mv_type)
203 return pmic_clrsetbits(dev->parent,
204 gpio_base + REG_LV_MV_OUTPUT_CTL,
205 REG_LV_MV_OUTPUT_CTL_MASK,
206 !!value << REG_LV_MV_OUTPUT_CTL_SHIFT);
207 else
208 return pmic_clrsetbits(dev->parent, gpio_base + REG_CTL,
209 REG_CTL_OUTPUT_MASK, !!value);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200210}
211
Caleb Connolly9bd70792024-02-26 17:26:13 +0000212static int qcom_gpio_xlate(struct udevice *dev, struct gpio_desc *desc,
213 struct ofnode_phandle_args *args)
214{
215 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
216
217 if (args->args_count < 1)
218 return -EINVAL;
219
220 /* GPIOs in DT are 1-based */
221 desc->offset = args->args[0] - 1;
222 if (desc->offset >= uc_priv->gpio_count)
223 return -EINVAL;
224
225 if (args->args_count < 2)
226 return 0;
227
228 desc->flags = gpio_flags_xlate(args->args[1]);
229
230 return 0;
231}
232
Sumit Garg60900b42022-08-04 19:57:17 +0530233static const struct dm_gpio_ops qcom_gpio_ops = {
234 .direction_input = qcom_gpio_direction_input,
235 .direction_output = qcom_gpio_direction_output,
236 .get_value = qcom_gpio_get_value,
237 .set_value = qcom_gpio_set_value,
238 .get_function = qcom_gpio_get_function,
Caleb Connolly9bd70792024-02-26 17:26:13 +0000239 .xlate = qcom_gpio_xlate,
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200240};
241
Sumit Garg60900b42022-08-04 19:57:17 +0530242static int qcom_gpio_probe(struct udevice *dev)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200243{
Sumit Garg60900b42022-08-04 19:57:17 +0530244 struct qcom_gpio_bank *priv = dev_get_priv(dev);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200245 int reg;
Caleb Connollyadd04362023-12-05 13:46:46 +0000246 u64 pid;
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200247
Caleb Connollyadd04362023-12-05 13:46:46 +0000248 pid = dev_read_addr(dev);
249 if (pid == FDT_ADDR_T_NONE)
Simon Glass95139972019-09-25 08:55:59 -0600250 return log_msg_ret("bad address", -EINVAL);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200251
Caleb Connollyadd04362023-12-05 13:46:46 +0000252 priv->pid = pid;
253
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200254 /* Do a sanity check */
255 reg = pmic_reg_read(dev->parent, priv->pid + REG_TYPE);
Sumit Garg35642572022-08-04 19:57:18 +0530256 if (reg != REG_TYPE_VAL)
Simon Glass95139972019-09-25 08:55:59 -0600257 return log_msg_ret("bad type", -ENXIO);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200258
259 reg = pmic_reg_read(dev->parent, priv->pid + REG_SUBTYPE);
Sumit Garg35642572022-08-04 19:57:18 +0530260 if (reg != REG_SUBTYPE_GPIO_4CH && reg != REG_SUBTYPE_GPIOC_4CH &&
261 reg != REG_SUBTYPE_GPIO_LV && reg != REG_SUBTYPE_GPIO_MV)
Simon Glass95139972019-09-25 08:55:59 -0600262 return log_msg_ret("bad subtype", -ENXIO);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200263
Sumit Garg35642572022-08-04 19:57:18 +0530264 priv->lv_mv_type = reg == REG_SUBTYPE_GPIO_LV ||
265 reg == REG_SUBTYPE_GPIO_MV;
266
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200267 return 0;
268}
269
Caleb Connolly9482a9e2023-12-05 13:46:50 +0000270/*
271 * Parse basic GPIO count specified via the gpio-ranges property
272 * as specified in Linux devicetrees
273 * Returns < 0 on error, otherwise gpio count
274 */
275static int qcom_gpio_of_parse_ranges(struct udevice *dev)
276{
277 int ret;
278 struct ofnode_phandle_args args;
279
280 ret = ofnode_parse_phandle_with_args(dev_ofnode(dev), "gpio-ranges",
281 NULL, 3, 0, &args);
282 if (ret)
283 return log_msg_ret("gpio-ranges", ret);
284
285 return args.args[2];
286}
287
Sumit Garg60900b42022-08-04 19:57:17 +0530288static int qcom_gpio_of_to_plat(struct udevice *dev)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200289{
290 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Caleb Connolly9482a9e2023-12-05 13:46:50 +0000291 int ret;
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200292
Caleb Connolly04a75f92023-12-05 13:46:52 +0000293 ret = qcom_gpio_of_parse_ranges(dev);
294 if (ret > 0)
295 uc_priv->gpio_count = ret;
296 else
297 return ret;
Caleb Connolly9482a9e2023-12-05 13:46:50 +0000298
299 uc_priv->bank_name = "pmic";
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200300
301 return 0;
302}
303
Sumit Garg60900b42022-08-04 19:57:17 +0530304static const struct udevice_id qcom_gpio_ids[] = {
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200305 { .compatible = "qcom,pm8916-gpio" },
Jorge Ramirez-Ortiz35561612018-01-10 11:33:51 +0100306 { .compatible = "qcom,pm8994-gpio" }, /* 22 GPIO's */
Dzmitry Sankouskie9be2042021-10-17 13:44:29 +0300307 { .compatible = "qcom,pm8998-gpio" },
Sumit Garg35642572022-08-04 19:57:18 +0530308 { .compatible = "qcom,pms405-gpio" },
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200309 { }
310};
311
Sumit Garg60900b42022-08-04 19:57:17 +0530312U_BOOT_DRIVER(qcom_pmic_gpio) = {
313 .name = "qcom_pmic_gpio",
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200314 .id = UCLASS_GPIO,
Sumit Garg60900b42022-08-04 19:57:17 +0530315 .of_match = qcom_gpio_ids,
316 .of_to_plat = qcom_gpio_of_to_plat,
317 .probe = qcom_gpio_probe,
318 .ops = &qcom_gpio_ops,
319 .priv_auto = sizeof(struct qcom_gpio_bank),
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200320};
321