Thierry Reding | f368559 | 2011-11-17 00:10:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011, Google Inc. All rights reserved. |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 3 | * SPDX-License-Identifier: GPL-2.0+ |
Thierry Reding | f368559 | 2011-11-17 00:10:23 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 6 | #ifndef _TEGRA_GPIO_H_ |
| 7 | #define _TEGRA_GPIO_H_ |
Thierry Reding | f368559 | 2011-11-17 00:10:23 +0000 | [diff] [blame] | 8 | |
Stephen Warren | 7f20bb2 | 2016-05-12 12:07:39 -0600 | [diff] [blame] | 9 | #include <dt-bindings/gpio/tegra-gpio.h> |
| 10 | |
Simon Glass | b046104 | 2014-09-03 17:37:03 -0600 | [diff] [blame] | 11 | #define TEGRA_GPIOS_PER_PORT 8 |
| 12 | #define TEGRA_PORTS_PER_BANK 4 |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 13 | #define MAX_NUM_GPIOS (TEGRA_GPIO_PORTS * TEGRA_GPIO_BANKS * 8) |
| 14 | #define GPIO_NAME_SIZE 20 /* gpio_request max label len */ |
| 15 | |
| 16 | #define GPIO_BANK(x) ((x) >> 5) |
| 17 | #define GPIO_PORT(x) (((x) >> 3) & 0x3) |
| 18 | #define GPIO_FULLPORT(x) ((x) >> 3) |
| 19 | #define GPIO_BIT(x) ((x) & 0x7) |
| 20 | |
Stephen Warren | 4b27bf1 | 2014-04-22 14:37:53 -0600 | [diff] [blame] | 21 | enum tegra_gpio_init { |
| 22 | TEGRA_GPIO_INIT_IN, |
| 23 | TEGRA_GPIO_INIT_OUT0, |
| 24 | TEGRA_GPIO_INIT_OUT1, |
| 25 | }; |
| 26 | |
| 27 | struct tegra_gpio_config { |
| 28 | u32 gpio:16; |
| 29 | u32 init:2; |
| 30 | }; |
| 31 | |
Simon Glass | b046104 | 2014-09-03 17:37:03 -0600 | [diff] [blame] | 32 | /** |
Stephen Warren | 4b27bf1 | 2014-04-22 14:37:53 -0600 | [diff] [blame] | 33 | * Configure a list of GPIOs |
| 34 | * |
| 35 | * @param config List of GPIO configurations |
| 36 | * @param len Number of config items in list |
| 37 | */ |
| 38 | void gpio_config_table(const struct tegra_gpio_config *config, int len); |
| 39 | |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 40 | #endif /* TEGRA_GPIO_H_ */ |