Lines Matching defs:pin
9 * ZynqMP system level PM-API functions for pin control.
30 /* Max groups for one pin */
2068 * pm_api_pinctrl_get_pin_groups() - PM call to request first 6 pin
2069 * groups of pin.
2070 * @pin: Pin.
2071 * @index: Index of next pin groups.
2072 * @groups: pin groups.
2074 * This function is used by master to get pin groups specified
2075 * by given pin Id. This API will return 6 pin groups with
2076 * a single response. To get other pin groups, master should call
2077 * same API in loop with new pin groups index till error is returned.
2079 * E.g First call should have index 0 which will return pin groups
2081 * pin groups 6, 7, 8, 9, 10 and 11 and so on.
2086 enum pm_ret_status pm_api_pinctrl_get_pin_groups(uint32_t pin,
2093 if (pin >= MAX_PIN) {
2099 grps = *zynqmp_pin_groups[pin].groups;