blob: 9ae2a8f7f0fb3c1042a7cb8018549a584aef101b [file] [log] [blame]
#ifndef GPIO_NAMES_GPIO_GROUPS_H
#define GPIO_NAMES_GPIO_GROUPS_H
struct gpio_group {
const char *display;
size_t pad_count;
size_t func_count;
/*
* This field is necessary for EBG, since the pad configuration registers
* within a community are no longer contiguous.
*/
uint32_t pad_offset;
const char *const *pad_names; /* indexed by 'pad * func_count + func' */
};
struct gpio_community {
const char *name;
uint8_t pcr_port_id;
size_t group_count;
const struct gpio_group *const *groups;
};
#endif