aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
diff options
context:
space:
mode:
authorLi, Aubrey <aubrey.li@linux.intel.com>2014-06-30 02:09:38 -0400
committerH. Peter Anvin <hpa@linux.intel.com>2014-07-25 17:11:58 -0400
commitb00055cade45379fb6a51798b70ef520d7555c5f (patch)
tree2cfa8e89e2317a1c25c141d4b7177352e3a1946b /arch/x86/kernel
parent93e5eadd1f6e7f45c31aa327c42ac52e4df5ff6f (diff)
x86/pmc_atom: Eisable a few S0ix wake up events for S0ix residency
Disable PMC S0IX_WAKE_EN events coming from LPC block(unused) and also from GPIO_SUS ored dedicated IRQs (must be disabled as per PMC programming rule), GPIOSCORE ored dedicated IRQs (must be disabled as per PMC programming rule), GPIO_SUS shared IRQ (not necessary since the IOAPIC_DS wake event will still work), GPIO_SCORE shared IRQ (not necessary since the IOAPIC_DS wake event will still work). Signed-off-by: Aubrey Li <aubrey.li@linux.intel.com> Link: http://lkml.kernel.org/r/53B0FF22.5080403@linux.intel.com Signed-off-by: Olivier Leveque <olivier.leveque@intel.com> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/pmc_atom.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/arch/x86/kernel/pmc_atom.c b/arch/x86/kernel/pmc_atom.c
index 9eb79f6fc512..d6cc0e9eee54 100644
--- a/arch/x86/kernel/pmc_atom.c
+++ b/arch/x86/kernel/pmc_atom.c
@@ -23,8 +23,24 @@
23 23
24#include <asm/pmc_atom.h> 24#include <asm/pmc_atom.h>
25 25
26struct pmc_dev {
27 u32 base_addr;
28 void __iomem *regmap;
29};
30
31static struct pmc_dev pmc_device;
26static u32 acpi_base_addr; 32static u32 acpi_base_addr;
27 33
34static inline u32 pmc_reg_read(struct pmc_dev *pmc, int reg_offset)
35{
36 return readl(pmc->regmap + reg_offset);
37}
38
39static inline void pmc_reg_write(struct pmc_dev *pmc, int reg_offset, u32 val)
40{
41 writel(val, pmc->regmap + reg_offset);
42}
43
28static void pmc_power_off(void) 44static void pmc_power_off(void)
29{ 45{
30 u16 pm1_cnt_port; 46 u16 pm1_cnt_port;
@@ -42,8 +58,23 @@ static void pmc_power_off(void)
42 outl(pm1_cnt_value, pm1_cnt_port); 58 outl(pm1_cnt_value, pm1_cnt_port);
43} 59}
44 60
61static void pmc_hw_reg_setup(struct pmc_dev *pmc)
62{
63 /*
64 * Disable PMC S0IX_WAKE_EN events coming from:
65 * - LPC clock run
66 * - GPIO_SUS ored dedicated IRQs
67 * - GPIO_SCORE ored dedicated IRQs
68 * - GPIO_SUS shared IRQ
69 * - GPIO_SCORE shared IRQ
70 */
71 pmc_reg_write(pmc, PMC_S0IX_WAKE_EN, (u32)PMC_WAKE_EN_SETTING);
72}
73
45static int pmc_setup_dev(struct pci_dev *pdev) 74static int pmc_setup_dev(struct pci_dev *pdev)
46{ 75{
76 struct pmc_dev *pmc = &pmc_device;
77
47 /* Obtain ACPI base address */ 78 /* Obtain ACPI base address */
48 pci_read_config_dword(pdev, ACPI_BASE_ADDR_OFFSET, &acpi_base_addr); 79 pci_read_config_dword(pdev, ACPI_BASE_ADDR_OFFSET, &acpi_base_addr);
49 acpi_base_addr &= ACPI_BASE_ADDR_MASK; 80 acpi_base_addr &= ACPI_BASE_ADDR_MASK;
@@ -52,6 +83,17 @@ static int pmc_setup_dev(struct pci_dev *pdev)
52 if (acpi_base_addr != 0 && pm_power_off == NULL) 83 if (acpi_base_addr != 0 && pm_power_off == NULL)
53 pm_power_off = pmc_power_off; 84 pm_power_off = pmc_power_off;
54 85
86 pci_read_config_dword(pdev, PMC_BASE_ADDR_OFFSET, &pmc->base_addr);
87 pmc->base_addr &= PMC_BASE_ADDR_MASK;
88
89 pmc->regmap = ioremap_nocache(pmc->base_addr, PMC_MMIO_REG_LEN);
90 if (!pmc->regmap) {
91 dev_err(&pdev->dev, "error: ioremap failed\n");
92 return -ENOMEM;
93 }
94
95 /* PMC hardware registers setup */
96 pmc_hw_reg_setup(pmc);
55 return 0; 97 return 0;
56} 98}
57 99