1*83d290c5STom Rini /* SPDX-License-Identifier: GPL-2.0+ */ 2999c6bafSTom Warren /* 3999c6bafSTom Warren * (C) Copyright 2013 4999c6bafSTom Warren * NVIDIA Corporation <www.nvidia.com> 5999c6bafSTom Warren */ 6999c6bafSTom Warren 7999c6bafSTom Warren #ifndef _TEGRA124_GPIO_H_ 8999c6bafSTom Warren #define _TEGRA124_GPIO_H_ 9999c6bafSTom Warren 10999c6bafSTom Warren /* 11999c6bafSTom Warren * The Tegra124 GPIO controller has 256 GPIOS in 8 banks of 4 ports, 12999c6bafSTom Warren * each with 8 GPIOs. 13999c6bafSTom Warren */ 14999c6bafSTom Warren #define TEGRA_GPIO_PORTS 4 /* number of ports per bank */ 15999c6bafSTom Warren #define TEGRA_GPIO_BANKS 8 /* number of banks */ 16999c6bafSTom Warren 17999c6bafSTom Warren #include <asm/arch-tegra/gpio.h> 18999c6bafSTom Warren 19999c6bafSTom Warren /* GPIO Controller registers for a single bank */ 20999c6bafSTom Warren struct gpio_ctlr_bank { 21999c6bafSTom Warren uint gpio_config[TEGRA_GPIO_PORTS]; 22999c6bafSTom Warren uint gpio_dir_out[TEGRA_GPIO_PORTS]; 23999c6bafSTom Warren uint gpio_out[TEGRA_GPIO_PORTS]; 24999c6bafSTom Warren uint gpio_in[TEGRA_GPIO_PORTS]; 25999c6bafSTom Warren uint gpio_int_status[TEGRA_GPIO_PORTS]; 26999c6bafSTom Warren uint gpio_int_enable[TEGRA_GPIO_PORTS]; 27999c6bafSTom Warren uint gpio_int_level[TEGRA_GPIO_PORTS]; 28999c6bafSTom Warren uint gpio_int_clear[TEGRA_GPIO_PORTS]; 29999c6bafSTom Warren uint gpio_masked_config[TEGRA_GPIO_PORTS]; 30999c6bafSTom Warren uint gpio_masked_dir_out[TEGRA_GPIO_PORTS]; 31999c6bafSTom Warren uint gpio_masked_out[TEGRA_GPIO_PORTS]; 32999c6bafSTom Warren uint gpio_masked_in[TEGRA_GPIO_PORTS]; 33999c6bafSTom Warren uint gpio_masked_int_status[TEGRA_GPIO_PORTS]; 34999c6bafSTom Warren uint gpio_masked_int_enable[TEGRA_GPIO_PORTS]; 35999c6bafSTom Warren uint gpio_masked_int_level[TEGRA_GPIO_PORTS]; 36999c6bafSTom Warren uint gpio_masked_int_clear[TEGRA_GPIO_PORTS]; 37999c6bafSTom Warren }; 38999c6bafSTom Warren 39999c6bafSTom Warren struct gpio_ctlr { 40999c6bafSTom Warren struct gpio_ctlr_bank gpio_bank[TEGRA_GPIO_BANKS]; 41999c6bafSTom Warren }; 42999c6bafSTom Warren 43999c6bafSTom Warren #endif /* _TEGRA124_GPIO_H_ */ 44