blob: e16c2f31d9d2a5895ddd854e03805e5e40752c3a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass9c35f0e2011-10-07 13:53:50 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Joe Hershberger334b2322011-11-11 15:55:35 -06004 * Copyright (c) 2011, NVIDIA Corp. All rights reserved.
Simon Glass9c35f0e2011-10-07 13:53:50 +00005 */
6
Joe Hershberger334b2322011-11-11 15:55:35 -06007#ifndef _ASM_GENERIC_GPIO_H_
8#define _ASM_GENERIC_GPIO_H_
9
Simon Glass1d9af1f2017-05-30 21:47:09 -060010#include <dm/ofnode.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060011#include <linux/bitops.h>
Simon Glass1d9af1f2017-05-30 21:47:09 -060012
Simon Glass12faa022017-05-18 20:09:18 -060013struct ofnode_phandle_args;
14
Simon Glass9c35f0e2011-10-07 13:53:50 +000015/*
16 * Generic GPIO API for U-Boot
17 *
Simon Glassaf0bb3e2015-01-05 20:05:30 -070018 * --
19 * NB: This is deprecated. Please use the driver model functions instead:
20 *
21 * - gpio_request_by_name()
22 * - dm_gpio_get_value() etc.
23 *
24 * For now we need a dm_ prefix on some functions to avoid name collision.
25 * --
26 *
Simon Glass9c35f0e2011-10-07 13:53:50 +000027 * GPIOs are numbered from 0 to GPIO_COUNT-1 which value is defined
28 * by the SOC/architecture.
29 *
30 * Each GPIO can be an input or output. If an input then its value can
31 * be read as 0 or 1. If an output then its value can be set to 0 or 1.
32 * If you try to write an input then the value is undefined. If you try
33 * to read an output, barring something very unusual, you will get
34 * back the value of the output that you previously set.
35 *
36 * In some cases the operation may fail, for example if the GPIO number
37 * is out of range, or the GPIO is not available because its pin is
38 * being used by another function. In that case, functions may return
39 * an error value of -1.
40 */
Joe Hershberger334b2322011-11-11 15:55:35 -060041
42/**
Simon Glassaf0bb3e2015-01-05 20:05:30 -070043 * @deprecated Please use driver model instead
Marcel Ziswiler8a523c52014-10-10 17:31:41 +020044 * Request a GPIO. This should be called before any of the other functions
45 * are used on this GPIO.
Joe Hershberger334b2322011-11-11 15:55:35 -060046 *
Simon Glass0f4517d2014-10-04 11:29:42 -060047 * Note: With driver model, the label is allocated so there is no need for
48 * the caller to preserve it.
49 *
Masahiro Yamada2fc683d2015-05-29 21:57:33 +090050 * @param gpio GPIO number
Nikita Kiryanovd9a67172012-11-26 23:06:32 +000051 * @param label User label for this GPIO
Joe Hershberger334b2322011-11-11 15:55:35 -060052 * @return 0 if ok, -1 on error
53 */
54int gpio_request(unsigned gpio, const char *label);
Simon Glass9c35f0e2011-10-07 13:53:50 +000055
56/**
Simon Glassaf0bb3e2015-01-05 20:05:30 -070057 * @deprecated Please use driver model instead
Joe Hershberger334b2322011-11-11 15:55:35 -060058 * Stop using the GPIO. This function should not alter pin configuration.
59 *
60 * @param gpio GPIO number
61 * @return 0 if ok, -1 on error
62 */
63int gpio_free(unsigned gpio);
64
65/**
Simon Glassaf0bb3e2015-01-05 20:05:30 -070066 * @deprecated Please use driver model instead
Simon Glass9c35f0e2011-10-07 13:53:50 +000067 * Make a GPIO an input.
68 *
Joe Hershberger334b2322011-11-11 15:55:35 -060069 * @param gpio GPIO number
Simon Glass9c35f0e2011-10-07 13:53:50 +000070 * @return 0 if ok, -1 on error
71 */
Joe Hershberger334b2322011-11-11 15:55:35 -060072int gpio_direction_input(unsigned gpio);
Simon Glass9c35f0e2011-10-07 13:53:50 +000073
74/**
Simon Glassaf0bb3e2015-01-05 20:05:30 -070075 * @deprecated Please use driver model instead
Simon Glass9c35f0e2011-10-07 13:53:50 +000076 * Make a GPIO an output, and set its value.
77 *
Joe Hershberger334b2322011-11-11 15:55:35 -060078 * @param gpio GPIO number
Simon Glass9c35f0e2011-10-07 13:53:50 +000079 * @param value GPIO value (0 for low or 1 for high)
80 * @return 0 if ok, -1 on error
81 */
Joe Hershberger334b2322011-11-11 15:55:35 -060082int gpio_direction_output(unsigned gpio, int value);
Simon Glass9c35f0e2011-10-07 13:53:50 +000083
84/**
Simon Glassaf0bb3e2015-01-05 20:05:30 -070085 * @deprecated Please use driver model instead
Simon Glass9c35f0e2011-10-07 13:53:50 +000086 * Get a GPIO's value. This will work whether the GPIO is an input
87 * or an output.
88 *
Joe Hershberger334b2322011-11-11 15:55:35 -060089 * @param gpio GPIO number
Simon Glass9c35f0e2011-10-07 13:53:50 +000090 * @return 0 if low, 1 if high, -1 on error
91 */
Joe Hershberger334b2322011-11-11 15:55:35 -060092int gpio_get_value(unsigned gpio);
Simon Glass9c35f0e2011-10-07 13:53:50 +000093
94/**
Simon Glassaf0bb3e2015-01-05 20:05:30 -070095 * @deprecated Please use driver model instead
Joe Hershberger334b2322011-11-11 15:55:35 -060096 * Set an output GPIO's value. The GPIO must already be an output or
Simon Glass9c35f0e2011-10-07 13:53:50 +000097 * this function may have no effect.
98 *
Joe Hershberger334b2322011-11-11 15:55:35 -060099 * @param gpio GPIO number
Simon Glass9c35f0e2011-10-07 13:53:50 +0000100 * @param value GPIO value (0 for low or 1 for high)
101 * @return 0 if ok, -1 on error
102 */
Joe Hershberger334b2322011-11-11 15:55:35 -0600103int gpio_set_value(unsigned gpio, int value);
Simon Glasse821d182014-02-26 15:59:24 -0700104
Simon Glass2d6b9232014-08-11 09:23:52 -0600105/* State of a GPIO, as reported by get_function() */
Simon Glass6e5e6dd2014-10-04 11:29:43 -0600106enum gpio_func_t {
Simon Glasse821d182014-02-26 15:59:24 -0700107 GPIOF_INPUT = 0,
108 GPIOF_OUTPUT,
Simon Glass2d6b9232014-08-11 09:23:52 -0600109 GPIOF_UNUSED, /* Not claimed */
110 GPIOF_UNKNOWN, /* Not known */
111 GPIOF_FUNC, /* Not used as a GPIO */
112
113 GPIOF_COUNT,
Simon Glasse821d182014-02-26 15:59:24 -0700114};
115
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200116struct udevice;
Simon Glasse821d182014-02-26 15:59:24 -0700117
Simon Glassce555292015-01-05 20:05:27 -0700118struct gpio_desc {
119 struct udevice *dev; /* Device, NULL for invalid GPIO */
120 unsigned long flags;
Patrick Delaunay34c6f1a2020-01-13 11:34:59 +0100121#define GPIOD_IS_OUT BIT(1) /* GPIO is an output */
122#define GPIOD_IS_IN BIT(2) /* GPIO is an input */
Patrick Delaunay5c1c06e2020-01-13 11:35:07 +0100123#define GPIOD_ACTIVE_LOW BIT(3) /* GPIO is active when value is low */
Patrick Delaunay34c6f1a2020-01-13 11:34:59 +0100124#define GPIOD_IS_OUT_ACTIVE BIT(4) /* set output active */
Patrick Delaunay5c1c06e2020-01-13 11:35:07 +0100125#define GPIOD_OPEN_DRAIN BIT(5) /* GPIO is open drain type */
126#define GPIOD_OPEN_SOURCE BIT(6) /* GPIO is open source type */
127#define GPIOD_PULL_UP BIT(7) /* GPIO has pull-up enabled */
128#define GPIOD_PULL_DOWN BIT(8) /* GPIO has pull-down enabled */
Simon Glassce555292015-01-05 20:05:27 -0700129
130 uint offset; /* GPIO offset within the device */
131 /*
132 * We could consider adding the GPIO label in here. Possibly we could
133 * use this structure for internal GPIO information.
134 */
135};
136
Patrick Delaunayd346d4c2020-01-13 11:35:05 +0100137/* helper to compute the value of the gpio output */
138#define GPIOD_FLAGS_OUTPUT_MASK (GPIOD_ACTIVE_LOW | GPIOD_IS_OUT_ACTIVE)
139#define GPIOD_FLAGS_OUTPUT(flags) \
140 (((((flags) & GPIOD_FLAGS_OUTPUT_MASK) == GPIOD_IS_OUT_ACTIVE) || \
141 (((flags) & GPIOD_FLAGS_OUTPUT_MASK) == GPIOD_ACTIVE_LOW)))
142
Simon Glasse821d182014-02-26 15:59:24 -0700143/**
Masahiro Yamada2fc683d2015-05-29 21:57:33 +0900144 * dm_gpio_is_valid() - Check if a GPIO is valid
Simon Glass16e10402015-01-05 20:05:29 -0700145 *
146 * @desc: GPIO description containing device, offset and flags,
147 * previously returned by gpio_request_by_name()
148 * @return true if valid, false if not
149 */
Simon Glassfd838972016-03-06 19:27:51 -0700150static inline bool dm_gpio_is_valid(const struct gpio_desc *desc)
Simon Glass16e10402015-01-05 20:05:29 -0700151{
152 return desc->dev != NULL;
153}
154
155/**
Simon Glass6b1ef592014-10-04 11:29:44 -0600156 * gpio_get_status() - get the current GPIO status as a string
157 *
158 * Obtain the current GPIO status as a string which can be presented to the
159 * user. A typical string is:
160 *
161 * "b4: in: 1 [x] sdmmc_cd"
162 *
163 * which means this is GPIO bank b, offset 4, currently set to input, current
164 * value 1, [x] means that it is requested and the owner is 'sdmmc_cd'
165 *
Simon Glassaf0bb3e2015-01-05 20:05:30 -0700166 * TODO(sjg@chromium.org): This should use struct gpio_desc
167 *
Simon Glass6b1ef592014-10-04 11:29:44 -0600168 * @dev: Device to check
169 * @offset: Offset of device GPIO to check
170 * @buf: Place to put string
171 * @buffsize: Size of string including \0
172 */
173int gpio_get_status(struct udevice *dev, int offset, char *buf, int buffsize);
174
175/**
Simon Glass6e5e6dd2014-10-04 11:29:43 -0600176 * gpio_get_function() - get the current function for a GPIO pin
177 *
178 * Note this returns GPIOF_UNUSED if the GPIO is not requested.
179 *
Simon Glassaf0bb3e2015-01-05 20:05:30 -0700180 * TODO(sjg@chromium.org): This should use struct gpio_desc
181 *
Simon Glass6e5e6dd2014-10-04 11:29:43 -0600182 * @dev: Device to check
183 * @offset: Offset of device GPIO to check
Masahiro Yamada2fc683d2015-05-29 21:57:33 +0900184 * @namep: If non-NULL, this is set to the name given when the GPIO
Simon Glass6e5e6dd2014-10-04 11:29:43 -0600185 * was requested, or -1 if it has not been requested
186 * @return -ENODATA if the driver returned an unknown function,
187 * -ENODEV if the device is not active, -EINVAL if the offset is invalid.
188 * GPIOF_UNUSED if the GPIO has not been requested. Otherwise returns the
189 * function from enum gpio_func_t.
190 */
191int gpio_get_function(struct udevice *dev, int offset, const char **namep);
192
193/**
194 * gpio_get_raw_function() - get the current raw function for a GPIO pin
195 *
196 * Note this does not return GPIOF_UNUSED - it will always return the GPIO
197 * driver's view of a pin function, even if it is not correctly set up.
198 *
Simon Glassaf0bb3e2015-01-05 20:05:30 -0700199 * TODO(sjg@chromium.org): This should use struct gpio_desc
200 *
Simon Glass6e5e6dd2014-10-04 11:29:43 -0600201 * @dev: Device to check
202 * @offset: Offset of device GPIO to check
Masahiro Yamada2fc683d2015-05-29 21:57:33 +0900203 * @namep: If non-NULL, this is set to the name given when the GPIO
Simon Glass6e5e6dd2014-10-04 11:29:43 -0600204 * was requested, or -1 if it has not been requested
205 * @return -ENODATA if the driver returned an unknown function,
206 * -ENODEV if the device is not active, -EINVAL if the offset is invalid.
207 * Otherwise returns the function from enum gpio_func_t.
208 */
209int gpio_get_raw_function(struct udevice *dev, int offset, const char **namep);
210
211/**
Simon Glass1b27d602014-10-04 11:29:49 -0600212 * gpio_requestf() - request a GPIO using a format string for the owner
213 *
214 * This is a helper function for gpio_request(). It allows you to provide
215 * a printf()-format string for the GPIO owner. It calls gpio_request() with
216 * the string that is created
217 */
218int gpio_requestf(unsigned gpio, const char *fmt, ...)
219 __attribute__ ((format (__printf__, 2, 3)));
220
Simon Glassd3322bb2015-01-05 20:05:28 -0700221struct fdtdec_phandle_args;
222
Simon Glass1b27d602014-10-04 11:29:49 -0600223/**
Eric Nelson786e98d2016-04-24 16:32:40 -0700224 * gpio_xlate_offs_flags() - implementation for common use of dm_gpio_ops.xlate
225 *
226 * This routine sets the offset field to args[0] and the flags field to
227 * GPIOD_ACTIVE_LOW if the GPIO_ACTIVE_LOW flag is present in args[1].
Eric Nelson786e98d2016-04-24 16:32:40 -0700228 */
229int gpio_xlate_offs_flags(struct udevice *dev, struct gpio_desc *desc,
Simon Glass12faa022017-05-18 20:09:18 -0600230 struct ofnode_phandle_args *args);
Eric Nelson786e98d2016-04-24 16:32:40 -0700231
232/**
Simon Glasse821d182014-02-26 15:59:24 -0700233 * struct struct dm_gpio_ops - Driver model GPIO operations
234 *
235 * Refer to functions above for description. These function largely copy
236 * the old API.
237 *
238 * This is trying to be close to Linux GPIO API. Once the U-Boot uses the
239 * new DM GPIO API, this should be really easy to flip over to the Linux
240 * GPIO API-alike interface.
241 *
Marcel Ziswiler8a523c52014-10-10 17:31:41 +0200242 * Also it would be useful to standardise additional functions like
Simon Glasse821d182014-02-26 15:59:24 -0700243 * pullup, slew rate and drive strength.
244 *
Masahiro Yamada2fc683d2015-05-29 21:57:33 +0900245 * gpio_request() and gpio_free() are optional - if NULL then they will
Simon Glasse821d182014-02-26 15:59:24 -0700246 * not be called.
247 *
248 * Note that @offset is the offset from the base GPIO of the device. So
249 * offset 0 is the device's first GPIO and offset o-1 is the last GPIO,
250 * where o is the number of GPIO lines controlled by the device. A device
251 * is typically used to control a single bank of GPIOs. Within complex
252 * SoCs there may be many banks and therefore many devices all referring
253 * to the different IO addresses within the SoC.
254 *
Marcel Ziswiler8a523c52014-10-10 17:31:41 +0200255 * The uclass combines all GPIO devices together to provide a consistent
Simon Glasse821d182014-02-26 15:59:24 -0700256 * numbering from 0 to n-1, where n is the number of GPIOs in total across
257 * all devices. Be careful not to confuse offset with gpio in the parameters.
258 */
259struct dm_gpio_ops {
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200260 int (*request)(struct udevice *dev, unsigned offset, const char *label);
Simon Glassb3a47542020-02-04 20:15:17 -0700261 int (*rfree)(struct udevice *dev, unsigned int offset);
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200262 int (*direction_input)(struct udevice *dev, unsigned offset);
263 int (*direction_output)(struct udevice *dev, unsigned offset,
Simon Glasse821d182014-02-26 15:59:24 -0700264 int value);
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200265 int (*get_value)(struct udevice *dev, unsigned offset);
266 int (*set_value)(struct udevice *dev, unsigned offset, int value);
Simon Glass2d6b9232014-08-11 09:23:52 -0600267 /**
268 * get_function() Get the GPIO function
269 *
270 * @dev: Device to check
271 * @offset: GPIO offset within that device
272 * @return current function - GPIOF_...
273 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200274 int (*get_function)(struct udevice *dev, unsigned offset);
Simon Glassd3322bb2015-01-05 20:05:28 -0700275
276 /**
277 * xlate() - Translate phandle arguments into a GPIO description
278 *
279 * This function should set up the fields in desc according to the
280 * information in the arguments. The uclass will have set up:
281 *
282 * @desc->dev to @dev
283 * @desc->flags to 0
Eric Nelson786e98d2016-04-24 16:32:40 -0700284 * @desc->offset to 0
Simon Glassd3322bb2015-01-05 20:05:28 -0700285 *
Eric Nelson786e98d2016-04-24 16:32:40 -0700286 * This method is optional and defaults to gpio_xlate_offs_flags,
287 * which will parse offset and the GPIO_ACTIVE_LOW flag in the first
288 * two arguments.
Simon Glassd3322bb2015-01-05 20:05:28 -0700289 *
290 * Note that @dev is passed in as a parameter to follow driver model
291 * uclass conventions, even though it is already available as
292 * desc->dev.
293 *
294 * @dev: GPIO device
295 * @desc: Place to put GPIO description
Masahiro Yamada2fc683d2015-05-29 21:57:33 +0900296 * @args: Arguments provided in description
Simon Glassd3322bb2015-01-05 20:05:28 -0700297 * @return 0 if OK, -ve on error
298 */
299 int (*xlate)(struct udevice *dev, struct gpio_desc *desc,
Simon Glass12faa022017-05-18 20:09:18 -0600300 struct ofnode_phandle_args *args);
Patrick Delaunayfbacd622020-01-13 11:35:08 +0100301
302 /**
Patrick Delaunay684326f2020-01-13 11:35:09 +0100303 * set_dir_flags() - Set GPIO dir flags
304 *
305 * This function should set up the GPIO configuration according to the
306 * information provide by the direction flags bitfield.
307 *
308 * This method is optional.
309 *
310 * @dev: GPIO device
311 * @offset: GPIO offset within that device
312 * @flags: GPIO configuration to use
313 * @return 0 if OK, -ve on error
314 */
315 int (*set_dir_flags)(struct udevice *dev, unsigned int offset,
316 ulong flags);
317
318 /**
Patrick Delaunayfbacd622020-01-13 11:35:08 +0100319 * get_dir_flags() - Get GPIO dir flags
320 *
321 * This function return the GPIO direction flags used.
322 *
323 * This method is optional.
324 *
325 * @dev: GPIO device
326 * @offset: GPIO offset within that device
327 * @flags: place to put the used direction flags by GPIO
328 * @return 0 if OK, -ve on error
329 */
330 int (*get_dir_flags)(struct udevice *dev, unsigned int offset,
331 ulong *flags);
Simon Glasse821d182014-02-26 15:59:24 -0700332};
333
334/**
335 * struct gpio_dev_priv - information about a device used by the uclass
336 *
337 * The uclass combines all active GPIO devices into a unified numbering
Marcel Ziswiler8a523c52014-10-10 17:31:41 +0200338 * scheme. To do this it maintains some private information about each
Simon Glasse821d182014-02-26 15:59:24 -0700339 * device.
340 *
341 * To implement driver model support in your GPIO driver, add a probe
342 * handler, and set @gpio_count and @bank_name correctly in that handler.
343 * This tells the uclass the name of the GPIO bank and the number of GPIOs
344 * it contains.
345 *
346 * @bank_name: Name of the GPIO device (e.g 'a' means GPIOs will be called
347 * 'A0', 'A1', etc.
348 * @gpio_count: Number of GPIOs in this device
349 * @gpio_base: Base GPIO number for this device. For the first active device
350 * this will be 0; the numbering for others will follow sequentially so that
351 * @gpio_base for device 1 will equal the number of GPIOs in device 0.
Simon Glass0f4517d2014-10-04 11:29:42 -0600352 * @name: Array of pointers to the name for each GPIO in this bank. The
353 * value of the pointer will be NULL if the GPIO has not been claimed.
Simon Glasse821d182014-02-26 15:59:24 -0700354 */
355struct gpio_dev_priv {
356 const char *bank_name;
357 unsigned gpio_count;
358 unsigned gpio_base;
Simon Glass0f4517d2014-10-04 11:29:42 -0600359 char **name;
Simon Glasse821d182014-02-26 15:59:24 -0700360};
361
362/* Access the GPIO operations for a device */
363#define gpio_get_ops(dev) ((struct dm_gpio_ops *)(dev)->driver->ops)
364
365/**
366 * gpio_get_bank_info - Return information about a GPIO bank/device
367 *
368 * This looks up a device and returns both its GPIO base name and the number
369 * of GPIOs it controls.
370 *
371 * @dev: Device to look up
372 * @offset_count: Returns number of GPIOs within this bank
373 * @return bank name of this device
374 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200375const char *gpio_get_bank_info(struct udevice *dev, int *offset_count);
Simon Glasse821d182014-02-26 15:59:24 -0700376
377/**
Simon Glass215bcc72015-06-23 15:38:40 -0600378 * dm_gpio_lookup_name() - Look up a named GPIO and return its description
379 *
380 * The name of a GPIO is typically its bank name followed by a number from 0.
381 * For example A0 is the first GPIO in bank A. Each bank is a separate driver
382 * model device.
383 *
384 * @name: Name to look up
385 * @desc: Returns description, on success
386 * @return 0 if OK, -ve on error
387 */
388int dm_gpio_lookup_name(const char *name, struct gpio_desc *desc);
389
390/**
Heiko Schocher39cb3402019-06-12 06:11:46 +0200391 * gpio_hog_lookup_name() - Look up a named GPIO and return the gpio descr.
392 *
393 * @name: Name to look up
Heiko Schocher58e4c382019-07-17 06:59:51 +0200394 * @desc: Returns GPIO description, on success, else NULL
395 * @return: Returns 0 if OK, else -ENODEV
Heiko Schocher39cb3402019-06-12 06:11:46 +0200396 */
Heiko Schocher58e4c382019-07-17 06:59:51 +0200397int gpio_hog_lookup_name(const char *name, struct gpio_desc **desc);
Heiko Schocher39cb3402019-06-12 06:11:46 +0200398
399/**
400 * gpio_hog_probe_all() - probe all gpio devices with
401 * gpio-hog subnodes.
402 *
403 * @return: Returns return value from device_probe()
404 */
405int gpio_hog_probe_all(void);
406
407/**
Simon Glasse821d182014-02-26 15:59:24 -0700408 * gpio_lookup_name - Look up a GPIO name and return its details
409 *
410 * This is used to convert a named GPIO into a device, offset and GPIO
411 * number.
412 *
413 * @name: GPIO name to look up
414 * @devp: Returns pointer to device which contains this GPIO
415 * @offsetp: Returns the offset number within this device
416 * @gpiop: Returns the absolute GPIO number, numbered from 0
417 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200418int gpio_lookup_name(const char *name, struct udevice **devp,
Simon Glasse821d182014-02-26 15:59:24 -0700419 unsigned int *offsetp, unsigned int *gpiop);
420
Simon Glass2c97a8f2014-11-10 18:00:21 -0700421/**
Simon Glassbef54db2015-04-14 21:03:20 -0600422 * gpio_get_values_as_int() - Turn the values of a list of GPIOs into an int
Simon Glass2c97a8f2014-11-10 18:00:21 -0700423 *
424 * This puts the value of the first GPIO into bit 0, the second into bit 1,
425 * etc. then returns the resulting integer.
426 *
427 * @gpio_list: List of GPIOs to collect
Simon Glassbef54db2015-04-14 21:03:20 -0600428 * @return resulting integer value, or -ve on error
429 */
430int gpio_get_values_as_int(const int *gpio_list);
431
432/**
Simon Glassdf1687d2016-03-06 19:27:50 -0700433 * dm_gpio_get_values_as_int() - Turn the values of a list of GPIOs into an int
434 *
435 * This puts the value of the first GPIO into bit 0, the second into bit 1,
436 * etc. then returns the resulting integer.
437 *
438 * @desc_list: List of GPIOs to collect
439 * @count: Number of GPIOs
440 * @return resulting integer value, or -ve on error
441 */
Simon Glassfd838972016-03-06 19:27:51 -0700442int dm_gpio_get_values_as_int(const struct gpio_desc *desc_list, int count);
Simon Glassdf1687d2016-03-06 19:27:50 -0700443
444/**
Simon Glassbef54db2015-04-14 21:03:20 -0600445 * gpio_claim_vector() - claim a number of GPIOs for input
446 *
447 * @gpio_num_array: array of gpios to claim, terminated by -1
448 * @fmt: format string for GPIO names, e.g. "board_id%d"
449 * @return 0 if OK, -ve on error
Simon Glass2c97a8f2014-11-10 18:00:21 -0700450 */
Simon Glassbef54db2015-04-14 21:03:20 -0600451int gpio_claim_vector(const int *gpio_num_array, const char *fmt);
Jeroen Hofsteeb613b102014-10-08 22:58:03 +0200452
Simon Glass16e10402015-01-05 20:05:29 -0700453/**
454 * gpio_request_by_name() - Locate and request a GPIO by name
455 *
456 * This operates by looking up the given list name in the device (device
457 * tree property) and requesting the GPIO for use. The property must exist
458 * in @dev's node.
459 *
460 * Use @flags to specify whether the GPIO should be an input or output. In
461 * principle this can also come from the device tree binding but most
462 * bindings don't provide this information. Specifically, when the GPIO uclass
463 * calls the xlate() method, it can return default flags, which are then
464 * ORed with this @flags.
465 *
466 * If we find that requesting the GPIO is not always needed we could add a
467 * new function or a new GPIOD_NO_REQUEST flag.
468 *
469 * At present driver model has no reference counting so if one device
470 * requests a GPIO which subsequently is unbound, the @desc->dev pointer
471 * will be invalid. However this will only happen if the GPIO device is
472 * unbound, not if it is removed, so this seems like a reasonable limitation
473 * for now. There is no real use case for unbinding drivers in normal
474 * operation.
475 *
476 * The device tree binding is doc/device-tree-bindings/gpio/gpio.txt in
477 * generate terms and each specific device may add additional details in
478 * a binding file in the same directory.
479 *
480 * @dev: Device requesting the GPIO
481 * @list_name: Name of GPIO list (e.g. "board-id-gpios")
482 * @index: Index number of the GPIO in that list use request (0=first)
483 * @desc: Returns GPIO description information. If there is no such
484 * GPIO, dev->dev will be NULL.
485 * @flags: Indicates the GPIO input/output settings (GPIOD_...)
486 * @return 0 if OK, -ENOENT if the GPIO does not exist, -EINVAL if there is
487 * something wrong with the list, or other -ve for another error (e.g.
488 * -EBUSY if a GPIO was already requested)
489 */
490int gpio_request_by_name(struct udevice *dev, const char *list_name,
491 int index, struct gpio_desc *desc, int flags);
492
493/**
494 * gpio_request_list_by_name() - Request a list of GPIOs
495 *
Masahiro Yamada2fc683d2015-05-29 21:57:33 +0900496 * Reads all the GPIOs from a list and requests them. See
Simon Glass16e10402015-01-05 20:05:29 -0700497 * gpio_request_by_name() for additional details. Lists should not be
498 * misused to hold unrelated or optional GPIOs. They should only be used
499 * for things like parallel data lines. A zero phandle terminates the list
500 * the list.
501 *
502 * This function will either succeed, and request all GPIOs in the list, or
503 * fail and request none (it will free already-requested GPIOs in case of
504 * an error part-way through).
505 *
506 * @dev: Device requesting the GPIO
507 * @list_name: Name of GPIO list (e.g. "board-id-gpios")
508 * @desc_list: Returns a list of GPIO description information
509 * @max_count: Maximum number of GPIOs to return (@desc_list must be at least
510 * this big)
511 * @flags: Indicates the GPIO input/output settings (GPIOD_...)
512 * @return number of GPIOs requested, or -ve on error
513 */
514int gpio_request_list_by_name(struct udevice *dev, const char *list_name,
515 struct gpio_desc *desc_list, int max_count,
516 int flags);
517
518/**
Simon Glass047cdb32015-06-23 15:38:41 -0600519 * dm_gpio_request() - manually request a GPIO
520 *
521 * Note: This function should only be used for testing / debugging. Instead.
522 * use gpio_request_by_name() to pull GPIOs from the device tree.
523 *
524 * @desc: GPIO description of GPIO to request (see dm_gpio_lookup_name())
525 * @label: Label to attach to the GPIO while claimed
526 * @return 0 if OK, -ve on error
527 */
528int dm_gpio_request(struct gpio_desc *desc, const char *label);
529
530/**
Simon Glass16e10402015-01-05 20:05:29 -0700531 * gpio_get_list_count() - Returns the number of GPIOs in a list
532 *
533 * Counts the GPIOs in a list. See gpio_request_by_name() for additional
534 * details.
535 *
536 * @dev: Device requesting the GPIO
537 * @list_name: Name of GPIO list (e.g. "board-id-gpios")
538 * @return number of GPIOs (0 for an empty property) or -ENOENT if the list
539 * does not exist
540 */
541int gpio_get_list_count(struct udevice *dev, const char *list_name);
542
543/**
544 * gpio_request_by_name_nodev() - request GPIOs without a device
545 *
546 * This is a version of gpio_request_list_by_name() that does not use a
547 * device. Avoid it unless the caller is not yet using driver model
548 */
Simon Glass1d9af1f2017-05-30 21:47:09 -0600549int gpio_request_by_name_nodev(ofnode node, const char *list_name, int index,
550 struct gpio_desc *desc, int flags);
Simon Glass16e10402015-01-05 20:05:29 -0700551
552/**
553 * gpio_request_list_by_name_nodev() - request GPIOs without a device
554 *
555 * This is a version of gpio_request_list_by_name() that does not use a
556 * device. Avoid it unless the caller is not yet using driver model
557 */
Simon Glass1d9af1f2017-05-30 21:47:09 -0600558int gpio_request_list_by_name_nodev(ofnode node, const char *list_name,
Simon Glass16e10402015-01-05 20:05:29 -0700559 struct gpio_desc *desc_list, int max_count,
560 int flags);
561
562/**
Heiko Schocher39cb3402019-06-12 06:11:46 +0200563 * gpio_dev_request_index() - request single GPIO from gpio device
564 *
565 * @dev: GPIO device
Heiko Schocher58e4c382019-07-17 06:59:51 +0200566 * @nodename: Name of node for which gpio gets requested, used
567 * for the gpio label name
Heiko Schocher39cb3402019-06-12 06:11:46 +0200568 * @list_name: Name of GPIO list (e.g. "board-id-gpios")
569 * @index: Index number of the GPIO in that list use request (0=first)
570 * @flags: GPIOD_* flags
Heiko Schocher58e4c382019-07-17 06:59:51 +0200571 * @dtflags: GPIO flags read from DT defined see GPIOD_*
572 * @desc: returns GPIO descriptor filled from this function
Heiko Schocher39cb3402019-06-12 06:11:46 +0200573 * @return: return value from gpio_request_tail()
574 */
575int gpio_dev_request_index(struct udevice *dev, const char *nodename,
576 char *list_name, int index, int flags,
577 int dtflags, struct gpio_desc *desc);
578
579/**
Simon Glass16e10402015-01-05 20:05:29 -0700580 * dm_gpio_free() - Free a single GPIO
581 *
582 * This frees a single GPIOs previously returned from gpio_request_by_name().
583 *
584 * @dev: Device which requested the GPIO
585 * @desc: GPIO to free
586 * @return 0 if OK, -ve on error
587 */
588int dm_gpio_free(struct udevice *dev, struct gpio_desc *desc);
589
590/**
591 * gpio_free_list() - Free a list of GPIOs
592 *
593 * This frees a list of GPIOs previously returned from
594 * gpio_request_list_by_name().
595 *
596 * @dev: Device which requested the GPIOs
597 * @desc: List of GPIOs to free
598 * @count: Number of GPIOs in the list
599 * @return 0 if OK, -ve on error
600 */
601int gpio_free_list(struct udevice *dev, struct gpio_desc *desc, int count);
602
603/**
604 * gpio_free_list_nodev() - free GPIOs without a device
605 *
606 * This is a version of gpio_free_list() that does not use a
607 * device. Avoid it unless the caller is not yet using driver model
608 */
609int gpio_free_list_nodev(struct gpio_desc *desc, int count);
610
611/**
612 * dm_gpio_get_value() - Get the value of a GPIO
613 *
614 * This is the driver model version of the existing gpio_get_value() function
615 * and should be used instead of that.
616 *
617 * For now, these functions have a dm_ prefix since they conflict with
618 * existing names.
619 *
620 * @desc: GPIO description containing device, offset and flags,
621 * previously returned by gpio_request_by_name()
622 * @return GPIO value (0 for inactive, 1 for active) or -ve on error
623 */
Simon Glassfd838972016-03-06 19:27:51 -0700624int dm_gpio_get_value(const struct gpio_desc *desc);
Simon Glass16e10402015-01-05 20:05:29 -0700625
Simon Glassfd838972016-03-06 19:27:51 -0700626int dm_gpio_set_value(const struct gpio_desc *desc, int value);
Simon Glass16e10402015-01-05 20:05:29 -0700627
628/**
629 * dm_gpio_set_dir() - Set the direction for a GPIO
630 *
Patrick Delaunayaecf9d72020-01-13 11:35:06 +0100631 * This sets up the direction according to the GPIO flags: desc->flags.
Simon Glass16e10402015-01-05 20:05:29 -0700632 *
633 * @desc: GPIO description containing device, offset and flags,
634 * previously returned by gpio_request_by_name()
635 * @return 0 if OK, -ve on error
636 */
637int dm_gpio_set_dir(struct gpio_desc *desc);
638
639/**
Patrick Delaunayaecf9d72020-01-13 11:35:06 +0100640 * dm_gpio_set_dir_flags() - Set direction using description and added flags
Simon Glass16e10402015-01-05 20:05:29 -0700641 *
Patrick Delaunayaecf9d72020-01-13 11:35:06 +0100642 * This sets up the direction according to the provided flags and the GPIO
643 * description (desc->flags) which include direction information.
Simon Glass16e10402015-01-05 20:05:29 -0700644 * Note that desc->flags is updated by this function.
645 *
646 * @desc: GPIO description containing device, offset and flags,
647 * previously returned by gpio_request_by_name()
648 * @flags: New flags to use
649 * @return 0 if OK, -ve on error, in which case desc->flags is not updated
650 */
651int dm_gpio_set_dir_flags(struct gpio_desc *desc, ulong flags);
652
653/**
Patrick Delaunayaecf9d72020-01-13 11:35:06 +0100654 * dm_gpio_get_dir_flags() - Get direction flags
655 *
656 * read the current direction flags
657 *
658 * @desc: GPIO description containing device, offset and flags,
659 * previously returned by gpio_request_by_name()
660 * @flags: place to put the used flags
661 * @return 0 if OK, -ve on error, in which case desc->flags is not updated
662 */
663int dm_gpio_get_dir_flags(struct gpio_desc *desc, ulong *flags);
664
665/**
Simon Glass16e10402015-01-05 20:05:29 -0700666 * gpio_get_number() - Get the global GPIO number of a GPIO
667 *
Masahiro Yamada2fc683d2015-05-29 21:57:33 +0900668 * This should only be used for debugging or interest. It returns the number
Simon Glass16e10402015-01-05 20:05:29 -0700669 * that should be used for gpio_get_value() etc. to access this GPIO.
670 *
671 * @desc: GPIO description containing device, offset and flags,
672 * previously returned by gpio_request_by_name()
673 * @return GPIO number, or -ve if not found
674 */
Simon Glassfd838972016-03-06 19:27:51 -0700675int gpio_get_number(const struct gpio_desc *desc);
Simon Glass16e10402015-01-05 20:05:29 -0700676
Joe Hershberger334b2322011-11-11 15:55:35 -0600677#endif /* _ASM_GENERIC_GPIO_H_ */