[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20110412045733.GA21059@sirena.org.uk>
Date: Tue, 12 Apr 2011 05:57:34 +0100
From: Mark Brown <broonie@...nsource.wolfsonmicro.com>
To: Kenneth Heitke <kheitke@...eaurora.org>
Cc: davidb@...eaurora.org, dwalker@...o99.com, ben-linux@...ff.org,
tsoni@...eaurora.org, linux@....linux.org.uk,
linus.walleij@...ricsson.com, linux-arm-msm@...r.kernel.org,
seth.heasley@...el.com, w.sang@...gutronix.de,
tomoya-linux@....okisemi.com, arve@...roid.com,
"open list:I2C SUBSYSTEM" <linux-i2c@...r.kernel.org>,
swetland@...gle.com, khali@...ux-fr.org,
open list <linux-kernel@...r.kernel.org>,
bryanh@...eaurora.org, sdharia@...eaurora.org,
"open list:ARM PORT" <linux-arm-kernel@...ts.infradead.org>,
guenter.roeck@...csson.com
Subject: Re: [PATCH] i2c: QUP based bus driver for Qualcomm MSM chipsets
On Mon, Apr 11, 2011 at 08:02:27PM -0600, Kenneth Heitke wrote:
> mini-core. The driver supports FIFO mode (for low bandwidth applications)
> and block mode (interrupt generated for each block-size data transfer).
> The driver currently does not support DMA transfers.
> +static inline void qup_i2c_pwr_disable(struct qup_i2c_dev *dev)
> +{
> + dev_dbg(dev->dev, "%s\n", __func__);
> +
> + if (pm_runtime_enabled(dev->dev)) {
> + pm_runtime_mark_last_busy(dev->dev);
> + pm_runtime_put_sync(dev->dev);
> + } else
> + qup_i2c_clk_disable(dev);
> +}
What happens if someone changes the pm_runtime configuration in between
a pwr_disable() and the corresponding enable?
> +static void
> +qup_issue_read(struct qup_i2c_dev *dev, struct i2c_msg *msg, int *idx,
> + uint32_t carry_over)
> +{
> + uint16_t addr = (msg->addr << 1) | 1;
> + /*
> + * QUP limit 256 bytes per read. By HW design, 0 in the 8-bit field
> + * is treated as 256 byte read.
> + */
> + uint16_t rd_len = ((dev->cnt == 256) ? 0 : dev->cnt);
This is a substantila incompatibility with most I2C ccontrollers i the
kernel. Is it possible for the driver to deal with this transparently,
for example by expanding into a number of continued transfers? If not
we should add support to the I2C core for determining transfer limits,
the 256 bytes limit is pretty low.
> + /* HW limits Read upto 256 bytes in 1 read without stop */
> + if (dev->msg->flags & I2C_M_RD) {
> + qup_set_read_mode(dev, dev->cnt);
> + if (dev->cnt > 256)
> + dev->cnt = 256;
This definitely seems buggy - there's no error returned to the caller?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists