From: Antti Palosaari <crope@iki.fi>
To: Benjamin Larsson <benjamin@southpole.se>
Cc: Linux Media Mailing List <linux-media@vger.kernel.org>
Subject: Re: [PATCH 2/2] mn88472: fix firmware loading
Date: Mon, 08 Dec 2014 00:36:22 +0200 [thread overview]
Message-ID: <5484D666.6060605@iki.fi> (raw)
In-Reply-To: <1417990203-758-2-git-send-email-benjamin@southpole.se>
On 12/08/2014 12:10 AM, Benjamin Larsson wrote:
> The firmware must be loaded one byte at a time via the 0xf6 register.
I don't think so. Currently it downloads firmware in 22 byte chunks and
it seems to work, at least for me, both mn88472 and mn88473.
> Signed-off-by: Benjamin Larsson <benjamin@southpole.se>
> ---
> drivers/staging/media/mn88472/mn88472.c | 21 +++++++--------------
> 1 file changed, 7 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/staging/media/mn88472/mn88472.c b/drivers/staging/media/mn88472/mn88472.c
> index ffee187..ba1bc8d 100644
> --- a/drivers/staging/media/mn88472/mn88472.c
> +++ b/drivers/staging/media/mn88472/mn88472.c
> @@ -290,7 +290,7 @@ static int mn88472_init(struct dvb_frontend *fe)
> {
> struct i2c_client *client = fe->demodulator_priv;
> struct mn88472_dev *dev = i2c_get_clientdata(client);
> - int ret, len, remaining;
> + int ret, i;
> const struct firmware *fw = NULL;
> u8 *fw_file = MN88472_FIRMWARE;
>
> @@ -330,19 +330,12 @@ static int mn88472_init(struct dvb_frontend *fe)
> if (ret)
> goto err;
>
> - for (remaining = fw->size; remaining > 0;
> - remaining -= (dev->i2c_wr_max - 1)) {
> - len = remaining;
> - if (len > (dev->i2c_wr_max - 1))
> - len = (dev->i2c_wr_max - 1);
> -
> - ret = regmap_bulk_write(dev->regmap[0], 0xf6,
> - &fw->data[fw->size - remaining], len);
> - if (ret) {
> - dev_err(&client->dev,
> - "firmware download failed=%d\n", ret);
> - goto err;
> - }
> + for (i = 0 ; i < fw->size ; i++)
> + ret |= regmap_write(dev->regmap[0], 0xf6, fw->data[i]);
> + if (ret) {
> + dev_err(&client->dev,
> + "firmware download failed=%d\n", ret);
> + goto err;
> }
Not nice.
1) You mask status and you could not know if error code is valid after
mask few thousand error codes.
2) Even worse, it is loop that runs thousand of times. Guess how much
I/O errors there could happen. There is many times situation when first
error occur then all the rest commands are failing too. And many cases
failing I2C command could be failed USB message, which could take few
seconds. Very typical USB timeout is 2 secs, this means 2k firmware,
2*2000=4000 sec => it blocks that routine over *one* hour.
>
> ret = regmap_write(dev->regmap[0], 0xf5, 0x00);
>
regards
Antti
--
http://palosaari.fi/
next prev parent reply other threads:[~2014-12-07 22:36 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-07 22:10 [PATCH 1/2] mn88472: load demodulator register defaults Benjamin Larsson
2014-12-07 22:10 ` [PATCH 2/2] mn88472: fix firmware loading Benjamin Larsson
2014-12-07 22:36 ` Antti Palosaari [this message]
2014-12-08 11:12 ` Benjamin Larsson
2014-12-08 17:35 ` Antti Palosaari
2014-12-08 16:04 ` Benjamin Larsson
2014-12-08 17:46 ` Antti Palosaari
2014-12-08 18:54 ` Benjamin Larsson
2014-12-07 22:25 ` [PATCH 1/2] mn88472: load demodulator register defaults Antti Palosaari
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=5484D666.6060605@iki.fi \
--to=crope@iki.fi \
--cc=benjamin@southpole.se \
--cc=linux-media@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.