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 * This driver supports the following I/O Controller hubs:
24 * (See the intel documentation on http://developer.intel.com.)
25 * document number 290655-003, 290677-014: 82801AA (ICH), 82801AB (ICHO)
26 * document number 290687-002, 298242-027: 82801BA (ICH2)
27 * document number 290733-003, 290739-013: 82801CA (ICH3-S)
28 * document number 290716-001, 290718-007: 82801CAM (ICH3-M)
29 * document number 290744-001, 290745-025: 82801DB (ICH4)
30 * document number 252337-001, 252663-008: 82801DBM (ICH4-M)
31 * document number 273599-001, 273645-002: 82801E (C-ICH)
32 * document number 252516-001, 252517-028: 82801EB (ICH5), 82801ER (ICH5R)
33 * document number 300641-004, 300884-013: 6300ESB
34 * document number 301473-002, 301474-026: 82801F (ICH6)
35 * document number 313082-001, 313075-006: 631xESB, 632xESB
36 * document number 307013-003, 307014-024: 82801G (ICH7)
37 * document number 322896-001, 322897-001: NM10
38 * document number 313056-003, 313057-017: 82801H (ICH8)
39 * document number 316972-004, 316973-012: 82801I (ICH9)
40 * document number 319973-002, 319974-002: 82801J (ICH10)
41 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH)
42 * document number 320066-003, 320257-008: EP80597 (IICH)
43 * document number 324645-001, 324646-001: Cougar Point (CPT)
46 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
48 #include <linux/kernel.h>
49 #include <linux/module.h>
50 #include <linux/errno.h>
51 #include <linux/acpi.h>
52 #include <linux/pci.h>
53 #include <linux/mfd/core.h>
54 #include <linux/mfd/lpc_ich.h>
55 #include <linux/platform_data/itco_wdt.h>
58 #define ACPIBASE_GPE_OFF 0x28
59 #define ACPIBASE_GPE_END 0x2f
60 #define ACPIBASE_SMI_OFF 0x30
61 #define ACPIBASE_SMI_END 0x33
62 #define ACPIBASE_PMC_OFF 0x08
63 #define ACPIBASE_PMC_END 0x0c
64 #define ACPIBASE_TCO_OFF 0x60
65 #define ACPIBASE_TCO_END 0x7f
66 #define ACPICTRL_PMCBASE 0x44
68 #define ACPIBASE_GCS_OFF 0x3410
69 #define ACPIBASE_GCS_END 0x3414
71 #define SPIBASE_BYT 0x54
72 #define SPIBASE_BYT_SZ 512
73 #define SPIBASE_BYT_EN BIT(1)
75 #define SPIBASE_LPT 0x3800
76 #define SPIBASE_LPT_SZ 512
78 #define BCR_WPD BIT(0)
80 #define SPIBASE_APL_SZ 4096
82 #define GPIOBASE_ICH0 0x58
83 #define GPIOCTRL_ICH0 0x5C
84 #define GPIOBASE_ICH6 0x48
85 #define GPIOCTRL_ICH6 0x4C
89 #define wdt_io_res(i) wdt_res(0, i)
90 #define wdt_mem_res(i) wdt_res(ICH_RES_MEM_OFF, i)
91 #define wdt_res(b, i) (&wdt_ich_res[(b) + (i)])
96 int abase
; /* ACPI base */
97 int actrl_pbase
; /* ACPI control or PMC base */
98 int gbase
; /* GPIO base */
99 int gctrl
; /* GPIO control */
101 int abase_save
; /* Cached ACPI base value */
102 int actrl_pbase_save
; /* Cached ACPI control or PMC base value */
103 int gctrl_save
; /* Cached GPIO control value */
106 static struct resource wdt_ich_res
[] = {
109 .flags
= IORESOURCE_IO
,
113 .flags
= IORESOURCE_IO
,
117 .flags
= IORESOURCE_MEM
,
121 static struct resource gpio_ich_res
[] = {
124 .flags
= IORESOURCE_IO
,
128 .flags
= IORESOURCE_IO
,
132 static struct resource intel_spi_res
[] = {
134 .flags
= IORESOURCE_MEM
,
138 static struct mfd_cell lpc_ich_wdt_cell
= {
140 .num_resources
= ARRAY_SIZE(wdt_ich_res
),
141 .resources
= wdt_ich_res
,
142 .ignore_resource_conflicts
= true,
145 static struct mfd_cell lpc_ich_gpio_cell
= {
147 .num_resources
= ARRAY_SIZE(gpio_ich_res
),
148 .resources
= gpio_ich_res
,
149 .ignore_resource_conflicts
= true,
153 static struct mfd_cell lpc_ich_spi_cell
= {
155 .num_resources
= ARRAY_SIZE(intel_spi_res
),
156 .resources
= intel_spi_res
,
157 .ignore_resource_conflicts
= true,
160 /* chipset related info */
162 LPC_ICH
= 0, /* ICH */
165 LPC_ICH2M
, /* ICH2-M */
166 LPC_ICH3
, /* ICH3-S */
167 LPC_ICH3M
, /* ICH3-M */
169 LPC_ICH4M
, /* ICH4-M */
170 LPC_CICH
, /* C-ICH */
171 LPC_ICH5
, /* ICH5 & ICH5R */
172 LPC_6300ESB
, /* 6300ESB */
173 LPC_ICH6
, /* ICH6 & ICH6R */
174 LPC_ICH6M
, /* ICH6-M */
175 LPC_ICH6W
, /* ICH6W & ICH6RW */
176 LPC_631XESB
, /* 631xESB/632xESB */
177 LPC_ICH7
, /* ICH7 & ICH7R */
178 LPC_ICH7DH
, /* ICH7DH */
179 LPC_ICH7M
, /* ICH7-M & ICH7-U */
180 LPC_ICH7MDH
, /* ICH7-M DH */
182 LPC_ICH8
, /* ICH8 & ICH8R */
183 LPC_ICH8DH
, /* ICH8DH */
184 LPC_ICH8DO
, /* ICH8DO */
185 LPC_ICH8M
, /* ICH8M */
186 LPC_ICH8ME
, /* ICH8M-E */
188 LPC_ICH9R
, /* ICH9R */
189 LPC_ICH9DH
, /* ICH9DH */
190 LPC_ICH9DO
, /* ICH9DO */
191 LPC_ICH9M
, /* ICH9M */
192 LPC_ICH9ME
, /* ICH9M-E */
193 LPC_ICH10
, /* ICH10 */
194 LPC_ICH10R
, /* ICH10R */
195 LPC_ICH10D
, /* ICH10D */
196 LPC_ICH10DO
, /* ICH10DO */
197 LPC_PCH
, /* PCH Desktop Full Featured */
198 LPC_PCHM
, /* PCH Mobile Full Featured */
207 LPC_PCHMSFF
, /* PCH Mobile SFF Full Featured */
212 LPC_EP80579
, /* EP80579 */
213 LPC_CPT
, /* Cougar Point */
214 LPC_CPTD
, /* Cougar Point Desktop */
215 LPC_CPTM
, /* Cougar Point Mobile */
216 LPC_PBG
, /* Patsburg */
217 LPC_DH89XXCC
, /* DH89xxCC */
218 LPC_PPT
, /* Panther Point */
219 LPC_LPT
, /* Lynx Point */
220 LPC_LPT_LP
, /* Lynx Point-LP */
221 LPC_WBG
, /* Wellsburg */
222 LPC_AVN
, /* Avoton SoC */
223 LPC_BAYTRAIL
, /* Bay Trail SoC */
224 LPC_COLETO
, /* Coleto Creek */
225 LPC_WPT_LP
, /* Wildcat Point-LP */
226 LPC_BRASWELL
, /* Braswell SoC */
227 LPC_LEWISBURG
, /* Lewisburg */
228 LPC_9S
, /* 9 Series */
229 LPC_APL
, /* Apollo Lake SoC */
232 static struct lpc_ich_info lpc_chipset_info
[] = {
270 .name
= "ICH5 or ICH5R",
278 .name
= "ICH6 or ICH6R",
280 .gpio_version
= ICH_V6_GPIO
,
285 .gpio_version
= ICH_V6_GPIO
,
288 .name
= "ICH6W or ICH6RW",
290 .gpio_version
= ICH_V6_GPIO
,
293 .name
= "631xESB/632xESB",
295 .gpio_version
= ICH_V6_GPIO
,
298 .name
= "ICH7 or ICH7R",
300 .gpio_version
= ICH_V7_GPIO
,
305 .gpio_version
= ICH_V7_GPIO
,
308 .name
= "ICH7-M or ICH7-U",
310 .gpio_version
= ICH_V7_GPIO
,
315 .gpio_version
= ICH_V7_GPIO
,
320 .gpio_version
= ICH_V7_GPIO
,
323 .name
= "ICH8 or ICH8R",
325 .gpio_version
= ICH_V7_GPIO
,
330 .gpio_version
= ICH_V7_GPIO
,
335 .gpio_version
= ICH_V7_GPIO
,
340 .gpio_version
= ICH_V7_GPIO
,
345 .gpio_version
= ICH_V7_GPIO
,
350 .gpio_version
= ICH_V9_GPIO
,
355 .gpio_version
= ICH_V9_GPIO
,
360 .gpio_version
= ICH_V9_GPIO
,
365 .gpio_version
= ICH_V9_GPIO
,
370 .gpio_version
= ICH_V9_GPIO
,
375 .gpio_version
= ICH_V9_GPIO
,
380 .gpio_version
= ICH_V10CONS_GPIO
,
385 .gpio_version
= ICH_V10CONS_GPIO
,
390 .gpio_version
= ICH_V10CORP_GPIO
,
395 .gpio_version
= ICH_V10CORP_GPIO
,
398 .name
= "PCH Desktop Full Featured",
400 .gpio_version
= ICH_V5_GPIO
,
403 .name
= "PCH Mobile Full Featured",
405 .gpio_version
= ICH_V5_GPIO
,
410 .gpio_version
= ICH_V5_GPIO
,
415 .gpio_version
= ICH_V5_GPIO
,
420 .gpio_version
= ICH_V5_GPIO
,
425 .gpio_version
= ICH_V5_GPIO
,
430 .gpio_version
= ICH_V5_GPIO
,
435 .gpio_version
= ICH_V5_GPIO
,
440 .gpio_version
= ICH_V5_GPIO
,
445 .gpio_version
= ICH_V5_GPIO
,
448 .name
= "PCH Mobile SFF Full Featured",
450 .gpio_version
= ICH_V5_GPIO
,
455 .gpio_version
= ICH_V5_GPIO
,
460 .gpio_version
= ICH_V5_GPIO
,
465 .gpio_version
= ICH_V5_GPIO
,
470 .gpio_version
= ICH_V5_GPIO
,
477 .name
= "Cougar Point",
479 .gpio_version
= ICH_V5_GPIO
,
482 .name
= "Cougar Point Desktop",
484 .gpio_version
= ICH_V5_GPIO
,
487 .name
= "Cougar Point Mobile",
489 .gpio_version
= ICH_V5_GPIO
,
500 .name
= "Panther Point",
502 .gpio_version
= ICH_V5_GPIO
,
505 .name
= "Lynx Point",
507 .gpio_version
= ICH_V5_GPIO
,
508 .spi_type
= INTEL_SPI_LPT
,
511 .name
= "Lynx Point_LP",
513 .spi_type
= INTEL_SPI_LPT
,
520 .name
= "Avoton SoC",
522 .gpio_version
= AVOTON_GPIO
,
525 .name
= "Bay Trail SoC",
527 .spi_type
= INTEL_SPI_BYT
,
530 .name
= "Coleto Creek",
534 .name
= "Wildcat Point_LP",
536 .spi_type
= INTEL_SPI_LPT
,
539 .name
= "Braswell SoC",
541 .spi_type
= INTEL_SPI_BYT
,
550 .gpio_version
= ICH_V5_GPIO
,
553 .name
= "Apollo Lake SoC",
555 .spi_type
= INTEL_SPI_BXT
,
560 * This data only exists for exporting the supported PCI ids
561 * via MODULE_DEVICE_TABLE. We do not actually register a
562 * pci_driver, because the I/O Controller Hub has also other
563 * functions that probably will be registered by other drivers.
565 static const struct pci_device_id lpc_ich_ids
[] = {
566 { PCI_VDEVICE(INTEL
, 0x0f1c), LPC_BAYTRAIL
},
567 { PCI_VDEVICE(INTEL
, 0x1c41), LPC_CPT
},
568 { PCI_VDEVICE(INTEL
, 0x1c42), LPC_CPTD
},
569 { PCI_VDEVICE(INTEL
, 0x1c43), LPC_CPTM
},
570 { PCI_VDEVICE(INTEL
, 0x1c44), LPC_CPT
},
571 { PCI_VDEVICE(INTEL
, 0x1c45), LPC_CPT
},
572 { PCI_VDEVICE(INTEL
, 0x1c46), LPC_CPT
},
573 { PCI_VDEVICE(INTEL
, 0x1c47), LPC_CPT
},
574 { PCI_VDEVICE(INTEL
, 0x1c48), LPC_CPT
},
575 { PCI_VDEVICE(INTEL
, 0x1c49), LPC_CPT
},
576 { PCI_VDEVICE(INTEL
, 0x1c4a), LPC_CPT
},
577 { PCI_VDEVICE(INTEL
, 0x1c4b), LPC_CPT
},
578 { PCI_VDEVICE(INTEL
, 0x1c4c), LPC_CPT
},
579 { PCI_VDEVICE(INTEL
, 0x1c4d), LPC_CPT
},
580 { PCI_VDEVICE(INTEL
, 0x1c4e), LPC_CPT
},
581 { PCI_VDEVICE(INTEL
, 0x1c4f), LPC_CPT
},
582 { PCI_VDEVICE(INTEL
, 0x1c50), LPC_CPT
},
583 { PCI_VDEVICE(INTEL
, 0x1c51), LPC_CPT
},
584 { PCI_VDEVICE(INTEL
, 0x1c52), LPC_CPT
},
585 { PCI_VDEVICE(INTEL
, 0x1c53), LPC_CPT
},
586 { PCI_VDEVICE(INTEL
, 0x1c54), LPC_CPT
},
587 { PCI_VDEVICE(INTEL
, 0x1c55), LPC_CPT
},
588 { PCI_VDEVICE(INTEL
, 0x1c56), LPC_CPT
},
589 { PCI_VDEVICE(INTEL
, 0x1c57), LPC_CPT
},
590 { PCI_VDEVICE(INTEL
, 0x1c58), LPC_CPT
},
591 { PCI_VDEVICE(INTEL
, 0x1c59), LPC_CPT
},
592 { PCI_VDEVICE(INTEL
, 0x1c5a), LPC_CPT
},
593 { PCI_VDEVICE(INTEL
, 0x1c5b), LPC_CPT
},
594 { PCI_VDEVICE(INTEL
, 0x1c5c), LPC_CPT
},
595 { PCI_VDEVICE(INTEL
, 0x1c5d), LPC_CPT
},
596 { PCI_VDEVICE(INTEL
, 0x1c5e), LPC_CPT
},
597 { PCI_VDEVICE(INTEL
, 0x1c5f), LPC_CPT
},
598 { PCI_VDEVICE(INTEL
, 0x1d40), LPC_PBG
},
599 { PCI_VDEVICE(INTEL
, 0x1d41), LPC_PBG
},
600 { PCI_VDEVICE(INTEL
, 0x1e40), LPC_PPT
},
601 { PCI_VDEVICE(INTEL
, 0x1e41), LPC_PPT
},
602 { PCI_VDEVICE(INTEL
, 0x1e42), LPC_PPT
},
603 { PCI_VDEVICE(INTEL
, 0x1e43), LPC_PPT
},
604 { PCI_VDEVICE(INTEL
, 0x1e44), LPC_PPT
},
605 { PCI_VDEVICE(INTEL
, 0x1e45), LPC_PPT
},
606 { PCI_VDEVICE(INTEL
, 0x1e46), LPC_PPT
},
607 { PCI_VDEVICE(INTEL
, 0x1e47), LPC_PPT
},
608 { PCI_VDEVICE(INTEL
, 0x1e48), LPC_PPT
},
609 { PCI_VDEVICE(INTEL
, 0x1e49), LPC_PPT
},
610 { PCI_VDEVICE(INTEL
, 0x1e4a), LPC_PPT
},
611 { PCI_VDEVICE(INTEL
, 0x1e4b), LPC_PPT
},
612 { PCI_VDEVICE(INTEL
, 0x1e4c), LPC_PPT
},
613 { PCI_VDEVICE(INTEL
, 0x1e4d), LPC_PPT
},
614 { PCI_VDEVICE(INTEL
, 0x1e4e), LPC_PPT
},
615 { PCI_VDEVICE(INTEL
, 0x1e4f), LPC_PPT
},
616 { PCI_VDEVICE(INTEL
, 0x1e50), LPC_PPT
},
617 { PCI_VDEVICE(INTEL
, 0x1e51), LPC_PPT
},
618 { PCI_VDEVICE(INTEL
, 0x1e52), LPC_PPT
},
619 { PCI_VDEVICE(INTEL
, 0x1e53), LPC_PPT
},
620 { PCI_VDEVICE(INTEL
, 0x1e54), LPC_PPT
},
621 { PCI_VDEVICE(INTEL
, 0x1e55), LPC_PPT
},
622 { PCI_VDEVICE(INTEL
, 0x1e56), LPC_PPT
},
623 { PCI_VDEVICE(INTEL
, 0x1e57), LPC_PPT
},
624 { PCI_VDEVICE(INTEL
, 0x1e58), LPC_PPT
},
625 { PCI_VDEVICE(INTEL
, 0x1e59), LPC_PPT
},
626 { PCI_VDEVICE(INTEL
, 0x1e5a), LPC_PPT
},
627 { PCI_VDEVICE(INTEL
, 0x1e5b), LPC_PPT
},
628 { PCI_VDEVICE(INTEL
, 0x1e5c), LPC_PPT
},
629 { PCI_VDEVICE(INTEL
, 0x1e5d), LPC_PPT
},
630 { PCI_VDEVICE(INTEL
, 0x1e5e), LPC_PPT
},
631 { PCI_VDEVICE(INTEL
, 0x1e5f), LPC_PPT
},
632 { PCI_VDEVICE(INTEL
, 0x1f38), LPC_AVN
},
633 { PCI_VDEVICE(INTEL
, 0x1f39), LPC_AVN
},
634 { PCI_VDEVICE(INTEL
, 0x1f3a), LPC_AVN
},
635 { PCI_VDEVICE(INTEL
, 0x1f3b), LPC_AVN
},
636 { PCI_VDEVICE(INTEL
, 0x229c), LPC_BRASWELL
},
637 { PCI_VDEVICE(INTEL
, 0x2310), LPC_DH89XXCC
},
638 { PCI_VDEVICE(INTEL
, 0x2390), LPC_COLETO
},
639 { PCI_VDEVICE(INTEL
, 0x2410), LPC_ICH
},
640 { PCI_VDEVICE(INTEL
, 0x2420), LPC_ICH0
},
641 { PCI_VDEVICE(INTEL
, 0x2440), LPC_ICH2
},
642 { PCI_VDEVICE(INTEL
, 0x244c), LPC_ICH2M
},
643 { PCI_VDEVICE(INTEL
, 0x2450), LPC_CICH
},
644 { PCI_VDEVICE(INTEL
, 0x2480), LPC_ICH3
},
645 { PCI_VDEVICE(INTEL
, 0x248c), LPC_ICH3M
},
646 { PCI_VDEVICE(INTEL
, 0x24c0), LPC_ICH4
},
647 { PCI_VDEVICE(INTEL
, 0x24cc), LPC_ICH4M
},
648 { PCI_VDEVICE(INTEL
, 0x24d0), LPC_ICH5
},
649 { PCI_VDEVICE(INTEL
, 0x25a1), LPC_6300ESB
},
650 { PCI_VDEVICE(INTEL
, 0x2640), LPC_ICH6
},
651 { PCI_VDEVICE(INTEL
, 0x2641), LPC_ICH6M
},
652 { PCI_VDEVICE(INTEL
, 0x2642), LPC_ICH6W
},
653 { PCI_VDEVICE(INTEL
, 0x2670), LPC_631XESB
},
654 { PCI_VDEVICE(INTEL
, 0x2671), LPC_631XESB
},
655 { PCI_VDEVICE(INTEL
, 0x2672), LPC_631XESB
},
656 { PCI_VDEVICE(INTEL
, 0x2673), LPC_631XESB
},
657 { PCI_VDEVICE(INTEL
, 0x2674), LPC_631XESB
},
658 { PCI_VDEVICE(INTEL
, 0x2675), LPC_631XESB
},
659 { PCI_VDEVICE(INTEL
, 0x2676), LPC_631XESB
},
660 { PCI_VDEVICE(INTEL
, 0x2677), LPC_631XESB
},
661 { PCI_VDEVICE(INTEL
, 0x2678), LPC_631XESB
},
662 { PCI_VDEVICE(INTEL
, 0x2679), LPC_631XESB
},
663 { PCI_VDEVICE(INTEL
, 0x267a), LPC_631XESB
},
664 { PCI_VDEVICE(INTEL
, 0x267b), LPC_631XESB
},
665 { PCI_VDEVICE(INTEL
, 0x267c), LPC_631XESB
},
666 { PCI_VDEVICE(INTEL
, 0x267d), LPC_631XESB
},
667 { PCI_VDEVICE(INTEL
, 0x267e), LPC_631XESB
},
668 { PCI_VDEVICE(INTEL
, 0x267f), LPC_631XESB
},
669 { PCI_VDEVICE(INTEL
, 0x27b0), LPC_ICH7DH
},
670 { PCI_VDEVICE(INTEL
, 0x27b8), LPC_ICH7
},
671 { PCI_VDEVICE(INTEL
, 0x27b9), LPC_ICH7M
},
672 { PCI_VDEVICE(INTEL
, 0x27bc), LPC_NM10
},
673 { PCI_VDEVICE(INTEL
, 0x27bd), LPC_ICH7MDH
},
674 { PCI_VDEVICE(INTEL
, 0x2810), LPC_ICH8
},
675 { PCI_VDEVICE(INTEL
, 0x2811), LPC_ICH8ME
},
676 { PCI_VDEVICE(INTEL
, 0x2812), LPC_ICH8DH
},
677 { PCI_VDEVICE(INTEL
, 0x2814), LPC_ICH8DO
},
678 { PCI_VDEVICE(INTEL
, 0x2815), LPC_ICH8M
},
679 { PCI_VDEVICE(INTEL
, 0x2912), LPC_ICH9DH
},
680 { PCI_VDEVICE(INTEL
, 0x2914), LPC_ICH9DO
},
681 { PCI_VDEVICE(INTEL
, 0x2916), LPC_ICH9R
},
682 { PCI_VDEVICE(INTEL
, 0x2917), LPC_ICH9ME
},
683 { PCI_VDEVICE(INTEL
, 0x2918), LPC_ICH9
},
684 { PCI_VDEVICE(INTEL
, 0x2919), LPC_ICH9M
},
685 { PCI_VDEVICE(INTEL
, 0x3a14), LPC_ICH10DO
},
686 { PCI_VDEVICE(INTEL
, 0x3a16), LPC_ICH10R
},
687 { PCI_VDEVICE(INTEL
, 0x3a18), LPC_ICH10
},
688 { PCI_VDEVICE(INTEL
, 0x3a1a), LPC_ICH10D
},
689 { PCI_VDEVICE(INTEL
, 0x3b00), LPC_PCH
},
690 { PCI_VDEVICE(INTEL
, 0x3b01), LPC_PCHM
},
691 { PCI_VDEVICE(INTEL
, 0x3b02), LPC_P55
},
692 { PCI_VDEVICE(INTEL
, 0x3b03), LPC_PM55
},
693 { PCI_VDEVICE(INTEL
, 0x3b06), LPC_H55
},
694 { PCI_VDEVICE(INTEL
, 0x3b07), LPC_QM57
},
695 { PCI_VDEVICE(INTEL
, 0x3b08), LPC_H57
},
696 { PCI_VDEVICE(INTEL
, 0x3b09), LPC_HM55
},
697 { PCI_VDEVICE(INTEL
, 0x3b0a), LPC_Q57
},
698 { PCI_VDEVICE(INTEL
, 0x3b0b), LPC_HM57
},
699 { PCI_VDEVICE(INTEL
, 0x3b0d), LPC_PCHMSFF
},
700 { PCI_VDEVICE(INTEL
, 0x3b0f), LPC_QS57
},
701 { PCI_VDEVICE(INTEL
, 0x3b12), LPC_3400
},
702 { PCI_VDEVICE(INTEL
, 0x3b14), LPC_3420
},
703 { PCI_VDEVICE(INTEL
, 0x3b16), LPC_3450
},
704 { PCI_VDEVICE(INTEL
, 0x5031), LPC_EP80579
},
705 { PCI_VDEVICE(INTEL
, 0x5ae8), LPC_APL
},
706 { PCI_VDEVICE(INTEL
, 0x8c40), LPC_LPT
},
707 { PCI_VDEVICE(INTEL
, 0x8c41), LPC_LPT
},
708 { PCI_VDEVICE(INTEL
, 0x8c42), LPC_LPT
},
709 { PCI_VDEVICE(INTEL
, 0x8c43), LPC_LPT
},
710 { PCI_VDEVICE(INTEL
, 0x8c44), LPC_LPT
},
711 { PCI_VDEVICE(INTEL
, 0x8c45), LPC_LPT
},
712 { PCI_VDEVICE(INTEL
, 0x8c46), LPC_LPT
},
713 { PCI_VDEVICE(INTEL
, 0x8c47), LPC_LPT
},
714 { PCI_VDEVICE(INTEL
, 0x8c48), LPC_LPT
},
715 { PCI_VDEVICE(INTEL
, 0x8c49), LPC_LPT
},
716 { PCI_VDEVICE(INTEL
, 0x8c4a), LPC_LPT
},
717 { PCI_VDEVICE(INTEL
, 0x8c4b), LPC_LPT
},
718 { PCI_VDEVICE(INTEL
, 0x8c4c), LPC_LPT
},
719 { PCI_VDEVICE(INTEL
, 0x8c4d), LPC_LPT
},
720 { PCI_VDEVICE(INTEL
, 0x8c4e), LPC_LPT
},
721 { PCI_VDEVICE(INTEL
, 0x8c4f), LPC_LPT
},
722 { PCI_VDEVICE(INTEL
, 0x8c50), LPC_LPT
},
723 { PCI_VDEVICE(INTEL
, 0x8c51), LPC_LPT
},
724 { PCI_VDEVICE(INTEL
, 0x8c52), LPC_LPT
},
725 { PCI_VDEVICE(INTEL
, 0x8c53), LPC_LPT
},
726 { PCI_VDEVICE(INTEL
, 0x8c54), LPC_LPT
},
727 { PCI_VDEVICE(INTEL
, 0x8c55), LPC_LPT
},
728 { PCI_VDEVICE(INTEL
, 0x8c56), LPC_LPT
},
729 { PCI_VDEVICE(INTEL
, 0x8c57), LPC_LPT
},
730 { PCI_VDEVICE(INTEL
, 0x8c58), LPC_LPT
},
731 { PCI_VDEVICE(INTEL
, 0x8c59), LPC_LPT
},
732 { PCI_VDEVICE(INTEL
, 0x8c5a), LPC_LPT
},
733 { PCI_VDEVICE(INTEL
, 0x8c5b), LPC_LPT
},
734 { PCI_VDEVICE(INTEL
, 0x8c5c), LPC_LPT
},
735 { PCI_VDEVICE(INTEL
, 0x8c5d), LPC_LPT
},
736 { PCI_VDEVICE(INTEL
, 0x8c5e), LPC_LPT
},
737 { PCI_VDEVICE(INTEL
, 0x8c5f), LPC_LPT
},
738 { PCI_VDEVICE(INTEL
, 0x8cc1), LPC_9S
},
739 { PCI_VDEVICE(INTEL
, 0x8cc2), LPC_9S
},
740 { PCI_VDEVICE(INTEL
, 0x8cc3), LPC_9S
},
741 { PCI_VDEVICE(INTEL
, 0x8cc4), LPC_9S
},
742 { PCI_VDEVICE(INTEL
, 0x8cc6), LPC_9S
},
743 { PCI_VDEVICE(INTEL
, 0x8d40), LPC_WBG
},
744 { PCI_VDEVICE(INTEL
, 0x8d41), LPC_WBG
},
745 { PCI_VDEVICE(INTEL
, 0x8d42), LPC_WBG
},
746 { PCI_VDEVICE(INTEL
, 0x8d43), LPC_WBG
},
747 { PCI_VDEVICE(INTEL
, 0x8d44), LPC_WBG
},
748 { PCI_VDEVICE(INTEL
, 0x8d45), LPC_WBG
},
749 { PCI_VDEVICE(INTEL
, 0x8d46), LPC_WBG
},
750 { PCI_VDEVICE(INTEL
, 0x8d47), LPC_WBG
},
751 { PCI_VDEVICE(INTEL
, 0x8d48), LPC_WBG
},
752 { PCI_VDEVICE(INTEL
, 0x8d49), LPC_WBG
},
753 { PCI_VDEVICE(INTEL
, 0x8d4a), LPC_WBG
},
754 { PCI_VDEVICE(INTEL
, 0x8d4b), LPC_WBG
},
755 { PCI_VDEVICE(INTEL
, 0x8d4c), LPC_WBG
},
756 { PCI_VDEVICE(INTEL
, 0x8d4d), LPC_WBG
},
757 { PCI_VDEVICE(INTEL
, 0x8d4e), LPC_WBG
},
758 { PCI_VDEVICE(INTEL
, 0x8d4f), LPC_WBG
},
759 { PCI_VDEVICE(INTEL
, 0x8d50), LPC_WBG
},
760 { PCI_VDEVICE(INTEL
, 0x8d51), LPC_WBG
},
761 { PCI_VDEVICE(INTEL
, 0x8d52), LPC_WBG
},
762 { PCI_VDEVICE(INTEL
, 0x8d53), LPC_WBG
},
763 { PCI_VDEVICE(INTEL
, 0x8d54), LPC_WBG
},
764 { PCI_VDEVICE(INTEL
, 0x8d55), LPC_WBG
},
765 { PCI_VDEVICE(INTEL
, 0x8d56), LPC_WBG
},
766 { PCI_VDEVICE(INTEL
, 0x8d57), LPC_WBG
},
767 { PCI_VDEVICE(INTEL
, 0x8d58), LPC_WBG
},
768 { PCI_VDEVICE(INTEL
, 0x8d59), LPC_WBG
},
769 { PCI_VDEVICE(INTEL
, 0x8d5a), LPC_WBG
},
770 { PCI_VDEVICE(INTEL
, 0x8d5b), LPC_WBG
},
771 { PCI_VDEVICE(INTEL
, 0x8d5c), LPC_WBG
},
772 { PCI_VDEVICE(INTEL
, 0x8d5d), LPC_WBG
},
773 { PCI_VDEVICE(INTEL
, 0x8d5e), LPC_WBG
},
774 { PCI_VDEVICE(INTEL
, 0x8d5f), LPC_WBG
},
775 { PCI_VDEVICE(INTEL
, 0x9c40), LPC_LPT_LP
},
776 { PCI_VDEVICE(INTEL
, 0x9c41), LPC_LPT_LP
},
777 { PCI_VDEVICE(INTEL
, 0x9c42), LPC_LPT_LP
},
778 { PCI_VDEVICE(INTEL
, 0x9c43), LPC_LPT_LP
},
779 { PCI_VDEVICE(INTEL
, 0x9c44), LPC_LPT_LP
},
780 { PCI_VDEVICE(INTEL
, 0x9c45), LPC_LPT_LP
},
781 { PCI_VDEVICE(INTEL
, 0x9c46), LPC_LPT_LP
},
782 { PCI_VDEVICE(INTEL
, 0x9c47), LPC_LPT_LP
},
783 { PCI_VDEVICE(INTEL
, 0x9cc1), LPC_WPT_LP
},
784 { PCI_VDEVICE(INTEL
, 0x9cc2), LPC_WPT_LP
},
785 { PCI_VDEVICE(INTEL
, 0x9cc3), LPC_WPT_LP
},
786 { PCI_VDEVICE(INTEL
, 0x9cc5), LPC_WPT_LP
},
787 { PCI_VDEVICE(INTEL
, 0x9cc6), LPC_WPT_LP
},
788 { PCI_VDEVICE(INTEL
, 0x9cc7), LPC_WPT_LP
},
789 { PCI_VDEVICE(INTEL
, 0x9cc9), LPC_WPT_LP
},
790 { PCI_VDEVICE(INTEL
, 0xa1c1), LPC_LEWISBURG
},
791 { PCI_VDEVICE(INTEL
, 0xa1c2), LPC_LEWISBURG
},
792 { PCI_VDEVICE(INTEL
, 0xa1c3), LPC_LEWISBURG
},
793 { PCI_VDEVICE(INTEL
, 0xa1c4), LPC_LEWISBURG
},
794 { PCI_VDEVICE(INTEL
, 0xa1c5), LPC_LEWISBURG
},
795 { PCI_VDEVICE(INTEL
, 0xa1c6), LPC_LEWISBURG
},
796 { PCI_VDEVICE(INTEL
, 0xa1c7), LPC_LEWISBURG
},
797 { PCI_VDEVICE(INTEL
, 0xa242), LPC_LEWISBURG
},
798 { PCI_VDEVICE(INTEL
, 0xa243), LPC_LEWISBURG
},
799 { 0, }, /* End of list */
801 MODULE_DEVICE_TABLE(pci
, lpc_ich_ids
);
803 static void lpc_ich_restore_config_space(struct pci_dev
*dev
)
805 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
807 if (priv
->abase_save
>= 0) {
808 pci_write_config_byte(dev
, priv
->abase
, priv
->abase_save
);
809 priv
->abase_save
= -1;
812 if (priv
->actrl_pbase_save
>= 0) {
813 pci_write_config_byte(dev
, priv
->actrl_pbase
,
814 priv
->actrl_pbase_save
);
815 priv
->actrl_pbase_save
= -1;
818 if (priv
->gctrl_save
>= 0) {
819 pci_write_config_byte(dev
, priv
->gctrl
, priv
->gctrl_save
);
820 priv
->gctrl_save
= -1;
824 static void lpc_ich_enable_acpi_space(struct pci_dev
*dev
)
826 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
829 switch (lpc_chipset_info
[priv
->chipset
].iTCO_version
) {
832 * Some chipsets (eg Avoton) enable the ACPI space in the
833 * ACPI BASE register.
835 pci_read_config_byte(dev
, priv
->abase
, ®_save
);
836 pci_write_config_byte(dev
, priv
->abase
, reg_save
| 0x2);
837 priv
->abase_save
= reg_save
;
841 * Most chipsets enable the ACPI space in the ACPI control
844 pci_read_config_byte(dev
, priv
->actrl_pbase
, ®_save
);
845 pci_write_config_byte(dev
, priv
->actrl_pbase
, reg_save
| 0x80);
846 priv
->actrl_pbase_save
= reg_save
;
851 static void lpc_ich_enable_gpio_space(struct pci_dev
*dev
)
853 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
856 pci_read_config_byte(dev
, priv
->gctrl
, ®_save
);
857 pci_write_config_byte(dev
, priv
->gctrl
, reg_save
| 0x10);
858 priv
->gctrl_save
= reg_save
;
861 static void lpc_ich_enable_pmc_space(struct pci_dev
*dev
)
863 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
866 pci_read_config_byte(dev
, priv
->actrl_pbase
, ®_save
);
867 pci_write_config_byte(dev
, priv
->actrl_pbase
, reg_save
| 0x2);
869 priv
->actrl_pbase_save
= reg_save
;
872 static int lpc_ich_finalize_wdt_cell(struct pci_dev
*dev
)
874 struct itco_wdt_platform_data
*pdata
;
875 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
876 struct lpc_ich_info
*info
;
877 struct mfd_cell
*cell
= &lpc_ich_wdt_cell
;
879 pdata
= devm_kzalloc(&dev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
883 info
= &lpc_chipset_info
[priv
->chipset
];
885 pdata
->version
= info
->iTCO_version
;
886 strlcpy(pdata
->name
, info
->name
, sizeof(pdata
->name
));
888 cell
->platform_data
= pdata
;
889 cell
->pdata_size
= sizeof(*pdata
);
893 static void lpc_ich_finalize_gpio_cell(struct pci_dev
*dev
)
895 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
896 struct mfd_cell
*cell
= &lpc_ich_gpio_cell
;
898 cell
->platform_data
= &lpc_chipset_info
[priv
->chipset
];
899 cell
->pdata_size
= sizeof(struct lpc_ich_info
);
903 * We don't check for resource conflict globally. There are 2 or 3 independent
904 * GPIO groups and it's enough to have access to one of these to instantiate
907 static int lpc_ich_check_conflict_gpio(struct resource
*res
)
912 if (resource_size(res
) >= 0x50 &&
913 !acpi_check_region(res
->start
+ 0x40, 0x10, "LPC ICH GPIO3"))
916 if (!acpi_check_region(res
->start
+ 0x30, 0x10, "LPC ICH GPIO2"))
919 ret
= acpi_check_region(res
->start
+ 0x00, 0x30, "LPC ICH GPIO1");
923 return use_gpio
? use_gpio
: ret
;
926 static int lpc_ich_init_gpio(struct pci_dev
*dev
)
928 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
932 bool acpi_conflict
= false;
933 struct resource
*res
;
935 /* Setup power management base register */
936 pci_read_config_dword(dev
, priv
->abase
, &base_addr_cfg
);
937 base_addr
= base_addr_cfg
& 0x0000ff80;
939 dev_notice(&dev
->dev
, "I/O space for ACPI uninitialized\n");
940 lpc_ich_gpio_cell
.num_resources
--;
944 res
= &gpio_ich_res
[ICH_RES_GPE0
];
945 res
->start
= base_addr
+ ACPIBASE_GPE_OFF
;
946 res
->end
= base_addr
+ ACPIBASE_GPE_END
;
947 ret
= acpi_check_resource_conflict(res
);
950 * This isn't fatal for the GPIO, but we have to make sure that
951 * the platform_device subsystem doesn't see this resource
952 * or it will register an invalid region.
954 lpc_ich_gpio_cell
.num_resources
--;
955 acpi_conflict
= true;
957 lpc_ich_enable_acpi_space(dev
);
961 /* Setup GPIO base register */
962 pci_read_config_dword(dev
, priv
->gbase
, &base_addr_cfg
);
963 base_addr
= base_addr_cfg
& 0x0000ff80;
965 dev_notice(&dev
->dev
, "I/O space for GPIO uninitialized\n");
970 /* Older devices provide fewer GPIO and have a smaller resource size. */
971 res
= &gpio_ich_res
[ICH_RES_GPIO
];
972 res
->start
= base_addr
;
973 switch (lpc_chipset_info
[priv
->chipset
].gpio_version
) {
975 case ICH_V10CORP_GPIO
:
976 res
->end
= res
->start
+ 128 - 1;
979 res
->end
= res
->start
+ 64 - 1;
983 ret
= lpc_ich_check_conflict_gpio(res
);
985 /* this isn't necessarily fatal for the GPIO */
986 acpi_conflict
= true;
989 lpc_chipset_info
[priv
->chipset
].use_gpio
= ret
;
990 lpc_ich_enable_gpio_space(dev
);
992 lpc_ich_finalize_gpio_cell(dev
);
993 ret
= mfd_add_devices(&dev
->dev
, PLATFORM_DEVID_AUTO
,
994 &lpc_ich_gpio_cell
, 1, NULL
, 0, NULL
);
998 pr_warn("Resource conflict(s) found affecting %s\n",
999 lpc_ich_gpio_cell
.name
);
1003 static int lpc_ich_init_wdt(struct pci_dev
*dev
)
1005 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
1009 struct resource
*res
;
1011 /* If we have ACPI based watchdog use that instead */
1012 if (acpi_has_watchdog())
1015 /* Setup power management base register */
1016 pci_read_config_dword(dev
, priv
->abase
, &base_addr_cfg
);
1017 base_addr
= base_addr_cfg
& 0x0000ff80;
1019 dev_notice(&dev
->dev
, "I/O space for ACPI uninitialized\n");
1024 res
= wdt_io_res(ICH_RES_IO_TCO
);
1025 res
->start
= base_addr
+ ACPIBASE_TCO_OFF
;
1026 res
->end
= base_addr
+ ACPIBASE_TCO_END
;
1028 res
= wdt_io_res(ICH_RES_IO_SMI
);
1029 res
->start
= base_addr
+ ACPIBASE_SMI_OFF
;
1030 res
->end
= base_addr
+ ACPIBASE_SMI_END
;
1032 lpc_ich_enable_acpi_space(dev
);
1036 * Get the Memory-Mapped GCS register. To get access to it
1037 * we have to read RCBA from PCI Config space 0xf0 and use
1038 * it as base. GCS = RCBA + ICH6_GCS(0x3410).
1041 * Get the Power Management Configuration register. To get access
1042 * to it we have to read the PMC BASE from config space and address
1043 * the register at offset 0x8.
1045 if (lpc_chipset_info
[priv
->chipset
].iTCO_version
== 1) {
1046 /* Don't register iomem for TCO ver 1 */
1047 lpc_ich_wdt_cell
.num_resources
--;
1048 } else if (lpc_chipset_info
[priv
->chipset
].iTCO_version
== 2) {
1049 pci_read_config_dword(dev
, RCBABASE
, &base_addr_cfg
);
1050 base_addr
= base_addr_cfg
& 0xffffc000;
1051 if (!(base_addr_cfg
& 1)) {
1052 dev_notice(&dev
->dev
, "RCBA is disabled by "
1053 "hardware/BIOS, device disabled\n");
1057 res
= wdt_mem_res(ICH_RES_MEM_GCS_PMC
);
1058 res
->start
= base_addr
+ ACPIBASE_GCS_OFF
;
1059 res
->end
= base_addr
+ ACPIBASE_GCS_END
;
1060 } else if (lpc_chipset_info
[priv
->chipset
].iTCO_version
== 3) {
1061 lpc_ich_enable_pmc_space(dev
);
1062 pci_read_config_dword(dev
, ACPICTRL_PMCBASE
, &base_addr_cfg
);
1063 base_addr
= base_addr_cfg
& 0xfffffe00;
1065 res
= wdt_mem_res(ICH_RES_MEM_GCS_PMC
);
1066 res
->start
= base_addr
+ ACPIBASE_PMC_OFF
;
1067 res
->end
= base_addr
+ ACPIBASE_PMC_END
;
1070 ret
= lpc_ich_finalize_wdt_cell(dev
);
1074 ret
= mfd_add_devices(&dev
->dev
, PLATFORM_DEVID_AUTO
,
1075 &lpc_ich_wdt_cell
, 1, NULL
, 0, NULL
);
1081 static int lpc_ich_init_spi(struct pci_dev
*dev
)
1083 struct lpc_ich_priv
*priv
= pci_get_drvdata(dev
);
1084 struct resource
*res
= &intel_spi_res
[0];
1085 struct intel_spi_boardinfo
*info
;
1086 u32 spi_base
, rcba
, bcr
;
1088 info
= devm_kzalloc(&dev
->dev
, sizeof(*info
), GFP_KERNEL
);
1092 info
->type
= lpc_chipset_info
[priv
->chipset
].spi_type
;
1094 switch (info
->type
) {
1096 pci_read_config_dword(dev
, SPIBASE_BYT
, &spi_base
);
1097 if (spi_base
& SPIBASE_BYT_EN
) {
1098 res
->start
= spi_base
& ~(SPIBASE_BYT_SZ
- 1);
1099 res
->end
= res
->start
+ SPIBASE_BYT_SZ
- 1;
1104 pci_read_config_dword(dev
, RCBABASE
, &rcba
);
1106 spi_base
= round_down(rcba
, SPIBASE_LPT_SZ
);
1107 res
->start
= spi_base
+ SPIBASE_LPT
;
1108 res
->end
= res
->start
+ SPIBASE_LPT_SZ
- 1;
1111 * Try to make the flash chip writeable now by
1112 * setting BCR_WPD. It it fails we tell the driver
1113 * that it can only read the chip.
1115 pci_read_config_dword(dev
, BCR
, &bcr
);
1116 if (!(bcr
& BCR_WPD
)) {
1118 pci_write_config_dword(dev
, BCR
, bcr
);
1119 pci_read_config_dword(dev
, BCR
, &bcr
);
1121 info
->writeable
= !!(bcr
& BCR_WPD
);
1125 case INTEL_SPI_BXT
: {
1126 unsigned int p2sb
= PCI_DEVFN(13, 0);
1127 unsigned int spi
= PCI_DEVFN(13, 2);
1128 struct pci_bus
*bus
= dev
->bus
;
1131 * The P2SB is hidden by BIOS and we need to unhide it in
1132 * order to read BAR of the SPI flash device. Once that is
1133 * done we hide it again.
1135 pci_bus_write_config_byte(bus
, p2sb
, 0xe1, 0x0);
1136 pci_bus_read_config_dword(bus
, spi
, PCI_BASE_ADDRESS_0
,
1138 if (spi_base
!= ~0) {
1139 res
->start
= spi_base
& 0xfffffff0;
1140 res
->end
= res
->start
+ SPIBASE_APL_SZ
- 1;
1142 pci_bus_read_config_dword(bus
, spi
, BCR
, &bcr
);
1143 if (!(bcr
& BCR_WPD
)) {
1145 pci_bus_write_config_dword(bus
, spi
, BCR
, bcr
);
1146 pci_bus_read_config_dword(bus
, spi
, BCR
, &bcr
);
1148 info
->writeable
= !!(bcr
& BCR_WPD
);
1151 pci_bus_write_config_byte(bus
, p2sb
, 0xe1, 0x1);
1162 lpc_ich_spi_cell
.platform_data
= info
;
1163 lpc_ich_spi_cell
.pdata_size
= sizeof(*info
);
1165 return mfd_add_devices(&dev
->dev
, PLATFORM_DEVID_NONE
,
1166 &lpc_ich_spi_cell
, 1, NULL
, 0, NULL
);
1169 static int lpc_ich_probe(struct pci_dev
*dev
,
1170 const struct pci_device_id
*id
)
1172 struct lpc_ich_priv
*priv
;
1174 bool cell_added
= false;
1176 priv
= devm_kzalloc(&dev
->dev
,
1177 sizeof(struct lpc_ich_priv
), GFP_KERNEL
);
1181 priv
->chipset
= id
->driver_data
;
1183 priv
->actrl_pbase_save
= -1;
1184 priv
->abase_save
= -1;
1186 priv
->abase
= ACPIBASE
;
1187 priv
->actrl_pbase
= ACPICTRL_PMCBASE
;
1189 priv
->gctrl_save
= -1;
1190 if (priv
->chipset
<= LPC_ICH5
) {
1191 priv
->gbase
= GPIOBASE_ICH0
;
1192 priv
->gctrl
= GPIOCTRL_ICH0
;
1194 priv
->gbase
= GPIOBASE_ICH6
;
1195 priv
->gctrl
= GPIOCTRL_ICH6
;
1198 pci_set_drvdata(dev
, priv
);
1200 if (lpc_chipset_info
[priv
->chipset
].iTCO_version
) {
1201 ret
= lpc_ich_init_wdt(dev
);
1206 if (lpc_chipset_info
[priv
->chipset
].gpio_version
) {
1207 ret
= lpc_ich_init_gpio(dev
);
1212 if (lpc_chipset_info
[priv
->chipset
].spi_type
) {
1213 ret
= lpc_ich_init_spi(dev
);
1219 * We only care if at least one or none of the cells registered
1223 dev_warn(&dev
->dev
, "No MFD cells added\n");
1224 lpc_ich_restore_config_space(dev
);
1231 static void lpc_ich_remove(struct pci_dev
*dev
)
1233 mfd_remove_devices(&dev
->dev
);
1234 lpc_ich_restore_config_space(dev
);
1237 static struct pci_driver lpc_ich_driver
= {
1239 .id_table
= lpc_ich_ids
,
1240 .probe
= lpc_ich_probe
,
1241 .remove
= lpc_ich_remove
,
1244 module_pci_driver(lpc_ich_driver
);
1246 MODULE_AUTHOR("Aaron Sierra <asierra@xes-inc.com>");
1247 MODULE_DESCRIPTION("LPC interface for Intel ICH");
1248 MODULE_LICENSE("GPL");