Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754785AbbHYCSU (ORCPT ); Mon, 24 Aug 2015 22:18:20 -0400 Received: from mailout4.w1.samsung.com ([210.118.77.14]:63686 "EHLO mailout4.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751839AbbHYCSS (ORCPT ); Mon, 24 Aug 2015 22:18:18 -0400 X-AuditID: cbfec7f5-f794b6d000001495-6f-55dbd067a28c Message-id: <55DBD063.5040703@samsung.com> Date: Tue, 25 Aug 2015 11:18:11 +0900 From: Krzysztof Kozlowski User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.8.0 MIME-version: 1.0 To: Pankaj Dubey , linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: kgene@kernel.org, heiko@sntech.de, thomas.ab@samsung.com Subject: Re: [PATCH v2 0/7] Add support for Exynos SROM Controller driver References: <1440403348-8974-1-git-send-email-pankaj.dubey@samsung.com> In-reply-to: <1440403348-8974-1-git-send-email-pankaj.dubey@samsung.com> Content-type: text/plain; charset=windows-1252 Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFrrLLMWRmVeSWpSXmKPExsVy+t/xK7rpF26HGsx5pGPx/9FrVovXLwwt +h+/ZrbY9Pgaq8XlXXPYLGac38dksWjrF3aLjmWMDhwem1Z1snlsXlLv0bdlFaPH9mvzmD0+ b5ILYI3isklJzcksSy3St0vgyrh34yFzwUKxiouHFjE2MPYJdDFyckgImEi8n3+CFcIWk7hw bz1bFyMXh5DAUkaJL8+Ps0A4Xxgl1jSuYASp4hXQkvj8/yg7iM0ioCoxYdtaNhCbTcBYYvPy JWC2qECExPLVJ6HqBSV+TL4HNkhEYAqjxMWeZWAJZgEbidtLFoI1CAt4Ssx48o4ZxBYScJd4 v3ECWJxTwEPi3uSpQHEOoHo9ifsXtSBa5SU2r3nLPIFRYBaSFbMQqmYhqVrAyLyKUTS1NLmg OCk910ivODG3uDQvXS85P3cTIyTQv+5gXHrM6hCjAAejEg/vjPm3Q4VYE8uKK3MPMUpwMCuJ 8D7fCBTiTUmsrEotyo8vKs1JLT7EKM3BoiTOO3PX+xAhgfTEktTs1NSC1CKYLBMHp1QDY9Ur 5fNvapPvnjmR5fRA1UFg8qeG5mcvc63Yb5Uo9SRwunnNuVYjN4nh5La+nLKlWfJeF28wMhX/ W6V1OJDhdemu2Z9ipztq1XgUXGN4/eT8SebVzZy7lnbyTH2wf5laytwDWSc4Hr+ydjr2jr32 4H+NPddivzv/73+684hAs+/aDivObDmLF0osxRmJhlrMRcWJABRv9yNwAgAA Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3034 Lines: 65 On 24.08.2015 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 One more thing: please update the existing Exynos entry in maintainers so it would cover drivers/soc/samsung. Best regards, Krzysztof > > .../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 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/