Aneesh V | 080a46e | 2011-07-31 20:30:53 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2009 Wind River Systems, Inc. |
| 3 | * Tom Rix <Tom.Rix@windriver.com> |
| 4 | * |
Wolfgang Denk | bcd4d4e | 2013-07-28 22:12:44 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0 |
Aneesh V | 080a46e | 2011-07-31 20:30:53 +0000 | [diff] [blame] | 6 | * |
| 7 | * This work is derived from the linux 2.6.27 kernel source |
| 8 | * To fetch, use the kernel repository |
| 9 | * git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git |
| 10 | * Use the v2.6.27 tag. |
| 11 | * |
| 12 | * Below is the original's header including its copyright |
| 13 | * |
| 14 | * linux/arch/arm/plat-omap/gpio.c |
| 15 | * |
| 16 | * Support functions for OMAP GPIO |
| 17 | * |
| 18 | * Copyright (C) 2003-2005 Nokia Corporation |
| 19 | * Written by Juha Yrjölä <juha.yrjola@nokia.com> |
Aneesh V | 080a46e | 2011-07-31 20:30:53 +0000 | [diff] [blame] | 20 | */ |
| 21 | #ifndef _GPIO_OMAP3_H |
| 22 | #define _GPIO_OMAP3_H |
| 23 | |
| 24 | #include <asm/omap_gpio.h> |
| 25 | |
Axel Lin | 87bd05d | 2013-06-21 18:54:25 +0800 | [diff] [blame] | 26 | #define OMAP_MAX_GPIO 192 |
| 27 | |
Aneesh V | 080a46e | 2011-07-31 20:30:53 +0000 | [diff] [blame] | 28 | #define OMAP34XX_GPIO1_BASE 0x48310000 |
| 29 | #define OMAP34XX_GPIO2_BASE 0x49050000 |
| 30 | #define OMAP34XX_GPIO3_BASE 0x49052000 |
| 31 | #define OMAP34XX_GPIO4_BASE 0x49054000 |
| 32 | #define OMAP34XX_GPIO5_BASE 0x49056000 |
| 33 | #define OMAP34XX_GPIO6_BASE 0x49058000 |
| 34 | |
| 35 | #endif /* _GPIO_OMAP3_H */ |