clk: renesas: Rework Kconfig and Makefile logic
The goals are to:
- Allow precise control over and automatic selection of which
(sub)drivers are used for which SoC (which may change in the
future),
- Allow adding support for new SoCs easily,
- Allow compile-testing of all (sub)drivers,
- Keep driver selection logic in the subsystem-specific Kconfig,
independent from the architecture-specific Kconfig (i.e. no "select"
from arch/arm64/Kconfig.platforms), to avoid dependencies.
This is implemented by:
- Introducing Kconfig symbols for all drivers and sub-drivers,
- Introducing the Kconfig symbol CLK_RENESAS, which is enabled
automatically when building for a Renesas ARM platform, and which
enables all required drivers without interaction of the user, based
on SoC-specific ARCH_* symbols,
- Allowing the user to enable any Kconfig symbol manually if
COMPILE_TEST is enabled,
- Using the new Kconfig symbols instead of the ARCH_* symbols to
control compilation in the Makefile,
- Always entering drivers/clk/renesas/ during the build.
Note that currently not all (sub)drivers are enabled for
compile-testing, as they depend on independent fixes in other
subsystems.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
2017-04-24 22:54:14 +08:00
|
|
|
config CLK_RENESAS
|
|
|
|
bool "Renesas SoC clock support" if COMPILE_TEST && !ARCH_RENESAS
|
|
|
|
default y if ARCH_RENESAS
|
|
|
|
select CLK_EMEV2 if ARCH_EMEV2
|
|
|
|
select CLK_RZA1 if ARCH_R7S72100
|
|
|
|
select CLK_R8A73A4 if ARCH_R8A73A4
|
|
|
|
select CLK_R8A7740 if ARCH_R8A7740
|
|
|
|
select CLK_R8A7743 if ARCH_R8A7743
|
|
|
|
select CLK_R8A7745 if ARCH_R8A7745
|
|
|
|
select CLK_R8A7778 if ARCH_R8A7778
|
|
|
|
select CLK_R8A7779 if ARCH_R8A7779
|
|
|
|
select CLK_R8A7790 if ARCH_R8A7790
|
|
|
|
select CLK_R8A7791 if ARCH_R8A7791 || ARCH_R8A7793
|
|
|
|
select CLK_R8A7792 if ARCH_R8A7792
|
|
|
|
select CLK_R8A7794 if ARCH_R8A7794
|
|
|
|
select CLK_R8A7795 if ARCH_R8A7795
|
|
|
|
select CLK_R8A7796 if ARCH_R8A7796
|
|
|
|
select CLK_SH73A0 if ARCH_SH73A0
|
|
|
|
|
|
|
|
if CLK_RENESAS
|
|
|
|
|
2017-03-20 01:05:42 +08:00
|
|
|
config CLK_RENESAS_LEGACY
|
|
|
|
bool "Legacy DT clock support"
|
2017-03-20 01:12:51 +08:00
|
|
|
depends on CLK_R8A7790 || CLK_R8A7791 || CLK_R8A7792 || CLK_R8A7794
|
2017-03-20 01:05:42 +08:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable backward compatibility with old device trees describing a
|
|
|
|
hierarchical representation of the various CPG and MSTP clocks.
|
|
|
|
|
|
|
|
Say Y if you want your kernel to work with old DTBs.
|
|
|
|
|
clk: renesas: Rework Kconfig and Makefile logic
The goals are to:
- Allow precise control over and automatic selection of which
(sub)drivers are used for which SoC (which may change in the
future),
- Allow adding support for new SoCs easily,
- Allow compile-testing of all (sub)drivers,
- Keep driver selection logic in the subsystem-specific Kconfig,
independent from the architecture-specific Kconfig (i.e. no "select"
from arch/arm64/Kconfig.platforms), to avoid dependencies.
This is implemented by:
- Introducing Kconfig symbols for all drivers and sub-drivers,
- Introducing the Kconfig symbol CLK_RENESAS, which is enabled
automatically when building for a Renesas ARM platform, and which
enables all required drivers without interaction of the user, based
on SoC-specific ARCH_* symbols,
- Allowing the user to enable any Kconfig symbol manually if
COMPILE_TEST is enabled,
- Using the new Kconfig symbols instead of the ARCH_* symbols to
control compilation in the Makefile,
- Always entering drivers/clk/renesas/ during the build.
Note that currently not all (sub)drivers are enabled for
compile-testing, as they depend on independent fixes in other
subsystems.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
2017-04-24 22:54:14 +08:00
|
|
|
# SoC
|
|
|
|
config CLK_EMEV2
|
|
|
|
bool "Emma Mobile EV2 clock support" if COMPILE_TEST
|
|
|
|
|
|
|
|
config CLK_RZA1
|
|
|
|
bool
|
|
|
|
select CLK_RENESAS_CPG_MSTP
|
|
|
|
|
|
|
|
config CLK_R8A73A4
|
|
|
|
bool
|
|
|
|
select CLK_RENESAS_CPG_MSTP
|
|
|
|
select CLK_RENESAS_DIV6
|
|
|
|
|
|
|
|
config CLK_R8A7740
|
|
|
|
bool
|
|
|
|
select CLK_RENESAS_CPG_MSTP
|
|
|
|
select CLK_RENESAS_DIV6
|
|
|
|
|
|
|
|
config CLK_R8A7743
|
|
|
|
bool
|
|
|
|
select CLK_RCAR_GEN2_CPG
|
|
|
|
|
|
|
|
config CLK_R8A7745
|
|
|
|
bool
|
|
|
|
select CLK_RCAR_GEN2_CPG
|
|
|
|
|
|
|
|
config CLK_R8A7778
|
|
|
|
bool
|
|
|
|
select CLK_RENESAS_CPG_MSTP
|
|
|
|
|
|
|
|
config CLK_R8A7779
|
|
|
|
bool
|
|
|
|
select CLK_RENESAS_CPG_MSTP
|
|
|
|
|
|
|
|
config CLK_R8A7790
|
|
|
|
bool
|
2017-03-20 01:05:42 +08:00
|
|
|
select CLK_RCAR_GEN2 if CLK_RENESAS_LEGACY
|
|
|
|
select CLK_RCAR_GEN2_CPG
|
clk: renesas: Rework Kconfig and Makefile logic
The goals are to:
- Allow precise control over and automatic selection of which
(sub)drivers are used for which SoC (which may change in the
future),
- Allow adding support for new SoCs easily,
- Allow compile-testing of all (sub)drivers,
- Keep driver selection logic in the subsystem-specific Kconfig,
independent from the architecture-specific Kconfig (i.e. no "select"
from arch/arm64/Kconfig.platforms), to avoid dependencies.
This is implemented by:
- Introducing Kconfig symbols for all drivers and sub-drivers,
- Introducing the Kconfig symbol CLK_RENESAS, which is enabled
automatically when building for a Renesas ARM platform, and which
enables all required drivers without interaction of the user, based
on SoC-specific ARCH_* symbols,
- Allowing the user to enable any Kconfig symbol manually if
COMPILE_TEST is enabled,
- Using the new Kconfig symbols instead of the ARCH_* symbols to
control compilation in the Makefile,
- Always entering drivers/clk/renesas/ during the build.
Note that currently not all (sub)drivers are enabled for
compile-testing, as they depend on independent fixes in other
subsystems.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
2017-04-24 22:54:14 +08:00
|
|
|
select CLK_RENESAS_DIV6
|
|
|
|
|
|
|
|
config CLK_R8A7791
|
|
|
|
bool
|
2015-10-16 17:41:19 +08:00
|
|
|
select CLK_RCAR_GEN2 if CLK_RENESAS_LEGACY
|
|
|
|
select CLK_RCAR_GEN2_CPG
|
clk: renesas: Rework Kconfig and Makefile logic
The goals are to:
- Allow precise control over and automatic selection of which
(sub)drivers are used for which SoC (which may change in the
future),
- Allow adding support for new SoCs easily,
- Allow compile-testing of all (sub)drivers,
- Keep driver selection logic in the subsystem-specific Kconfig,
independent from the architecture-specific Kconfig (i.e. no "select"
from arch/arm64/Kconfig.platforms), to avoid dependencies.
This is implemented by:
- Introducing Kconfig symbols for all drivers and sub-drivers,
- Introducing the Kconfig symbol CLK_RENESAS, which is enabled
automatically when building for a Renesas ARM platform, and which
enables all required drivers without interaction of the user, based
on SoC-specific ARCH_* symbols,
- Allowing the user to enable any Kconfig symbol manually if
COMPILE_TEST is enabled,
- Using the new Kconfig symbols instead of the ARCH_* symbols to
control compilation in the Makefile,
- Always entering drivers/clk/renesas/ during the build.
Note that currently not all (sub)drivers are enabled for
compile-testing, as they depend on independent fixes in other
subsystems.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
2017-04-24 22:54:14 +08:00
|
|
|
select CLK_RENESAS_DIV6
|
|
|
|
|
|
|
|
config CLK_R8A7792
|
|
|
|
bool
|
2017-03-20 01:08:59 +08:00
|
|
|
select CLK_RCAR_GEN2 if CLK_RENESAS_LEGACY
|
|
|
|
select CLK_RCAR_GEN2_CPG
|
clk: renesas: Rework Kconfig and Makefile logic
The goals are to:
- Allow precise control over and automatic selection of which
(sub)drivers are used for which SoC (which may change in the
future),
- Allow adding support for new SoCs easily,
- Allow compile-testing of all (sub)drivers,
- Keep driver selection logic in the subsystem-specific Kconfig,
independent from the architecture-specific Kconfig (i.e. no "select"
from arch/arm64/Kconfig.platforms), to avoid dependencies.
This is implemented by:
- Introducing Kconfig symbols for all drivers and sub-drivers,
- Introducing the Kconfig symbol CLK_RENESAS, which is enabled
automatically when building for a Renesas ARM platform, and which
enables all required drivers without interaction of the user, based
on SoC-specific ARCH_* symbols,
- Allowing the user to enable any Kconfig symbol manually if
COMPILE_TEST is enabled,
- Using the new Kconfig symbols instead of the ARCH_* symbols to
control compilation in the Makefile,
- Always entering drivers/clk/renesas/ during the build.
Note that currently not all (sub)drivers are enabled for
compile-testing, as they depend on independent fixes in other
subsystems.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
2017-04-24 22:54:14 +08:00
|
|
|
|
|
|
|
config CLK_R8A7794
|
|
|
|
bool
|
2017-03-20 01:12:51 +08:00
|
|
|
select CLK_RCAR_GEN2 if CLK_RENESAS_LEGACY
|
|
|
|
select CLK_RCAR_GEN2_CPG
|
clk: renesas: Rework Kconfig and Makefile logic
The goals are to:
- Allow precise control over and automatic selection of which
(sub)drivers are used for which SoC (which may change in the
future),
- Allow adding support for new SoCs easily,
- Allow compile-testing of all (sub)drivers,
- Keep driver selection logic in the subsystem-specific Kconfig,
independent from the architecture-specific Kconfig (i.e. no "select"
from arch/arm64/Kconfig.platforms), to avoid dependencies.
This is implemented by:
- Introducing Kconfig symbols for all drivers and sub-drivers,
- Introducing the Kconfig symbol CLK_RENESAS, which is enabled
automatically when building for a Renesas ARM platform, and which
enables all required drivers without interaction of the user, based
on SoC-specific ARCH_* symbols,
- Allowing the user to enable any Kconfig symbol manually if
COMPILE_TEST is enabled,
- Using the new Kconfig symbols instead of the ARCH_* symbols to
control compilation in the Makefile,
- Always entering drivers/clk/renesas/ during the build.
Note that currently not all (sub)drivers are enabled for
compile-testing, as they depend on independent fixes in other
subsystems.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
2017-04-24 22:54:14 +08:00
|
|
|
select CLK_RENESAS_DIV6
|
|
|
|
|
|
|
|
config CLK_R8A7795
|
|
|
|
bool
|
|
|
|
select CLK_RCAR_GEN3_CPG
|
|
|
|
|
|
|
|
config CLK_R8A7796
|
|
|
|
bool
|
|
|
|
select CLK_RCAR_GEN3_CPG
|
|
|
|
|
|
|
|
config CLK_SH73A0
|
|
|
|
bool
|
|
|
|
select CLK_RENESAS_CPG_MSTP
|
|
|
|
select CLK_RENESAS_DIV6
|
|
|
|
|
|
|
|
|
|
|
|
# Family
|
|
|
|
config CLK_RCAR_GEN2
|
|
|
|
bool
|
|
|
|
select CLK_RENESAS_CPG_MSTP
|
|
|
|
select CLK_RENESAS_DIV6
|
|
|
|
|
|
|
|
config CLK_RCAR_GEN2_CPG
|
|
|
|
bool
|
|
|
|
select CLK_RENESAS_CPG_MSSR
|
|
|
|
|
|
|
|
config CLK_RCAR_GEN3_CPG
|
|
|
|
bool
|
|
|
|
select CLK_RENESAS_CPG_MSSR
|
|
|
|
|
|
|
|
|
|
|
|
# Generic
|
2016-04-13 17:08:42 +08:00
|
|
|
config CLK_RENESAS_CPG_MSSR
|
|
|
|
bool
|
clk: renesas: Rework Kconfig and Makefile logic
The goals are to:
- Allow precise control over and automatic selection of which
(sub)drivers are used for which SoC (which may change in the
future),
- Allow adding support for new SoCs easily,
- Allow compile-testing of all (sub)drivers,
- Keep driver selection logic in the subsystem-specific Kconfig,
independent from the architecture-specific Kconfig (i.e. no "select"
from arch/arm64/Kconfig.platforms), to avoid dependencies.
This is implemented by:
- Introducing Kconfig symbols for all drivers and sub-drivers,
- Introducing the Kconfig symbol CLK_RENESAS, which is enabled
automatically when building for a Renesas ARM platform, and which
enables all required drivers without interaction of the user, based
on SoC-specific ARCH_* symbols,
- Allowing the user to enable any Kconfig symbol manually if
COMPILE_TEST is enabled,
- Using the new Kconfig symbols instead of the ARCH_* symbols to
control compilation in the Makefile,
- Always entering drivers/clk/renesas/ during the build.
Note that currently not all (sub)drivers are enabled for
compile-testing, as they depend on independent fixes in other
subsystems.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
2017-04-24 22:54:14 +08:00
|
|
|
select CLK_RENESAS_DIV6
|
2016-04-13 17:08:42 +08:00
|
|
|
|
|
|
|
config CLK_RENESAS_CPG_MSTP
|
|
|
|
bool
|
clk: renesas: Rework Kconfig and Makefile logic
The goals are to:
- Allow precise control over and automatic selection of which
(sub)drivers are used for which SoC (which may change in the
future),
- Allow adding support for new SoCs easily,
- Allow compile-testing of all (sub)drivers,
- Keep driver selection logic in the subsystem-specific Kconfig,
independent from the architecture-specific Kconfig (i.e. no "select"
from arch/arm64/Kconfig.platforms), to avoid dependencies.
This is implemented by:
- Introducing Kconfig symbols for all drivers and sub-drivers,
- Introducing the Kconfig symbol CLK_RENESAS, which is enabled
automatically when building for a Renesas ARM platform, and which
enables all required drivers without interaction of the user, based
on SoC-specific ARCH_* symbols,
- Allowing the user to enable any Kconfig symbol manually if
COMPILE_TEST is enabled,
- Using the new Kconfig symbols instead of the ARCH_* symbols to
control compilation in the Makefile,
- Always entering drivers/clk/renesas/ during the build.
Note that currently not all (sub)drivers are enabled for
compile-testing, as they depend on independent fixes in other
subsystems.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
2017-04-24 22:54:14 +08:00
|
|
|
|
|
|
|
config CLK_RENESAS_DIV6
|
|
|
|
bool "DIV6 clock support" if COMPILE_TEST
|
|
|
|
|
|
|
|
endif # CLK_RENESAS
|