All of lore.kernel.org
 help / color / mirror / Atom feed
From: S Twiss <stwiss.opensource@diasemi.com>
To: Alessandro Zummo <a.zummo@towertech.it>,
	DEVICETREE <devicetree@vger.kernel.org>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Kumar Gala <galak@codeaurora.org>,
	LINUXINPUT <linux-input@vger.kernel.org>,
	LINUXKERNEL <linux-kernel@vger.kernel.org>,
	LINUXWATCHDOG <linux-watchdog@vger.kernel.org>,
	Lee Jones <lee.jones@linaro.org>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Pawel Moll <pawel.moll@arm.com>,
	RTCLINUX <rtc-linux@googlegroups.com>,
	Rob Herring <robh+dt@kernel.org>,
	S Twiss <stwiss.opensource@diasemi.com>,
	Samuel Ortiz <sameo@linux.intel.com>,
	Wim Van Sebroeck <wim@iguana.be>
Cc: David Dajun Chen <david.chen@diasemi.com>,
	Support Opensource <support.opensource@diasemi.com>
Subject: [PATCH V3 0/4]  da9062: DA9062 driver submission
Date: Tue, 19 May 2015 14:10:31 +0100	[thread overview]
Message-ID: <cover.1432041031.git.stwiss.opensource@diasemi.com> (raw)

From: S Twiss <stwiss.opensource@diasemi.com>

This patch set adds support for the Dialog DA9062 Power Management IC.

In this patch set the following is provided:
 - [PATCH V3 1/4]: MFD core support  
 - [PATCH V3 2/4]: BUCK and LDO regulator driver
 - [PATCH V3 3/4]: Watchdog driver
 - [PATCH V3 4/4]: Add bindings for all DA9062 components

Changes in V2:
 - Alter subject title in 'cover letter'
 - Reordered the patch numbering: now 4/4 patches instead of 6/6
   - Dropped PATCH V1 3/6 RTC driver
   - Dropped PATCH V1 4/6 OnKey driver

This patch applies against linux-next and v4.1-rc3 

Thank you,
Steve Twiss, Dialog Semiconductor Ltd.

S Twiss (4):
  mfd: da9062: DA9062 MFD core driver
  regulator: da9062: DA9062 regulator driver
  watchdog: da9062: DA9062 watchdog driver
  devicetree: da9062: Add bindings for DA9062 driver

 Documentation/devicetree/bindings/mfd/da9062.txt |   79 ++
 drivers/mfd/Kconfig                              |   12 +
 drivers/mfd/Makefile                             |    3 +-
 drivers/mfd/da9062-core.c                        |  611 ++++++++++++
 drivers/regulator/Kconfig                        |   10 +
 drivers/regulator/Makefile                       |    1 +
 drivers/regulator/da9062-regulator.c             |  843 ++++++++++++++++
 drivers/watchdog/Kconfig                         |    9 +
 drivers/watchdog/Makefile                        |    1 +
 drivers/watchdog/da9062_wdt.c                    |  253 +++++
 include/linux/mfd/da9062/core.h                  |   62 ++
 include/linux/mfd/da9062/registers.h             | 1108 ++++++++++++++++++++++
 12 files changed, 2991 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/da9062.txt
 create mode 100644 drivers/mfd/da9062-core.c
 create mode 100644 drivers/regulator/da9062-regulator.c
 create mode 100644 drivers/watchdog/da9062_wdt.c
 create mode 100644 include/linux/mfd/da9062/core.h
 create mode 100644 include/linux/mfd/da9062/registers.h

-- 
end-of-patch for PATCH V3


WARNING: multiple messages have this Message-ID (diff)
From: S Twiss <stwiss.opensource@diasemi.com>
To: Alessandro Zummo <a.zummo@towertech.it>,
	DEVICETREE <devicetree@vger.kernel.org>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Kumar Gala <galak@codeaurora.org>,
	LINUXINPUT <linux-input@vger.kernel.org>,
	LINUXKERNEL <linux-kernel@vger.kernel.org>,
	LINUXWATCHDOG <linux-watchdog@vger.kernel.org>,
	Lee Jones <lee.jones@linaro.org>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Pawel Moll <pawel.moll@arm.com>,
	RTCLINUX <rtc-linux@googlegroups.com>,
	Rob Herring <robh+dt@kernel.org>,
	S Twiss <stwiss.opensource@diasemi.com>,
	Samuel Ortiz <sameo@linux.intel.com>,
	Wim Van Sebroeck <wim@iguana.be>
Cc: David Dajun Chen <david.chen@diasemi.com>,
	Support Opensource <support.opensource@diasemi.com>
Subject: [rtc-linux] [PATCH V3 0/4]  da9062: DA9062 driver submission
Date: Tue, 19 May 2015 14:10:31 +0100	[thread overview]
Message-ID: <cover.1432041031.git.stwiss.opensource@diasemi.com> (raw)

From: S Twiss <stwiss.opensource@diasemi.com>

This patch set adds support for the Dialog DA9062 Power Management IC.

In this patch set the following is provided:
 - [PATCH V3 1/4]: MFD core support  
 - [PATCH V3 2/4]: BUCK and LDO regulator driver
 - [PATCH V3 3/4]: Watchdog driver
 - [PATCH V3 4/4]: Add bindings for all DA9062 components

Changes in V2:
 - Alter subject title in 'cover letter'
 - Reordered the patch numbering: now 4/4 patches instead of 6/6
   - Dropped PATCH V1 3/6 RTC driver
   - Dropped PATCH V1 4/6 OnKey driver

This patch applies against linux-next and v4.1-rc3 

Thank you,
Steve Twiss, Dialog Semiconductor Ltd.

S Twiss (4):
  mfd: da9062: DA9062 MFD core driver
  regulator: da9062: DA9062 regulator driver
  watchdog: da9062: DA9062 watchdog driver
  devicetree: da9062: Add bindings for DA9062 driver

 Documentation/devicetree/bindings/mfd/da9062.txt |   79 ++
 drivers/mfd/Kconfig                              |   12 +
 drivers/mfd/Makefile                             |    3 +-
 drivers/mfd/da9062-core.c                        |  611 ++++++++++++
 drivers/regulator/Kconfig                        |   10 +
 drivers/regulator/Makefile                       |    1 +
 drivers/regulator/da9062-regulator.c             |  843 ++++++++++++++++
 drivers/watchdog/Kconfig                         |    9 +
 drivers/watchdog/Makefile                        |    1 +
 drivers/watchdog/da9062_wdt.c                    |  253 +++++
 include/linux/mfd/da9062/core.h                  |   62 ++
 include/linux/mfd/da9062/registers.h             | 1108 ++++++++++++++++++++++
 12 files changed, 2991 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/da9062.txt
 create mode 100644 drivers/mfd/da9062-core.c
 create mode 100644 drivers/regulator/da9062-regulator.c
 create mode 100644 drivers/watchdog/da9062_wdt.c
 create mode 100644 include/linux/mfd/da9062/core.h
 create mode 100644 include/linux/mfd/da9062/registers.h

-- 
end-of-patch for PATCH V3

-- 
-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

WARNING: multiple messages have this Message-ID (diff)
From: S Twiss <stwiss.opensource-WBD+wuPFNBhBDgjK7y7TUQ@public.gmane.org>
To: Alessandro Zummo
	<a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org>,
	DEVICETREE <devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Dmitry Torokhov
	<dmitry.torokhov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Ian Campbell
	<ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org>,
	Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>,
	LINUXINPUT <linux-input-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	LINUXKERNEL
	<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	LINUXWATCHDOG
	<linux-watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Lee Jones <lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	Liam Girdwood <lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>,
	Pawel Moll <pawel.moll-5wv7dgnIgG8@public.gmane.org>,
	RTCLINUX <rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>,
	Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	S Twiss
	<stwiss.opensource-WBD+wuPFNBhBDgjK7y7TUQ@public.gmane.org>,
	Samuel Ortiz <sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>,
	Wim Van Sebroeck <wim-IQzOog9fTRqzQB+pC5nmwQ@public.gmane.org>
Cc: David Dajun Chen
	<david.chen-WBD+wuPFNBhBDgjK7y7TUQ@public.gmane.org>,
	Support Opensource
	<support.opensource-WBD+wuPFNBhBDgjK7y7TUQ@public.gmane.org>
Subject: [PATCH V3 0/4]  da9062: DA9062 driver submission
Date: Tue, 19 May 2015 14:10:31 +0100	[thread overview]
Message-ID: <cover.1432041031.git.stwiss.opensource@diasemi.com> (raw)

From: S Twiss <stwiss.opensource-WBD+wuPFNBhBDgjK7y7TUQ@public.gmane.org>

This patch set adds support for the Dialog DA9062 Power Management IC.

In this patch set the following is provided:
 - [PATCH V3 1/4]: MFD core support  
 - [PATCH V3 2/4]: BUCK and LDO regulator driver
 - [PATCH V3 3/4]: Watchdog driver
 - [PATCH V3 4/4]: Add bindings for all DA9062 components

Changes in V2:
 - Alter subject title in 'cover letter'
 - Reordered the patch numbering: now 4/4 patches instead of 6/6
   - Dropped PATCH V1 3/6 RTC driver
   - Dropped PATCH V1 4/6 OnKey driver

This patch applies against linux-next and v4.1-rc3 

Thank you,
Steve Twiss, Dialog Semiconductor Ltd.

S Twiss (4):
  mfd: da9062: DA9062 MFD core driver
  regulator: da9062: DA9062 regulator driver
  watchdog: da9062: DA9062 watchdog driver
  devicetree: da9062: Add bindings for DA9062 driver

 Documentation/devicetree/bindings/mfd/da9062.txt |   79 ++
 drivers/mfd/Kconfig                              |   12 +
 drivers/mfd/Makefile                             |    3 +-
 drivers/mfd/da9062-core.c                        |  611 ++++++++++++
 drivers/regulator/Kconfig                        |   10 +
 drivers/regulator/Makefile                       |    1 +
 drivers/regulator/da9062-regulator.c             |  843 ++++++++++++++++
 drivers/watchdog/Kconfig                         |    9 +
 drivers/watchdog/Makefile                        |    1 +
 drivers/watchdog/da9062_wdt.c                    |  253 +++++
 include/linux/mfd/da9062/core.h                  |   62 ++
 include/linux/mfd/da9062/registers.h             | 1108 ++++++++++++++++++++++
 12 files changed, 2991 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/da9062.txt
 create mode 100644 drivers/mfd/da9062-core.c
 create mode 100644 drivers/regulator/da9062-regulator.c
 create mode 100644 drivers/watchdog/da9062_wdt.c
 create mode 100644 include/linux/mfd/da9062/core.h
 create mode 100644 include/linux/mfd/da9062/registers.h

-- 
end-of-patch for PATCH V3

--
To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

             reply	other threads:[~2015-05-19 13:28 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-19 13:10 S Twiss [this message]
2015-05-19 13:10 ` [PATCH V3 0/4] da9062: DA9062 driver submission S Twiss
2015-05-19 13:10 ` [rtc-linux] " S Twiss
2015-05-19 13:10 ` [PATCH V3 4/4] devicetree: da9062: Add bindings for DA9062 driver S Twiss
2015-05-19 13:10   ` S Twiss
2015-05-19 13:10   ` [rtc-linux] " S Twiss
2015-05-19 13:10 ` [PATCH V3 1/4] mfd: da9062: DA9062 MFD core driver S Twiss
2015-05-19 13:10   ` S Twiss
2015-05-19 13:10   ` [rtc-linux] " S Twiss
2015-05-26 16:10   ` Lee Jones
2015-05-26 16:10     ` Lee Jones
2015-05-26 16:10     ` Lee Jones
2015-05-26 16:10     ` [rtc-linux] " Lee Jones
2015-05-28 12:52     ` Opensource [Steve Twiss]
2015-05-28 12:52       ` Opensource [Steve Twiss]
2015-05-28 12:52       ` Opensource [Steve Twiss]
2015-05-28 12:52       ` [rtc-linux] " Opensource [Steve Twiss]
2015-06-11  8:27     ` Opensource [Steve Twiss]
2015-06-11  8:27       ` Opensource [Steve Twiss]
2015-06-11  8:27       ` [rtc-linux] " Opensource [Steve Twiss]
2015-06-11  8:50       ` Lee Jones
2015-06-11  8:50         ` Lee Jones
2015-06-11  8:50         ` [rtc-linux] " Lee Jones
2015-06-11  8:56       ` Lee Jones
2015-06-11  8:56         ` Lee Jones
2015-06-11  8:56         ` [rtc-linux] " Lee Jones
2015-06-11  9:27         ` Opensource [Steve Twiss]
2015-06-11  9:27           ` Opensource [Steve Twiss]
2015-06-11  9:27           ` Opensource [Steve Twiss]
2015-06-11  9:27           ` [rtc-linux] " Opensource [Steve Twiss]
2015-06-11 21:46           ` Alexandre Belloni
2015-06-11 21:46             ` Alexandre Belloni
2015-06-29  8:01         ` Opensource [Steve Twiss]
2015-06-29  8:01           ` Opensource [Steve Twiss]
2015-06-29  8:01           ` [rtc-linux] " Opensource [Steve Twiss]
2015-07-01  8:02           ` Lee Jones
2015-07-01  8:02             ` Lee Jones
2015-07-01  8:02             ` Lee Jones
2015-07-01  8:02             ` [rtc-linux] " Lee Jones
2015-05-19 13:10 ` [PATCH V3 2/4] regulator: da9062: DA9062 regulator driver S Twiss
2015-05-19 13:10   ` [rtc-linux] " S Twiss
2015-05-21 12:04   ` Mark Brown
2015-05-21 12:04     ` [rtc-linux] " Mark Brown
2015-05-21 13:48     ` Opensource [Steve Twiss]
2015-05-21 13:48       ` [rtc-linux] " Opensource [Steve Twiss]
2015-05-19 13:10 ` [PATCH V3 3/4] watchdog: da9062: DA9062 watchdog driver S Twiss
2015-05-19 13:10   ` [rtc-linux] " S Twiss
2015-05-20 20:30   ` Guenter Roeck
2015-05-20 20:30     ` Guenter Roeck
2015-05-20 20:30     ` [rtc-linux] " Guenter Roeck
2015-05-21  7:15     ` Opensource [Steve Twiss]
2015-05-21  7:15       ` Opensource [Steve Twiss]
2015-05-21  7:15       ` [rtc-linux] " Opensource [Steve Twiss]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1432041031.git.stwiss.opensource@diasemi.com \
    --to=stwiss.opensource@diasemi.com \
    --cc=a.zummo@towertech.it \
    --cc=broonie@kernel.org \
    --cc=david.chen@diasemi.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=galak@codeaurora.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=lee.jones@linaro.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=robh+dt@kernel.org \
    --cc=rtc-linux@googlegroups.com \
    --cc=sameo@linux.intel.com \
    --cc=support.opensource@diasemi.com \
    --cc=wim@iguana.be \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.