Message ID | 20210627045631.2882-4-jiaxun.yang@flygoat.com |
---|---|
State | Superseded |
Headers | show |
Series | MIPS: Migrate pistachio to generic kernel | expand |
Quoting Jiaxun Yang (2021-06-26 21:56:25) > diff --git a/drivers/clk/pistachio/Kconfig b/drivers/clk/pistachio/Kconfig > new file mode 100644 > index 000000000000..efb7a7f45259 > --- /dev/null > +++ b/drivers/clk/pistachio/Kconfig > @@ -0,0 +1,8 @@ > +# SPDX-License-Identifier: GPL-2.0 > + > +config COMMON_CLK_PISTACHIO > + bool "Support for IMG Pistachio SoC clock controllers" > + depends on MIPS Is anything MIPS specific? Or can this be depends on MIPS || COMPILE_TEST > + help > + Support for the IMG Pistachio SoC clock controller. > + Say Y if you want to include clock support. > \ No newline at end of file > -- > 2.32.0 >
在 2021/6/28 上午7:38, Stephen Boyd 写道: > Quoting Jiaxun Yang (2021-06-26 21:56:25) >> diff --git a/drivers/clk/pistachio/Kconfig b/drivers/clk/pistachio/Kconfig >> new file mode 100644 >> index 000000000000..efb7a7f45259 >> --- /dev/null >> +++ b/drivers/clk/pistachio/Kconfig >> @@ -0,0 +1,8 @@ >> +# SPDX-License-Identifier: GPL-2.0 >> + >> +config COMMON_CLK_PISTACHIO >> + bool "Support for IMG Pistachio SoC clock controllers" >> + depends on MIPS > Is anything MIPS specific? Or can this be > > depends on MIPS || COMPILE_TEST No there are nothing MIPS specific. Will fix in next revision. Thanks. - Jiaxun > > >> + help >> + Support for the IMG Pistachio SoC clock controller. >> + Say Y if you want to include clock support. >> \ No newline at end of file >> -- >> 2.32.0 >>
diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index e80918be8e9c..18d31b654d02 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -389,6 +389,7 @@ source "drivers/clk/mediatek/Kconfig" source "drivers/clk/meson/Kconfig" source "drivers/clk/mstar/Kconfig" source "drivers/clk/mvebu/Kconfig" +source "drivers/clk/pistachio/Kconfig" source "drivers/clk/qcom/Kconfig" source "drivers/clk/ralink/Kconfig" source "drivers/clk/renesas/Kconfig" diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index 5f06879d7fe9..7339a9eabeb4 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile @@ -97,7 +97,7 @@ obj-y += mstar/ obj-y += mvebu/ obj-$(CONFIG_ARCH_MXS) += mxs/ obj-$(CONFIG_COMMON_CLK_NXP) += nxp/ -obj-$(CONFIG_MACH_PISTACHIO) += pistachio/ +obj-$(CONFIG_COMMON_CLK_PISTACHIO) += pistachio/ obj-$(CONFIG_COMMON_CLK_PXA) += pxa/ obj-$(CONFIG_COMMON_CLK_QCOM) += qcom/ obj-y += ralink/ diff --git a/drivers/clk/pistachio/Kconfig b/drivers/clk/pistachio/Kconfig new file mode 100644 index 000000000000..efb7a7f45259 --- /dev/null +++ b/drivers/clk/pistachio/Kconfig @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: GPL-2.0 + +config COMMON_CLK_PISTACHIO + bool "Support for IMG Pistachio SoC clock controllers" + depends on MIPS + help + Support for the IMG Pistachio SoC clock controller. + Say Y if you want to include clock support. \ No newline at end of file
We're moving pistachio to generic MIPS kernel. The clk driver should be avilable to the generic MIPS kernel. Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com> --- drivers/clk/Kconfig | 1 + drivers/clk/Makefile | 2 +- drivers/clk/pistachio/Kconfig | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 drivers/clk/pistachio/Kconfig