2 * Intel MID Power Management Unit (PWRMU) device driver
4 * Copyright (C) 2016, Intel Corporation
6 * Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * Intel MID Power Management Unit device driver handles the South Complex PCI
13 * devices such as GPDMA, SPI, I2C, PWM, and so on. By default PCI core
14 * modifies bits in PMCSR register in the PCI configuration space. This is not
15 * enough on some SoCs like Intel Tangier. In such case PCI core sets a new
16 * power state of the device in question through a PM hook registered in struct
17 * pci_platform_pm_ops (see drivers/pci/pci-mid.c).
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22 #include <linux/delay.h>
23 #include <linux/errno.h>
24 #include <linux/interrupt.h>
25 #include <linux/kernel.h>
26 #include <linux/export.h>
27 #include <linux/mutex.h>
28 #include <linux/pci.h>
30 #include <asm/intel-mid.h>
36 #define PM_WKC(x) (0x10 + (x) * 4)
37 #define PM_WKS(x) (0x18 + (x) * 4)
38 #define PM_SSC(x) (0x20 + (x) * 4)
39 #define PM_SSS(x) (0x30 + (x) * 4)
42 #define PM_STS_BUSY (1 << 8)
45 #define PM_CMD_CMD(x) ((x) << 0)
46 #define PM_CMD_IOC (1 << 8)
47 #define PM_CMD_D3cold (1 << 21)
49 /* List of commands */
50 #define CMD_SET_CFG 0x01
53 #define PM_ICS_INT_STATUS(x) ((x) & 0xff)
54 #define PM_ICS_IE (1 << 8)
55 #define PM_ICS_IP (1 << 9)
56 #define PM_ICS_SW_INT_STS (1 << 10)
58 /* List of interrupts */
60 #define INT_CMD_COMPLETE 1
62 #define INT_WAKE_EVENT 3
63 #define INT_LSS_POWER_ERR 4
64 #define INT_S0iX_MSG_ERR 5
66 #define INT_TRIGGER_ERR 7
67 #define INT_INACTIVITY 8
69 /* South Complex devices */
70 #define LSS_MAX_SHARED_DEVS 4
71 #define LSS_MAX_DEVS 64
73 #define LSS_WS_BITS 1 /* wake state width */
74 #define LSS_PWS_BITS 2 /* power state width */
76 /* Supported device IDs */
77 #define PCI_DEVICE_ID_PENWELL 0x0828
78 #define PCI_DEVICE_ID_TANGIER 0x11a1
92 struct mid_pwr_dev lss[LSS_MAX_DEVS][LSS_MAX_SHARED_DEVS];
95 static struct mid_pwr *midpwr;
97 static u32 mid_pwr_get_state(struct mid_pwr *pwr, int reg)
99 return readl(pwr->regs + PM_SSS(reg));
102 static void mid_pwr_set_state(struct mid_pwr *pwr, int reg, u32 value)
104 writel(value, pwr->regs + PM_SSC(reg));
107 static void mid_pwr_set_wake(struct mid_pwr *pwr, int reg, u32 value)
109 writel(value, pwr->regs + PM_WKC(reg));
112 static void mid_pwr_interrupt_disable(struct mid_pwr *pwr)
114 writel(~PM_ICS_IE, pwr->regs + PM_ICS);
117 static bool mid_pwr_is_busy(struct mid_pwr *pwr)
119 return !!(readl(pwr->regs + PM_STS) & PM_STS_BUSY);
122 /* Wait 500ms that the latest PWRMU command finished */
123 static int mid_pwr_wait(struct mid_pwr *pwr)
125 unsigned int count = 500000;
129 busy = mid_pwr_is_busy(pwr);
138 static int mid_pwr_wait_for_cmd(struct mid_pwr *pwr, u8 cmd)
140 writel(PM_CMD_CMD(cmd), pwr->regs + PM_CMD);
141 return mid_pwr_wait(pwr);
144 static int __update_power_state(struct mid_pwr *pwr, int reg, int bit, int new)
150 /* Check if the device is already in desired state */
151 power = mid_pwr_get_state(pwr, reg);
152 curstate = (power >> bit) & 3;
156 /* Update the power state */
157 mid_pwr_set_state(pwr, reg, (power & ~(3 << bit)) | (new << bit));
159 /* Send command to SCU */
160 ret = mid_pwr_wait_for_cmd(pwr, CMD_SET_CFG);
164 /* Check if the device is already in desired state */
165 power = mid_pwr_get_state(pwr, reg);
166 curstate = (power >> bit) & 3;
173 static pci_power_t __find_weakest_power_state(struct mid_pwr_dev *lss,
174 struct pci_dev *pdev,
177 pci_power_t weakest = PCI_D3hot;
180 /* Find device in cache or first free cell */
181 for (j = 0; j < LSS_MAX_SHARED_DEVS; j++) {
182 if (lss[j].pdev == pdev || !lss[j].pdev)
186 /* Store the desired state in cache */
187 if (j < LSS_MAX_SHARED_DEVS) {
189 lss[j].state = state;
191 dev_WARN(&pdev->dev, "No room for device in PWRMU LSS cache\n");
195 /* Find the power state we may use */
196 for (j = 0; j < LSS_MAX_SHARED_DEVS; j++) {
197 if (lss[j].state < weakest)
198 weakest = lss[j].state;
204 static int __set_power_state(struct mid_pwr *pwr, struct pci_dev *pdev,
205 pci_power_t state, int id, int reg, int bit)
210 state = __find_weakest_power_state(pwr->lss[id], pdev, state);
211 name = pci_power_name(state);
213 ret = __update_power_state(pwr, reg, bit, (__force int)state);
215 dev_warn(&pdev->dev, "Can't set power state %s: %d\n", name, ret);
219 dev_vdbg(&pdev->dev, "Set power state %s\n", name);
223 static int mid_pwr_set_power_state(struct mid_pwr *pwr, struct pci_dev *pdev,
229 id = intel_mid_pwr_get_lss_id(pdev);
233 reg = (id * LSS_PWS_BITS) / 32;
234 bit = (id * LSS_PWS_BITS) % 32;
236 /* We support states between PCI_D0 and PCI_D3hot */
239 if (state > PCI_D3hot)
242 mutex_lock(&pwr->lock);
243 ret = __set_power_state(pwr, pdev, state, id, reg, bit);
244 mutex_unlock(&pwr->lock);
248 int intel_mid_pci_set_power_state(struct pci_dev *pdev, pci_power_t state)
250 struct mid_pwr *pwr = midpwr;
255 if (pwr && pwr->available)
256 ret = mid_pwr_set_power_state(pwr, pdev, state);
257 dev_vdbg(&pdev->dev, "set_power_state() returns %d\n", ret);
261 EXPORT_SYMBOL_GPL(intel_mid_pci_set_power_state);
263 int intel_mid_pwr_get_lss_id(struct pci_dev *pdev)
269 * Mapping to PWRMU index is kept in the Logical SubSystem ID byte of
272 vndr = pci_find_capability(pdev, PCI_CAP_ID_VNDR);
276 /* Read the Logical SubSystem ID byte */
277 pci_read_config_byte(pdev, vndr + INTEL_MID_PWR_LSS_OFFSET, &id);
278 if (!(id & INTEL_MID_PWR_LSS_TYPE))
281 id &= ~INTEL_MID_PWR_LSS_TYPE;
282 if (id >= LSS_MAX_DEVS)
288 static irqreturn_t mid_pwr_irq_handler(int irq, void *dev_id)
290 struct mid_pwr *pwr = dev_id;
293 ics = readl(pwr->regs + PM_ICS);
294 if (!(ics & PM_ICS_IP))
297 writel(ics | PM_ICS_IP, pwr->regs + PM_ICS);
299 dev_warn(pwr->dev, "Unexpected IRQ: %#x\n", PM_ICS_INT_STATUS(ics));
303 struct mid_pwr_device_info {
304 int (*set_initial_state)(struct mid_pwr *pwr);
307 static int mid_pwr_probe(struct pci_dev *pdev, const struct pci_device_id *id)
309 struct mid_pwr_device_info *info = (void *)id->driver_data;
310 struct device *dev = &pdev->dev;
314 ret = pcim_enable_device(pdev);
316 dev_err(&pdev->dev, "error: could not enable device\n");
320 ret = pcim_iomap_regions(pdev, 1 << 0, pci_name(pdev));
322 dev_err(&pdev->dev, "I/O memory remapping failed\n");
326 pwr = devm_kzalloc(dev, sizeof(*pwr), GFP_KERNEL);
331 pwr->regs = pcim_iomap_table(pdev)[0];
332 pwr->irq = pdev->irq;
334 mutex_init(&pwr->lock);
336 /* Disable interrupts */
337 mid_pwr_interrupt_disable(pwr);
339 if (info && info->set_initial_state) {
340 ret = info->set_initial_state(pwr);
342 dev_warn(dev, "Can't set initial state: %d\n", ret);
345 ret = devm_request_irq(dev, pdev->irq, mid_pwr_irq_handler,
346 IRQF_NO_SUSPEND, pci_name(pdev), pwr);
350 pwr->available = true;
353 pci_set_drvdata(pdev, pwr);
357 static int mid_set_initial_state(struct mid_pwr *pwr)
363 * Enable wake events.
365 * PWRMU supports up to 32 sources for wake up the system. Ungate them
368 mid_pwr_set_wake(pwr, 0, 0xffffffff);
369 mid_pwr_set_wake(pwr, 1, 0xffffffff);
372 * Power off South Complex devices.
374 * There is a map (see a note below) of 64 devices with 2 bits per each
375 * on 32-bit HW registers. The following calls set all devices to one
376 * known initial state, i.e. PCI_D3hot. This is done in conjunction
377 * with PMCSR setting in arch/x86/pci/intel_mid_pci.c.
379 * NOTE: The actual device mapping is provided by a platform at run
380 * time using vendor capability of PCI configuration space.
382 mid_pwr_set_state(pwr, 0, 0xffffffff);
383 mid_pwr_set_state(pwr, 1, 0xffffffff);
384 mid_pwr_set_state(pwr, 2, 0xffffffff);
385 mid_pwr_set_state(pwr, 3, 0xffffffff);
387 /* Send command to SCU */
388 ret = mid_pwr_wait_for_cmd(pwr, CMD_SET_CFG);
392 for (i = 0; i < LSS_MAX_DEVS; i++) {
393 for (j = 0; j < LSS_MAX_SHARED_DEVS; j++)
394 pwr->lss[i][j].state = PCI_D3hot;
400 static const struct mid_pwr_device_info mid_info = {
401 .set_initial_state = mid_set_initial_state,
404 static const struct pci_device_id mid_pwr_pci_ids[] = {
405 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PENWELL), (kernel_ulong_t)&mid_info },
406 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_TANGIER), (kernel_ulong_t)&mid_info },
410 static struct pci_driver mid_pwr_pci_driver = {
411 .name = "intel_mid_pwr",
412 .probe = mid_pwr_probe,
413 .id_table = mid_pwr_pci_ids,
416 builtin_pci_driver(mid_pwr_pci_driver);