linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/10] sta2x11-mfd patches
@ 2012-10-22 14:50 ciminaghi
  2012-10-22 14:50 ` [PATCH 01/10] drivers/mfd/sta2x11-mfd: add apb-soc regs driver and factor out common code ciminaghi
                   ` (10 more replies)
  0 siblings, 11 replies; 17+ messages in thread
From: ciminaghi @ 2012-10-22 14:50 UTC (permalink / raw)
  To: sameo, rubini, giancarlo.asnaghi, broonie; +Cc: linux-kernel, Davide Ciminaghi

From: Davide Ciminaghi <ciminaghi@gnudd.com>

Hi,

this is v2 of a patchset already submitted on 2012/09/12
(see https://lkml.org/lkml/2012/9/12/139).
Here's a summary of changes in v2:

* Added regmap support.
* Added driver for sta2x11 scr (otp) registers.
* Changelog entries reviewed and fixed.

Davide Ciminaghi (10):
  drivers/mfd/sta2x11-mfd: add apb-soc regs driver and factor out
    common code
  drivers/mfd/sta2x11-mfd: add regmap support
  drivers/mfd/sta2x11-mfd: add sta2x11_mfd_get_regs_data() function
  drivers/mfd/sta2x11-mfd: use defines for platform devices' names
  drivers/mfd/sta2x11-mfd: only add sta2x11_mfd if it hasn't already
    been added
  drivers/mfd/sta2x11-mfd: platform probe: don't mind about gpio
    platform data
  drivers/mfd/sta2x11-mfd: use one lock per device instead of one lock
    per mfd
  drivers/mfd/sta2x11-mfd: add scr (otp registers) platform driver
  drivers/mfd/sta2x11-mfd: add defines for some sta2x11 sctl registers
  drivers/mfd/sta2x11-mfd: add myself to copyright

 drivers/mfd/Kconfig             |    1 +
 drivers/mfd/sta2x11-mfd.c       |  531 +++++++++++++++++++++++++++------------
 include/linux/mfd/sta2x11-mfd.h |  198 ++++++++++++++-
 3 files changed, 572 insertions(+), 158 deletions(-)

-- 
1.7.10.4


^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH v3 00/10] sta2x11-mfd patches
@ 2012-11-09 14:19 ciminaghi
  2012-11-09 14:19 ` [PATCH 02/10] drivers/mfd/sta2x11-mfd: add regmap support ciminaghi
  0 siblings, 1 reply; 17+ messages in thread
From: ciminaghi @ 2012-11-09 14:19 UTC (permalink / raw)
  To: sameo, rubini, giancarlo.asnaghi, broonie; +Cc: linux-kernel, Davide Ciminaghi

From: Davide Ciminaghi <ciminaghi@gnudd.com>

Hi,

this is v3 of a patchset submitted on
2012/10/22 (see https://lkml.org/lkml/2012/10/22/290)
and 2012/09/12 (see https://lkml.org/lkml/2012/9/12/139).
Here's a summary of changes in v3:

* Regmap support fix:
sta2x11_apb_soc_regs_writeable_reg() fixed as
suggested by Mark Brown
(see https://lkml.org/lkml/2012/10/23/448)

* Regmap support fix: regmap field in struct
sta2x11_mfd (a single struct regmap * in v2) becomes
an array of struct regmap pointers, one per platform
device.

Davide Ciminaghi (10):
  drivers/mfd/sta2x11-mfd: add apb-soc regs driver and factor out
    common code
  drivers/mfd/sta2x11-mfd: add regmap support
  drivers/mfd/sta2x11-mfd: add sta2x11_mfd_get_regs_data() function
  drivers/mfd/sta2x11-mfd: use defines for platform devices' names
  drivers/mfd/sta2x11-mfd: only add sta2x11_mfd if it hasn't already
    been added
  drivers/mfd/sta2x11-mfd: platform probe: don't mind about gpio
    platform data
  drivers/mfd/sta2x11-mfd: use one lock per device instead of one lock
    per mfd
  drivers/mfd/sta2x11-mfd: add scr (otp registers) platform driver
  drivers/mfd/sta2x11-mfd: add defines for some sta2x11 sctl registers
  drivers/mfd/sta2x11-mfd: add myself to copyright

 drivers/mfd/Kconfig             |    1 +
 drivers/mfd/sta2x11-mfd.c       |  532 +++++++++++++++++++++++++++------------
 include/linux/mfd/sta2x11-mfd.h |  198 ++++++++++++++-
 3 files changed, 574 insertions(+), 157 deletions(-)

-- 
1.7.10.4


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2012-11-09 14:20 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-22 14:50 [PATCH v2 00/10] sta2x11-mfd patches ciminaghi
2012-10-22 14:50 ` [PATCH 01/10] drivers/mfd/sta2x11-mfd: add apb-soc regs driver and factor out common code ciminaghi
2012-10-22 14:50 ` [PATCH 02/10] drivers/mfd/sta2x11-mfd: add regmap support ciminaghi
2012-10-23 17:18   ` Mark Brown
2012-10-24 12:31     ` Davide Ciminaghi
2012-10-24 12:49       ` Mark Brown
2012-10-25 12:22         ` Davide Ciminaghi
2012-10-22 14:50 ` [PATCH 03/10] drivers/mfd/sta2x11-mfd: add sta2x11_mfd_get_regs_data() function ciminaghi
2012-10-22 14:50 ` [PATCH 04/10] drivers/mfd/sta2x11-mfd: use defines for platform devices' names ciminaghi
2012-10-22 14:50 ` [PATCH 05/10] drivers/mfd/sta2x11-mfd: only add sta2x11_mfd if it hasn't already been added ciminaghi
2012-10-22 14:50 ` [PATCH 06/10] drivers/mfd/sta2x11-mfd: platform probe: don't mind about gpio platform data ciminaghi
2012-10-22 14:50 ` [PATCH 07/10] drivers/mfd/sta2x11-mfd: use one lock per device instead of one lock per mfd ciminaghi
2012-10-22 14:50 ` [PATCH 08/10] drivers/mfd/sta2x11-mfd: add scr (otp registers) platform driver ciminaghi
2012-10-22 14:50 ` [PATCH 09/10] drivers/mfd/sta2x11-mfd: add defines for some sta2x11 sctl registers ciminaghi
2012-10-22 14:50 ` [PATCH 10/10] drivers/mfd/sta2x11-mfd: add myself to copyright ciminaghi
2012-10-25  5:35 ` [PATCH v2 00/10] sta2x11-mfd patches Alessandro Rubini
  -- strict thread matches above, loose matches on Subject: below --
2012-11-09 14:19 [PATCH v3 " ciminaghi
2012-11-09 14:19 ` [PATCH 02/10] drivers/mfd/sta2x11-mfd: add regmap support ciminaghi

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