blob: 5d25d04c3bf68f45560aa120faf4182cefca8930 [file] [log] [blame]
Tom Rix0c872ec2009-05-15 23:48:36 +02001/*
2 * Copyright (c) 2009 Wind River Systems, Inc.
3 * Tom Rix <Tom.Rix@windriver.com>
4 *
Wolfgang Denkbcd4d4e2013-07-28 22:12:44 +02005 * SPDX-License-Identifier: GPL-2.0
Tom Rix0c872ec2009-05-15 23:48:36 +02006 *
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>
Tom Rix0c872ec2009-05-15 23:48:36 +020020 */
21#ifndef _GPIO_H
22#define _GPIO_H
23
Aneesh V25223a62011-07-21 09:29:29 -040024#include <asm/arch/cpu.h>
Tom Rix0c872ec2009-05-15 23:48:36 +020025
26struct gpio_bank {
27 void *base;
28 int method;
29};
30
Aneesh V25223a62011-07-21 09:29:29 -040031extern const struct gpio_bank *const omap_gpio_bank;
32
Tom Rix0c872ec2009-05-15 23:48:36 +020033#define METHOD_GPIO_24XX 4
34
Nikita Kiryanovdcee1ab2012-11-27 22:40:57 +000035/**
36 * Check if gpio is valid.
37 *
38 * @param gpio GPIO number
39 * @return 1 if ok, 0 on error
40 */
41int gpio_is_valid(int gpio);
Tom Rix0c872ec2009-05-15 23:48:36 +020042#endif /* _GPIO_H_ */