2024-09-09 08:57:42 +00:00
|
|
|
/* Copyright (c) 2011-2015, The Linux Foundation. All rights reserved.
|
2024-09-09 08:52:07 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
|
|
* only version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/mfd/core.h>
|
2024-09-09 08:57:42 +00:00
|
|
|
#include <linux/mfd/wcd9xxx/core-resource.h>
|
2024-09-09 08:52:07 +00:00
|
|
|
#include <linux/mfd/wcd9xxx/wcd9xxx_registers.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/irqdomain.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_irq.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/ratelimit.h>
|
2024-09-09 08:57:42 +00:00
|
|
|
#include <soc/qcom/pm.h>
|
|
|
|
#include <linux/gpio.h>
|
|
|
|
#include <linux/of_gpio.h>
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
#define BYTE_BIT_MASK(nr) (1UL << ((nr) % BITS_PER_BYTE))
|
|
|
|
#define BIT_BYTE(nr) ((nr) / BITS_PER_BYTE)
|
|
|
|
|
|
|
|
#define WCD9XXX_SYSTEM_RESUME_TIMEOUT_MS 100
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#ifndef NO_IRQ
|
|
|
|
#define NO_IRQ (-1)
|
|
|
|
#endif
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
#ifdef CONFIG_OF
|
|
|
|
struct wcd9xxx_irq_drv_data {
|
|
|
|
struct irq_domain *domain;
|
|
|
|
int irq;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static int virq_to_phyirq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res, int virq);
|
|
|
|
static int phyirq_to_virq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res, int irq);
|
|
|
|
static unsigned int wcd9xxx_irq_get_upstream_irq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res);
|
|
|
|
static void wcd9xxx_irq_put_upstream_irq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res);
|
|
|
|
static int wcd9xxx_map_irq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res, int irq);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
static void wcd9xxx_irq_lock(struct irq_data *data)
|
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res =
|
|
|
|
irq_data_get_irq_chip_data(data);
|
|
|
|
mutex_lock(&wcd9xxx_res->irq_lock);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wcd9xxx_irq_sync_unlock(struct irq_data *data)
|
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res =
|
|
|
|
irq_data_get_irq_chip_data(data);
|
2024-09-09 08:52:07 +00:00
|
|
|
int i;
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
if ((ARRAY_SIZE(wcd9xxx_res->irq_masks_cur) >
|
|
|
|
WCD9XXX_MAX_IRQ_REGS) ||
|
|
|
|
(ARRAY_SIZE(wcd9xxx_res->irq_masks_cache) >
|
|
|
|
WCD9XXX_MAX_IRQ_REGS)) {
|
2024-09-09 08:52:07 +00:00
|
|
|
pr_err("%s: Array Size out of bound\n", __func__);
|
|
|
|
return;
|
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
if (!wcd9xxx_res->codec_reg_write) {
|
|
|
|
pr_err("%s: Codec reg write callback function not defined\n",
|
|
|
|
__func__);
|
|
|
|
return;
|
|
|
|
}
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(wcd9xxx_res->irq_masks_cur); i++) {
|
2024-09-09 08:52:07 +00:00
|
|
|
/* If there's been a change in the mask write it back
|
|
|
|
* to the hardware.
|
|
|
|
*/
|
2024-09-09 08:57:42 +00:00
|
|
|
if (wcd9xxx_res->irq_masks_cur[i] !=
|
|
|
|
wcd9xxx_res->irq_masks_cache[i]) {
|
|
|
|
|
|
|
|
wcd9xxx_res->irq_masks_cache[i] =
|
|
|
|
wcd9xxx_res->irq_masks_cur[i];
|
|
|
|
wcd9xxx_res->codec_reg_write(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_MASK_BASE] + i,
|
|
|
|
wcd9xxx_res->irq_masks_cur[i]);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_unlock(&wcd9xxx_res->irq_lock);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wcd9xxx_irq_enable(struct irq_data *data)
|
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res =
|
|
|
|
irq_data_get_irq_chip_data(data);
|
|
|
|
int wcd9xxx_irq = virq_to_phyirq(wcd9xxx_res, data->irq);
|
|
|
|
int byte = BIT_BYTE(wcd9xxx_irq);
|
|
|
|
int size = ARRAY_SIZE(wcd9xxx_res->irq_masks_cur);
|
|
|
|
if ((byte < size) && (byte >= 0)) {
|
|
|
|
wcd9xxx_res->irq_masks_cur[byte] &=
|
|
|
|
~(BYTE_BIT_MASK(wcd9xxx_irq));
|
|
|
|
} else {
|
|
|
|
pr_err("%s: Array size is %d but index is %d: Out of range\n",
|
|
|
|
__func__, size, byte);
|
|
|
|
}
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wcd9xxx_irq_disable(struct irq_data *data)
|
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res =
|
|
|
|
irq_data_get_irq_chip_data(data);
|
|
|
|
int wcd9xxx_irq = virq_to_phyirq(wcd9xxx_res, data->irq);
|
|
|
|
int byte = BIT_BYTE(wcd9xxx_irq);
|
|
|
|
int size = ARRAY_SIZE(wcd9xxx_res->irq_masks_cur);
|
|
|
|
if ((byte < size) && (byte >= 0)) {
|
|
|
|
wcd9xxx_res->irq_masks_cur[byte]
|
|
|
|
|= BYTE_BIT_MASK(wcd9xxx_irq);
|
|
|
|
} else {
|
|
|
|
pr_err("%s: Array size is %d but index is %d: Out of range\n",
|
|
|
|
__func__, size, byte);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wcd9xxx_irq_ack(struct irq_data *data)
|
|
|
|
{
|
|
|
|
int wcd9xxx_irq = 0;
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res =
|
|
|
|
irq_data_get_irq_chip_data(data);
|
|
|
|
|
|
|
|
if (wcd9xxx_res == NULL) {
|
|
|
|
pr_err("%s: wcd9xxx_res is NULL\n", __func__);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wcd9xxx_irq = virq_to_phyirq(wcd9xxx_res, data->irq);
|
|
|
|
pr_debug("%s: IRQ_ACK called for WCD9XXX IRQ: %d\n",
|
|
|
|
__func__, wcd9xxx_irq);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wcd9xxx_irq_mask(struct irq_data *d)
|
|
|
|
{
|
|
|
|
/* do nothing but required as linux calls irq_mask without NULL check */
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct irq_chip wcd9xxx_irq_chip = {
|
|
|
|
.name = "wcd9xxx",
|
|
|
|
.irq_bus_lock = wcd9xxx_irq_lock,
|
|
|
|
.irq_bus_sync_unlock = wcd9xxx_irq_sync_unlock,
|
|
|
|
.irq_disable = wcd9xxx_irq_disable,
|
|
|
|
.irq_enable = wcd9xxx_irq_enable,
|
|
|
|
.irq_mask = wcd9xxx_irq_mask,
|
2024-09-09 08:57:42 +00:00
|
|
|
.irq_ack = wcd9xxx_irq_ack,
|
2024-09-09 08:52:07 +00:00
|
|
|
};
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
bool wcd9xxx_lock_sleep(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
enum wcd9xxx_pm_state os;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wcd9xxx_{lock/unlock}_sleep will be called by wcd9xxx_irq_thread
|
|
|
|
* and its subroutines only motly.
|
|
|
|
* but btn0_lpress_fn is not wcd9xxx_irq_thread's subroutine and
|
|
|
|
* It can race with wcd9xxx_irq_thread.
|
|
|
|
* So need to embrace wlock_holders with mutex.
|
|
|
|
*
|
|
|
|
* If system didn't resume, we can simply return false so codec driver's
|
|
|
|
* IRQ handler can return without handling IRQ.
|
|
|
|
* As interrupt line is still active, codec will have another IRQ to
|
|
|
|
* retry shortly.
|
|
|
|
*/
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_lock(&wcd9xxx_res->pm_lock);
|
|
|
|
if (wcd9xxx_res->wlock_holders++ == 0) {
|
2024-09-09 08:52:07 +00:00
|
|
|
pr_debug("%s: holding wake lock\n", __func__);
|
2024-09-09 08:57:42 +00:00
|
|
|
pm_qos_update_request(&wcd9xxx_res->pm_qos_req,
|
2024-09-09 08:52:07 +00:00
|
|
|
msm_cpuidle_get_deep_idle_latency());
|
2024-09-09 08:57:42 +00:00
|
|
|
pm_stay_awake(wcd9xxx_res->dev);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_unlock(&wcd9xxx_res->pm_lock);
|
|
|
|
|
|
|
|
if (!wait_event_timeout(wcd9xxx_res->pm_wq,
|
|
|
|
((os = wcd9xxx_pm_cmpxchg(wcd9xxx_res,
|
|
|
|
WCD9XXX_PM_SLEEPABLE,
|
|
|
|
WCD9XXX_PM_AWAKE)) ==
|
|
|
|
WCD9XXX_PM_SLEEPABLE ||
|
|
|
|
(os == WCD9XXX_PM_AWAKE)),
|
|
|
|
msecs_to_jiffies(
|
|
|
|
WCD9XXX_SYSTEM_RESUME_TIMEOUT_MS))) {
|
2024-09-09 08:52:07 +00:00
|
|
|
pr_warn("%s: system didn't resume within %dms, s %d, w %d\n",
|
|
|
|
__func__,
|
2024-09-09 08:57:42 +00:00
|
|
|
WCD9XXX_SYSTEM_RESUME_TIMEOUT_MS, wcd9xxx_res->pm_state,
|
|
|
|
wcd9xxx_res->wlock_holders);
|
|
|
|
wcd9xxx_unlock_sleep(wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
wake_up_all(&wcd9xxx_res->pm_wq);
|
2024-09-09 08:52:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
EXPORT_SYMBOL(wcd9xxx_lock_sleep);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
void wcd9xxx_unlock_sleep(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_lock(&wcd9xxx_res->pm_lock);
|
|
|
|
if (--wcd9xxx_res->wlock_holders == 0) {
|
2024-09-09 08:52:07 +00:00
|
|
|
pr_debug("%s: releasing wake lock pm_state %d -> %d\n",
|
2024-09-09 08:57:42 +00:00
|
|
|
__func__, wcd9xxx_res->pm_state, WCD9XXX_PM_SLEEPABLE);
|
2024-09-09 08:52:07 +00:00
|
|
|
/*
|
|
|
|
* if wcd9xxx_lock_sleep failed, pm_state would be still
|
|
|
|
* WCD9XXX_PM_ASLEEP, don't overwrite
|
|
|
|
*/
|
2024-09-09 08:57:42 +00:00
|
|
|
if (likely(wcd9xxx_res->pm_state == WCD9XXX_PM_AWAKE))
|
|
|
|
wcd9xxx_res->pm_state = WCD9XXX_PM_SLEEPABLE;
|
|
|
|
pm_qos_update_request(&wcd9xxx_res->pm_qos_req,
|
2024-09-09 08:52:07 +00:00
|
|
|
PM_QOS_DEFAULT_VALUE);
|
2024-09-09 08:57:42 +00:00
|
|
|
pm_relax(wcd9xxx_res->dev);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_unlock(&wcd9xxx_res->pm_lock);
|
|
|
|
wake_up_all(&wcd9xxx_res->pm_wq);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
EXPORT_SYMBOL(wcd9xxx_unlock_sleep);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
void wcd9xxx_nested_irq_lock(struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_lock(&wcd9xxx_res->nested_irq_lock);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
void wcd9xxx_nested_irq_unlock(struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_unlock(&wcd9xxx_res->nested_irq_lock);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static void wcd9xxx_irq_dispatch(struct wcd9xxx_core_resource *wcd9xxx_res,
|
|
|
|
struct intr_data *irqdata)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
int irqbit = irqdata->intr_num;
|
|
|
|
if (!wcd9xxx_res->codec_reg_write) {
|
|
|
|
pr_err("%s: codec read/write callback not defined\n",
|
|
|
|
__func__);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (irqdata->clear_first) {
|
|
|
|
wcd9xxx_nested_irq_lock(wcd9xxx_res);
|
|
|
|
wcd9xxx_res->codec_reg_write(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLEAR_BASE] +
|
|
|
|
BIT_BYTE(irqbit),
|
|
|
|
BYTE_BIT_MASK(irqbit));
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
if (wcd9xxx_get_intf_type() == WCD9XXX_INTERFACE_TYPE_I2C)
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_res->codec_reg_write(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLR_COMMIT],
|
|
|
|
0x02);
|
|
|
|
handle_nested_irq(phyirq_to_virq(wcd9xxx_res, irqbit));
|
|
|
|
wcd9xxx_nested_irq_unlock(wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
} else {
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_nested_irq_lock(wcd9xxx_res);
|
|
|
|
handle_nested_irq(phyirq_to_virq(wcd9xxx_res, irqbit));
|
|
|
|
wcd9xxx_res->codec_reg_write(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLEAR_BASE] +
|
|
|
|
BIT_BYTE(irqbit),
|
|
|
|
BYTE_BIT_MASK(irqbit));
|
2024-09-09 08:52:07 +00:00
|
|
|
if (wcd9xxx_get_intf_type() == WCD9XXX_INTERFACE_TYPE_I2C)
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_res->codec_reg_write(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLR_COMMIT],
|
|
|
|
0x02);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_nested_irq_unlock(wcd9xxx_res);
|
|
|
|
}
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static irqreturn_t wcd9xxx_irq_thread(int irq, void *data)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int i;
|
2024-09-09 08:57:42 +00:00
|
|
|
struct intr_data irqdata;
|
2024-09-09 08:52:07 +00:00
|
|
|
char linebuf[128];
|
|
|
|
static DEFINE_RATELIMIT_STATE(ratelimit, 5 * HZ, 1);
|
2024-09-09 08:57:42 +00:00
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res = data;
|
|
|
|
int num_irq_regs = wcd9xxx_res->num_irq_regs;
|
|
|
|
u8 status[num_irq_regs], status1[num_irq_regs];
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
if (unlikely(wcd9xxx_lock_sleep(wcd9xxx_res) == false)) {
|
|
|
|
dev_err(wcd9xxx_res->dev, "Failed to hold suspend\n");
|
2024-09-09 08:52:07 +00:00
|
|
|
return IRQ_NONE;
|
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
|
|
|
|
if (!wcd9xxx_res->codec_bulk_read) {
|
|
|
|
dev_err(wcd9xxx_res->dev,
|
|
|
|
"%s: Codec Bulk Register read callback not supplied\n",
|
|
|
|
__func__);
|
|
|
|
goto err_disable_irq;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = wcd9xxx_res->codec_bulk_read(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_STATUS_BASE],
|
|
|
|
num_irq_regs, status);
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
if (ret < 0) {
|
2024-09-09 08:57:42 +00:00
|
|
|
dev_err(wcd9xxx_res->dev,
|
|
|
|
"Failed to read interrupt status: %d\n", ret);
|
|
|
|
goto err_disable_irq;
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Apply masking */
|
|
|
|
for (i = 0; i < num_irq_regs; i++)
|
2024-09-09 08:57:42 +00:00
|
|
|
status[i] &= ~wcd9xxx_res->irq_masks_cur[i];
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
memcpy(status1, status, sizeof(status1));
|
|
|
|
|
|
|
|
/* Find out which interrupt was triggered and call that interrupt's
|
|
|
|
* handler function
|
2024-09-09 08:57:42 +00:00
|
|
|
*
|
|
|
|
* Since codec has only one hardware irq line which is shared by
|
2024-09-09 08:52:07 +00:00
|
|
|
* codec's different internal interrupts, so it's possible master irq
|
|
|
|
* handler dispatches multiple nested irq handlers after breaking
|
2024-09-09 08:57:42 +00:00
|
|
|
* order. Dispatch interrupts in the order that is maintained by
|
|
|
|
* the interrupt table.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < wcd9xxx_res->intr_table_size; i++) {
|
|
|
|
irqdata = wcd9xxx_res->intr_table[i];
|
|
|
|
if (status[BIT_BYTE(irqdata.intr_num)] &
|
|
|
|
BYTE_BIT_MASK(irqdata.intr_num)) {
|
|
|
|
wcd9xxx_irq_dispatch(wcd9xxx_res, &irqdata);
|
|
|
|
status1[BIT_BYTE(irqdata.intr_num)] &=
|
|
|
|
~BYTE_BIT_MASK(irqdata.intr_num);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* As a failsafe if unhandled irq is found, clear it to prevent
|
|
|
|
* interrupt storm.
|
|
|
|
* Note that we can say there was an unhandled irq only when no irq
|
|
|
|
* handled by nested irq handler since Taiko supports qdsp as irqs'
|
|
|
|
* destination for few irqs. Therefore driver shouldn't clear pending
|
|
|
|
* irqs when few handled while few others not.
|
|
|
|
*/
|
|
|
|
if (unlikely(!memcmp(status, status1, sizeof(status)))) {
|
|
|
|
if (__ratelimit(&ratelimit)) {
|
|
|
|
pr_warn("%s: Unhandled irq found\n", __func__);
|
|
|
|
hex_dump_to_buffer(status, sizeof(status), 16, 1,
|
|
|
|
linebuf, sizeof(linebuf), false);
|
|
|
|
pr_warn("%s: status0 : %s\n", __func__, linebuf);
|
|
|
|
hex_dump_to_buffer(status1, sizeof(status1), 16, 1,
|
|
|
|
linebuf, sizeof(linebuf), false);
|
|
|
|
pr_warn("%s: status1 : %s\n", __func__, linebuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(status, 0xff, num_irq_regs);
|
2024-09-09 08:57:42 +00:00
|
|
|
|
|
|
|
ret = wcd9xxx_res->codec_bulk_write(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLEAR_BASE],
|
|
|
|
num_irq_regs, status);
|
2024-09-09 08:52:07 +00:00
|
|
|
if (wcd9xxx_get_intf_type() == WCD9XXX_INTERFACE_TYPE_I2C)
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_res->codec_reg_write(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLR_COMMIT],
|
|
|
|
0x02);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_unlock_sleep(wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
2024-09-09 08:57:42 +00:00
|
|
|
|
|
|
|
err_disable_irq:
|
|
|
|
dev_err(wcd9xxx_res->dev,
|
|
|
|
"Disable irq %d\n", wcd9xxx_res->irq);
|
|
|
|
|
|
|
|
disable_irq_wake(wcd9xxx_res->irq);
|
|
|
|
disable_irq_nosync(wcd9xxx_res->irq);
|
|
|
|
wcd9xxx_unlock_sleep(wcd9xxx_res);
|
|
|
|
return IRQ_NONE;
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
void wcd9xxx_free_irq(struct wcd9xxx_core_resource *wcd9xxx_res,
|
|
|
|
int irq, void *data)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
free_irq(phyirq_to_virq(wcd9xxx_res, irq), data);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
void wcd9xxx_enable_irq(struct wcd9xxx_core_resource *wcd9xxx_res, int irq)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
enable_irq(phyirq_to_virq(wcd9xxx_res, irq));
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
void wcd9xxx_disable_irq(struct wcd9xxx_core_resource *wcd9xxx_res, int irq)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
disable_irq_nosync(phyirq_to_virq(wcd9xxx_res, irq));
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
void wcd9xxx_disable_irq_sync(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res, int irq)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
disable_irq(phyirq_to_virq(wcd9xxx_res, irq));
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static int wcd9xxx_irq_setup_downstream_irq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
int irq, virq, ret;
|
|
|
|
|
|
|
|
pr_debug("%s: enter\n", __func__);
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
for (irq = 0; irq < wcd9xxx_res->num_irqs; irq++) {
|
2024-09-09 08:52:07 +00:00
|
|
|
/* Map OF irq */
|
2024-09-09 08:57:42 +00:00
|
|
|
virq = wcd9xxx_map_irq(wcd9xxx_res, irq);
|
2024-09-09 08:52:07 +00:00
|
|
|
pr_debug("%s: irq %d -> %d\n", __func__, irq, virq);
|
|
|
|
if (virq == NO_IRQ) {
|
|
|
|
pr_err("%s, No interrupt specifier for irq %d\n",
|
|
|
|
__func__, irq);
|
|
|
|
return NO_IRQ;
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
ret = irq_set_chip_data(virq, wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
if (ret) {
|
|
|
|
pr_err("%s: Failed to configure irq %d (%d)\n",
|
|
|
|
__func__, irq, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
if (wcd9xxx_res->irq_level_high[irq])
|
2024-09-09 08:52:07 +00:00
|
|
|
irq_set_chip_and_handler(virq, &wcd9xxx_irq_chip,
|
|
|
|
handle_level_irq);
|
|
|
|
else
|
|
|
|
irq_set_chip_and_handler(virq, &wcd9xxx_irq_chip,
|
|
|
|
handle_edge_irq);
|
|
|
|
|
|
|
|
irq_set_nested_thread(virq, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pr_debug("%s: leave\n", __func__);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
int wcd9xxx_irq_init(struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
int i, ret;
|
2024-09-09 08:57:42 +00:00
|
|
|
u8 irq_level[wcd9xxx_res->num_irq_regs];
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_init(&wcd9xxx_res->irq_lock);
|
|
|
|
mutex_init(&wcd9xxx_res->nested_irq_lock);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_res->irq = wcd9xxx_irq_get_upstream_irq(wcd9xxx_res);
|
|
|
|
if (!wcd9xxx_res->irq) {
|
2024-09-09 08:52:07 +00:00
|
|
|
pr_warn("%s: irq driver is not yet initialized\n", __func__);
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_destroy(&wcd9xxx_res->irq_lock);
|
|
|
|
mutex_destroy(&wcd9xxx_res->nested_irq_lock);
|
2024-09-09 08:52:07 +00:00
|
|
|
return -EPROBE_DEFER;
|
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
pr_debug("%s: probed irq %d\n", __func__, wcd9xxx_res->irq);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
/* Setup downstream IRQs */
|
2024-09-09 08:57:42 +00:00
|
|
|
ret = wcd9xxx_irq_setup_downstream_irq(wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
if (ret) {
|
|
|
|
pr_err("%s: Failed to setup downstream IRQ\n", __func__);
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_irq_put_upstream_irq(wcd9xxx_res);
|
|
|
|
mutex_destroy(&wcd9xxx_res->irq_lock);
|
|
|
|
mutex_destroy(&wcd9xxx_res->nested_irq_lock);
|
2024-09-09 08:52:07 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All other wcd9xxx interrupts are edge triggered */
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_res->irq_level_high[0] = true;
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
/* mask all the interrupts */
|
2024-09-09 08:57:42 +00:00
|
|
|
memset(irq_level, 0, wcd9xxx_res->num_irq_regs);
|
|
|
|
for (i = 0; i < wcd9xxx_res->num_irqs; i++) {
|
|
|
|
wcd9xxx_res->irq_masks_cur[BIT_BYTE(i)] |= BYTE_BIT_MASK(i);
|
|
|
|
wcd9xxx_res->irq_masks_cache[BIT_BYTE(i)] |= BYTE_BIT_MASK(i);
|
2024-09-09 08:52:07 +00:00
|
|
|
irq_level[BIT_BYTE(i)] |=
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_res->irq_level_high[i] << (i % BITS_PER_BYTE);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
if (!wcd9xxx_res->codec_reg_write) {
|
|
|
|
dev_err(wcd9xxx_res->dev,
|
|
|
|
"%s: Codec Register write callback not defined\n",
|
|
|
|
__func__);
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto fail_irq_init;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < wcd9xxx_res->num_irq_regs; i++) {
|
2024-09-09 08:52:07 +00:00
|
|
|
/* Initialize interrupt mask and level registers */
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_res->codec_reg_write(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_LEVEL_BASE] + i,
|
|
|
|
irq_level[i]);
|
|
|
|
wcd9xxx_res->codec_reg_write(wcd9xxx_res,
|
|
|
|
wcd9xxx_res->intr_reg[WCD9XXX_INTR_MASK_BASE] + i,
|
|
|
|
wcd9xxx_res->irq_masks_cur[i]);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
ret = request_threaded_irq(wcd9xxx_res->irq, NULL, wcd9xxx_irq_thread,
|
2024-09-09 08:52:07 +00:00
|
|
|
IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
|
2024-09-09 08:57:42 +00:00
|
|
|
"wcd9xxx", wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
if (ret != 0)
|
2024-09-09 08:57:42 +00:00
|
|
|
dev_err(wcd9xxx_res->dev, "Failed to request IRQ %d: %d\n",
|
|
|
|
wcd9xxx_res->irq, ret);
|
2024-09-09 08:52:07 +00:00
|
|
|
else {
|
2024-09-09 08:57:42 +00:00
|
|
|
ret = enable_irq_wake(wcd9xxx_res->irq);
|
|
|
|
if (ret)
|
|
|
|
dev_err(wcd9xxx_res->dev,
|
|
|
|
"Failed to set wake interrupt on IRQ %d: %d\n",
|
|
|
|
wcd9xxx_res->irq, ret);
|
2024-09-09 08:52:07 +00:00
|
|
|
if (ret)
|
2024-09-09 08:57:42 +00:00
|
|
|
free_irq(wcd9xxx_res->irq, wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
if (ret)
|
|
|
|
goto fail_irq_init;
|
|
|
|
|
|
|
|
return ret;
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
fail_irq_init:
|
|
|
|
dev_err(wcd9xxx_res->dev,
|
|
|
|
"%s: Failed to init wcd9xxx irq\n", __func__);
|
|
|
|
wcd9xxx_irq_put_upstream_irq(wcd9xxx_res);
|
|
|
|
mutex_destroy(&wcd9xxx_res->irq_lock);
|
|
|
|
mutex_destroy(&wcd9xxx_res->nested_irq_lock);
|
2024-09-09 08:52:07 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
int wcd9xxx_request_irq(struct wcd9xxx_core_resource *wcd9xxx_res,
|
|
|
|
int irq, irq_handler_t handler,
|
2024-09-09 08:52:07 +00:00
|
|
|
const char *name, void *data)
|
|
|
|
{
|
|
|
|
int virq;
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
virq = phyirq_to_virq(wcd9xxx_res, irq);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ARM needs us to explicitly flag the IRQ as valid
|
|
|
|
* and will set them noprobe when we do so.
|
|
|
|
*/
|
2024-09-09 08:57:42 +00:00
|
|
|
#if defined(CONFIG_ARM) || defined(CONFIG_ARM64)
|
2024-09-09 08:52:07 +00:00
|
|
|
set_irq_flags(virq, IRQF_VALID);
|
|
|
|
#else
|
|
|
|
set_irq_noprobe(virq);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return request_threaded_irq(virq, NULL, handler, IRQF_TRIGGER_RISING,
|
|
|
|
name, data);
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
void wcd9xxx_irq_exit(struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
dev_dbg(wcd9xxx_res->dev, "%s: Cleaning up irq %d\n", __func__,
|
|
|
|
wcd9xxx_res->irq);
|
|
|
|
|
|
|
|
if (wcd9xxx_res->irq) {
|
|
|
|
disable_irq_wake(wcd9xxx_res->irq);
|
|
|
|
free_irq(wcd9xxx_res->irq, wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
/* Release parent's of node */
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_irq_put_upstream_irq(wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
2024-09-09 08:57:42 +00:00
|
|
|
mutex_destroy(&wcd9xxx_res->irq_lock);
|
|
|
|
mutex_destroy(&wcd9xxx_res->nested_irq_lock);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef CONFIG_OF
|
2024-09-09 08:57:42 +00:00
|
|
|
static int phyirq_to_virq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res,
|
|
|
|
int offset)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
return wcd9xxx_res->irq_base + offset;
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static int virq_to_phyirq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res,
|
|
|
|
int virq)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
return virq - wcd9xxx_res->irq_base;
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static unsigned int wcd9xxx_irq_get_upstream_irq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
return wcd9xxx_res->irq;
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static void wcd9xxx_irq_put_upstream_irq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
/* Do nothing */
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static int wcd9xxx_map_irq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_core_res, int irq)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
return phyirq_to_virq(wcd9xxx_core_res, irq);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
int __init wcd9xxx_irq_of_init(struct device_node *node,
|
|
|
|
struct device_node *parent)
|
|
|
|
{
|
|
|
|
struct wcd9xxx_irq_drv_data *data;
|
|
|
|
|
|
|
|
pr_debug("%s: node %s, node parent %s\n", __func__,
|
|
|
|
node->name, node->parent->name);
|
|
|
|
|
|
|
|
data = kzalloc(sizeof(*data), GFP_KERNEL);
|
|
|
|
if (!data)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wcd9xxx_intc interrupt controller supports N to N irq mapping with
|
|
|
|
* single cell binding with irq numbers(offsets) only.
|
|
|
|
* Use irq_domain_simple_ops that has irq_domain_simple_map and
|
|
|
|
* irq_domain_xlate_onetwocell.
|
|
|
|
*/
|
|
|
|
data->domain = irq_domain_add_linear(node, WCD9XXX_MAX_NUM_IRQS,
|
|
|
|
&irq_domain_simple_ops, data);
|
|
|
|
if (!data->domain) {
|
|
|
|
kfree(data);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct wcd9xxx_irq_drv_data *
|
2024-09-09 08:57:42 +00:00
|
|
|
wcd9xxx_get_irq_drv_d(const struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
struct device_node *pnode;
|
|
|
|
struct irq_domain *domain;
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
pnode = of_irq_find_parent(wcd9xxx_res->dev->of_node);
|
2024-09-09 08:52:07 +00:00
|
|
|
/* Shouldn't happen */
|
|
|
|
if (unlikely(!pnode))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
domain = irq_find_host(pnode);
|
2024-09-09 08:57:42 +00:00
|
|
|
if (unlikely(!domain))
|
|
|
|
return NULL;
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
return (struct wcd9xxx_irq_drv_data *)domain->host_data;
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static int phyirq_to_virq(struct wcd9xxx_core_resource *wcd9xxx_res, int offset)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
struct wcd9xxx_irq_drv_data *data;
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
data = wcd9xxx_get_irq_drv_d(wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
if (!data) {
|
|
|
|
pr_warn("%s: not registered to interrupt controller\n",
|
|
|
|
__func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return irq_linear_revmap(data->domain, offset);
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static int virq_to_phyirq(struct wcd9xxx_core_resource *wcd9xxx_res, int virq)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
struct irq_data *irq_data = irq_get_irq_data(virq);
|
2024-09-09 08:57:42 +00:00
|
|
|
if (unlikely(!irq_data)) {
|
|
|
|
pr_err("%s: irq_data is NULL", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2024-09-09 08:52:07 +00:00
|
|
|
return irq_data->hwirq;
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static unsigned int wcd9xxx_irq_get_upstream_irq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
struct wcd9xxx_irq_drv_data *data;
|
|
|
|
|
|
|
|
/* Hold parent's of node */
|
2024-09-09 08:57:42 +00:00
|
|
|
if (!of_node_get(of_irq_find_parent(wcd9xxx_res->dev->of_node)))
|
2024-09-09 08:52:07 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
data = wcd9xxx_get_irq_drv_d(wcd9xxx_res);
|
2024-09-09 08:52:07 +00:00
|
|
|
if (!data) {
|
|
|
|
pr_err("%s: interrupt controller is not registerd\n", __func__);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
rmb();
|
|
|
|
return data->irq;
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static void wcd9xxx_irq_put_upstream_irq(
|
|
|
|
struct wcd9xxx_core_resource *wcd9xxx_res)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
/* Hold parent's of node */
|
2024-09-09 08:57:42 +00:00
|
|
|
of_node_put(of_irq_find_parent(wcd9xxx_res->dev->of_node));
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static int wcd9xxx_map_irq(struct wcd9xxx_core_resource *wcd9xxx_res, int irq)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
return of_irq_to_resource(wcd9xxx_res->dev->of_node, irq, NULL);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static int wcd9xxx_irq_probe(struct platform_device *pdev)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
|
|
|
int irq;
|
|
|
|
struct irq_domain *domain;
|
|
|
|
struct wcd9xxx_irq_drv_data *data;
|
2024-09-09 08:57:42 +00:00
|
|
|
struct device_node *node = pdev->dev.of_node;
|
2024-09-09 08:52:07 +00:00
|
|
|
int ret = -EINVAL;
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
irq = of_get_named_gpio(node, "qcom,gpio-connect", 0);
|
|
|
|
if (!gpio_is_valid(irq)) {
|
|
|
|
dev_err(&pdev->dev, "TLMM connect gpio not found\n");
|
|
|
|
return -EPROBE_DEFER;
|
2024-09-09 08:52:07 +00:00
|
|
|
} else {
|
2024-09-09 08:57:42 +00:00
|
|
|
irq = gpio_to_irq(irq);
|
|
|
|
if (irq < 0) {
|
|
|
|
dev_err(&pdev->dev, "Unable to configure irq\n");
|
|
|
|
return irq;
|
|
|
|
}
|
2024-09-09 08:52:07 +00:00
|
|
|
dev_dbg(&pdev->dev, "%s: virq = %d\n", __func__, irq);
|
|
|
|
domain = irq_find_host(pdev->dev.of_node);
|
2024-09-09 08:57:42 +00:00
|
|
|
if (unlikely(!domain)) {
|
|
|
|
pr_err("%s: domain is NULL", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2024-09-09 08:52:07 +00:00
|
|
|
data = (struct wcd9xxx_irq_drv_data *)domain->host_data;
|
|
|
|
data->irq = irq;
|
|
|
|
wmb();
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int wcd9xxx_irq_remove(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct irq_domain *domain;
|
|
|
|
struct wcd9xxx_irq_drv_data *data;
|
|
|
|
|
|
|
|
domain = irq_find_host(pdev->dev.of_node);
|
2024-09-09 08:57:42 +00:00
|
|
|
if (unlikely(!domain)) {
|
|
|
|
pr_err("%s: domain is NULL", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2024-09-09 08:52:07 +00:00
|
|
|
data = (struct wcd9xxx_irq_drv_data *)domain->host_data;
|
|
|
|
data->irq = 0;
|
|
|
|
wmb();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct of_device_id of_match[] = {
|
|
|
|
{ .compatible = "qcom,wcd9xxx-irq" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_driver wcd9xxx_irq_driver = {
|
|
|
|
.probe = wcd9xxx_irq_probe,
|
|
|
|
.remove = wcd9xxx_irq_remove,
|
|
|
|
.driver = {
|
|
|
|
.name = "wcd9xxx_intc",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.of_match_table = of_match_ptr(of_match),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int wcd9xxx_irq_drv_init(void)
|
|
|
|
{
|
|
|
|
return platform_driver_register(&wcd9xxx_irq_driver);
|
|
|
|
}
|
|
|
|
subsys_initcall(wcd9xxx_irq_drv_init);
|
|
|
|
|
|
|
|
static void wcd9xxx_irq_drv_exit(void)
|
|
|
|
{
|
|
|
|
platform_driver_unregister(&wcd9xxx_irq_driver);
|
|
|
|
}
|
|
|
|
module_exit(wcd9xxx_irq_drv_exit);
|
|
|
|
#endif /* CONFIG_OF */
|