blob: 6167c8411678944ad359788eecacb8fa2184d021 [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
Sumit Garg60900b42022-08-04 19:57:17 +0530212static const struct dm_gpio_ops qcom_gpio_ops = {
213 .direction_input = qcom_gpio_direction_input,
214 .direction_output = qcom_gpio_direction_output,
215 .get_value = qcom_gpio_get_value,
216 .set_value = qcom_gpio_set_value,
217 .get_function = qcom_gpio_get_function,
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200218};
219
Sumit Garg60900b42022-08-04 19:57:17 +0530220static int qcom_gpio_probe(struct udevice *dev)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200221{
Sumit Garg60900b42022-08-04 19:57:17 +0530222 struct qcom_gpio_bank *priv = dev_get_priv(dev);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200223 int reg;
Caleb Connollyadd04362023-12-05 13:46:46 +0000224 u64 pid;
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200225
Caleb Connollyadd04362023-12-05 13:46:46 +0000226 pid = dev_read_addr(dev);
227 if (pid == FDT_ADDR_T_NONE)
Simon Glass95139972019-09-25 08:55:59 -0600228 return log_msg_ret("bad address", -EINVAL);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200229
Caleb Connollyadd04362023-12-05 13:46:46 +0000230 priv->pid = pid;
231
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200232 /* Do a sanity check */
233 reg = pmic_reg_read(dev->parent, priv->pid + REG_TYPE);
Sumit Garg35642572022-08-04 19:57:18 +0530234 if (reg != REG_TYPE_VAL)
Simon Glass95139972019-09-25 08:55:59 -0600235 return log_msg_ret("bad type", -ENXIO);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200236
237 reg = pmic_reg_read(dev->parent, priv->pid + REG_SUBTYPE);
Sumit Garg35642572022-08-04 19:57:18 +0530238 if (reg != REG_SUBTYPE_GPIO_4CH && reg != REG_SUBTYPE_GPIOC_4CH &&
239 reg != REG_SUBTYPE_GPIO_LV && reg != REG_SUBTYPE_GPIO_MV)
Simon Glass95139972019-09-25 08:55:59 -0600240 return log_msg_ret("bad subtype", -ENXIO);
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200241
Sumit Garg35642572022-08-04 19:57:18 +0530242 priv->lv_mv_type = reg == REG_SUBTYPE_GPIO_LV ||
243 reg == REG_SUBTYPE_GPIO_MV;
244
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200245 return 0;
246}
247
Caleb Connolly9482a9e2023-12-05 13:46:50 +0000248/*
249 * Parse basic GPIO count specified via the gpio-ranges property
250 * as specified in Linux devicetrees
251 * Returns < 0 on error, otherwise gpio count
252 */
253static int qcom_gpio_of_parse_ranges(struct udevice *dev)
254{
255 int ret;
256 struct ofnode_phandle_args args;
257
258 ret = ofnode_parse_phandle_with_args(dev_ofnode(dev), "gpio-ranges",
259 NULL, 3, 0, &args);
260 if (ret)
261 return log_msg_ret("gpio-ranges", ret);
262
263 return args.args[2];
264}
265
Sumit Garg60900b42022-08-04 19:57:17 +0530266static int qcom_gpio_of_to_plat(struct udevice *dev)
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200267{
268 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Caleb Connolly9482a9e2023-12-05 13:46:50 +0000269 int ret;
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200270
Caleb Connolly04a75f92023-12-05 13:46:52 +0000271 ret = qcom_gpio_of_parse_ranges(dev);
272 if (ret > 0)
273 uc_priv->gpio_count = ret;
274 else
275 return ret;
Caleb Connolly9482a9e2023-12-05 13:46:50 +0000276
277 uc_priv->bank_name = "pmic";
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200278
279 return 0;
280}
281
Sumit Garg60900b42022-08-04 19:57:17 +0530282static const struct udevice_id qcom_gpio_ids[] = {
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200283 { .compatible = "qcom,pm8916-gpio" },
Jorge Ramirez-Ortiz35561612018-01-10 11:33:51 +0100284 { .compatible = "qcom,pm8994-gpio" }, /* 22 GPIO's */
Dzmitry Sankouskie9be2042021-10-17 13:44:29 +0300285 { .compatible = "qcom,pm8998-gpio" },
Sumit Garg35642572022-08-04 19:57:18 +0530286 { .compatible = "qcom,pms405-gpio" },
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200287 { }
288};
289
Sumit Garg60900b42022-08-04 19:57:17 +0530290U_BOOT_DRIVER(qcom_pmic_gpio) = {
291 .name = "qcom_pmic_gpio",
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200292 .id = UCLASS_GPIO,
Sumit Garg60900b42022-08-04 19:57:17 +0530293 .of_match = qcom_gpio_ids,
294 .of_to_plat = qcom_gpio_of_to_plat,
295 .probe = qcom_gpio_probe,
296 .ops = &qcom_gpio_ops,
297 .priv_auto = sizeof(struct qcom_gpio_bank),
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200298};
299