2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-10-07 13:53:50 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
2011-11-11 21:55:35 +00:00
|
|
|
* Copyright (c) 2011, NVIDIA Corp. All rights reserved.
|
2011-10-07 13:53:50 +00:00
|
|
|
*/
|
|
|
|
|
2011-11-11 21:55:35 +00:00
|
|
|
#ifndef _ASM_GENERIC_GPIO_H_
|
|
|
|
#define _ASM_GENERIC_GPIO_H_
|
|
|
|
|
2017-05-31 03:47:09 +00:00
|
|
|
#include <dm/ofnode.h>
|
|
|
|
|
2017-05-19 02:09:18 +00:00
|
|
|
struct ofnode_phandle_args;
|
|
|
|
|
2011-10-07 13:53:50 +00:00
|
|
|
/*
|
|
|
|
* Generic GPIO API for U-Boot
|
|
|
|
*
|
2015-01-06 03:05:30 +00:00
|
|
|
* --
|
|
|
|
* NB: This is deprecated. Please use the driver model functions instead:
|
|
|
|
*
|
|
|
|
* - gpio_request_by_name()
|
|
|
|
* - dm_gpio_get_value() etc.
|
|
|
|
*
|
|
|
|
* For now we need a dm_ prefix on some functions to avoid name collision.
|
|
|
|
* --
|
|
|
|
*
|
2011-10-07 13:53:50 +00:00
|
|
|
* GPIOs are numbered from 0 to GPIO_COUNT-1 which value is defined
|
|
|
|
* by the SOC/architecture.
|
|
|
|
*
|
|
|
|
* Each GPIO can be an input or output. If an input then its value can
|
|
|
|
* be read as 0 or 1. If an output then its value can be set to 0 or 1.
|
|
|
|
* If you try to write an input then the value is undefined. If you try
|
|
|
|
* to read an output, barring something very unusual, you will get
|
|
|
|
* back the value of the output that you previously set.
|
|
|
|
*
|
|
|
|
* In some cases the operation may fail, for example if the GPIO number
|
|
|
|
* is out of range, or the GPIO is not available because its pin is
|
|
|
|
* being used by another function. In that case, functions may return
|
|
|
|
* an error value of -1.
|
|
|
|
*/
|
|
|
|
|
2011-11-11 21:55:35 +00:00
|
|
|
/**
|
2015-01-06 03:05:30 +00:00
|
|
|
* @deprecated Please use driver model instead
|
2014-10-10 15:31:41 +00:00
|
|
|
* Request a GPIO. This should be called before any of the other functions
|
|
|
|
* are used on this GPIO.
|
2011-11-11 21:55:35 +00:00
|
|
|
*
|
2014-10-04 17:29:42 +00:00
|
|
|
* Note: With driver model, the label is allocated so there is no need for
|
|
|
|
* the caller to preserve it.
|
|
|
|
*
|
2015-05-29 12:57:33 +00:00
|
|
|
* @param gpio GPIO number
|
2012-11-26 23:06:32 +00:00
|
|
|
* @param label User label for this GPIO
|
2011-11-11 21:55:35 +00:00
|
|
|
* @return 0 if ok, -1 on error
|
|
|
|
*/
|
|
|
|
int gpio_request(unsigned gpio, const char *label);
|
|
|
|
|
|
|
|
/**
|
2015-01-06 03:05:30 +00:00
|
|
|
* @deprecated Please use driver model instead
|
2011-11-11 21:55:35 +00:00
|
|
|
* Stop using the GPIO. This function should not alter pin configuration.
|
|
|
|
*
|
|
|
|
* @param gpio GPIO number
|
|
|
|
* @return 0 if ok, -1 on error
|
|
|
|
*/
|
|
|
|
int gpio_free(unsigned gpio);
|
|
|
|
|
2011-10-07 13:53:50 +00:00
|
|
|
/**
|
2015-01-06 03:05:30 +00:00
|
|
|
* @deprecated Please use driver model instead
|
2011-10-07 13:53:50 +00:00
|
|
|
* Make a GPIO an input.
|
|
|
|
*
|
2011-11-11 21:55:35 +00:00
|
|
|
* @param gpio GPIO number
|
2011-10-07 13:53:50 +00:00
|
|
|
* @return 0 if ok, -1 on error
|
|
|
|
*/
|
2011-11-11 21:55:35 +00:00
|
|
|
int gpio_direction_input(unsigned gpio);
|
2011-10-07 13:53:50 +00:00
|
|
|
|
|
|
|
/**
|
2015-01-06 03:05:30 +00:00
|
|
|
* @deprecated Please use driver model instead
|
2011-10-07 13:53:50 +00:00
|
|
|
* Make a GPIO an output, and set its value.
|
|
|
|
*
|
2011-11-11 21:55:35 +00:00
|
|
|
* @param gpio GPIO number
|
2011-10-07 13:53:50 +00:00
|
|
|
* @param value GPIO value (0 for low or 1 for high)
|
|
|
|
* @return 0 if ok, -1 on error
|
|
|
|
*/
|
2011-11-11 21:55:35 +00:00
|
|
|
int gpio_direction_output(unsigned gpio, int value);
|
2011-10-07 13:53:50 +00:00
|
|
|
|
|
|
|
/**
|
2015-01-06 03:05:30 +00:00
|
|
|
* @deprecated Please use driver model instead
|
2011-10-07 13:53:50 +00:00
|
|
|
* Get a GPIO's value. This will work whether the GPIO is an input
|
|
|
|
* or an output.
|
|
|
|
*
|
2011-11-11 21:55:35 +00:00
|
|
|
* @param gpio GPIO number
|
2011-10-07 13:53:50 +00:00
|
|
|
* @return 0 if low, 1 if high, -1 on error
|
|
|
|
*/
|
2011-11-11 21:55:35 +00:00
|
|
|
int gpio_get_value(unsigned gpio);
|
2011-10-07 13:53:50 +00:00
|
|
|
|
|
|
|
/**
|
2015-01-06 03:05:30 +00:00
|
|
|
* @deprecated Please use driver model instead
|
2011-11-11 21:55:35 +00:00
|
|
|
* Set an output GPIO's value. The GPIO must already be an output or
|
2011-10-07 13:53:50 +00:00
|
|
|
* this function may have no effect.
|
|
|
|
*
|
2011-11-11 21:55:35 +00:00
|
|
|
* @param gpio GPIO number
|
2011-10-07 13:53:50 +00:00
|
|
|
* @param value GPIO value (0 for low or 1 for high)
|
|
|
|
* @return 0 if ok, -1 on error
|
|
|
|
*/
|
2011-11-11 21:55:35 +00:00
|
|
|
int gpio_set_value(unsigned gpio, int value);
|
2014-02-26 22:59:24 +00:00
|
|
|
|
2014-08-11 15:23:52 +00:00
|
|
|
/* State of a GPIO, as reported by get_function() */
|
2014-10-04 17:29:43 +00:00
|
|
|
enum gpio_func_t {
|
2014-02-26 22:59:24 +00:00
|
|
|
GPIOF_INPUT = 0,
|
|
|
|
GPIOF_OUTPUT,
|
2014-08-11 15:23:52 +00:00
|
|
|
GPIOF_UNUSED, /* Not claimed */
|
|
|
|
GPIOF_UNKNOWN, /* Not known */
|
|
|
|
GPIOF_FUNC, /* Not used as a GPIO */
|
|
|
|
|
|
|
|
GPIOF_COUNT,
|
2014-02-26 22:59:24 +00:00
|
|
|
};
|
|
|
|
|
2014-05-22 10:43:05 +00:00
|
|
|
struct udevice;
|
2014-02-26 22:59:24 +00:00
|
|
|
|
2015-01-06 03:05:27 +00:00
|
|
|
struct gpio_desc {
|
|
|
|
struct udevice *dev; /* Device, NULL for invalid GPIO */
|
|
|
|
unsigned long flags;
|
2020-01-13 10:34:59 +00:00
|
|
|
#define GPIOD_IS_OUT BIT(1) /* GPIO is an output */
|
|
|
|
#define GPIOD_IS_IN BIT(2) /* GPIO is an input */
|
2020-01-13 10:35:07 +00:00
|
|
|
#define GPIOD_ACTIVE_LOW BIT(3) /* GPIO is active when value is low */
|
2020-01-13 10:34:59 +00:00
|
|
|
#define GPIOD_IS_OUT_ACTIVE BIT(4) /* set output active */
|
2020-01-13 10:35:07 +00:00
|
|
|
#define GPIOD_OPEN_DRAIN BIT(5) /* GPIO is open drain type */
|
|
|
|
#define GPIOD_OPEN_SOURCE BIT(6) /* GPIO is open source type */
|
|
|
|
#define GPIOD_PULL_UP BIT(7) /* GPIO has pull-up enabled */
|
|
|
|
#define GPIOD_PULL_DOWN BIT(8) /* GPIO has pull-down enabled */
|
2015-01-06 03:05:27 +00:00
|
|
|
|
|
|
|
uint offset; /* GPIO offset within the device */
|
|
|
|
/*
|
|
|
|
* We could consider adding the GPIO label in here. Possibly we could
|
|
|
|
* use this structure for internal GPIO information.
|
|
|
|
*/
|
|
|
|
};
|
|
|
|
|
2020-01-13 10:35:05 +00:00
|
|
|
/* helper to compute the value of the gpio output */
|
|
|
|
#define GPIOD_FLAGS_OUTPUT_MASK (GPIOD_ACTIVE_LOW | GPIOD_IS_OUT_ACTIVE)
|
|
|
|
#define GPIOD_FLAGS_OUTPUT(flags) \
|
|
|
|
(((((flags) & GPIOD_FLAGS_OUTPUT_MASK) == GPIOD_IS_OUT_ACTIVE) || \
|
|
|
|
(((flags) & GPIOD_FLAGS_OUTPUT_MASK) == GPIOD_ACTIVE_LOW)))
|
|
|
|
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
/**
|
2015-05-29 12:57:33 +00:00
|
|
|
* dm_gpio_is_valid() - Check if a GPIO is valid
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
*
|
|
|
|
* @desc: GPIO description containing device, offset and flags,
|
|
|
|
* previously returned by gpio_request_by_name()
|
|
|
|
* @return true if valid, false if not
|
|
|
|
*/
|
2016-03-07 02:27:51 +00:00
|
|
|
static inline bool dm_gpio_is_valid(const struct gpio_desc *desc)
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
{
|
|
|
|
return desc->dev != NULL;
|
|
|
|
}
|
|
|
|
|
2014-10-04 17:29:44 +00:00
|
|
|
/**
|
|
|
|
* gpio_get_status() - get the current GPIO status as a string
|
|
|
|
*
|
|
|
|
* Obtain the current GPIO status as a string which can be presented to the
|
|
|
|
* user. A typical string is:
|
|
|
|
*
|
|
|
|
* "b4: in: 1 [x] sdmmc_cd"
|
|
|
|
*
|
|
|
|
* which means this is GPIO bank b, offset 4, currently set to input, current
|
|
|
|
* value 1, [x] means that it is requested and the owner is 'sdmmc_cd'
|
|
|
|
*
|
2015-01-06 03:05:30 +00:00
|
|
|
* TODO(sjg@chromium.org): This should use struct gpio_desc
|
|
|
|
*
|
2014-10-04 17:29:44 +00:00
|
|
|
* @dev: Device to check
|
|
|
|
* @offset: Offset of device GPIO to check
|
|
|
|
* @buf: Place to put string
|
|
|
|
* @buffsize: Size of string including \0
|
|
|
|
*/
|
|
|
|
int gpio_get_status(struct udevice *dev, int offset, char *buf, int buffsize);
|
|
|
|
|
2014-10-04 17:29:43 +00:00
|
|
|
/**
|
|
|
|
* gpio_get_function() - get the current function for a GPIO pin
|
|
|
|
*
|
|
|
|
* Note this returns GPIOF_UNUSED if the GPIO is not requested.
|
|
|
|
*
|
2015-01-06 03:05:30 +00:00
|
|
|
* TODO(sjg@chromium.org): This should use struct gpio_desc
|
|
|
|
*
|
2014-10-04 17:29:43 +00:00
|
|
|
* @dev: Device to check
|
|
|
|
* @offset: Offset of device GPIO to check
|
2015-05-29 12:57:33 +00:00
|
|
|
* @namep: If non-NULL, this is set to the name given when the GPIO
|
2014-10-04 17:29:43 +00:00
|
|
|
* was requested, or -1 if it has not been requested
|
|
|
|
* @return -ENODATA if the driver returned an unknown function,
|
|
|
|
* -ENODEV if the device is not active, -EINVAL if the offset is invalid.
|
|
|
|
* GPIOF_UNUSED if the GPIO has not been requested. Otherwise returns the
|
|
|
|
* function from enum gpio_func_t.
|
|
|
|
*/
|
|
|
|
int gpio_get_function(struct udevice *dev, int offset, const char **namep);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gpio_get_raw_function() - get the current raw function for a GPIO pin
|
|
|
|
*
|
|
|
|
* Note this does not return GPIOF_UNUSED - it will always return the GPIO
|
|
|
|
* driver's view of a pin function, even if it is not correctly set up.
|
|
|
|
*
|
2015-01-06 03:05:30 +00:00
|
|
|
* TODO(sjg@chromium.org): This should use struct gpio_desc
|
|
|
|
*
|
2014-10-04 17:29:43 +00:00
|
|
|
* @dev: Device to check
|
|
|
|
* @offset: Offset of device GPIO to check
|
2015-05-29 12:57:33 +00:00
|
|
|
* @namep: If non-NULL, this is set to the name given when the GPIO
|
2014-10-04 17:29:43 +00:00
|
|
|
* was requested, or -1 if it has not been requested
|
|
|
|
* @return -ENODATA if the driver returned an unknown function,
|
|
|
|
* -ENODEV if the device is not active, -EINVAL if the offset is invalid.
|
|
|
|
* Otherwise returns the function from enum gpio_func_t.
|
|
|
|
*/
|
|
|
|
int gpio_get_raw_function(struct udevice *dev, int offset, const char **namep);
|
|
|
|
|
2014-10-04 17:29:49 +00:00
|
|
|
/**
|
|
|
|
* gpio_requestf() - request a GPIO using a format string for the owner
|
|
|
|
*
|
|
|
|
* This is a helper function for gpio_request(). It allows you to provide
|
|
|
|
* a printf()-format string for the GPIO owner. It calls gpio_request() with
|
|
|
|
* the string that is created
|
|
|
|
*/
|
|
|
|
int gpio_requestf(unsigned gpio, const char *fmt, ...)
|
|
|
|
__attribute__ ((format (__printf__, 2, 3)));
|
|
|
|
|
2015-01-06 03:05:28 +00:00
|
|
|
struct fdtdec_phandle_args;
|
|
|
|
|
2016-04-24 23:32:40 +00:00
|
|
|
/**
|
|
|
|
* gpio_xlate_offs_flags() - implementation for common use of dm_gpio_ops.xlate
|
|
|
|
*
|
|
|
|
* This routine sets the offset field to args[0] and the flags field to
|
|
|
|
* GPIOD_ACTIVE_LOW if the GPIO_ACTIVE_LOW flag is present in args[1].
|
|
|
|
*/
|
|
|
|
int gpio_xlate_offs_flags(struct udevice *dev, struct gpio_desc *desc,
|
2017-05-19 02:09:18 +00:00
|
|
|
struct ofnode_phandle_args *args);
|
2016-04-24 23:32:40 +00:00
|
|
|
|
2014-02-26 22:59:24 +00:00
|
|
|
/**
|
|
|
|
* struct struct dm_gpio_ops - Driver model GPIO operations
|
|
|
|
*
|
|
|
|
* Refer to functions above for description. These function largely copy
|
|
|
|
* the old API.
|
|
|
|
*
|
|
|
|
* This is trying to be close to Linux GPIO API. Once the U-Boot uses the
|
|
|
|
* new DM GPIO API, this should be really easy to flip over to the Linux
|
|
|
|
* GPIO API-alike interface.
|
|
|
|
*
|
2014-10-10 15:31:41 +00:00
|
|
|
* Also it would be useful to standardise additional functions like
|
2014-02-26 22:59:24 +00:00
|
|
|
* pullup, slew rate and drive strength.
|
|
|
|
*
|
2015-05-29 12:57:33 +00:00
|
|
|
* gpio_request() and gpio_free() are optional - if NULL then they will
|
2014-02-26 22:59:24 +00:00
|
|
|
* not be called.
|
|
|
|
*
|
|
|
|
* Note that @offset is the offset from the base GPIO of the device. So
|
|
|
|
* offset 0 is the device's first GPIO and offset o-1 is the last GPIO,
|
|
|
|
* where o is the number of GPIO lines controlled by the device. A device
|
|
|
|
* is typically used to control a single bank of GPIOs. Within complex
|
|
|
|
* SoCs there may be many banks and therefore many devices all referring
|
|
|
|
* to the different IO addresses within the SoC.
|
|
|
|
*
|
2014-10-10 15:31:41 +00:00
|
|
|
* The uclass combines all GPIO devices together to provide a consistent
|
2014-02-26 22:59:24 +00:00
|
|
|
* numbering from 0 to n-1, where n is the number of GPIOs in total across
|
|
|
|
* all devices. Be careful not to confuse offset with gpio in the parameters.
|
|
|
|
*/
|
|
|
|
struct dm_gpio_ops {
|
2014-05-22 10:43:05 +00:00
|
|
|
int (*request)(struct udevice *dev, unsigned offset, const char *label);
|
2020-02-05 03:15:17 +00:00
|
|
|
int (*rfree)(struct udevice *dev, unsigned int offset);
|
2014-05-22 10:43:05 +00:00
|
|
|
int (*direction_input)(struct udevice *dev, unsigned offset);
|
|
|
|
int (*direction_output)(struct udevice *dev, unsigned offset,
|
2014-02-26 22:59:24 +00:00
|
|
|
int value);
|
2014-05-22 10:43:05 +00:00
|
|
|
int (*get_value)(struct udevice *dev, unsigned offset);
|
|
|
|
int (*set_value)(struct udevice *dev, unsigned offset, int value);
|
2014-08-11 15:23:52 +00:00
|
|
|
/**
|
|
|
|
* get_function() Get the GPIO function
|
|
|
|
*
|
|
|
|
* @dev: Device to check
|
|
|
|
* @offset: GPIO offset within that device
|
|
|
|
* @return current function - GPIOF_...
|
|
|
|
*/
|
2014-05-22 10:43:05 +00:00
|
|
|
int (*get_function)(struct udevice *dev, unsigned offset);
|
2015-01-06 03:05:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* xlate() - Translate phandle arguments into a GPIO description
|
|
|
|
*
|
|
|
|
* This function should set up the fields in desc according to the
|
|
|
|
* information in the arguments. The uclass will have set up:
|
|
|
|
*
|
|
|
|
* @desc->dev to @dev
|
|
|
|
* @desc->flags to 0
|
2016-04-24 23:32:40 +00:00
|
|
|
* @desc->offset to 0
|
2015-01-06 03:05:28 +00:00
|
|
|
*
|
2016-04-24 23:32:40 +00:00
|
|
|
* This method is optional and defaults to gpio_xlate_offs_flags,
|
|
|
|
* which will parse offset and the GPIO_ACTIVE_LOW flag in the first
|
|
|
|
* two arguments.
|
2015-01-06 03:05:28 +00:00
|
|
|
*
|
|
|
|
* Note that @dev is passed in as a parameter to follow driver model
|
|
|
|
* uclass conventions, even though it is already available as
|
|
|
|
* desc->dev.
|
|
|
|
*
|
|
|
|
* @dev: GPIO device
|
|
|
|
* @desc: Place to put GPIO description
|
2015-05-29 12:57:33 +00:00
|
|
|
* @args: Arguments provided in description
|
2015-01-06 03:05:28 +00:00
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int (*xlate)(struct udevice *dev, struct gpio_desc *desc,
|
2017-05-19 02:09:18 +00:00
|
|
|
struct ofnode_phandle_args *args);
|
2020-01-13 10:35:08 +00:00
|
|
|
|
2020-01-13 10:35:09 +00:00
|
|
|
/**
|
|
|
|
* set_dir_flags() - Set GPIO dir flags
|
|
|
|
*
|
|
|
|
* This function should set up the GPIO configuration according to the
|
|
|
|
* information provide by the direction flags bitfield.
|
|
|
|
*
|
|
|
|
* This method is optional.
|
|
|
|
*
|
|
|
|
* @dev: GPIO device
|
|
|
|
* @offset: GPIO offset within that device
|
|
|
|
* @flags: GPIO configuration to use
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int (*set_dir_flags)(struct udevice *dev, unsigned int offset,
|
|
|
|
ulong flags);
|
|
|
|
|
2020-01-13 10:35:08 +00:00
|
|
|
/**
|
|
|
|
* get_dir_flags() - Get GPIO dir flags
|
|
|
|
*
|
|
|
|
* This function return the GPIO direction flags used.
|
|
|
|
*
|
|
|
|
* This method is optional.
|
|
|
|
*
|
|
|
|
* @dev: GPIO device
|
|
|
|
* @offset: GPIO offset within that device
|
|
|
|
* @flags: place to put the used direction flags by GPIO
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int (*get_dir_flags)(struct udevice *dev, unsigned int offset,
|
|
|
|
ulong *flags);
|
2014-02-26 22:59:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct gpio_dev_priv - information about a device used by the uclass
|
|
|
|
*
|
|
|
|
* The uclass combines all active GPIO devices into a unified numbering
|
2014-10-10 15:31:41 +00:00
|
|
|
* scheme. To do this it maintains some private information about each
|
2014-02-26 22:59:24 +00:00
|
|
|
* device.
|
|
|
|
*
|
|
|
|
* To implement driver model support in your GPIO driver, add a probe
|
|
|
|
* handler, and set @gpio_count and @bank_name correctly in that handler.
|
|
|
|
* This tells the uclass the name of the GPIO bank and the number of GPIOs
|
|
|
|
* it contains.
|
|
|
|
*
|
|
|
|
* @bank_name: Name of the GPIO device (e.g 'a' means GPIOs will be called
|
|
|
|
* 'A0', 'A1', etc.
|
|
|
|
* @gpio_count: Number of GPIOs in this device
|
|
|
|
* @gpio_base: Base GPIO number for this device. For the first active device
|
|
|
|
* this will be 0; the numbering for others will follow sequentially so that
|
|
|
|
* @gpio_base for device 1 will equal the number of GPIOs in device 0.
|
2014-10-04 17:29:42 +00:00
|
|
|
* @name: Array of pointers to the name for each GPIO in this bank. The
|
|
|
|
* value of the pointer will be NULL if the GPIO has not been claimed.
|
2014-02-26 22:59:24 +00:00
|
|
|
*/
|
|
|
|
struct gpio_dev_priv {
|
|
|
|
const char *bank_name;
|
|
|
|
unsigned gpio_count;
|
|
|
|
unsigned gpio_base;
|
2014-10-04 17:29:42 +00:00
|
|
|
char **name;
|
2014-02-26 22:59:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Access the GPIO operations for a device */
|
|
|
|
#define gpio_get_ops(dev) ((struct dm_gpio_ops *)(dev)->driver->ops)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gpio_get_bank_info - Return information about a GPIO bank/device
|
|
|
|
*
|
|
|
|
* This looks up a device and returns both its GPIO base name and the number
|
|
|
|
* of GPIOs it controls.
|
|
|
|
*
|
|
|
|
* @dev: Device to look up
|
|
|
|
* @offset_count: Returns number of GPIOs within this bank
|
|
|
|
* @return bank name of this device
|
|
|
|
*/
|
2014-05-22 10:43:05 +00:00
|
|
|
const char *gpio_get_bank_info(struct udevice *dev, int *offset_count);
|
2014-02-26 22:59:24 +00:00
|
|
|
|
2015-06-23 21:38:40 +00:00
|
|
|
/**
|
|
|
|
* dm_gpio_lookup_name() - Look up a named GPIO and return its description
|
|
|
|
*
|
|
|
|
* The name of a GPIO is typically its bank name followed by a number from 0.
|
|
|
|
* For example A0 is the first GPIO in bank A. Each bank is a separate driver
|
|
|
|
* model device.
|
|
|
|
*
|
|
|
|
* @name: Name to look up
|
|
|
|
* @desc: Returns description, on success
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int dm_gpio_lookup_name(const char *name, struct gpio_desc *desc);
|
|
|
|
|
2019-06-12 04:11:46 +00:00
|
|
|
/**
|
|
|
|
* gpio_hog_lookup_name() - Look up a named GPIO and return the gpio descr.
|
|
|
|
*
|
|
|
|
* @name: Name to look up
|
2019-07-17 04:59:51 +00:00
|
|
|
* @desc: Returns GPIO description, on success, else NULL
|
|
|
|
* @return: Returns 0 if OK, else -ENODEV
|
2019-06-12 04:11:46 +00:00
|
|
|
*/
|
2019-07-17 04:59:51 +00:00
|
|
|
int gpio_hog_lookup_name(const char *name, struct gpio_desc **desc);
|
2019-06-12 04:11:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gpio_hog_probe_all() - probe all gpio devices with
|
|
|
|
* gpio-hog subnodes.
|
|
|
|
*
|
|
|
|
* @return: Returns return value from device_probe()
|
|
|
|
*/
|
|
|
|
int gpio_hog_probe_all(void);
|
|
|
|
|
2014-02-26 22:59:24 +00:00
|
|
|
/**
|
|
|
|
* gpio_lookup_name - Look up a GPIO name and return its details
|
|
|
|
*
|
|
|
|
* This is used to convert a named GPIO into a device, offset and GPIO
|
|
|
|
* number.
|
|
|
|
*
|
|
|
|
* @name: GPIO name to look up
|
|
|
|
* @devp: Returns pointer to device which contains this GPIO
|
|
|
|
* @offsetp: Returns the offset number within this device
|
|
|
|
* @gpiop: Returns the absolute GPIO number, numbered from 0
|
|
|
|
*/
|
2014-05-22 10:43:05 +00:00
|
|
|
int gpio_lookup_name(const char *name, struct udevice **devp,
|
2014-02-26 22:59:24 +00:00
|
|
|
unsigned int *offsetp, unsigned int *gpiop);
|
|
|
|
|
2014-11-11 01:00:21 +00:00
|
|
|
/**
|
2015-04-15 03:03:20 +00:00
|
|
|
* gpio_get_values_as_int() - Turn the values of a list of GPIOs into an int
|
2014-11-11 01:00:21 +00:00
|
|
|
*
|
|
|
|
* This puts the value of the first GPIO into bit 0, the second into bit 1,
|
|
|
|
* etc. then returns the resulting integer.
|
|
|
|
*
|
|
|
|
* @gpio_list: List of GPIOs to collect
|
2015-04-15 03:03:20 +00:00
|
|
|
* @return resulting integer value, or -ve on error
|
2014-11-11 01:00:21 +00:00
|
|
|
*/
|
2015-04-15 03:03:20 +00:00
|
|
|
int gpio_get_values_as_int(const int *gpio_list);
|
|
|
|
|
2016-03-07 02:27:50 +00:00
|
|
|
/**
|
|
|
|
* dm_gpio_get_values_as_int() - Turn the values of a list of GPIOs into an int
|
|
|
|
*
|
|
|
|
* This puts the value of the first GPIO into bit 0, the second into bit 1,
|
|
|
|
* etc. then returns the resulting integer.
|
|
|
|
*
|
|
|
|
* @desc_list: List of GPIOs to collect
|
|
|
|
* @count: Number of GPIOs
|
|
|
|
* @return resulting integer value, or -ve on error
|
|
|
|
*/
|
2016-03-07 02:27:51 +00:00
|
|
|
int dm_gpio_get_values_as_int(const struct gpio_desc *desc_list, int count);
|
2016-03-07 02:27:50 +00:00
|
|
|
|
2015-04-15 03:03:20 +00:00
|
|
|
/**
|
|
|
|
* gpio_claim_vector() - claim a number of GPIOs for input
|
|
|
|
*
|
|
|
|
* @gpio_num_array: array of gpios to claim, terminated by -1
|
|
|
|
* @fmt: format string for GPIO names, e.g. "board_id%d"
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int gpio_claim_vector(const int *gpio_num_array, const char *fmt);
|
2014-10-08 20:58:03 +00:00
|
|
|
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
/**
|
|
|
|
* gpio_request_by_name() - Locate and request a GPIO by name
|
|
|
|
*
|
|
|
|
* This operates by looking up the given list name in the device (device
|
|
|
|
* tree property) and requesting the GPIO for use. The property must exist
|
|
|
|
* in @dev's node.
|
|
|
|
*
|
|
|
|
* Use @flags to specify whether the GPIO should be an input or output. In
|
|
|
|
* principle this can also come from the device tree binding but most
|
|
|
|
* bindings don't provide this information. Specifically, when the GPIO uclass
|
|
|
|
* calls the xlate() method, it can return default flags, which are then
|
|
|
|
* ORed with this @flags.
|
|
|
|
*
|
|
|
|
* If we find that requesting the GPIO is not always needed we could add a
|
|
|
|
* new function or a new GPIOD_NO_REQUEST flag.
|
|
|
|
*
|
|
|
|
* At present driver model has no reference counting so if one device
|
|
|
|
* requests a GPIO which subsequently is unbound, the @desc->dev pointer
|
|
|
|
* will be invalid. However this will only happen if the GPIO device is
|
|
|
|
* unbound, not if it is removed, so this seems like a reasonable limitation
|
|
|
|
* for now. There is no real use case for unbinding drivers in normal
|
|
|
|
* operation.
|
|
|
|
*
|
|
|
|
* The device tree binding is doc/device-tree-bindings/gpio/gpio.txt in
|
|
|
|
* generate terms and each specific device may add additional details in
|
|
|
|
* a binding file in the same directory.
|
|
|
|
*
|
|
|
|
* @dev: Device requesting the GPIO
|
|
|
|
* @list_name: Name of GPIO list (e.g. "board-id-gpios")
|
|
|
|
* @index: Index number of the GPIO in that list use request (0=first)
|
|
|
|
* @desc: Returns GPIO description information. If there is no such
|
|
|
|
* GPIO, dev->dev will be NULL.
|
|
|
|
* @flags: Indicates the GPIO input/output settings (GPIOD_...)
|
|
|
|
* @return 0 if OK, -ENOENT if the GPIO does not exist, -EINVAL if there is
|
|
|
|
* something wrong with the list, or other -ve for another error (e.g.
|
|
|
|
* -EBUSY if a GPIO was already requested)
|
|
|
|
*/
|
|
|
|
int gpio_request_by_name(struct udevice *dev, const char *list_name,
|
|
|
|
int index, struct gpio_desc *desc, int flags);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gpio_request_list_by_name() - Request a list of GPIOs
|
|
|
|
*
|
2015-05-29 12:57:33 +00:00
|
|
|
* Reads all the GPIOs from a list and requests them. See
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
* gpio_request_by_name() for additional details. Lists should not be
|
|
|
|
* misused to hold unrelated or optional GPIOs. They should only be used
|
|
|
|
* for things like parallel data lines. A zero phandle terminates the list
|
|
|
|
* the list.
|
|
|
|
*
|
|
|
|
* This function will either succeed, and request all GPIOs in the list, or
|
|
|
|
* fail and request none (it will free already-requested GPIOs in case of
|
|
|
|
* an error part-way through).
|
|
|
|
*
|
|
|
|
* @dev: Device requesting the GPIO
|
|
|
|
* @list_name: Name of GPIO list (e.g. "board-id-gpios")
|
|
|
|
* @desc_list: Returns a list of GPIO description information
|
|
|
|
* @max_count: Maximum number of GPIOs to return (@desc_list must be at least
|
|
|
|
* this big)
|
|
|
|
* @flags: Indicates the GPIO input/output settings (GPIOD_...)
|
|
|
|
* @return number of GPIOs requested, or -ve on error
|
|
|
|
*/
|
|
|
|
int gpio_request_list_by_name(struct udevice *dev, const char *list_name,
|
|
|
|
struct gpio_desc *desc_list, int max_count,
|
|
|
|
int flags);
|
|
|
|
|
2015-06-23 21:38:41 +00:00
|
|
|
/**
|
|
|
|
* dm_gpio_request() - manually request a GPIO
|
|
|
|
*
|
|
|
|
* Note: This function should only be used for testing / debugging. Instead.
|
|
|
|
* use gpio_request_by_name() to pull GPIOs from the device tree.
|
|
|
|
*
|
|
|
|
* @desc: GPIO description of GPIO to request (see dm_gpio_lookup_name())
|
|
|
|
* @label: Label to attach to the GPIO while claimed
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int dm_gpio_request(struct gpio_desc *desc, const char *label);
|
|
|
|
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
/**
|
|
|
|
* gpio_get_list_count() - Returns the number of GPIOs in a list
|
|
|
|
*
|
|
|
|
* Counts the GPIOs in a list. See gpio_request_by_name() for additional
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* @dev: Device requesting the GPIO
|
|
|
|
* @list_name: Name of GPIO list (e.g. "board-id-gpios")
|
|
|
|
* @return number of GPIOs (0 for an empty property) or -ENOENT if the list
|
|
|
|
* does not exist
|
|
|
|
*/
|
|
|
|
int gpio_get_list_count(struct udevice *dev, const char *list_name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gpio_request_by_name_nodev() - request GPIOs without a device
|
|
|
|
*
|
|
|
|
* This is a version of gpio_request_list_by_name() that does not use a
|
|
|
|
* device. Avoid it unless the caller is not yet using driver model
|
|
|
|
*/
|
2017-05-31 03:47:09 +00:00
|
|
|
int gpio_request_by_name_nodev(ofnode node, const char *list_name, int index,
|
|
|
|
struct gpio_desc *desc, int flags);
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gpio_request_list_by_name_nodev() - request GPIOs without a device
|
|
|
|
*
|
|
|
|
* This is a version of gpio_request_list_by_name() that does not use a
|
|
|
|
* device. Avoid it unless the caller is not yet using driver model
|
|
|
|
*/
|
2017-05-31 03:47:09 +00:00
|
|
|
int gpio_request_list_by_name_nodev(ofnode node, const char *list_name,
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
struct gpio_desc *desc_list, int max_count,
|
|
|
|
int flags);
|
|
|
|
|
2019-06-12 04:11:46 +00:00
|
|
|
/**
|
|
|
|
* gpio_dev_request_index() - request single GPIO from gpio device
|
|
|
|
*
|
|
|
|
* @dev: GPIO device
|
2019-07-17 04:59:51 +00:00
|
|
|
* @nodename: Name of node for which gpio gets requested, used
|
|
|
|
* for the gpio label name
|
2019-06-12 04:11:46 +00:00
|
|
|
* @list_name: Name of GPIO list (e.g. "board-id-gpios")
|
|
|
|
* @index: Index number of the GPIO in that list use request (0=first)
|
|
|
|
* @flags: GPIOD_* flags
|
2019-07-17 04:59:51 +00:00
|
|
|
* @dtflags: GPIO flags read from DT defined see GPIOD_*
|
|
|
|
* @desc: returns GPIO descriptor filled from this function
|
2019-06-12 04:11:46 +00:00
|
|
|
* @return: return value from gpio_request_tail()
|
|
|
|
*/
|
|
|
|
int gpio_dev_request_index(struct udevice *dev, const char *nodename,
|
|
|
|
char *list_name, int index, int flags,
|
|
|
|
int dtflags, struct gpio_desc *desc);
|
|
|
|
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
/**
|
|
|
|
* dm_gpio_free() - Free a single GPIO
|
|
|
|
*
|
|
|
|
* This frees a single GPIOs previously returned from gpio_request_by_name().
|
|
|
|
*
|
|
|
|
* @dev: Device which requested the GPIO
|
|
|
|
* @desc: GPIO to free
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int dm_gpio_free(struct udevice *dev, struct gpio_desc *desc);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gpio_free_list() - Free a list of GPIOs
|
|
|
|
*
|
|
|
|
* This frees a list of GPIOs previously returned from
|
|
|
|
* gpio_request_list_by_name().
|
|
|
|
*
|
|
|
|
* @dev: Device which requested the GPIOs
|
|
|
|
* @desc: List of GPIOs to free
|
|
|
|
* @count: Number of GPIOs in the list
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int gpio_free_list(struct udevice *dev, struct gpio_desc *desc, int count);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gpio_free_list_nodev() - free GPIOs without a device
|
|
|
|
*
|
|
|
|
* This is a version of gpio_free_list() that does not use a
|
|
|
|
* device. Avoid it unless the caller is not yet using driver model
|
|
|
|
*/
|
|
|
|
int gpio_free_list_nodev(struct gpio_desc *desc, int count);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dm_gpio_get_value() - Get the value of a GPIO
|
|
|
|
*
|
|
|
|
* This is the driver model version of the existing gpio_get_value() function
|
|
|
|
* and should be used instead of that.
|
|
|
|
*
|
|
|
|
* For now, these functions have a dm_ prefix since they conflict with
|
|
|
|
* existing names.
|
|
|
|
*
|
|
|
|
* @desc: GPIO description containing device, offset and flags,
|
|
|
|
* previously returned by gpio_request_by_name()
|
|
|
|
* @return GPIO value (0 for inactive, 1 for active) or -ve on error
|
|
|
|
*/
|
2016-03-07 02:27:51 +00:00
|
|
|
int dm_gpio_get_value(const struct gpio_desc *desc);
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
|
2016-03-07 02:27:51 +00:00
|
|
|
int dm_gpio_set_value(const struct gpio_desc *desc, int value);
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* dm_gpio_set_dir() - Set the direction for a GPIO
|
|
|
|
*
|
2020-01-13 10:35:06 +00:00
|
|
|
* This sets up the direction according to the GPIO flags: desc->flags.
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
*
|
|
|
|
* @desc: GPIO description containing device, offset and flags,
|
|
|
|
* previously returned by gpio_request_by_name()
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int dm_gpio_set_dir(struct gpio_desc *desc);
|
|
|
|
|
|
|
|
/**
|
2020-01-13 10:35:06 +00:00
|
|
|
* dm_gpio_set_dir_flags() - Set direction using description and added flags
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
*
|
2020-01-13 10:35:06 +00:00
|
|
|
* This sets up the direction according to the provided flags and the GPIO
|
|
|
|
* description (desc->flags) which include direction information.
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
* Note that desc->flags is updated by this function.
|
|
|
|
*
|
|
|
|
* @desc: GPIO description containing device, offset and flags,
|
|
|
|
* previously returned by gpio_request_by_name()
|
|
|
|
* @flags: New flags to use
|
|
|
|
* @return 0 if OK, -ve on error, in which case desc->flags is not updated
|
|
|
|
*/
|
|
|
|
int dm_gpio_set_dir_flags(struct gpio_desc *desc, ulong flags);
|
|
|
|
|
2020-01-13 10:35:06 +00:00
|
|
|
/**
|
|
|
|
* dm_gpio_get_dir_flags() - Get direction flags
|
|
|
|
*
|
|
|
|
* read the current direction flags
|
|
|
|
*
|
|
|
|
* @desc: GPIO description containing device, offset and flags,
|
|
|
|
* previously returned by gpio_request_by_name()
|
|
|
|
* @flags: place to put the used flags
|
|
|
|
* @return 0 if OK, -ve on error, in which case desc->flags is not updated
|
|
|
|
*/
|
|
|
|
int dm_gpio_get_dir_flags(struct gpio_desc *desc, ulong *flags);
|
|
|
|
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
/**
|
|
|
|
* gpio_get_number() - Get the global GPIO number of a GPIO
|
|
|
|
*
|
2015-05-29 12:57:33 +00:00
|
|
|
* This should only be used for debugging or interest. It returns the number
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
* that should be used for gpio_get_value() etc. to access this GPIO.
|
|
|
|
*
|
|
|
|
* @desc: GPIO description containing device, offset and flags,
|
|
|
|
* previously returned by gpio_request_by_name()
|
|
|
|
* @return GPIO number, or -ve if not found
|
|
|
|
*/
|
2016-03-07 02:27:51 +00:00
|
|
|
int gpio_get_number(const struct gpio_desc *desc);
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
|
2011-11-11 21:55:35 +00:00
|
|
|
#endif /* _ASM_GENERIC_GPIO_H_ */
|