mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	Add initial support for the Ingenic JZ47xx MIPS SoC. Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Signed-off-by: Paul Burton <paul.burton@imgtec.com> Signed-off-by: Marek Vasut <marek.vasut@gmail.com> Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> Reviewed-by: Marek Vasut <marex@denx.de>
		
			
				
	
	
		
			13 lines
		
	
	
		
			318 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			318 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| 
 | |
| #ifndef __JZ4780_GPIO_H__
 | |
| #define __JZ4780_GPIO_H__
 | |
| 
 | |
| #define JZ_GPIO(bank, pin) ((32 * (bank)) + (pin))
 | |
| 
 | |
| int jz47xx_gpio_get_value(unsigned int gpio);
 | |
| void jz47xx_gpio_direction_input(unsigned int gpio);
 | |
| void jz47xx_gpio_direction_output(unsigned int gpio, int value);
 | |
| 
 | |
| #endif
 |