Lines Matching refs:group
123 * struct ti_iodelay_pingroup - Structure that describes one group
371 * ti_iodelay_get_pingroup() - Find the group mapped by a group selector
375 * Return: Corresponding group representing group selector
421 * @pins: Array of pins in the pin group
474 * ti_iodelay_dt_node_to_map() - Map a device tree node to appropriate group
480 * Maps the device tree description into a group of configuration parameters
570 * ti_iodelay_pinconf_group_get() - Get the group configuration
575 * Return: The configuration if the group is valid, else returns -EINVAL
582 struct ti_iodelay_pingroup *group;
585 group = ti_iodelay_get_pingroup(iod, selector);
587 if (!group)
590 *config = group->config;
610 struct ti_iodelay_pingroup *group;
615 group = ti_iodelay_get_pingroup(iod, selector);
628 for (i = 0; i < group->ncfg; i++) {
629 if (ti_iodelay_pinconf_set(iod, &group->cfg[i]))
686 * ti_iodelay_pinconf_group_dbg_show() - show the group information
687 * @pctldev: Show the group information
691 * Provide the configuration information of the selected group
698 struct ti_iodelay_pingroup *group;
702 group = ti_iodelay_get_pingroup(iod, selector);
703 if (!group)
706 for (i = 0; i < group->ncfg; i++) {
710 cfg = &group->cfg[i];