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>] [day] [month] [year] [list]
Date:	Thu, 5 Nov 2015 10:54:28 +0000
From:	Mark Brown <broonie@...nel.org>
To:	Linus Torvalds <torvalds@...ux-foundation.org>
Cc:	linux-kernel@...r.kernel.org, Liam Girdwood <lgirdwood@...il.com>
Subject: [GIT PULL] regulator updates for v4.4

The following changes since commit 6a13feb9c82803e2b815eca72fa7a9f5561d7861:

  Linux 4.3 (2015-11-01 16:05:25 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git tags/regulator-v4.4

for you to fetch changes up to 62e544b983a0a8ec36a33017e1d7eb60eb7ffb5e:

  Merge remote-tracking branches 'regulator/topic/supply', 'regulator/topic/tps6105x' and 'regulator/topic/tps65023' into regulator-next (2015-11-04 11:19:43 +0000)

----------------------------------------------------------------
regulator: Updates for v4.4

This is quite a quiet release in terms of volume of patches but it
includes a couple of really nice core changes - the work Sascha has done
in particular is something I've wanted to get done for a long time but
just never got round to myself.  Highlights include:

 - Support from Sascha Hauer for setting the voltage of parent supplies
   based on requests from their children.  This is used both to allow
   set_voltage() to work through a dumb switch and to improve the
   efficiency of systems where DCDCs are used to supply LDOs by minimising
   the voltage drop over the LDOs.
 - Removal of regulator_list by Tomeu Vizoso, meaning we're not
   duplicating the device list maintained by the driver core.
 - Support for Wolfson/Cirrus WM8998 and WM1818.

----------------------------------------------------------------
Bjorn Andersson (2):
      regulator: Introduce property to flag set-load support
      regulator: qcom-smd: Correct set_load() unit

Boris Brezillon (1):
      regulator: pwm: implement ->enable(), ->disable() and ->is_enabled methods

Charles Keepax (2):
      regulator: arizona-ldo1: Fix handling of GPIO 0
      regulator: arizona: Add regulator specific device tree binding document

Chen-Yu Tsai (2):
      regulator: axp20x: Drop AXP221 DC1SW and DC5LDO regulator supplies from bindings
      regulator: axp20x: set supply names for AXP22X DC1SW/DC5LDO internally

Grigoryev Denis (1):
      mfd: tps6105x: Use i2c regmap to access registers

Javier Martinez Canillas (4):
      regulator: bcm590xx: Remove unneeded semicolon
      regulator: da9063: Remove unneeded semicolon
      regulator: max77802: Add input supply properties to DT binding doc
      regulator: max77802: Separate sections for nodes and properties

Luis de Bethencourt (1):
      regulator: stw481x: compile on COMPILE_TEST

Mark Brown (9):
      Merge tag 'ib-mfd-regulator-v4.3' of git://git.kernel.org/.../lee/mfd into regulator-tps6105x
      Merge remote-tracking branch 'regulator/topic/dropout' into HEAD
      regulator: Use regulator_lock_supply() for get_voltage() too
      Merge remote-tracking branch 'regulator/topic/core' into regulator-next
      Merge remote-tracking branch 'regulator/topic/list' into regulator-next
      Merge remote-tracking branches 'regulator/topic/act8865', 'regulator/topic/anatop', 'regulator/topic/arizona', 'regulator/topic/axp20x' and 'regulator/topic/bcm590xx' into regulator-next
      Merge remote-tracking branches 'regulator/topic/da9053' and 'regulator/topic/da9063' into regulator-next
      Merge remote-tracking branches 'regulator/topic/load', 'regulator/topic/max77802', 'regulator/topic/pwm', 'regulator/topic/qcom-smd' and 'regulator/topic/stw481x' into regulator-next
      Merge remote-tracking branches 'regulator/topic/supply', 'regulator/topic/tps6105x' and 'regulator/topic/tps65023' into regulator-next

Richard Fitzgerald (1):
      regulator: arizona: add support for WM8998 and WM1814

Sascha Hauer (7):
      regulator: core: introduce function to lock regulators and its supplies
      regulator: core: create unlocked version of regulator_list_voltage
      regulator: core: create unlocked version of regulator_set_voltage
      regulator: introduce min_dropout_uV
      regulator: i.MX anatop: Allow supply regulator
      regulator: core: Factor out regulator_map_voltage
      regulator: core: Propagate voltage changes to supply regulators

Stephen Boyd (2):
      regulator: qcom_smd: Handle big endian CPUs
      regulator: core: Make error messages more informative

Steve Twiss (1):
      regulator: da9053: Update regulator for DA9053 BC silicon support

Thomas Elste (1):
      regulator: tps65023: add device tree support

Tomeu Vizoso (1):
      regulator: core: Remove regulator_list

Wenyou Yang (2):
      regulator: act8865: support output voltage by VSET2[] bits
      regulator: act8865: add DT binding for property "active-semi,vsel-high"

 Documentation/devicetree/bindings/mfd/axp20x.txt   |   4 +-
 .../bindings/regulator/act8865-regulator.txt       |   3 +
 .../bindings/regulator/anatop-regulator.txt        |   1 +
 .../bindings/regulator/arizona-regulator.txt       |  17 +
 .../devicetree/bindings/regulator/max77802.txt     |  25 +-
 .../devicetree/bindings/regulator/regulator.txt    |   1 +
 .../devicetree/bindings/regulator/tps65023.txt     |  60 +++
 drivers/mfd/tps6105x.c                             |  78 +---
 drivers/regulator/Kconfig                          |   2 +-
 drivers/regulator/act8865-regulator.c              |  24 +-
 drivers/regulator/anatop-regulator.c               |   3 +
 drivers/regulator/arizona-ldo1.c                   |  20 +-
 drivers/regulator/axp20x-regulator.c               |  54 ++-
 drivers/regulator/bcm590xx-regulator.c             |   2 +-
 drivers/regulator/core.c                           | 512 ++++++++++++++-------
 drivers/regulator/da9052-regulator.c               |   1 +
 drivers/regulator/da9063-regulator.c               |   2 +-
 drivers/regulator/of_regulator.c                   |   3 +
 drivers/regulator/pwm-regulator.c                  |  35 +-
 drivers/regulator/qcom_smd-regulator.c             |  28 +-
 drivers/regulator/tps6105x-regulator.c             |  16 +-
 drivers/regulator/tps65023-regulator.c             | 282 +++++-------
 include/linux/mfd/tps6105x.h                       |  10 +-
 include/linux/regulator/driver.h                   |   2 +
 24 files changed, 729 insertions(+), 456 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/regulator/arizona-regulator.txt
 create mode 100644 Documentation/devicetree/bindings/regulator/tps65023.txt

Download attachment "signature.asc" of type "application/pgp-signature" (474 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ