lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 18 Jan 2010 18:26:10 +0100
From:	Alberto Panizzo <maramaopercheseimorto@...il.com>
To:	Mark Brown <broonie@...nsource.wolfsonmicro.com>
Cc:	Uwe Kleine-König 
	<u.kleine-koenig@...gutronix.de>,
	Samuel Ortiz <sameo@...ux.intel.com>,
	Liam Girdwood <lrg@...mlogic.co.uk>,
	Sascha linux-arm <s.hauer@...gutronix.de>,
	linux-kernel <linux-kernel@...r.kernel.org>,
	linux-arm-kernel-infradead <linux-arm-kernel@...ts.infradead.org>
Subject: Re: [PATCH] regulator: mc13783: consider Power Gates as digital
 regulators.

On lun, 2010-01-18 at 16:32 +0000, Mark Brown wrote:
> On Mon, Jan 18, 2010 at 05:02:03PM +0100, Alberto Panizzo wrote:
> 
> > +int mc13783_state_powermisc_pwgt;
> > +int mc13783_reg_rmw_powermisc(struct mc13783 *mc13783, u32 mask, u32 val)
> 
> You're missing some statics here and some whitespace to separate the
> function from the variable.

Ok, mc13783_state_powermisc_pwgt will be static (and u32..)

> 
> > +	/* Update the stored state for Power Gates.
> > +	 * As from specs the meaning is inverted (0: en, 1: dis) */
> > +	if (mask & MC13783_REG_POWERMISC_PWGTSPI_M)
> > +		mc13783_state_powermisc_pwgt =
> > +			(mc13783_state_powermisc_pwgt & ~mask) |
> > +			((val ^ mask) & MC13783_REG_POWERMISC_PWGTSPI_M);
> 
> Could this code be written in a clearer fashion?  The bit manipluation
> isn't entirely obvious, especially given the multiple masks in use...

Something like this?
        if (mask & MC13783_REG_POWERMISC_PWGTSPI_M) {
                u32 new_state = (val & MC13783_REG_POWERMISC_PWGTSPI_M) ^ mask;

                mc13783_state_powermisc_pwgt =
                        (mc13783_state_powermisc_pwgt & ~mask) | new_state;
        }

I use the EXOR with one to negate bits.
The state stored in mc13783_state_powermisc_pwgt would be what the next 
functions write.

> 
> > +	ret = mc13783_reg_read(mc13783, MC13783_REG_POWERMISC, &valread);
> > +	if (ret)
> > +		return ret;
> > +
> > +	valread = (valread & ~mask) | val;
> > +
> > +	/* Re propose the stored state for Power Gates */
> > +	valread = (valread & ~MC13783_REG_POWERMISC_PWGTSPI_M) |
> > +						mc13783_state_powermisc_pwgt;
> 
> ...and this further mainpulation.

What is obscure in this? it is the same operation as the previous
MC13783_REG_POWERMISC_PWGTSPI_M is the mask for PWGT1 and 2 bits and in 
mc13783_state_powermisc_pwgt there is the stored state for those two
bits.


--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ