From: kgene@kernel.org (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/7] Add support for Exynos SROM Controller driver
Date: Thu, 17 Sep 2015 08:19:48 +0900 [thread overview]
Message-ID: <55F9F914.3000709@kernel.org> (raw)
In-Reply-To: <1440403348-8974-1-git-send-email-pankaj.dubey@samsung.com>
On 08/24/15 17:02, Pankaj Dubey wrote:
> This patch set adds support for Exynos SROM controller DT based driver.
> Currently SROM register sets are used only during S2R, so driver
> basically added for taking care of S2R. It will help us in removing
> static mapping from exynos.c and other extra code handline during S2R.
>
> This patch set also updated exynos4 and exynos5 dtsi files for with device
> node for srom, and added binding documentation for the same.
>
> First two patches are some minor cleanup in mach-exynos.
>
> Patchset v1 was posted here[1]
> [1]: https://lkml.org/lkml/2015/4/29/98
>
> Changes since v1:
> - Rebased to latest kgene tree.
> - Addressed review comments from Krzysztof Kozlowski.
> - Add two new patches for minor cleanup in exynos.c and map.h
>
> Pankaj Dubey (7):
> ARM: EXYNOS: remove unused static mapping of CMU for exynos5
> ARM: EXYNOS: code cleanup in map.h
> drivers: soc: add support for exynos SROM driver
> ARM: EXYNOS: Remove SROM related register settings from mach-exynos
> ARM: dts: add SROM device node for exynos4
> ARM: dts: add SROM device node for exynos5
> Documentation: dt-bindings: add exynos-srom binding information
>
> .../bindings/arm/samsung/exynos-srom.txt | 12 ++
> arch/arm/boot/dts/exynos4.dtsi | 5 +
> arch/arm/boot/dts/exynos5.dtsi | 5 +
> arch/arm/mach-exynos/Kconfig | 2 +
> arch/arm/mach-exynos/common.h | 2 -
> arch/arm/mach-exynos/exynos.c | 22 ----
> arch/arm/mach-exynos/include/mach/map.h | 8 --
> arch/arm/mach-exynos/regs-srom.h | 53 --------
> arch/arm/mach-exynos/suspend.c | 20 +--
> arch/arm/plat-samsung/include/plat/map-s5p.h | 1 -
> drivers/soc/Kconfig | 1 +
> drivers/soc/Makefile | 1 +
> drivers/soc/samsung/Kconfig | 13 ++
> drivers/soc/samsung/Makefile | 1 +
> drivers/soc/samsung/exynos-srom.c | 143 +++++++++++++++++++++
> drivers/soc/samsung/exynos-srom.h | 51 ++++++++
> 16 files changed, 236 insertions(+), 104 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/arm/samsung/exynos-srom.txt
> delete mode 100644 arch/arm/mach-exynos/regs-srom.h
> create mode 100644 drivers/soc/samsung/Kconfig
> create mode 100644 drivers/soc/samsung/Makefile
> create mode 100644 drivers/soc/samsung/exynos-srom.c
> create mode 100644 drivers/soc/samsung/exynos-srom.h
>
Hi Pankaj,
Can you please address comments as per Krzysztof's review?...
- Kukjin
next prev parent reply other threads:[~2015-09-16 23:19 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-24 8:02 [PATCH v2 0/7] Add support for Exynos SROM Controller driver Pankaj Dubey
2015-08-24 8:02 ` [PATCH v2 1/7] ARM: EXYNOS: remove unused static mapping of CMU for exynos5 Pankaj Dubey
2015-08-25 0:55 ` Krzysztof Kozlowski
2015-08-24 8:02 ` [PATCH v2 2/7] ARM: EXYNOS: code cleanup in map.h Pankaj Dubey
2015-08-25 0:56 ` Krzysztof Kozlowski
2015-08-24 8:02 ` [PATCH v2 3/7] drivers: soc: add support for exynos SROM driver Pankaj Dubey
2015-08-25 1:26 ` Krzysztof Kozlowski
2015-08-24 8:02 ` [PATCH v2 4/7] ARM: EXYNOS: Remove SROM related register settings from mach-exynos Pankaj Dubey
2015-08-25 1:53 ` Krzysztof Kozlowski
2015-08-24 8:02 ` [PATCH v2 5/7] ARM: dts: add SROM device node for exynos4 Pankaj Dubey
2015-08-25 1:57 ` Krzysztof Kozlowski
2015-08-24 8:02 ` [PATCH v2 6/7] ARM: dts: add SROM device node for exynos5 Pankaj Dubey
2015-08-25 2:03 ` Krzysztof Kozlowski
2015-08-24 8:02 ` [PATCH v2 7/7] Documentation: dt-bindings: add exynos-srom binding information Pankaj Dubey
2015-08-25 2:03 ` Krzysztof Kozlowski
2015-08-25 2:18 ` [PATCH v2 0/7] Add support for Exynos SROM Controller driver Krzysztof Kozlowski
2015-10-13 13:25 ` Pankaj Dubey
2015-09-16 23:19 ` Kukjin Kim [this message]
2015-10-05 11:36 ` Pavel Fedin
2015-10-05 12:48 ` Krzysztof Kozlowski
2015-10-05 13:18 ` Pavel Fedin
2015-10-06 0:23 ` Krzysztof Kozlowski
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=55F9F914.3000709@kernel.org \
--to=kgene@kernel.org \
--cc=linux-arm-kernel@lists.infradead.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 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).