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-next>] [day] [month] [year] [list]
Date:	Fri, 12 Aug 2011 10:26:59 +0200
From:	Linus Walleij <linus.walleij@...ricsson.com>
To:	Samuel Ortiz <sameo@...ux.intel.com>,
	<linux-kernel@...r.kernel.org>
Cc:	Lee Jones <lee.jones@...aro.org>,
	Linus Walleij <linus.walleij@...aro.org>,
	Liam Girdwood <lrg@...com>,
	Mark Brown <broonie@...nsource.wolfsonmicro.com>,
	Vijaya Kumar Kilari <vijay.kilari@...ricsson.com>,
	Shreshtha Kumar Sahu <shreshthakumar.sahu@...ricsson.com>,
	Philippe Langlais <philippe.langlais@...ricsson.com>,
	Bengt Jonsson <bengt.g.jonsson@...ricsson.com>,
	Jonas Aberg <jonas.aberg@...ricsson.com>,
	Rabin Vincent <rabin.vincent@...ricsson.com>,
	Pawel Szyszuk <pawel.szyszuk@...ricsson.com>,
	Jimmy Rubin <jimmy.rubin@...ricsson.com>,
	Mattias Nilsson <mattias.i.nilsson@...ricsson.com>
Subject: [PATCH 00/23] mfd: DBx500 PRCMU updates

From: Linus Walleij <linus.walleij@...aro.org>

The following patchset refactors and updates the MFD PRCMU
(Power Reset Control Management Unit) drivers for DBx500.

Mainly there is a bulk of refactoring work from Mattias
Nilsson unifying the APIs, so the implementations can
share a common API despite their individual differences.

The rest is mainly updates, added accessor functions for
various things the PRCMU can handle. Notice that all of
these are accessors, mediators, so clearly in the MFD
domain. The consumers of the interfaces are in the
platform and e.g. the CPUfreq and voltage domain drivers
as can be seen in the refactorings.

Then we include some refactorings of the PRCMU
voltage domain regulator driver and a new DB5500 power
domain regulator driver as part of this patchset as well.
I'm harvesting ACKs from the regulator people for these,
hoping to merge the entire shebang through Sam's MFD
tree.

Thanks,
Linus Walleij

Bengt Jonsson (3):
  mfd/db8500-prcmu: hwacc power state accessor
  mfd/db8500-prcmu: voltage domain consumers
  regulator/dbx500-prcmu: factor out common code

Jonas Aberg (1):
  mfd/db8500-prcmu: add watchdog accessor functions

Linus Walleij (2):
  mfd/db5500-prcmu: fix defines
  mfd/db5500-prcmu: convert to platform device

Mattias Nilsson (7):
  mfd/db8500-prcmu: refactor DB8500 PRCMU reg access
  mfd/db8500-prcmu: extend DB8500 PRCMU mailbox defs
  mfd/db8500-prcmu: initialize DB8500 PRCMU regs
  mfd/dbx500-prcmu: create a common interface
  mfd/dbx500-prcmu: move to the new API
  mfd/db8500-prcmu: add accessors for PLL and SGA clock
  mfd/db8500-prcmu: tweak for modem wakeup

Pawel Szyszuk (1):
  mfd/db5500-prcmu: implement reset and cause

Philippe Langlais (2):
  mfd/db5500-prcmu: spawn MFD cell for regulator
  regulator/db5500-prcmu: add driver

Rabin Vincent (1):
  mfd/db5500-prcmu: implement clock handling

Sebastian Rasmussen (1):
  mfd/db8500-prcmu: reset code retrieval

Shreshtha Kumar Sahu (2):
  mfd/db5500-prcmu: update mailbox handling
  mfd/db5500-prcmu: implement OPP handling

Vijaya Kumar Kilari (3):
  mfd/db5500-prcmu: implement event handling
  mfd/db5500-prcmu: sleep handling
  mfd/db5500-prcmu: implement EPOD handling

 arch/arm/mach-ux500/Kconfig                    |    1 +
 arch/arm/mach-ux500/cpu-db5500.c               |    5 +
 arch/arm/mach-ux500/cpu.c                      |    2 +-
 arch/arm/mach-ux500/include/mach/irqs-db5500.h |   29 +
 drivers/cpufreq/db8500-cpufreq.c               |    2 +-
 drivers/mfd/db5500-prcmu-regs.h                |  115 ---
 drivers/mfd/db5500-prcmu.c                     | 1090 +++++++++++++++++++++++-
 drivers/mfd/db8500-prcmu-regs.h                |  166 ----
 drivers/mfd/db8500-prcmu.c                     |  616 +++++++++++---
 drivers/mfd/dbx500-prcmu-regs.h                |  204 +++++
 drivers/regulator/Kconfig                      |   12 +
 drivers/regulator/Makefile                     |    2 +
 drivers/regulator/db5500-prcmu.c               |  351 ++++++++
 drivers/regulator/db8500-prcmu.c               |   45 +-
 drivers/regulator/dbx500-prcmu.c               |   62 ++
 drivers/regulator/dbx500-prcmu.h               |   18 +
 include/linux/mfd/db5500-prcmu.h               |  102 ++-
 include/linux/mfd/db8500-prcmu.h               |  368 ++-------
 include/linux/mfd/dbx500-prcmu.h               |  549 ++++++++++++
 include/linux/regulator/db5500-prcmu.h         |   25 +
 20 files changed, 2997 insertions(+), 767 deletions(-)
 delete mode 100644 drivers/mfd/db5500-prcmu-regs.h
 delete mode 100644 drivers/mfd/db8500-prcmu-regs.h
 create mode 100644 drivers/mfd/dbx500-prcmu-regs.h
 create mode 100644 drivers/regulator/db5500-prcmu.c
 create mode 100644 drivers/regulator/dbx500-prcmu.c
 create mode 100644 drivers/regulator/dbx500-prcmu.h
 create mode 100644 include/linux/mfd/dbx500-prcmu.h
 create mode 100644 include/linux/regulator/db5500-prcmu.h

-- 
1.7.3.2

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