 6eae43c57e
			
		
	
	
	6eae43c57e
	
	
	
		
			
			This patch implements generic GPIO routines for the built-in GPIO controllers of the Atheros AR71XX/AR724X/AR913X SoCs. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Signed-off-by: Imre Kaloz <kaloz@openwrt.org> Cc: David Brownell <dbrownell@users.sourceforge.net> Cc: linux-mips@linux-mips.org Cc: Luis R. Rodriguez <lrodriguez@atheros.com> Cc: Cliff Holden <Cliff.Holden@Atheros.com> Cc: Kathy Giori <Kathy.Giori@Atheros.com> Patchwork: https://patchwork.linux-mips.org/patch/1948/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			719 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			719 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *  Atheros AR71XX/AR724X/AR913X GPIO API definitions
 | |
|  *
 | |
|  *  Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
 | |
|  *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
 | |
|  *
 | |
|  *  This program is free software; you can redistribute it and/or modify it
 | |
|  *  under the terms of the GNU General Public License version 2 as published
 | |
|  *  by the Free Software Foundation.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef __ASM_MACH_ATH79_GPIO_H
 | |
| #define __ASM_MACH_ATH79_GPIO_H
 | |
| 
 | |
| #define ARCH_NR_GPIOS	64
 | |
| #include <asm-generic/gpio.h>
 | |
| 
 | |
| int gpio_to_irq(unsigned gpio);
 | |
| int irq_to_gpio(unsigned irq);
 | |
| int gpio_get_value(unsigned gpio);
 | |
| void gpio_set_value(unsigned gpio, int value);
 | |
| 
 | |
| #define gpio_cansleep	__gpio_cansleep
 | |
| 
 | |
| #endif /* __ASM_MACH_ATH79_GPIO_H */
 |