1 // SPDX-License-Identifier: GPL-2.0-only
3 * lpc_ich.c - LPC interface for Intel ICH
5 * LPC bridge function of the Intel ICH contains many other
6 * functional units, such as Interrupt controllers, Timers,
7 * Power Management, System Management, GPIO, RTC, and LPC
8 * Configuration Registers.
10 * This driver is derived from lpc_sch.
12 * Copyright (c) 2017, 2021-2022 Intel Corporation
13 * Copyright (c) 2011 Extreme Engineering Solution, Inc.
16 * This driver supports the following I/O Controller hubs:
17 * (See the intel documentation on http://developer.intel.com.)
18 * document number 290655-003, 290677-014: 82801AA (ICH), 82801AB (ICHO)
19 * document number 290687-002, 298242-027: 82801BA (ICH2)
20 * document number 290733-003, 290739-013: 82801CA (ICH3-S)
21 * document number 290716-001, 290718-007: 82801CAM (ICH3-M)
22 * document number 290744-001, 290745-025: 82801DB (ICH4)
23 * document number 252337-001, 252663-008: 82801DBM (ICH4-M)
24 * document number 273599-001, 273645-002: 82801E (C-ICH)
25 * document number 252516-001, 252517-028: 82801EB (ICH5), 82801ER (ICH5R)
26 * document number 300641-004, 300884-013: 6300ESB
27 * document number 301473-002, 301474-026: 82801F (ICH6)
28 * document number 313082-001, 313075-006: 631xESB, 632xESB
29 * document number 307013-003, 307014-024: 82801G (ICH7)
30 * document number 322896-001, 322897-001: NM10
31 * document number 313056-003, 313057-017: 82801H (ICH8)
32 * document number 316972-004, 316973-012: 82801I (ICH9)
33 * document number 319973-002, 319974-002: 82801J (ICH10)
34 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH)
35 * document number 320066-003, 320257-008: EP80597 (IICH)
36 * document number 324645-001, 324646-001: Cougar Point (CPT)
39 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
41 #include <linux/align.h>
42 #include <linux/kernel.h>
43 #include <linux/module.h>
44 #include <linux/errno.h>
45 #include <linux/acpi.h>
46 #include <linux/pci.h>
47 #include <linux/pinctrl/pinctrl.h>
48 #include <linux/mfd/core.h>
49 #include <linux/mfd/lpc_ich.h>
50 #include <linux/platform_data/itco_wdt.h>
51 #include <linux/platform_data/x86/p2sb.h>
54 #define ACPIBASE_GPE_OFF 0x28
55 #define ACPIBASE_GPE_END 0x2f
56 #define ACPIBASE_SMI_OFF 0x30
57 #define ACPIBASE_SMI_END 0x33
58 #define ACPIBASE_PMC_OFF 0x08
59 #define ACPIBASE_PMC_END 0x0c
60 #define ACPIBASE_TCO_OFF 0x60
61 #define ACPIBASE_TCO_END 0x7f
62 #define ACPICTRL_PMCBASE 0x44
64 #define ACPIBASE_GCS_OFF 0x3410
65 #define ACPIBASE_GCS_END 0x3414
67 #define SPIBASE_BYT 0x54
68 #define SPIBASE_BYT_SZ 512
69 #define SPIBASE_BYT_EN BIT(1)
71 #define BYT_BCR_WPD BIT(0)
73 #define SPIBASE_LPT 0x3800
74 #define SPIBASE_LPT_SZ 512
76 #define BCR_WPD BIT(0)
78 #define GPIOBASE_ICH0 0x58
79 #define GPIOCTRL_ICH0 0x5C
80 #define GPIOBASE_ICH6 0x48
81 #define GPIOCTRL_ICH6 0x4C
85 #define wdt_io_res(i) wdt_res(0, i)
86 #define wdt_mem_res(i) wdt_res(ICH_RES_MEM_OFF, i)
87 #define wdt_res(b, i) (&wdt_ich_res[(b) + (i)])
89 static struct resource wdt_ich_res[] = {
92 .flags = IORESOURCE_IO,
96 .flags = IORESOURCE_IO,
100 .flags = IORESOURCE_MEM,
104 static struct resource gpio_ich_res[] = {
107 .flags = IORESOURCE_IO,
111 .flags = IORESOURCE_IO,
115 static struct resource intel_spi_res[] = {
117 .flags = IORESOURCE_MEM,
121 static struct mfd_cell lpc_ich_wdt_cell = {
123 .num_resources = ARRAY_SIZE(wdt_ich_res),
124 .resources = wdt_ich_res,
125 .ignore_resource_conflicts = true,
128 static struct mfd_cell lpc_ich_gpio_cell = {
130 .num_resources = ARRAY_SIZE(gpio_ich_res),
131 .resources = gpio_ich_res,
132 .ignore_resource_conflicts = true,
135 #define INTEL_GPIO_RESOURCE_SIZE 0x1000
137 struct lpc_ich_gpio_info {
139 const struct mfd_cell *devices;
141 struct resource **resources;
143 const resource_size_t *offsets;
146 #define APL_GPIO_NORTH 0
147 #define APL_GPIO_NORTHWEST 1
148 #define APL_GPIO_WEST 2
149 #define APL_GPIO_SOUTHWEST 3
151 #define APL_GPIO_NR_DEVICES 4
152 #define APL_GPIO_NR_RESOURCES 4
154 /* Offset data for Apollo Lake GPIO controllers */
155 static const resource_size_t apl_gpio_offsets[APL_GPIO_NR_RESOURCES] = {
156 [APL_GPIO_NORTH] = 0xc50000,
157 [APL_GPIO_NORTHWEST] = 0xc40000,
158 [APL_GPIO_WEST] = 0xc70000,
159 [APL_GPIO_SOUTHWEST] = 0xc00000,
162 #define APL_GPIO_IRQ 14
164 static struct resource apl_gpio_resources[APL_GPIO_NR_DEVICES][2] = {
166 DEFINE_RES_MEM(0, 0),
167 DEFINE_RES_IRQ(APL_GPIO_IRQ),
169 [APL_GPIO_NORTHWEST] = {
170 DEFINE_RES_MEM(0, 0),
171 DEFINE_RES_IRQ(APL_GPIO_IRQ),
174 DEFINE_RES_MEM(0, 0),
175 DEFINE_RES_IRQ(APL_GPIO_IRQ),
177 [APL_GPIO_SOUTHWEST] = {
178 DEFINE_RES_MEM(0, 0),
179 DEFINE_RES_IRQ(APL_GPIO_IRQ),
183 static struct resource *apl_gpio_mem_resources[APL_GPIO_NR_RESOURCES] = {
184 [APL_GPIO_NORTH] = &apl_gpio_resources[APL_GPIO_NORTH][0],
185 [APL_GPIO_NORTHWEST] = &apl_gpio_resources[APL_GPIO_NORTHWEST][0],
186 [APL_GPIO_WEST] = &apl_gpio_resources[APL_GPIO_WEST][0],
187 [APL_GPIO_SOUTHWEST] = &apl_gpio_resources[APL_GPIO_SOUTHWEST][0],
190 static const struct mfd_cell apl_gpio_devices[APL_GPIO_NR_DEVICES] = {
192 .name = "apollolake-pinctrl",
193 .id = APL_GPIO_NORTH,
194 .num_resources = ARRAY_SIZE(apl_gpio_resources[APL_GPIO_NORTH]),
195 .resources = apl_gpio_resources[APL_GPIO_NORTH],
196 .ignore_resource_conflicts = true,
198 [APL_GPIO_NORTHWEST] = {
199 .name = "apollolake-pinctrl",
200 .id = APL_GPIO_NORTHWEST,
201 .num_resources = ARRAY_SIZE(apl_gpio_resources[APL_GPIO_NORTHWEST]),
202 .resources = apl_gpio_resources[APL_GPIO_NORTHWEST],
203 .ignore_resource_conflicts = true,
206 .name = "apollolake-pinctrl",
208 .num_resources = ARRAY_SIZE(apl_gpio_resources[APL_GPIO_WEST]),
209 .resources = apl_gpio_resources[APL_GPIO_WEST],
210 .ignore_resource_conflicts = true,
212 [APL_GPIO_SOUTHWEST] = {
213 .name = "apollolake-pinctrl",
214 .id = APL_GPIO_SOUTHWEST,
215 .num_resources = ARRAY_SIZE(apl_gpio_resources[APL_GPIO_SOUTHWEST]),
216 .resources = apl_gpio_resources[APL_GPIO_SOUTHWEST],
217 .ignore_resource_conflicts = true,
221 static const struct lpc_ich_gpio_info apl_gpio_info = {
223 .devices = apl_gpio_devices,
224 .nr_devices = ARRAY_SIZE(apl_gpio_devices),
225 .resources = apl_gpio_mem_resources,
226 .nr_resources = ARRAY_SIZE(apl_gpio_mem_resources),
227 .offsets = apl_gpio_offsets,
230 #define DNV_GPIO_NORTH 0
231 #define DNV_GPIO_SOUTH 1
233 #define DNV_GPIO_NR_DEVICES 1
234 #define DNV_GPIO_NR_RESOURCES 2
236 /* Offset data for Denverton GPIO controllers */
237 static const resource_size_t dnv_gpio_offsets[DNV_GPIO_NR_RESOURCES] = {
238 [DNV_GPIO_NORTH] = 0xc20000,
239 [DNV_GPIO_SOUTH] = 0xc50000,
242 #define DNV_GPIO_IRQ 14
244 static struct resource dnv_gpio_resources[DNV_GPIO_NR_RESOURCES + 1] = {
245 [DNV_GPIO_NORTH] = DEFINE_RES_MEM(0, 0),
246 [DNV_GPIO_SOUTH] = DEFINE_RES_MEM(0, 0),
247 DEFINE_RES_IRQ(DNV_GPIO_IRQ),
250 static struct resource *dnv_gpio_mem_resources[DNV_GPIO_NR_RESOURCES] = {
251 [DNV_GPIO_NORTH] = &dnv_gpio_resources[DNV_GPIO_NORTH],
252 [DNV_GPIO_SOUTH] = &dnv_gpio_resources[DNV_GPIO_SOUTH],
255 static const struct mfd_cell dnv_gpio_devices[DNV_GPIO_NR_DEVICES] = {
257 .name = "denverton-pinctrl",
258 .num_resources = ARRAY_SIZE(dnv_gpio_resources),
259 .resources = dnv_gpio_resources,
260 .ignore_resource_conflicts = true,
264 static const struct lpc_ich_gpio_info dnv_gpio_info = {
266 .devices = dnv_gpio_devices,
267 .nr_devices = ARRAY_SIZE(dnv_gpio_devices),
268 .resources = dnv_gpio_mem_resources,
269 .nr_resources = ARRAY_SIZE(dnv_gpio_mem_resources),
270 .offsets = dnv_gpio_offsets,
273 static struct mfd_cell lpc_ich_spi_cell = {
275 .num_resources = ARRAY_SIZE(intel_spi_res),
276 .resources = intel_spi_res,
277 .ignore_resource_conflicts = true,
280 /* chipset related info */
282 LPC_ICH = 0, /* ICH */
285 LPC_ICH2M, /* ICH2-M */
286 LPC_ICH3, /* ICH3-S */
287 LPC_ICH3M, /* ICH3-M */
289 LPC_ICH4M, /* ICH4-M */
290 LPC_CICH, /* C-ICH */
291 LPC_ICH5, /* ICH5 & ICH5R */
292 LPC_6300ESB, /* 6300ESB */
293 LPC_ICH6, /* ICH6 & ICH6R */
294 LPC_ICH6M, /* ICH6-M */
295 LPC_ICH6W, /* ICH6W & ICH6RW */
296 LPC_631XESB, /* 631xESB/632xESB */
297 LPC_ICH7, /* ICH7 & ICH7R */
298 LPC_ICH7DH, /* ICH7DH */
299 LPC_ICH7M, /* ICH7-M & ICH7-U */
300 LPC_ICH7MDH, /* ICH7-M DH */
302 LPC_ICH8, /* ICH8 & ICH8R */
303 LPC_ICH8DH, /* ICH8DH */
304 LPC_ICH8DO, /* ICH8DO */
305 LPC_ICH8M, /* ICH8M */
306 LPC_ICH8ME, /* ICH8M-E */
308 LPC_ICH9R, /* ICH9R */
309 LPC_ICH9DH, /* ICH9DH */
310 LPC_ICH9DO, /* ICH9DO */
311 LPC_ICH9M, /* ICH9M */
312 LPC_ICH9ME, /* ICH9M-E */
313 LPC_ICH10, /* ICH10 */
314 LPC_ICH10R, /* ICH10R */
315 LPC_ICH10D, /* ICH10D */
316 LPC_ICH10DO, /* ICH10DO */
317 LPC_PCH, /* PCH Desktop Full Featured */
318 LPC_PCHM, /* PCH Mobile Full Featured */
327 LPC_PCHMSFF, /* PCH Mobile SFF Full Featured */
332 LPC_EP80579, /* EP80579 */
333 LPC_CPT, /* Cougar Point */
334 LPC_CPTD, /* Cougar Point Desktop */
335 LPC_CPTM, /* Cougar Point Mobile */
336 LPC_PBG, /* Patsburg */
337 LPC_DH89XXCC, /* DH89xxCC */
338 LPC_PPT, /* Panther Point */
339 LPC_LPT, /* Lynx Point */
340 LPC_LPT_LP, /* Lynx Point-LP */
341 LPC_WBG, /* Wellsburg */
342 LPC_AVN, /* Avoton SoC */
343 LPC_BAYTRAIL, /* Bay Trail SoC */
344 LPC_COLETO, /* Coleto Creek */
345 LPC_WPT_LP, /* Wildcat Point-LP */
346 LPC_BRASWELL, /* Braswell SoC */
347 LPC_LEWISBURG, /* Lewisburg */
348 LPC_9S, /* 9 Series */
349 LPC_APL, /* Apollo Lake SoC */
350 LPC_DNV, /* Denverton SoC */
351 LPC_GLK, /* Gemini Lake SoC */
352 LPC_COUGARMOUNTAIN,/* Cougar Mountain SoC*/
355 struct lpc_ich_priv {
356 enum lpc_chipsets chipset;
358 int abase; /* ACPI base */
359 int actrl_pbase; /* ACPI control or PMC base */
360 int gbase; /* GPIO base */
361 int gctrl; /* GPIO control */
363 int abase_save; /* Cached ACPI base value */
364 int actrl_pbase_save; /* Cached ACPI control or PMC base value */
365 int gctrl_save; /* Cached GPIO control value */
368 static struct lpc_ich_info lpc_chipset_info[] = {
406 .name = "ICH5 or ICH5R",
414 .name = "ICH6 or ICH6R",
416 .gpio_version = ICH_V6_GPIO,
421 .gpio_version = ICH_V6_GPIO,
424 .name = "ICH6W or ICH6RW",
426 .gpio_version = ICH_V6_GPIO,
429 .name = "631xESB/632xESB",
431 .gpio_version = ICH_V6_GPIO,
434 .name = "ICH7 or ICH7R",
436 .gpio_version = ICH_V7_GPIO,
441 .gpio_version = ICH_V7_GPIO,
444 .name = "ICH7-M or ICH7-U",
446 .gpio_version = ICH_V7_GPIO,
451 .gpio_version = ICH_V7_GPIO,
456 .gpio_version = ICH_V7_GPIO,
459 .name = "ICH8 or ICH8R",
461 .gpio_version = ICH_V7_GPIO,
466 .gpio_version = ICH_V7_GPIO,
471 .gpio_version = ICH_V7_GPIO,
476 .gpio_version = ICH_V7_GPIO,
481 .gpio_version = ICH_V7_GPIO,
486 .gpio_version = ICH_V9_GPIO,
491 .gpio_version = ICH_V9_GPIO,
496 .gpio_version = ICH_V9_GPIO,
501 .gpio_version = ICH_V9_GPIO,
506 .gpio_version = ICH_V9_GPIO,
511 .gpio_version = ICH_V9_GPIO,
516 .gpio_version = ICH_V10CONS_GPIO,
521 .gpio_version = ICH_V10CONS_GPIO,
526 .gpio_version = ICH_V10CORP_GPIO,
531 .gpio_version = ICH_V10CORP_GPIO,
534 .name = "PCH Desktop Full Featured",
536 .gpio_version = ICH_V5_GPIO,
539 .name = "PCH Mobile Full Featured",
541 .gpio_version = ICH_V5_GPIO,
546 .gpio_version = ICH_V5_GPIO,
551 .gpio_version = ICH_V5_GPIO,
556 .gpio_version = ICH_V5_GPIO,
561 .gpio_version = ICH_V5_GPIO,
566 .gpio_version = ICH_V5_GPIO,
571 .gpio_version = ICH_V5_GPIO,
576 .gpio_version = ICH_V5_GPIO,
581 .gpio_version = ICH_V5_GPIO,
584 .name = "PCH Mobile SFF Full Featured",
586 .gpio_version = ICH_V5_GPIO,
591 .gpio_version = ICH_V5_GPIO,
596 .gpio_version = ICH_V5_GPIO,
601 .gpio_version = ICH_V5_GPIO,
606 .gpio_version = ICH_V5_GPIO,
613 .name = "Cougar Point",
615 .gpio_version = ICH_V5_GPIO,
618 .name = "Cougar Point Desktop",
620 .gpio_version = ICH_V5_GPIO,
623 .name = "Cougar Point Mobile",
625 .gpio_version = ICH_V5_GPIO,
634 .gpio_version = ICH_V5_GPIO,
637 .name = "Panther Point",
639 .gpio_version = ICH_V5_GPIO,
642 .name = "Lynx Point",
644 .gpio_version = ICH_V5_GPIO,
645 .spi_type = INTEL_SPI_LPT,
648 .name = "Lynx Point_LP",
650 .spi_type = INTEL_SPI_LPT,
657 .name = "Avoton SoC",
659 .gpio_version = AVOTON_GPIO,
660 .spi_type = INTEL_SPI_BYT,
663 .name = "Bay Trail SoC",
665 .spi_type = INTEL_SPI_BYT,
668 .name = "Coleto Creek",
672 .name = "Wildcat Point_LP",
674 .spi_type = INTEL_SPI_LPT,
677 .name = "Braswell SoC",
679 .spi_type = INTEL_SPI_BYT,
688 .gpio_version = ICH_V5_GPIO,
691 .name = "Apollo Lake SoC",
693 .gpio_info = &apl_gpio_info,
694 .spi_type = INTEL_SPI_BXT,
697 .name = "Denverton SoC",
698 .gpio_info = &dnv_gpio_info,
701 .name = "Gemini Lake SoC",
702 .spi_type = INTEL_SPI_BXT,
704 [LPC_COUGARMOUNTAIN] = {
705 .name = "Cougar Mountain SoC",
711 * This data only exists for exporting the supported PCI ids
712 * via MODULE_DEVICE_TABLE. We do not actually register a
713 * pci_driver, because the I/O Controller Hub has also other
714 * functions that probably will be registered by other drivers.
716 static const struct pci_device_id lpc_ich_ids[] = {
717 { PCI_VDEVICE(INTEL, 0x0f1c), LPC_BAYTRAIL},
718 { PCI_VDEVICE(INTEL, 0x19dc), LPC_DNV},
719 { PCI_VDEVICE(INTEL, 0x1c41), LPC_CPT},
720 { PCI_VDEVICE(INTEL, 0x1c42), LPC_CPTD},
721 { PCI_VDEVICE(INTEL, 0x1c43), LPC_CPTM},
722 { PCI_VDEVICE(INTEL, 0x1c44), LPC_CPT},
723 { PCI_VDEVICE(INTEL, 0x1c45), LPC_CPT},
724 { PCI_VDEVICE(INTEL, 0x1c46), LPC_CPT},
725 { PCI_VDEVICE(INTEL, 0x1c47), LPC_CPT},
726 { PCI_VDEVICE(INTEL, 0x1c48), LPC_CPT},
727 { PCI_VDEVICE(INTEL, 0x1c49), LPC_CPT},
728 { PCI_VDEVICE(INTEL, 0x1c4a), LPC_CPT},
729 { PCI_VDEVICE(INTEL, 0x1c4b), LPC_CPT},
730 { PCI_VDEVICE(INTEL, 0x1c4c), LPC_CPT},
731 { PCI_VDEVICE(INTEL, 0x1c4d), LPC_CPT},
732 { PCI_VDEVICE(INTEL, 0x1c4e), LPC_CPT},
733 { PCI_VDEVICE(INTEL, 0x1c4f), LPC_CPT},
734 { PCI_VDEVICE(INTEL, 0x1c50), LPC_CPT},
735 { PCI_VDEVICE(INTEL, 0x1c51), LPC_CPT},
736 { PCI_VDEVICE(INTEL, 0x1c52), LPC_CPT},
737 { PCI_VDEVICE(INTEL, 0x1c53), LPC_CPT},
738 { PCI_VDEVICE(INTEL, 0x1c54), LPC_CPT},
739 { PCI_VDEVICE(INTEL, 0x1c55), LPC_CPT},
740 { PCI_VDEVICE(INTEL, 0x1c56), LPC_CPT},
741 { PCI_VDEVICE(INTEL, 0x1c57), LPC_CPT},
742 { PCI_VDEVICE(INTEL, 0x1c58), LPC_CPT},
743 { PCI_VDEVICE(INTEL, 0x1c59), LPC_CPT},
744 { PCI_VDEVICE(INTEL, 0x1c5a), LPC_CPT},
745 { PCI_VDEVICE(INTEL, 0x1c5b), LPC_CPT},
746 { PCI_VDEVICE(INTEL, 0x1c5c), LPC_CPT},
747 { PCI_VDEVICE(INTEL, 0x1c5d), LPC_CPT},
748 { PCI_VDEVICE(INTEL, 0x1c5e), LPC_CPT},
749 { PCI_VDEVICE(INTEL, 0x1c5f), LPC_CPT},
750 { PCI_VDEVICE(INTEL, 0x1d40), LPC_PBG},
751 { PCI_VDEVICE(INTEL, 0x1d41), LPC_PBG},
752 { PCI_VDEVICE(INTEL, 0x1e40), LPC_PPT},
753 { PCI_VDEVICE(INTEL, 0x1e41), LPC_PPT},
754 { PCI_VDEVICE(INTEL, 0x1e42), LPC_PPT},
755 { PCI_VDEVICE(INTEL, 0x1e43), LPC_PPT},
756 { PCI_VDEVICE(INTEL, 0x1e44), LPC_PPT},
757 { PCI_VDEVICE(INTEL, 0x1e45), LPC_PPT},
758 { PCI_VDEVICE(INTEL, 0x1e46), LPC_PPT},
759 { PCI_VDEVICE(INTEL, 0x1e47), LPC_PPT},
760 { PCI_VDEVICE(INTEL, 0x1e48), LPC_PPT},
761 { PCI_VDEVICE(INTEL, 0x1e49), LPC_PPT},
762 { PCI_VDEVICE(INTEL, 0x1e4a), LPC_PPT},
763 { PCI_VDEVICE(INTEL, 0x1e4b), LPC_PPT},
764 { PCI_VDEVICE(INTEL, 0x1e4c), LPC_PPT},
765 { PCI_VDEVICE(INTEL, 0x1e4d), LPC_PPT},
766 { PCI_VDEVICE(INTEL, 0x1e4e), LPC_PPT},
767 { PCI_VDEVICE(INTEL, 0x1e4f), LPC_PPT},
768 { PCI_VDEVICE(INTEL, 0x1e50), LPC_PPT},
769 { PCI_VDEVICE(INTEL, 0x1e51), LPC_PPT},
770 { PCI_VDEVICE(INTEL, 0x1e52), LPC_PPT},
771 { PCI_VDEVICE(INTEL, 0x1e53), LPC_PPT},
772 { PCI_VDEVICE(INTEL, 0x1e54), LPC_PPT},
773 { PCI_VDEVICE(INTEL, 0x1e55), LPC_PPT},
774 { PCI_VDEVICE(INTEL, 0x1e56), LPC_PPT},
775 { PCI_VDEVICE(INTEL, 0x1e57), LPC_PPT},
776 { PCI_VDEVICE(INTEL, 0x1e58), LPC_PPT},
777 { PCI_VDEVICE(INTEL, 0x1e59), LPC_PPT},
778 { PCI_VDEVICE(INTEL, 0x1e5a), LPC_PPT},
779 { PCI_VDEVICE(INTEL, 0x1e5b), LPC_PPT},
780 { PCI_VDEVICE(INTEL, 0x1e5c), LPC_PPT},
781 { PCI_VDEVICE(INTEL, 0x1e5d), LPC_PPT},
782 { PCI_VDEVICE(INTEL, 0x1e5e), LPC_PPT},
783 { PCI_VDEVICE(INTEL, 0x1e5f), LPC_PPT},
784 { PCI_VDEVICE(INTEL, 0x1f38), LPC_AVN},
785 { PCI_VDEVICE(INTEL, 0x1f39), LPC_AVN},
786 { PCI_VDEVICE(INTEL, 0x1f3a), LPC_AVN},
787 { PCI_VDEVICE(INTEL, 0x1f3b), LPC_AVN},
788 { PCI_VDEVICE(INTEL, 0x229c), LPC_BRASWELL},
789 { PCI_VDEVICE(INTEL, 0x2310), LPC_DH89XXCC},
790 { PCI_VDEVICE(INTEL, 0x2390), LPC_COLETO},
791 { PCI_VDEVICE(INTEL, 0x2410), LPC_ICH},
792 { PCI_VDEVICE(INTEL, 0x2420), LPC_ICH0},
793 { PCI_VDEVICE(INTEL, 0x2440), LPC_ICH2},
794 { PCI_VDEVICE(INTEL, 0x244c), LPC_ICH2M},
795 { PCI_VDEVICE(INTEL, 0x2450), LPC_CICH},
796 { PCI_VDEVICE(INTEL, 0x2480), LPC_ICH3},
797 { PCI_VDEVICE(INTEL, 0x248c), LPC_ICH3M},
798 { PCI_VDEVICE(INTEL, 0x24c0), LPC_ICH4},
799 { PCI_VDEVICE(INTEL, 0x24cc), LPC_ICH4M},
800 { PCI_VDEVICE(INTEL, 0x24d0), LPC_ICH5},
801 { PCI_VDEVICE(INTEL, 0x25a1), LPC_6300ESB},
802 { PCI_VDEVICE(INTEL, 0x2640), LPC_ICH6},
803 { PCI_VDEVICE(INTEL, 0x2641), LPC_ICH6M},
804 { PCI_VDEVICE(INTEL, 0x2642), LPC_ICH6W},
805 { PCI_VDEVICE(INTEL, 0x2670), LPC_631XESB},
806 { PCI_VDEVICE(INTEL, 0x2671), LPC_631XESB},
807 { PCI_VDEVICE(INTEL, 0x2672), LPC_631XESB},
808 { PCI_VDEVICE(INTEL, 0x2673), LPC_631XESB},
809 { PCI_VDEVICE(INTEL, 0x2674), LPC_631XESB},
810 { PCI_VDEVICE(INTEL, 0x2675), LPC_631XESB},
811 { PCI_VDEVICE(INTEL, 0x2676), LPC_631XESB},
812 { PCI_VDEVICE(INTEL, 0x2677), LPC_631XESB},
813 { PCI_VDEVICE(INTEL, 0x2678), LPC_631XESB},
814 { PCI_VDEVICE(INTEL, 0x2679), LPC_631XESB},
815 { PCI_VDEVICE(INTEL, 0x267a), LPC_631XESB},
816 { PCI_VDEVICE(INTEL, 0x267b), LPC_631XESB},
817 { PCI_VDEVICE(INTEL, 0x267c), LPC_631XESB},
818 { PCI_VDEVICE(INTEL, 0x267d), LPC_631XESB},
819 { PCI_VDEVICE(INTEL, 0x267e), LPC_631XESB},
820 { PCI_VDEVICE(INTEL, 0x267f), LPC_631XESB},
821 { PCI_VDEVICE(INTEL, 0x27b0), LPC_ICH7DH},
822 { PCI_VDEVICE(INTEL, 0x27b8), LPC_ICH7},
823 { PCI_VDEVICE(INTEL, 0x27b9), LPC_ICH7M},
824 { PCI_VDEVICE(INTEL, 0x27bc), LPC_NM10},
825 { PCI_VDEVICE(INTEL, 0x27bd), LPC_ICH7MDH},
826 { PCI_VDEVICE(INTEL, 0x2810), LPC_ICH8},
827 { PCI_VDEVICE(INTEL, 0x2811), LPC_ICH8ME},
828 { PCI_VDEVICE(INTEL, 0x2812), LPC_ICH8DH},
829 { PCI_VDEVICE(INTEL, 0x2814), LPC_ICH8DO},
830 { PCI_VDEVICE(INTEL, 0x2815), LPC_ICH8M},
831 { PCI_VDEVICE(INTEL, 0x2912), LPC_ICH9DH},
832 { PCI_VDEVICE(INTEL, 0x2914), LPC_ICH9DO},
833 { PCI_VDEVICE(INTEL, 0x2916), LPC_ICH9R},
834 { PCI_VDEVICE(INTEL, 0x2917), LPC_ICH9ME},
835 { PCI_VDEVICE(INTEL, 0x2918), LPC_ICH9},
836 { PCI_VDEVICE(INTEL, 0x2919), LPC_ICH9M},
837 { PCI_VDEVICE(INTEL, 0x2b9c), LPC_COUGARMOUNTAIN},
838 { PCI_VDEVICE(INTEL, 0x3197), LPC_GLK},
839 { PCI_VDEVICE(INTEL, 0x31e8), LPC_GLK},
840 { PCI_VDEVICE(INTEL, 0x3a14), LPC_ICH10DO},
841 { PCI_VDEVICE(INTEL, 0x3a16), LPC_ICH10R},
842 { PCI_VDEVICE(INTEL, 0x3a18), LPC_ICH10},
843 { PCI_VDEVICE(INTEL, 0x3a1a), LPC_ICH10D},
844 { PCI_VDEVICE(INTEL, 0x3b00), LPC_PCH},
845 { PCI_VDEVICE(INTEL, 0x3b01), LPC_PCHM},
846 { PCI_VDEVICE(INTEL, 0x3b02), LPC_P55},
847 { PCI_VDEVICE(INTEL, 0x3b03), LPC_PM55},
848 { PCI_VDEVICE(INTEL, 0x3b06), LPC_H55},
849 { PCI_VDEVICE(INTEL, 0x3b07), LPC_QM57},
850 { PCI_VDEVICE(INTEL, 0x3b08), LPC_H57},
851 { PCI_VDEVICE(INTEL, 0x3b09), LPC_HM55},
852 { PCI_VDEVICE(INTEL, 0x3b0a), LPC_Q57},
853 { PCI_VDEVICE(INTEL, 0x3b0b), LPC_HM57},
854 { PCI_VDEVICE(INTEL, 0x3b0d), LPC_PCHMSFF},
855 { PCI_VDEVICE(INTEL, 0x3b0f), LPC_QS57},
856 { PCI_VDEVICE(INTEL, 0x3b12), LPC_3400},
857 { PCI_VDEVICE(INTEL, 0x3b14), LPC_3420},
858 { PCI_VDEVICE(INTEL, 0x3b16), LPC_3450},
859 { PCI_VDEVICE(INTEL, 0x5031), LPC_EP80579},
860 { PCI_VDEVICE(INTEL, 0x5ae8), LPC_APL},
861 { PCI_VDEVICE(INTEL, 0x8c40), LPC_LPT},
862 { PCI_VDEVICE(INTEL, 0x8c41), LPC_LPT},
863 { PCI_VDEVICE(INTEL, 0x8c42), LPC_LPT},
864 { PCI_VDEVICE(INTEL, 0x8c43), LPC_LPT},
865 { PCI_VDEVICE(INTEL, 0x8c44), LPC_LPT},
866 { PCI_VDEVICE(INTEL, 0x8c45), LPC_LPT},
867 { PCI_VDEVICE(INTEL, 0x8c46), LPC_LPT},
868 { PCI_VDEVICE(INTEL, 0x8c47), LPC_LPT},
869 { PCI_VDEVICE(INTEL, 0x8c48), LPC_LPT},
870 { PCI_VDEVICE(INTEL, 0x8c49), LPC_LPT},
871 { PCI_VDEVICE(INTEL, 0x8c4a), LPC_LPT},
872 { PCI_VDEVICE(INTEL, 0x8c4b), LPC_LPT},
873 { PCI_VDEVICE(INTEL, 0x8c4c), LPC_LPT},
874 { PCI_VDEVICE(INTEL, 0x8c4d), LPC_LPT},
875 { PCI_VDEVICE(INTEL, 0x8c4e), LPC_LPT},
876 { PCI_VDEVICE(INTEL, 0x8c4f), LPC_LPT},
877 { PCI_VDEVICE(INTEL, 0x8c50), LPC_LPT},
878 { PCI_VDEVICE(INTEL, 0x8c51), LPC_LPT},
879 { PCI_VDEVICE(INTEL, 0x8c52), LPC_LPT},
880 { PCI_VDEVICE(INTEL, 0x8c53), LPC_LPT},
881 { PCI_VDEVICE(INTEL, 0x8c54), LPC_LPT},
882 { PCI_VDEVICE(INTEL, 0x8c55), LPC_LPT},
883 { PCI_VDEVICE(INTEL, 0x8c56), LPC_LPT},
884 { PCI_VDEVICE(INTEL, 0x8c57), LPC_LPT},
885 { PCI_VDEVICE(INTEL, 0x8c58), LPC_LPT},
886 { PCI_VDEVICE(INTEL, 0x8c59), LPC_LPT},
887 { PCI_VDEVICE(INTEL, 0x8c5a), LPC_LPT},
888 { PCI_VDEVICE(INTEL, 0x8c5b), LPC_LPT},
889 { PCI_VDEVICE(INTEL, 0x8c5c), LPC_LPT},
890 { PCI_VDEVICE(INTEL, 0x8c5d), LPC_LPT},
891 { PCI_VDEVICE(INTEL, 0x8c5e), LPC_LPT},
892 { PCI_VDEVICE(INTEL, 0x8c5f), LPC_LPT},
893 { PCI_VDEVICE(INTEL, 0x8cc1), LPC_9S},
894 { PCI_VDEVICE(INTEL, 0x8cc2), LPC_9S},
895 { PCI_VDEVICE(INTEL, 0x8cc3), LPC_9S},
896 { PCI_VDEVICE(INTEL, 0x8cc4), LPC_9S},
897 { PCI_VDEVICE(INTEL, 0x8cc6), LPC_9S},
898 { PCI_VDEVICE(INTEL, 0x8d40), LPC_WBG},
899 { PCI_VDEVICE(INTEL, 0x8d41), LPC_WBG},
900 { PCI_VDEVICE(INTEL, 0x8d42), LPC_WBG},
901 { PCI_VDEVICE(INTEL, 0x8d43), LPC_WBG},
902 { PCI_VDEVICE(INTEL, 0x8d44), LPC_WBG},
903 { PCI_VDEVICE(INTEL, 0x8d45), LPC_WBG},
904 { PCI_VDEVICE(INTEL, 0x8d46), LPC_WBG},
905 { PCI_VDEVICE(INTEL, 0x8d47), LPC_WBG},
906 { PCI_VDEVICE(INTEL, 0x8d48), LPC_WBG},
907 { PCI_VDEVICE(INTEL, 0x8d49), LPC_WBG},
908 { PCI_VDEVICE(INTEL, 0x8d4a), LPC_WBG},
909 { PCI_VDEVICE(INTEL, 0x8d4b), LPC_WBG},
910 { PCI_VDEVICE(INTEL, 0x8d4c), LPC_WBG},
911 { PCI_VDEVICE(INTEL, 0x8d4d), LPC_WBG},
912 { PCI_VDEVICE(INTEL, 0x8d4e), LPC_WBG},
913 { PCI_VDEVICE(INTEL, 0x8d4f), LPC_WBG},
914 { PCI_VDEVICE(INTEL, 0x8d50), LPC_WBG},
915 { PCI_VDEVICE(INTEL, 0x8d51), LPC_WBG},
916 { PCI_VDEVICE(INTEL, 0x8d52), LPC_WBG},
917 { PCI_VDEVICE(INTEL, 0x8d53), LPC_WBG},
918 { PCI_VDEVICE(INTEL, 0x8d54), LPC_WBG},
919 { PCI_VDEVICE(INTEL, 0x8d55), LPC_WBG},
920 { PCI_VDEVICE(INTEL, 0x8d56), LPC_WBG},
921 { PCI_VDEVICE(INTEL, 0x8d57), LPC_WBG},
922 { PCI_VDEVICE(INTEL, 0x8d58), LPC_WBG},
923 { PCI_VDEVICE(INTEL, 0x8d59), LPC_WBG},
924 { PCI_VDEVICE(INTEL, 0x8d5a), LPC_WBG},
925 { PCI_VDEVICE(INTEL, 0x8d5b), LPC_WBG},
926 { PCI_VDEVICE(INTEL, 0x8d5c), LPC_WBG},
927 { PCI_VDEVICE(INTEL, 0x8d5d), LPC_WBG},
928 { PCI_VDEVICE(INTEL, 0x8d5e), LPC_WBG},
929 { PCI_VDEVICE(INTEL, 0x8d5f), LPC_WBG},
930 { PCI_VDEVICE(INTEL, 0x9c40), LPC_LPT_LP},
931 { PCI_VDEVICE(INTEL, 0x9c41), LPC_LPT_LP},
932 { PCI_VDEVICE(INTEL, 0x9c42), LPC_LPT_LP},
933 { PCI_VDEVICE(INTEL, 0x9c43), LPC_LPT_LP},
934 { PCI_VDEVICE(INTEL, 0x9c44), LPC_LPT_LP},
935 { PCI_VDEVICE(INTEL, 0x9c45), LPC_LPT_LP},
936 { PCI_VDEVICE(INTEL, 0x9c46), LPC_LPT_LP},
937 { PCI_VDEVICE(INTEL, 0x9c47), LPC_LPT_LP},
938 { PCI_VDEVICE(INTEL, 0x9cc1), LPC_WPT_LP},
939 { PCI_VDEVICE(INTEL, 0x9cc2), LPC_WPT_LP},
940 { PCI_VDEVICE(INTEL, 0x9cc3), LPC_WPT_LP},
941 { PCI_VDEVICE(INTEL, 0x9cc5), LPC_WPT_LP},
942 { PCI_VDEVICE(INTEL, 0x9cc6), LPC_WPT_LP},
943 { PCI_VDEVICE(INTEL, 0x9cc7), LPC_WPT_LP},
944 { PCI_VDEVICE(INTEL, 0x9cc9), LPC_WPT_LP},
945 { PCI_VDEVICE(INTEL, 0xa1c1), LPC_LEWISBURG},
946 { PCI_VDEVICE(INTEL, 0xa1c2), LPC_LEWISBURG},
947 { PCI_VDEVICE(INTEL, 0xa1c3), LPC_LEWISBURG},
948 { PCI_VDEVICE(INTEL, 0xa1c4), LPC_LEWISBURG},
949 { PCI_VDEVICE(INTEL, 0xa1c5), LPC_LEWISBURG},
950 { PCI_VDEVICE(INTEL, 0xa1c6), LPC_LEWISBURG},
951 { PCI_VDEVICE(INTEL, 0xa1c7), LPC_LEWISBURG},
952 { PCI_VDEVICE(INTEL, 0xa242), LPC_LEWISBURG},
953 { PCI_VDEVICE(INTEL, 0xa243), LPC_LEWISBURG},
954 { 0, }, /* End of list */
956 MODULE_DEVICE_TABLE(pci, lpc_ich_ids);
958 static void lpc_ich_restore_config_space(struct pci_dev *dev)
960 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
962 if (priv->abase_save >= 0) {
963 pci_write_config_byte(dev, priv->abase, priv->abase_save);
964 priv->abase_save = -1;
967 if (priv->actrl_pbase_save >= 0) {
968 pci_write_config_byte(dev, priv->actrl_pbase,
969 priv->actrl_pbase_save);
970 priv->actrl_pbase_save = -1;
973 if (priv->gctrl_save >= 0) {
974 pci_write_config_byte(dev, priv->gctrl, priv->gctrl_save);
975 priv->gctrl_save = -1;
979 static void lpc_ich_enable_acpi_space(struct pci_dev *dev)
981 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
984 switch (lpc_chipset_info[priv->chipset].iTCO_version) {
987 * Some chipsets (eg Avoton) enable the ACPI space in the
988 * ACPI BASE register.
990 pci_read_config_byte(dev, priv->abase, ®_save);
991 pci_write_config_byte(dev, priv->abase, reg_save | 0x2);
992 priv->abase_save = reg_save;
996 * Most chipsets enable the ACPI space in the ACPI control
999 pci_read_config_byte(dev, priv->actrl_pbase, ®_save);
1000 pci_write_config_byte(dev, priv->actrl_pbase, reg_save | 0x80);
1001 priv->actrl_pbase_save = reg_save;
1006 static void lpc_ich_enable_gpio_space(struct pci_dev *dev)
1008 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
1011 pci_read_config_byte(dev, priv->gctrl, ®_save);
1012 pci_write_config_byte(dev, priv->gctrl, reg_save | 0x10);
1013 priv->gctrl_save = reg_save;
1016 static void lpc_ich_enable_pmc_space(struct pci_dev *dev)
1018 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
1021 pci_read_config_byte(dev, priv->actrl_pbase, ®_save);
1022 pci_write_config_byte(dev, priv->actrl_pbase, reg_save | 0x2);
1024 priv->actrl_pbase_save = reg_save;
1027 static int lpc_ich_finalize_wdt_cell(struct pci_dev *dev)
1029 struct itco_wdt_platform_data *pdata;
1030 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
1031 struct lpc_ich_info *info;
1032 struct mfd_cell *cell = &lpc_ich_wdt_cell;
1034 pdata = devm_kzalloc(&dev->dev, sizeof(*pdata), GFP_KERNEL);
1038 info = &lpc_chipset_info[priv->chipset];
1040 pdata->version = info->iTCO_version;
1041 strscpy(pdata->name, info->name, sizeof(pdata->name));
1043 cell->platform_data = pdata;
1044 cell->pdata_size = sizeof(*pdata);
1048 static void lpc_ich_finalize_gpio_cell(struct pci_dev *dev)
1050 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
1051 struct mfd_cell *cell = &lpc_ich_gpio_cell;
1053 cell->platform_data = &lpc_chipset_info[priv->chipset];
1054 cell->pdata_size = sizeof(struct lpc_ich_info);
1058 * We don't check for resource conflict globally. There are 2 or 3 independent
1059 * GPIO groups and it's enough to have access to one of these to instantiate
1062 static int lpc_ich_check_conflict_gpio(struct resource *res)
1067 if (resource_size(res) >= 0x50 &&
1068 !acpi_check_region(res->start + 0x40, 0x10, "LPC ICH GPIO3"))
1071 if (!acpi_check_region(res->start + 0x30, 0x10, "LPC ICH GPIO2"))
1074 ret = acpi_check_region(res->start + 0x00, 0x30, "LPC ICH GPIO1");
1078 return use_gpio ? use_gpio : ret;
1081 static int lpc_ich_init_gpio(struct pci_dev *dev)
1083 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
1087 bool acpi_conflict = false;
1088 struct resource *res;
1090 /* Setup power management base register */
1091 pci_read_config_dword(dev, priv->abase, &base_addr_cfg);
1092 base_addr = base_addr_cfg & 0x0000ff80;
1094 dev_notice(&dev->dev, "I/O space for ACPI uninitialized\n");
1095 lpc_ich_gpio_cell.num_resources--;
1099 res = &gpio_ich_res[ICH_RES_GPE0];
1100 res->start = base_addr + ACPIBASE_GPE_OFF;
1101 res->end = base_addr + ACPIBASE_GPE_END;
1102 ret = acpi_check_resource_conflict(res);
1105 * This isn't fatal for the GPIO, but we have to make sure that
1106 * the platform_device subsystem doesn't see this resource
1107 * or it will register an invalid region.
1109 lpc_ich_gpio_cell.num_resources--;
1110 acpi_conflict = true;
1112 lpc_ich_enable_acpi_space(dev);
1116 /* Setup GPIO base register */
1117 pci_read_config_dword(dev, priv->gbase, &base_addr_cfg);
1118 base_addr = base_addr_cfg & 0x0000ff80;
1120 dev_notice(&dev->dev, "I/O space for GPIO uninitialized\n");
1125 /* Older devices provide fewer GPIO and have a smaller resource size. */
1126 res = &gpio_ich_res[ICH_RES_GPIO];
1127 res->start = base_addr;
1128 switch (lpc_chipset_info[priv->chipset].gpio_version) {
1130 case ICH_V10CORP_GPIO:
1131 res->end = res->start + 128 - 1;
1134 res->end = res->start + 64 - 1;
1138 ret = lpc_ich_check_conflict_gpio(res);
1140 /* this isn't necessarily fatal for the GPIO */
1141 acpi_conflict = true;
1144 lpc_chipset_info[priv->chipset].use_gpio = ret;
1145 lpc_ich_enable_gpio_space(dev);
1147 lpc_ich_finalize_gpio_cell(dev);
1148 ret = mfd_add_devices(&dev->dev, PLATFORM_DEVID_AUTO,
1149 &lpc_ich_gpio_cell, 1, NULL, 0, NULL);
1153 pr_warn("Resource conflict(s) found affecting %s\n",
1154 lpc_ich_gpio_cell.name);
1158 static int lpc_ich_init_wdt(struct pci_dev *dev)
1160 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
1164 struct resource *res;
1166 /* If we have ACPI based watchdog use that instead */
1167 if (acpi_has_watchdog())
1170 /* Setup power management base register */
1171 pci_read_config_dword(dev, priv->abase, &base_addr_cfg);
1172 base_addr = base_addr_cfg & 0x0000ff80;
1174 dev_notice(&dev->dev, "I/O space for ACPI uninitialized\n");
1179 res = wdt_io_res(ICH_RES_IO_TCO);
1180 res->start = base_addr + ACPIBASE_TCO_OFF;
1181 res->end = base_addr + ACPIBASE_TCO_END;
1183 res = wdt_io_res(ICH_RES_IO_SMI);
1184 res->start = base_addr + ACPIBASE_SMI_OFF;
1185 res->end = base_addr + ACPIBASE_SMI_END;
1187 lpc_ich_enable_acpi_space(dev);
1191 * Get the Memory-Mapped GCS register. To get access to it
1192 * we have to read RCBA from PCI Config space 0xf0 and use
1193 * it as base. GCS = RCBA + ICH6_GCS(0x3410).
1196 * Get the Power Management Configuration register. To get access
1197 * to it we have to read the PMC BASE from config space and address
1198 * the register at offset 0x8.
1200 if (lpc_chipset_info[priv->chipset].iTCO_version == 1) {
1201 /* Don't register iomem for TCO ver 1 */
1202 lpc_ich_wdt_cell.num_resources--;
1203 } else if (lpc_chipset_info[priv->chipset].iTCO_version == 2) {
1204 pci_read_config_dword(dev, RCBABASE, &base_addr_cfg);
1205 base_addr = base_addr_cfg & 0xffffc000;
1206 if (!(base_addr_cfg & 1)) {
1207 dev_notice(&dev->dev, "RCBA is disabled by "
1208 "hardware/BIOS, device disabled\n");
1212 res = wdt_mem_res(ICH_RES_MEM_GCS_PMC);
1213 res->start = base_addr + ACPIBASE_GCS_OFF;
1214 res->end = base_addr + ACPIBASE_GCS_END;
1215 } else if (lpc_chipset_info[priv->chipset].iTCO_version == 3) {
1216 lpc_ich_enable_pmc_space(dev);
1217 pci_read_config_dword(dev, ACPICTRL_PMCBASE, &base_addr_cfg);
1218 base_addr = base_addr_cfg & 0xfffffe00;
1220 res = wdt_mem_res(ICH_RES_MEM_GCS_PMC);
1221 res->start = base_addr + ACPIBASE_PMC_OFF;
1222 res->end = base_addr + ACPIBASE_PMC_END;
1225 ret = lpc_ich_finalize_wdt_cell(dev);
1229 ret = mfd_add_devices(&dev->dev, PLATFORM_DEVID_AUTO,
1230 &lpc_ich_wdt_cell, 1, NULL, 0, NULL);
1236 static int lpc_ich_init_pinctrl(struct pci_dev *dev)
1238 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
1239 const struct lpc_ich_gpio_info *info = lpc_chipset_info[priv->chipset].gpio_info;
1240 struct resource base;
1244 /* Check, if GPIO has been exported as an ACPI device */
1245 if (acpi_dev_present(info->hid, NULL, -1))
1248 ret = p2sb_bar(dev->bus, 0, &base);
1252 for (i = 0; i < info->nr_resources; i++) {
1253 struct resource *mem = info->resources[i];
1254 resource_size_t offset = info->offsets[i];
1256 /* Fill MEM resource */
1257 mem->start = base.start + offset;
1258 mem->end = base.start + offset + INTEL_GPIO_RESOURCE_SIZE - 1;
1259 mem->flags = base.flags;
1262 return mfd_add_devices(&dev->dev, 0, info->devices, info->nr_devices,
1266 static bool lpc_ich_byt_set_writeable(void __iomem *base, void *data)
1270 val = readl(base + BYT_BCR);
1271 if (!(val & BYT_BCR_WPD)) {
1273 writel(val, base + BYT_BCR);
1274 val = readl(base + BYT_BCR);
1277 return val & BYT_BCR_WPD;
1280 static bool lpc_ich_set_writeable(struct pci_bus *bus, unsigned int devfn)
1284 pci_bus_read_config_dword(bus, devfn, BCR, &bcr);
1285 if (!(bcr & BCR_WPD)) {
1287 pci_bus_write_config_dword(bus, devfn, BCR, bcr);
1288 pci_bus_read_config_dword(bus, devfn, BCR, &bcr);
1291 return bcr & BCR_WPD;
1294 static bool lpc_ich_lpt_set_writeable(void __iomem *base, void *data)
1296 struct pci_dev *pdev = data;
1298 return lpc_ich_set_writeable(pdev->bus, pdev->devfn);
1301 static bool lpc_ich_bxt_set_writeable(void __iomem *base, void *data)
1303 struct pci_dev *pdev = data;
1305 return lpc_ich_set_writeable(pdev->bus, PCI_DEVFN(13, 2));
1308 static int lpc_ich_init_spi(struct pci_dev *dev)
1310 struct lpc_ich_priv *priv = pci_get_drvdata(dev);
1311 struct resource *res = &intel_spi_res[0];
1312 struct intel_spi_boardinfo *info;
1316 info = devm_kzalloc(&dev->dev, sizeof(*info), GFP_KERNEL);
1320 info->type = lpc_chipset_info[priv->chipset].spi_type;
1322 switch (info->type) {
1324 pci_read_config_dword(dev, SPIBASE_BYT, &spi_base);
1325 if (spi_base & SPIBASE_BYT_EN) {
1326 res->start = ALIGN_DOWN(spi_base, SPIBASE_BYT_SZ);
1327 res->end = res->start + SPIBASE_BYT_SZ - 1;
1329 info->set_writeable = lpc_ich_byt_set_writeable;
1334 pci_read_config_dword(dev, RCBABASE, &rcba);
1336 spi_base = round_down(rcba, SPIBASE_LPT_SZ);
1337 res->start = spi_base + SPIBASE_LPT;
1338 res->end = res->start + SPIBASE_LPT_SZ - 1;
1340 info->set_writeable = lpc_ich_lpt_set_writeable;
1347 * The P2SB is hidden by BIOS and we need to unhide it in
1348 * order to read BAR of the SPI flash device. Once that is
1349 * done we hide it again.
1351 ret = p2sb_bar(dev->bus, PCI_DEVFN(13, 2), res);
1355 info->set_writeable = lpc_ich_bxt_set_writeable;
1366 lpc_ich_spi_cell.platform_data = info;
1367 lpc_ich_spi_cell.pdata_size = sizeof(*info);
1369 return mfd_add_devices(&dev->dev, PLATFORM_DEVID_NONE,
1370 &lpc_ich_spi_cell, 1, NULL, 0, NULL);
1373 static int lpc_ich_probe(struct pci_dev *dev,
1374 const struct pci_device_id *id)
1376 struct lpc_ich_priv *priv;
1378 bool cell_added = false;
1380 priv = devm_kzalloc(&dev->dev,
1381 sizeof(struct lpc_ich_priv), GFP_KERNEL);
1385 priv->chipset = id->driver_data;
1387 priv->actrl_pbase_save = -1;
1388 priv->abase_save = -1;
1390 priv->abase = ACPIBASE;
1391 priv->actrl_pbase = ACPICTRL_PMCBASE;
1393 priv->gctrl_save = -1;
1394 if (priv->chipset <= LPC_ICH5) {
1395 priv->gbase = GPIOBASE_ICH0;
1396 priv->gctrl = GPIOCTRL_ICH0;
1398 priv->gbase = GPIOBASE_ICH6;
1399 priv->gctrl = GPIOCTRL_ICH6;
1402 pci_set_drvdata(dev, priv);
1404 if (lpc_chipset_info[priv->chipset].iTCO_version) {
1405 ret = lpc_ich_init_wdt(dev);
1410 if (lpc_chipset_info[priv->chipset].gpio_version) {
1411 ret = lpc_ich_init_gpio(dev);
1416 if (lpc_chipset_info[priv->chipset].gpio_info) {
1417 ret = lpc_ich_init_pinctrl(dev);
1422 if (lpc_chipset_info[priv->chipset].spi_type) {
1423 ret = lpc_ich_init_spi(dev);
1429 * We only care if at least one or none of the cells registered
1433 dev_warn(&dev->dev, "No MFD cells added\n");
1434 lpc_ich_restore_config_space(dev);
1441 static void lpc_ich_remove(struct pci_dev *dev)
1443 mfd_remove_devices(&dev->dev);
1444 lpc_ich_restore_config_space(dev);
1447 static struct pci_driver lpc_ich_driver = {
1449 .id_table = lpc_ich_ids,
1450 .probe = lpc_ich_probe,
1451 .remove = lpc_ich_remove,
1454 module_pci_driver(lpc_ich_driver);
1457 MODULE_DESCRIPTION("LPC interface for Intel ICH");
1458 MODULE_LICENSE("GPL");