mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
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
|