All of lore.kernel.org
 help / color / mirror / Atom feed
From: Charles Keepax <ckeepax@opensource.cirrus.com>
To: <broonie@kernel.org>, <lee.jones@linaro.org>
Cc: <lgirdwood@gmail.com>, <robh+dt@kernel.org>,
	<mark.rutland@arm.com>, <devicetree@vger.kernel.org>,
	<alsa-devel@alsa-project.org>, <linux-kernel@vger.kernel.org>,
	<patches@opensource.cirrus.com>
Subject: [PATCH 0/7] Refactor audio device tree handling
Date: Mon, 4 Sep 2017 16:41:47 +0100	[thread overview]
Message-ID: <20170904154154.4395-1-ckeepax@opensource.cirrus.com> (raw)

Move the audio device tree binding out into its own
documentation file, as is already done for the regulator
and extcon bindings. Then add support for a new device tree
property allowing the volume limits on the CODEC to be
configured.

It should be possible to put the patches through their
separate trees.

Thanks,
Charles

Charles Keepax (7):
  ASoC: arizona: Add new common Arizona init function
  ASoC: arizona: Add handling for audio related device tree entries
  ASoC: arizona: Add audio device tree bindings
  mfd: arizona: Remove audio related device tree code
  mfd: arizona: Remove audio bindings from MFD binding document
  ASoC: arizona: Add support for setting the output volume limits
  ASoC: arizona: Add device tree binding doc for volume limits

 Documentation/devicetree/bindings/mfd/arizona.txt  |  40 +----
 .../devicetree/bindings/sound/wlf,arizona.txt      |  53 +++++++
 MAINTAINERS                                        |   1 +
 drivers/mfd/arizona-core.c                         | 132 +---------------
 include/linux/mfd/arizona/pdata.h                  |   3 +
 sound/soc/codecs/arizona.c                         | 166 ++++++++++++++++++++-
 sound/soc/codecs/arizona.h                         |   6 +-
 sound/soc/codecs/cs47l24.c                         |  14 +-
 sound/soc/codecs/wm5102.c                          |  14 +-
 sound/soc/codecs/wm5110.c                          |  14 +-
 sound/soc/codecs/wm8997.c                          |  15 +-
 sound/soc/codecs/wm8998.c                          |  11 +-
 12 files changed, 288 insertions(+), 181 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/wlf,arizona.txt

-- 
2.11.0

WARNING: multiple messages have this Message-ID (diff)
From: Charles Keepax <ckeepax@opensource.cirrus.com>
To: broonie@kernel.org, lee.jones@linaro.org
Cc: mark.rutland@arm.com, devicetree@vger.kernel.org,
	alsa-devel@alsa-project.org, patches@opensource.cirrus.com,
	lgirdwood@gmail.com, linux-kernel@vger.kernel.org,
	robh+dt@kernel.org
Subject: [PATCH 0/7] Refactor audio device tree handling
Date: Mon, 4 Sep 2017 16:41:47 +0100	[thread overview]
Message-ID: <20170904154154.4395-1-ckeepax@opensource.cirrus.com> (raw)

Move the audio device tree binding out into its own
documentation file, as is already done for the regulator
and extcon bindings. Then add support for a new device tree
property allowing the volume limits on the CODEC to be
configured.

It should be possible to put the patches through their
separate trees.

Thanks,
Charles

Charles Keepax (7):
  ASoC: arizona: Add new common Arizona init function
  ASoC: arizona: Add handling for audio related device tree entries
  ASoC: arizona: Add audio device tree bindings
  mfd: arizona: Remove audio related device tree code
  mfd: arizona: Remove audio bindings from MFD binding document
  ASoC: arizona: Add support for setting the output volume limits
  ASoC: arizona: Add device tree binding doc for volume limits

 Documentation/devicetree/bindings/mfd/arizona.txt  |  40 +----
 .../devicetree/bindings/sound/wlf,arizona.txt      |  53 +++++++
 MAINTAINERS                                        |   1 +
 drivers/mfd/arizona-core.c                         | 132 +---------------
 include/linux/mfd/arizona/pdata.h                  |   3 +
 sound/soc/codecs/arizona.c                         | 166 ++++++++++++++++++++-
 sound/soc/codecs/arizona.h                         |   6 +-
 sound/soc/codecs/cs47l24.c                         |  14 +-
 sound/soc/codecs/wm5102.c                          |  14 +-
 sound/soc/codecs/wm5110.c                          |  14 +-
 sound/soc/codecs/wm8997.c                          |  15 +-
 sound/soc/codecs/wm8998.c                          |  11 +-
 12 files changed, 288 insertions(+), 181 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/wlf,arizona.txt

-- 
2.11.0

             reply	other threads:[~2017-09-04 15:43 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-04 15:41 Charles Keepax [this message]
2017-09-04 15:41 ` [PATCH 0/7] Refactor audio device tree handling Charles Keepax
2017-09-04 15:41 ` [PATCH 1/7] ASoC: arizona: Add new common Arizona init function Charles Keepax
2017-09-04 15:41   ` Charles Keepax
2017-09-19 15:00   ` Applied "ASoC: arizona: Add new common Arizona init function" to the asoc tree Mark Brown
2017-09-19 15:00     ` Mark Brown
2017-09-04 15:41 ` [PATCH 2/7] ASoC: arizona: Add handling for audio related device tree entries Charles Keepax
2017-09-04 15:41   ` Charles Keepax
2017-09-19 15:00   ` Applied "ASoC: arizona: Add handling for audio related device tree entries" to the asoc tree Mark Brown
2017-09-19 15:00     ` Mark Brown
2017-09-04 15:41 ` [PATCH 3/7] ASoC: arizona: Add audio device tree bindings Charles Keepax
2017-09-04 15:41   ` Charles Keepax
2017-09-12 21:14   ` Rob Herring
2017-09-19 14:59   ` Applied "ASoC: arizona: Add audio device tree bindings" to the asoc tree Mark Brown
2017-09-19 14:59     ` Mark Brown
2017-09-04 15:41 ` [PATCH 4/7] mfd: arizona: Remove audio related device tree code Charles Keepax
2017-09-04 15:41   ` Charles Keepax
2017-09-05  7:23   ` Lee Jones
2017-09-20 17:14   ` Applied "mfd: arizona: Remove audio related device tree code" to the asoc tree Mark Brown
2017-09-20 17:14     ` Mark Brown
2017-09-04 15:41 ` [PATCH 5/7] mfd: arizona: Remove audio bindings from MFD binding document Charles Keepax
2017-09-04 15:41   ` Charles Keepax
2017-09-05  7:22   ` Lee Jones
2017-09-12 21:15   ` Rob Herring
2017-09-20 17:14   ` Applied "mfd: arizona: Remove audio bindings from MFD binding document" to the asoc tree Mark Brown
2017-09-20 17:14     ` Mark Brown
2017-09-04 15:41 ` [PATCH 6/7] ASoC: arizona: Add support for setting the output volume limits Charles Keepax
2017-09-04 15:41   ` Charles Keepax
2017-09-05  7:22   ` Lee Jones
2017-09-20 17:14   ` Applied "ASoC: arizona: Add support for setting the output volume limits" to the asoc tree Mark Brown
2017-09-20 17:14     ` Mark Brown
2017-09-04 15:41 ` [PATCH 7/7] ASoC: arizona: Add device tree binding doc for volume limits Charles Keepax
2017-09-04 15:41   ` Charles Keepax
2017-09-12 21:21   ` Rob Herring
2017-09-12 21:21     ` Rob Herring
2017-09-20 17:13   ` Applied "ASoC: arizona: Add device tree binding doc for volume limits" to the asoc tree Mark Brown
2017-09-20 17:13     ` Mark Brown

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=20170904154154.4395-1-ckeepax@opensource.cirrus.com \
    --to=ckeepax@opensource.cirrus.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=lee.jones@linaro.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=patches@opensource.cirrus.com \
    --cc=robh+dt@kernel.org \
    /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.