OSDN Git Service

pinctrl: samsung: Split Exynos drivers per ARMv7 and ARMv8
authorKrzysztof Kozlowski <krzk@kernel.org>
Tue, 16 May 2017 18:56:27 +0000 (20:56 +0200)
committerKrzysztof Kozlowski <krzk@kernel.org>
Wed, 7 Jun 2017 18:40:47 +0000 (20:40 +0200)
commitcfa76ddf5b3aad642cc904daa3d3784cbb5f2d57
tree5867aa4fa885adcb3fb33ba38f12159aadacf0e8
parent51d1eda5d852e517953996799780ee4fda31e341
pinctrl: samsung: Split Exynos drivers per ARMv7 and ARMv8

Exynos pinctrl drivers contain pretty big per-SoC data structures.  The
pinctrl-exynos object file contained code and data for both ARMv7 and
ARMv8 SoCs thus it grew big.  There will not be a shared image between
ARMv7 and ARMv8 so there is no need to combine all of this into one
driver.

Splitting the data allows to make it more granular (e.g. code related to
ARMv8 Exynos is self-contained), slightly speed up the compilation and
reduce the effective size of compiled kernel.

The common data structures and functions reside still in existing
pinctrl-exynos.c.  Only the SoC-specific parts were moved out to new
files.  Except marking few functions non-static and adding them to
header, there were no functional changes in the code.

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Tested-by: Marek Szyprowski <m.szyprowski@samsung.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com>
Tested-by: Alim Akhtar <alim.akhtar@samsung.com>
drivers/pinctrl/samsung/Kconfig
drivers/pinctrl/samsung/Makefile
drivers/pinctrl/samsung/pinctrl-exynos-arm.c [new file with mode: 0644]
drivers/pinctrl/samsung/pinctrl-exynos-arm64.c [new file with mode: 0644]
drivers/pinctrl/samsung/pinctrl-exynos.c
drivers/pinctrl/samsung/pinctrl-exynos.h
drivers/pinctrl/samsung/pinctrl-samsung.c