2 * lpc_ich.c - LPC interface for Intel ICH
4 * LPC bridge function of the Intel ICH contains many other
5 * functional units, such as Interrupt controllers, Timers,
6 * Power Management, System Management, GPIO, RTC, and LPC
7 * Configuration Registers.
9 * This driver is derived from lpc_sch.
11 * Copyright (c) 2011 Extreme Engineering Solution, Inc.
12 * Author: Aaron Sierra <asierra@xes-inc.com>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License 2 as published
16 * by the Free Software Foundation.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; see the file COPYING. If not, write to
25 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 * This driver supports the following I/O Controller hubs:
28 * (See the intel documentation on http://developer.intel.com.)
29 * document number 290655-003, 290677-014: 82801AA (ICH), 82801AB (ICHO)
30 * document number 290687-002, 298242-027: 82801BA (ICH2)
31 * document number 290733-003, 290739-013: 82801CA (ICH3-S)
32 * document number 290716-001, 290718-007: 82801CAM (ICH3-M)
33 * document number 290744-001, 290745-025: 82801DB (ICH4)
34 * document number 252337-001, 252663-008: 82801DBM (ICH4-M)
35 * document number 273599-001, 273645-002: 82801E (C-ICH)
36 * document number 252516-001, 252517-028: 82801EB (ICH5), 82801ER (ICH5R)
37 * document number 300641-004, 300884-013: 6300ESB
38 * document number 301473-002, 301474-026: 82801F (ICH6)
39 * document number 313082-001, 313075-006: 631xESB, 632xESB
40 * document number 307013-003, 307014-024: 82801G (ICH7)
41 * document number 322896-001, 322897-001: NM10
42 * document number 313056-003, 313057-017: 82801H (ICH8)
43 * document number 316972-004, 316973-012: 82801I (ICH9)
44 * document number 319973-002, 319974-002: 82801J (ICH10)
45 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH)
46 * document number 320066-003, 320257-008: EP80597 (IICH)
47 * document number 324645-001, 324646-001: Cougar Point (CPT)
48 * document number TBD : Patsburg (PBG)
49 * document number TBD : DH89xxCC
50 * document number TBD : Panther Point
51 * document number TBD : Lynx Point
52 * document number TBD : Lynx Point-LP
53 * document number TBD : Wellsburg
54 * document number TBD : Avoton SoC
55 * document number TBD : Coleto Creek
56 * document number TBD : Wildcat Point-LP
57 * document number TBD : 9 Series
58 * document number TBD : Lewisburg
61 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
63 #include <linux/kernel.h>
64 #include <linux/module.h>
65 #include <linux/errno.h>
66 #include <linux/acpi.h>
67 #include <linux/pci.h>
68 #include <linux/mfd/core.h>
69 #include <linux/mfd/lpc_ich.h>
70 #include <linux/platform_data/itco_wdt.h>
73 #define ACPIBASE_GPE_OFF 0x28
74 #define ACPIBASE_GPE_END 0x2f
75 #define ACPIBASE_SMI_OFF 0x30
76 #define ACPIBASE_SMI_END 0x33
77 #define ACPIBASE_PMC_OFF 0x08
78 #define ACPIBASE_PMC_END 0x0c
79 #define ACPIBASE_TCO_OFF 0x60
80 #define ACPIBASE_TCO_END 0x7f
81 #define ACPICTRL_PMCBASE 0x44
83 #define ACPIBASE_GCS_OFF 0x3410
84 #define ACPIBASE_GCS_END 0x3414
86 #define GPIOBASE_ICH0 0x58
87 #define GPIOCTRL_ICH0 0x5C
88 #define GPIOBASE_ICH6 0x48
89 #define GPIOCTRL_ICH6 0x4C
93 #define wdt_io_res(i) wdt_res(0, i)
94 #define wdt_mem_res(i) wdt_res(ICH_RES_MEM_OFF, i)
95 #define wdt_res(b, i) (&wdt_ich_res[(b) + (i)])
100 int abase
; /* ACPI base */
101 int actrl_pbase
; /* ACPI control or PMC base */
102 int gbase
; /* GPIO base */
103 int gctrl
; /* GPIO control */
105 int abase_save
; /* Cached ACPI base value */
106 int actrl_pbase_save
; /* Cached ACPI control or PMC base value */
107 int gctrl_save
; /* Cached GPIO control value */
110 static struct resource wdt_ich_res
[] = {
113 .flags
= IORESOURCE_IO
,
117 .flags
= IORESOURCE_IO
,
121 .flags
= IORESOURCE_MEM
,
125 static struct resource gpio_ich_res
[] = {
128 .flags
= IORESOURCE_IO
,
132 .flags
= IORESOURCE_IO
,
136 static struct mfd_cell lpc_ich_wdt_cell
= {
138 .num_resources
= ARRAY_SIZE(wdt_ich_res
),
139 .resources
= wdt_ich_res
,
140 .ignore_resource_conflicts
= true,
143 static struct mfd_cell lpc_ich_gpio_cell
= {
145 .num_resources
= ARRAY_SIZE(gpio_ich_res
),
146 .resources
= gpio_ich_res
,
147 .ignore_resource_conflicts
= true,
150 /* chipset related info */
152 LPC_ICH
= 0, /* ICH */
155 LPC_ICH2M
, /* ICH2-M */
156 LPC_ICH3
, /* ICH3-S */
157 LPC_ICH3M
, /* ICH3-M */
159 LPC_ICH4M
, /* ICH4-M */
160 LPC_CICH
, /* C-ICH */
161 LPC_ICH5
, /* ICH5 & ICH5R */
162 LPC_6300ESB
, /* 6300ESB */
163 LPC_ICH6
, /* ICH6 & ICH6R */
164 LPC_ICH6M
, /* ICH6-M */
165 LPC_ICH6W
, /* ICH6W & ICH6RW */
166 LPC_631XESB
, /* 631xESB/632xESB */
167 LPC_ICH7
, /* ICH7 & ICH7R */
168 LPC_ICH7DH
, /* ICH7DH */
169 LPC_ICH7M
, /* ICH7-M & ICH7-U */
170 LPC_ICH7MDH
, /* ICH7-M DH */
172 LPC_ICH8
, /* ICH8 & ICH8R */
173 LPC_ICH8DH
, /* ICH8DH */
174 LPC_ICH8DO
, /* ICH8DO */
175 LPC_ICH8M
, /* ICH8M */
176 LPC_ICH8ME
, /* ICH8M-E */
178 LPC_ICH9R
, /* ICH9R */
179 LPC_ICH9DH
, /* ICH9DH */
180 LPC_ICH9DO
, /* ICH9DO */
181 LPC_ICH9M
, /* ICH9M */
182 LPC_ICH9ME
, /* ICH9M-E */
183 LPC_ICH10
, /* ICH10 */
184 LPC_ICH10R
, /* ICH10R */
185 LPC_ICH10D
, /* ICH10D */
186 LPC_ICH10DO
, /* ICH10DO */
187 LPC_PCH
, /* PCH Desktop Full Featured */
188 LPC_PCHM
, /* PCH Mobile Full Featured */
197 LPC_PCHMSFF
, /* PCH Mobile SFF Full Featured */
202 LPC_EP80579
, /* EP80579 */
203 LPC_CPT
, /* Cougar Point */
204 LPC_CPTD
, /* Cougar Point Desktop */
205 LPC_CPTM
, /* Cougar Point Mobile */
206 LPC_PBG
, /* Patsburg */
207 LPC_DH89XXCC
, /* DH89xxCC */
208 LPC_PPT
, /* Panther Point */
209 LPC_LPT
, /* Lynx Point */
210 LPC_LPT_LP
, /* Lynx Point-LP */
211 LPC_WBG
, /* Wellsburg */
212 LPC_AVN
, /* Avoton SoC */
213 LPC_BAYTRAIL
, /* Bay Trail SoC */
214 LPC_COLETO
, /* Coleto Creek */
215 LPC_WPT_LP
, /* Wildcat Point-LP */
216 LPC_BRASWELL
, /* Braswell SoC */
217 LPC_LEWISBURG
, /* Lewisburg */
218 LPC_9S
, /* 9 Series */
221 static struct lpc_ich_info lpc_chipset_info
[] = {
259 .name
= "ICH5 or ICH5R",
267 .name
= "ICH6 or ICH6R",
269 .gpio_version
= ICH_V6_GPIO
,
274 .gpio_version
= ICH_V6_GPIO
,
277 .name
= "ICH6W or ICH6RW",
279 .gpio_version
= ICH_V6_GPIO
,
282 .name
= "631xESB/632xESB",
284 .gpio_version
= ICH_V6_GPIO
,
287 .name
= "ICH7 or ICH7R",
289 .gpio_version
= ICH_V7_GPIO
,
294 .gpio_version
= ICH_V7_GPIO
,
297 .name
= "ICH7-M or ICH7-U",
299 .gpio_version
= ICH_V7_GPIO
,
304 .gpio_version
= ICH_V7_GPIO
,
309 .gpio_version
= ICH_V7_GPIO
,
312 .name
= "ICH8 or ICH8R",
314 .gpio_version
= ICH_V7_GPIO
,
319 .gpio_version
= ICH_V7_GPIO
,
324 .gpio_version
= ICH_V7_GPIO
,
329 .gpio_version
= ICH_V7_GPIO
,
334 .gpio_version
= ICH_V7_GPIO
,
339 .gpio_version
= ICH_V9_GPIO
,
344 .gpio_version
= ICH_V9_GPIO
,
349 .gpio_version
= ICH_V9_GPIO
,
354 .gpio_version
= ICH_V9_GPIO
,
359 .gpio_version
= ICH_V9_GPIO
,
364 .gpio_version
= ICH_V9_GPIO
,
369 .gpio_version
= ICH_V10CONS_GPIO
,
374 .gpio_version
= ICH_V10CONS_GPIO
,
379 .gpio_version
= ICH_V10CORP_GPIO
,
384 .gpio_version
= ICH_V10CORP_GPIO
,
387 .name
= "PCH Desktop Full Featured",
389 .gpio_version
= ICH_V5_GPIO
,
392 .name
= "PCH Mobile Full Featured",
394 .gpio_version
= ICH_V5_GPIO
,
399 .gpio_version
= ICH_V5_GPIO
,
404 .gpio_version
= ICH_V5_GPIO
,
409 .gpio_version
= ICH_V5_GPIO
,
414 .gpio_version
= ICH_V5_GPIO
,
419 .gpio_version
= ICH_V5_GPIO
,
424 .gpio_version
= ICH_V5_GPIO
,
429 .gpio_version
= ICH_V5_GPIO
,
434 .gpio_version
= ICH_V5_GPIO
,
437 .name
= "PCH Mobile SFF Full Featured",
439 .gpio_version
= ICH_V5_GPIO
,
444 .gpio_version
= ICH_V5_GPIO
,
449 .gpio_version
= ICH_V5_GPIO
,
454 .gpio_version
= ICH_V5_GPIO
,
459 .gpio_version
= ICH_V5_GPIO
,
466 .name
= "Cougar Point",
468 .gpio_version
= ICH_V5_GPIO
,
471 .name
= "Cougar Point Desktop",
473 .gpio_version
= ICH_V5_GPIO
,
476 .name
= "Cougar Point Mobile",
478 .gpio_version
= ICH_V5_GPIO
,
489 .name
= "Panther Point",
491 .gpio_version
= ICH_V5_GPIO
,
494 .name
= "Lynx Point",
496 .gpio_version
= ICH_V5_GPIO
,
499 .name
= "Lynx Point_LP",
507 .name
= "Avoton SoC",
509 .gpio_version
= AVOTON_GPIO
,
512 .name
= "Bay Trail SoC",
516 .name
= "Coleto Creek",
520 .name
= "Wildcat Point_LP",
524 .name
= "Braswell SoC",
534 .gpio_version
= ICH_V5_GPIO
,
539 * This data only exists for exporting the supported PCI ids
540 * via MODULE_DEVICE_TABLE. We do not actually register a
541 * pci_driver, because the I/O Controller Hub has also other
542 * functions that probably will be registered by other drivers.
544 static const struct pci_device_id lpc_ich_ids
[] = {
545 { PCI_VDEVICE(INTEL
, 0x0f1c), LPC_BAYTRAIL
},
546 { PCI_VDEVICE(INTEL
, 0x1c41), LPC_CPT
},
547 { PCI_VDEVICE(INTEL
, 0x1c42), LPC_CPTD
},
548 { PCI_VDEVICE(INTEL
, 0x1c43), LPC_CPTM
},
549 { PCI_VDEVICE(INTEL
, 0x1c44), LPC_CPT
},
550 { PCI_VDEVICE(INTEL
, 0x1c45), LPC_CPT
},
551 { PCI_VDEVICE(INTEL
, 0x1c46), LPC_CPT
},
552 { PCI_VDEVICE(INTEL
, 0x1c47), LPC_CPT
},
553 { PCI_VDEVICE(INTEL
, 0x1c48), LPC_CPT
},
554 { PCI_VDEVICE(INTEL
, 0x1c49), LPC_CPT
},
555 { PCI_VDEVICE(INTEL
, 0x1c4a), LPC_CPT
},
556 { PCI_VDEVICE(INTEL
, 0x1c4b), LPC_CPT
},
557 { PCI_VDEVICE(INTEL
, 0x1c4c), LPC_CPT
},
558 { PCI_VDEVICE(INTEL
, 0x1c4d), LPC_CPT
},
559 { PCI_VDEVICE(INTEL
, 0x1c4e), LPC_CPT
},
560 { PCI_VDEVICE(INTEL
, 0x1c4f), LPC_CPT
},
561 { PCI_VDEVICE(INTEL
, 0x1c50), LPC_CPT
},
562 { PCI_VDEVICE(INTEL
, 0x1c51), LPC_CPT
},
563 { PCI_VDEVICE(INTEL
, 0x1c52), LPC_CPT
},
564 { PCI_VDEVICE(INTEL
, 0x1c53), LPC_CPT
},
565 { PCI_VDEVICE(INTEL
, 0x1c54), LPC_CPT
},
566 { PCI_VDEVICE(INTEL
, 0x1c55), LPC_CPT
},
567 { PCI_VDEVICE(INTEL
, 0x1c56), LPC_CPT
},
568 { PCI_VDEVICE(INTEL
, 0x1c57), LPC_CPT
},
569 { PCI_VDEVICE(INTEL
, 0x1c58), LPC_CPT
},
570 { PCI_VDEVICE(INTEL
, 0x1c59), LPC_CPT
},
571 { PCI_VDEVICE(INTEL
, 0x1c5a), LPC_CPT
},
572 { PCI_VDEVICE(INTEL
, 0x1c5b), LPC_CPT
},
573 { PCI_VDEVICE(INTEL
, 0x1c5c), LPC_CPT
},
574 { PCI_VDEVICE(INTEL
, 0x1c5d), LPC_CPT
},
575 { PCI_VDEVICE(INTEL
, 0x1c5e), LPC_CPT
},
576 { PCI_VDEVICE(INTEL
, 0x1c5f), LPC_CPT
},
577 { PCI_VDEVICE(INTEL
, 0x1d40), LPC_PBG
},
578 { PCI_VDEVICE(INTEL
, 0x1d41), LPC_PBG
},
579 { PCI_VDEVICE(INTEL
, 0x1e40), LPC_PPT
},
580 { PCI_VDEVICE(INTEL
, 0x1e41), LPC_PPT
},
581 { PCI_VDEVICE(INTEL
, 0x1e42), LPC_PPT
},
582 { PCI_VDEVICE(INTEL
, 0x1e43), LPC_PPT
},
583 { PCI_VDEVICE(INTEL
, 0x1e44), LPC_PPT
},
584 { PCI_VDEVICE(INTEL
, 0x1e45), LPC_PPT
},
585 { PCI_VDEVICE(INTEL
, 0x1e46), LPC_PPT
},
586 { PCI_VDEVICE(INTEL
, 0x1e47), LPC_PPT
},
587 { PCI_VDEVICE(INTEL
, 0x1e48), LPC_PPT
},
588 { PCI_VDEVICE(INTEL
, 0x1e49), LPC_PPT
},
589 { PCI_VDEVICE(INTEL
, 0x1e4a), LPC_PPT
},
590 { PCI_VDEVICE(INTEL
, 0x1e4b), LPC_PPT
},
591 { PCI_VDEVICE(INTEL
, 0x1e4c), LPC_PPT
},
592 { PCI_VDEVICE(INTEL
, 0x1e4d), LPC_PPT
},
593 { PCI_VDEVICE(INTEL
, 0x1e4e), LPC_PPT
},
594 { PCI_VDEVICE(INTEL
, 0x1e4f), LPC_PPT
},
595 { PCI_VDEVICE(INTEL
, 0x1e50), LPC_PPT
},
596 { PCI_VDEVICE(INTEL
, 0x1e51), LPC_PPT
},
597 { PCI_VDEVICE(INTEL
, 0x1e52), LPC_PPT
},
598 { PCI_VDEVICE(INTEL
, 0x1e53), LPC_PPT
},
599 { PCI_VDEVICE(INTEL
, 0x1e54), LPC_PPT
},
600 { PCI_VDEVICE(INTEL
, 0x1e55), LPC_PPT
},
601 { PCI_VDEVICE(INTEL
, 0x1e56), LPC_PPT
},
602 { PCI_VDEVICE(INTEL
, 0x1e57), LPC_PPT
},
603 { PCI_VDEVICE(INTEL
, 0x1e58), LPC_PPT
},
604 { PCI_VDEVICE(INTEL
, 0x1e59), LPC_PPT
},
605 { PCI_VDEVICE(INTEL
, 0x1e5a), LPC_PPT
},
606 { PCI_VDEVICE(INTEL
, 0x1e5b), LPC_PPT
},
607 { PCI_VDEVICE(INTEL
, 0x1e5c), LPC_PPT
},
608 { PCI_VDEVICE(INTEL
, 0x1e5d), LPC_PPT
},
609 { PCI_VDEVICE(INTEL
, 0x1e5e), LPC_PPT
},
610 { PCI_VDEVICE(INTEL
, 0x1e5f), LPC_PPT
},
611 { PCI_VDEVICE(INTEL
, 0x1f38), LPC_AVN
},
612 { PCI_VDEVICE(INTEL
, 0x1f39), LPC_AVN
},
613 { PCI_VDEVICE(INTEL
, 0x1f3a), LPC_AVN
},
614 { PCI_VDEVICE(INTEL
, 0x1f3b), LPC_AVN
},
615 { PCI_VDEVICE(INTEL
, 0x229c), LPC_BRASWELL
},
616 { PCI_VDEVICE(INTEL
, 0x2310), LPC_DH89XXCC
},
617 { PCI_VDEVICE(INTEL
, 0x2390), LPC_COLETO
},
618 { PCI_VDEVICE(INTEL
, 0x2410), LPC_ICH
},
619 { PCI_VDEVICE(INTEL
, 0x2420), LPC_ICH0
},
620 { PCI_VDEVICE(INTEL
, 0x2440), LPC_ICH2
},
621 { PCI_VDEVICE(INTEL
, 0x244c), LPC_ICH2M
},
622 { PCI_VDEVICE(INTEL
, 0x2450), LPC_CICH
},
623 { PCI_VDEVICE(INTEL
, 0x2480), LPC_ICH3
},
624 { PCI_VDEVICE(INTEL
, 0x248c), LPC_ICH3M
},
625 { PCI_VDEVICE(INTEL
, 0x24c0), LPC_ICH4
},
626 { PCI_VDEVICE(INTEL
, 0x24cc), LPC_ICH4M
},
627 { PCI_VDEVICE(INTEL
, 0x24d0), LPC_ICH5
},
628 { PCI_VDEVICE(INTEL
, 0x25a1), LPC_6300ESB
},
629 { PCI_VDEVICE(INTEL
, 0x2640), LPC_ICH6
},
630 { PCI_VDEVICE(INTEL
, 0x2641), LPC_ICH6M
},
631 { PCI_VDEVICE(INTEL
, 0x2642), LPC_ICH6W
},
632 { PCI_VDEVICE(INTEL
, 0x2670), LPC_631XESB
},
633 { PCI_VDEVICE(INTEL
, 0x2671), LPC_631XESB
},
634 { PCI_VDEVICE(INTEL
, 0x2672), LPC_631XESB
},
635 { PCI_VDEVICE(INTEL
, 0x2673), LPC_631XESB
},
636 { PCI_VDEVICE(INTEL
, 0x2674), LPC_631XESB
},
637 { PCI_VDEVICE(INTEL
, 0x2675), LPC_631XESB
},
638 { PCI_VDEVICE(INTEL
, 0x2676), LPC_631XESB
},
639 { PCI_VDEVICE(INTEL
, 0x2677), LPC_631XESB
},
640 { PCI_VDEVICE(INTEL
, 0x2678), LPC_631XESB
},
641 { PCI_VDEVICE(INTEL
, 0x2679), LPC_631XESB
},
642 { PCI_VDEVICE(INTEL
, 0x267a), LPC_631XESB
},
643 { PCI_VDEVICE(INTEL
, 0x267b), LPC_631XESB
},
644 { PCI_VDEVICE(INTEL
, 0x267c), LPC_631XESB
},
645 { PCI_VDEVICE(INTEL
, 0x267d), LPC_631XESB
},
646 { PCI_VDEVICE(INTEL
, 0x267e), LPC_631XESB
},
647 { PCI_VDEVICE(INTEL
, 0x267f), LPC_631XESB
},
648 { PCI_VDEVICE(INTEL
, 0x27b0), LPC_ICH7DH
},
649 { PCI_VDEVICE(INTEL
, 0x27b8), LPC_ICH7
},
650 { PCI_VDEVICE(INTEL
, 0x27b9), LPC_ICH7M
},
651 { PCI_VDEVICE(INTEL
, 0x27bc), LPC_NM10
},
652 { PCI_VDEVICE(INTEL
, 0x27bd), LPC_ICH7MDH
},
653 { PCI_VDEVICE(INTEL
, 0x2810), LPC_ICH8
},
654 { PCI_VDEVICE(INTEL
, 0x2811), LPC_ICH8ME
},
655 { PCI_VDEVICE(INTEL
, 0x2812), LPC_ICH8DH
},
656 { PCI_VDEVICE(INTEL
, 0x2814), LPC_ICH8DO
},
657 { PCI_VDEVICE(INTEL
, 0x2815), LPC_ICH8M
},
658 { PCI_VDEVICE(INTEL
, 0x2912), LPC_ICH9DH
},
659 { PCI_VDEVICE(INTEL
, 0x2914), LPC_ICH9DO
},
660 { PCI_VDEVICE(INTEL
, 0x2916), LPC_ICH9R
},
661 { PCI_VDEVICE(INTEL
, 0x2917), LPC_ICH9ME
},
662 { PCI_VDEVICE(INTEL
, 0x2918), LPC_ICH9
},
663 { PCI_VDEVICE(INTEL
, 0x2919), LPC_ICH9M
},
664 { PCI_VDEVICE(INTEL
, 0x3a14), LPC_ICH10DO
},
665 { PCI_VDEVICE(INTEL
, 0x3a16), LPC_ICH10R
},
666 { PCI_VDEVICE(INTEL
, 0x3a18), LPC_ICH10
},
667 { PCI_VDEVICE(INTEL
, 0x3a1a), LPC_ICH10D
},
668 { PCI_VDEVICE(INTEL
, 0x3b00), LPC_PCH
},
669 { PCI_VDEVICE(INTEL
, 0x3b01), LPC_PCHM
},
670 { PCI_VDEVICE(INTEL
, 0x3b02), LPC_P55
},
671 { PCI_VDEVICE(INTEL
, 0x3b03), LPC_PM55
},
672 { PCI_VDEVICE(INTEL
, 0x3b06), LPC_H55
},
673 { PCI_VDEVICE(INTEL
, 0x3b07), LPC_QM57
},
674 { PCI_VDEVICE(INTEL
, 0x3b08), LPC_H57
},
675 { PCI_VDEVICE(INTEL
, 0x3b09), LPC_HM55
},
676 { PCI_VDEVICE(INTEL
, 0x3b0a), LPC_Q57
},
677 { PCI_VDEVICE(INTEL
, 0x3b0b), LPC_HM57
},
678 { PCI_VDEVICE(INTEL
, 0x3b0d), LPC_PCHMSFF
},
679 { PCI_VDEVICE(INTEL
, 0x3b0f), LPC_QS57
},
680 { PCI_VDEVICE(INTEL
, 0x3b12), LPC_3400
},
681 { PCI_VDEVICE(INTEL
, 0x3b14), LPC_3420
},
682 { PCI_VDEVICE(INTEL
, 0x3b16), LPC_3450
},
683 { PCI_VDEVICE(INTEL
, 0x5031), LPC_EP80579
},
684 { PCI_VDEVICE(INTEL
, 0x8c40), LPC_LPT
},
685 { PCI_VDEVICE(INTEL
, 0x8c41), LPC_LPT
},
686 { PCI_VDEVICE(INTEL
, 0x8c42), LPC_LPT
},
687 { PCI_VDEVICE(INTEL
, 0x8c43), LPC_LPT
},
688 { PCI_VDEVICE(INTEL
, 0x8c44), LPC_LPT
},
689 { PCI_VDEVICE(INTEL
, 0x8c45), LPC_LPT
},
690 { PCI_VDEVICE(INTEL
, 0x8c46), LPC_LPT
},
691 { PCI_VDEVICE(INTEL
, 0x8c47), LPC_LPT
},
692 { PCI_VDEVICE(INTEL
, 0x8c48), LPC_LPT
},
693 { PCI_VDEVICE(INTEL
, 0x8c49), LPC_LPT
},
694 { PCI_VDEVICE(INTEL
, 0x8c4a), LPC_LPT
},
695 { PCI_VDEVICE(INTEL
, 0x8c4b), LPC_LPT
},
696 { PCI_VDEVICE(INTEL
, 0x8c4c), LPC_LPT
},
697 { PCI_VDEVICE(INTEL
, 0x8c4d), LPC_LPT
},
698 { PCI_VDEVICE(INTEL
, 0x8c4e), LPC_LPT
},
699 { PCI_VDEVICE(INTEL
, 0x8c4f), LPC_LPT
},
700 { PCI_VDEVICE(INTEL
, 0x8c50), LPC_LPT
},
701 { PCI_VDEVICE(INTEL
, 0x8c51), LPC_LPT
},
702 { PCI_VDEVICE(INTEL
, 0x8c52), LPC_LPT
},
703 { PCI_VDEVICE(INTEL
, 0x8c53), LPC_LPT
},
704 { PCI_VDEVICE(INTEL
, 0x8c54), LPC_LPT
},
705 { PCI_VDEVICE(INTEL
, 0x8c55), LPC_LPT
},
706 { PCI_VDEVICE(INTEL
, 0x8c56), LPC_LPT
},
707 { PCI_VDEVICE(INTEL
, 0x8c57), LPC_LPT
},
708 { PCI_VDEVICE(INTEL
, 0x8c58), LPC_LPT
},
709 { PCI_VDEVICE(INTEL
, 0x8c59), LPC_LPT
},
710 { PCI_VDEVICE(INTEL
, 0x8c5a), LPC_LPT
},
711 { PCI_VDEVICE(INTEL
, 0x8c5b), LPC_LPT
},
712 { PCI_VDEVICE(INTEL
, 0x8c5c), LPC_LPT
},
713 { PCI_VDEVICE(INTEL
, 0x8c5d), LPC_LPT
},
714 { PCI_VDEVICE(INTEL
, 0x8c5e), LPC_LPT
},
715 { PCI_VDEVICE(INTEL
, 0x8c5f), LPC_LPT
},
716 { PCI_VDEVICE(INTEL
, 0x8cc1), LPC_9S
},
717 { PCI_VDEVICE(INTEL
, 0x8cc2), LPC_9S
},
718 { PCI_VDEVICE(INTEL
, 0x8cc3), LPC_9S
},
719 { PCI_VDEVICE(INTEL
, 0x8cc4), LPC_9S
},
720 { PCI_VDEVICE(INTEL
, 0x8cc6), LPC_9S
},
721 { PCI_VDEVICE(INTEL
, 0x8d40), LPC_WBG
},
722 { PCI_VDEVICE(INTEL
, 0x8d41), LPC_WBG
},
723 { PCI_VDEVICE(INTEL
, 0x8d42), LPC_WBG
},
724 { PCI_VDEVICE(INTEL
, 0x8d43), LPC_WBG
},
725 { PCI_VDEVICE(INTEL
, 0x8d44), LPC_WBG
},
726 { PCI_VDEVICE(INTEL
, 0x8d45), LPC_WBG
},
727 { PCI_VDEVICE(INTEL
, 0x8d46), LPC_WBG
},
728 { PCI_VDEVICE(INTEL
, 0x8d47), LPC_WBG
},
729 { PCI_VDEVICE(INTEL
, 0x8d48), LPC_WBG
},
730 { PCI_VDEVICE(INTEL
, 0x8d49), LPC_WBG
},
731 { PCI_VDEVICE(INTEL
, 0x8d4a), LPC_WBG
},
732 { PCI_VDEVICE(INTEL
, 0x8d4b), LPC_WBG
},
733 { PCI_VDEVICE(INTEL
, 0x8d4c), LPC_WBG
},
734 { PCI_VDEVICE(INTEL
, 0x8d4d), LPC_WBG
},
735 { PCI_VDEVICE(INTEL
, 0x8d4e), LPC_WBG
},
736 { PCI_VDEVICE(INTEL
, 0x8d4f), LPC_WBG
},
737 { PCI_VDEVICE(INTEL
, 0x8d50), LPC_WBG
},
738 { PCI_VDEVICE(INTEL
, 0x8d51), LPC_WBG
},
739 { PCI_VDEVICE(INTEL
, 0x8d52), LPC_WBG
},
740 { PCI_VDEVICE(INTEL
, 0x8d53), LPC_WBG
},
741 { PCI_VDEVICE(INTEL
, 0x8d54), LPC_WBG
},
742 { PCI_VDEVICE(INTEL
, 0x8d55), LPC_WBG
},
743 { PCI_VDEVICE(INTEL
, 0x8d56), LPC_WBG
},
744 { PCI_VDEVICE(INTEL
, 0x8d57), LPC_WBG
},
745 { PCI_VDEVICE(INTEL
, 0x8d58), LPC_WBG
},
746 { PCI_VDEVICE(INTEL
, 0x8d59), LPC_WBG
},
747 { PCI_VDEVICE(INTEL
, 0x8d5a), LPC_WBG
},
748 { PCI_VDEVICE(INTEL
, 0x8d5b), LPC_WBG
},
749 { PCI_VDEVICE(INTEL
, 0x8d5c), LPC_WBG
},
750 { PCI_VDEVICE(INTEL
, 0x8d5d), LPC_WBG
},
751 { PCI_VDEVICE(INTEL
, 0x8d5e), LPC_WBG
},
752 { PCI_VDEVICE(INTEL
, 0x8d5f), LPC_WBG
},
753 { PCI_VDEVICE(INTEL
, 0x9c40), LPC_LPT_LP
},
754 { PCI_VDEVICE(INTEL
, 0x9c41), LPC_LPT_LP
},
755 { PCI_VDEVICE(INTEL
, 0x9c42), LPC_LPT_LP
},
756 { PCI_VDEVICE(INTEL
, 0x9c43), LPC_LPT_LP
},
757 { PCI_VDEVICE(INTEL
, 0x9c44), LPC_LPT_LP
},
758 { PCI_VDEVICE(INTEL
, 0x9c45), LPC_LPT_LP
},
759 { PCI_VDEVICE(INTEL
, 0x9c46), LPC_LPT_LP
},
760 { PCI_VDEVICE(INTEL
, 0x9c47), LPC_LPT_LP
},
761 { PCI_VDEVICE(INTEL
, 0x9cc1), LPC_WPT_LP
},
762 { PCI_VDEVICE(INTEL
, 0x9cc2), LPC_WPT_LP
},
763 { PCI_VDEVICE(INTEL
, 0x9cc3), LPC_WPT_LP
},
764 { PCI_VDEVICE(INTEL
, 0x9cc5), LPC_WPT_LP
},
765 { PCI_VDEVICE(INTEL
, 0x9cc6), LPC_WPT_LP
},
766 { PCI_VDEVICE(INTEL
, 0x9cc7), LPC_WPT_LP
},
767 { PCI_VDEVICE(INTEL
, 0x9cc9), LPC_WPT_LP
},
768 { PCI_VDEVICE(INTEL
, 0xa1c1), LPC_LEWISBURG
},
769 { PCI_VDEVICE(INTEL
, 0xa1c2), LPC_LEWISBURG
},
770 { PCI_VDEVICE(INTEL
, 0xa1c3), LPC_LEWISBURG
},
771 { PCI_VDEVICE(INTEL
, 0xa1c4), LPC_LEWISBURG
},
772 { PCI_VDEVICE(INTEL
, 0xa1c5), LPC_LEWISBURG
},
773 { PCI_VDEVICE(INTEL
, 0xa1c6), LPC_LEWISBURG
},
774 { PCI_VDEVICE(INTEL
, 0xa1c7), LPC_LEWISBURG
},
775 { PCI_VDEVICE(INTEL
, 0xa242), LPC_LEWISBURG
},
776 { PCI_VDEVICE(INTEL
, 0xa243), LPC_LEWISBURG
},
777 { 0, }, /* End of list */
779 MODULE_DEVICE_TABLE(pci
, lpc_ich_ids
);
781 static void lpc_ich_restore_config_space(struct pci_dev
*dev
)
783 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
785 if (priv
->abase_save
>= 0) {
786 pci_write_config_byte(dev
, priv
->abase
, priv
->abase_save
);
787 priv
->abase_save
= -1;
790 if (priv
->actrl_pbase_save
>= 0) {
791 pci_write_config_byte(dev
, priv
->actrl_pbase
,
792 priv
->actrl_pbase_save
);
793 priv
->actrl_pbase_save
= -1;
796 if (priv
->gctrl_save
>= 0) {
797 pci_write_config_byte(dev
, priv
->gctrl
, priv
->gctrl_save
);
798 priv
->gctrl_save
= -1;
802 static void lpc_ich_enable_acpi_space(struct pci_dev
*dev
)
804 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
807 switch (lpc_chipset_info
[priv
->chipset
].iTCO_version
) {
810 * Some chipsets (eg Avoton) enable the ACPI space in the
811 * ACPI BASE register.
813 pci_read_config_byte(dev
, priv
->abase
, ®_save
);
814 pci_write_config_byte(dev
, priv
->abase
, reg_save
| 0x2);
815 priv
->abase_save
= reg_save
;
819 * Most chipsets enable the ACPI space in the ACPI control
822 pci_read_config_byte(dev
, priv
->actrl_pbase
, ®_save
);
823 pci_write_config_byte(dev
, priv
->actrl_pbase
, reg_save
| 0x80);
824 priv
->actrl_pbase_save
= reg_save
;
829 static void lpc_ich_enable_gpio_space(struct pci_dev
*dev
)
831 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
834 pci_read_config_byte(dev
, priv
->gctrl
, ®_save
);
835 pci_write_config_byte(dev
, priv
->gctrl
, reg_save
| 0x10);
836 priv
->gctrl_save
= reg_save
;
839 static void lpc_ich_enable_pmc_space(struct pci_dev
*dev
)
841 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
844 pci_read_config_byte(dev
, priv
->actrl_pbase
, ®_save
);
845 pci_write_config_byte(dev
, priv
->actrl_pbase
, reg_save
| 0x2);
847 priv
->actrl_pbase_save
= reg_save
;
850 static int lpc_ich_finalize_wdt_cell(struct pci_dev
*dev
)
852 struct itco_wdt_platform_data
*pdata
;
853 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
854 struct lpc_ich_info
*info
;
855 struct mfd_cell
*cell
= &lpc_ich_wdt_cell
;
857 pdata
= devm_kzalloc(&dev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
861 info
= &lpc_chipset_info
[priv
->chipset
];
863 pdata
->version
= info
->iTCO_version
;
864 strlcpy(pdata
->name
, info
->name
, sizeof(pdata
->name
));
866 cell
->platform_data
= pdata
;
867 cell
->pdata_size
= sizeof(*pdata
);
871 static void lpc_ich_finalize_gpio_cell(struct pci_dev
*dev
)
873 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
874 struct mfd_cell
*cell
= &lpc_ich_gpio_cell
;
876 cell
->platform_data
= &lpc_chipset_info
[priv
->chipset
];
877 cell
->pdata_size
= sizeof(struct lpc_ich_info
);
881 * We don't check for resource conflict globally. There are 2 or 3 independent
882 * GPIO groups and it's enough to have access to one of these to instantiate
885 static int lpc_ich_check_conflict_gpio(struct resource
*res
)
890 if (resource_size(res
) >= 0x50 &&
891 !acpi_check_region(res
->start
+ 0x40, 0x10, "LPC ICH GPIO3"))
894 if (!acpi_check_region(res
->start
+ 0x30, 0x10, "LPC ICH GPIO2"))
897 ret
= acpi_check_region(res
->start
+ 0x00, 0x30, "LPC ICH GPIO1");
901 return use_gpio
? use_gpio
: ret
;
904 static int lpc_ich_init_gpio(struct pci_dev
*dev
)
906 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
910 bool acpi_conflict
= false;
911 struct resource
*res
;
913 /* Setup power management base register */
914 pci_read_config_dword(dev
, priv
->abase
, &base_addr_cfg
);
915 base_addr
= base_addr_cfg
& 0x0000ff80;
917 dev_notice(&dev
->dev
, "I/O space for ACPI uninitialized\n");
918 lpc_ich_gpio_cell
.num_resources
--;
922 res
= &gpio_ich_res
[ICH_RES_GPE0
];
923 res
->start
= base_addr
+ ACPIBASE_GPE_OFF
;
924 res
->end
= base_addr
+ ACPIBASE_GPE_END
;
925 ret
= acpi_check_resource_conflict(res
);
928 * This isn't fatal for the GPIO, but we have to make sure that
929 * the platform_device subsystem doesn't see this resource
930 * or it will register an invalid region.
932 lpc_ich_gpio_cell
.num_resources
--;
933 acpi_conflict
= true;
935 lpc_ich_enable_acpi_space(dev
);
939 /* Setup GPIO base register */
940 pci_read_config_dword(dev
, priv
->gbase
, &base_addr_cfg
);
941 base_addr
= base_addr_cfg
& 0x0000ff80;
943 dev_notice(&dev
->dev
, "I/O space for GPIO uninitialized\n");
948 /* Older devices provide fewer GPIO and have a smaller resource size. */
949 res
= &gpio_ich_res
[ICH_RES_GPIO
];
950 res
->start
= base_addr
;
951 switch (lpc_chipset_info
[priv
->chipset
].gpio_version
) {
953 case ICH_V10CORP_GPIO
:
954 res
->end
= res
->start
+ 128 - 1;
957 res
->end
= res
->start
+ 64 - 1;
961 ret
= lpc_ich_check_conflict_gpio(res
);
963 /* this isn't necessarily fatal for the GPIO */
964 acpi_conflict
= true;
967 lpc_chipset_info
[priv
->chipset
].use_gpio
= ret
;
968 lpc_ich_enable_gpio_space(dev
);
970 lpc_ich_finalize_gpio_cell(dev
);
971 ret
= mfd_add_devices(&dev
->dev
, PLATFORM_DEVID_AUTO
,
972 &lpc_ich_gpio_cell
, 1, NULL
, 0, NULL
);
976 pr_warn("Resource conflict(s) found affecting %s\n",
977 lpc_ich_gpio_cell
.name
);
981 static int lpc_ich_init_wdt(struct pci_dev
*dev
)
983 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
987 struct resource
*res
;
989 /* If we have ACPI based watchdog use that instead */
990 if (acpi_has_watchdog())
993 /* Setup power management base register */
994 pci_read_config_dword(dev
, priv
->abase
, &base_addr_cfg
);
995 base_addr
= base_addr_cfg
& 0x0000ff80;
997 dev_notice(&dev
->dev
, "I/O space for ACPI uninitialized\n");
1002 res
= wdt_io_res(ICH_RES_IO_TCO
);
1003 res
->start
= base_addr
+ ACPIBASE_TCO_OFF
;
1004 res
->end
= base_addr
+ ACPIBASE_TCO_END
;
1006 res
= wdt_io_res(ICH_RES_IO_SMI
);
1007 res
->start
= base_addr
+ ACPIBASE_SMI_OFF
;
1008 res
->end
= base_addr
+ ACPIBASE_SMI_END
;
1010 lpc_ich_enable_acpi_space(dev
);
1014 * Get the Memory-Mapped GCS register. To get access to it
1015 * we have to read RCBA from PCI Config space 0xf0 and use
1016 * it as base. GCS = RCBA + ICH6_GCS(0x3410).
1019 * Get the Power Management Configuration register. To get access
1020 * to it we have to read the PMC BASE from config space and address
1021 * the register at offset 0x8.
1023 if (lpc_chipset_info
[priv
->chipset
].iTCO_version
== 1) {
1024 /* Don't register iomem for TCO ver 1 */
1025 lpc_ich_wdt_cell
.num_resources
--;
1026 } else if (lpc_chipset_info
[priv
->chipset
].iTCO_version
== 2) {
1027 pci_read_config_dword(dev
, RCBABASE
, &base_addr_cfg
);
1028 base_addr
= base_addr_cfg
& 0xffffc000;
1029 if (!(base_addr_cfg
& 1)) {
1030 dev_notice(&dev
->dev
, "RCBA is disabled by "
1031 "hardware/BIOS, device disabled\n");
1035 res
= wdt_mem_res(ICH_RES_MEM_GCS_PMC
);
1036 res
->start
= base_addr
+ ACPIBASE_GCS_OFF
;
1037 res
->end
= base_addr
+ ACPIBASE_GCS_END
;
1038 } else if (lpc_chipset_info
[priv
->chipset
].iTCO_version
== 3) {
1039 lpc_ich_enable_pmc_space(dev
);
1040 pci_read_config_dword(dev
, ACPICTRL_PMCBASE
, &base_addr_cfg
);
1041 base_addr
= base_addr_cfg
& 0xfffffe00;
1043 res
= wdt_mem_res(ICH_RES_MEM_GCS_PMC
);
1044 res
->start
= base_addr
+ ACPIBASE_PMC_OFF
;
1045 res
->end
= base_addr
+ ACPIBASE_PMC_END
;
1048 ret
= lpc_ich_finalize_wdt_cell(dev
);
1052 ret
= mfd_add_devices(&dev
->dev
, PLATFORM_DEVID_AUTO
,
1053 &lpc_ich_wdt_cell
, 1, NULL
, 0, NULL
);
1059 static int lpc_ich_probe(struct pci_dev
*dev
,
1060 const struct pci_device_id
*id
)
1062 struct lpc_ich_priv
*priv
;
1064 bool cell_added
= false;
1066 priv
= devm_kzalloc(&dev
->dev
,
1067 sizeof(struct lpc_ich_priv
), GFP_KERNEL
);
1071 priv
->chipset
= id
->driver_data
;
1073 priv
->actrl_pbase_save
= -1;
1074 priv
->abase_save
= -1;
1076 priv
->abase
= ACPIBASE
;
1077 priv
->actrl_pbase
= ACPICTRL_PMCBASE
;
1079 priv
->gctrl_save
= -1;
1080 if (priv
->chipset
<= LPC_ICH5
) {
1081 priv
->gbase
= GPIOBASE_ICH0
;
1082 priv
->gctrl
= GPIOCTRL_ICH0
;
1084 priv
->gbase
= GPIOBASE_ICH6
;
1085 priv
->gctrl
= GPIOCTRL_ICH6
;
1088 pci_set_drvdata(dev
, priv
);
1090 if (lpc_chipset_info
[priv
->chipset
].iTCO_version
) {
1091 ret
= lpc_ich_init_wdt(dev
);
1096 if (lpc_chipset_info
[priv
->chipset
].gpio_version
) {
1097 ret
= lpc_ich_init_gpio(dev
);
1103 * We only care if at least one or none of the cells registered
1107 dev_warn(&dev
->dev
, "No MFD cells added\n");
1108 lpc_ich_restore_config_space(dev
);
1115 static void lpc_ich_remove(struct pci_dev
*dev
)
1117 mfd_remove_devices(&dev
->dev
);
1118 lpc_ich_restore_config_space(dev
);
1121 static struct pci_driver lpc_ich_driver
= {
1123 .id_table
= lpc_ich_ids
,
1124 .probe
= lpc_ich_probe
,
1125 .remove
= lpc_ich_remove
,
1128 module_pci_driver(lpc_ich_driver
);
1130 MODULE_AUTHOR("Aaron Sierra <asierra@xes-inc.com>");
1131 MODULE_DESCRIPTION("LPC interface for Intel ICH");
1132 MODULE_LICENSE("GPL");