linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/8 RESEND] sta2x11-mfd patches
@ 2012-09-12 10:22 ciminaghi
  2012-09-12 10:22 ` [PATCH 1/8] sta2x11-mfd : add apb-soc regs driver and factor out common code ciminaghi
                   ` (8 more replies)
  0 siblings, 9 replies; 24+ messages in thread
From: ciminaghi @ 2012-09-12 10:22 UTC (permalink / raw)
  To: sameo, rubini, giancarlo.asnaghi; +Cc: linux-kernel, Davide Ciminaghi

From: Davide Ciminaghi <ciminaghi@gnudd.com>

Hi,

this is a resend of a patchset dated Jun 10th (see
https://lkml.org/lkml/2012/6/10/188) even if some of the
commits have been squashed.

I'm working on the implementation of the common clock framework
for the STA2X11 (aka CONNEXT) soc.
To configure, enable and disable clocks, some general purpose
registers (apb-soc-registers) must be accessed. Such registers
can be reached through bar #1 of a multifunction pci device,
which is not covered by the current version of sta2x11-mfd.
This patch series adds support for the apb-soc-registers device
and rearranges the sta2x11-mfd driver to avoid unnecessary
code duplications and to cope with the increased number of platform
devices.

Davide

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

 drivers/mfd/sta2x11-mfd.c       |  416 ++++++++++++++++++++++++++-------------
 include/linux/mfd/sta2x11-mfd.h |  190 ++++++++++++++++++-
 2 files changed, 470 insertions(+), 136 deletions(-)

-- 
1.7.9.1


^ permalink raw reply	[flat|nested] 24+ messages in thread
* [PATCH 0/8 RESEND] sta2x11-mfd patches
@ 2012-09-12 10:11 ciminaghi
  2012-09-12 10:11 ` [PATCH 2/8] sta2x11-mfd : add sta2x11_mfd_get_regs_data() function ciminaghi
  0 siblings, 1 reply; 24+ messages in thread
From: ciminaghi @ 2012-09-12 10:11 UTC (permalink / raw)
  To: sameo, rubini, giancarlo.asnaghi; +Cc: linux-kernel, Davide Ciminaghi

From: Davide Ciminaghi <ciminaghi@gnudd.com>

Hi,

this is a resend of a patchset dated Jun 10th (see
https://lkml.org/lkml/2012/6/10/188) even if some of the
commits have been squashed.

I'm working on the implementation of the common clock framework
for the STA2X11 (aka CONNEXT) soc.
To configure, enable and disable clocks, some general purpose
registers (apb-soc-registers) must be accessed. Such registers
can be reached through bar #1 of a multifunction pci device,
which is not covered by the current version of sta2x11-mfd.
This patch series adds support for the apb-soc-registers device
and rearranges the sta2x11-mfd driver to avoid unnecessary
code duplications and to cope with the increased number of platform
devices.

Davide

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

 drivers/mfd/sta2x11-mfd.c       |  416 ++++++++++++++++++++++++++-------------
 include/linux/mfd/sta2x11-mfd.h |  190 ++++++++++++++++++-
 2 files changed, 470 insertions(+), 136 deletions(-)

-- 
1.7.9.1


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

end of thread, other threads:[~2012-09-28 15:30 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-12 10:22 [PATCH 0/8 RESEND] sta2x11-mfd patches ciminaghi
2012-09-12 10:22 ` [PATCH 1/8] sta2x11-mfd : add apb-soc regs driver and factor out common code ciminaghi
2012-09-25 19:20   ` Mark Brown
2012-09-26 14:56     ` Davide Ciminaghi
2012-09-26 15:04       ` Mark Brown
2012-09-26 16:31         ` Davide Ciminaghi
2012-09-26 16:49           ` Mark Brown
2012-09-27  8:39             ` Davide Ciminaghi
2012-09-27  8:56             ` Davide Ciminaghi
2012-09-27 13:41             ` Davide Ciminaghi
2012-09-27 13:49               ` Mark Brown
2012-09-28  8:43                 ` Davide Ciminaghi
2012-09-28 10:52                   ` Mark Brown
2012-09-27 14:13               ` Alan Cox
2012-09-28 15:29                 ` Davide Ciminaghi
2012-09-12 10:22 ` [PATCH 2/8] sta2x11-mfd : add sta2x11_mfd_get_regs_data() function ciminaghi
2012-09-12 10:22 ` [PATCH 3/8] sta2x11-mfd : use defines for platform devices' names ciminaghi
2012-09-12 10:22 ` [PATCH 4/8] sta2x11-mfd : only add sta2x11_mfd if it hasn't already been added ciminaghi
2012-09-12 10:22 ` [PATCH 5/8] sta2x11-mfd : platform probe: don't mind about gpio platform data ciminaghi
2012-09-12 10:22 ` [PATCH 6/8] sta2x11-mfd : use one lock per device instead of one lock per mfd ciminaghi
2012-09-12 10:22 ` [PATCH 7/8] sta2x11-mfd : add defines for some sta2x11 sctl registers ciminaghi
2012-09-12 10:22 ` [PATCH 8/8] sta2x11-mfd : add myself to copyright ciminaghi
2012-09-16 21:25 ` [PATCH 0/8 RESEND] sta2x11-mfd patches Alessandro Rubini
  -- strict thread matches above, loose matches on Subject: below --
2012-09-12 10:11 ciminaghi
2012-09-12 10:11 ` [PATCH 2/8] sta2x11-mfd : add sta2x11_mfd_get_regs_data() function 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).