1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Marvell MVEBU pinctrl driver
5 * Authors: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 #ifndef __PINCTRL_MVEBU_H__
10 #define __PINCTRL_MVEBU_H__
13 * struct mvebu_mpp_ctrl_data - private data for the mpp ctrl operations
14 * @base: base address of pinctrl hardware
15 * @regmap.map: regmap structure
16 * @regmap.offset: regmap offset
18 struct mvebu_mpp_ctrl_data
{
29 * struct mvebu_mpp_ctrl - describe a mpp control
30 * @name: name of the control group
31 * @pid: first pin id handled by this control
32 * @npins: number of pins controlled by this control
33 * @mpp_get: (optional) special function to get mpp setting
34 * @mpp_set: (optional) special function to set mpp setting
35 * @mpp_gpio_req: (optional) special function to request gpio
36 * @mpp_gpio_dir: (optional) special function to set gpio direction
38 * A mpp_ctrl describes a muxable unit, e.g. pin, group of pins, or
39 * internal function, inside the SoC. Each muxable unit can be switched
40 * between two or more different settings, e.g. assign mpp pin 13 to
43 * The mpp_get/_set functions are mandatory and are used to get/set a
44 * specific mode. The optional mpp_gpio_req/_dir functions can be used
45 * to allow pin settings with varying gpio pins.
47 struct mvebu_mpp_ctrl
{
52 int (*mpp_get
)(struct mvebu_mpp_ctrl_data
*data
, unsigned pid
,
53 unsigned long *config
);
54 int (*mpp_set
)(struct mvebu_mpp_ctrl_data
*data
, unsigned pid
,
55 unsigned long config
);
56 int (*mpp_gpio_req
)(struct mvebu_mpp_ctrl_data
*data
, unsigned pid
);
57 int (*mpp_gpio_dir
)(struct mvebu_mpp_ctrl_data
*data
, unsigned pid
,
62 * struct mvebu_mpp_ctrl_setting - describe a mpp ctrl setting
63 * @val: ctrl setting value
64 * @name: ctrl setting name, e.g. uart2, spi0 - unique per mpp_mode
65 * @subname: (optional) additional ctrl setting name, e.g. rts, cts
66 * @variant: (optional) variant identifier mask
67 * @flags: (private) flags to store gpi/gpo/gpio capabilities
69 * A ctrl_setting describes a specific internal mux function that a mpp pin
70 * can be switched to. The value (val) will be written in the corresponding
71 * register for common mpp pin configuration registers on MVEBU. SoC specific
72 * mpp_get/_set function may use val to distinguish between different settings.
74 * The name will be used to switch to this setting in DT description, e.g.
75 * marvell,function = "uart2". subname is only for debugging purposes.
77 * If name is one of "gpi", "gpo", "gpio" gpio capabilities are
78 * parsed during initialization and stored in flags.
80 * The variant can be used to combine different revisions of one SoC to a
81 * common pinctrl driver. It is matched (AND) with variant of soc_info to
82 * determine if a setting is available on the current SoC revision.
84 struct mvebu_mpp_ctrl_setting
{
90 #define MVEBU_SETTING_GPO (1 << 0)
91 #define MVEBU_SETTING_GPI (1 << 1)
95 * struct mvebu_mpp_mode - link ctrl and settings
96 * @pid: first pin id handled by this mode
97 * @settings: list of settings available for this mode
99 * A mode connects all available settings with the corresponding mpp_ctrl
102 struct mvebu_mpp_mode
{
104 struct mvebu_mpp_ctrl_setting
*settings
;
108 * struct mvebu_pinctrl_soc_info - SoC specific info passed to pinctrl-mvebu
109 * @variant: variant mask of soc_info
110 * @controls: list of available mvebu_mpp_ctrls
111 * @control_data: optional array, one entry for each control
112 * @ncontrols: number of available mvebu_mpp_ctrls
113 * @modes: list of available mvebu_mpp_modes
114 * @nmodes: number of available mvebu_mpp_modes
115 * @gpioranges: list of pinctrl_gpio_ranges
116 * @ngpioranges: number of available pinctrl_gpio_ranges
118 * This struct describes all pinctrl related information for a specific SoC.
119 * If variant is unequal 0 it will be matched (AND) with variant of each
120 * setting and allows to distinguish between different revisions of one SoC.
122 struct mvebu_pinctrl_soc_info
{
124 const struct mvebu_mpp_ctrl
*controls
;
125 struct mvebu_mpp_ctrl_data
*control_data
;
127 struct mvebu_mpp_mode
*modes
;
129 struct pinctrl_gpio_range
*gpioranges
;
133 #define MPP_FUNC_CTRL(_idl, _idh, _name, _func) \
137 .npins = _idh - _idl + 1, \
138 .pins = (unsigned[_idh - _idl + 1]) { }, \
139 .mpp_get = _func ## _get, \
140 .mpp_set = _func ## _set, \
141 .mpp_gpio_req = NULL, \
142 .mpp_gpio_dir = NULL, \
145 #define MPP_FUNC_GPIO_CTRL(_idl, _idh, _name, _func) \
149 .npins = _idh - _idl + 1, \
150 .pins = (unsigned[_idh - _idl + 1]) { }, \
151 .mpp_get = _func ## _get, \
152 .mpp_set = _func ## _set, \
153 .mpp_gpio_req = _func ## _gpio_req, \
154 .mpp_gpio_dir = _func ## _gpio_dir, \
157 #define _MPP_VAR_FUNCTION(_val, _name, _subname, _mask) \
161 .subname = _subname, \
166 #if defined(CONFIG_DEBUG_FS)
167 #define MPP_VAR_FUNCTION(_val, _name, _subname, _mask) \
168 _MPP_VAR_FUNCTION(_val, _name, _subname, _mask)
170 #define MPP_VAR_FUNCTION(_val, _name, _subname, _mask) \
171 _MPP_VAR_FUNCTION(_val, _name, NULL, _mask)
174 #define MPP_FUNCTION(_val, _name, _subname) \
175 MPP_VAR_FUNCTION(_val, _name, _subname, (u8)-1)
177 #define MPP_MODE(_id, ...) \
180 .settings = (struct mvebu_mpp_ctrl_setting[]){ \
181 __VA_ARGS__, { } }, \
184 #define MPP_GPIO_RANGE(_id, _pinbase, _gpiobase, _npins) \
186 .name = "mvebu-gpio", \
188 .pin_base = _pinbase, \
193 #define MVEBU_MPPS_PER_REG 8
194 #define MVEBU_MPP_BITS 4
195 #define MVEBU_MPP_MASK 0xf
197 int mvebu_mmio_mpp_ctrl_get(struct mvebu_mpp_ctrl_data
*data
, unsigned pid
,
198 unsigned long *config
);
199 int mvebu_mmio_mpp_ctrl_set(struct mvebu_mpp_ctrl_data
*data
, unsigned pid
,
200 unsigned long config
);
201 int mvebu_regmap_mpp_ctrl_get(struct mvebu_mpp_ctrl_data
*data
, unsigned pid
,
202 unsigned long *config
);
203 int mvebu_regmap_mpp_ctrl_set(struct mvebu_mpp_ctrl_data
*data
, unsigned pid
,
204 unsigned long config
);
206 int mvebu_pinctrl_probe(struct platform_device
*pdev
);
207 int mvebu_pinctrl_simple_mmio_probe(struct platform_device
*pdev
);
208 int mvebu_pinctrl_simple_regmap_probe(struct platform_device
*pdev
,
209 struct device
*syscon_dev
, u32 offset
);