]>
Commit | Line | Data |
---|---|---|
7981c001 MW |
1 | /* |
2 | * Intel Sunrisepoint PCH pinctrl/GPIO driver | |
3 | * | |
4 | * Copyright (C) 2015, Intel Corporation | |
5 | * Authors: Mathias Nyman <mathias.nyman@linux.intel.com> | |
6 | * Mika Westerberg <mika.westerberg@linux.intel.com> | |
7 | * | |
8 | * This program is free software; you can redistribute it and/or modify | |
9 | * it under the terms of the GNU General Public License version 2 as | |
10 | * published by the Free Software Foundation. | |
11 | */ | |
12 | ||
13 | #include <linux/acpi.h> | |
14 | #include <linux/module.h> | |
15 | #include <linux/platform_device.h> | |
16 | #include <linux/pm.h> | |
17 | #include <linux/pinctrl/pinctrl.h> | |
18 | ||
19 | #include "pinctrl-intel.h" | |
20 | ||
21 | #define SPT_PAD_OWN 0x020 | |
22 | #define SPT_PADCFGLOCK 0x0a0 | |
23 | #define SPT_HOSTSW_OWN 0x0d0 | |
24 | #define SPT_GPI_IE 0x120 | |
25 | ||
26 | #define SPT_COMMUNITY(b, s, e) \ | |
27 | { \ | |
28 | .barno = (b), \ | |
29 | .padown_offset = SPT_PAD_OWN, \ | |
30 | .padcfglock_offset = SPT_PADCFGLOCK, \ | |
31 | .hostown_offset = SPT_HOSTSW_OWN, \ | |
32 | .ie_offset = SPT_GPI_IE, \ | |
33 | .pin_base = (s), \ | |
34 | .npins = ((e) - (s) + 1), \ | |
35 | } | |
36 | ||
37 | /* Sunrisepoint-LP */ | |
38 | static const struct pinctrl_pin_desc sptlp_pins[] = { | |
39 | /* GPP_A */ | |
40 | PINCTRL_PIN(0, "RCINB"), | |
41 | PINCTRL_PIN(1, "LAD_0"), | |
42 | PINCTRL_PIN(2, "LAD_1"), | |
43 | PINCTRL_PIN(3, "LAD_2"), | |
44 | PINCTRL_PIN(4, "LAD_3"), | |
45 | PINCTRL_PIN(5, "LFRAMEB"), | |
46 | PINCTRL_PIN(6, "SERIQ"), | |
47 | PINCTRL_PIN(7, "PIRQAB"), | |
48 | PINCTRL_PIN(8, "CLKRUNB"), | |
49 | PINCTRL_PIN(9, "CLKOUT_LPC_0"), | |
50 | PINCTRL_PIN(10, "CLKOUT_LPC_1"), | |
51 | PINCTRL_PIN(11, "PMEB"), | |
52 | PINCTRL_PIN(12, "BM_BUSYB"), | |
53 | PINCTRL_PIN(13, "SUSWARNB_SUS_PWRDNACK"), | |
54 | PINCTRL_PIN(14, "SUS_STATB"), | |
55 | PINCTRL_PIN(15, "SUSACKB"), | |
56 | PINCTRL_PIN(16, "SD_1P8_SEL"), | |
57 | PINCTRL_PIN(17, "SD_PWR_EN_B"), | |
58 | PINCTRL_PIN(18, "ISH_GP_0"), | |
59 | PINCTRL_PIN(19, "ISH_GP_1"), | |
60 | PINCTRL_PIN(20, "ISH_GP_2"), | |
61 | PINCTRL_PIN(21, "ISH_GP_3"), | |
62 | PINCTRL_PIN(22, "ISH_GP_4"), | |
63 | PINCTRL_PIN(23, "ISH_GP_5"), | |
64 | /* GPP_B */ | |
65 | PINCTRL_PIN(24, "CORE_VID_0"), | |
66 | PINCTRL_PIN(25, "CORE_VID_1"), | |
67 | PINCTRL_PIN(26, "VRALERTB"), | |
68 | PINCTRL_PIN(27, "CPU_GP_2"), | |
69 | PINCTRL_PIN(28, "CPU_GP_3"), | |
70 | PINCTRL_PIN(29, "SRCCLKREQB_0"), | |
71 | PINCTRL_PIN(30, "SRCCLKREQB_1"), | |
72 | PINCTRL_PIN(31, "SRCCLKREQB_2"), | |
73 | PINCTRL_PIN(32, "SRCCLKREQB_3"), | |
74 | PINCTRL_PIN(33, "SRCCLKREQB_4"), | |
75 | PINCTRL_PIN(34, "SRCCLKREQB_5"), | |
76 | PINCTRL_PIN(35, "EXT_PWR_GATEB"), | |
77 | PINCTRL_PIN(36, "SLP_S0B"), | |
78 | PINCTRL_PIN(37, "PLTRSTB"), | |
79 | PINCTRL_PIN(38, "SPKR"), | |
80 | PINCTRL_PIN(39, "GSPI0_CSB"), | |
81 | PINCTRL_PIN(40, "GSPI0_CLK"), | |
82 | PINCTRL_PIN(41, "GSPI0_MISO"), | |
83 | PINCTRL_PIN(42, "GSPI0_MOSI"), | |
84 | PINCTRL_PIN(43, "GSPI1_CSB"), | |
85 | PINCTRL_PIN(44, "GSPI1_CLK"), | |
86 | PINCTRL_PIN(45, "GSPI1_MISO"), | |
87 | PINCTRL_PIN(46, "GSPI1_MOSI"), | |
88 | PINCTRL_PIN(47, "SML1ALERTB"), | |
89 | /* GPP_C */ | |
90 | PINCTRL_PIN(48, "SMBCLK"), | |
91 | PINCTRL_PIN(49, "SMBDATA"), | |
92 | PINCTRL_PIN(50, "SMBALERTB"), | |
93 | PINCTRL_PIN(51, "SML0CLK"), | |
94 | PINCTRL_PIN(52, "SML0DATA"), | |
95 | PINCTRL_PIN(53, "SML0ALERTB"), | |
96 | PINCTRL_PIN(54, "SML1CLK"), | |
97 | PINCTRL_PIN(55, "SML1DATA"), | |
98 | PINCTRL_PIN(56, "UART0_RXD"), | |
99 | PINCTRL_PIN(57, "UART0_TXD"), | |
100 | PINCTRL_PIN(58, "UART0_RTSB"), | |
101 | PINCTRL_PIN(59, "UART0_CTSB"), | |
102 | PINCTRL_PIN(60, "UART1_RXD"), | |
103 | PINCTRL_PIN(61, "UART1_TXD"), | |
104 | PINCTRL_PIN(62, "UART1_RTSB"), | |
105 | PINCTRL_PIN(63, "UART1_CTSB"), | |
106 | PINCTRL_PIN(64, "I2C0_SDA"), | |
107 | PINCTRL_PIN(65, "I2C0_SCL"), | |
108 | PINCTRL_PIN(66, "I2C1_SDA"), | |
109 | PINCTRL_PIN(67, "I2C1_SCL"), | |
110 | PINCTRL_PIN(68, "UART2_RXD"), | |
111 | PINCTRL_PIN(69, "UART2_TXD"), | |
112 | PINCTRL_PIN(70, "UART2_RTSB"), | |
113 | PINCTRL_PIN(71, "UART2_CTSB"), | |
114 | /* GPP_D */ | |
115 | PINCTRL_PIN(72, "SPI1_CSB"), | |
116 | PINCTRL_PIN(73, "SPI1_CLK"), | |
117 | PINCTRL_PIN(74, "SPI1_MISO_IO_1"), | |
118 | PINCTRL_PIN(75, "SPI1_MOSI_IO_0"), | |
119 | PINCTRL_PIN(76, "FLASHTRIG"), | |
120 | PINCTRL_PIN(77, "ISH_I2C0_SDA"), | |
121 | PINCTRL_PIN(78, "ISH_I2C0_SCL"), | |
122 | PINCTRL_PIN(79, "ISH_I2C1_SDA"), | |
123 | PINCTRL_PIN(80, "ISH_I2C1_SCL"), | |
124 | PINCTRL_PIN(81, "ISH_SPI_CSB"), | |
125 | PINCTRL_PIN(82, "ISH_SPI_CLK"), | |
126 | PINCTRL_PIN(83, "ISH_SPI_MISO"), | |
127 | PINCTRL_PIN(84, "ISH_SPI_MOSI"), | |
128 | PINCTRL_PIN(85, "ISH_UART0_RXD"), | |
129 | PINCTRL_PIN(86, "ISH_UART0_TXD"), | |
130 | PINCTRL_PIN(87, "ISH_UART0_RTSB"), | |
131 | PINCTRL_PIN(88, "ISH_UART0_CTSB"), | |
132 | PINCTRL_PIN(89, "DMIC_CLK_1"), | |
133 | PINCTRL_PIN(90, "DMIC_DATA_1"), | |
134 | PINCTRL_PIN(91, "DMIC_CLK_0"), | |
135 | PINCTRL_PIN(92, "DMIC_DATA_0"), | |
136 | PINCTRL_PIN(93, "SPI1_IO_2"), | |
137 | PINCTRL_PIN(94, "SPI1_IO_3"), | |
138 | PINCTRL_PIN(95, "SSP_MCLK"), | |
139 | /* GPP_E */ | |
140 | PINCTRL_PIN(96, "SATAXPCIE_0"), | |
141 | PINCTRL_PIN(97, "SATAXPCIE_1"), | |
142 | PINCTRL_PIN(98, "SATAXPCIE_2"), | |
143 | PINCTRL_PIN(99, "CPU_GP_0"), | |
144 | PINCTRL_PIN(100, "SATA_DEVSLP_0"), | |
145 | PINCTRL_PIN(101, "SATA_DEVSLP_1"), | |
146 | PINCTRL_PIN(102, "SATA_DEVSLP_2"), | |
147 | PINCTRL_PIN(103, "CPU_GP_1"), | |
148 | PINCTRL_PIN(104, "SATA_LEDB"), | |
149 | PINCTRL_PIN(105, "USB2_OCB_0"), | |
150 | PINCTRL_PIN(106, "USB2_OCB_1"), | |
151 | PINCTRL_PIN(107, "USB2_OCB_2"), | |
152 | PINCTRL_PIN(108, "USB2_OCB_3"), | |
153 | PINCTRL_PIN(109, "DDSP_HPD_0"), | |
154 | PINCTRL_PIN(110, "DDSP_HPD_1"), | |
155 | PINCTRL_PIN(111, "DDSP_HPD_2"), | |
156 | PINCTRL_PIN(112, "DDSP_HPD_3"), | |
157 | PINCTRL_PIN(113, "EDP_HPD"), | |
158 | PINCTRL_PIN(114, "DDPB_CTRLCLK"), | |
159 | PINCTRL_PIN(115, "DDPB_CTRLDATA"), | |
160 | PINCTRL_PIN(116, "DDPC_CTRLCLK"), | |
161 | PINCTRL_PIN(117, "DDPC_CTRLDATA"), | |
162 | PINCTRL_PIN(118, "DDPD_CTRLCLK"), | |
163 | PINCTRL_PIN(119, "DDPD_CTRLDATA"), | |
164 | /* GPP_F */ | |
165 | PINCTRL_PIN(120, "SSP2_SCLK"), | |
166 | PINCTRL_PIN(121, "SSP2_SFRM"), | |
167 | PINCTRL_PIN(122, "SSP2_TXD"), | |
168 | PINCTRL_PIN(123, "SSP2_RXD"), | |
169 | PINCTRL_PIN(124, "I2C2_SDA"), | |
170 | PINCTRL_PIN(125, "I2C2_SCL"), | |
171 | PINCTRL_PIN(126, "I2C3_SDA"), | |
172 | PINCTRL_PIN(127, "I2C3_SCL"), | |
173 | PINCTRL_PIN(128, "I2C4_SDA"), | |
174 | PINCTRL_PIN(129, "I2C4_SCL"), | |
175 | PINCTRL_PIN(130, "I2C5_SDA"), | |
176 | PINCTRL_PIN(131, "I2C5_SCL"), | |
177 | PINCTRL_PIN(132, "EMMC_CMD"), | |
178 | PINCTRL_PIN(133, "EMMC_DATA_0"), | |
179 | PINCTRL_PIN(134, "EMMC_DATA_1"), | |
180 | PINCTRL_PIN(135, "EMMC_DATA_2"), | |
181 | PINCTRL_PIN(136, "EMMC_DATA_3"), | |
182 | PINCTRL_PIN(137, "EMMC_DATA_4"), | |
183 | PINCTRL_PIN(138, "EMMC_DATA_5"), | |
184 | PINCTRL_PIN(139, "EMMC_DATA_6"), | |
185 | PINCTRL_PIN(140, "EMMC_DATA_7"), | |
186 | PINCTRL_PIN(141, "EMMC_RCLK"), | |
187 | PINCTRL_PIN(142, "EMMC_CLK"), | |
188 | PINCTRL_PIN(143, "GPP_F_23"), | |
189 | /* GPP_G */ | |
190 | PINCTRL_PIN(144, "SD_CMD"), | |
191 | PINCTRL_PIN(145, "SD_DATA_0"), | |
192 | PINCTRL_PIN(146, "SD_DATA_1"), | |
193 | PINCTRL_PIN(147, "SD_DATA_2"), | |
194 | PINCTRL_PIN(148, "SD_DATA_3"), | |
195 | PINCTRL_PIN(149, "SD_CDB"), | |
196 | PINCTRL_PIN(150, "SD_CLK"), | |
197 | PINCTRL_PIN(151, "SD_WP"), | |
198 | }; | |
199 | ||
200 | static const unsigned sptlp_spi0_pins[] = { 39, 40, 41, 42 }; | |
201 | static const unsigned sptlp_spi1_pins[] = { 43, 44, 45, 46 }; | |
202 | static const unsigned sptlp_uart0_pins[] = { 56, 57, 58, 59 }; | |
203 | static const unsigned sptlp_uart1_pins[] = { 60, 61, 62, 63 }; | |
204 | static const unsigned sptlp_uart2_pins[] = { 68, 69, 71, 71 }; | |
205 | static const unsigned sptlp_i2c0_pins[] = { 64, 65 }; | |
206 | static const unsigned sptlp_i2c1_pins[] = { 66, 67 }; | |
207 | static const unsigned sptlp_i2c2_pins[] = { 124, 125 }; | |
208 | static const unsigned sptlp_i2c3_pins[] = { 126, 127 }; | |
209 | static const unsigned sptlp_i2c4_pins[] = { 128, 129 }; | |
210 | static const unsigned sptlp_i2c4b_pins[] = { 85, 86 }; | |
211 | static const unsigned sptlp_i2c5_pins[] = { 130, 131 }; | |
212 | static const unsigned sptlp_ssp2_pins[] = { 120, 121, 122, 123 }; | |
213 | static const unsigned sptlp_emmc_pins[] = { | |
214 | 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, | |
215 | }; | |
216 | static const unsigned sptlp_sd_pins[] = { | |
217 | 144, 145, 146, 147, 148, 149, 150, 151, | |
218 | }; | |
219 | ||
220 | static const struct intel_pingroup sptlp_groups[] = { | |
221 | PIN_GROUP("spi0_grp", sptlp_spi0_pins, 1), | |
222 | PIN_GROUP("spi1_grp", sptlp_spi1_pins, 1), | |
223 | PIN_GROUP("uart0_grp", sptlp_uart0_pins, 1), | |
224 | PIN_GROUP("uart1_grp", sptlp_uart1_pins, 1), | |
225 | PIN_GROUP("uart2_grp", sptlp_uart2_pins, 1), | |
226 | PIN_GROUP("i2c0_grp", sptlp_i2c0_pins, 1), | |
227 | PIN_GROUP("i2c1_grp", sptlp_i2c1_pins, 1), | |
228 | PIN_GROUP("i2c2_grp", sptlp_i2c2_pins, 1), | |
229 | PIN_GROUP("i2c3_grp", sptlp_i2c3_pins, 1), | |
230 | PIN_GROUP("i2c4_grp", sptlp_i2c4_pins, 1), | |
231 | PIN_GROUP("i2c4b_grp", sptlp_i2c4b_pins, 3), | |
232 | PIN_GROUP("i2c5_grp", sptlp_i2c5_pins, 1), | |
233 | PIN_GROUP("ssp2_grp", sptlp_ssp2_pins, 1), | |
234 | PIN_GROUP("emmc_grp", sptlp_emmc_pins, 1), | |
235 | PIN_GROUP("sd_grp", sptlp_sd_pins, 1), | |
236 | }; | |
237 | ||
238 | static const char * const sptlp_spi0_groups[] = { "spi0_grp" }; | |
239 | static const char * const sptlp_spi1_groups[] = { "spi0_grp" }; | |
240 | static const char * const sptlp_uart0_groups[] = { "uart0_grp" }; | |
241 | static const char * const sptlp_uart1_groups[] = { "uart1_grp" }; | |
242 | static const char * const sptlp_uart2_groups[] = { "uart2_grp" }; | |
243 | static const char * const sptlp_i2c0_groups[] = { "i2c0_grp" }; | |
244 | static const char * const sptlp_i2c1_groups[] = { "i2c1_grp" }; | |
245 | static const char * const sptlp_i2c2_groups[] = { "i2c2_grp" }; | |
246 | static const char * const sptlp_i2c3_groups[] = { "i2c3_grp" }; | |
247 | static const char * const sptlp_i2c4_groups[] = { "i2c4_grp", "i2c4b_grp" }; | |
248 | static const char * const sptlp_i2c5_groups[] = { "i2c5_grp" }; | |
249 | static const char * const sptlp_ssp2_groups[] = { "ssp2_grp" }; | |
250 | static const char * const sptlp_emmc_groups[] = { "emmc_grp" }; | |
251 | static const char * const sptlp_sd_groups[] = { "sd_grp" }; | |
252 | ||
253 | static const struct intel_function sptlp_functions[] = { | |
254 | FUNCTION("spi0", sptlp_spi0_groups), | |
255 | FUNCTION("spi1", sptlp_spi1_groups), | |
256 | FUNCTION("uart0", sptlp_uart0_groups), | |
257 | FUNCTION("uart1", sptlp_uart1_groups), | |
258 | FUNCTION("uart2", sptlp_uart2_groups), | |
259 | FUNCTION("i2c0", sptlp_i2c0_groups), | |
260 | FUNCTION("i2c1", sptlp_i2c1_groups), | |
261 | FUNCTION("i2c2", sptlp_i2c2_groups), | |
262 | FUNCTION("i2c3", sptlp_i2c3_groups), | |
263 | FUNCTION("i2c4", sptlp_i2c4_groups), | |
264 | FUNCTION("i2c5", sptlp_i2c5_groups), | |
265 | FUNCTION("ssp2", sptlp_ssp2_groups), | |
266 | FUNCTION("emmc", sptlp_emmc_groups), | |
267 | FUNCTION("sd", sptlp_sd_groups), | |
268 | }; | |
269 | ||
270 | static const struct intel_community sptlp_communities[] = { | |
271 | SPT_COMMUNITY(0, 0, 47), | |
272 | SPT_COMMUNITY(1, 48, 119), | |
273 | SPT_COMMUNITY(2, 120, 151), | |
274 | }; | |
275 | ||
276 | static const struct intel_pinctrl_soc_data sptlp_soc_data = { | |
277 | .pins = sptlp_pins, | |
278 | .npins = ARRAY_SIZE(sptlp_pins), | |
279 | .groups = sptlp_groups, | |
280 | .ngroups = ARRAY_SIZE(sptlp_groups), | |
281 | .functions = sptlp_functions, | |
282 | .nfunctions = ARRAY_SIZE(sptlp_functions), | |
283 | .communities = sptlp_communities, | |
284 | .ncommunities = ARRAY_SIZE(sptlp_communities), | |
285 | }; | |
286 | ||
287 | static const struct acpi_device_id spt_pinctrl_acpi_match[] = { | |
288 | { "INT344B", (kernel_ulong_t)&sptlp_soc_data }, | |
289 | { } | |
290 | }; | |
291 | MODULE_DEVICE_TABLE(acpi, spt_pinctrl_acpi_match); | |
292 | ||
293 | static int spt_pinctrl_probe(struct platform_device *pdev) | |
294 | { | |
295 | const struct intel_pinctrl_soc_data *soc_data; | |
296 | const struct acpi_device_id *id; | |
297 | ||
298 | id = acpi_match_device(spt_pinctrl_acpi_match, &pdev->dev); | |
299 | if (!id || !id->driver_data) | |
300 | return -ENODEV; | |
301 | ||
302 | soc_data = (const struct intel_pinctrl_soc_data *)id->driver_data; | |
303 | return intel_pinctrl_probe(pdev, soc_data); | |
304 | } | |
305 | ||
306 | static const struct dev_pm_ops spt_pinctrl_pm_ops = { | |
307 | SET_LATE_SYSTEM_SLEEP_PM_OPS(intel_pinctrl_suspend, | |
308 | intel_pinctrl_resume) | |
309 | }; | |
310 | ||
311 | static struct platform_driver spt_pinctrl_driver = { | |
312 | .probe = spt_pinctrl_probe, | |
313 | .remove = intel_pinctrl_remove, | |
314 | .driver = { | |
315 | .name = "sunrisepoint-pinctrl", | |
316 | .acpi_match_table = spt_pinctrl_acpi_match, | |
317 | .pm = &spt_pinctrl_pm_ops, | |
318 | }, | |
319 | }; | |
320 | ||
321 | static int __init spt_pinctrl_init(void) | |
322 | { | |
323 | return platform_driver_register(&spt_pinctrl_driver); | |
324 | } | |
325 | subsys_initcall(spt_pinctrl_init); | |
326 | ||
327 | static void __exit spt_pinctrl_exit(void) | |
328 | { | |
329 | platform_driver_unregister(&spt_pinctrl_driver); | |
330 | } | |
331 | module_exit(spt_pinctrl_exit); | |
332 | ||
333 | MODULE_AUTHOR("Mathias Nyman <mathias.nyman@linux.intel.com>"); | |
334 | MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>"); | |
335 | MODULE_DESCRIPTION("Intel Sunrisepoint PCH pinctrl/GPIO driver"); | |
336 | MODULE_LICENSE("GPL v2"); |