mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

The current SCU IPC API has been operating on a single instance and there has been no way to pin the providing module in place when the SCU IPC is in use. This implements a new API that takes the SCU IPC instance as first parameter (NULL means the single instance is being used). The SCU IPC instance can be retrieved by calling new function intel_scu_ipc_dev_get() that take care of pinning the providing module in place as long as intel_scu_ipc_dev_put() is not called. The old API is updated to call the new API and is is left there in the legacy API header to support the existing users that cannot be converted easily. Subsequent patches will convert most of the users over to the new API. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
60 lines
1.9 KiB
C
60 lines
1.9 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_X86_INTEL_SCU_IPC_H_
|
|
#define _ASM_X86_INTEL_SCU_IPC_H_
|
|
|
|
#include <linux/ioport.h>
|
|
|
|
struct device;
|
|
struct intel_scu_ipc_dev;
|
|
|
|
/**
|
|
* struct intel_scu_ipc_data - Data used to configure SCU IPC
|
|
* @mem: Base address of SCU IPC MMIO registers
|
|
* @irq: The IRQ number used for SCU (optional)
|
|
*/
|
|
struct intel_scu_ipc_data {
|
|
struct resource mem;
|
|
int irq;
|
|
};
|
|
|
|
struct intel_scu_ipc_dev *
|
|
__intel_scu_ipc_register(struct device *parent,
|
|
const struct intel_scu_ipc_data *scu_data,
|
|
struct module *owner);
|
|
|
|
#define intel_scu_ipc_register(parent, scu_data) \
|
|
__intel_scu_ipc_register(parent, scu_data, THIS_MODULE)
|
|
|
|
struct intel_scu_ipc_dev *intel_scu_ipc_dev_get(void);
|
|
void intel_scu_ipc_dev_put(struct intel_scu_ipc_dev *scu);
|
|
struct intel_scu_ipc_dev *devm_intel_scu_ipc_dev_get(struct device *dev);
|
|
|
|
int intel_scu_ipc_dev_ioread8(struct intel_scu_ipc_dev *scu, u16 addr,
|
|
u8 *data);
|
|
int intel_scu_ipc_dev_iowrite8(struct intel_scu_ipc_dev *scu, u16 addr,
|
|
u8 data);
|
|
int intel_scu_ipc_dev_readv(struct intel_scu_ipc_dev *scu, u16 *addr,
|
|
u8 *data, size_t len);
|
|
int intel_scu_ipc_dev_writev(struct intel_scu_ipc_dev *scu, u16 *addr,
|
|
u8 *data, size_t len);
|
|
|
|
int intel_scu_ipc_dev_update(struct intel_scu_ipc_dev *scu, u16 addr,
|
|
u8 data, u8 mask);
|
|
|
|
int intel_scu_ipc_dev_simple_command(struct intel_scu_ipc_dev *scu, int cmd,
|
|
int sub);
|
|
int intel_scu_ipc_dev_command_with_size(struct intel_scu_ipc_dev *scu, int cmd,
|
|
int sub, const void *in, size_t inlen,
|
|
size_t size, void *out, size_t outlen);
|
|
|
|
static inline int intel_scu_ipc_dev_command(struct intel_scu_ipc_dev *scu, int cmd,
|
|
int sub, const void *in, size_t inlen,
|
|
void *out, size_t outlen)
|
|
{
|
|
return intel_scu_ipc_dev_command_with_size(scu, cmd, sub, in, inlen,
|
|
inlen, out, outlen);
|
|
}
|
|
|
|
#include <asm/intel_scu_ipc_legacy.h>
|
|
|
|
#endif
|