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] [day] [month] [year] [list]
Date:	Wed, 20 Jan 2010 10:35:00 +0000
From:	Mark Brown <broonie@...nsource.wolfsonmicro.com>
To:	Joonyoung Shim <jy0922.shim@...sung.com>
Cc:	lrg@...mlogic.co.uk, kyungmin.park@...sung.com,
	mk7.kang@...sung.com, linux-kernel@...r.kernel.org
Subject: Re: The use_count problem of regulator

On Wed, Jan 20, 2010 at 03:30:24PM +0900, Joonyoung Shim wrote:

> In the regulator framework, if the regulator is enabled for example by 
> boot_on constraint, when regulator_get is called at the driver probe 
> function, the use_count of struct regulator_dev is zero. But if 
> regulator_has_full_constraints() is used, even though above the 
> regulator is using, it is disabled by regulator_init_complete() because
> the use_count is zero.

This is expected behaviour if the regulator is not marked as always_on.
The idea is that the regulators will have been claimed and enabled by a
regulator consumer during the init process, and if it hasn't then it's
not in active use at the current time and may therefore be powered off.

> Of course, we can use regulator_get_exclusive instead of regulator_get,
> but if the regulator can be shared, i think this will be a problem.

If the consumer is using the regulator then it should enable the
regulator without reference to the existing state of the regulator.
This is required to support sharing of supplies - if another consumer
enabled the regulator then it may later decide to turn it off when it's
done with it, which would have the same effect as you're seeing from the
full constraints code.

A consumer using regulator_get() should in general never need to check
if the regulator is enabled except possibly during startup in order to
gracefully handle the handover of the initial hardware state.  Normally
they should call enable() when they start using the device and disable() 
when they stop.
--
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