2 * Copyright (c) 2014 MediaTek Inc.
3 * Author: Hongzhou.Yang <hongzhou.yang@mediatek.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #ifndef __PINCTRL_MTK_COMMON_H
16 #define __PINCTRL_MTK_COMMON_H
18 #include <linux/pinctrl/pinctrl.h>
19 #include <linux/regmap.h>
20 #include <linux/pinctrl/pinconf-generic.h>
22 #define NO_EINT_SUPPORT 255
23 #define MT_EDGE_SENSITIVE 0
24 #define MT_LEVEL_SENSITIVE 1
25 #define EINT_DBNC_SET_DBNC_BITS 4
26 #define EINT_DBNC_RST_BIT (0x1 << 1)
27 #define EINT_DBNC_SET_EN (0x1 << 0)
29 #define MTK_PINCTRL_NOT_SUPPORT (0xffff)
31 struct mtk_desc_function
{
36 struct mtk_desc_eint
{
37 unsigned char eintmux
;
38 unsigned char eintnum
;
42 struct pinctrl_pin_desc pin
;
43 const struct mtk_desc_eint eint
;
44 const struct mtk_desc_function
*functions
;
47 #define MTK_PIN(_pin, _pad, _chip, _eint, ...) \
51 .functions = (struct mtk_desc_function[]){ \
55 #define MTK_EINT_FUNCTION(_eintmux, _eintnum) \
57 .eintmux = _eintmux, \
58 .eintnum = _eintnum, \
61 #define MTK_FUNCTION(_val, _name) \
67 #define SET_ADDR(x, y) (x + (y->devdata->port_align))
68 #define CLR_ADDR(x, y) (x + (y->devdata->port_align << 1))
70 struct mtk_pinctrl_group
{
77 * struct mtk_drv_group_desc - Provide driving group data.
78 * @max_drv: The maximum current of this group.
79 * @min_drv: The minimum current of this group.
80 * @low_bit: The lowest bit of this group.
81 * @high_bit: The highest bit of this group.
82 * @step: The step current of this group.
84 struct mtk_drv_group_desc
{
85 unsigned char min_drv
;
86 unsigned char max_drv
;
87 unsigned char low_bit
;
88 unsigned char high_bit
;
92 #define MTK_DRV_GRP(_min, _max, _low, _high, _step) \
102 * struct mtk_pin_drv_grp - Provide each pin driving info.
103 * @pin: The pin number.
104 * @offset: The offset of driving register for this pin.
105 * @bit: The bit of driving register for this pin.
106 * @grp: The group for this pin belongs to.
108 struct mtk_pin_drv_grp
{
110 unsigned short offset
;
115 #define MTK_PIN_DRV_GRP(_pin, _offset, _bit, _grp) \
124 * struct mtk_pin_spec_pupd_set_samereg
125 * - For special pins' pull up/down setting which resides in same register
126 * @pin: The pin number.
127 * @offset: The offset of special pull up/down setting register.
128 * @pupd_bit: The pull up/down bit in this register.
129 * @r0_bit: The r0 bit of pull resistor.
130 * @r1_bit: The r1 bit of pull resistor.
132 struct mtk_pin_spec_pupd_set_samereg
{
134 unsigned short offset
;
135 unsigned char pupd_bit
;
136 unsigned char r1_bit
;
137 unsigned char r0_bit
;
140 #define MTK_PIN_PUPD_SPEC_SR(_pin, _offset, _pupd, _r1, _r0) \
150 * struct mtk_pin_ies_set - For special pins' ies and smt setting.
151 * @start: The start pin number of those special pins.
152 * @end: The end pin number of those special pins.
153 * @offset: The offset of special setting register.
154 * @bit: The bit of special setting register.
156 struct mtk_pin_ies_smt_set
{
157 unsigned short start
;
159 unsigned short offset
;
163 #define MTK_PIN_IES_SMT_SPEC(_start, _end, _offset, _bit) \
171 struct mtk_eint_offsets
{
176 unsigned int mask_set
;
177 unsigned int mask_clr
;
179 unsigned int sens_set
;
180 unsigned int sens_clr
;
182 unsigned int soft_set
;
183 unsigned int soft_clr
;
185 unsigned int pol_set
;
186 unsigned int pol_clr
;
188 unsigned int dbnc_ctrl
;
189 unsigned int dbnc_set
;
190 unsigned int dbnc_clr
;
196 * struct mtk_pinctrl_devdata - Provide HW GPIO related data.
197 * @pins: An array describing all pins the pin controller affects.
198 * @npins: The number of entries in @pins.
200 * @grp_desc: The driving group info.
201 * @pin_drv_grp: The driving group for all pins.
202 * @spec_pull_set: Each SoC may have special pins for pull up/down setting,
203 * these pins' pull setting are very different, they have separate pull
204 * up/down bit, R0 and R1 resistor bit, so they need special pull setting.
205 * If special setting is success, this should return 0, otherwise it should
206 * return non-zero value.
207 * @spec_ies_smt_set: Some pins are irregular, their input enable and smt
208 * control register are discontinuous, but they are mapping together. That
209 * means when user set smt, input enable is set at the same time. So they
210 * also need special control. If special control is success, this should
211 * return 0, otherwise return non-zero value.
212 * @spec_pinmux_set: In some cases, there are two pinmux functions share
213 * the same value in the same segment of pinmux control register. If user
214 * want to use one of the two functions, they need an extra bit setting to
215 * select the right one.
216 * @spec_dir_set: In very few SoCs, direction control registers are not
217 * arranged continuously, they may be cut to parts. So they need special
220 * @dir_offset: The direction register offset.
221 * @pullen_offset: The pull-up/pull-down enable register offset.
222 * @pinmux_offset: The pinmux register offset.
224 * @type1_start: Some chips have two base addresses for pull select register,
225 * that means some pins use the first address and others use the second. This
226 * member record the start of pin number to use the second address.
227 * @type1_end: The end of pin number to use the second address.
229 * @port_shf: The shift between two registers.
230 * @port_mask: The mask of register.
231 * @port_align: Provide clear register and set register step.
233 struct mtk_pinctrl_devdata
{
234 const struct mtk_desc_pin
*pins
;
236 const struct mtk_drv_group_desc
*grp_desc
;
237 unsigned int n_grp_cls
;
238 const struct mtk_pin_drv_grp
*pin_drv_grp
;
239 unsigned int n_pin_drv_grps
;
240 int (*spec_pull_set
)(struct regmap
*reg
, unsigned int pin
,
241 unsigned char align
, bool isup
, unsigned int arg
);
242 int (*spec_ies_smt_set
)(struct regmap
*reg
, unsigned int pin
,
243 unsigned char align
, int value
, enum pin_config_param arg
);
244 void (*spec_pinmux_set
)(struct regmap
*reg
, unsigned int pin
,
246 void (*spec_dir_set
)(unsigned int *reg_addr
, unsigned int pin
);
247 unsigned int dir_offset
;
248 unsigned int ies_offset
;
249 unsigned int smt_offset
;
250 unsigned int pullen_offset
;
251 unsigned int pullsel_offset
;
252 unsigned int drv_offset
;
253 unsigned int dout_offset
;
254 unsigned int din_offset
;
255 unsigned int pinmux_offset
;
256 unsigned short type1_start
;
257 unsigned short type1_end
;
258 unsigned char port_shf
;
259 unsigned char port_mask
;
260 unsigned char port_align
;
261 struct mtk_eint_offsets eint_offsets
;
267 struct regmap
*regmap1
;
268 struct regmap
*regmap2
;
269 struct pinctrl_desc pctl_desc
;
271 struct gpio_chip
*chip
;
272 struct mtk_pinctrl_group
*groups
;
274 const char **grp_names
;
275 struct pinctrl_dev
*pctl_dev
;
276 const struct mtk_pinctrl_devdata
*devdata
;
277 void __iomem
*eint_reg_base
;
278 struct irq_domain
*domain
;
279 int *eint_dual_edges
;
284 int mtk_pctrl_init(struct platform_device
*pdev
,
285 const struct mtk_pinctrl_devdata
*data
,
286 struct regmap
*regmap
);
288 int mtk_pctrl_spec_pull_set_samereg(struct regmap
*regmap
,
289 const struct mtk_pin_spec_pupd_set_samereg
*pupd_infos
,
290 unsigned int info_num
, unsigned int pin
,
291 unsigned char align
, bool isup
, unsigned int r1r0
);
293 int mtk_pconf_spec_set_ies_smt_range(struct regmap
*regmap
,
294 const struct mtk_pin_ies_smt_set
*ies_smt_infos
, unsigned int info_num
,
295 unsigned int pin
, unsigned char align
, int value
);
297 extern const struct dev_pm_ops mtk_eint_pm_ops
;
299 #endif /* __PINCTRL_MTK_COMMON_H */