GNU Linux-libre 4.19.207-gnu1
[releases.git] / drivers / pinctrl / intel / pinctrl-intel.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Core pinctrl/GPIO driver for Intel GPIO controllers
4  *
5  * Copyright (C) 2015, Intel Corporation
6  * Authors: Mathias Nyman <mathias.nyman@linux.intel.com>
7  *          Mika Westerberg <mika.westerberg@linux.intel.com>
8  */
9
10 #ifndef PINCTRL_INTEL_H
11 #define PINCTRL_INTEL_H
12
13 struct pinctrl_pin_desc;
14 struct platform_device;
15 struct device;
16
17 /**
18  * struct intel_pingroup - Description about group of pins
19  * @name: Name of the groups
20  * @pins: All pins in this group
21  * @npins: Number of pins in this groups
22  * @mode: Native mode in which the group is muxed out @pins. Used if @modes
23  *        is %NULL.
24  * @modes: If not %NULL this will hold mode for each pin in @pins
25  */
26 struct intel_pingroup {
27         const char *name;
28         const unsigned *pins;
29         size_t npins;
30         unsigned short mode;
31         const unsigned *modes;
32 };
33
34 /**
35  * struct intel_function - Description about a function
36  * @name: Name of the function
37  * @groups: An array of groups for this function
38  * @ngroups: Number of groups in @groups
39  */
40 struct intel_function {
41         const char *name;
42         const char * const *groups;
43         size_t ngroups;
44 };
45
46 /**
47  * struct intel_padgroup - Hardware pad group information
48  * @reg_num: GPI_IS register number
49  * @base: Starting pin of this group
50  * @size: Size of this group (maximum is 32).
51  * @gpio_base: Starting GPIO base of this group (%0 if matches with @base,
52  *             and %-1 if no GPIO mapping should be created)
53  * @padown_num: PAD_OWN register number (assigned by the core driver)
54  *
55  * If pad groups of a community are not the same size, use this structure
56  * to specify them.
57  */
58 struct intel_padgroup {
59         unsigned reg_num;
60         unsigned base;
61         unsigned size;
62         int gpio_base;
63         unsigned padown_num;
64 };
65
66 /**
67  * struct intel_community - Intel pin community description
68  * @barno: MMIO BAR number where registers for this community reside
69  * @padown_offset: Register offset of PAD_OWN register from @regs. If %0
70  *                 then there is no support for owner.
71  * @padcfglock_offset: Register offset of PADCFGLOCK from @regs. If %0 then
72  *                     locking is not supported.
73  * @hostown_offset: Register offset of HOSTSW_OWN from @regs. If %0 then it
74  *                  is assumed that the host owns the pin (rather than
75  *                  ACPI).
76  * @is_offset: Register offset of GPI_IS from @regs. If %0 then uses the
77  *             default (%0x100).
78  * @ie_offset: Register offset of GPI_IE from @regs.
79  * @pin_base: Starting pin of pins in this community
80  * @gpp_size: Maximum number of pads in each group, such as PADCFGLOCK,
81  *            HOSTSW_OWN,  GPI_IS, GPI_IE, etc. Used when @gpps is %NULL.
82  * @gpp_num_padown_regs: Number of pad registers each pad group consumes at
83  *                       minimum. Use %0 if the number of registers can be
84  *                       determined by the size of the group.
85  * @npins: Number of pins in this community
86  * @features: Additional features supported by the hardware
87  * @gpps: Pad groups if the controller has variable size pad groups
88  * @ngpps: Number of pad groups in this community
89  * @regs: Community specific common registers (reserved for core driver)
90  * @pad_regs: Community specific pad registers (reserved for core driver)
91  *
92  * Most Intel GPIO host controllers this driver supports each pad group is
93  * of equal size (except the last one). In that case the driver can just
94  * fill in @gpp_size field and let the core driver to handle the rest. If
95  * the controller has pad groups of variable size the client driver can
96  * pass custom @gpps and @ngpps instead.
97  */
98 struct intel_community {
99         unsigned barno;
100         unsigned padown_offset;
101         unsigned padcfglock_offset;
102         unsigned hostown_offset;
103         unsigned is_offset;
104         unsigned ie_offset;
105         unsigned pin_base;
106         unsigned gpp_size;
107         unsigned gpp_num_padown_regs;
108         size_t npins;
109         unsigned features;
110         const struct intel_padgroup *gpps;
111         size_t ngpps;
112         /* Reserved for the core driver */
113         void __iomem *regs;
114         void __iomem *pad_regs;
115 };
116
117 /* Additional features supported by the hardware */
118 #define PINCTRL_FEATURE_DEBOUNCE        BIT(0)
119 #define PINCTRL_FEATURE_1K_PD           BIT(1)
120
121 /**
122  * PIN_GROUP - Declare a pin group
123  * @n: Name of the group
124  * @p: An array of pins this group consists
125  * @m: Mode which the pins are put when this group is active. Can be either
126  *     a single integer or an array of integers in which case mode is per
127  *     pin.
128  */
129 #define PIN_GROUP(n, p, m)                                      \
130         {                                                       \
131                 .name = (n),                                    \
132                 .pins = (p),                                    \
133                 .npins = ARRAY_SIZE((p)),                       \
134                 .mode = __builtin_choose_expr(                  \
135                         __builtin_constant_p((m)), (m), 0),     \
136                 .modes = __builtin_choose_expr(                 \
137                         __builtin_constant_p((m)), NULL, (m)),  \
138         }
139
140 #define FUNCTION(n, g)                          \
141         {                                       \
142                 .name = (n),                    \
143                 .groups = (g),                  \
144                 .ngroups = ARRAY_SIZE((g)),     \
145         }
146
147 /**
148  * struct intel_pinctrl_soc_data - Intel pin controller per-SoC configuration
149  * @uid: ACPI _UID for the probe driver use if needed
150  * @pins: Array if pins this pinctrl controls
151  * @npins: Number of pins in the array
152  * @groups: Array of pin groups
153  * @ngroups: Number of groups in the array
154  * @functions: Array of functions
155  * @nfunctions: Number of functions in the array
156  * @communities: Array of communities this pinctrl handles
157  * @ncommunities: Number of communities in the array
158  *
159  * The @communities is used as a template by the core driver. It will make
160  * copy of all communities and fill in rest of the information.
161  */
162 struct intel_pinctrl_soc_data {
163         const char *uid;
164         const struct pinctrl_pin_desc *pins;
165         size_t npins;
166         const struct intel_pingroup *groups;
167         size_t ngroups;
168         const struct intel_function *functions;
169         size_t nfunctions;
170         const struct intel_community *communities;
171         size_t ncommunities;
172 };
173
174 int intel_pinctrl_probe(struct platform_device *pdev,
175                         const struct intel_pinctrl_soc_data *soc_data);
176 #ifdef CONFIG_PM_SLEEP
177 int intel_pinctrl_suspend(struct device *dev);
178 int intel_pinctrl_resume(struct device *dev);
179 #endif
180
181 #endif /* PINCTRL_INTEL_H */