blob: 4762de0243862c836034677a05b93c69ab08a33b [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#ifndef _ASM_MICROBLAZE_GPIO_H_
2#define _ASM_MICROBLAZE_GPIO_H_
3
4#include <asm-generic/gpio.h>
5
6/* Allocation functions */
7extern int gpio_alloc_dual(u32 baseaddr, const char *name, u32 gpio_no0,
8 u32 gpio_no1);
9extern int gpio_alloc(u32 baseaddr, const char *name, u32 gpio_no);
10
11#define gpio_status() gpio_info()
12extern void gpio_info(void);
13
14#endif