linux-tegra.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mark Brown <broonie@opensource.wolfsonmicro.com>
To: Laxman Dewangan <ldewangan@nvidia.com>
Cc: "sameo@linux.intel.com" <sameo@linux.intel.com>,
	"lrg@ti.com" <lrg@ti.com>,
	"jedu@slimlogic.co.uk" <jedu@slimlogic.co.uk>,
	"gg@slimlogic.co.uk" <gg@slimlogic.co.uk>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-tegra@vger.kernel.org" <linux-tegra@vger.kernel.org>
Subject: Re: [PATCH V1 1/2] mfd: tps65910: use regmap for device register access.
Date: Wed, 8 Feb 2012 13:07:26 +0000	[thread overview]
Message-ID: <20120208130726.GB5943@opensource.wolfsonmicro.com> (raw)
In-Reply-To: <4F32676F.1010305@nvidia.com>

[-- Attachment #1: Type: text/plain, Size: 1955 bytes --]

On Wed, Feb 08, 2012 at 05:45:43PM +0530, Laxman Dewangan wrote:
> On Wednesday 08 February 2012 05:11 PM, Mark Brown wrote:

> >This is *really* odd.  Why is this not static data (or mostly static
> >data), why does it vary at runtime?

> I did not wanted to make the list of register in core driver. Wanted
> to leave the decision to the sub-devices driver where they need to
> enable cache based on their requirements.
> Do you think that the register list (although it is used in the
> regulator driver) should be in the core file? If this is allow then
> I can make the static table in core driver.

Yes, it should be in the core driver.

> >>+	/* If any of register is non-volatile then use byte-wise transfer */
> >>+	for (i = 0; i<  bytes; ++i) {
> >>+		ival = (unsigned int) (*wbuf++);
> >>+		ret = regmap_write(tps65910->regmap, reg, ival);
> >>+		if (ret<  0)
> >>+			return ret;
> >>+	}

> >There's nothing specific to the driver about this, if this is a good
> >idea add support for it to the core.

> This function added because there is no bulk_write function in core
> driver which supports the non-volatile in the list. Even if number
> of bytes read is 1.
> Should we move the above logic to core driver?

This is the core driver?  If you mean the regmap core then yes.

> - If any of the register is non-volatile in bulk write then split
> the transfer into the byte-wise/short-wise/long-wise
> (format.val_bytes) based on register width?
> - If all register is volatile the uses the regmap_raw_write()

> Does it sounds reasonable? If yes then I can move this code to
> regmap.c as regmap_bulk_write() i.e. new function.

Yes, though bulk_write() is tricky as it's *really* unclear what it
should take as an argument - should it be raw register size (in which
case it's just raw_write()) or should it be ints (in which case it needs
to repack the data too)?  I suspect ints but I'm really not convinced
there's much use case for this.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

  reply	other threads:[~2012-02-08 13:07 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-08 10:46 [PATCH V1 1/2] mfd: tps65910: use regmap for device register access Laxman Dewangan
     [not found] ` <1328697985-22504-1-git-send-email-ldewangan-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-02-08 10:46   ` [PATCH V1 2/2] regulator: tps65910: Enable register caching of voltage controls Laxman Dewangan
2012-02-08 11:41   ` [PATCH V1 1/2] mfd: tps65910: use regmap for device register access Mark Brown
     [not found]     ` <20120208114120.GF3120-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
2012-02-08 12:15       ` Laxman Dewangan
2012-02-08 13:07         ` Mark Brown [this message]
     [not found]           ` <20120208130726.GB5943-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
2012-02-08 13:34             ` Laxman Dewangan
     [not found]               ` <4F3279D6.4000009-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-02-08 13:58                 ` Mark Brown
2012-02-09  5:03                   ` Laxman Dewangan
     [not found]                     ` <4F335385.5040400-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-02-09 11:55                       ` Mark Brown
     [not found]                         ` <20120209115502.GD3058-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
2012-02-09 11:59                           ` Laxman Dewangan
     [not found]                             ` <4F33B52A.5020900-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-02-09 12:03                               ` Mark Brown
     [not found]                                 ` <20120209120312.GE3058-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>
2012-02-09 12:09                                   ` Laxman Dewangan

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=20120208130726.GB5943@opensource.wolfsonmicro.com \
    --to=broonie@opensource.wolfsonmicro.com \
    --cc=gg@slimlogic.co.uk \
    --cc=jedu@slimlogic.co.uk \
    --cc=ldewangan@nvidia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=lrg@ti.com \
    --cc=sameo@linux.intel.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).