Lines Matching +full:pinctrl +full:- +full:pin +full:- +full:array

1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * pin-controller/pin-mux/pin-config/gpio-driver for Samsung's SoC's.
16 #include <linux/pinctrl/pinctrl.h>
17 #include <linux/pinctrl/pinmux.h>
18 #include <linux/pinctrl/pinconf.h>
19 #include <linux/pinctrl/consumer.h>
20 #include <linux/pinctrl/machine.h>
25 * enum pincfg_type - possible pin configuration types supported.
27 * @PINCFG_TYPE_DAT: Pin value configuration.
30 * @PINCFG_TYPE_CON_PDN: Pin function in power down mode.
45 * pin configuration (pull up/down and drive strength) type and its value are
46 * packed together into a 16-bits. The upper 8-bits represent the configuration
47 * type and the lower 8-bits hold the value of the configuration type.
57 * Values for the pin CON register, choosing pin function.
65 * enum eint_type - possible external interrupt types.
72 * in a pin bank can support external gpio interrupts or external wakeup
85 /* maximum length of a pin in pin descriptor (example: "gpa0-0") */
106 * struct samsung_pin_bank_type: pin bank type description
116 * struct samsung_pin_bank_data: represent a controller pin-bank (init data).
118 * @pctl_offset: starting offset of the pin-bank registers.
119 * @pctl_res_idx: index of base address for pin-bank registers.
121 * @eint_func: function to set in CON register to configure pin as EINT.
124 * @eint_offset: SoC-specific EINT register or interrupt offset of bank.
125 * @eint_con_offset: ExynosAuto SoC-specific EINT control register offset of bank.
126 * @eint_mask_offset: ExynosAuto SoC-specific EINT mask register offset of bank.
127 * @eint_pend_offset: ExynosAuto SoC-specific EINT pend register offset of bank.
128 * @name: name to be prefixed for each pin in this pin bank.
146 * struct samsung_pin_bank: represent a controller pin-bank.
148 * @pctl_base: base address of the pin-bank registers
149 * @pctl_offset: starting offset of the pin-bank registers.
151 * @eint_base: base address of the pin-bank EINT registers.
152 * @eint_func: function to set in CON register to configure pin as EINT.
155 * @eint_offset: SoC-specific EINT register or interrupt offset of bank.
156 * @eint_con_offset: ExynosAuto SoC-specific EINT register or interrupt offset of bank.
157 * @eint_mask_offset: ExynosAuto SoC-specific EINT mask register offset of bank.
158 * @eint_pend_offset: ExynosAuto SoC-specific EINT pend register offset of bank.
159 * @name: name to be prefixed for each pin in this pin bank.
160 * @id: id of the bank, propagated to the pin range.
161 * @pin_base: starting pin number of the bank.
162 * @soc_priv: per-bank private data for SoC-specific code.
167 * @grange: linux gpio pin range supported by this bank.
202 * struct samsung_retention_data: runtime pin-bank retention control data.
203 * @regs: array of PMU registers to control pad retention.
204 * @nr_regs: number of registers in @regs array.
222 * struct samsung_retention_data: represent a pin-bank retention control data.
223 * @regs: array of PMU registers to control pad retention.
224 * @nr_regs: number of registers in @regs array.
239 * struct samsung_pin_ctrl: represent a pin controller.
240 * @pin_banks: list of pin banks included in this controller.
241 * @nr_banks: number of pin banks.
242 * @nr_ext_resources: number of the extra base address for pin banks.
248 * @suspend: platform specific suspend callback, executed during pin controller
250 * @resume: platform specific resume callback, executed during pin controller
272 * to each bank samsung_pin_bank->pctl_base and used on legacy
277 * @ctrl: pin controller instance managed by the driver.
278 * @pctl: pin controller descriptor registered with the pinctrl subsystem.
279 * @pctl_dev: cookie representing pinctrl device instance.
280 * @pin_groups: list of pin groups available to the driver.
281 * @nr_groups: number of such pin groups.
282 * @pmx_functions: list of pin functions available to the driver.
283 * @nr_function: number of such pin functions.
286 * @suspend: platform specific suspend callback, executed during pin controller
288 * @resume: platform specific resume callback, executed during pin controller
317 * @ctrl: array of pin controller data.
318 * @num_ctrl: size of array @ctrl.
327 * @name: name of the pin group, used to lookup the group.
340 * struct samsung_pmx_func: represent a pin function.
341 * @name: name of the pin function, used to lookup the function.
342 * @groups: one or more names of pin groups that provide this function.