From: Jonathan Cameron <jic23@kernel.org>
To: Alexander Sverdlin <alexander.sverdlin@gmail.com>
Cc: linux-iio@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
Hartley Sweeten <hsweeten@visionengravers.com>,
Ryan Mallon <rmallon@gmail.com>, Hartmut Knaack <knaack.h@gmx.de>,
Lars-Peter Clausen <lars@metafoo.de>,
Peter Meerwald-Stadler <pmeerw@pmeerw.net>
Subject: Re: [PATCH v5 0/5] iio: ADC driver for EP93xx SoC
Date: Sun, 11 Jun 2017 15:18:37 +0100 [thread overview]
Message-ID: <20170611151837.35fc64a4@kernel.org> (raw)
In-Reply-To: <20170603232652.21401-1-alexander.sverdlin@gmail.com>
On Sun, 4 Jun 2017 01:26:47 +0200
Alexander Sverdlin <alexander.sverdlin@gmail.com> wrote:
> This series prepares the necessary infrastructure for ADC platform device on
> Cirrus Logic EP93xx family of SoCs and adds the driver for ADC device using
> IIO subsystem.
The reason these have been reposted is because the EP93xx don't
have an actual tree as such. They are typically handled
directly through the arm-soc tree.
As such I'm looking for a route to get this applied.
The dependencies are such that the whole series should go through
either arm-soc or iio. I don't really mind which.
Either I need Acks for applying the patches that touch
the arch bits (we have Ryan's but I'd like a more general
arm-soc one given this will be in your area), or
I will probably ack the driver in a minute so the log can
go through arm-soc.
Anyhow, don't really mind but let's get this moving!
Jonathan
>
> Changelog
> v5:
> Rebased to ea094f3c830a
> Added Ryan's ack
> v4:
> Spelling improvements
> sign_extend32() usage
> v3:
> Rebased to the current master
> sizeof(struct foo) -> sizeof(*bar)
> v2:
> Added Documentation/iio/ep93xx_adc.txt
> Removed extend_name
> Added timeout to the status polling loop
> Used iio_device_register() instead of devm_iio_device_register()
>
> Alexander Sverdlin (5):
> clk: ep93xx: Implement clk_get_parent()
> clk: ep93xx: Add ADC clock
> ep93xx: Add ADC platform device support to core
> edb93xx: Add ADC platform device
> iio: adc: New driver for Cirrus Logic EP93xx ADC
>
> Documentation/iio/ep93xx_adc.txt | 29 +++
> arch/arm/mach-ep93xx/clock.c | 14 ++
> arch/arm/mach-ep93xx/core.c | 24 +++
> arch/arm/mach-ep93xx/edb93xx.c | 1 +
> arch/arm/mach-ep93xx/include/mach/platform.h | 1 +
> arch/arm/mach-ep93xx/soc.h | 1 +
> drivers/iio/adc/Kconfig | 11 ++
> drivers/iio/adc/Makefile | 1 +
> drivers/iio/adc/ep93xx_adc.c | 255 +++++++++++++++++++++++++++
> 9 files changed, 337 insertions(+)
> create mode 100644 Documentation/iio/ep93xx_adc.txt
> create mode 100644 drivers/iio/adc/ep93xx_adc.c
>
WARNING: multiple messages have this Message-ID (diff)
From: jic23@kernel.org (Jonathan Cameron)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 0/5] iio: ADC driver for EP93xx SoC
Date: Sun, 11 Jun 2017 15:18:37 +0100 [thread overview]
Message-ID: <20170611151837.35fc64a4@kernel.org> (raw)
In-Reply-To: <20170603232652.21401-1-alexander.sverdlin@gmail.com>
On Sun, 4 Jun 2017 01:26:47 +0200
Alexander Sverdlin <alexander.sverdlin@gmail.com> wrote:
> This series prepares the necessary infrastructure for ADC platform device on
> Cirrus Logic EP93xx family of SoCs and adds the driver for ADC device using
> IIO subsystem.
The reason these have been reposted is because the EP93xx don't
have an actual tree as such. They are typically handled
directly through the arm-soc tree.
As such I'm looking for a route to get this applied.
The dependencies are such that the whole series should go through
either arm-soc or iio. I don't really mind which.
Either I need Acks for applying the patches that touch
the arch bits (we have Ryan's but I'd like a more general
arm-soc one given this will be in your area), or
I will probably ack the driver in a minute so the log can
go through arm-soc.
Anyhow, don't really mind but let's get this moving!
Jonathan
>
> Changelog
> v5:
> Rebased to ea094f3c830a
> Added Ryan's ack
> v4:
> Spelling improvements
> sign_extend32() usage
> v3:
> Rebased to the current master
> sizeof(struct foo) -> sizeof(*bar)
> v2:
> Added Documentation/iio/ep93xx_adc.txt
> Removed extend_name
> Added timeout to the status polling loop
> Used iio_device_register() instead of devm_iio_device_register()
>
> Alexander Sverdlin (5):
> clk: ep93xx: Implement clk_get_parent()
> clk: ep93xx: Add ADC clock
> ep93xx: Add ADC platform device support to core
> edb93xx: Add ADC platform device
> iio: adc: New driver for Cirrus Logic EP93xx ADC
>
> Documentation/iio/ep93xx_adc.txt | 29 +++
> arch/arm/mach-ep93xx/clock.c | 14 ++
> arch/arm/mach-ep93xx/core.c | 24 +++
> arch/arm/mach-ep93xx/edb93xx.c | 1 +
> arch/arm/mach-ep93xx/include/mach/platform.h | 1 +
> arch/arm/mach-ep93xx/soc.h | 1 +
> drivers/iio/adc/Kconfig | 11 ++
> drivers/iio/adc/Makefile | 1 +
> drivers/iio/adc/ep93xx_adc.c | 255 +++++++++++++++++++++++++++
> 9 files changed, 337 insertions(+)
> create mode 100644 Documentation/iio/ep93xx_adc.txt
> create mode 100644 drivers/iio/adc/ep93xx_adc.c
>
next prev parent reply other threads:[~2017-06-11 14:18 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-03 23:26 [PATCH v5 0/5] iio: ADC driver for EP93xx SoC Alexander Sverdlin
2017-06-03 23:26 ` Alexander Sverdlin
2017-06-03 23:26 ` [PATCH v5 1/5] clk: ep93xx: Implement clk_get_parent() Alexander Sverdlin
2017-06-03 23:26 ` Alexander Sverdlin
2017-06-03 23:26 ` [PATCH v5 2/5] clk: ep93xx: Add ADC clock Alexander Sverdlin
2017-06-03 23:26 ` Alexander Sverdlin
2017-06-03 23:26 ` [PATCH v5 3/5] ep93xx: Add ADC platform device support to core Alexander Sverdlin
2017-06-03 23:26 ` Alexander Sverdlin
2017-06-03 23:26 ` [PATCH v5 4/5] edb93xx: Add ADC platform device Alexander Sverdlin
2017-06-03 23:26 ` Alexander Sverdlin
2017-06-03 23:26 ` [PATCH v5 5/5] iio: adc: New driver for Cirrus Logic EP93xx ADC Alexander Sverdlin
2017-06-03 23:26 ` Alexander Sverdlin
2017-06-11 14:21 ` Jonathan Cameron
2017-06-11 14:21 ` Jonathan Cameron
2017-06-11 14:18 ` Jonathan Cameron [this message]
2017-06-11 14:18 ` [PATCH v5 0/5] iio: ADC driver for EP93xx SoC Jonathan Cameron
2017-07-21 7:50 ` Arnd Bergmann
2017-07-21 7:50 ` Arnd Bergmann
2017-07-24 20:51 ` [PATCH v6] iio: adc: New driver for Cirrus Logic EP93xx ADC Alexander Sverdlin
2017-07-24 20:51 ` Alexander Sverdlin
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=20170611151837.35fc64a4@kernel.org \
--to=jic23@kernel.org \
--cc=alexander.sverdlin@gmail.com \
--cc=hsweeten@visionengravers.com \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-iio@vger.kernel.org \
--cc=pmeerw@pmeerw.net \
--cc=rmallon@gmail.com \
/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.