4449 lines
122 KiB
C
Executable File
4449 lines
122 KiB
C
Executable File
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2017-2021, The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2023-2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#include <linux/atomic.h>
|
|
#include <linux/completion.h>
|
|
#include <linux/debugfs.h>
|
|
#include <linux/device.h>
|
|
#include <linux/dma-mapping.h>
|
|
#include <linux/dmaengine.h>
|
|
#include <linux/io.h>
|
|
#include <linux/iommu.h>
|
|
#include <linux/init.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/ipc_logging.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_address.h>
|
|
#include <linux/of_dma.h>
|
|
#include <linux/of_irq.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/scatterlist.h>
|
|
#include <linux/sched/clock.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/vmalloc.h>
|
|
#include <linux/cacheflush.h>
|
|
#include <linux/msm_gpi.h>
|
|
#include <linux/delay.h>
|
|
#include "../dmaengine.h"
|
|
#include "../virt-dma.h"
|
|
#include "msm_gpi_mmio.h"
|
|
|
|
/* global logging macros */
|
|
#define GPI_LOG(gpi_dev, fmt, ...) do { \
|
|
if (gpi_dev->klog_lvl != LOG_LVL_MASK_ALL) \
|
|
dev_dbg(gpi_dev->dev, "%s: " fmt, __func__, ##__VA_ARGS__); \
|
|
if (gpi_dev->ilctxt && gpi_dev->ipc_log_lvl != LOG_LVL_MASK_ALL) \
|
|
ipc_log_string(gpi_dev->ilctxt, \
|
|
"%s: " fmt, __func__, ##__VA_ARGS__); \
|
|
} while (0)
|
|
#define GPI_ERR(gpi_dev, fmt, ...) do { \
|
|
if (gpi_dev->klog_lvl >= LOG_LVL_ERROR) \
|
|
dev_err(gpi_dev->dev, "%s: " fmt, __func__, ##__VA_ARGS__); \
|
|
if (gpi_dev->ilctxt && gpi_dev->ipc_log_lvl >= LOG_LVL_ERROR) \
|
|
ipc_log_string(gpi_dev->ilctxt, \
|
|
"%s: " fmt, __func__, ##__VA_ARGS__); \
|
|
} while (0)
|
|
|
|
/* gpii specific logging macros */
|
|
#define GPII_INFO(gpii, ch, fmt, ...) do { \
|
|
if (gpii->klog_lvl >= LOG_LVL_INFO) \
|
|
pr_info("%s:%u:%s: " fmt, gpii->label, ch, \
|
|
__func__, ##__VA_ARGS__); \
|
|
if (gpii->ilctxt && gpii->ipc_log_lvl >= LOG_LVL_INFO) \
|
|
ipc_log_string(gpii->ilctxt, \
|
|
"ch:%u %s: " fmt, ch, \
|
|
__func__, ##__VA_ARGS__); \
|
|
} while (0)
|
|
#define GPII_ERR(gpii, ch, fmt, ...) do { \
|
|
if (gpii->klog_lvl >= LOG_LVL_ERROR) \
|
|
pr_err("%s:%u:%s: " fmt, gpii->label, ch, \
|
|
__func__, ##__VA_ARGS__); \
|
|
if (gpii->ilctxt && gpii->ipc_log_lvl >= LOG_LVL_ERROR) \
|
|
ipc_log_string(gpii->ilctxt, \
|
|
"ch:%u %s: " fmt, ch, \
|
|
__func__, ##__VA_ARGS__); \
|
|
} while (0)
|
|
#define GPII_CRITIC(gpii, ch, fmt, ...) do { \
|
|
if (gpii->klog_lvl >= LOG_LVL_CRITICAL) \
|
|
pr_err("%s:%u:%s: " fmt, gpii->label, ch, \
|
|
__func__, ##__VA_ARGS__); \
|
|
if (gpii->ilctxt && gpii->ipc_log_lvl >= LOG_LVL_CRITICAL) \
|
|
ipc_log_string(gpii->ilctxt, \
|
|
"ch:%u %s: " fmt, ch, \
|
|
__func__, ##__VA_ARGS__); \
|
|
} while (0)
|
|
|
|
enum DEBUG_LOG_LVL {
|
|
LOG_LVL_MASK_ALL,
|
|
LOG_LVL_CRITICAL,
|
|
LOG_LVL_ERROR,
|
|
LOG_LVL_INFO,
|
|
LOG_LVL_VERBOSE,
|
|
LOG_LVL_REG_ACCESS,
|
|
};
|
|
|
|
enum EV_PRIORITY {
|
|
EV_PRIORITY_ISR,
|
|
EV_PRIORITY_TASKLET,
|
|
};
|
|
|
|
#define GPI_DMA_DRV_NAME "gpi_dma"
|
|
#define DEFAULT_KLOG_LVL (LOG_LVL_CRITICAL)
|
|
#if IS_ENABLED(CONFIG_MSM_GPI_DMA_DEBUG)
|
|
#define DEFAULT_IPC_LOG_LVL (LOG_LVL_VERBOSE)
|
|
#define GPI_DBG_LOG_SIZE (SZ_1K) /* size must be power of 2 */
|
|
#define CMD_TIMEOUT_MS (1000)
|
|
#define GPII_REG(gpii, ch, fmt, ...) do { \
|
|
if (gpii->klog_lvl >= LOG_LVL_REG_ACCESS) \
|
|
pr_info("%s:%u:%s: " fmt, gpii->label, \
|
|
ch, __func__, ##__VA_ARGS__); \
|
|
if (gpii->ilctxt && gpii->ipc_log_lvl >= LOG_LVL_REG_ACCESS) \
|
|
ipc_log_string(gpii->ilctxt, \
|
|
"ch:%u %s: " fmt, ch, \
|
|
__func__, ##__VA_ARGS__); \
|
|
} while (0)
|
|
#define GPII_VERB(gpii, ch, fmt, ...) do { \
|
|
if (gpii->klog_lvl >= LOG_LVL_VERBOSE) \
|
|
pr_info("%s:%u:%s: " fmt, gpii->label, \
|
|
ch, __func__, ##__VA_ARGS__); \
|
|
if (gpii->ilctxt && gpii->ipc_log_lvl >= LOG_LVL_VERBOSE) \
|
|
ipc_log_string(gpii->ilctxt, \
|
|
"ch:%u %s: " fmt, ch, \
|
|
__func__, ##__VA_ARGS__); \
|
|
} while (0)
|
|
|
|
#else
|
|
#define GPI_DBG_LOG_SIZE (0) /* size must be power of 2 */
|
|
#define DEFAULT_IPC_LOG_LVL (LOG_LVL_ERROR)
|
|
#define CMD_TIMEOUT_MS (500)
|
|
/* verbose and register logging are disabled if !debug */
|
|
#define GPII_REG(gpii, ch, fmt, ...)
|
|
#define GPII_VERB(gpii, ch, fmt, ...)
|
|
#endif
|
|
|
|
#define IPC_LOG_PAGES (2)
|
|
#define GPI_LABEL_SIZE (256)
|
|
#define GPI_DBG_COMMON (99)
|
|
#define MAX_CHANNELS_PER_GPII (2)
|
|
#define GPI_TX_CHAN (0)
|
|
#define GPI_RX_CHAN (1)
|
|
#define STATE_IGNORE (U32_MAX)
|
|
#define REQ_OF_DMA_ARGS (5) /* # of arguments required from client */
|
|
|
|
#define NOOP_TRE_MASK(link_rx, bei, ieot, ieob, ch) \
|
|
((0x0 << 20) | (0x0 << 16) | (link_rx << 11) | (bei << 10) | \
|
|
(ieot << 9) | (ieob << 8) | ch)
|
|
#define NOOP_TRE (0x0 << 20 | 0x1 << 16)
|
|
#define HID_CMD_TIMEOUT_MS (250)
|
|
|
|
struct __packed gpi_error_log_entry {
|
|
u32 routine : 4;
|
|
u32 type : 4;
|
|
u32 reserved0 : 4;
|
|
u32 code : 4;
|
|
u32 reserved1 : 3;
|
|
u32 chid : 5;
|
|
u32 reserved2 : 1;
|
|
u32 chtype : 1;
|
|
u32 ee : 1;
|
|
};
|
|
|
|
struct __packed xfer_compl_event {
|
|
u64 ptr;
|
|
u32 length : 24;
|
|
u8 code;
|
|
u16 status;
|
|
u8 type;
|
|
u8 chid;
|
|
};
|
|
|
|
struct __packed qup_q2spi_status {
|
|
u32 ptr_l;
|
|
u32 ptr_h : 8;
|
|
u32 resvd_0 : 8;
|
|
u32 value : 8;
|
|
u32 resvd_1 : 8;
|
|
u32 length : 20;
|
|
u32 resvd_2 : 4;
|
|
u8 code : 8;
|
|
u16 status : 16;
|
|
u8 type : 8;
|
|
u8 ch_id : 8;
|
|
};
|
|
|
|
struct __packed immediate_data_event {
|
|
u8 data_bytes[8];
|
|
u8 length : 4;
|
|
u8 resvd : 4;
|
|
u16 tre_index;
|
|
u8 code;
|
|
u16 status;
|
|
u8 type;
|
|
u8 chid;
|
|
};
|
|
|
|
struct __packed qup_notif_event {
|
|
u32 status;
|
|
u32 time;
|
|
u32 count :24;
|
|
u8 resvd;
|
|
u16 resvd1;
|
|
u8 type;
|
|
u8 chid;
|
|
};
|
|
|
|
struct __packed gpi_ere {
|
|
u32 dword[4];
|
|
};
|
|
|
|
union __packed gpi_event {
|
|
struct __packed xfer_compl_event xfer_compl_event;
|
|
struct __packed immediate_data_event immediate_data_event;
|
|
struct __packed qup_notif_event qup_notif_event;
|
|
struct __packed gpi_ere gpi_ere;
|
|
struct __packed qup_q2spi_status q2spi_status;
|
|
struct __packed qup_q2spi_cr_header_event q2spi_cr_header_event;
|
|
};
|
|
|
|
enum gpii_irq_settings {
|
|
DEFAULT_IRQ_SETTINGS,
|
|
MASK_IEOB_SETTINGS,
|
|
};
|
|
|
|
enum gpi_ev_state {
|
|
DEFAULT_EV_CH_STATE = 0,
|
|
EV_STATE_NOT_ALLOCATED = DEFAULT_EV_CH_STATE,
|
|
EV_STATE_ALLOCATED,
|
|
MAX_EV_STATES
|
|
};
|
|
|
|
static const char *const gpi_ev_state_str[MAX_EV_STATES] = {
|
|
[EV_STATE_NOT_ALLOCATED] = "NOT ALLOCATED",
|
|
[EV_STATE_ALLOCATED] = "ALLOCATED",
|
|
};
|
|
|
|
#define TO_GPI_EV_STATE_STR(state) ((state >= MAX_EV_STATES) ? \
|
|
"INVALID" : gpi_ev_state_str[state])
|
|
|
|
enum gpi_ch_state {
|
|
DEFAULT_CH_STATE = 0x0,
|
|
CH_STATE_NOT_ALLOCATED = DEFAULT_CH_STATE,
|
|
CH_STATE_ALLOCATED = 0x1,
|
|
CH_STATE_STARTED = 0x2,
|
|
CH_STATE_STOPPED = 0x3,
|
|
CH_STATE_STOP_IN_PROC = 0x4,
|
|
CH_STATE_ENABLE_HID = 0x5,
|
|
CH_STATE_DISABLE_HID = 0x6,
|
|
CH_STATE_ERROR = 0xf,
|
|
MAX_CH_STATES
|
|
};
|
|
|
|
static const char *const gpi_ch_state_str[MAX_CH_STATES] = {
|
|
[CH_STATE_NOT_ALLOCATED] = "NOT ALLOCATED",
|
|
[CH_STATE_ALLOCATED] = "ALLOCATED",
|
|
[CH_STATE_STARTED] = "STARTED",
|
|
[CH_STATE_STOPPED] = "STOPPED",
|
|
[CH_STATE_STOP_IN_PROC] = "STOP IN PROCESS",
|
|
[CH_STATE_ENABLE_HID] = "HID ENABLE",
|
|
[CH_STATE_DISABLE_HID] = "HID DISABLE",
|
|
[CH_STATE_ERROR] = "ERROR",
|
|
};
|
|
|
|
#define TO_GPI_CH_STATE_STR(state) ((state >= MAX_CH_STATES) ? \
|
|
"INVALID" : gpi_ch_state_str[state])
|
|
|
|
enum gpi_cmd {
|
|
GPI_CH_CMD_BEGIN,
|
|
GPI_CH_CMD_ALLOCATE = GPI_CH_CMD_BEGIN,
|
|
GPI_CH_CMD_START,
|
|
GPI_CH_CMD_STOP,
|
|
GPI_CH_CMD_RESET,
|
|
GPI_CH_CMD_DE_ALLOC,
|
|
GPI_CH_CMD_UART_SW_STALE,
|
|
GPI_CH_CMD_UART_RFR_READY,
|
|
GPI_CH_CMD_UART_RFR_NOT_READY,
|
|
GPI_CH_CMD_ENABLE_HID,
|
|
GPI_CH_CMD_DISABLE_HID,
|
|
GPI_CH_CMD_END = GPI_CH_CMD_DISABLE_HID,
|
|
GPI_EV_CMD_BEGIN,
|
|
GPI_EV_CMD_ALLOCATE = GPI_EV_CMD_BEGIN,
|
|
GPI_EV_CMD_RESET,
|
|
GPI_EV_CMD_DEALLOC,
|
|
GPI_EV_CMD_END = GPI_EV_CMD_DEALLOC,
|
|
GPI_MAX_CMD,
|
|
};
|
|
|
|
#define IS_CHAN_CMD(cmd) (cmd <= GPI_CH_CMD_END)
|
|
|
|
static const char *const gpi_cmd_str[GPI_MAX_CMD] = {
|
|
[GPI_CH_CMD_ALLOCATE] = "CH ALLOCATE",
|
|
[GPI_CH_CMD_START] = "CH START",
|
|
[GPI_CH_CMD_STOP] = "CH STOP",
|
|
[GPI_CH_CMD_RESET] = "CH_RESET",
|
|
[GPI_CH_CMD_DE_ALLOC] = "DE ALLOC",
|
|
[GPI_CH_CMD_UART_SW_STALE] = "UART SW STALE",
|
|
[GPI_CH_CMD_UART_RFR_READY] = "UART RFR READY",
|
|
[GPI_CH_CMD_UART_RFR_NOT_READY] = "UART RFR NOT READY",
|
|
[GPI_CH_CMD_ENABLE_HID] = "CH Enable HID interrupt",
|
|
[GPI_CH_CMD_DISABLE_HID] = "CH Disable HID interrupt",
|
|
[GPI_EV_CMD_ALLOCATE] = "EV ALLOCATE",
|
|
[GPI_EV_CMD_RESET] = "EV RESET",
|
|
[GPI_EV_CMD_DEALLOC] = "EV DEALLOC",
|
|
};
|
|
|
|
#define TO_GPI_CMD_STR(cmd) ((cmd >= GPI_MAX_CMD) ? "INVALID" : \
|
|
gpi_cmd_str[cmd])
|
|
|
|
enum se_protocol {
|
|
SE_PROTOCOL_SPI = 1,
|
|
SE_PROTOCOL_UART = 2,
|
|
SE_PROTOCOL_I2C = 3,
|
|
SE_PROTOCOL_Q2SPI = 0xE,
|
|
SE_MAX_PROTOCOL
|
|
};
|
|
|
|
/*
|
|
* @DISABLE_STATE: no register access allowed
|
|
* @CONFIG_STATE: client has configured the channel
|
|
* @PREP_HARDWARE: register access is allowed
|
|
* however, no processing EVENTS
|
|
* @ACTIVE_STATE: channels are fully operational
|
|
* @PREPARE_TERIMNATE: graceful termination of channels
|
|
* register access is allowed
|
|
* @PAUSE_STATE: channels are active, but not processing any events
|
|
*/
|
|
enum gpi_pm_state {
|
|
DISABLE_STATE,
|
|
CONFIG_STATE,
|
|
PREPARE_HARDWARE,
|
|
ACTIVE_STATE,
|
|
PREPARE_TERMINATE,
|
|
PAUSE_STATE,
|
|
MAX_PM_STATE
|
|
};
|
|
|
|
#define REG_ACCESS_VALID(pm_state) (pm_state >= PREPARE_HARDWARE)
|
|
|
|
static const char *const gpi_pm_state_str[MAX_PM_STATE] = {
|
|
[DISABLE_STATE] = "DISABLE",
|
|
[CONFIG_STATE] = "CONFIG",
|
|
[PREPARE_HARDWARE] = "PREPARE HARDWARE",
|
|
[ACTIVE_STATE] = "ACTIVE",
|
|
[PREPARE_TERMINATE] = "PREPARE TERMINATE",
|
|
[PAUSE_STATE] = "PAUSE",
|
|
};
|
|
|
|
#define TO_GPI_PM_STR(state) ((state >= MAX_PM_STATE) ? \
|
|
"INVALID" : gpi_pm_state_str[state])
|
|
|
|
static const struct {
|
|
enum gpi_cmd gpi_cmd;
|
|
u32 opcode;
|
|
u32 state;
|
|
u32 timeout_ms;
|
|
} gpi_cmd_info[GPI_MAX_CMD] = {
|
|
{
|
|
GPI_CH_CMD_ALLOCATE,
|
|
GPI_GPII_n_CH_CMD_ALLOCATE,
|
|
CH_STATE_ALLOCATED,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_CH_CMD_START,
|
|
GPI_GPII_n_CH_CMD_START,
|
|
CH_STATE_STARTED,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_CH_CMD_STOP,
|
|
GPI_GPII_n_CH_CMD_STOP,
|
|
CH_STATE_STOPPED,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_CH_CMD_RESET,
|
|
GPI_GPII_n_CH_CMD_RESET,
|
|
CH_STATE_ALLOCATED,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_CH_CMD_DE_ALLOC,
|
|
GPI_GPII_n_CH_CMD_DE_ALLOC,
|
|
CH_STATE_NOT_ALLOCATED,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_CH_CMD_UART_SW_STALE,
|
|
GPI_GPII_n_CH_CMD_UART_SW_STALE,
|
|
STATE_IGNORE,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_CH_CMD_UART_RFR_READY,
|
|
GPI_GPII_n_CH_CMD_UART_RFR_READY,
|
|
STATE_IGNORE,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_CH_CMD_UART_RFR_NOT_READY,
|
|
GPI_GPII_n_CH_CMD_UART_RFR_NOT_READY,
|
|
STATE_IGNORE,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_CH_CMD_ENABLE_HID,
|
|
GPI_GPII_n_CH_CMD_ENABLE_HID,
|
|
CH_STATE_ENABLE_HID,
|
|
HID_CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_CH_CMD_DISABLE_HID,
|
|
GPI_GPII_n_CH_CMD_DISABLE_HID,
|
|
CH_STATE_DISABLE_HID,
|
|
HID_CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_EV_CMD_ALLOCATE,
|
|
GPI_GPII_n_EV_CH_CMD_ALLOCATE,
|
|
EV_STATE_ALLOCATED,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_EV_CMD_RESET,
|
|
GPI_GPII_n_EV_CH_CMD_RESET,
|
|
EV_STATE_ALLOCATED,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
{
|
|
GPI_EV_CMD_DEALLOC,
|
|
GPI_GPII_n_EV_CH_CMD_DE_ALLOC,
|
|
EV_STATE_NOT_ALLOCATED,
|
|
CMD_TIMEOUT_MS,
|
|
},
|
|
};
|
|
|
|
struct gpi_ring {
|
|
void *pre_aligned;
|
|
size_t alloc_size;
|
|
phys_addr_t phys_addr;
|
|
dma_addr_t dma_handle;
|
|
void *base;
|
|
void *wp;
|
|
void *rp;
|
|
u32 len;
|
|
u32 el_size;
|
|
u32 elements;
|
|
bool configured;
|
|
};
|
|
|
|
struct sg_tre {
|
|
void *ptr;
|
|
void *wp; /* store chan wp for debugging */
|
|
};
|
|
|
|
struct gpi_dbg_log {
|
|
void *addr;
|
|
u64 time;
|
|
u32 val;
|
|
bool read;
|
|
};
|
|
|
|
struct gpi_dev {
|
|
struct dma_device dma_device;
|
|
struct device *dev;
|
|
struct resource *res;
|
|
void __iomem *regs;
|
|
void *ee_base; /*ee register base address*/
|
|
u32 max_gpii; /* maximum # of gpii instances available per gpi block */
|
|
u32 gpii_mask; /* gpii instances available for apps */
|
|
u32 static_gpii_mask; /* gpii instances assigned statically */
|
|
u32 ev_factor; /* ev ring length factor */
|
|
u32 smmu_cfg;
|
|
dma_addr_t iova_base;
|
|
size_t iova_size;
|
|
struct gpii *gpiis;
|
|
void *ilctxt;
|
|
u32 ipc_log_lvl;
|
|
u32 klog_lvl;
|
|
struct dentry *dentry;
|
|
bool is_le_vm;
|
|
struct mutex qup_se_lock; /* qup SE instance lock */
|
|
};
|
|
|
|
static struct gpi_dev *gpi_dev_dbg[5];
|
|
static int arr_idx;
|
|
|
|
struct reg_info {
|
|
char *name;
|
|
u32 offset;
|
|
u32 val;
|
|
};
|
|
|
|
static const struct reg_info gpi_debug_ev_cntxt[] = {
|
|
{ "CONFIG", CNTXT_0_CONFIG },
|
|
{ "R_LENGTH", CNTXT_1_R_LENGTH },
|
|
{ "BASE_LSB", CNTXT_2_RING_BASE_LSB },
|
|
{ "BASE_MSB", CNTXT_3_RING_BASE_MSB },
|
|
{ "RP_LSB", CNTXT_4_RING_RP_LSB },
|
|
{ "RP_MSB", CNTXT_5_RING_RP_MSB },
|
|
{ "WP_LSB", CNTXT_6_RING_WP_LSB },
|
|
{ "WP_MSB", CNTXT_7_RING_WP_MSB },
|
|
{ "INT_MOD", CNTXT_8_RING_INT_MOD },
|
|
{ "INTVEC", CNTXT_9_RING_INTVEC },
|
|
{ "MSI_LSB", CNTXT_10_RING_MSI_LSB },
|
|
{ "MSI_MSB", CNTXT_11_RING_MSI_MSB },
|
|
{ "RP_UPDATE_LSB", CNTXT_12_RING_RP_UPDATE_LSB },
|
|
{ "RP_UPDATE_MSB", CNTXT_13_RING_RP_UPDATE_MSB },
|
|
{ NULL },
|
|
};
|
|
|
|
static const struct reg_info gpi_debug_ch_cntxt[] = {
|
|
{ "CONFIG", CNTXT_0_CONFIG },
|
|
{ "R_LENGTH", CNTXT_1_R_LENGTH },
|
|
{ "BASE_LSB", CNTXT_2_RING_BASE_LSB },
|
|
{ "BASE_MSB", CNTXT_3_RING_BASE_MSB },
|
|
{ "RP_LSB", CNTXT_4_RING_RP_LSB },
|
|
{ "RP_MSB", CNTXT_5_RING_RP_MSB },
|
|
{ "WP_LSB", CNTXT_6_RING_WP_LSB },
|
|
{ "WP_MSB", CNTXT_7_RING_WP_MSB },
|
|
{ NULL },
|
|
};
|
|
|
|
static const struct reg_info gpi_debug_regs[] = {
|
|
{ "DEBUG_PC", GPI_DEBUG_PC_FOR_DEBUG },
|
|
{ "DEBUG_BUSY", GPI_DEBUG_BUSY_REG },
|
|
{ "SW_RF_0", GPI_DEBUG_SW_RF_n_READ(0) },
|
|
{ "SW_RF_1", GPI_DEBUG_SW_RF_n_READ(1) },
|
|
{ "SW_RF_2", GPI_DEBUG_SW_RF_n_READ(2) },
|
|
{ "SW_RF_3", GPI_DEBUG_SW_RF_n_READ(3) },
|
|
{ "SW_RF_4", GPI_DEBUG_SW_RF_n_READ(4) },
|
|
{ "SW_RF_5", GPI_DEBUG_SW_RF_n_READ(5) },
|
|
{ "SW_RF_6", GPI_DEBUG_SW_RF_n_READ(6) },
|
|
{ "SW_RF_7", GPI_DEBUG_SW_RF_n_READ(7) },
|
|
{ "SW_RF_8", GPI_DEBUG_SW_RF_n_READ(8) },
|
|
{ "SW_RF_9", GPI_DEBUG_SW_RF_n_READ(9) },
|
|
{ "SW_RF_10", GPI_DEBUG_SW_RF_n_READ(10) },
|
|
{ "SW_RF_11", GPI_DEBUG_SW_RF_n_READ(11) },
|
|
{ "SW_RF_12", GPI_DEBUG_SW_RF_n_READ(12) },
|
|
{ "SW_RF_13", GPI_DEBUG_SW_RF_n_READ(13) },
|
|
{ "SW_RF_14", GPI_DEBUG_SW_RF_n_READ(14) },
|
|
{ "SW_RF_15", GPI_DEBUG_SW_RF_n_READ(15) },
|
|
{ "SW_RF_16", GPI_DEBUG_SW_RF_n_READ(16) },
|
|
{ "SW_RF_17", GPI_DEBUG_SW_RF_n_READ(17) },
|
|
{ "SW_RF_18", GPI_DEBUG_SW_RF_n_READ(18) },
|
|
{ "SW_RF_19", GPI_DEBUG_SW_RF_n_READ(19) },
|
|
{ "SW_RF_20", GPI_DEBUG_SW_RF_n_READ(20) },
|
|
{ "SW_RF_21", GPI_DEBUG_SW_RF_n_READ(21) },
|
|
{ "SW_RF_22", GPI_DEBUG_SW_RF_n_READ(22) },
|
|
{ "SW_RF_23", GPI_DEBUG_SW_RF_n_READ(23) },
|
|
{ "SW_RF_24", GPI_DEBUG_SW_RF_n_READ(24) },
|
|
{ "SW_RF_25", GPI_DEBUG_SW_RF_n_READ(25) },
|
|
{ "SW_RF_26", GPI_DEBUG_SW_RF_n_READ(26) },
|
|
{ "SW_RF_27", GPI_DEBUG_SW_RF_n_READ(27) },
|
|
{ "SW_RF_28", GPI_DEBUG_SW_RF_n_READ(28) },
|
|
{ "SW_RF_29", GPI_DEBUG_SW_RF_n_READ(29) },
|
|
{ "SW_RF_30", GPI_DEBUG_SW_RF_n_READ(30) },
|
|
{ "SW_RF_31", GPI_DEBUG_SW_RF_n_READ(31) },
|
|
{ NULL },
|
|
};
|
|
|
|
static const struct reg_info gpi_debug_qsb_regs[] = {
|
|
{ "QSB_LOG_SEL", GPI_DEBUG_QSB_LOG_SEL },
|
|
{ "QSB_LOG_CLR", GPI_DEBUG_QSB_LOG_CLR },
|
|
{ "QSB_LOG_ERR_TRNS_ID", GPI_DEBUG_QSB_LOG_ERR_TRNS_ID },
|
|
{ "QSB_LOG_0", GPI_DEBUG_QSB_LOG_0 },
|
|
{ "QSB_LOG_1", GPI_DEBUG_QSB_LOG_1 },
|
|
{ "QSB_LOG_2", GPI_DEBUG_QSB_LOG_2 },
|
|
{ "LAST_MISC_ID_0", GPI_DEBUG_QSB_LOG_LAST_MISC_ID(0) },
|
|
{ "LAST_MISC_ID_1", GPI_DEBUG_QSB_LOG_LAST_MISC_ID(1) },
|
|
{ "LAST_MISC_ID_2", GPI_DEBUG_QSB_LOG_LAST_MISC_ID(2) },
|
|
{ "LAST_MISC_ID_3", GPI_DEBUG_QSB_LOG_LAST_MISC_ID(3) },
|
|
{ NULL },
|
|
};
|
|
|
|
struct gpi_reg_table {
|
|
u64 timestamp;
|
|
struct reg_info *ev_cntxt_info;
|
|
struct reg_info *chan[MAX_CHANNELS_PER_GPII];
|
|
struct reg_info *gpi_debug_regs;
|
|
struct reg_info *gpii_cntxt;
|
|
struct reg_info *gpi_debug_qsb_regs;
|
|
u32 ev_scratch_0;
|
|
u32 ch_scratch_0[MAX_CHANNELS_PER_GPII];
|
|
void *ev_ring;
|
|
u32 ev_ring_len;
|
|
void *ch_ring[MAX_CHANNELS_PER_GPII];
|
|
u32 ch_ring_len[MAX_CHANNELS_PER_GPII];
|
|
u32 error_log;
|
|
};
|
|
|
|
struct gpii_chan {
|
|
struct virt_dma_chan vc;
|
|
u32 chid;
|
|
u32 seid;
|
|
u8 init_config:1;
|
|
enum se_protocol protocol;
|
|
enum EV_PRIORITY priority; /* comes from clients DT node */
|
|
struct gpii *gpii;
|
|
enum gpi_ch_state ch_state;
|
|
enum gpi_pm_state pm_state;
|
|
void __iomem *ch_cntxt_base_reg;
|
|
void __iomem *ch_cntxt_db_reg;
|
|
void __iomem *ch_ring_base_lsb_reg,
|
|
*ch_ring_rp_lsb_reg,
|
|
*ch_ring_wp_lsb_reg;
|
|
void __iomem *ch_cmd_reg;
|
|
u32 req_tres; /* # of tre's client requested */
|
|
u32 dir;
|
|
struct gpi_ring *ch_ring;
|
|
dma_addr_t gpii_chan_dma;
|
|
struct gpi_client_info client_info;
|
|
u32 lock_tre_set;
|
|
u32 num_tre;
|
|
};
|
|
|
|
struct gpii {
|
|
u32 gpii_id;
|
|
struct gpii_chan gpii_chan[MAX_CHANNELS_PER_GPII];
|
|
struct gpi_dev *gpi_dev;
|
|
enum EV_PRIORITY ev_priority;
|
|
enum se_protocol protocol;
|
|
int irq;
|
|
void __iomem *regs; /* points to gpi top */
|
|
void __iomem *ev_cntxt_base_reg;
|
|
void __iomem *ev_cntxt_db_reg;
|
|
void __iomem *ev_ring_base_lsb_reg,
|
|
*ev_ring_rp_lsb_reg,
|
|
*ev_ring_wp_lsb_reg;
|
|
void __iomem *ev_cmd_reg;
|
|
void __iomem *ieob_src_reg;
|
|
void __iomem *ieob_clr_reg;
|
|
struct mutex ctrl_lock;
|
|
enum gpi_ev_state ev_state;
|
|
bool configured_irq;
|
|
enum gpi_pm_state pm_state;
|
|
rwlock_t pm_lock;
|
|
struct gpi_ring *ev_ring;
|
|
dma_addr_t event_dma_addr;
|
|
struct tasklet_struct ev_task; /* event processing tasklet */
|
|
struct completion cmd_completion;
|
|
enum gpi_cmd gpi_cmd;
|
|
u32 cntxt_type_irq_msk;
|
|
void *ilctxt;
|
|
u32 ipc_log_lvl;
|
|
u32 klog_lvl;
|
|
struct gpi_dbg_log dbg_log[GPI_DBG_LOG_SIZE];
|
|
atomic_t dbg_index;
|
|
char label[GPI_LABEL_SIZE];
|
|
struct dentry *dentry;
|
|
struct gpi_reg_table dbg_reg_table;
|
|
bool reg_table_dump;
|
|
u32 dbg_gpi_irq_cnt;
|
|
bool unlock_tre_set;
|
|
bool dual_ee_sync_flag;
|
|
bool is_resumed;
|
|
bool is_multi_desc;
|
|
int num_msgs;
|
|
};
|
|
|
|
struct gpi_desc {
|
|
struct virt_dma_desc vd;
|
|
void *wp; /* points to TRE last queued during issue_pending */
|
|
void *db; /* DB register to program */
|
|
struct gpii_chan *gpii_chan;
|
|
};
|
|
|
|
#define GPI_SMMU_ATTACH BIT(0)
|
|
#define GPI_SMMU_S1_BYPASS BIT(1)
|
|
#define GPI_SMMU_FAST BIT(2)
|
|
#define GPI_SMMU_ATOMIC BIT(3)
|
|
|
|
const u32 GPII_CHAN_DIR[MAX_CHANNELS_PER_GPII] = {
|
|
GPI_CHTYPE_DIR_OUT, GPI_CHTYPE_DIR_IN
|
|
};
|
|
|
|
struct dentry *pdentry;
|
|
static irqreturn_t gpi_handle_irq(int irq, void *data);
|
|
static void gpi_ring_recycle_ev_element(struct gpi_ring *ring);
|
|
static int gpi_ring_add_element(struct gpi_ring *ring, void **wp);
|
|
static void gpi_process_events(struct gpii *gpii);
|
|
static int gpi_start_chan(struct gpii_chan *gpii_chan);
|
|
static void gpi_free_chan_desc(struct gpii_chan *gpii_chan);
|
|
static void gpi_noop_tre(struct gpii_chan *gpii_chan);
|
|
|
|
static inline struct gpii_chan *to_gpii_chan(struct dma_chan *dma_chan)
|
|
{
|
|
return container_of(dma_chan, struct gpii_chan, vc.chan);
|
|
}
|
|
|
|
static inline struct gpi_desc *to_gpi_desc(struct virt_dma_desc *vd)
|
|
{
|
|
return container_of(vd, struct gpi_desc, vd);
|
|
}
|
|
|
|
static inline phys_addr_t to_physical(const struct gpi_ring *const ring,
|
|
void *addr)
|
|
{
|
|
return ring->phys_addr + (addr - ring->base);
|
|
}
|
|
|
|
static inline void *to_virtual(const struct gpi_ring *const ring,
|
|
phys_addr_t addr)
|
|
{
|
|
return ring->base + (addr - ring->phys_addr);
|
|
}
|
|
|
|
#if IS_ENABLED(CONFIG_MSM_GPI_DMA_DEBUG)
|
|
static inline u32 gpi_read_reg(struct gpii *gpii, void __iomem *addr)
|
|
{
|
|
u64 time = sched_clock();
|
|
unsigned int index = atomic_inc_return(&gpii->dbg_index) - 1;
|
|
u32 val;
|
|
|
|
val = readl_relaxed(addr);
|
|
index &= (GPI_DBG_LOG_SIZE - 1);
|
|
(gpii->dbg_log + index)->addr = addr;
|
|
(gpii->dbg_log + index)->time = time;
|
|
(gpii->dbg_log + index)->val = val;
|
|
(gpii->dbg_log + index)->read = true;
|
|
GPII_REG(gpii, GPI_DBG_COMMON, "offset:0x%lx val:0x%x\n",
|
|
addr - gpii->regs, val);
|
|
return val;
|
|
}
|
|
static inline void gpi_write_reg(struct gpii *gpii, void __iomem *addr, u32 val)
|
|
{
|
|
u64 time = sched_clock();
|
|
unsigned int index = atomic_inc_return(&gpii->dbg_index) - 1;
|
|
|
|
index &= (GPI_DBG_LOG_SIZE - 1);
|
|
(gpii->dbg_log + index)->addr = addr;
|
|
(gpii->dbg_log + index)->time = time;
|
|
(gpii->dbg_log + index)->val = val;
|
|
(gpii->dbg_log + index)->read = false;
|
|
|
|
GPII_REG(gpii, GPI_DBG_COMMON, "offset:0x%lx val:0x%x\n",
|
|
addr - gpii->regs, val);
|
|
writel_relaxed(val, addr);
|
|
}
|
|
#else
|
|
static inline u32 gpi_read_reg(struct gpii *gpii, void __iomem *addr)
|
|
{
|
|
u32 val = readl_relaxed(addr);
|
|
|
|
GPII_REG(gpii, GPI_DBG_COMMON, "offset:0x%lx val:0x%x\n",
|
|
addr - gpii->regs, val);
|
|
return val;
|
|
}
|
|
static inline void gpi_write_reg(struct gpii *gpii, void __iomem *addr, u32 val)
|
|
{
|
|
GPII_REG(gpii, GPI_DBG_COMMON, "offset:0x%lx val:0x%x\n",
|
|
addr - gpii->regs, val);
|
|
writel_relaxed(val, addr);
|
|
}
|
|
#endif
|
|
|
|
/* gpi_write_reg_field - write to specific bit field */
|
|
static inline void
|
|
gpi_write_reg_field(struct gpii *gpii, void __iomem *addr, u32 mask, u32 shift, u32 val)
|
|
{
|
|
u32 tmp = gpi_read_reg(gpii, addr);
|
|
|
|
tmp &= ~mask;
|
|
val = tmp | ((val << shift) & mask);
|
|
gpi_write_reg(gpii, addr, val);
|
|
}
|
|
|
|
static void gpi_dump_cntxt_regs(struct gpii *gpii)
|
|
{
|
|
int chan;
|
|
u32 reg_val;
|
|
u32 offset;
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_n_CH_k_CNTXT_0_OFFS(gpii->gpii_id, gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_CH_%d_CNTXT_0 reg_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_n_CH_k_CNTXT_2_OFFS(gpii->gpii_id, gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_CH_%d_CNTXT_2 reg_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_n_CH_k_CNTXT_4_OFFS(gpii->gpii_id, gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_CH_%d_CNTXT_4 reg_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_n_CH_k_CNTXT_6_OFFS(gpii->gpii_id, gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_CH_%d_CNTXT_6 reg_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_n_EV_CH_k_CNTXT_0_OFFS(gpii->gpii_id, gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_EV_%d_CNTXT_0 reg_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_n_EV_CH_k_CNTXT_2_OFFS(gpii->gpii_id, gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_EV_%d_CNTXT_2 reg_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_n_EV_CH_k_CNTXT_4_OFFS(gpii->gpii_id, gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_EV_%d_CNTXT_4 reg_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_n_EV_CH_k_CNTXT_6_OFFS(gpii->gpii_id, gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_EV_%d_CNTXT_6 reg_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_n_CH_k_RE_FETCH_READ_PTR(gpii->gpii_id,
|
|
gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_CH_%d_RE_FETCH_READ_PTRg_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
offset = GPI_GPII_MAP_EE_n_CH_k_VP_TABLE(gpii->gpii_id,
|
|
gpii->gpii_chan[chan].chid);
|
|
reg_val = readl_relaxed(gpii->regs + offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_GPII_%d_CH_%d_VP_TABLE_val:0x%x\n",
|
|
gpii->gpii_id, chan, reg_val);
|
|
}
|
|
}
|
|
|
|
static void gpi_dump_debug_reg(struct gpii *gpii)
|
|
{
|
|
struct gpi_reg_table *dbg_reg_table = &gpii->dbg_reg_table;
|
|
struct reg_info *reg_info;
|
|
int chan;
|
|
const gfp_t gfp = GFP_ATOMIC;
|
|
const struct reg_info gpii_cntxt[] = {
|
|
{ "TYPE_IRQ", GPI_GPII_n_CNTXT_TYPE_IRQ_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "TYPE_IRQ_MSK", GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "CH_IRQ", GPI_GPII_n_CNTXT_SRC_GPII_CH_IRQ_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "EV_IRQ", GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "CH_IRQ_MSK", GPI_GPII_n_CNTXT_SRC_CH_IRQ_MSK_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "EV_IRQ_MSK", GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_MSK_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "IEOB_IRQ", GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "IEOB_IRQ_MSK", GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_MSK_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "GLOB_IRQ", GPI_GPII_n_CNTXT_GLOB_IRQ_STTS_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "GLOB_IRQ_EN", GPI_GPII_n_CNTXT_GLOB_IRQ_EN_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "GPII_IRQ_STTS", GPI_GPII_n_CNTXT_GPII_IRQ_STTS_OFFS
|
|
(gpii->gpii_id) },
|
|
{ "GPII_IRQ_EN", GPI_GPII_n_CNTXT_GPII_IRQ_EN_OFFS
|
|
(gpii->gpii_id) },
|
|
{ NULL },
|
|
};
|
|
|
|
gpi_dump_cntxt_regs(gpii);
|
|
dbg_reg_table->timestamp = sched_clock();
|
|
|
|
if (!dbg_reg_table->gpii_cntxt) {
|
|
dbg_reg_table->gpii_cntxt = kzalloc(sizeof(gpii_cntxt), gfp);
|
|
if (!dbg_reg_table->gpii_cntxt)
|
|
return;
|
|
memcpy((void *)dbg_reg_table->gpii_cntxt, (void *)gpii_cntxt,
|
|
sizeof(gpii_cntxt));
|
|
}
|
|
|
|
/* log gpii cntxt */
|
|
reg_info = dbg_reg_table->gpii_cntxt;
|
|
for (; reg_info->name; reg_info++) {
|
|
reg_info->val = readl_relaxed(gpii->regs + reg_info->offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_cntxt Reg:%s addr:0x%x->val:0x%x\n",
|
|
reg_info->name, reg_info->offset, reg_info->val);
|
|
}
|
|
|
|
if (!dbg_reg_table->ev_cntxt_info) {
|
|
dbg_reg_table->ev_cntxt_info =
|
|
kzalloc(sizeof(gpi_debug_ev_cntxt), gfp);
|
|
if (!dbg_reg_table->ev_cntxt_info)
|
|
return;
|
|
memcpy((void *)dbg_reg_table->ev_cntxt_info,
|
|
(void *)gpi_debug_ev_cntxt, sizeof(gpi_debug_ev_cntxt));
|
|
}
|
|
|
|
/* log ev cntxt */
|
|
reg_info = dbg_reg_table->ev_cntxt_info;
|
|
for (; reg_info->name; reg_info++) {
|
|
reg_info->val = readl_relaxed(gpii->ev_cntxt_base_reg +
|
|
reg_info->offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_ev_cntxt Reg:%s addr:0x%x->val:0x%x\n",
|
|
reg_info->name, reg_info->offset, reg_info->val);
|
|
}
|
|
|
|
/* dump channel cntxt registers */
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
if (!dbg_reg_table->chan[chan]) {
|
|
dbg_reg_table->chan[chan] =
|
|
kzalloc(sizeof(gpi_debug_ch_cntxt), gfp);
|
|
if (!dbg_reg_table->chan[chan])
|
|
return;
|
|
memcpy((void *)dbg_reg_table->chan[chan],
|
|
(void *)gpi_debug_ch_cntxt,
|
|
sizeof(gpi_debug_ch_cntxt));
|
|
}
|
|
reg_info = dbg_reg_table->chan[chan];
|
|
for (; reg_info->name; reg_info++) {
|
|
reg_info->val =
|
|
readl_relaxed(
|
|
gpii->gpii_chan[chan].ch_cntxt_base_reg +
|
|
reg_info->offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON,
|
|
"GPI_ch%d Reg:%s addr:0x%x->val:0x%x\n",
|
|
chan, reg_info->name, reg_info->offset, reg_info->val);
|
|
}
|
|
}
|
|
|
|
/* Skip dumping gpi debug and qsb registers for levm */
|
|
if (!gpii->gpi_dev->is_le_vm) {
|
|
if (!dbg_reg_table->gpi_debug_regs) {
|
|
dbg_reg_table->gpi_debug_regs =
|
|
kzalloc(sizeof(gpi_debug_regs), gfp);
|
|
if (!dbg_reg_table->gpi_debug_regs)
|
|
return;
|
|
memcpy((void *)dbg_reg_table->gpi_debug_regs,
|
|
(void *)gpi_debug_regs, sizeof(gpi_debug_regs));
|
|
}
|
|
|
|
/* log debug register */
|
|
reg_info = dbg_reg_table->gpi_debug_regs;
|
|
for (; reg_info->name; reg_info++) {
|
|
reg_info->val = readl_relaxed(gpii->gpi_dev->regs + reg_info->offset);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_dbg Reg:%s addr:0x%x->val:0x%x\n",
|
|
reg_info->name, reg_info->offset, reg_info->val);
|
|
}
|
|
|
|
if (!dbg_reg_table->gpi_debug_qsb_regs) {
|
|
dbg_reg_table->gpi_debug_qsb_regs =
|
|
kzalloc(sizeof(gpi_debug_qsb_regs), gfp);
|
|
if (!dbg_reg_table->gpi_debug_qsb_regs)
|
|
return;
|
|
memcpy((void *)dbg_reg_table->gpi_debug_qsb_regs,
|
|
(void *)gpi_debug_qsb_regs,
|
|
sizeof(gpi_debug_qsb_regs));
|
|
}
|
|
|
|
/* log QSB register */
|
|
reg_info = dbg_reg_table->gpi_debug_qsb_regs;
|
|
for (; reg_info->name; reg_info++)
|
|
reg_info->val = readl_relaxed(gpii->gpi_dev->regs + reg_info->offset);
|
|
}
|
|
|
|
/* dump scratch registers */
|
|
dbg_reg_table->ev_scratch_0 = readl_relaxed(gpii->regs +
|
|
GPI_GPII_n_CNTXT_SCRATCH_0_OFFS(gpii->gpii_id));
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_ev_scratch Reg addr:0x%x->val:0x%x\n",
|
|
GPI_GPII_n_CNTXT_SCRATCH_0_OFFS(gpii->gpii_id),
|
|
dbg_reg_table->ev_scratch_0);
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
dbg_reg_table->ch_scratch_0[chan] = readl_relaxed(gpii->regs +
|
|
GPI_GPII_n_CH_k_SCRATCH_0_OFFS(gpii->gpii_id,
|
|
gpii->gpii_chan[chan].chid));
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI_ch_scratch Reg addr:0x%x->val:0x%x\n",
|
|
GPI_GPII_n_CH_k_SCRATCH_0_OFFS(gpii->gpii_id, gpii->gpii_chan[chan].chid),
|
|
dbg_reg_table->ch_scratch_0[chan]);
|
|
}
|
|
|
|
/* Copy the ev ring */
|
|
if (!dbg_reg_table->ev_ring) {
|
|
dbg_reg_table->ev_ring_len = gpii->ev_ring->len;
|
|
dbg_reg_table->ev_ring =
|
|
kzalloc(dbg_reg_table->ev_ring_len, gfp);
|
|
if (!dbg_reg_table->ev_ring)
|
|
return;
|
|
}
|
|
memcpy(dbg_reg_table->ev_ring, gpii->ev_ring->base,
|
|
dbg_reg_table->ev_ring_len);
|
|
|
|
/* Copy Transfer rings */
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
struct gpii_chan *gpii_chan = &gpii->gpii_chan[chan];
|
|
|
|
if (!dbg_reg_table->ch_ring[chan]) {
|
|
dbg_reg_table->ch_ring_len[chan] =
|
|
gpii_chan->ch_ring->len;
|
|
dbg_reg_table->ch_ring[chan] =
|
|
kzalloc(dbg_reg_table->ch_ring_len[chan], gfp);
|
|
if (!dbg_reg_table->ch_ring[chan])
|
|
return;
|
|
}
|
|
|
|
memcpy(dbg_reg_table->ch_ring[chan], gpii_chan->ch_ring->base,
|
|
dbg_reg_table->ch_ring_len[chan]);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI Error log chan:%d base:%p\n",
|
|
chan, gpii_chan->ch_ring->base);
|
|
}
|
|
|
|
dbg_reg_table->error_log = readl_relaxed(gpii->regs +
|
|
GPI_GPII_n_ERROR_LOG_OFFS(gpii->gpii_id));
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "GPI Error log Reg addr:0x%x->val:0x%x\n",
|
|
GPI_GPII_n_ERROR_LOG_OFFS(gpii->gpii_id), dbg_reg_table->error_log);
|
|
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "Global IRQ handling Exit\n");
|
|
}
|
|
|
|
void gpi_dump_for_geni(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
|
|
gpi_dump_debug_reg(gpii);
|
|
}
|
|
EXPORT_SYMBOL_GPL(gpi_dump_for_geni);
|
|
|
|
/**
|
|
* gpi_update_multi_desc_flag() - update multi descriptor flag and num of msgs for
|
|
* multi descriptor mode handling.
|
|
* @chan: Base address of dma channel
|
|
* @is_multi_descriptor: Is multi descriptor flag
|
|
* @num_msgs: Number of client messages
|
|
*
|
|
* Return:None
|
|
*/
|
|
void gpi_update_multi_desc_flag(struct dma_chan *chan, bool is_multi_descriptor, int num_msgs)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
|
|
gpii->is_multi_desc = is_multi_descriptor;
|
|
gpii->num_msgs = num_msgs;
|
|
}
|
|
EXPORT_SYMBOL_GPL(gpi_update_multi_desc_flag);
|
|
|
|
static void gpi_disable_interrupts(struct gpii *gpii)
|
|
{
|
|
struct {
|
|
u32 offset;
|
|
u32 mask;
|
|
u32 shift;
|
|
u32 val;
|
|
} default_reg[] = {
|
|
{
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_BMSK,
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_SHFT,
|
|
0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_MSK_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_MSK_BMSK,
|
|
GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_MSK_SHFT,
|
|
0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_SRC_CH_IRQ_MSK_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_SRC_CH_IRQ_MSK_BMSK,
|
|
GPI_GPII_n_CNTXT_SRC_CH_IRQ_MSK_SHFT,
|
|
0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_MSK_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_MSK_BMSK,
|
|
GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_MSK_SHFT,
|
|
0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_GLOB_IRQ_EN_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_GLOB_IRQ_EN_BMSK,
|
|
GPI_GPII_n_CNTXT_GLOB_IRQ_EN_SHFT,
|
|
0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_GPII_IRQ_EN_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_GPII_IRQ_EN_BMSK,
|
|
GPI_GPII_n_CNTXT_GPII_IRQ_EN_SHFT,
|
|
0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_INTSET_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_INTSET_BMSK,
|
|
GPI_GPII_n_CNTXT_INTSET_SHFT,
|
|
0,
|
|
},
|
|
{ 0 },
|
|
};
|
|
int i;
|
|
|
|
for (i = 0; default_reg[i].offset; i++)
|
|
gpi_write_reg_field(gpii, gpii->regs +
|
|
default_reg[i].offset,
|
|
default_reg[i].mask,
|
|
default_reg[i].shift,
|
|
default_reg[i].val);
|
|
gpii->cntxt_type_irq_msk = 0;
|
|
free_irq(gpii->irq, gpii);
|
|
gpii->configured_irq = false;
|
|
}
|
|
|
|
/* configure and enable interrupts */
|
|
static int gpi_config_interrupts(struct gpii *gpii,
|
|
enum gpii_irq_settings settings,
|
|
bool mask)
|
|
{
|
|
int ret;
|
|
int i;
|
|
const u32 def_type = (GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_GENERAL |
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_IEOB |
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_GLOB |
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_EV_CTRL |
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_CH_CTRL);
|
|
struct {
|
|
u32 offset;
|
|
u32 mask;
|
|
u32 shift;
|
|
u32 val;
|
|
} default_reg[] = {
|
|
{
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_BMSK,
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_SHFT,
|
|
def_type,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_MSK_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_MSK_BMSK,
|
|
GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_MSK_SHFT,
|
|
GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_MSK_BMSK,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_SRC_CH_IRQ_MSK_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_SRC_CH_IRQ_MSK_BMSK,
|
|
GPI_GPII_n_CNTXT_SRC_CH_IRQ_MSK_SHFT,
|
|
GPI_GPII_n_CNTXT_SRC_CH_IRQ_MSK_BMSK,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_MSK_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_MSK_BMSK,
|
|
GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_MSK_SHFT,
|
|
GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_MSK_BMSK,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_GLOB_IRQ_EN_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_GLOB_IRQ_EN_BMSK,
|
|
GPI_GPII_n_CNTXT_GLOB_IRQ_EN_SHFT,
|
|
GPI_GPII_n_CNTXT_GLOB_IRQ_EN_ERROR_INT,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_GPII_IRQ_EN_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_GPII_IRQ_EN_BMSK,
|
|
GPI_GPII_n_CNTXT_GPII_IRQ_EN_SHFT,
|
|
GPI_GPII_n_CNTXT_GPII_IRQ_EN_BMSK,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_MSI_BASE_LSB_OFFS
|
|
(gpii->gpii_id),
|
|
U32_MAX,
|
|
0,
|
|
0x0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_MSI_BASE_MSB_OFFS
|
|
(gpii->gpii_id),
|
|
U32_MAX,
|
|
0,
|
|
0x0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_SCRATCH_0_OFFS
|
|
(gpii->gpii_id),
|
|
U32_MAX,
|
|
0,
|
|
0x0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_SCRATCH_1_OFFS
|
|
(gpii->gpii_id),
|
|
U32_MAX,
|
|
0,
|
|
0x0,
|
|
},
|
|
{
|
|
GPI_GPII_n_CNTXT_INTSET_OFFS
|
|
(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_INTSET_BMSK,
|
|
GPI_GPII_n_CNTXT_INTSET_SHFT,
|
|
0x01,
|
|
},
|
|
{
|
|
GPI_GPII_n_ERROR_LOG_OFFS
|
|
(gpii->gpii_id),
|
|
U32_MAX,
|
|
0,
|
|
0x00,
|
|
},
|
|
{ 0 },
|
|
};
|
|
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "configured:%c setting:%s mask:%c\n",
|
|
(gpii->configured_irq) ? 'F' : 'T',
|
|
(settings == DEFAULT_IRQ_SETTINGS) ? "default" : "user_spec",
|
|
(mask) ? 'T' : 'F');
|
|
|
|
if (!gpii->configured_irq) {
|
|
ret = request_irq(gpii->irq, gpi_handle_irq, IRQF_TRIGGER_HIGH,
|
|
gpii->label, gpii);
|
|
if (ret < 0) {
|
|
GPII_CRITIC(gpii, GPI_DBG_COMMON,
|
|
"error request irq:%d ret:%d\n",
|
|
gpii->irq, ret);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
if (settings == MASK_IEOB_SETTINGS) {
|
|
/*
|
|
* GPII only uses one EV ring per gpii so we can globally
|
|
* enable/disable IEOB interrupt
|
|
*/
|
|
if (mask)
|
|
gpii->cntxt_type_irq_msk |=
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_IEOB;
|
|
else
|
|
gpii->cntxt_type_irq_msk &=
|
|
~(GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_IEOB);
|
|
gpi_write_reg_field(gpii, gpii->regs +
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_OFFS(gpii->gpii_id),
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_BMSK,
|
|
GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_SHFT,
|
|
gpii->cntxt_type_irq_msk);
|
|
} else {
|
|
for (i = 0; default_reg[i].offset; i++)
|
|
gpi_write_reg_field(gpii, gpii->regs +
|
|
default_reg[i].offset,
|
|
default_reg[i].mask,
|
|
default_reg[i].shift,
|
|
default_reg[i].val);
|
|
gpii->cntxt_type_irq_msk = def_type;
|
|
}
|
|
|
|
gpii->configured_irq = true;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* gsi_se_common_iommu_unmap_buf() - Unmap a single buffer from QUPv3 context bank
|
|
* @wrapper_dev: Pointer to the corresponding QUPv3 wrapper core.
|
|
* @iova: Pointer in which the mapped virtual address is stored.
|
|
* @size: Size of the buffer.
|
|
* @dir: Direction of the DMA transfer.
|
|
*
|
|
* This function is used to unmap an already mapped buffer from the
|
|
* QUPv3 context bank device space.
|
|
*
|
|
* Return: None.
|
|
*/
|
|
static void gsi_se_common_iommu_unmap_buf(struct device *wrapper_dev, dma_addr_t *iova,
|
|
size_t size, enum dma_data_direction dir)
|
|
{
|
|
if (!dma_mapping_error(wrapper_dev, *iova))
|
|
dma_unmap_single(wrapper_dev, *iova, size, dir);
|
|
}
|
|
|
|
/**
|
|
* gsi_common_tre_process() - Process received TRE's from GSI HW
|
|
* @gsi: Base address of the gsi common structure.
|
|
* @num_xfers: number of messages count.
|
|
* @num_msg_per_irq: num of messages per irq.
|
|
* @wrapper_dev: Pointer to the corresponding QUPv3 wrapper core.
|
|
*
|
|
* This function is used to process received TRE's from GSI HW.
|
|
* And also used for error case, it will clear and unmap all pending transfers.
|
|
*
|
|
* Return: None.
|
|
*/
|
|
void gsi_common_tre_process(struct gsi_common *gsi, u32 num_xfers, u32 num_msg_per_irq,
|
|
struct device *wrapper_dev)
|
|
{
|
|
u32 msg_xfer_cnt;
|
|
int wr_idx = 0;
|
|
struct gsi_tre_queue *tx_tre_q = &gsi->tx.tre_queue;
|
|
|
|
/* Error case we need to unmap all messages.
|
|
* Regular working case unmapping only processed messages.
|
|
*/
|
|
if (*gsi->protocol_err)
|
|
msg_xfer_cnt = tx_tre_q->msg_cnt;
|
|
else
|
|
msg_xfer_cnt = atomic_read(&tx_tre_q->irq_cnt) * num_msg_per_irq;
|
|
|
|
for (; tx_tre_q->unmap_msg_cnt < msg_xfer_cnt; tx_tre_q->unmap_msg_cnt++) {
|
|
if (tx_tre_q->unmap_msg_cnt == num_xfers) {
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev,
|
|
"%s:last %d msg unmapped msg_cnt:%d\n",
|
|
__func__, num_xfers, msg_xfer_cnt);
|
|
break;
|
|
}
|
|
tx_tre_q->freed_msg_cnt++;
|
|
|
|
wr_idx = tx_tre_q->unmap_msg_cnt % GSI_MAX_NUM_TRE_MSGS;
|
|
if (tx_tre_q->len[wr_idx % GSI_MAX_NUM_TRE_MSGS] > GSI_MAX_IMMEDIATE_DMA_LEN) {
|
|
gsi_se_common_iommu_unmap_buf(wrapper_dev,
|
|
&tx_tre_q->dma_buf[wr_idx % GSI_MAX_NUM_TRE_MSGS],
|
|
tx_tre_q->len[wr_idx % GSI_MAX_NUM_TRE_MSGS],
|
|
DMA_TO_DEVICE);
|
|
}
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev,
|
|
"%s:unmap_msg_cnt %d freed_cnt:%d wr_idx:%d len:%d\n",
|
|
__func__, tx_tre_q->unmap_msg_cnt, tx_tre_q->freed_msg_cnt,
|
|
wr_idx, tx_tre_q->len[wr_idx % GSI_MAX_NUM_TRE_MSGS]);
|
|
}
|
|
}
|
|
EXPORT_SYMBOL_GPL(gsi_common_tre_process);
|
|
|
|
/**
|
|
* gsi_common_tx_tre_optimization() - Process received TRE's from GSI HW
|
|
* @gsi: Base address of the gsi common structure.
|
|
* @num_xfers: number of messages count.
|
|
* @num_msg_per_irq: num of messages per irq.
|
|
* @xfer_timeout: xfer timeout value.
|
|
* @wrapper_dev: Pointer to the corresponding QUPv3 wrapper core.
|
|
*
|
|
* This function is used to optimize dma tre's, it keeps always HW busy.
|
|
*
|
|
* Return: Returning timeout value
|
|
*/
|
|
int gsi_common_tx_tre_optimization(struct gsi_common *gsi, u32 num_xfers, u32 num_msg_per_irq,
|
|
u32 xfer_timeout, struct device *wrapper_dev)
|
|
{
|
|
int timeout = 1, i;
|
|
int max_irq_cnt;
|
|
|
|
max_irq_cnt = num_xfers / num_msg_per_irq;
|
|
if (num_xfers % num_msg_per_irq)
|
|
max_irq_cnt++;
|
|
|
|
for (i = 0; i < max_irq_cnt; i++) {
|
|
if (max_irq_cnt != atomic_read(&gsi->tx.tre_queue.irq_cnt)) {
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev,
|
|
"%s: calling wait for_completion ix:%d irq_cnt:%d\n",
|
|
__func__, i, atomic_read(&gsi->tx.tre_queue.irq_cnt));
|
|
timeout = wait_for_completion_timeout(gsi->xfer,
|
|
xfer_timeout);
|
|
reinit_completion(gsi->xfer);
|
|
if (!timeout) {
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev,
|
|
"%s: msg xfer timeout\n", __func__);
|
|
return timeout;
|
|
}
|
|
|
|
/* GSI HW creates an error during callback, so error check handling here */
|
|
if (*gsi->err) {
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev,
|
|
"%s: gsi error\n", __func__);
|
|
return -EIO;
|
|
}
|
|
}
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev,
|
|
"%s: maxirq_cnt:%d i:%d\n", __func__, max_irq_cnt, i);
|
|
gsi_common_tre_process(gsi, num_xfers, num_msg_per_irq, wrapper_dev);
|
|
if (num_xfers > gsi->tx.tre_queue.msg_cnt)
|
|
return timeout;
|
|
}
|
|
|
|
/* process received tre's */
|
|
if (timeout)
|
|
gsi_common_tre_process(gsi, num_xfers, num_msg_per_irq, wrapper_dev);
|
|
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev,
|
|
"%s: timeout :%d\n", __func__, timeout);
|
|
|
|
return timeout;
|
|
}
|
|
EXPORT_SYMBOL_GPL(gsi_common_tx_tre_optimization);
|
|
|
|
/**
|
|
* gsi_common_ev_cb() - gsi common event call back
|
|
* @ch: Base address of dma channel
|
|
* @cb_str: Base address of call back string
|
|
* @ptr: Base address of gsi common structure
|
|
*
|
|
* Return: None
|
|
*/
|
|
static void gsi_common_ev_cb(struct dma_chan *ch, struct msm_gpi_cb const *cb_str, void *ptr)
|
|
{
|
|
struct gsi_common *gsi = ptr;
|
|
|
|
if (!gsi) {
|
|
pr_err("%s: Invalid ev_cb buffer\n", __func__);
|
|
return;
|
|
}
|
|
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev, "%s: protocol:%d\n", __func__, gsi->protocol);
|
|
gsi->ev_cb_fun(ch, cb_str, ptr);
|
|
}
|
|
|
|
/**
|
|
* gsi_common_tx_cb() - gsi common tx callback
|
|
* @ptr: Base address of gsi common structure
|
|
*
|
|
* Return: None
|
|
*/
|
|
static void gsi_common_tx_cb(void *ptr)
|
|
{
|
|
struct msm_gpi_dma_async_tx_cb_param *tx_cb = ptr;
|
|
struct gsi_common *gsi;
|
|
|
|
if (!(tx_cb && tx_cb->userdata)) {
|
|
pr_err("%s: Invalid tx_cb buffer\n", __func__);
|
|
return;
|
|
}
|
|
|
|
gsi = (struct gsi_common *)tx_cb->userdata;
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev, "%s: protocol:%d\n", __func__, gsi->protocol);
|
|
gsi->tx.cb_fun(tx_cb);
|
|
}
|
|
|
|
/**
|
|
* gsi_common_rx_cb() - gsi common rx callback
|
|
* @ptr: Base address of gsi common structure
|
|
*
|
|
* Return: None
|
|
*/
|
|
static void gsi_common_rx_cb(void *ptr)
|
|
{
|
|
struct msm_gpi_dma_async_tx_cb_param *rx_cb = ptr;
|
|
struct gsi_common *gsi;
|
|
|
|
if (!(rx_cb && rx_cb->userdata)) {
|
|
pr_err("%s: Invalid rx_cb buffer\n", __func__);
|
|
return;
|
|
}
|
|
|
|
gsi = (struct gsi_common *)rx_cb->userdata;
|
|
gsi->rx.cb_fun(rx_cb);
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev, "%s: protocol:%d\n", __func__, gsi->protocol);
|
|
}
|
|
|
|
/**
|
|
* gsi_common_clear_tre_indexes() - gsi common queue clear tre indexes
|
|
* @gsi_q: Base address of gsi common queue
|
|
*
|
|
* Return: None
|
|
*/
|
|
void gsi_common_clear_tre_indexes(struct gsi_tre_queue *gsi_q)
|
|
{
|
|
gsi_q->msg_cnt = 0;
|
|
gsi_q->unmap_msg_cnt = 0;
|
|
gsi_q->freed_msg_cnt = 0;
|
|
atomic_set(&gsi_q->irq_cnt, 0);
|
|
}
|
|
EXPORT_SYMBOL_GPL(gsi_common_clear_tre_indexes);
|
|
|
|
/**
|
|
* gsi_common_fill_tre_buf() - gsi common fill tre buffers
|
|
* @gsi: Base address of gsi common
|
|
* @tx_chan: dma transfer channel type
|
|
*
|
|
* Return: Returns tre count
|
|
*/
|
|
int gsi_common_fill_tre_buf(struct gsi_common *gsi, bool tx_chan)
|
|
{
|
|
struct gsi_xfer_param *xfer;
|
|
int tre_cnt = 0, i;
|
|
int index = 0;
|
|
|
|
if (tx_chan)
|
|
xfer = &gsi->tx;
|
|
else
|
|
xfer = &gsi->rx;
|
|
|
|
for (i = 0; i < GSI_MAX_TRE_TYPES; i++) {
|
|
if (xfer->tre.flags & (1 << i))
|
|
tre_cnt++;
|
|
}
|
|
sg_init_table(xfer->sg, tre_cnt);
|
|
|
|
if (xfer->tre.flags & LOCK_TRE_SET)
|
|
sg_set_buf(&xfer->sg[index++], &xfer->tre.lock_t, sizeof(xfer->tre.lock_t));
|
|
if (xfer->tre.flags & CONFIG_TRE_SET)
|
|
sg_set_buf(&xfer->sg[index++], &xfer->tre.config_t, sizeof(xfer->tre.config_t));
|
|
if (xfer->tre.flags & GO_TRE_SET)
|
|
sg_set_buf(&xfer->sg[index++], &xfer->tre.go_t, sizeof(xfer->tre.go_t));
|
|
if (xfer->tre.flags & DMA_TRE_SET)
|
|
sg_set_buf(&xfer->sg[index++], &xfer->tre.dma_t, sizeof(xfer->tre.dma_t));
|
|
if (xfer->tre.flags & UNLOCK_TRE_SET)
|
|
sg_set_buf(&xfer->sg[index++], &xfer->tre.unlock_t, sizeof(xfer->tre.unlock_t));
|
|
GSI_SE_DBG(gsi->ipc, false, gsi->dev, "%s: tre_cnt:%d chan:%d flags:0x%x\n",
|
|
__func__, tre_cnt, tx_chan, xfer->tre.flags);
|
|
return tre_cnt;
|
|
}
|
|
EXPORT_SYMBOL_GPL(gsi_common_fill_tre_buf);
|
|
|
|
/**
|
|
* gsi_common_doorbell_hit() - gsi common doorbell hit
|
|
* @gsi: Base address of gsi common
|
|
* @tx_chan: dma transfer channel type
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
static int gsi_common_doorbell_hit(struct gsi_common *gsi, bool tx_chan)
|
|
{
|
|
dma_cookie_t cookie;
|
|
struct dma_async_tx_descriptor *dma_desc;
|
|
struct dma_chan *dma_ch;
|
|
|
|
if (tx_chan) {
|
|
dma_desc = gsi->tx.desc;
|
|
dma_ch = gsi->tx.ch;
|
|
} else {
|
|
dma_desc = gsi->rx.desc;
|
|
dma_ch = gsi->rx.ch;
|
|
}
|
|
|
|
reinit_completion(gsi->xfer);
|
|
|
|
cookie = dmaengine_submit(dma_desc);
|
|
if (dma_submit_error(cookie)) {
|
|
GSI_SE_ERR(gsi->ipc, true, gsi->dev,
|
|
"%s: dmaengine_submit failed (%d)\n", __func__, cookie);
|
|
return -EINVAL;
|
|
}
|
|
dma_async_issue_pending(dma_ch);
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* gsi_common_prep_desc_and_submit() - gsi common prepare descriptor and gsi submit
|
|
* @gsi: Base address of gsi common
|
|
* @segs: Num of segments
|
|
* @tx_chan: dma transfer channel type
|
|
* @skip_callbacks: flag used to register callbacks
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
int gsi_common_prep_desc_and_submit(struct gsi_common *gsi, int segs, bool tx_chan,
|
|
bool skip_callbacks)
|
|
{
|
|
struct gsi_xfer_param *xfer;
|
|
struct dma_async_tx_descriptor *geni_desc = NULL;
|
|
|
|
/* tx channel process */
|
|
if (tx_chan) {
|
|
xfer = &gsi->tx;
|
|
geni_desc = dmaengine_prep_slave_sg(gsi->tx.ch, gsi->tx.sg, segs, DMA_MEM_TO_DEV,
|
|
(DMA_PREP_INTERRUPT | DMA_CTRL_ACK));
|
|
if (!geni_desc) {
|
|
GSI_SE_ERR(gsi->ipc, true, gsi->dev, "prep_slave_sg for tx failed\n");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
if (skip_callbacks) {
|
|
geni_desc->callback = NULL;
|
|
geni_desc->callback_param = NULL;
|
|
} else {
|
|
geni_desc->callback = gsi_common_tx_cb;
|
|
geni_desc->callback_param = &gsi->tx.cb;
|
|
}
|
|
gsi->tx.desc = geni_desc;
|
|
return gsi_common_doorbell_hit(gsi, tx_chan);
|
|
}
|
|
|
|
/* Rx channel process */
|
|
geni_desc = dmaengine_prep_slave_sg(gsi->rx.ch, gsi->rx.sg, segs, DMA_DEV_TO_MEM,
|
|
(DMA_PREP_INTERRUPT | DMA_CTRL_ACK));
|
|
if (!geni_desc) {
|
|
GSI_SE_ERR(gsi->ipc, true, gsi->dev, "prep_slave_sg for rx failed\n");
|
|
return -ENOMEM;
|
|
}
|
|
geni_desc->callback = gsi_common_rx_cb;
|
|
geni_desc->callback_param = &gsi->rx.cb;
|
|
gsi->rx.desc = geni_desc;
|
|
return gsi_common_doorbell_hit(gsi, tx_chan);
|
|
}
|
|
EXPORT_SYMBOL_GPL(gsi_common_prep_desc_and_submit);
|
|
|
|
/**
|
|
* geni_gsi_common_request_channel() - gsi common dma request channel
|
|
* @gsi: Base address of gsi common
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
int geni_gsi_common_request_channel(struct gsi_common *gsi)
|
|
{
|
|
int ret = 0;
|
|
|
|
if (!gsi->tx.ch) {
|
|
gsi->tx.ch = dma_request_slave_channel(gsi->dev, "tx");
|
|
if (!gsi->tx.ch) {
|
|
GSI_SE_ERR(gsi->ipc, true, gsi->dev, "tx dma req slv chan ret:%d\n", -EIO);
|
|
return -EIO;
|
|
}
|
|
}
|
|
|
|
if (!gsi->rx.ch) {
|
|
gsi->rx.ch = dma_request_slave_channel(gsi->dev, "rx");
|
|
if (!gsi->rx.ch) {
|
|
GSI_SE_ERR(gsi->ipc, true, gsi->dev, "rx dma req slv chan ret:%d\n", -EIO);
|
|
dma_release_channel(gsi->tx.ch);
|
|
return -EIO;
|
|
}
|
|
}
|
|
|
|
gsi->tx.ev.init.callback = gsi_common_ev_cb;
|
|
gsi->tx.ev.init.cb_param = gsi;
|
|
gsi->tx.ev.cmd = MSM_GPI_INIT;
|
|
gsi->tx.ch->private = &gsi->tx.ev;
|
|
ret = dmaengine_slave_config(gsi->tx.ch, NULL);
|
|
if (ret) {
|
|
GSI_SE_ERR(gsi->ipc, true, gsi->dev, "tx dma slave config ret:%d\n", ret);
|
|
goto dmaengine_slave_config_fail;
|
|
}
|
|
|
|
gsi->rx.ev.init.cb_param = gsi;
|
|
gsi->rx.ev.init.callback = gsi_common_ev_cb;
|
|
gsi->rx.ev.cmd = MSM_GPI_INIT;
|
|
gsi->rx.ch->private = &gsi->rx.ev;
|
|
ret = dmaengine_slave_config(gsi->rx.ch, NULL);
|
|
if (ret) {
|
|
GSI_SE_ERR(gsi->ipc, true, gsi->dev, "rx dma slave config ret:%d\n", ret);
|
|
goto dmaengine_slave_config_fail;
|
|
}
|
|
|
|
gsi->tx.cb.userdata = gsi;
|
|
gsi->rx.cb.userdata = gsi;
|
|
gsi->req_chan = true;
|
|
return ret;
|
|
|
|
dmaengine_slave_config_fail:
|
|
dma_release_channel(gsi->tx.ch);
|
|
dma_release_channel(gsi->rx.ch);
|
|
gsi->tx.ch = NULL;
|
|
gsi->rx.ch = NULL;
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(geni_gsi_common_request_channel);
|
|
|
|
/* Sends gpii event or channel command */
|
|
static int gpi_send_cmd(struct gpii *gpii,
|
|
struct gpii_chan *gpii_chan,
|
|
enum gpi_cmd gpi_cmd)
|
|
{
|
|
u32 chid = MAX_CHANNELS_PER_GPII;
|
|
u32 cmd;
|
|
u32 offset, irq_stat;
|
|
unsigned long timeout;
|
|
void __iomem *cmd_reg;
|
|
|
|
if (gpi_cmd >= GPI_MAX_CMD)
|
|
return -EINVAL;
|
|
if (IS_CHAN_CMD(gpi_cmd))
|
|
chid = gpii_chan->chid;
|
|
|
|
GPII_INFO(gpii, chid,
|
|
"sending cmd: %s\n", TO_GPI_CMD_STR(gpi_cmd));
|
|
|
|
/* send opcode and wait for completion */
|
|
reinit_completion(&gpii->cmd_completion);
|
|
gpii->gpi_cmd = gpi_cmd;
|
|
|
|
cmd_reg = IS_CHAN_CMD(gpi_cmd) ? gpii_chan->ch_cmd_reg :
|
|
gpii->ev_cmd_reg;
|
|
cmd = IS_CHAN_CMD(gpi_cmd) ?
|
|
GPI_GPII_n_CH_CMD(gpi_cmd_info[gpi_cmd].opcode, chid) :
|
|
GPI_GPII_n_EV_CH_CMD(gpi_cmd_info[gpi_cmd].opcode, 0);
|
|
gpi_write_reg(gpii, cmd_reg, cmd);
|
|
timeout = wait_for_completion_timeout(&gpii->cmd_completion,
|
|
msecs_to_jiffies(gpi_cmd_info[gpi_cmd].timeout_ms));
|
|
|
|
if (!timeout) {
|
|
offset = GPI_GPII_n_CNTXT_TYPE_IRQ_OFFS(gpii->gpii_id);
|
|
irq_stat = gpi_read_reg(gpii, gpii->regs + offset);
|
|
GPII_ERR(gpii, chid,
|
|
"cmd: %s completion timeout irq_status=0x%x\n",
|
|
TO_GPI_CMD_STR(gpi_cmd), irq_stat);
|
|
return -EIO;
|
|
}
|
|
|
|
/* confirm new ch state is correct , if the cmd is a state change cmd */
|
|
if (gpi_cmd_info[gpi_cmd].state == STATE_IGNORE)
|
|
return 0;
|
|
if (IS_CHAN_CMD(gpi_cmd) &&
|
|
gpii_chan->ch_state == gpi_cmd_info[gpi_cmd].state)
|
|
return 0;
|
|
if (!IS_CHAN_CMD(gpi_cmd) &&
|
|
gpii->ev_state == gpi_cmd_info[gpi_cmd].state)
|
|
return 0;
|
|
|
|
return -EIO;
|
|
}
|
|
|
|
/*
|
|
* geni_gsi_ch_start() - gsi channel commands to start GSI RX and TX channles
|
|
*
|
|
* @chan: gsi channel handle
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
int geni_gsi_ch_start(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int i, ret = 0;
|
|
|
|
GPII_VERB(gpii, gpii_chan->chid, "Enter\n");
|
|
mutex_lock(&gpii->ctrl_lock);
|
|
for (i = 1; i >= 0; i--) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
GPII_INFO(gpii, gpii_chan->chid, "Start chan:%d\n", i);
|
|
/* send start command to start the channels */
|
|
ret = gpi_start_chan(gpii_chan);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error Starting Channel ret:%d\n", ret);
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return -ECONNRESET;
|
|
}
|
|
}
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(geni_gsi_ch_start);
|
|
|
|
/*
|
|
* gpi_terminate_channel() - Stop gpi rx and tx channels and
|
|
* if fails do reset of the channels
|
|
* @chan: gsi channel handle
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
int gpi_terminate_channel(struct gpii_chan *gpii_chan)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int ret = 0;
|
|
|
|
mutex_lock(&gpii->ctrl_lock);
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_STOP);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error Stopping Chan:%d,resetting\n", ret);
|
|
/* If STOP cmd fails, send command to Reset the channel */
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_RESET);
|
|
if (ret)
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"error resetting channel:%d\n", ret);
|
|
}
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* geni_gsi_connect_doorbell() - function to connect gsi doorbell
|
|
* @chan: gsi channel handle
|
|
*
|
|
* This function uses asynchronous channel command 48 to connect
|
|
* io_6 input from GSI interrupt input.
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
int geni_gsi_connect_doorbell(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int ret = 0;
|
|
|
|
GPII_VERB(gpii, gpii_chan->chid, "Enter\n");
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_ENABLE_HID);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid, "Error enable Chan:%d HID interrupt\n", ret);
|
|
gpi_dump_debug_reg(gpii);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(geni_gsi_connect_doorbell);
|
|
|
|
/*
|
|
* geni_gsi_disconnect_doorbell_stop_ch() - function to disconnect gsi doorbell and stop channel
|
|
* @chan: gsi channel handle
|
|
* @stop_ch: stop channel if set to true
|
|
*
|
|
* This function uses asynchronous channel command 49 to dis-connect
|
|
* io_6 input from GSI interrupt input.
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
int geni_gsi_disconnect_doorbell_stop_ch(struct dma_chan *chan, bool stop_ch)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int ret = 0;
|
|
bool error = false;
|
|
|
|
/*
|
|
*/
|
|
GPII_VERB(gpii, gpii_chan->chid, "Enter\n");
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_DISABLE_HID);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error disable Chan:%d HID interrupt\n", ret);
|
|
error = true;
|
|
gpi_dump_debug_reg(gpii);
|
|
}
|
|
|
|
/* Disconnect only doorbell & free Rx chan desc */
|
|
if (!stop_ch) {
|
|
GPII_VERB(gpii, gpii_chan->chid, "Free RX chan desc\n");
|
|
gpi_free_chan_desc(&gpii->gpii_chan[1]);
|
|
return ret;
|
|
}
|
|
|
|
/* Stop RX channel */
|
|
GPII_INFO(gpii, gpii_chan->chid, "Stop RX chan\n");
|
|
ret = gpi_terminate_channel(&gpii->gpii_chan[1]);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error Stopping RX Chan:%d\n", ret);
|
|
error = true;
|
|
gpi_dump_debug_reg(gpii);
|
|
}
|
|
|
|
GPII_VERB(gpii, gpii_chan->chid, "Free RX chan desc\n");
|
|
gpi_free_chan_desc(&gpii->gpii_chan[1]);
|
|
|
|
/* Stop TX channel */
|
|
GPII_INFO(gpii, gpii_chan->chid, "Stop TX chan\n");
|
|
ret = gpi_terminate_channel(&gpii->gpii_chan[0]);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error Stopping TX Chan:%d\n", ret);
|
|
error = true;
|
|
gpi_dump_debug_reg(gpii);
|
|
}
|
|
GPII_VERB(gpii, gpii_chan->chid, "End\n");
|
|
if (error)
|
|
return -EBUSY;
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(geni_gsi_disconnect_doorbell_stop_ch);
|
|
|
|
/* program transfer ring DB register */
|
|
static inline void gpi_write_ch_db(struct gpii_chan *gpii_chan,
|
|
struct gpi_ring *ring,
|
|
void *wp)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
phys_addr_t p_wp;
|
|
|
|
p_wp = to_physical(ring, wp);
|
|
gpi_write_reg(gpii, gpii_chan->ch_cntxt_db_reg, (u32)p_wp);
|
|
}
|
|
|
|
/* program event ring DB register */
|
|
static inline void gpi_write_ev_db(struct gpii *gpii,
|
|
struct gpi_ring *ring,
|
|
void *wp)
|
|
{
|
|
phys_addr_t p_wp;
|
|
|
|
p_wp = ring->phys_addr + (wp - ring->base);
|
|
gpi_write_reg(gpii, gpii->ev_cntxt_db_reg, (u32)p_wp);
|
|
}
|
|
|
|
/* notify client with generic event */
|
|
static void gpi_generate_cb_event(struct gpii_chan *gpii_chan,
|
|
enum msm_gpi_cb_event event,
|
|
u64 status)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
struct gpi_client_info *client_info = &gpii_chan->client_info;
|
|
struct msm_gpi_cb msm_gpi_cb = {0};
|
|
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"notifying event:%s with status:%llu\n",
|
|
TO_GPI_CB_EVENT_STR(event), status);
|
|
|
|
msm_gpi_cb.cb_event = event;
|
|
msm_gpi_cb.status = status;
|
|
msm_gpi_cb.timestamp = sched_clock();
|
|
client_info->callback(&gpii_chan->vc.chan, &msm_gpi_cb,
|
|
client_info->cb_param);
|
|
}
|
|
|
|
/* process transfer completion interrupt */
|
|
static void gpi_process_ieob(struct gpii *gpii)
|
|
{
|
|
|
|
gpi_write_reg(gpii, gpii->ieob_clr_reg, BIT(0));
|
|
|
|
/* process events based on priority */
|
|
if (likely(gpii->ev_priority >= EV_PRIORITY_TASKLET)) {
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "scheduling tasklet\n");
|
|
gpi_config_interrupts(gpii, MASK_IEOB_SETTINGS, 0);
|
|
tasklet_schedule(&gpii->ev_task);
|
|
} else {
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "processing events from isr\n");
|
|
gpi_process_events(gpii);
|
|
}
|
|
}
|
|
|
|
/* process channel control interrupt */
|
|
static void gpi_process_ch_ctrl_irq(struct gpii *gpii)
|
|
{
|
|
u32 gpii_id = gpii->gpii_id;
|
|
u32 offset = GPI_GPII_n_CNTXT_SRC_GPII_CH_IRQ_OFFS(gpii_id);
|
|
u32 ch_irq = gpi_read_reg(gpii, gpii->regs + offset);
|
|
u32 chid;
|
|
struct gpii_chan *gpii_chan;
|
|
u32 state;
|
|
|
|
/* clear the status */
|
|
offset = GPI_GPII_n_CNTXT_SRC_CH_IRQ_CLR_OFFS(gpii_id);
|
|
gpi_write_reg(gpii, gpii->regs + offset, (u32)ch_irq);
|
|
|
|
for (chid = 0; chid < MAX_CHANNELS_PER_GPII; chid++) {
|
|
if (!(BIT(chid) & ch_irq))
|
|
continue;
|
|
|
|
gpii_chan = &gpii->gpii_chan[chid];
|
|
GPII_VERB(gpii, chid, "processing channel ctrl irq\n");
|
|
state = gpi_read_reg(gpii, gpii_chan->ch_cntxt_base_reg +
|
|
CNTXT_0_CONFIG);
|
|
state = (state & GPI_GPII_n_CH_k_CNTXT_0_CHSTATE_BMSK) >>
|
|
GPI_GPII_n_CH_k_CNTXT_0_CHSTATE_SHFT;
|
|
|
|
/*
|
|
* CH_CMD_DEALLOC cmd always successful. However cmd does
|
|
* not change hardware status. So overwriting software state
|
|
* to default state.
|
|
*/
|
|
if (gpii->gpi_cmd == GPI_CH_CMD_DE_ALLOC)
|
|
state = DEFAULT_CH_STATE;
|
|
else if (gpii->gpi_cmd == GPI_CH_CMD_ENABLE_HID)
|
|
state = CH_STATE_ENABLE_HID;
|
|
else if (gpii->gpi_cmd == GPI_CH_CMD_DISABLE_HID)
|
|
state = CH_STATE_DISABLE_HID;
|
|
gpii_chan->ch_state = state;
|
|
GPII_VERB(gpii, chid, "setting channel to state:%s\n",
|
|
TO_GPI_CH_STATE_STR(gpii_chan->ch_state));
|
|
|
|
complete_all(&gpii->cmd_completion);
|
|
|
|
/* notifying clients if in error state */
|
|
if (gpii_chan->ch_state == CH_STATE_ERROR)
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_CH_ERROR, ch_irq);
|
|
}
|
|
}
|
|
|
|
/* processing gpi general error interrupts */
|
|
static void gpi_process_gen_err_irq(struct gpii *gpii)
|
|
{
|
|
u32 gpii_id = gpii->gpii_id;
|
|
u32 offset = GPI_GPII_n_CNTXT_GPII_IRQ_STTS_OFFS(gpii_id);
|
|
u32 irq_stts = gpi_read_reg(gpii, gpii->regs + offset);
|
|
u32 chid;
|
|
struct gpii_chan *gpii_chan;
|
|
|
|
/* clear the status */
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "irq_stts:0x%x\n", irq_stts);
|
|
|
|
/* Notify the client about error */
|
|
for (chid = 0, gpii_chan = gpii->gpii_chan;
|
|
chid < MAX_CHANNELS_PER_GPII; chid++, gpii_chan++)
|
|
if (gpii_chan->client_info.callback)
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_FW_ERROR,
|
|
irq_stts);
|
|
|
|
/* Clear the register */
|
|
offset = GPI_GPII_n_CNTXT_GPII_IRQ_CLR_OFFS(gpii_id);
|
|
gpi_write_reg(gpii, gpii->regs + offset, irq_stts);
|
|
|
|
gpii->dbg_gpi_irq_cnt++;
|
|
|
|
if (!gpii->reg_table_dump) {
|
|
gpi_dump_debug_reg(gpii);
|
|
gpii->reg_table_dump = true;
|
|
}
|
|
}
|
|
|
|
/* processing gpi level error interrupts */
|
|
static void gpi_process_glob_err_irq(struct gpii *gpii)
|
|
{
|
|
u32 gpii_id = gpii->gpii_id;
|
|
u32 offset = GPI_GPII_n_CNTXT_GLOB_IRQ_STTS_OFFS(gpii_id);
|
|
u32 irq_stts = gpi_read_reg(gpii, gpii->regs + offset);
|
|
u32 error_log;
|
|
u32 chid;
|
|
struct gpii_chan *gpii_chan;
|
|
struct gpi_client_info *client_info;
|
|
struct msm_gpi_cb msm_gpi_cb;
|
|
struct gpi_error_log_entry *log_entry =
|
|
(struct gpi_error_log_entry *)&error_log;
|
|
|
|
offset = GPI_GPII_n_CNTXT_GLOB_IRQ_CLR_OFFS(gpii_id);
|
|
gpi_write_reg(gpii, gpii->regs + offset, irq_stts);
|
|
|
|
/* only error interrupt should be set */
|
|
if (irq_stts & ~GPI_GLOB_IRQ_ERROR_INT_MSK) {
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "invalid error status:0x%x\n",
|
|
irq_stts);
|
|
goto error_irq;
|
|
}
|
|
|
|
offset = GPI_GPII_n_ERROR_LOG_OFFS(gpii_id);
|
|
error_log = gpi_read_reg(gpii, gpii->regs + offset);
|
|
gpi_write_reg(gpii, gpii->regs + offset, 0);
|
|
|
|
/* get channel info */
|
|
chid = ((struct gpi_error_log_entry *)&error_log)->chid;
|
|
if (unlikely(chid >= MAX_CHANNELS_PER_GPII)) {
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "invalid chid reported:%u\n",
|
|
chid);
|
|
goto error_irq;
|
|
}
|
|
|
|
gpii_chan = &gpii->gpii_chan[chid];
|
|
client_info = &gpii_chan->client_info;
|
|
|
|
/* notify client with error log */
|
|
msm_gpi_cb.cb_event = MSM_GPI_QUP_ERROR;
|
|
msm_gpi_cb.error_log.routine = log_entry->routine;
|
|
msm_gpi_cb.error_log.type = log_entry->type;
|
|
msm_gpi_cb.error_log.error_code = log_entry->code;
|
|
GPII_INFO(gpii, gpii_chan->chid, "sending CB event:%s\n",
|
|
TO_GPI_CB_EVENT_STR(msm_gpi_cb.cb_event));
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"ee:%u chtype:%u routine:%u type:%u error_code:%u\n",
|
|
log_entry->ee, log_entry->chtype,
|
|
msm_gpi_cb.error_log.routine,
|
|
msm_gpi_cb.error_log.type,
|
|
msm_gpi_cb.error_log.error_code);
|
|
client_info->callback(&gpii_chan->vc.chan, &msm_gpi_cb,
|
|
client_info->cb_param);
|
|
|
|
return;
|
|
|
|
error_irq:
|
|
for (chid = 0, gpii_chan = gpii->gpii_chan;
|
|
chid < MAX_CHANNELS_PER_GPII; chid++, gpii_chan++)
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_FW_ERROR,
|
|
irq_stts);
|
|
}
|
|
|
|
/* gpii interrupt handler */
|
|
static irqreturn_t gpi_handle_irq(int irq, void *data)
|
|
{
|
|
struct gpii *gpii = data;
|
|
u32 type;
|
|
unsigned long flags;
|
|
u32 offset;
|
|
u32 gpii_id = gpii->gpii_id;
|
|
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "enter\n");
|
|
gpii->dual_ee_sync_flag = true;
|
|
|
|
read_lock_irqsave(&gpii->pm_lock, flags);
|
|
|
|
/*
|
|
* States are out of sync to receive interrupt
|
|
* while software state is in DISABLE state, bailing out.
|
|
*/
|
|
if (!REG_ACCESS_VALID(gpii->pm_state)) {
|
|
GPII_CRITIC(gpii, GPI_DBG_COMMON,
|
|
"receive interrupt while in %s state\n",
|
|
TO_GPI_PM_STR(gpii->pm_state));
|
|
goto exit_irq;
|
|
}
|
|
|
|
offset = GPI_GPII_n_CNTXT_TYPE_IRQ_OFFS(gpii->gpii_id);
|
|
type = gpi_read_reg(gpii, gpii->regs + offset);
|
|
|
|
do {
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "CNTXT_TYPE_IRQ:0x%08x\n",
|
|
type);
|
|
/* global gpii error */
|
|
if (type & GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_GLOB) {
|
|
GPII_ERR(gpii, GPI_DBG_COMMON,
|
|
"processing global error irq\n");
|
|
gpi_process_glob_err_irq(gpii);
|
|
type &= ~(GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_GLOB);
|
|
}
|
|
|
|
/* transfer complete interrupt */
|
|
if (type & GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_IEOB) {
|
|
GPII_VERB(gpii, GPI_DBG_COMMON,
|
|
"process IEOB interrupts\n");
|
|
gpi_process_ieob(gpii);
|
|
type &= ~GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_IEOB;
|
|
}
|
|
|
|
/* event control irq */
|
|
if (type & GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_EV_CTRL) {
|
|
u32 ev_state;
|
|
u32 ev_ch_irq;
|
|
|
|
GPII_INFO(gpii, GPI_DBG_COMMON,
|
|
"processing EV CTRL interrupt\n");
|
|
offset = GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_OFFS(gpii_id);
|
|
ev_ch_irq = gpi_read_reg(gpii, gpii->regs + offset);
|
|
|
|
offset = GPI_GPII_n_CNTXT_SRC_EV_CH_IRQ_CLR_OFFS
|
|
(gpii_id);
|
|
gpi_write_reg(gpii, gpii->regs + offset, ev_ch_irq);
|
|
ev_state = gpi_read_reg(gpii, gpii->ev_cntxt_base_reg +
|
|
CNTXT_0_CONFIG);
|
|
ev_state &= GPI_GPII_n_EV_CH_k_CNTXT_0_CHSTATE_BMSK;
|
|
ev_state >>= GPI_GPII_n_EV_CH_k_CNTXT_0_CHSTATE_SHFT;
|
|
|
|
/*
|
|
* CMD EV_CMD_DEALLOC is always successful. However
|
|
* cmd does not change hardware status. So overwriting
|
|
* software state to default state.
|
|
*/
|
|
if (gpii->gpi_cmd == GPI_EV_CMD_DEALLOC)
|
|
ev_state = DEFAULT_EV_CH_STATE;
|
|
|
|
gpii->ev_state = ev_state;
|
|
GPII_INFO(gpii, GPI_DBG_COMMON,
|
|
"setting EV state to %s\n",
|
|
TO_GPI_EV_STATE_STR(gpii->ev_state));
|
|
complete_all(&gpii->cmd_completion);
|
|
type &= ~(GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_EV_CTRL);
|
|
}
|
|
|
|
/* channel control irq */
|
|
if (type & GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_CH_CTRL) {
|
|
GPII_INFO(gpii, GPI_DBG_COMMON,
|
|
"process CH CTRL interrupts\n");
|
|
gpi_process_ch_ctrl_irq(gpii);
|
|
type &= ~(GPI_GPII_n_CNTXT_TYPE_IRQ_MSK_CH_CTRL);
|
|
}
|
|
|
|
if (type) {
|
|
GPII_CRITIC(gpii, GPI_DBG_COMMON,
|
|
"Unhandled interrupt status:0x%x\n", type);
|
|
gpi_process_gen_err_irq(gpii);
|
|
goto exit_irq;
|
|
}
|
|
offset = GPI_GPII_n_CNTXT_TYPE_IRQ_OFFS(gpii->gpii_id);
|
|
type = gpi_read_reg(gpii, gpii->regs + offset);
|
|
} while (type);
|
|
|
|
exit_irq:
|
|
read_unlock_irqrestore(&gpii->pm_lock, flags);
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "exit\n");
|
|
gpii->dual_ee_sync_flag = false;
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
/* process qup notification events */
|
|
static void gpi_process_qup_notif_event(struct gpii_chan *gpii_chan,
|
|
struct qup_notif_event *notif_event)
|
|
{
|
|
struct gpi_client_info *client_info = &gpii_chan->client_info;
|
|
struct msm_gpi_cb msm_gpi_cb;
|
|
|
|
GPII_VERB(gpii_chan->gpii, gpii_chan->chid,
|
|
"status:0x%x time:0x%x count:0x%x\n",
|
|
notif_event->status, notif_event->time, notif_event->count);
|
|
|
|
msm_gpi_cb.cb_event = MSM_GPI_QUP_NOTIFY;
|
|
msm_gpi_cb.status = notif_event->status;
|
|
msm_gpi_cb.timestamp = notif_event->time;
|
|
msm_gpi_cb.count = notif_event->count;
|
|
GPII_VERB(gpii_chan->gpii, gpii_chan->chid, "sending CB event:%s\n",
|
|
TO_GPI_CB_EVENT_STR(msm_gpi_cb.cb_event));
|
|
client_info->callback(&gpii_chan->vc.chan, &msm_gpi_cb,
|
|
client_info->cb_param);
|
|
}
|
|
|
|
/* free gpi_desc for the specified channel */
|
|
static void gpi_free_chan_desc(struct gpii_chan *gpii_chan)
|
|
{
|
|
struct virt_dma_desc *vd;
|
|
struct gpi_desc *gpi_desc;
|
|
unsigned long flags;
|
|
|
|
GPII_VERB(gpii_chan->gpii, gpii_chan->chid, "Enter\n");
|
|
spin_lock_irqsave(&gpii_chan->vc.lock, flags);
|
|
vd = vchan_next_desc(&gpii_chan->vc);
|
|
if (!vd) {
|
|
GPII_VERB(gpii_chan->gpii, gpii_chan->chid, "vd is NULL!!!\n");
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
return;
|
|
}
|
|
|
|
gpi_desc = to_gpi_desc(vd);
|
|
list_del(&vd->node);
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
kfree(gpi_desc);
|
|
gpi_desc = NULL;
|
|
}
|
|
|
|
/* process DMA Immediate completion data events */
|
|
static void gpi_process_imed_data_event(struct gpii_chan *gpii_chan,
|
|
struct immediate_data_event *imed_event)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
struct gpi_ring *ch_ring = gpii_chan->ch_ring;
|
|
struct virt_dma_desc *vd;
|
|
struct gpi_desc *gpi_desc;
|
|
void *tre = ch_ring->base +
|
|
(ch_ring->el_size * imed_event->tre_index);
|
|
struct msm_gpi_dma_async_tx_cb_param *tx_cb_param;
|
|
unsigned long flags;
|
|
u32 chid;
|
|
struct gpii_chan *gpii_tx_chan = &gpii->gpii_chan[GPI_TX_CHAN];
|
|
|
|
/*
|
|
* If channel not active don't process event but let
|
|
* client know pending event is available
|
|
*/
|
|
if (gpii_chan->pm_state != ACTIVE_STATE) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"skipping processing event because ch @ %s state\n",
|
|
TO_GPI_PM_STR(gpii_chan->pm_state));
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_PENDING_EVENT,
|
|
__LINE__);
|
|
return;
|
|
}
|
|
|
|
spin_lock_irqsave(&gpii_chan->vc.lock, flags);
|
|
vd = vchan_next_desc(&gpii_chan->vc);
|
|
if (!vd) {
|
|
struct gpi_ere *gpi_ere;
|
|
struct msm_gpi_tre *gpi_tre;
|
|
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
/*
|
|
* RP pointed by Event is to last TRE processed,
|
|
* we need to update ring rp to tre + 1
|
|
*/
|
|
tre += ch_ring->el_size;
|
|
if (tre >= (ch_ring->base + ch_ring->len))
|
|
tre = ch_ring->base;
|
|
ch_ring->rp = tre;
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"event without a pending descriptor!\n");
|
|
gpi_ere = (struct gpi_ere *)imed_event;
|
|
GPII_ERR(gpii, gpii_chan->chid, "Event: %08x %08x %08x %08x\n",
|
|
gpi_ere->dword[0], gpi_ere->dword[1],
|
|
gpi_ere->dword[2], gpi_ere->dword[3]);
|
|
gpi_tre = tre;
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Pending TRE: %08x %08x %08x %08x\n",
|
|
gpi_tre->dword[0], gpi_tre->dword[1],
|
|
gpi_tre->dword[2], gpi_tre->dword[3]);
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_EOT_DESC_MISMATCH,
|
|
__LINE__);
|
|
return;
|
|
}
|
|
gpi_desc = to_gpi_desc(vd);
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
|
|
if (gpii->is_multi_desc)
|
|
gpii->num_msgs--;
|
|
|
|
/*
|
|
* RP pointed by Event is to last TRE processed,
|
|
* we need to update ring rp to tre + 1
|
|
*/
|
|
tre += ch_ring->el_size;
|
|
if (tre >= (ch_ring->base + ch_ring->len))
|
|
tre = ch_ring->base;
|
|
ch_ring->rp = tre;
|
|
|
|
/* make sure rp updates are immediately visible to all cores */
|
|
smp_wmb();
|
|
|
|
/*
|
|
* If unlock tre is present, don't send transfer callback on
|
|
* IEOT, wait for unlock IEOB. Free the respective channel
|
|
* descriptors.
|
|
* If unlock is not present, IEOB indicates freeing the descriptor
|
|
* and IEOT indicates channel transfer completion.
|
|
*/
|
|
chid = imed_event->chid;
|
|
if (gpii->unlock_tre_set) {
|
|
if (!gpii->is_multi_desc) {
|
|
if (chid == GPI_RX_CHAN) {
|
|
if (imed_event->code == MSM_GPI_TCE_EOT)
|
|
goto gpi_free_desc;
|
|
else if (imed_event->code == MSM_GPI_TCE_UNEXP_ERR)
|
|
/*
|
|
* In case of an error in a read transfer on a
|
|
* shared se, unlock tre will not be processed
|
|
* as channels go to bad state so tx desc should
|
|
* be freed manually.
|
|
*/
|
|
gpi_free_chan_desc(gpii_tx_chan);
|
|
else
|
|
return;
|
|
} else if (imed_event->code == MSM_GPI_TCE_EOT) {
|
|
return;
|
|
}
|
|
} else {
|
|
/*
|
|
* Multi descriptor case waiting for unlock
|
|
* tre eob, so not freeeing last descriptor
|
|
*/
|
|
if (gpii->num_msgs == 0)
|
|
return;
|
|
}
|
|
|
|
} else if (imed_event->code == MSM_GPI_TCE_EOB) {
|
|
goto gpi_free_desc;
|
|
}
|
|
|
|
tx_cb_param = vd->tx.callback_param;
|
|
if (vd->tx.callback && tx_cb_param) {
|
|
struct msm_gpi_tre *imed_tre = &tx_cb_param->imed_tre;
|
|
|
|
GPII_VERB(gpii, gpii_chan->chid,
|
|
"cb_length:%u compl_code:0x%x status:0x%x\n",
|
|
imed_event->length, imed_event->code,
|
|
imed_event->status);
|
|
/* Update immediate data if any from event */
|
|
*imed_tre = *((struct msm_gpi_tre *)imed_event);
|
|
tx_cb_param->length = imed_event->length;
|
|
tx_cb_param->completion_code = imed_event->code;
|
|
tx_cb_param->status = imed_event->status;
|
|
vd->tx.callback(tx_cb_param);
|
|
}
|
|
|
|
gpi_free_desc:
|
|
gpi_free_chan_desc(gpii_chan);
|
|
}
|
|
|
|
/* processing transfer completion events */
|
|
static void gpi_process_xfer_compl_event(struct gpii_chan *gpii_chan,
|
|
struct xfer_compl_event *compl_event)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
struct gpi_ring *ch_ring = gpii_chan->ch_ring;
|
|
void *ev_rp = to_virtual(ch_ring, compl_event->ptr);
|
|
struct virt_dma_desc *vd;
|
|
struct msm_gpi_dma_async_tx_cb_param *tx_cb_param;
|
|
struct gpi_desc *gpi_desc;
|
|
unsigned long flags;
|
|
u32 chid;
|
|
struct gpii_chan *gpii_tx_chan = &gpii->gpii_chan[GPI_TX_CHAN];
|
|
|
|
/* only process events on active channel */
|
|
if (unlikely(gpii_chan->pm_state != ACTIVE_STATE)) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"skipping processing event because ch @ %s state\n",
|
|
TO_GPI_PM_STR(gpii_chan->pm_state));
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_PENDING_EVENT,
|
|
__LINE__);
|
|
return;
|
|
}
|
|
|
|
spin_lock_irqsave(&gpii_chan->vc.lock, flags);
|
|
vd = vchan_next_desc(&gpii_chan->vc);
|
|
if (!vd) {
|
|
struct gpi_ere *gpi_ere;
|
|
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
/*
|
|
* RP pointed by Event is to last TRE processed,
|
|
* we need to update ring rp to ev_rp + 1
|
|
*/
|
|
ev_rp += ch_ring->el_size;
|
|
if (ev_rp >= (ch_ring->base + ch_ring->len))
|
|
ev_rp = ch_ring->base;
|
|
ch_ring->rp = ev_rp;
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Event without a pending descriptor!\n");
|
|
gpi_ere = (struct gpi_ere *)compl_event;
|
|
GPII_ERR(gpii, gpii_chan->chid, "Event: %08x %08x %08x %08x\n",
|
|
gpi_ere->dword[0], gpi_ere->dword[1],
|
|
gpi_ere->dword[2], gpi_ere->dword[3]);
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_EOT_DESC_MISMATCH,
|
|
__LINE__);
|
|
return;
|
|
}
|
|
|
|
gpi_desc = to_gpi_desc(vd);
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
|
|
if (gpii->is_multi_desc)
|
|
gpii->num_msgs--;
|
|
|
|
/*
|
|
* RP pointed by Event is to last TRE processed,
|
|
* we need to update ring rp to ev_rp + 1
|
|
*/
|
|
ev_rp += ch_ring->el_size;
|
|
if (ev_rp >= (ch_ring->base + ch_ring->len))
|
|
ev_rp = ch_ring->base;
|
|
ch_ring->rp = ev_rp;
|
|
|
|
/* update must be visible to other cores */
|
|
smp_wmb();
|
|
|
|
/*
|
|
* If unlock tre is present, don't send transfer callback on
|
|
* IEOT, wait for unlock IEOB. Free the respective channel
|
|
* descriptors.
|
|
* If unlock is not present, IEOB indicates freeing the descriptor
|
|
* and IEOT indicates channel transfer completion.
|
|
*/
|
|
chid = compl_event->chid;
|
|
if (gpii->unlock_tre_set) {
|
|
if (!gpii->is_multi_desc) {
|
|
if (chid == GPI_RX_CHAN) {
|
|
if (compl_event->code == MSM_GPI_TCE_EOT)
|
|
goto gpi_free_desc;
|
|
else if (compl_event->code == MSM_GPI_TCE_UNEXP_ERR)
|
|
/*
|
|
* In case of an error in a read transfer on a
|
|
* shared se, unlock tre will not be processed
|
|
* as channels go to bad state so tx desc should
|
|
* be freed manually.
|
|
*/
|
|
gpi_free_chan_desc(gpii_tx_chan);
|
|
else
|
|
return;
|
|
} else if (compl_event->code == MSM_GPI_TCE_EOT) {
|
|
return;
|
|
}
|
|
} else {
|
|
/*
|
|
* Multi descriptor case waiting for unlock
|
|
* tre eob, so not freeeing last descriptor
|
|
*/
|
|
if (gpii->num_msgs == 0)
|
|
return;
|
|
}
|
|
|
|
} else if (compl_event->code == MSM_GPI_TCE_EOB) {
|
|
if (!(gpii_chan->num_tre == 1 && gpii_chan->lock_tre_set)
|
|
&& (gpii->protocol != SE_PROTOCOL_UART))
|
|
goto gpi_free_desc;
|
|
}
|
|
tx_cb_param = vd->tx.callback_param;
|
|
if (vd->tx.callback && tx_cb_param) {
|
|
GPII_VERB(gpii, gpii_chan->chid,
|
|
"cb_length:%u compl_code:0x%x status:0x%x\n",
|
|
compl_event->length, compl_event->code,
|
|
compl_event->status);
|
|
tx_cb_param->length = compl_event->length;
|
|
tx_cb_param->completion_code = compl_event->code;
|
|
tx_cb_param->status = compl_event->status;
|
|
tx_cb_param->tce_type = compl_event->type;
|
|
GPII_INFO(gpii, gpii_chan->chid, "tx_cb_param:%p\n", tx_cb_param);
|
|
vd->tx.callback(tx_cb_param);
|
|
}
|
|
gpi_free_desc:
|
|
gpi_free_chan_desc(gpii_chan);
|
|
}
|
|
|
|
/* process Q2SPI_STATUS TCE notification event */
|
|
static void
|
|
gpi_process_qup_q2spi_status(struct gpii_chan *gpii_chan,
|
|
struct qup_q2spi_status *q2spi_status_event)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
struct gpi_ring *ch_ring = gpii_chan->ch_ring;
|
|
void *ev_rp = to_virtual(ch_ring, q2spi_status_event->ptr_l);
|
|
struct virt_dma_desc *vd;
|
|
struct msm_gpi_dma_async_tx_cb_param *tx_cb_param;
|
|
struct gpi_desc *gpi_desc;
|
|
unsigned long flags;
|
|
|
|
/* only process events on active channel */
|
|
if (unlikely(gpii_chan->pm_state != ACTIVE_STATE)) {
|
|
GPII_ERR(gpii, gpii_chan->chid, "skipping processing event because ch @ %s state\n",
|
|
TO_GPI_PM_STR(gpii_chan->pm_state));
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_PENDING_EVENT, __LINE__);
|
|
return;
|
|
}
|
|
|
|
spin_lock_irqsave(&gpii_chan->vc.lock, flags);
|
|
vd = vchan_next_desc(&gpii_chan->vc);
|
|
if (!vd) {
|
|
struct gpi_ere *gpi_ere;
|
|
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Event without a pending descriptor!\n");
|
|
gpi_ere = (struct gpi_ere *)q2spi_status_event;
|
|
GPII_ERR(gpii, gpii_chan->chid, "Event: %08x %08x %08x %08x\n",
|
|
gpi_ere->dword[0], gpi_ere->dword[1],
|
|
gpi_ere->dword[2], gpi_ere->dword[3]);
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_EOT_DESC_MISMATCH, __LINE__);
|
|
return;
|
|
}
|
|
gpi_desc = to_gpi_desc(vd);
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
|
|
/*
|
|
* RP pointed by Event is to last TRE processed,
|
|
* we need to update ring rp to ev_rp + 1
|
|
*/
|
|
ev_rp += ch_ring->el_size;
|
|
if (ev_rp >= (ch_ring->base + ch_ring->len))
|
|
ev_rp = ch_ring->base;
|
|
ch_ring->rp = ev_rp;
|
|
/* update must be visible to other cores */
|
|
smp_wmb();
|
|
|
|
if (q2spi_status_event->code == MSM_GPI_TCE_EOB) {
|
|
if (gpii->protocol != SE_PROTOCOL_Q2SPI)
|
|
goto gpi_free_desc;
|
|
}
|
|
|
|
tx_cb_param = vd->tx.callback_param;
|
|
if (vd->tx.callback && tx_cb_param) {
|
|
GPII_VERB(gpii, gpii_chan->chid,
|
|
"cb_length:%u code:0x%x type:0x%x status:0x%x q2spi_status:0x%x\n",
|
|
q2spi_status_event->length, q2spi_status_event->code,
|
|
q2spi_status_event->type, q2spi_status_event->status,
|
|
q2spi_status_event->value);
|
|
tx_cb_param->length = q2spi_status_event->length;
|
|
tx_cb_param->completion_code = q2spi_status_event->code;
|
|
tx_cb_param->tce_type = q2spi_status_event->type;
|
|
tx_cb_param->status = q2spi_status_event->status;
|
|
tx_cb_param->q2spi_status = q2spi_status_event->value;
|
|
vd->tx.callback(tx_cb_param);
|
|
}
|
|
|
|
gpi_free_desc:
|
|
gpi_free_chan_desc(gpii_chan);
|
|
}
|
|
|
|
/* process Q2SPI CR Header TCE notification event */
|
|
static void
|
|
gpi_process_xfer_q2spi_cr_header(struct gpii_chan *gpii_chan,
|
|
struct qup_q2spi_cr_header_event *q2spi_cr_header_event)
|
|
{
|
|
struct gpi_client_info *client_info = &gpii_chan->client_info;
|
|
struct gpii *gpii_ptr = NULL;
|
|
struct msm_gpi_cb msm_gpi_cb;
|
|
|
|
gpii_ptr = gpii_chan->gpii;
|
|
GPII_VERB(gpii_ptr, gpii_chan->chid,
|
|
"code:0x%x type:0x%x hdr_0:0x%x hrd_1:0x%x hrd_2:0x%x hdr3:0x%x\n",
|
|
q2spi_cr_header_event->code, q2spi_cr_header_event->type,
|
|
q2spi_cr_header_event->cr_hdr[0], q2spi_cr_header_event->cr_hdr[1],
|
|
q2spi_cr_header_event->cr_hdr[2], q2spi_cr_header_event->cr_hdr[3]);
|
|
GPII_VERB(gpii_ptr, gpii_chan->chid,
|
|
"cr_ed_byte_0:0x%x cr_ed_byte_1:0x%x cr_ed_byte_2:0x%x cr_ed_byte_3:0x%x\n",
|
|
q2spi_cr_header_event->cr_ed_byte[0], q2spi_cr_header_event->cr_ed_byte[1],
|
|
q2spi_cr_header_event->cr_ed_byte[2], q2spi_cr_header_event->cr_ed_byte[3]);
|
|
GPII_VERB(gpii_ptr, gpii_chan->chid, "code:0x%x\n", q2spi_cr_header_event->code);
|
|
GPII_VERB(gpii_ptr, gpii_chan->chid,
|
|
"cr_byte_0_len:0x%x cr_byte_0_err:0x%x type:0x%x ch_id:0x%x\n",
|
|
q2spi_cr_header_event->byte0_len, q2spi_cr_header_event->byte0_err,
|
|
q2spi_cr_header_event->type, q2spi_cr_header_event->ch_id);
|
|
|
|
if (q2spi_cr_header_event->code == Q2SPI_CR_HEADER_LEN_ZERO)
|
|
GPII_ERR(gpii_ptr, gpii_chan->chid, "Err negative 1H doorbell response\n");
|
|
|
|
if (q2spi_cr_header_event->code == Q2SPI_CR_HEADER_INCORRECT)
|
|
GPII_ERR(gpii_ptr, gpii_chan->chid, "Err unexpected CR Header is received\n");
|
|
|
|
msm_gpi_cb.cb_event = MSM_GPI_QUP_CR_HEADER;
|
|
msm_gpi_cb.q2spi_cr_header_event = *q2spi_cr_header_event;
|
|
GPII_VERB(gpii_chan->gpii, gpii_chan->chid, "sending CB event:%s\n",
|
|
TO_GPI_CB_EVENT_STR(msm_gpi_cb.cb_event));
|
|
client_info->callback(&gpii_chan->vc.chan, &msm_gpi_cb,
|
|
client_info->cb_param);
|
|
}
|
|
|
|
/* process all events */
|
|
static void gpi_process_events(struct gpii *gpii)
|
|
{
|
|
struct gpi_ring *ev_ring = gpii->ev_ring;
|
|
phys_addr_t cntxt_rp, local_rp;
|
|
void *rp;
|
|
union gpi_event *gpi_event;
|
|
struct gpii_chan *gpii_chan;
|
|
u32 chid, type;
|
|
|
|
cntxt_rp = gpi_read_reg(gpii, gpii->ev_ring_rp_lsb_reg);
|
|
rp = to_virtual(ev_ring, cntxt_rp);
|
|
local_rp = to_physical(ev_ring, ev_ring->rp);
|
|
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "cntxt_rp:%pa local_rp:%pa rp:%pa ev_ring->rp:%pa\n",
|
|
&cntxt_rp, &local_rp, rp, ev_ring->rp);
|
|
|
|
do {
|
|
while (rp != ev_ring->rp) {
|
|
/* make sure event_ring rp updates before proceeding */
|
|
mb();
|
|
gpi_event = ev_ring->rp;
|
|
chid = gpi_event->xfer_compl_event.chid;
|
|
type = gpi_event->xfer_compl_event.type;
|
|
GPII_VERB(gpii, GPI_DBG_COMMON,
|
|
"chid:%u type:0x%x %08x %08x %08x %08x\n",
|
|
chid, type,
|
|
gpi_event->gpi_ere.dword[0],
|
|
gpi_event->gpi_ere.dword[1],
|
|
gpi_event->gpi_ere.dword[2],
|
|
gpi_event->gpi_ere.dword[3]);
|
|
if (chid >= MAX_CHANNELS_PER_GPII) {
|
|
GPII_ERR(gpii, GPI_DBG_COMMON,
|
|
"gpii channel:%d not valid\n", chid);
|
|
goto error_irq;
|
|
}
|
|
|
|
switch (type) {
|
|
case XFER_COMPLETE_EV_TYPE:
|
|
gpii_chan = &gpii->gpii_chan[chid];
|
|
gpi_process_xfer_compl_event(gpii_chan,
|
|
&gpi_event->xfer_compl_event);
|
|
break;
|
|
case STALE_EV_TYPE:
|
|
GPII_VERB(gpii, GPI_DBG_COMMON,
|
|
"stale event, not processing\n");
|
|
break;
|
|
case IMMEDIATE_DATA_EV_TYPE:
|
|
gpii_chan = &gpii->gpii_chan[chid];
|
|
gpi_process_imed_data_event(gpii_chan,
|
|
&gpi_event->immediate_data_event);
|
|
break;
|
|
case QUP_NOTIF_EV_TYPE:
|
|
gpii_chan = &gpii->gpii_chan[chid];
|
|
gpi_process_qup_notif_event(gpii_chan,
|
|
&gpi_event->qup_notif_event);
|
|
break;
|
|
case QUP_TCE_TYPE_Q2SPI_STATUS:
|
|
gpii_chan = &gpii->gpii_chan[chid];
|
|
gpi_process_qup_q2spi_status(gpii_chan, &gpi_event->q2spi_status);
|
|
break;
|
|
case QUP_TCE_TYPE_Q2SPI_CR_HEADER:
|
|
gpii_chan = &gpii->gpii_chan[chid];
|
|
gpi_process_xfer_q2spi_cr_header(gpii_chan,
|
|
&gpi_event->q2spi_cr_header_event);
|
|
break;
|
|
default:
|
|
GPII_VERB(gpii, GPI_DBG_COMMON,
|
|
"not supported event type:0x%x\n",
|
|
type);
|
|
}
|
|
gpi_ring_recycle_ev_element(ev_ring);
|
|
/* make sure event_ring rp updates before proceeding */
|
|
mb();
|
|
}
|
|
gpi_write_ev_db(gpii, ev_ring, ev_ring->wp);
|
|
|
|
/* clear pending IEOB events */
|
|
gpi_write_reg(gpii, gpii->ieob_clr_reg, BIT(0));
|
|
|
|
cntxt_rp = gpi_read_reg(gpii, gpii->ev_ring_rp_lsb_reg);
|
|
/* make sure event_ring rp updates before proceeding */
|
|
mb();
|
|
rp = to_virtual(ev_ring, cntxt_rp);
|
|
|
|
} while (rp != ev_ring->rp);
|
|
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "exit: c_rp:%pa\n", &cntxt_rp);
|
|
return;
|
|
error_irq:
|
|
/* clear pending IEOB events */
|
|
gpi_write_reg(gpii, gpii->ieob_clr_reg, BIT(0));
|
|
|
|
for (chid = 0, gpii_chan = gpii->gpii_chan;
|
|
chid < MAX_CHANNELS_PER_GPII; chid++, gpii_chan++)
|
|
gpi_generate_cb_event(gpii_chan, MSM_GPI_QUP_FW_ERROR,
|
|
(type << 8) | chid);
|
|
}
|
|
|
|
/* processing events using tasklet */
|
|
static void gpi_ev_tasklet(unsigned long data)
|
|
{
|
|
struct gpii *gpii = (struct gpii *)data;
|
|
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "enter\n");
|
|
|
|
read_lock_bh(&gpii->pm_lock);
|
|
if (!REG_ACCESS_VALID(gpii->pm_state)) {
|
|
read_unlock_bh(&gpii->pm_lock);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON,
|
|
"not processing any events, pm_state:%s\n",
|
|
TO_GPI_PM_STR(gpii->pm_state));
|
|
return;
|
|
}
|
|
|
|
/* process the events */
|
|
gpi_process_events(gpii);
|
|
|
|
/* enable IEOB, switching back to interrupts */
|
|
gpi_config_interrupts(gpii, MASK_IEOB_SETTINGS, 1);
|
|
read_unlock_bh(&gpii->pm_lock);
|
|
|
|
GPII_VERB(gpii, GPI_DBG_COMMON, "exit\n");
|
|
}
|
|
|
|
/* marks all pending events for the channel as stale */
|
|
void gpi_mark_stale_events(struct gpii_chan *gpii_chan)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
struct gpi_ring *ev_ring = gpii->ev_ring;
|
|
void *ev_rp;
|
|
u32 cntxt_rp, local_rp;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "Enter\n");
|
|
cntxt_rp = gpi_read_reg(gpii, gpii->ev_ring_rp_lsb_reg);
|
|
|
|
ev_rp = ev_ring->rp;
|
|
local_rp = (u32)to_physical(ev_ring, ev_rp);
|
|
while (local_rp != cntxt_rp) {
|
|
union gpi_event *gpi_event = ev_rp;
|
|
u32 chid = gpi_event->xfer_compl_event.chid;
|
|
|
|
if (chid == gpii_chan->chid)
|
|
gpi_event->xfer_compl_event.type = STALE_EV_TYPE;
|
|
ev_rp += ev_ring->el_size;
|
|
if (ev_rp >= (ev_ring->base + ev_ring->len))
|
|
ev_rp = ev_ring->base;
|
|
cntxt_rp = gpi_read_reg(gpii, gpii->ev_ring_rp_lsb_reg);
|
|
local_rp = (u32)to_physical(ev_ring, ev_rp);
|
|
}
|
|
}
|
|
|
|
/* reset sw state and issue channel reset or de-alloc */
|
|
static int gpi_reset_chan(struct gpii_chan *gpii_chan, enum gpi_cmd gpi_cmd)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
struct gpi_ring *ch_ring = gpii_chan->ch_ring;
|
|
unsigned long flags;
|
|
LIST_HEAD(list);
|
|
int ret;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "Enter\n");
|
|
ret = gpi_send_cmd(gpii, gpii_chan, gpi_cmd);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error with cmd:%s ret:%d\n",
|
|
TO_GPI_CMD_STR(gpi_cmd), ret);
|
|
return ret;
|
|
}
|
|
|
|
/* initialize the local ring ptrs */
|
|
ch_ring->rp = ch_ring->base;
|
|
ch_ring->wp = ch_ring->base;
|
|
|
|
/* visible to other cores */
|
|
smp_wmb();
|
|
|
|
/* check event ring for any stale events */
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpi_mark_stale_events(gpii_chan);
|
|
|
|
/* remove all async descriptors */
|
|
spin_lock_irqsave(&gpii_chan->vc.lock, flags);
|
|
vchan_get_all_descriptors(&gpii_chan->vc, &list);
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
vchan_dma_desc_free_list(&gpii_chan->vc, &list);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int gpi_start_chan(struct gpii_chan *gpii_chan)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int ret;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "Enter\n");
|
|
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_START);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error with cmd:%s ret:%d\n",
|
|
TO_GPI_CMD_STR(GPI_CH_CMD_START), ret);
|
|
return ret;
|
|
}
|
|
|
|
/* gpii CH is active now */
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii_chan->pm_state = ACTIVE_STATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* allocate and configure the transfer channel */
|
|
static int gpi_alloc_chan(struct gpii_chan *gpii_chan, bool send_alloc_cmd)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
struct gpi_ring *ring = gpii_chan->ch_ring;
|
|
int i;
|
|
int ret;
|
|
struct {
|
|
void *base;
|
|
int offset;
|
|
u32 val;
|
|
} ch_reg[] = {
|
|
{
|
|
gpii_chan->ch_cntxt_base_reg,
|
|
CNTXT_0_CONFIG,
|
|
GPI_GPII_n_CH_k_CNTXT_0(ring->el_size, 0,
|
|
gpii_chan->dir,
|
|
GPI_CHTYPE_PROTO_GPI),
|
|
},
|
|
{
|
|
gpii_chan->ch_cntxt_base_reg,
|
|
CNTXT_1_R_LENGTH,
|
|
ring->len,
|
|
},
|
|
{
|
|
gpii_chan->ch_cntxt_base_reg,
|
|
CNTXT_2_RING_BASE_LSB,
|
|
(u32)ring->phys_addr,
|
|
},
|
|
{
|
|
gpii_chan->ch_cntxt_base_reg,
|
|
CNTXT_3_RING_BASE_MSB,
|
|
MSM_GPI_RING_PHYS_ADDR_UPPER(ring->phys_addr),
|
|
},
|
|
{ /* program MSB of DB register with ring base */
|
|
gpii_chan->ch_cntxt_db_reg,
|
|
CNTXT_5_RING_RP_MSB - CNTXT_4_RING_RP_LSB,
|
|
MSM_GPI_RING_PHYS_ADDR_UPPER(ring->phys_addr),
|
|
},
|
|
{
|
|
gpii->regs,
|
|
GPI_GPII_n_CH_k_SCRATCH_0_OFFS(gpii->gpii_id,
|
|
gpii_chan->chid),
|
|
GPI_GPII_n_CH_K_SCRATCH_0(!gpii_chan->chid,
|
|
gpii_chan->init_config,
|
|
gpii_chan->protocol,
|
|
gpii_chan->seid),
|
|
},
|
|
{
|
|
gpii->regs,
|
|
GPI_GPII_n_CH_k_SCRATCH_1_OFFS(gpii->gpii_id,
|
|
gpii_chan->chid),
|
|
0,
|
|
},
|
|
{
|
|
gpii->regs,
|
|
GPI_GPII_n_CH_k_SCRATCH_2_OFFS(gpii->gpii_id,
|
|
gpii_chan->chid),
|
|
0,
|
|
},
|
|
{
|
|
gpii->regs,
|
|
GPI_GPII_n_CH_k_SCRATCH_3_OFFS(gpii->gpii_id,
|
|
gpii_chan->chid),
|
|
0,
|
|
},
|
|
{
|
|
gpii->regs,
|
|
GPI_GPII_n_CH_k_QOS_OFFS(gpii->gpii_id,
|
|
gpii_chan->chid),
|
|
1,
|
|
},
|
|
{ NULL },
|
|
};
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "Enter\n");
|
|
|
|
if (send_alloc_cmd) {
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_ALLOCATE);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error with cmd:%s ret:%d\n",
|
|
TO_GPI_CMD_STR(GPI_CH_CMD_ALLOCATE), ret);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
/* program channel cntxt registers */
|
|
for (i = 0; ch_reg[i].base; i++)
|
|
gpi_write_reg(gpii, ch_reg[i].base + ch_reg[i].offset,
|
|
ch_reg[i].val);
|
|
/* flush all the writes */
|
|
wmb();
|
|
return 0;
|
|
}
|
|
|
|
/* allocate and configure event ring */
|
|
static int gpi_alloc_ev_chan(struct gpii *gpii)
|
|
{
|
|
struct gpi_ring *ring = gpii->ev_ring;
|
|
int i;
|
|
int ret;
|
|
struct {
|
|
void *base;
|
|
int offset;
|
|
u32 val;
|
|
} ev_reg[] = {
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_0_CONFIG,
|
|
GPI_GPII_n_EV_CH_k_CNTXT_0(ring->el_size,
|
|
GPI_INTTYPE_IRQ,
|
|
GPI_CHTYPE_GPI_EV),
|
|
},
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_1_R_LENGTH,
|
|
ring->len,
|
|
},
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_2_RING_BASE_LSB,
|
|
(u32)ring->phys_addr,
|
|
},
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_3_RING_BASE_MSB,
|
|
MSM_GPI_RING_PHYS_ADDR_UPPER(ring->phys_addr),
|
|
},
|
|
{
|
|
/* program db msg with ring base msb */
|
|
gpii->ev_cntxt_db_reg,
|
|
CNTXT_5_RING_RP_MSB - CNTXT_4_RING_RP_LSB,
|
|
MSM_GPI_RING_PHYS_ADDR_UPPER(ring->phys_addr),
|
|
},
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_8_RING_INT_MOD,
|
|
0,
|
|
},
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_10_RING_MSI_LSB,
|
|
0,
|
|
},
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_11_RING_MSI_MSB,
|
|
0,
|
|
},
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_8_RING_INT_MOD,
|
|
0,
|
|
},
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_12_RING_RP_UPDATE_LSB,
|
|
0,
|
|
},
|
|
{
|
|
gpii->ev_cntxt_base_reg,
|
|
CNTXT_13_RING_RP_UPDATE_MSB,
|
|
0,
|
|
},
|
|
{ NULL },
|
|
};
|
|
|
|
GPII_INFO(gpii, GPI_DBG_COMMON, "enter\n");
|
|
|
|
ret = gpi_send_cmd(gpii, NULL, GPI_EV_CMD_ALLOCATE);
|
|
if (ret) {
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "error with cmd:%s ret:%d\n",
|
|
TO_GPI_CMD_STR(GPI_EV_CMD_ALLOCATE), ret);
|
|
return ret;
|
|
}
|
|
|
|
/* program event context */
|
|
for (i = 0; ev_reg[i].base; i++)
|
|
gpi_write_reg(gpii, ev_reg[i].base + ev_reg[i].offset,
|
|
ev_reg[i].val);
|
|
|
|
/* add events to ring */
|
|
ring->wp = (ring->base + ring->len - ring->el_size);
|
|
|
|
/* flush all the writes */
|
|
wmb();
|
|
|
|
/* gpii is active now */
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii->pm_state = ACTIVE_STATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
gpi_write_ev_db(gpii, ring, ring->wp);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* calculate # of ERE/TRE available to queue */
|
|
static int gpi_ring_num_elements_avail(const struct gpi_ring * const ring)
|
|
{
|
|
int elements = 0;
|
|
|
|
if (ring->wp < ring->rp)
|
|
elements = ((ring->rp - ring->wp) / ring->el_size) - 1;
|
|
else {
|
|
elements = (ring->rp - ring->base) / ring->el_size;
|
|
elements += ((ring->base + ring->len - ring->wp) /
|
|
ring->el_size) - 1;
|
|
}
|
|
|
|
return elements;
|
|
}
|
|
|
|
static int gpi_ring_add_element(struct gpi_ring *ring, void **wp)
|
|
{
|
|
|
|
if (gpi_ring_num_elements_avail(ring) <= 0)
|
|
return -ENOMEM;
|
|
|
|
*wp = ring->wp;
|
|
ring->wp += ring->el_size;
|
|
if (ring->wp >= (ring->base + ring->len))
|
|
ring->wp = ring->base;
|
|
|
|
/* visible to other cores */
|
|
smp_wmb();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void gpi_ring_recycle_ev_element(struct gpi_ring *ring)
|
|
{
|
|
/* Update the WP */
|
|
ring->wp += ring->el_size;
|
|
if (ring->wp >= (ring->base + ring->len))
|
|
ring->wp = ring->base;
|
|
|
|
/* Update the RP */
|
|
ring->rp += ring->el_size;
|
|
if (ring->rp >= (ring->base + ring->len))
|
|
ring->rp = ring->base;
|
|
|
|
/* visible to other cores */
|
|
smp_wmb();
|
|
}
|
|
|
|
static void gpi_free_ring(struct gpi_ring *ring,
|
|
struct gpii *gpii)
|
|
{
|
|
dma_free_coherent(gpii->gpi_dev->dev, ring->alloc_size,
|
|
ring->pre_aligned, ring->dma_handle);
|
|
memset(ring, 0, sizeof(*ring));
|
|
}
|
|
|
|
/* allocate memory for transfer and event rings */
|
|
static int gpi_alloc_ring(struct gpi_ring *ring,
|
|
u32 elements,
|
|
u32 el_size,
|
|
struct gpii *gpii)
|
|
{
|
|
u64 len = elements * el_size;
|
|
int bit;
|
|
|
|
/* ring len must be power of 2 */
|
|
bit = find_last_bit((unsigned long *)&len, 32);
|
|
if (((1 << bit) - 1) & len)
|
|
bit++;
|
|
len = 1 << bit;
|
|
ring->alloc_size = (len + (len - 1));
|
|
GPII_INFO(gpii, GPI_DBG_COMMON,
|
|
"#el:%u el_size:%u len:%u actual_len:%llu alloc_size:%lu\n",
|
|
elements, el_size, (elements * el_size), len,
|
|
ring->alloc_size);
|
|
ring->pre_aligned = dma_alloc_coherent(gpii->gpi_dev->dev,
|
|
ring->alloc_size,
|
|
&ring->dma_handle, GFP_KERNEL);
|
|
if (!ring->pre_aligned) {
|
|
GPII_CRITIC(gpii, GPI_DBG_COMMON,
|
|
"could not alloc size:%lu mem for ring\n",
|
|
ring->alloc_size);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
/* align the physical mem */
|
|
ring->phys_addr = (ring->dma_handle + (len - 1)) & ~(len - 1);
|
|
ring->base = ring->pre_aligned + (ring->phys_addr - ring->dma_handle);
|
|
ring->rp = ring->base;
|
|
ring->wp = ring->base;
|
|
ring->len = len;
|
|
ring->el_size = el_size;
|
|
ring->elements = ring->len / ring->el_size;
|
|
memset(ring->base, 0, ring->len);
|
|
ring->configured = true;
|
|
|
|
/* update to other cores */
|
|
smp_wmb();
|
|
|
|
GPII_INFO(gpii, GPI_DBG_COMMON,
|
|
"phy_pre:0x%0llx phy_alig:0x%0llx len:%u el_size:%u elements:%u\n",
|
|
ring->dma_handle, ring->phys_addr, ring->len, ring->el_size,
|
|
ring->elements);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* copy tre into transfer ring */
|
|
static void gpi_queue_xfer(struct gpii *gpii,
|
|
struct gpii_chan *gpii_chan,
|
|
struct msm_gpi_tre *gpi_tre,
|
|
void **wp)
|
|
{
|
|
struct msm_gpi_tre *ch_tre;
|
|
int ret;
|
|
|
|
/* get next tre location we can copy */
|
|
ret = gpi_ring_add_element(gpii_chan->ch_ring, (void **)&ch_tre);
|
|
if (unlikely(ret)) {
|
|
GPII_CRITIC(gpii, gpii_chan->chid,
|
|
"Error adding ring element to xfer ring\n");
|
|
return;
|
|
}
|
|
|
|
/* copy the tre info */
|
|
memcpy(ch_tre, gpi_tre, sizeof(*ch_tre));
|
|
*wp = ch_tre;
|
|
}
|
|
|
|
/**
|
|
* gpi_terminate_all() - function to stop and restart the channels
|
|
* @chan: gsi dma channel handle
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
int gpi_terminate_all(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int schid, echid, i;
|
|
int ret = 0;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "Enter\n");
|
|
mutex_lock(&gpii->ctrl_lock);
|
|
|
|
/*
|
|
* treat both channels as a group if its protocol is not UART
|
|
* STOP, RESET, or START needs to be in lockstep
|
|
*/
|
|
schid = (gpii->protocol == SE_PROTOCOL_UART) ? gpii_chan->chid : 0;
|
|
echid = (gpii->protocol == SE_PROTOCOL_UART) ? schid + 1 :
|
|
MAX_CHANNELS_PER_GPII;
|
|
|
|
/* stop the channel */
|
|
for (i = schid; i < echid; i++) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
|
|
/* disable ch state so no more TRE processing */
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii_chan->pm_state = PREPARE_TERMINATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
|
|
/* send command to Stop the channel */
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_STOP);
|
|
if (ret)
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error Stopping Chan:%d resetting\n", ret);
|
|
}
|
|
|
|
/* reset the channels (clears any pending tre) */
|
|
for (i = schid; i < echid; i++) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
|
|
ret = gpi_reset_chan(gpii_chan, GPI_CH_CMD_RESET);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error resetting channel ret:%d\n", ret);
|
|
if (!gpii->reg_table_dump) {
|
|
gpi_dump_debug_reg(gpii);
|
|
gpii->reg_table_dump = true;
|
|
}
|
|
goto terminate_exit;
|
|
}
|
|
|
|
/* reprogram channel CNTXT */
|
|
ret = gpi_alloc_chan(gpii_chan, false);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error alloc_channel ret:%d\n", ret);
|
|
goto terminate_exit;
|
|
}
|
|
}
|
|
|
|
/* restart the channels */
|
|
for (i = schid; i < echid; i++) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
|
|
ret = gpi_start_chan(gpii_chan);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error Starting Channel ret:%d\n", ret);
|
|
goto terminate_exit;
|
|
}
|
|
}
|
|
|
|
terminate_exit:
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* gpi_q2spi_terminate_all() - function to stop and restart the channels
|
|
* @chan: gsi dma channel handle
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
int gpi_q2spi_terminate_all(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int schid, echid, i;
|
|
int ret = 0;
|
|
bool stop_cmd_failed = false;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "Enter\n");
|
|
mutex_lock(&gpii->ctrl_lock);
|
|
|
|
/*
|
|
* treat both channels as a group if its protocol is not UART
|
|
* STOP, RESET if STOP fails, and RE-START needs to be in lockstep
|
|
*/
|
|
schid = (gpii->protocol == SE_PROTOCOL_UART) ? gpii_chan->chid : 0;
|
|
echid = (gpii->protocol == SE_PROTOCOL_UART) ? schid + 1 :
|
|
MAX_CHANNELS_PER_GPII;
|
|
|
|
/* stop the channel */
|
|
for (i = schid; i < echid; i++) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
|
|
/* disable ch state so no more TRE processing */
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii_chan->pm_state = PREPARE_TERMINATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
|
|
/* send command to Stop the channel */
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_STOP);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error Stopping Chan:%d resetting\n", ret);
|
|
stop_cmd_failed = true;
|
|
}
|
|
}
|
|
|
|
/* Reset both TX and RX channel if stop cmd fails */
|
|
if (stop_cmd_failed) {
|
|
for (i = schid; i < echid; i++) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
ret = gpi_reset_chan(gpii_chan, GPI_CH_CMD_RESET);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error resetting channel ret:%d\n", ret);
|
|
if (!gpii->reg_table_dump) {
|
|
gpi_dump_debug_reg(gpii);
|
|
gpii->reg_table_dump = true;
|
|
}
|
|
goto terminate_exit;
|
|
}
|
|
|
|
/* reprogram channel CNTXT */
|
|
ret = gpi_alloc_chan(gpii_chan, false);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error alloc_channel ret:%d\n", ret);
|
|
goto terminate_exit;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* restart the channels */
|
|
for (i = echid - 1; i >= schid; i--) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
|
|
ret = gpi_start_chan(gpii_chan);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error Starting Channel ret:%d\n", ret);
|
|
goto terminate_exit;
|
|
}
|
|
}
|
|
|
|
terminate_exit:
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(gpi_q2spi_terminate_all);
|
|
|
|
static void gpi_noop_tre(struct gpii_chan *gpii_chan)
|
|
{
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
struct gpi_ring *ch_ring = gpii_chan->ch_ring;
|
|
phys_addr_t local_rp, local_wp;
|
|
void *cntxt_rp;
|
|
u32 noop_mask, noop_tre;
|
|
struct msm_gpi_tre *tre;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "Enter\n");
|
|
|
|
local_rp = to_physical(ch_ring, ch_ring->rp);
|
|
local_wp = to_physical(ch_ring, ch_ring->wp);
|
|
cntxt_rp = ch_ring->rp;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid,
|
|
"local_rp:0x%0llx local_wp:0x%0llx\n", local_rp, local_wp);
|
|
|
|
noop_mask = NOOP_TRE_MASK(1, 0, 0, 0, 1);
|
|
noop_tre = NOOP_TRE;
|
|
|
|
while (local_rp != local_wp) {
|
|
/* dump the channel ring at the time of error */
|
|
tre = (struct msm_gpi_tre *)cntxt_rp;
|
|
GPII_ERR(gpii, gpii_chan->chid, "local_rp:%llu TRE: %08x %08x %08x %08x\n",
|
|
local_rp, tre->dword[0], tre->dword[1],
|
|
tre->dword[2], tre->dword[3]);
|
|
tre->dword[3] &= noop_mask;
|
|
tre->dword[3] |= noop_tre;
|
|
local_rp += ch_ring->el_size;
|
|
cntxt_rp += ch_ring->el_size;
|
|
if (cntxt_rp >= (ch_ring->base + ch_ring->len)) {
|
|
cntxt_rp = ch_ring->base;
|
|
local_rp = to_physical(ch_ring, ch_ring->base);
|
|
}
|
|
GPII_INFO(gpii, gpii_chan->chid,
|
|
"local_rp:0x%0llx\n", local_rp);
|
|
}
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "exit\n");
|
|
}
|
|
|
|
/* pause dma transfer for all channels */
|
|
static int gpi_pause(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int i, ret, idx = 0;
|
|
u32 offset1, offset2, type1, type2;
|
|
struct gpi_ring *ev_ring = gpii->ev_ring;
|
|
phys_addr_t cntxt_rp, local_rp;
|
|
void *rp, *rp1;
|
|
union gpi_event *gpi_event;
|
|
u32 chid, type;
|
|
int iter = 0;
|
|
unsigned long total_iter = 1000; //waiting10ms 1000*udelay(10)
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "Enter\n");
|
|
mutex_lock(&gpii->ctrl_lock);
|
|
|
|
/* if gpi_pause already done we are not doing again*/
|
|
if (!gpii->is_resumed) {
|
|
GPII_ERR(gpii, gpii_chan->chid, "Already in suspend/pause state\n");
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return 0;
|
|
}
|
|
/* dump the GPII IRQ register at the time of error */
|
|
offset1 = GPI_GPII_n_CNTXT_TYPE_IRQ_OFFS(gpii->gpii_id);
|
|
offset2 = GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_MSK_OFFS(gpii->gpii_id);
|
|
while (idx++ < 3) {
|
|
type1 = gpi_read_reg(gpii, gpii->regs + offset1);
|
|
type2 = gpi_read_reg(gpii, gpii->regs + offset2);
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "CNTXT_TYPE_IRQ:0x%08x IEOB_MASK_OFF:0x%08x\n",
|
|
type1, type2);
|
|
}
|
|
|
|
cntxt_rp = gpi_read_reg(gpii, gpii->ev_ring_rp_lsb_reg);
|
|
if (!cntxt_rp) {
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "invalid cntxt_rp");
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return -EINVAL;
|
|
}
|
|
|
|
rp = to_virtual(ev_ring, cntxt_rp);
|
|
local_rp = to_physical(ev_ring, ev_ring->rp);
|
|
if (!local_rp) {
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "invalid local_rp");
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return -EINVAL;
|
|
}
|
|
|
|
rp1 = ev_ring->rp;
|
|
|
|
/* dump the event ring at the time of error */
|
|
GPII_ERR(gpii, GPI_DBG_COMMON, "cntxt_rp:%pa local_rp:%pa\n",
|
|
&cntxt_rp, &local_rp);
|
|
while (rp != rp1) {
|
|
gpi_event = rp1;
|
|
chid = gpi_event->xfer_compl_event.chid;
|
|
type = gpi_event->xfer_compl_event.type;
|
|
GPII_ERR(gpii, GPI_DBG_COMMON,
|
|
"chid:%u type:0x%x %08x %08x %08x %08x rp:%pK rp1:%pK\n", chid, type,
|
|
gpi_event->gpi_ere.dword[0], gpi_event->gpi_ere.dword[1],
|
|
gpi_event->gpi_ere.dword[2], gpi_event->gpi_ere.dword[3], rp, rp1);
|
|
rp1 += ev_ring->el_size;
|
|
if (rp1 >= (ev_ring->base + ev_ring->len))
|
|
rp1 = ev_ring->base;
|
|
}
|
|
|
|
/* send stop command to stop the channels */
|
|
for (i = 0; i < MAX_CHANNELS_PER_GPII; i++) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
/* disable ch state so no more TRE processing */
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii_chan->pm_state = PREPARE_TERMINATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
/* send command to Stop the channel */
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_STOP);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii->gpii_chan[i].chid,
|
|
"Error stopping chan, ret:%d\n", ret);
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return -ECONNRESET;
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < MAX_CHANNELS_PER_GPII; i++) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
gpi_noop_tre(gpii_chan);
|
|
}
|
|
|
|
for (i = 0; i < MAX_CHANNELS_PER_GPII; i++) {
|
|
gpii_chan = &gpii->gpii_chan[i];
|
|
|
|
ret = gpi_start_chan(gpii_chan);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"Error Starting Channel ret:%d\n", ret);
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return -ECONNRESET;
|
|
}
|
|
}
|
|
|
|
if (gpii->dual_ee_sync_flag) {
|
|
while (iter < total_iter) {
|
|
iter++;
|
|
/* Ensure ISR completed, so no more activity from GSI pending */
|
|
if (!gpii->dual_ee_sync_flag)
|
|
break;
|
|
udelay(10);
|
|
}
|
|
}
|
|
GPII_INFO(gpii, gpii_chan->chid, "iter:%d\n", iter);
|
|
disable_irq(gpii->irq);
|
|
gpii->is_resumed = false;
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return 0;
|
|
}
|
|
|
|
/* resume dma transfer */
|
|
static int gpi_resume(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int i;
|
|
int ret;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "enter\n");
|
|
|
|
mutex_lock(&gpii->ctrl_lock);
|
|
/* if gpi_pause not done we are not doing resume */
|
|
if (gpii->is_resumed) {
|
|
GPII_ERR(gpii, gpii_chan->chid, "Already resumed\n");
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return 0;
|
|
}
|
|
enable_irq(gpii->irq);
|
|
|
|
/* We are updating is_resumed flag in middle of function, because
|
|
* enable_irq should happen only one time otherwise we may get
|
|
* unbalanced irq results. Without enable_irq we cannot issue commands
|
|
* to the gsi hw.
|
|
*/
|
|
gpii->is_resumed = true;
|
|
|
|
if (gpii->pm_state == ACTIVE_STATE) {
|
|
GPII_INFO(gpii, gpii_chan->chid,
|
|
"channel is already active\n");
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return 0;
|
|
}
|
|
|
|
/* send start command to start the channels */
|
|
for (i = 0; i < MAX_CHANNELS_PER_GPII; i++) {
|
|
ret = gpi_send_cmd(gpii, &gpii->gpii_chan[i], GPI_CH_CMD_START);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii->gpii_chan[i].chid,
|
|
"Erro starting chan, ret:%d\n", ret);
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii->pm_state = ACTIVE_STATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void gpi_desc_free(struct virt_dma_desc *vd)
|
|
{
|
|
struct gpi_desc *gpi_desc = to_gpi_desc(vd);
|
|
|
|
kfree(gpi_desc);
|
|
gpi_desc = NULL;
|
|
}
|
|
|
|
/* copy tre into transfer ring */
|
|
struct dma_async_tx_descriptor *gpi_prep_slave_sg(struct dma_chan *chan,
|
|
struct scatterlist *sgl,
|
|
unsigned int sg_len,
|
|
enum dma_transfer_direction direction,
|
|
unsigned long flags,
|
|
void *context)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
u32 nr;
|
|
u32 nr_req = 0;
|
|
int i, j;
|
|
struct scatterlist *sg;
|
|
struct gpi_ring *ch_ring = gpii_chan->ch_ring;
|
|
void *tre, *wp = NULL;
|
|
const gfp_t gfp = GFP_ATOMIC;
|
|
struct gpi_desc *gpi_desc;
|
|
u32 tre_type;
|
|
|
|
gpii_chan->num_tre = sg_len;
|
|
GPII_VERB(gpii, gpii_chan->chid, "enter\n");
|
|
|
|
if (!is_slave_direction(direction)) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"invalid dma direction: %d\n", direction);
|
|
return NULL;
|
|
}
|
|
|
|
/* calculate # of elements required & available */
|
|
nr = gpi_ring_num_elements_avail(ch_ring);
|
|
for_each_sg(sgl, sg, sg_len, i) {
|
|
GPII_VERB(gpii, gpii_chan->chid,
|
|
"%d of %u len:%u\n", i, sg_len, sg->length);
|
|
nr_req += (sg->length / ch_ring->el_size);
|
|
}
|
|
GPII_VERB(gpii, gpii_chan->chid, "el avail:%u req:%u\n", nr, nr_req);
|
|
|
|
if (nr < nr_req) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"not enough space in ring, avail:%u required:%u\n",
|
|
nr, nr_req);
|
|
return NULL;
|
|
}
|
|
|
|
gpi_desc = kzalloc(sizeof(*gpi_desc), gfp);
|
|
if (!gpi_desc) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"out of memory for descriptor\n");
|
|
return NULL;
|
|
}
|
|
|
|
/* copy each tre into transfer ring */
|
|
for_each_sg(sgl, sg, sg_len, i) {
|
|
tre = sg_virt(sg);
|
|
|
|
if (sg_len == 1) {
|
|
tre_type =
|
|
MSM_GPI_TRE_TYPE(((struct msm_gpi_tre *)tre));
|
|
gpii_chan->lock_tre_set =
|
|
tre_type == MSM_GPI_TRE_LOCK ? (u32)true : (u32)false;
|
|
}
|
|
/* Check if last tre is an unlock tre */
|
|
if (i == sg_len - 1) {
|
|
tre_type =
|
|
MSM_GPI_TRE_TYPE(((struct msm_gpi_tre *)tre));
|
|
gpii->unlock_tre_set =
|
|
tre_type == MSM_GPI_TRE_UNLOCK ? (u32)true : (u32)false;
|
|
}
|
|
|
|
for (j = 0; j < sg->length;
|
|
j += ch_ring->el_size, tre += ch_ring->el_size)
|
|
gpi_queue_xfer(gpii, gpii_chan, tre, &wp);
|
|
}
|
|
|
|
/* set up the descriptor */
|
|
gpi_desc->db = ch_ring->wp;
|
|
gpi_desc->wp = wp;
|
|
gpi_desc->gpii_chan = gpii_chan;
|
|
GPII_VERB(gpii, gpii_chan->chid, "exit wp:0x%0llx rp:0x%0llx\n",
|
|
to_physical(ch_ring, ch_ring->wp),
|
|
to_physical(ch_ring, ch_ring->rp));
|
|
|
|
return vchan_tx_prep(&gpii_chan->vc, &gpi_desc->vd, flags);
|
|
}
|
|
|
|
/* rings transfer ring db to being transfer */
|
|
static void gpi_issue_pending(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
unsigned long flags, pm_lock_flags;
|
|
struct virt_dma_desc *vd = NULL;
|
|
struct gpi_desc *gpi_desc;
|
|
|
|
GPII_VERB(gpii, gpii_chan->chid, "Enter\n");
|
|
|
|
read_lock_irqsave(&gpii->pm_lock, pm_lock_flags);
|
|
|
|
/* move all submitted discriptors to issued list */
|
|
spin_lock_irqsave(&gpii_chan->vc.lock, flags);
|
|
if (vchan_issue_pending(&gpii_chan->vc))
|
|
vd = list_last_entry(&gpii_chan->vc.desc_issued,
|
|
struct virt_dma_desc, node);
|
|
spin_unlock_irqrestore(&gpii_chan->vc.lock, flags);
|
|
|
|
/* nothing to do list is empty */
|
|
if (!vd) {
|
|
read_unlock_irqrestore(&gpii->pm_lock, pm_lock_flags);
|
|
GPII_VERB(gpii, gpii_chan->chid, "no descriptors submitted\n");
|
|
return;
|
|
}
|
|
|
|
gpi_desc = to_gpi_desc(vd);
|
|
gpi_write_ch_db(gpii_chan, gpii_chan->ch_ring, gpi_desc->db);
|
|
read_unlock_irqrestore(&gpii->pm_lock, pm_lock_flags);
|
|
}
|
|
|
|
/* configure or issue async command */
|
|
static int gpi_config(struct dma_chan *chan,
|
|
struct dma_slave_config *config)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
struct msm_gpi_ctrl *gpi_ctrl = chan->private;
|
|
const int ev_factor = gpii->gpi_dev->ev_factor;
|
|
u32 elements;
|
|
int i = 0;
|
|
int ret = 0;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "enter\n");
|
|
if (!gpi_ctrl) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"no config ctrl data provided");
|
|
return -EINVAL;
|
|
}
|
|
|
|
mutex_lock(&gpii->ctrl_lock);
|
|
|
|
switch (gpi_ctrl->cmd) {
|
|
case MSM_GPI_INIT:
|
|
GPII_INFO(gpii, gpii_chan->chid, "cmd: msm_gpi_init\n");
|
|
|
|
gpii_chan->client_info.callback = gpi_ctrl->init.callback;
|
|
gpii_chan->client_info.cb_param = gpi_ctrl->init.cb_param;
|
|
gpii_chan->pm_state = CONFIG_STATE;
|
|
|
|
/* check if both channels are configured before continue */
|
|
for (i = 0; i < MAX_CHANNELS_PER_GPII; i++)
|
|
if (gpii->gpii_chan[i].pm_state != CONFIG_STATE)
|
|
goto exit_gpi_init;
|
|
|
|
/* configure to highest priority from two channels */
|
|
gpii->ev_priority = min(gpii->gpii_chan[0].priority,
|
|
gpii->gpii_chan[1].priority);
|
|
|
|
/* protocol must be same for both channels */
|
|
if (gpii->gpii_chan[0].protocol !=
|
|
gpii->gpii_chan[1].protocol) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"protocol did not match protocol %u != %u\n",
|
|
gpii->gpii_chan[0].protocol,
|
|
gpii->gpii_chan[1].protocol);
|
|
ret = -EINVAL;
|
|
goto exit_gpi_init;
|
|
}
|
|
gpii->protocol = gpii_chan->protocol;
|
|
|
|
/* allocate memory for event ring */
|
|
elements = max(gpii->gpii_chan[0].req_tres,
|
|
gpii->gpii_chan[1].req_tres);
|
|
ret = gpi_alloc_ring(gpii->ev_ring, elements << ev_factor,
|
|
sizeof(union gpi_event), gpii);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"error allocating mem for ev ring\n");
|
|
goto exit_gpi_init;
|
|
}
|
|
|
|
/* configure interrupts */
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii->pm_state = PREPARE_HARDWARE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
ret = gpi_config_interrupts(gpii, DEFAULT_IRQ_SETTINGS, 0);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"error config. interrupts, ret:%d\n", ret);
|
|
goto error_config_int;
|
|
}
|
|
|
|
/* allocate event rings */
|
|
ret = gpi_alloc_ev_chan(gpii);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"error alloc_ev_chan:%d\n", ret);
|
|
goto error_alloc_ev_ring;
|
|
}
|
|
|
|
/* Allocate all channels */
|
|
for (i = 0; i < MAX_CHANNELS_PER_GPII; i++) {
|
|
ret = gpi_alloc_chan(&gpii->gpii_chan[i], true);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii->gpii_chan[i].chid,
|
|
"Error allocating chan:%d\n", ret);
|
|
goto error_alloc_chan;
|
|
}
|
|
}
|
|
|
|
/* start channels */
|
|
for (i = 0; i < MAX_CHANNELS_PER_GPII; i++) {
|
|
ret = gpi_start_chan(&gpii->gpii_chan[i]);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii->gpii_chan[i].chid,
|
|
"Error start chan:%d\n", ret);
|
|
goto error_start_chan;
|
|
}
|
|
}
|
|
|
|
break;
|
|
case MSM_GPI_CMD_UART_SW_STALE:
|
|
GPII_INFO(gpii, gpii_chan->chid, "sending UART SW STALE cmd\n");
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_UART_SW_STALE);
|
|
break;
|
|
case MSM_GPI_CMD_UART_RFR_READY:
|
|
GPII_INFO(gpii, gpii_chan->chid,
|
|
"sending UART RFR READY cmd\n");
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_UART_RFR_READY);
|
|
break;
|
|
case MSM_GPI_CMD_UART_RFR_NOT_READY:
|
|
GPII_INFO(gpii, gpii_chan->chid,
|
|
"sending UART RFR READY NOT READY cmd\n");
|
|
ret = gpi_send_cmd(gpii, gpii_chan,
|
|
GPI_CH_CMD_UART_RFR_NOT_READY);
|
|
break;
|
|
default:
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"unsupported ctrl cmd:%d\n", gpi_ctrl->cmd);
|
|
ret = -EINVAL;
|
|
}
|
|
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return ret;
|
|
|
|
error_start_chan:
|
|
for (i = i - 1; i >= 0; i++) {
|
|
gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_STOP);
|
|
gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_RESET);
|
|
}
|
|
i = 2;
|
|
error_alloc_chan:
|
|
for (i = i - 1; i >= 0; i--)
|
|
gpi_reset_chan(gpii_chan, GPI_CH_CMD_DE_ALLOC);
|
|
error_alloc_ev_ring:
|
|
gpi_disable_interrupts(gpii);
|
|
error_config_int:
|
|
gpi_free_ring(gpii->ev_ring, gpii);
|
|
exit_gpi_init:
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
return ret;
|
|
}
|
|
|
|
/* release all channel resources */
|
|
static void gpi_free_chan_resources(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
enum gpi_pm_state cur_state;
|
|
int ret, i;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "enter\n");
|
|
|
|
mutex_lock(&gpii->ctrl_lock);
|
|
|
|
cur_state = gpii_chan->pm_state;
|
|
|
|
/* disable ch state so no more TRE processing for this channel */
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii_chan->pm_state = PREPARE_TERMINATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
|
|
/* attempt to do graceful hardware shutdown */
|
|
if (cur_state == ACTIVE_STATE) {
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_STOP);
|
|
if (ret)
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"error stopping channel:%d\n", ret);
|
|
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_RESET);
|
|
if (ret)
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"error resetting channel:%d\n", ret);
|
|
|
|
gpi_reset_chan(gpii_chan, GPI_CH_CMD_DE_ALLOC);
|
|
}
|
|
|
|
/* free all allocated memory */
|
|
gpi_free_ring(gpii_chan->ch_ring, gpii);
|
|
vchan_free_chan_resources(&gpii_chan->vc);
|
|
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii_chan->pm_state = DISABLE_STATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
|
|
/* if other rings are still active exit */
|
|
for (i = 0; i < MAX_CHANNELS_PER_GPII; i++)
|
|
if (gpii->gpii_chan[i].ch_ring->configured)
|
|
goto exit_free;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "disabling gpii\n");
|
|
|
|
/* deallocate EV Ring */
|
|
cur_state = gpii->pm_state;
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii->pm_state = PREPARE_TERMINATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
|
|
/* wait for threads to complete out */
|
|
tasklet_kill(&gpii->ev_task);
|
|
|
|
/* send command to de allocate event ring */
|
|
if (cur_state == ACTIVE_STATE)
|
|
gpi_send_cmd(gpii, NULL, GPI_EV_CMD_DEALLOC);
|
|
|
|
gpi_free_ring(gpii->ev_ring, gpii);
|
|
|
|
/* disable interrupts */
|
|
if (cur_state == ACTIVE_STATE)
|
|
gpi_disable_interrupts(gpii);
|
|
|
|
/* set final state to disable */
|
|
write_lock_irq(&gpii->pm_lock);
|
|
gpii->pm_state = DISABLE_STATE;
|
|
write_unlock_irq(&gpii->pm_lock);
|
|
|
|
exit_free:
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
}
|
|
|
|
/* allocate channel resources */
|
|
static int gpi_alloc_chan_resources(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int ret;
|
|
|
|
GPII_INFO(gpii, gpii_chan->chid, "enter\n");
|
|
|
|
mutex_lock(&gpii->ctrl_lock);
|
|
|
|
/* allocate memory for transfer ring */
|
|
ret = gpi_alloc_ring(gpii_chan->ch_ring, gpii_chan->req_tres,
|
|
sizeof(struct msm_gpi_tre), gpii);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"error allocating xfer ring, ret:%d\n", ret);
|
|
goto xfer_alloc_err;
|
|
}
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
|
|
return 0;
|
|
xfer_alloc_err:
|
|
mutex_unlock(&gpii->ctrl_lock);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int gpi_find_static_gpii(struct gpi_dev *gpi_dev, int gpii_no)
|
|
{
|
|
if ((gpi_dev->static_gpii_mask) & (1<<gpii_no))
|
|
return gpii_no;
|
|
|
|
return -EIO;
|
|
}
|
|
|
|
static int gpi_find_dynamic_gpii(struct gpi_dev *gpi_dev, u32 seid)
|
|
{
|
|
int gpii;
|
|
struct gpii_chan *tx_chan, *rx_chan;
|
|
u32 gpii_mask = gpi_dev->gpii_mask;
|
|
|
|
/* check if same seid is already configured for another chid */
|
|
for (gpii = 0; gpii < gpi_dev->max_gpii; gpii++) {
|
|
if (!((1 << gpii) & gpii_mask))
|
|
continue;
|
|
|
|
tx_chan = &gpi_dev->gpiis[gpii].gpii_chan[GPI_TX_CHAN];
|
|
rx_chan = &gpi_dev->gpiis[gpii].gpii_chan[GPI_RX_CHAN];
|
|
|
|
if (rx_chan->vc.chan.client_count && rx_chan->seid == seid)
|
|
return gpii;
|
|
if (tx_chan->vc.chan.client_count && tx_chan->seid == seid)
|
|
return gpii;
|
|
}
|
|
|
|
/* no channels configured with same seid, return next avail gpii */
|
|
for (gpii = 0; gpii < gpi_dev->max_gpii; gpii++) {
|
|
if (!((1 << gpii) & gpii_mask))
|
|
continue;
|
|
|
|
tx_chan = &gpi_dev->gpiis[gpii].gpii_chan[GPI_TX_CHAN];
|
|
rx_chan = &gpi_dev->gpiis[gpii].gpii_chan[GPI_RX_CHAN];
|
|
|
|
/* check if gpii is configured */
|
|
if (tx_chan->vc.chan.client_count ||
|
|
rx_chan->vc.chan.client_count)
|
|
continue;
|
|
|
|
/* found a free gpii */
|
|
return gpii;
|
|
}
|
|
|
|
/* no gpii instance available to use */
|
|
return -EIO;
|
|
}
|
|
|
|
/*
|
|
* gpi_read_ch_state() - read the gpii channel state
|
|
* @gpii_chan: base address to gpii channel
|
|
*
|
|
* Return: channel state
|
|
*/
|
|
static u32 gpi_read_ch_state(struct gpii_chan *gpii_chan)
|
|
{
|
|
u32 state;
|
|
|
|
state = gpi_read_reg(gpii_chan->gpii, gpii_chan->ch_cntxt_base_reg +
|
|
CNTXT_0_CONFIG);
|
|
state = (state & GPI_GPII_n_CH_k_CNTXT_0_CHSTATE_BMSK) >>
|
|
GPI_GPII_n_CH_k_CNTXT_0_CHSTATE_SHFT;
|
|
|
|
return state;
|
|
}
|
|
|
|
/**
|
|
* gpi_cleanup_hw_channel() - stop,reset and deallocate the
|
|
* gsi h/w channel
|
|
* @chan: Base address of dma channel
|
|
*
|
|
* Return: Returns success or failure
|
|
*/
|
|
static int gpi_cleanup_hw_channel(struct dma_chan *chan)
|
|
{
|
|
struct gpii_chan *gpii_chan = to_gpii_chan(chan);
|
|
struct gpii *gpii = gpii_chan->gpii;
|
|
int ret = 0;
|
|
|
|
/*update the pm_state to active */
|
|
gpii->pm_state = ACTIVE_STATE;
|
|
|
|
/* send channel stop */
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_STOP);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid, "GPI_CH_CMD_STOP failed\n");
|
|
return ret;
|
|
}
|
|
|
|
/* send channel reset */
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_RESET);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid, "GPI_CH_CMD_RESET failed\n");
|
|
return ret;
|
|
}
|
|
|
|
/* send channel dealloc */
|
|
ret = gpi_send_cmd(gpii, gpii_chan, GPI_CH_CMD_DE_ALLOC);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid, "GPI_CH_CMD_DE_ALLOC failed\n");
|
|
return ret;
|
|
}
|
|
|
|
/* dealloc the event channel for once i.e doing here along with tx chanel */
|
|
if (gpii_chan->chid == 0) {
|
|
/* send event command dealloc */
|
|
ret = gpi_send_cmd(gpii, NULL, GPI_EV_CMD_DEALLOC);
|
|
if (ret) {
|
|
GPII_ERR(gpii, gpii_chan->chid,
|
|
"GPI_EV_CMD_DEALLOC failed\n");
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
/* update the pm state to disable */
|
|
gpii->pm_state = DISABLE_STATE;
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* gpi_of_dma_xlate: open client requested channel */
|
|
static struct dma_chan *gpi_of_dma_xlate(struct of_phandle_args *args,
|
|
struct of_dma *of_dma)
|
|
{
|
|
struct gpi_dev *gpi_dev = (struct gpi_dev *)of_dma->of_dma_data;
|
|
u32 seid, chid, ch_state;
|
|
int gpii, static_gpii_no;
|
|
struct gpii_chan *gpii_chan;
|
|
struct dma_chan *dma_chan;
|
|
int ret = 0;
|
|
|
|
if (args->args_count < REQ_OF_DMA_ARGS) {
|
|
GPI_ERR(gpi_dev,
|
|
"gpii require minimum 6 args, client passed:%d args\n",
|
|
args->args_count);
|
|
return NULL;
|
|
}
|
|
|
|
chid = args->args[0];
|
|
if (chid >= MAX_CHANNELS_PER_GPII) {
|
|
GPI_ERR(gpi_dev, "gpii channel:%d not valid\n", chid);
|
|
return NULL;
|
|
}
|
|
|
|
mutex_lock(&gpi_dev->qup_se_lock);
|
|
seid = args->args[1];
|
|
static_gpii_no = (args->args[4] & STATIC_GPII_BMSK) >> STATIC_GPII_SHFT;
|
|
|
|
if (static_gpii_no)
|
|
gpii = gpi_find_static_gpii(gpi_dev, static_gpii_no-1);
|
|
else /* find next available gpii to use */
|
|
gpii = gpi_find_dynamic_gpii(gpi_dev, seid);
|
|
|
|
if (gpii < 0) {
|
|
GPI_ERR(gpi_dev, "no available gpii instances\n");
|
|
mutex_unlock(&gpi_dev->qup_se_lock);
|
|
return NULL;
|
|
}
|
|
|
|
gpii_chan = &gpi_dev->gpiis[gpii].gpii_chan[chid];
|
|
if (gpii_chan->vc.chan.client_count) {
|
|
GPI_ERR(gpi_dev, "gpii:%d chid:%d seid:%d already configured\n",
|
|
gpii, chid, gpii_chan->seid);
|
|
mutex_unlock(&gpi_dev->qup_se_lock);
|
|
return NULL;
|
|
}
|
|
|
|
/* get ring size, protocol, se_id, and priority */
|
|
gpii_chan->seid = seid;
|
|
gpii_chan->protocol = args->args[2];
|
|
if (gpii_chan->protocol == SE_PROTOCOL_Q2SPI)
|
|
gpii_chan->init_config = 1;
|
|
gpii_chan->req_tres = args->args[3];
|
|
gpii_chan->priority = args->args[4] & GPI_EV_PRIORITY_BMSK;
|
|
|
|
GPI_LOG(gpi_dev,
|
|
"client req gpii:%u chid:%u #_tre:%u prio:%u proto:%u SE:%d init_config:%d\n",
|
|
gpii, chid, gpii_chan->req_tres, gpii_chan->priority,
|
|
gpii_chan->protocol, gpii_chan->seid, gpii_chan->init_config);
|
|
dma_chan = dma_get_slave_channel(&gpii_chan->vc.chan);
|
|
|
|
if (gpi_dev->is_le_vm) {
|
|
/* Power on case expecting channel state should be NOT allocated.
|
|
* For levm reboot case resetting the HW if channel already allocated.
|
|
*/
|
|
ch_state = gpi_read_ch_state(gpii_chan);
|
|
if (ch_state != CH_STATE_NOT_ALLOCATED) {
|
|
/* Config interrupts only once doing here during tx channel deallocation */
|
|
if (gpii_chan->chid == 0)
|
|
gpi_config_interrupts(gpii_chan->gpii, DEFAULT_IRQ_SETTINGS, 0);
|
|
ret = gpi_cleanup_hw_channel(dma_chan);
|
|
if (ret) {
|
|
GPII_ERR(gpii_chan->gpii, gpii_chan->chid,
|
|
"gpi_cleanup_hw_channel failed\n");
|
|
mutex_unlock(&gpi_dev->qup_se_lock);
|
|
return NULL;
|
|
}
|
|
}
|
|
}
|
|
|
|
mutex_unlock(&gpi_dev->qup_se_lock);
|
|
return dma_chan;
|
|
}
|
|
|
|
/* gpi_setup_debug - setup debug capabilities */
|
|
static void gpi_setup_debug(struct gpi_dev *gpi_dev)
|
|
{
|
|
char node_name[GPI_LABEL_SIZE];
|
|
const umode_t mode = 0600;
|
|
int i;
|
|
|
|
snprintf(node_name, sizeof(node_name), "%s%llx", GPI_DMA_DRV_NAME,
|
|
(u64)gpi_dev->res->start);
|
|
|
|
gpi_dev->ilctxt = ipc_log_context_create(IPC_LOG_PAGES,
|
|
node_name, 0);
|
|
gpi_dev->ipc_log_lvl = DEFAULT_IPC_LOG_LVL;
|
|
if (!IS_ERR_OR_NULL(pdentry)) {
|
|
snprintf(node_name, sizeof(node_name), "%llx",
|
|
(u64)gpi_dev->res->start);
|
|
gpi_dev->dentry = debugfs_create_dir(node_name, pdentry);
|
|
if (!IS_ERR_OR_NULL(gpi_dev->dentry)) {
|
|
debugfs_create_u32("ipc_log_lvl", mode, gpi_dev->dentry,
|
|
&gpi_dev->ipc_log_lvl);
|
|
debugfs_create_u32("klog_lvl", mode,
|
|
gpi_dev->dentry, &gpi_dev->klog_lvl);
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < gpi_dev->max_gpii; i++) {
|
|
struct gpii *gpii;
|
|
|
|
if (!(((1 << i) & gpi_dev->gpii_mask) ||
|
|
((1 << i) & gpi_dev->static_gpii_mask)))
|
|
continue;
|
|
|
|
gpii = &gpi_dev->gpiis[i];
|
|
snprintf(gpii->label, sizeof(gpii->label),
|
|
"%s%llx_gpii%d",
|
|
GPI_DMA_DRV_NAME, (u64)gpi_dev->res->start, i);
|
|
gpii->ilctxt = ipc_log_context_create(IPC_LOG_PAGES,
|
|
gpii->label, 0);
|
|
gpii->ipc_log_lvl = DEFAULT_IPC_LOG_LVL;
|
|
gpii->klog_lvl = DEFAULT_KLOG_LVL;
|
|
|
|
if (IS_ERR_OR_NULL(gpi_dev->dentry))
|
|
continue;
|
|
|
|
snprintf(node_name, sizeof(node_name), "gpii%d", i);
|
|
gpii->dentry = debugfs_create_dir(node_name, gpi_dev->dentry);
|
|
if (IS_ERR_OR_NULL(gpii->dentry))
|
|
continue;
|
|
|
|
debugfs_create_u32("ipc_log_lvl", mode, gpii->dentry,
|
|
&gpii->ipc_log_lvl);
|
|
debugfs_create_u32("klog_lvl", mode, gpii->dentry,
|
|
&gpii->klog_lvl);
|
|
}
|
|
}
|
|
|
|
static int gpi_probe(struct platform_device *pdev)
|
|
{
|
|
struct gpi_dev *gpi_dev;
|
|
int ret, i;
|
|
u32 gpi_ee_offset;
|
|
|
|
gpi_dev = devm_kzalloc(&pdev->dev, sizeof(*gpi_dev), GFP_KERNEL);
|
|
if (!gpi_dev)
|
|
return -ENOMEM;
|
|
|
|
/* debug purpose */
|
|
gpi_dev_dbg[arr_idx++] = gpi_dev;
|
|
|
|
gpi_dev->dev = &pdev->dev;
|
|
gpi_dev->klog_lvl = DEFAULT_KLOG_LVL;
|
|
gpi_dev->res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
|
|
"gpi-top");
|
|
if (!gpi_dev->res) {
|
|
GPI_ERR(gpi_dev, "missing 'reg' DT node\n");
|
|
return -EINVAL;
|
|
}
|
|
gpi_dev->regs = devm_ioremap(gpi_dev->dev, gpi_dev->res->start,
|
|
resource_size(gpi_dev->res));
|
|
if (!gpi_dev->regs) {
|
|
GPI_ERR(gpi_dev, "IO remap failed\n");
|
|
return -EFAULT;
|
|
}
|
|
|
|
gpi_dev->ee_base = gpi_dev->regs;
|
|
|
|
ret = of_property_read_u32(gpi_dev->dev->of_node, "qcom,max-num-gpii",
|
|
&gpi_dev->max_gpii);
|
|
if (ret) {
|
|
GPI_ERR(gpi_dev, "missing 'max-no-gpii' DT node\n");
|
|
return ret;
|
|
}
|
|
|
|
ret = of_property_read_u32(gpi_dev->dev->of_node, "qcom,gpii-mask",
|
|
&gpi_dev->gpii_mask);
|
|
if (ret) {
|
|
GPI_ERR(gpi_dev, "missing 'gpii-mask' DT node\n");
|
|
return ret;
|
|
}
|
|
|
|
ret = of_property_read_u32(gpi_dev->dev->of_node,
|
|
"qcom,static-gpii-mask", &gpi_dev->static_gpii_mask);
|
|
if (!ret)
|
|
GPI_LOG(gpi_dev, "static GPII usecase\n");
|
|
|
|
ret = of_property_read_u32(gpi_dev->dev->of_node,
|
|
"qcom,gpi-ee-offset", &gpi_ee_offset);
|
|
if (ret)
|
|
GPI_LOG(gpi_dev, "No variable ee offset present\n");
|
|
else
|
|
gpi_dev->ee_base =
|
|
(void *)((u64)gpi_dev->ee_base - gpi_ee_offset);
|
|
|
|
ret = of_property_read_u32(gpi_dev->dev->of_node, "qcom,ev-factor",
|
|
&gpi_dev->ev_factor);
|
|
if (ret) {
|
|
GPI_ERR(gpi_dev, "missing 'qcom,ev-factor' DT node\n");
|
|
return ret;
|
|
}
|
|
|
|
ret = dma_set_mask(gpi_dev->dev, DMA_BIT_MASK(64));
|
|
if (ret) {
|
|
GPI_ERR(gpi_dev,
|
|
"Error setting dma_mask to 64, ret:%d\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
gpi_dev->gpiis = devm_kzalloc(gpi_dev->dev,
|
|
sizeof(*gpi_dev->gpiis) * gpi_dev->max_gpii,
|
|
GFP_KERNEL);
|
|
if (!gpi_dev->gpiis)
|
|
return -ENOMEM;
|
|
|
|
mutex_init(&gpi_dev->qup_se_lock);
|
|
gpi_dev->is_le_vm = of_property_read_bool(pdev->dev.of_node, "qcom,le-vm");
|
|
if (gpi_dev->is_le_vm)
|
|
GPI_LOG(gpi_dev, "LE-VM usecase\n");
|
|
|
|
/* setup all the supported gpii */
|
|
INIT_LIST_HEAD(&gpi_dev->dma_device.channels);
|
|
for (i = 0; i < gpi_dev->max_gpii; i++) {
|
|
struct gpii *gpii = &gpi_dev->gpiis[i];
|
|
int chan;
|
|
|
|
gpii->gpii_chan[0].ch_ring = dmam_alloc_coherent(gpi_dev->dev,
|
|
sizeof(struct gpi_ring),
|
|
&gpii->gpii_chan[0].gpii_chan_dma,
|
|
GFP_KERNEL);
|
|
if (!gpii->gpii_chan[0].ch_ring) {
|
|
GPI_LOG(gpi_dev, "could not allocate for gpii->gpii_chan[0].ch_ring\n");
|
|
return -ENOMEM;
|
|
}
|
|
gpii->gpii_chan[1].ch_ring = dmam_alloc_coherent(gpi_dev->dev,
|
|
sizeof(struct gpi_ring),
|
|
&gpii->gpii_chan[1].gpii_chan_dma,
|
|
GFP_KERNEL);
|
|
if (!gpii->gpii_chan[1].ch_ring) {
|
|
GPI_LOG(gpi_dev, "could not allocate for gpii->gpii_chan[1].ch_ring\n");
|
|
return -ENOMEM;
|
|
}
|
|
gpii->ev_ring = dmam_alloc_coherent(gpi_dev->dev,
|
|
sizeof(struct gpi_ring),
|
|
&gpii->event_dma_addr, GFP_KERNEL);
|
|
if (!gpii->ev_ring) {
|
|
GPI_LOG(gpi_dev, "could not allocate for gpii->ev_ring\n");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
gpii->is_resumed = true;
|
|
|
|
if (!(((1 << i) & gpi_dev->gpii_mask) ||
|
|
((1 << i) & gpi_dev->static_gpii_mask)))
|
|
continue;
|
|
|
|
/* set up ev cntxt register map */
|
|
gpii->ev_cntxt_base_reg = gpi_dev->ee_base +
|
|
GPI_GPII_n_EV_CH_k_CNTXT_0_OFFS(i, 0);
|
|
gpii->ev_cntxt_db_reg = gpi_dev->ee_base +
|
|
GPI_GPII_n_EV_CH_k_DOORBELL_0_OFFS(i, 0);
|
|
gpii->ev_ring_base_lsb_reg = gpii->ev_cntxt_base_reg +
|
|
CNTXT_2_RING_BASE_LSB;
|
|
gpii->ev_ring_rp_lsb_reg = gpii->ev_cntxt_base_reg +
|
|
CNTXT_4_RING_RP_LSB;
|
|
gpii->ev_ring_wp_lsb_reg = gpii->ev_cntxt_base_reg +
|
|
CNTXT_6_RING_WP_LSB;
|
|
gpii->ev_cmd_reg = gpi_dev->ee_base +
|
|
GPI_GPII_n_EV_CH_CMD_OFFS(i);
|
|
gpii->ieob_src_reg = gpi_dev->ee_base +
|
|
GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_OFFS(i);
|
|
gpii->ieob_clr_reg = gpi_dev->ee_base +
|
|
GPI_GPII_n_CNTXT_SRC_IEOB_IRQ_CLR_OFFS(i);
|
|
|
|
/* set up irq */
|
|
ret = platform_get_irq(pdev, i);
|
|
if (ret < 0) {
|
|
GPI_ERR(gpi_dev, "could not req. irq for gpii%d ret:%d",
|
|
i, ret);
|
|
return ret;
|
|
}
|
|
gpii->irq = ret;
|
|
|
|
/* set up channel specific register info */
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
struct gpii_chan *gpii_chan = &gpii->gpii_chan[chan];
|
|
|
|
/* set up ch cntxt register map */
|
|
gpii_chan->ch_cntxt_base_reg = gpi_dev->ee_base +
|
|
GPI_GPII_n_CH_k_CNTXT_0_OFFS(i, chan);
|
|
gpii_chan->ch_cntxt_db_reg = gpi_dev->ee_base +
|
|
GPI_GPII_n_CH_k_DOORBELL_0_OFFS(i, chan);
|
|
gpii_chan->ch_ring_base_lsb_reg =
|
|
gpii_chan->ch_cntxt_base_reg +
|
|
CNTXT_2_RING_BASE_LSB;
|
|
gpii_chan->ch_ring_rp_lsb_reg =
|
|
gpii_chan->ch_cntxt_base_reg +
|
|
CNTXT_4_RING_RP_LSB;
|
|
gpii_chan->ch_ring_wp_lsb_reg =
|
|
gpii_chan->ch_cntxt_base_reg +
|
|
CNTXT_6_RING_WP_LSB;
|
|
gpii_chan->ch_cmd_reg = gpi_dev->ee_base +
|
|
GPI_GPII_n_CH_CMD_OFFS(i);
|
|
|
|
/* vchan setup */
|
|
vchan_init(&gpii_chan->vc, &gpi_dev->dma_device);
|
|
gpii_chan->vc.desc_free = gpi_desc_free;
|
|
gpii_chan->chid = chan;
|
|
gpii_chan->gpii = gpii;
|
|
gpii_chan->dir = GPII_CHAN_DIR[chan];
|
|
}
|
|
mutex_init(&gpii->ctrl_lock);
|
|
rwlock_init(&gpii->pm_lock);
|
|
tasklet_init(&gpii->ev_task, gpi_ev_tasklet,
|
|
(unsigned long)gpii);
|
|
init_completion(&gpii->cmd_completion);
|
|
gpii->gpii_id = i;
|
|
gpii->regs = gpi_dev->ee_base;
|
|
gpii->gpi_dev = gpi_dev;
|
|
atomic_set(&gpii->dbg_index, 0);
|
|
}
|
|
|
|
platform_set_drvdata(pdev, gpi_dev);
|
|
|
|
/* clear and Set capabilities */
|
|
dma_cap_zero(gpi_dev->dma_device.cap_mask);
|
|
dma_cap_set(DMA_SLAVE, gpi_dev->dma_device.cap_mask);
|
|
|
|
/* configure dmaengine apis */
|
|
gpi_dev->dma_device.directions =
|
|
BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
|
|
gpi_dev->dma_device.residue_granularity =
|
|
DMA_RESIDUE_GRANULARITY_DESCRIPTOR;
|
|
gpi_dev->dma_device.src_addr_widths = DMA_SLAVE_BUSWIDTH_8_BYTES;
|
|
gpi_dev->dma_device.dst_addr_widths = DMA_SLAVE_BUSWIDTH_8_BYTES;
|
|
gpi_dev->dma_device.device_alloc_chan_resources =
|
|
gpi_alloc_chan_resources;
|
|
gpi_dev->dma_device.device_free_chan_resources =
|
|
gpi_free_chan_resources;
|
|
gpi_dev->dma_device.device_tx_status = dma_cookie_status;
|
|
gpi_dev->dma_device.device_issue_pending = gpi_issue_pending;
|
|
gpi_dev->dma_device.device_prep_slave_sg = gpi_prep_slave_sg;
|
|
gpi_dev->dma_device.device_config = gpi_config;
|
|
gpi_dev->dma_device.device_terminate_all = gpi_terminate_all;
|
|
gpi_dev->dma_device.dev = gpi_dev->dev;
|
|
gpi_dev->dma_device.device_pause = gpi_pause;
|
|
gpi_dev->dma_device.device_resume = gpi_resume;
|
|
|
|
/* register with dmaengine framework */
|
|
ret = dma_async_device_register(&gpi_dev->dma_device);
|
|
if (ret) {
|
|
GPI_ERR(gpi_dev, "async_device_register failed ret:%d", ret);
|
|
return ret;
|
|
}
|
|
|
|
ret = of_dma_controller_register(gpi_dev->dev->of_node,
|
|
gpi_of_dma_xlate, gpi_dev);
|
|
if (ret) {
|
|
GPI_ERR(gpi_dev, "of_dma_controller_reg failed ret:%d", ret);
|
|
return ret;
|
|
}
|
|
|
|
/* setup debug capabilities */
|
|
gpi_setup_debug(gpi_dev);
|
|
GPI_LOG(gpi_dev, "%s: probe success\n", __func__);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int gpi_remove(struct platform_device *pdev)
|
|
{
|
|
struct gpi_dev *gpi_dev = platform_get_drvdata(pdev);
|
|
int i;
|
|
|
|
of_dma_controller_free(gpi_dev->dev->of_node);
|
|
dma_async_device_unregister(&gpi_dev->dma_device);
|
|
|
|
for (i = 0; i < gpi_dev->max_gpii; i++) {
|
|
struct gpii *gpii = &gpi_dev->gpiis[i];
|
|
int chan;
|
|
|
|
if (!(((1 << i) & gpi_dev->gpii_mask) ||
|
|
((1 << i) & gpi_dev->static_gpii_mask)))
|
|
continue;
|
|
|
|
for (chan = 0; chan < MAX_CHANNELS_PER_GPII; chan++) {
|
|
struct gpii_chan *gpii_chan = &gpii->gpii_chan[chan];
|
|
|
|
gpi_free_chan_resources(&gpii_chan->vc.chan);
|
|
}
|
|
|
|
if (gpii->ilctxt)
|
|
ipc_log_context_destroy(gpii->ilctxt);
|
|
}
|
|
|
|
for (i = 0; i < arr_idx; i++)
|
|
gpi_dev_dbg[i] = NULL;
|
|
arr_idx = 0;
|
|
|
|
if (gpi_dev->ilctxt)
|
|
ipc_log_context_destroy(gpi_dev->ilctxt);
|
|
|
|
debugfs_remove(pdentry);
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id gpi_of_match[] = {
|
|
{ .compatible = "qcom,gpi-dma" },
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(of, gpi_of_match);
|
|
|
|
static struct platform_driver gpi_driver = {
|
|
.probe = gpi_probe,
|
|
.remove = gpi_remove,
|
|
.driver = {
|
|
.name = GPI_DMA_DRV_NAME,
|
|
.of_match_table = gpi_of_match,
|
|
},
|
|
};
|
|
|
|
static int __init gpi_init(void)
|
|
{
|
|
pdentry = debugfs_create_dir(GPI_DMA_DRV_NAME, NULL);
|
|
return platform_driver_register(&gpi_driver);
|
|
}
|
|
|
|
static void __exit gpi_exit(void)
|
|
{
|
|
platform_driver_unregister(&gpi_driver);
|
|
}
|
|
|
|
module_init(gpi_init);
|
|
module_exit(gpi_exit);
|
|
|
|
MODULE_DESCRIPTION("QCOM GPI DMA engine driver");
|
|
MODULE_LICENSE("GPL");
|