From: Dmitry Osipenko <digetx@gmail.com>
To: Lee Jones <lee.jones@linaro.org>,
Thierry Reding <thierry.reding@gmail.com>,
Jonathan Hunter <jonathanh@nvidia.com>
Cc: linux-tegra@vger.kernel.org, linux-i2c@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH v1] mfd: tps6586x: Move interrupt handling into workqueue
Date: Mon, 14 May 2018 00:18:42 +0300 [thread overview]
Message-ID: <20180513211842.7819-1-digetx@gmail.com> (raw)
Reading of status register within the interrupt handler fails with -EAGAIN
if I2C is busy with handling some other request at the same time. Move the
actual interrupt handling into a workqueue to avoid the unfortunate I2C
failure and to avoid hanging CPU in interrupt up to 1 second (transfer
timeout in the Tegra I2C driver).
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
---
drivers/mfd/tps6586x.c | 40 +++++++++++++++++++++++++++++-----------
1 file changed, 29 insertions(+), 11 deletions(-)
diff --git a/drivers/mfd/tps6586x.c b/drivers/mfd/tps6586x.c
index b89379782741..9896e080b274 100644
--- a/drivers/mfd/tps6586x.c
+++ b/drivers/mfd/tps6586x.c
@@ -133,6 +133,7 @@ struct tps6586x {
u32 irq_en;
u8 mask_reg[5];
struct irq_domain *irq_domain;
+ struct work_struct isr_work;
};
static inline struct tps6586x *dev_to_tps6586x(struct device *dev)
@@ -309,18 +310,19 @@ static const struct irq_domain_ops tps6586x_domain_ops = {
.xlate = irq_domain_xlate_twocell,
};
-static irqreturn_t tps6586x_irq(int irq, void *data)
+static void tps6586x_isr_work(struct work_struct *work)
{
- struct tps6586x *tps6586x = data;
+ struct tps6586x *tps6586x = container_of(work, struct tps6586x,
+ isr_work);
u32 acks;
- int ret = 0;
+ int err;
- ret = tps6586x_reads(tps6586x->dev, TPS6586X_INT_ACK1,
+ err = tps6586x_reads(tps6586x->dev, TPS6586X_INT_ACK1,
sizeof(acks), (uint8_t *)&acks);
-
- if (ret < 0) {
- dev_err(tps6586x->dev, "failed to read interrupt status\n");
- return IRQ_NONE;
+ if (err < 0) {
+ dev_err(tps6586x->dev,
+ "failed to read interrupt status %d\n", err);
+ return;
}
acks = le32_to_cpu(acks);
@@ -335,6 +337,16 @@ static irqreturn_t tps6586x_irq(int irq, void *data)
acks &= ~(1 << i);
}
+ enable_irq(tps6586x->irq);
+}
+
+static irqreturn_t tps6586x_irq(int irq, void *data)
+{
+ struct tps6586x *tps6586x = data;
+
+ disable_irq_nosync(irq);
+ schedule_work(&tps6586x->isr_work);
+
return IRQ_HANDLED;
}
@@ -542,8 +554,9 @@ static int tps6586x_i2c_probe(struct i2c_client *client,
return ret;
}
-
if (client->irq) {
+ INIT_WORK(&tps6586x->isr_work, tps6586x_isr_work);
+
ret = tps6586x_irq_init(tps6586x, client->irq,
pdata->irq_base);
if (ret) {
@@ -585,10 +598,15 @@ static int tps6586x_i2c_remove(struct i2c_client *client)
{
struct tps6586x *tps6586x = i2c_get_clientdata(client);
+ if (client->irq) {
+ disable_irq(client->irq);
+ flush_work(&tps6586x->isr_work);
+ free_irq(client->irq, tps6586x);
+ }
+
tps6586x_remove_subdevs(tps6586x);
mfd_remove_devices(tps6586x->dev);
- if (client->irq)
- free_irq(client->irq, tps6586x);
+
return 0;
}
--
2.17.0
next reply other threads:[~2018-05-13 21:18 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-13 21:18 Dmitry Osipenko [this message]
2018-05-14 11:51 ` [PATCH v1] mfd: tps6586x: Move interrupt handling into workqueue Thierry Reding
2018-05-14 12:01 ` Dmitry Osipenko
2018-05-14 12:20 ` Dmitry Osipenko
2018-05-14 12:39 ` Thierry Reding
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180513211842.7819-1-digetx@gmail.com \
--to=digetx@gmail.com \
--cc=jonathanh@nvidia.com \
--cc=lee.jones@linaro.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=thierry.reding@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).