From: Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
To: Barry Song <21cnbao-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: Wolfram Sang
<ninja-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>,
khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org,
ben-linux-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org,
linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
workgroup.linux-kQvG35nSl+M@public.gmane.org,
Zhiwu Song <Zhiwu.Song-kQvG35nSl+M@public.gmane.org>,
Xiangzhen Ye <Xiangzhen.Ye-kQvG35nSl+M@public.gmane.org>,
Yuping Luo <Yuping.Luo-kQvG35nSl+M@public.gmane.org>,
Barry Song <Baohua.Song-kQvG35nSl+M@public.gmane.org>
Subject: Re: [PATCH v5] I2C: add CSR SiRFprimaII on-chip I2C controllers driver
Date: Mon, 6 Feb 2012 23:47:14 +0100 [thread overview]
Message-ID: <20120206224714.GB25703@pengutronix.de> (raw)
In-Reply-To: <CAGsJ_4yHn1M3s6CPezaW_jwOcsX6NuaZRHcNWX0qnSfhx30AHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 2944 bytes --]
> > Thanks for your contribution! Is there a free datasheet for this controller
> > available?
>
> sorry. not available to public yet.
:( Can you cite what "SIRFSOC_I2C_NACK" does?
>
> >> +struct sirfsoc_i2c {
> >> + void __iomem *base;
> >> + struct clk *clk;
> >> + unsigned long speed; /* I2C SCL frequency */
> >> + int irq;
> >
> > Do you really need those two?
>
> irq can be deleted. speed is not really needed if you don't like.
It is not about "like". It is not needed, or?
> >> +static void i2c_sirfsoc_queue_cmd(struct sirfsoc_i2c *siic)
> >> +{
> >> + u32 regval;
> >> + int i = 0;
> >> +
> >> + if (siic->msg_read) {
> >> + while (((siic->finished_len + i) < siic->msg_len)
> >> + && (siic->cmd_ptr < SIRFSOC_I2C_CMD_BUF_MAX)) {
> >
> > Either use a different indentation for the above line or add a newline below.
> > It is hard to see where the while() ends and the code block starts.
>
> i just want to make sure what you want is:
>
> while (((siic->finished_len + i) < siic->msg_len)
> &&(siic->cmd_ptr < SIRFSOC_I2C_CMD_BUF_MAX)
> ) {
> ?
> or something else?
I thought of (which is simpler IMO):
> while (((siic->finished_len + i) < siic->msg_len)
> &&(siic->cmd_ptr < SIRFSOC_I2C_CMD_BUF_MAX)) {
>
> regval = SIRFSOC_I2C_READ | SIRFSOC_I2C_CMD_RP(0);
The other solution would be (not sure if it fits the line length):
> >> + while (((siic->finished_len + i) < siic->msg_len)
> >> + && (siic->cmd_ptr < SIRFSOC_I2C_CMD_BUF_MAX)) {
> >> + regval = SIRFSOC_I2C_READ | SIRFSOC_I2C_CMD_RP(0);
The idea is to make it easier (visually) what is the while-condition and where
is the code of the while-block. I thought that was difficult in original version.
> >> +static int i2c_sirfsoc_xfer_msg(struct sirfsoc_i2c *siic, struct i2c_msg *msg)
> >> +{
> >> + u32 regval = readl(siic->base + SIRFSOC_I2C_CTRL);
> >> + int timeout = (msg->len + 1) * 50;
> >
> > That looks broken. What is 50 here?
>
> just multiple of xfer bytes for defining a timeout. i might have a comment here.
That probably won't help. I'd think you want a *_to_jiffies() here to define a
proper timeout value in usecs/msecs?
> >> + siic->irq = platform_get_irq(pdev, 0);
> >> + if (siic->irq < 0) {
> >> + err = -EINVAL;
> >> + goto out;
> >> + }
> >
> > return the error code here?
>
> out lable will free resources and return error code.
Sorry, I meant the error code you received which is in siic->irq.
Regards,
Wolfram
--
Pengutronix e.K. | Wolfram Sang |
Industrial Linux Solutions | http://www.pengutronix.de/ |
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
next prev parent reply other threads:[~2012-02-06 22:47 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-29 14:17 [PATCH v5] I2C: add CSR SiRFprimaII on-chip I2C controllers driver Barry Song
[not found] ` <1327846668-3053-1-git-send-email-21cnbao-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2012-02-05 22:37 ` Wolfram Sang
[not found] ` <20120205223757.GA10680-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>
2012-02-06 2:14 ` Barry Song
[not found] ` <CAGsJ_4yHn1M3s6CPezaW_jwOcsX6NuaZRHcNWX0qnSfhx30AHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-02-06 2:20 ` Barry Song
2012-02-06 22:47 ` Wolfram Sang [this message]
[not found] ` <20120206224714.GB25703-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2012-02-07 8:47 ` Barry Song
[not found] ` <CAGsJ_4yJOg8XNfD=tgwPU_57BroBOBGvA428tG6_eUnYX2v8OQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-02-07 15:11 ` Wolfram Sang
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=20120206224714.GB25703@pengutronix.de \
--to=w.sang-bicnvbalz9megne8c9+irq@public.gmane.org \
--cc=21cnbao-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=Baohua.Song-kQvG35nSl+M@public.gmane.org \
--cc=Xiangzhen.Ye-kQvG35nSl+M@public.gmane.org \
--cc=Yuping.Luo-kQvG35nSl+M@public.gmane.org \
--cc=Zhiwu.Song-kQvG35nSl+M@public.gmane.org \
--cc=ben-linux-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org \
--cc=khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=ninja-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org \
--cc=workgroup.linux-kQvG35nSl+M@public.gmane.org \
/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).