Lines Matching +full:pin +full:- +full:controllers
1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Core pinctrl/GPIO driver for Intel GPIO controllers
26 * struct intel_pingroup - Description about group of pins
27 * @grp: Generic data of the pin group (name and pins)
29 * @modes: If not %NULL this will hold mode for each pin in @pins
38 * struct intel_function - Description about a function
39 * @func: Generic data of the pin function (name and groups of pins)
48 * struct intel_padgroup - Hardware pad group information
50 * @base: Starting pin of this group
67 * enum - Special treatment for GPIO base in pad group
71 * @INTEL_GPIO_BASE_MATCH: matches with starting pin number
74 INTEL_GPIO_BASE_ZERO = -2,
75 INTEL_GPIO_BASE_NOMAP = -1,
84 .size = ((e) - (s) + 1), \
89 * struct intel_community - Intel pin community description
96 * is assumed that the host owns the pin (rather than
101 * @pin_base: Starting pin of pins in this community
109 * @pad_map: Optional non-linear mapping of the pads
115 * In older Intel GPIO host controllers, this driver supports, each pad group
120 * In newer Intel GPIO host controllers each pad group is of variable size,
165 .npins = ((e) - (s) + 1), \
177 * PIN_GROUP - Declare a pin group
182 * pin.
201 * struct intel_pinctrl_soc_data - Intel pin controller per-SoC configuration
205 * @groups: Array of pin groups
233 * struct intel_pinctrl_context - context to be saved during suspend-resume
243 * struct intel_pinctrl - Intel pinctrl private structure
246 * @pctldesc: Pin controller description
247 * @pctldev: Pointer to the pin controller device
248 * @chip: GPIO chip in this pin controller
249 * @soc: SoC/PCH specific pin configuration data
250 * @communities: All communities in this pin controller
251 * @ncommunities: Number of communities in this pin controller
277 unsigned int pin);