Changes in 4.9.271 mm, vmstat: drop zone->lock in /proc/pagetypeinfo tweewide: Fix most Shebang lines scripts: switch explicitly to Python 3 netfilter: x_tables: Use correct memory barriers. NFC: nci: fix memory leak in nci_allocate_device NFSv4: Fix a NULL pointer dereference in pnfs_mark_matching_lsegs_return() proc: Check /proc/$pid/attr/ writes against file opener net: hso: fix control-request directions mac80211: assure all fragments are encrypted mac80211: prevent mixed key and fragment cache attacks mac80211: properly handle A-MSDUs that start with an RFC 1042 header cfg80211: mitigate A-MSDU aggregation attacks mac80211: drop A-MSDUs on old ciphers mac80211: add fragment cache to sta_info mac80211: check defrag PN against current frame mac80211: prevent attacks on TKIP/WEP as well mac80211: do not accept/forward invalid EAPOL frames mac80211: extend protection against mixed key and fragment cache attacks ath10k: Validate first subframe of A-MSDU before processing the list dm snapshot: properly fix a crash when an origin has no snapshots kgdb: fix gcc-11 warnings harder misc/uss720: fix memory leak in uss720_probe mei: request autosuspend after sending rx flow control staging: iio: cdc: ad7746: avoid overwrite of num_channels iio: adc: ad7793: Add missing error code in ad7793_setup() USB: trancevibrator: fix control-request direction serial: rp2: use 'request_firmware' instead of 'request_firmware_nowait' USB: serial: ti_usb_3410_5052: add startech.com device id USB: serial: option: add Telit LE910-S1 compositions 0x7010, 0x7011 USB: serial: ftdi_sio: add IDs for IDS GmbH Products USB: serial: pl2303: add device id for ADLINK ND-6530 GC net: usb: fix memory leak in smsc75xx_bind spi: Fix use-after-free with devm_spi_alloc_* Bluetooth: cmtp: fix file refcount when cmtp_attach_device fails NFS: fix an incorrect limit in filelayout_decode_layout() NFS: Don't corrupt the value of pg_bytes_written in nfs_do_recoalesce() NFSv4: Fix v4.0/v4.1 SEEK_DATA return -ENOTSUPP when set NFS_V4_2 config net/mlx4: Fix EEPROM dump support Revert "net:tipc: Fix a double free in tipc_sk_mcast_rcv" tipc: skb_linearize the head skb when reassembling msgs i2c: s3c2410: fix possible NULL pointer deref on read message after write i2c: i801: Don't generate an interrupt on bus reset perf jevents: Fix getting maximum number of fds platform/x86: hp_accel: Avoid invoking _INI to speed up resume serial: max310x: unregister uart driver in case of failure and abort net: fujitsu: fix potential null-ptr-deref net: caif: remove BUG_ON(dev == NULL) in caif_xmit char: hpet: add checks after calling ioremap isdn: mISDNinfineon: check/cleanup ioremap failure correctly in setup_io dmaengine: qcom_hidma: comment platform_driver_register call libertas: register sysfs groups properly media: dvb: Add check on sp8870_readreg return media: gspca: properly check for errors in po1030_probe() scsi: BusLogic: Fix 64-bit system enumeration error for Buslogic openrisc: Define memory barrier mb btrfs: do not BUG_ON in link_to_fixup_dir platform/x86: intel_punit_ipc: Append MODULE_DEVICE_TABLE for ACPI drm/amdgpu: Fix a use-after-free net: netcp: Fix an error message net: mdio: thunder: Fix a double free issue in the .remove function net: mdio: octeon: Fix some double free issues net: bnx2: Fix error return code in bnx2_init_board() mld: fix panic in mld_newpack() staging: emxx_udc: fix loop in _nbu2ss_nuke() ASoC: cs35l33: fix an error code in probe() scsi: libsas: Use _safe() loop in sas_resume_port() sch_dsmark: fix a NULL deref in qdisc_reset() MIPS: alchemy: xxs1500: add gpio-au1000.h header file MIPS: ralink: export rt_sysc_membase for rt2880_wdt.c hugetlbfs: hugetlb_fault_mutex_hash() cleanup usb: core: reduce power-on-good delay time of root hub Linux 4.9.271 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I6da4427d9ada52cbebbcc4d69e74f9ecebd9ad8b
361 lines
8.9 KiB
C
361 lines
8.9 KiB
C
/*
|
|
* Driver for the Intel P-Unit Mailbox IPC mechanism
|
|
*
|
|
* (C) Copyright 2015 Intel Corporation
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* The heart of the P-Unit is the Foxton microcontroller and its firmware,
|
|
* which provide mailbox interface for power management usage.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/acpi.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/bitops.h>
|
|
#include <linux/device.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/io.h>
|
|
#include <linux/platform_device.h>
|
|
#include <asm/intel_punit_ipc.h>
|
|
|
|
/* IPC Mailbox registers */
|
|
#define OFFSET_DATA_LOW 0x0
|
|
#define OFFSET_DATA_HIGH 0x4
|
|
/* bit field of interface register */
|
|
#define CMD_RUN BIT(31)
|
|
#define CMD_ERRCODE_MASK GENMASK(7, 0)
|
|
#define CMD_PARA1_SHIFT 8
|
|
#define CMD_PARA2_SHIFT 16
|
|
|
|
#define CMD_TIMEOUT_SECONDS 1
|
|
|
|
enum {
|
|
BASE_DATA = 0,
|
|
BASE_IFACE,
|
|
BASE_MAX,
|
|
};
|
|
|
|
typedef struct {
|
|
struct device *dev;
|
|
struct mutex lock;
|
|
int irq;
|
|
struct completion cmd_complete;
|
|
/* base of interface and data registers */
|
|
void __iomem *base[RESERVED_IPC][BASE_MAX];
|
|
IPC_TYPE type;
|
|
} IPC_DEV;
|
|
|
|
static IPC_DEV *punit_ipcdev;
|
|
|
|
static inline u32 ipc_read_status(IPC_DEV *ipcdev, IPC_TYPE type)
|
|
{
|
|
return readl(ipcdev->base[type][BASE_IFACE]);
|
|
}
|
|
|
|
static inline void ipc_write_cmd(IPC_DEV *ipcdev, IPC_TYPE type, u32 cmd)
|
|
{
|
|
writel(cmd, ipcdev->base[type][BASE_IFACE]);
|
|
}
|
|
|
|
static inline u32 ipc_read_data_low(IPC_DEV *ipcdev, IPC_TYPE type)
|
|
{
|
|
return readl(ipcdev->base[type][BASE_DATA] + OFFSET_DATA_LOW);
|
|
}
|
|
|
|
static inline u32 ipc_read_data_high(IPC_DEV *ipcdev, IPC_TYPE type)
|
|
{
|
|
return readl(ipcdev->base[type][BASE_DATA] + OFFSET_DATA_HIGH);
|
|
}
|
|
|
|
static inline void ipc_write_data_low(IPC_DEV *ipcdev, IPC_TYPE type, u32 data)
|
|
{
|
|
writel(data, ipcdev->base[type][BASE_DATA] + OFFSET_DATA_LOW);
|
|
}
|
|
|
|
static inline void ipc_write_data_high(IPC_DEV *ipcdev, IPC_TYPE type, u32 data)
|
|
{
|
|
writel(data, ipcdev->base[type][BASE_DATA] + OFFSET_DATA_HIGH);
|
|
}
|
|
|
|
static const char *ipc_err_string(int error)
|
|
{
|
|
if (error == IPC_PUNIT_ERR_SUCCESS)
|
|
return "no error";
|
|
else if (error == IPC_PUNIT_ERR_INVALID_CMD)
|
|
return "invalid command";
|
|
else if (error == IPC_PUNIT_ERR_INVALID_PARAMETER)
|
|
return "invalid parameter";
|
|
else if (error == IPC_PUNIT_ERR_CMD_TIMEOUT)
|
|
return "command timeout";
|
|
else if (error == IPC_PUNIT_ERR_CMD_LOCKED)
|
|
return "command locked";
|
|
else if (error == IPC_PUNIT_ERR_INVALID_VR_ID)
|
|
return "invalid vr id";
|
|
else if (error == IPC_PUNIT_ERR_VR_ERR)
|
|
return "vr error";
|
|
else
|
|
return "unknown error";
|
|
}
|
|
|
|
static int intel_punit_ipc_check_status(IPC_DEV *ipcdev, IPC_TYPE type)
|
|
{
|
|
int loops = CMD_TIMEOUT_SECONDS * USEC_PER_SEC;
|
|
int errcode;
|
|
int status;
|
|
|
|
if (ipcdev->irq) {
|
|
if (!wait_for_completion_timeout(&ipcdev->cmd_complete,
|
|
CMD_TIMEOUT_SECONDS * HZ)) {
|
|
dev_err(ipcdev->dev, "IPC timed out\n");
|
|
return -ETIMEDOUT;
|
|
}
|
|
} else {
|
|
while ((ipc_read_status(ipcdev, type) & CMD_RUN) && --loops)
|
|
udelay(1);
|
|
if (!loops) {
|
|
dev_err(ipcdev->dev, "IPC timed out\n");
|
|
return -ETIMEDOUT;
|
|
}
|
|
}
|
|
|
|
status = ipc_read_status(ipcdev, type);
|
|
errcode = status & CMD_ERRCODE_MASK;
|
|
if (errcode) {
|
|
dev_err(ipcdev->dev, "IPC failed: %s, IPC_STS=0x%x\n",
|
|
ipc_err_string(errcode), status);
|
|
return -EIO;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* intel_punit_ipc_simple_command() - Simple IPC command
|
|
* @cmd: IPC command code.
|
|
* @para1: First 8bit parameter, set 0 if not used.
|
|
* @para2: Second 8bit parameter, set 0 if not used.
|
|
*
|
|
* Send a IPC command to P-Unit when there is no data transaction
|
|
*
|
|
* Return: IPC error code or 0 on success.
|
|
*/
|
|
int intel_punit_ipc_simple_command(int cmd, int para1, int para2)
|
|
{
|
|
IPC_DEV *ipcdev = punit_ipcdev;
|
|
IPC_TYPE type;
|
|
u32 val;
|
|
int ret;
|
|
|
|
mutex_lock(&ipcdev->lock);
|
|
|
|
reinit_completion(&ipcdev->cmd_complete);
|
|
type = (cmd & IPC_PUNIT_CMD_TYPE_MASK) >> IPC_TYPE_OFFSET;
|
|
|
|
val = cmd & ~IPC_PUNIT_CMD_TYPE_MASK;
|
|
val |= CMD_RUN | para2 << CMD_PARA2_SHIFT | para1 << CMD_PARA1_SHIFT;
|
|
ipc_write_cmd(ipcdev, type, val);
|
|
ret = intel_punit_ipc_check_status(ipcdev, type);
|
|
|
|
mutex_unlock(&ipcdev->lock);
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL(intel_punit_ipc_simple_command);
|
|
|
|
/**
|
|
* intel_punit_ipc_command() - IPC command with data and pointers
|
|
* @cmd: IPC command code.
|
|
* @para1: First 8bit parameter, set 0 if not used.
|
|
* @para2: Second 8bit parameter, set 0 if not used.
|
|
* @in: Input data, 32bit for BIOS cmd, two 32bit for GTD and ISPD.
|
|
* @out: Output data.
|
|
*
|
|
* Send a IPC command to P-Unit with data transaction
|
|
*
|
|
* Return: IPC error code or 0 on success.
|
|
*/
|
|
int intel_punit_ipc_command(u32 cmd, u32 para1, u32 para2, u32 *in, u32 *out)
|
|
{
|
|
IPC_DEV *ipcdev = punit_ipcdev;
|
|
IPC_TYPE type;
|
|
u32 val;
|
|
int ret;
|
|
|
|
mutex_lock(&ipcdev->lock);
|
|
|
|
reinit_completion(&ipcdev->cmd_complete);
|
|
type = (cmd & IPC_PUNIT_CMD_TYPE_MASK) >> IPC_TYPE_OFFSET;
|
|
|
|
if (in) {
|
|
ipc_write_data_low(ipcdev, type, *in);
|
|
if (type == GTDRIVER_IPC || type == ISPDRIVER_IPC)
|
|
ipc_write_data_high(ipcdev, type, *++in);
|
|
}
|
|
|
|
val = cmd & ~IPC_PUNIT_CMD_TYPE_MASK;
|
|
val |= CMD_RUN | para2 << CMD_PARA2_SHIFT | para1 << CMD_PARA1_SHIFT;
|
|
ipc_write_cmd(ipcdev, type, val);
|
|
|
|
ret = intel_punit_ipc_check_status(ipcdev, type);
|
|
if (ret)
|
|
goto out;
|
|
|
|
if (out) {
|
|
*out = ipc_read_data_low(ipcdev, type);
|
|
if (type == GTDRIVER_IPC || type == ISPDRIVER_IPC)
|
|
*++out = ipc_read_data_high(ipcdev, type);
|
|
}
|
|
|
|
out:
|
|
mutex_unlock(&ipcdev->lock);
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(intel_punit_ipc_command);
|
|
|
|
static irqreturn_t intel_punit_ioc(int irq, void *dev_id)
|
|
{
|
|
IPC_DEV *ipcdev = dev_id;
|
|
|
|
complete(&ipcdev->cmd_complete);
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
static int intel_punit_get_bars(struct platform_device *pdev)
|
|
{
|
|
struct resource *res;
|
|
void __iomem *addr;
|
|
|
|
/*
|
|
* The following resources are required
|
|
* - BIOS_IPC BASE_DATA
|
|
* - BIOS_IPC BASE_IFACE
|
|
*/
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
addr = devm_ioremap_resource(&pdev->dev, res);
|
|
if (IS_ERR(addr))
|
|
return PTR_ERR(addr);
|
|
punit_ipcdev->base[BIOS_IPC][BASE_DATA] = addr;
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
|
|
addr = devm_ioremap_resource(&pdev->dev, res);
|
|
if (IS_ERR(addr))
|
|
return PTR_ERR(addr);
|
|
punit_ipcdev->base[BIOS_IPC][BASE_IFACE] = addr;
|
|
|
|
/*
|
|
* The following resources are optional
|
|
* - ISPDRIVER_IPC BASE_DATA
|
|
* - ISPDRIVER_IPC BASE_IFACE
|
|
* - GTDRIVER_IPC BASE_DATA
|
|
* - GTDRIVER_IPC BASE_IFACE
|
|
*/
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 2);
|
|
if (res && resource_size(res) > 1) {
|
|
addr = devm_ioremap_resource(&pdev->dev, res);
|
|
if (!IS_ERR(addr))
|
|
punit_ipcdev->base[ISPDRIVER_IPC][BASE_DATA] = addr;
|
|
}
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 3);
|
|
if (res && resource_size(res) > 1) {
|
|
addr = devm_ioremap_resource(&pdev->dev, res);
|
|
if (!IS_ERR(addr))
|
|
punit_ipcdev->base[ISPDRIVER_IPC][BASE_IFACE] = addr;
|
|
}
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 4);
|
|
if (res && resource_size(res) > 1) {
|
|
addr = devm_ioremap_resource(&pdev->dev, res);
|
|
if (!IS_ERR(addr))
|
|
punit_ipcdev->base[GTDRIVER_IPC][BASE_DATA] = addr;
|
|
}
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 5);
|
|
if (res && resource_size(res) > 1) {
|
|
addr = devm_ioremap_resource(&pdev->dev, res);
|
|
if (!IS_ERR(addr))
|
|
punit_ipcdev->base[GTDRIVER_IPC][BASE_IFACE] = addr;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int intel_punit_ipc_probe(struct platform_device *pdev)
|
|
{
|
|
int irq, ret;
|
|
|
|
punit_ipcdev = devm_kzalloc(&pdev->dev,
|
|
sizeof(*punit_ipcdev), GFP_KERNEL);
|
|
if (!punit_ipcdev)
|
|
return -ENOMEM;
|
|
|
|
platform_set_drvdata(pdev, punit_ipcdev);
|
|
|
|
irq = platform_get_irq(pdev, 0);
|
|
if (irq < 0) {
|
|
punit_ipcdev->irq = 0;
|
|
dev_warn(&pdev->dev, "Invalid IRQ, using polling mode\n");
|
|
} else {
|
|
ret = devm_request_irq(&pdev->dev, irq, intel_punit_ioc,
|
|
IRQF_NO_SUSPEND, "intel_punit_ipc",
|
|
&punit_ipcdev);
|
|
if (ret) {
|
|
dev_err(&pdev->dev, "Failed to request irq: %d\n", irq);
|
|
return ret;
|
|
}
|
|
punit_ipcdev->irq = irq;
|
|
}
|
|
|
|
ret = intel_punit_get_bars(pdev);
|
|
if (ret)
|
|
goto out;
|
|
|
|
punit_ipcdev->dev = &pdev->dev;
|
|
mutex_init(&punit_ipcdev->lock);
|
|
init_completion(&punit_ipcdev->cmd_complete);
|
|
|
|
out:
|
|
return ret;
|
|
}
|
|
|
|
static int intel_punit_ipc_remove(struct platform_device *pdev)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static const struct acpi_device_id punit_ipc_acpi_ids[] = {
|
|
{ "INT34D4", 0 },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(acpi, punit_ipc_acpi_ids);
|
|
|
|
static struct platform_driver intel_punit_ipc_driver = {
|
|
.probe = intel_punit_ipc_probe,
|
|
.remove = intel_punit_ipc_remove,
|
|
.driver = {
|
|
.name = "intel_punit_ipc",
|
|
.acpi_match_table = ACPI_PTR(punit_ipc_acpi_ids),
|
|
},
|
|
};
|
|
|
|
static int __init intel_punit_ipc_init(void)
|
|
{
|
|
return platform_driver_register(&intel_punit_ipc_driver);
|
|
}
|
|
|
|
static void __exit intel_punit_ipc_exit(void)
|
|
{
|
|
platform_driver_unregister(&intel_punit_ipc_driver);
|
|
}
|
|
|
|
MODULE_AUTHOR("Zha Qipeng <qipeng.zha@intel.com>");
|
|
MODULE_DESCRIPTION("Intel P-Unit IPC driver");
|
|
MODULE_LICENSE("GPL v2");
|
|
|
|
/* Some modules are dependent on this, so init earlier */
|
|
fs_initcall(intel_punit_ipc_init);
|
|
module_exit(intel_punit_ipc_exit);
|