Lines Matching refs:group
121 * struct ti_iodelay_pingroup - Structure that describes one group
369 * ti_iodelay_get_pingroup() - Find the group mapped by a group selector
373 * Return: Corresponding group representing group selector
419 * @pins: Array of pins in the pin group
472 * ti_iodelay_dt_node_to_map() - Map a device tree node to appropriate group
478 * Maps the device tree description into a group of configuration parameters
566 * ti_iodelay_pinconf_group_get() - Get the group configuration
571 * Return: The configuration if the group is valid, else returns -EINVAL
578 struct ti_iodelay_pingroup *group;
581 group = ti_iodelay_get_pingroup(iod, selector);
583 if (!group)
586 *config = group->config;
606 struct ti_iodelay_pingroup *group;
611 group = ti_iodelay_get_pingroup(iod, selector);
624 for (i = 0; i < group->ncfg; i++) {
625 if (ti_iodelay_pinconf_set(iod, &group->cfg[i]))
682 * ti_iodelay_pinconf_group_dbg_show() - show the group information
683 * @pctldev: Show the group information
687 * Provide the configuration information of the selected group
694 struct ti_iodelay_pingroup *group;
698 group = ti_iodelay_get_pingroup(iod, selector);
699 if (!group)
702 for (i = 0; i < group->ncfg; i++) {
706 cfg = &group->cfg[i];