blob: 1e44fb5ae97aac33e7f24ba3996eb092200f3aad [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Sricharan9310ff72011-11-15 09:49:55 -05002/*
3 * Copyright (c) 2009 Wind River Systems, Inc.
4 * Tom Rix <Tom.Rix@windriver.com>
5 *
Sricharan9310ff72011-11-15 09:49:55 -05006 * This work is derived from the linux 2.6.27 kernel source
7 * To fetch, use the kernel repository
8 * git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
9 * Use the v2.6.27 tag.
10 *
11 * Below is the original's header including its copyright
12 *
13 * linux/arch/arm/plat-omap/gpio.c
14 *
15 * Support functions for OMAP GPIO
16 *
17 * Copyright (C) 2003-2005 Nokia Corporation
18 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
Sricharan9310ff72011-11-15 09:49:55 -050019 */
20#ifndef _GPIO_OMAP5_H
21#define _GPIO_OMAP5_H
22
23#include <asm/omap_gpio.h>
24
Axel Lin01a461f2013-06-21 18:54:25 +080025#define OMAP_MAX_GPIO 256
26
Sricharan9310ff72011-11-15 09:49:55 -050027#define OMAP54XX_GPIO1_BASE 0x4Ae10000
28#define OMAP54XX_GPIO2_BASE 0x48055000
29#define OMAP54XX_GPIO3_BASE 0x48057000
30#define OMAP54XX_GPIO4_BASE 0x48059000
31#define OMAP54XX_GPIO5_BASE 0x4805B000
32#define OMAP54XX_GPIO6_BASE 0x4805D000
Axel Lin01a461f2013-06-21 18:54:25 +080033#define OMAP54XX_GPIO7_BASE 0x48051000
34#define OMAP54XX_GPIO8_BASE 0x48053000
Sricharan9310ff72011-11-15 09:49:55 -050035
Roger Quadros3ca50702017-03-13 15:04:24 +020036
37/* Get the GPIO index from the given bank number and bank gpio */
38#define GPIO_TO_PIN(bank, bank_gpio) (32 * (bank - 1) + (bank_gpio))
39
Sricharan9310ff72011-11-15 09:49:55 -050040#endif /* _GPIO_OMAP5_H */