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.
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
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_
|
|
|
|
|
2011-10-07 13:53:50 +00:00
|
|
|
/*
|
|
|
|
* Generic GPIO API for U-Boot
|
|
|
|
*
|
|
|
|
* 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
|
|
|
/**
|
2012-11-26 23:06:32 +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
|
|
|
*
|
2012-11-26 23:06:32 +00:00
|
|
|
* @param gp GPIO number
|
|
|
|
* @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);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
|
|
|
/**
|
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);
|
|
|
|
#endif /* _ASM_GENERIC_GPIO_H_ */
|