Commit bbc3b403 authored by Stephen Boyd's avatar Stephen Boyd

Merge branches 'clk-imx', 'clk-samsung', 'clk-zynq', 'clk-rockchip' and...

Merge branches 'clk-imx', 'clk-samsung', 'clk-zynq', 'clk-rockchip' and 'clk-uniphier' into clk-next

 - Simplify Zynq Kconfig dependencies

* clk-imx:
  clk: imx: Reference preceded by free
  clk: imx8mq: Correct the pcie1 sels
  clk: imx8mp: Remove the none exist pcie clocks
  clk: imx: Fix reparenting of UARTs not associated with stdout

* clk-samsung:
  clk: samsung: Remove redundant dev_err calls
  clk: exynos7: Mark aclk_fsys1_200 as critical

* clk-zynq:
  clk: zynqmp: pll: add set_pll_mode to check condition in zynqmp_pll_enable
  clk: zynqmp: move zynqmp_pll_set_mode out of round_rate callback
  clk: zynqmp: Drop dependency on ARCH_ZYNQMP
  clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected

* clk-rockchip:
  clk: rockchip: drop MODULE_ALIAS from rk3399 clock controller
  clk: rockchip: drop parenthesis from ARM || COMPILE_TEST depends
  clk: rockchip: add clock controller for rk3568
  clk: rockchip: support more core div setting
  dt-binding: clock: Document rockchip, rk3568-cru bindings
  clk: rockchip: add dt-binding header for rk3568

* clk-uniphier:
  clk: uniphier: Fix potential infinite loop
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/clock/rockchip,rk3568-cru.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: ROCKCHIP rk3568 Family Clock Control Module Binding
maintainers:
- Elaine Zhang <zhangqing@rock-chips.com>
- Heiko Stuebner <heiko@sntech.de>
description: |
The RK3568 clock controller generates the clock and also implements a
reset controller for SoC peripherals.
(examples: provide SCLK_UART1\PCLK_UART1 and SRST_P_UART1\SRST_S_UART1 for UART module)
Each clock is assigned an identifier and client nodes can use this identifier
to specify the clock which they consume. All available clocks are defined as
preprocessor macros in the dt-bindings/clock/rk3568-cru.h headers and can be
used in device tree sources.
properties:
compatible:
enum:
- rockchip,rk3568-cru
- rockchip,rk3568-pmucru
reg:
maxItems: 1
"#clock-cells":
const: 1
"#reset-cells":
const: 1
required:
- compatible
- reg
- "#clock-cells"
- "#reset-cells"
additionalProperties: false
examples:
# Clock Control Module node:
- |
pmucru: clock-controller@fdd00000 {
compatible = "rockchip,rk3568-pmucru";
reg = <0xfdd00000 0x1000>;
#clock-cells = <1>;
#reset-cells = <1>;
};
- |
cru: clock-controller@fdd20000 {
compatible = "rockchip,rk3568-cru";
reg = <0xfdd20000 0x1000>;
#clock-cells = <1>;
#reset-cells = <1>;
};
...@@ -73,16 +73,6 @@ enum mx25_clks { ...@@ -73,16 +73,6 @@ enum mx25_clks {
static struct clk *clk[clk_max]; static struct clk *clk[clk_max];
static struct clk ** const uart_clks[] __initconst = {
&clk[uart_ipg_per],
&clk[uart1_ipg],
&clk[uart2_ipg],
&clk[uart3_ipg],
&clk[uart4_ipg],
&clk[uart5_ipg],
NULL
};
static int __init __mx25_clocks_init(void __iomem *ccm_base) static int __init __mx25_clocks_init(void __iomem *ccm_base)
{ {
BUG_ON(!ccm_base); BUG_ON(!ccm_base);
...@@ -228,7 +218,7 @@ static int __init __mx25_clocks_init(void __iomem *ccm_base) ...@@ -228,7 +218,7 @@ static int __init __mx25_clocks_init(void __iomem *ccm_base)
*/ */
clk_set_parent(clk[cko_sel], clk[ipg]); clk_set_parent(clk[cko_sel], clk[ipg]);
imx_register_uart_clocks(uart_clks); imx_register_uart_clocks(6);
return 0; return 0;
} }
......
...@@ -49,17 +49,6 @@ static const char *ssi_sel_clks[] = { "spll_gate", "mpll", }; ...@@ -49,17 +49,6 @@ static const char *ssi_sel_clks[] = { "spll_gate", "mpll", };
static struct clk *clk[IMX27_CLK_MAX]; static struct clk *clk[IMX27_CLK_MAX];
static struct clk_onecell_data clk_data; static struct clk_onecell_data clk_data;
static struct clk ** const uart_clks[] __initconst = {
&clk[IMX27_CLK_PER1_GATE],
&clk[IMX27_CLK_UART1_IPG_GATE],
&clk[IMX27_CLK_UART2_IPG_GATE],
&clk[IMX27_CLK_UART3_IPG_GATE],
&clk[IMX27_CLK_UART4_IPG_GATE],
&clk[IMX27_CLK_UART5_IPG_GATE],
&clk[IMX27_CLK_UART6_IPG_GATE],
NULL
};
static void __init _mx27_clocks_init(unsigned long fref) static void __init _mx27_clocks_init(unsigned long fref)
{ {
BUG_ON(!ccm); BUG_ON(!ccm);
...@@ -176,7 +165,7 @@ static void __init _mx27_clocks_init(unsigned long fref) ...@@ -176,7 +165,7 @@ static void __init _mx27_clocks_init(unsigned long fref)
clk_prepare_enable(clk[IMX27_CLK_EMI_AHB_GATE]); clk_prepare_enable(clk[IMX27_CLK_EMI_AHB_GATE]);
imx_register_uart_clocks(uart_clks); imx_register_uart_clocks(7);
imx_print_silicon_rev("i.MX27", mx27_revision()); imx_print_silicon_rev("i.MX27", mx27_revision());
} }
......
...@@ -82,14 +82,6 @@ enum mx35_clks { ...@@ -82,14 +82,6 @@ enum mx35_clks {
static struct clk *clk[clk_max]; static struct clk *clk[clk_max];
static struct clk ** const uart_clks[] __initconst = {
&clk[ipg],
&clk[uart1_gate],
&clk[uart2_gate],
&clk[uart3_gate],
NULL
};
static void __init _mx35_clocks_init(void) static void __init _mx35_clocks_init(void)
{ {
void __iomem *base; void __iomem *base;
...@@ -243,7 +235,7 @@ static void __init _mx35_clocks_init(void) ...@@ -243,7 +235,7 @@ static void __init _mx35_clocks_init(void)
*/ */
clk_prepare_enable(clk[scc_gate]); clk_prepare_enable(clk[scc_gate]);
imx_register_uart_clocks(uart_clks); imx_register_uart_clocks(4);
imx_print_silicon_rev("i.MX35", mx35_revision()); imx_print_silicon_rev("i.MX35", mx35_revision());
} }
......
...@@ -128,30 +128,6 @@ static const char *ieee1588_sels[] = { "pll3_sw", "pll4_sw", "dummy" /* usbphy2_ ...@@ -128,30 +128,6 @@ static const char *ieee1588_sels[] = { "pll3_sw", "pll4_sw", "dummy" /* usbphy2_
static struct clk *clk[IMX5_CLK_END]; static struct clk *clk[IMX5_CLK_END];
static struct clk_onecell_data clk_data; static struct clk_onecell_data clk_data;
static struct clk ** const uart_clks_mx51[] __initconst = {
&clk[IMX5_CLK_UART1_IPG_GATE],
&clk[IMX5_CLK_UART1_PER_GATE],
&clk[IMX5_CLK_UART2_IPG_GATE],
&clk[IMX5_CLK_UART2_PER_GATE],
&clk[IMX5_CLK_UART3_IPG_GATE],
&clk[IMX5_CLK_UART3_PER_GATE],
NULL
};
static struct clk ** const uart_clks_mx50_mx53[] __initconst = {
&clk[IMX5_CLK_UART1_IPG_GATE],
&clk[IMX5_CLK_UART1_PER_GATE],
&clk[IMX5_CLK_UART2_IPG_GATE],
&clk[IMX5_CLK_UART2_PER_GATE],
&clk[IMX5_CLK_UART3_IPG_GATE],
&clk[IMX5_CLK_UART3_PER_GATE],
&clk[IMX5_CLK_UART4_IPG_GATE],
&clk[IMX5_CLK_UART4_PER_GATE],
&clk[IMX5_CLK_UART5_IPG_GATE],
&clk[IMX5_CLK_UART5_PER_GATE],
NULL
};
static void __init mx5_clocks_common_init(void __iomem *ccm_base) static void __init mx5_clocks_common_init(void __iomem *ccm_base)
{ {
clk[IMX5_CLK_DUMMY] = imx_clk_fixed("dummy", 0); clk[IMX5_CLK_DUMMY] = imx_clk_fixed("dummy", 0);
...@@ -382,7 +358,7 @@ static void __init mx50_clocks_init(struct device_node *np) ...@@ -382,7 +358,7 @@ static void __init mx50_clocks_init(struct device_node *np)
r = clk_round_rate(clk[IMX5_CLK_USBOH3_PER_GATE], 54000000); r = clk_round_rate(clk[IMX5_CLK_USBOH3_PER_GATE], 54000000);
clk_set_rate(clk[IMX5_CLK_USBOH3_PER_GATE], r); clk_set_rate(clk[IMX5_CLK_USBOH3_PER_GATE], r);
imx_register_uart_clocks(uart_clks_mx50_mx53); imx_register_uart_clocks(5);
} }
CLK_OF_DECLARE(imx50_ccm, "fsl,imx50-ccm", mx50_clocks_init); CLK_OF_DECLARE(imx50_ccm, "fsl,imx50-ccm", mx50_clocks_init);
...@@ -488,7 +464,7 @@ static void __init mx51_clocks_init(struct device_node *np) ...@@ -488,7 +464,7 @@ static void __init mx51_clocks_init(struct device_node *np)
val |= 1 << 23; val |= 1 << 23;
writel(val, MXC_CCM_CLPCR); writel(val, MXC_CCM_CLPCR);
imx_register_uart_clocks(uart_clks_mx51); imx_register_uart_clocks(3);
} }
CLK_OF_DECLARE(imx51_ccm, "fsl,imx51-ccm", mx51_clocks_init); CLK_OF_DECLARE(imx51_ccm, "fsl,imx51-ccm", mx51_clocks_init);
...@@ -633,6 +609,6 @@ static void __init mx53_clocks_init(struct device_node *np) ...@@ -633,6 +609,6 @@ static void __init mx53_clocks_init(struct device_node *np)
r = clk_round_rate(clk[IMX5_CLK_USBOH3_PER_GATE], 54000000); r = clk_round_rate(clk[IMX5_CLK_USBOH3_PER_GATE], 54000000);
clk_set_rate(clk[IMX5_CLK_USBOH3_PER_GATE], r); clk_set_rate(clk[IMX5_CLK_USBOH3_PER_GATE], r);
imx_register_uart_clocks(uart_clks_mx50_mx53); imx_register_uart_clocks(5);
} }
CLK_OF_DECLARE(imx53_ccm, "fsl,imx53-ccm", mx53_clocks_init); CLK_OF_DECLARE(imx53_ccm, "fsl,imx53-ccm", mx53_clocks_init);
...@@ -140,13 +140,6 @@ static inline int clk_on_imx6dl(void) ...@@ -140,13 +140,6 @@ static inline int clk_on_imx6dl(void)
return of_machine_is_compatible("fsl,imx6dl"); return of_machine_is_compatible("fsl,imx6dl");
} }
static const int uart_clk_ids[] __initconst = {
IMX6QDL_CLK_UART_IPG,
IMX6QDL_CLK_UART_SERIAL,
};
static struct clk **uart_clks[ARRAY_SIZE(uart_clk_ids) + 1] __initdata;
static int ldb_di_sel_by_clock_id(int clock_id) static int ldb_di_sel_by_clock_id(int clock_id)
{ {
switch (clock_id) { switch (clock_id) {
...@@ -440,7 +433,6 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node) ...@@ -440,7 +433,6 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
struct device_node *np; struct device_node *np;
void __iomem *anatop_base, *base; void __iomem *anatop_base, *base;
int ret; int ret;
int i;
clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, clk_hw_data = kzalloc(struct_size(clk_hw_data, hws,
IMX6QDL_CLK_END), GFP_KERNEL); IMX6QDL_CLK_END), GFP_KERNEL);
...@@ -982,12 +974,6 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node) ...@@ -982,12 +974,6 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
hws[IMX6QDL_CLK_PLL3_USB_OTG]->clk); hws[IMX6QDL_CLK_PLL3_USB_OTG]->clk);
} }
for (i = 0; i < ARRAY_SIZE(uart_clk_ids); i++) { imx_register_uart_clocks(1);
int index = uart_clk_ids[i];
uart_clks[i] = &hws[index]->clk;
}
imx_register_uart_clocks(uart_clks);
} }
CLK_OF_DECLARE(imx6q, "fsl,imx6q-ccm", imx6q_clocks_init); CLK_OF_DECLARE(imx6q, "fsl,imx6q-ccm", imx6q_clocks_init);
...@@ -179,19 +179,11 @@ void imx6sl_set_wait_clk(bool enter) ...@@ -179,19 +179,11 @@ void imx6sl_set_wait_clk(bool enter)
imx6sl_enable_pll_arm(false); imx6sl_enable_pll_arm(false);
} }
static const int uart_clk_ids[] __initconst = {
IMX6SL_CLK_UART,
IMX6SL_CLK_UART_SERIAL,
};
static struct clk **uart_clks[ARRAY_SIZE(uart_clk_ids) + 1] __initdata;
static void __init imx6sl_clocks_init(struct device_node *ccm_node) static void __init imx6sl_clocks_init(struct device_node *ccm_node)
{ {
struct device_node *np; struct device_node *np;
void __iomem *base; void __iomem *base;
int ret; int ret;
int i;
clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, clk_hw_data = kzalloc(struct_size(clk_hw_data, hws,
IMX6SL_CLK_END), GFP_KERNEL); IMX6SL_CLK_END), GFP_KERNEL);
...@@ -448,12 +440,6 @@ static void __init imx6sl_clocks_init(struct device_node *ccm_node) ...@@ -448,12 +440,6 @@ static void __init imx6sl_clocks_init(struct device_node *ccm_node)
clk_set_parent(hws[IMX6SL_CLK_LCDIF_AXI_SEL]->clk, clk_set_parent(hws[IMX6SL_CLK_LCDIF_AXI_SEL]->clk,
hws[IMX6SL_CLK_PLL2_PFD2]->clk); hws[IMX6SL_CLK_PLL2_PFD2]->clk);
for (i = 0; i < ARRAY_SIZE(uart_clk_ids); i++) { imx_register_uart_clocks(2);
int index = uart_clk_ids[i];
uart_clks[i] = &hws[index]->clk;
}
imx_register_uart_clocks(uart_clks);
} }
CLK_OF_DECLARE(imx6sl, "fsl,imx6sl-ccm", imx6sl_clocks_init); CLK_OF_DECLARE(imx6sl, "fsl,imx6sl-ccm", imx6sl_clocks_init);
...@@ -76,26 +76,10 @@ static u32 share_count_ssi1; ...@@ -76,26 +76,10 @@ static u32 share_count_ssi1;
static u32 share_count_ssi2; static u32 share_count_ssi2;
static u32 share_count_ssi3; static u32 share_count_ssi3;
static const int uart_clk_ids[] __initconst = {
IMX6SLL_CLK_UART1_IPG,
IMX6SLL_CLK_UART1_SERIAL,
IMX6SLL_CLK_UART2_IPG,
IMX6SLL_CLK_UART2_SERIAL,
IMX6SLL_CLK_UART3_IPG,
IMX6SLL_CLK_UART3_SERIAL,
IMX6SLL_CLK_UART4_IPG,
IMX6SLL_CLK_UART4_SERIAL,
IMX6SLL_CLK_UART5_IPG,
IMX6SLL_CLK_UART5_SERIAL,
};
static struct clk **uart_clks[ARRAY_SIZE(uart_clk_ids) + 1] __initdata;
static void __init imx6sll_clocks_init(struct device_node *ccm_node) static void __init imx6sll_clocks_init(struct device_node *ccm_node)
{ {
struct device_node *np; struct device_node *np;
void __iomem *base; void __iomem *base;
int i;
clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, clk_hw_data = kzalloc(struct_size(clk_hw_data, hws,
IMX6SLL_CLK_END), GFP_KERNEL); IMX6SLL_CLK_END), GFP_KERNEL);
...@@ -356,13 +340,7 @@ static void __init imx6sll_clocks_init(struct device_node *ccm_node) ...@@ -356,13 +340,7 @@ static void __init imx6sll_clocks_init(struct device_node *ccm_node)
of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_hw_data); of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_hw_data);
for (i = 0; i < ARRAY_SIZE(uart_clk_ids); i++) { imx_register_uart_clocks(5);
int index = uart_clk_ids[i];
uart_clks[i] = &hws[index]->clk;
}
imx_register_uart_clocks(uart_clks);
/* Lower the AHB clock rate before changing the clock source. */ /* Lower the AHB clock rate before changing the clock source. */
clk_set_rate(hws[IMX6SLL_CLK_AHB]->clk, 99000000); clk_set_rate(hws[IMX6SLL_CLK_AHB]->clk, 99000000);
......
...@@ -117,18 +117,10 @@ static u32 share_count_ssi3; ...@@ -117,18 +117,10 @@ static u32 share_count_ssi3;
static u32 share_count_sai1; static u32 share_count_sai1;
static u32 share_count_sai2; static u32 share_count_sai2;
static const int uart_clk_ids[] __initconst = {
IMX6SX_CLK_UART_IPG,
IMX6SX_CLK_UART_SERIAL,
};
static struct clk **uart_clks[ARRAY_SIZE(uart_clk_ids) + 1] __initdata;
static void __init imx6sx_clocks_init(struct device_node *ccm_node) static void __init imx6sx_clocks_init(struct device_node *ccm_node)
{ {
struct device_node *np; struct device_node *np;
void __iomem *base; void __iomem *base;
int i;
clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, clk_hw_data = kzalloc(struct_size(clk_hw_data, hws,
IMX6SX_CLK_CLK_END), GFP_KERNEL); IMX6SX_CLK_CLK_END), GFP_KERNEL);
...@@ -556,12 +548,6 @@ static void __init imx6sx_clocks_init(struct device_node *ccm_node) ...@@ -556,12 +548,6 @@ static void __init imx6sx_clocks_init(struct device_node *ccm_node)
clk_set_parent(hws[IMX6SX_CLK_QSPI1_SEL]->clk, hws[IMX6SX_CLK_PLL2_BUS]->clk); clk_set_parent(hws[IMX6SX_CLK_QSPI1_SEL]->clk, hws[IMX6SX_CLK_PLL2_BUS]->clk);
clk_set_parent(hws[IMX6SX_CLK_QSPI2_SEL]->clk, hws[IMX6SX_CLK_PLL2_BUS]->clk); clk_set_parent(hws[IMX6SX_CLK_QSPI2_SEL]->clk, hws[IMX6SX_CLK_PLL2_BUS]->clk);
for (i = 0; i < ARRAY_SIZE(uart_clk_ids); i++) { imx_register_uart_clocks(2);
int index = uart_clk_ids[i];
uart_clks[i] = &hws[index]->clk;
}
imx_register_uart_clocks(uart_clks);
} }
CLK_OF_DECLARE(imx6sx, "fsl,imx6sx-ccm", imx6sx_clocks_init); CLK_OF_DECLARE(imx6sx, "fsl,imx6sx-ccm", imx6sx_clocks_init);
...@@ -377,23 +377,10 @@ static const char *pll_video_bypass_sel[] = { "pll_video_main", "pll_video_main_ ...@@ -377,23 +377,10 @@ static const char *pll_video_bypass_sel[] = { "pll_video_main", "pll_video_main_
static struct clk_hw **hws; static struct clk_hw **hws;
static struct clk_hw_onecell_data *clk_hw_data; static struct clk_hw_onecell_data *clk_hw_data;
static const int uart_clk_ids[] __initconst = {
IMX7D_UART1_ROOT_CLK,
IMX7D_UART2_ROOT_CLK,
IMX7D_UART3_ROOT_CLK,
IMX7D_UART4_ROOT_CLK,
IMX7D_UART5_ROOT_CLK,
IMX7D_UART6_ROOT_CLK,
IMX7D_UART7_ROOT_CLK,
};
static struct clk **uart_clks[ARRAY_SIZE(uart_clk_ids) + 1] __initdata;
static void __init imx7d_clocks_init(struct device_node *ccm_node) static void __init imx7d_clocks_init(struct device_node *ccm_node)
{ {
struct device_node *np; struct device_node *np;
void __iomem *base; void __iomem *base;
int i;
clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, clk_hw_data = kzalloc(struct_size(clk_hw_data, hws,
IMX7D_CLK_END), GFP_KERNEL); IMX7D_CLK_END), GFP_KERNEL);
...@@ -897,14 +884,7 @@ static void __init imx7d_clocks_init(struct device_node *ccm_node) ...@@ -897,14 +884,7 @@ static void __init imx7d_clocks_init(struct device_node *ccm_node)
hws[IMX7D_USB1_MAIN_480M_CLK] = imx_clk_hw_fixed_factor("pll_usb1_main_clk", "osc", 20, 1); hws[IMX7D_USB1_MAIN_480M_CLK] = imx_clk_hw_fixed_factor("pll_usb1_main_clk", "osc", 20, 1);
hws[IMX7D_USB_MAIN_480M_CLK] = imx_clk_hw_fixed_factor("pll_usb_main_clk", "osc", 20, 1); hws[IMX7D_USB_MAIN_480M_CLK] = imx_clk_hw_fixed_factor("pll_usb_main_clk", "osc", 20, 1);
for (i = 0; i < ARRAY_SIZE(uart_clk_ids); i++) { imx_register_uart_clocks(7);
int index = uart_clk_ids[i];
uart_clks[i] = &hws[index]->clk;
}
imx_register_uart_clocks(uart_clks);
} }
CLK_OF_DECLARE(imx7d, "fsl,imx7d-ccm", imx7d_clocks_init); CLK_OF_DECLARE(imx7d, "fsl,imx7d-ccm", imx7d_clocks_init);
...@@ -43,19 +43,6 @@ static const struct clk_div_table ulp_div_table[] = { ...@@ -43,19 +43,6 @@ static const struct clk_div_table ulp_div_table[] = {
{ /* sentinel */ }, { /* sentinel */ },
}; };
static const int pcc2_uart_clk_ids[] __initconst = {
IMX7ULP_CLK_LPUART4,
IMX7ULP_CLK_LPUART5,
};
static const int pcc3_uart_clk_ids[] __initconst = {
IMX7ULP_CLK_LPUART6,
IMX7ULP_CLK_LPUART7,
};
static struct clk **pcc2_uart_clks[ARRAY_SIZE(pcc2_uart_clk_ids) + 1] __initdata;
static struct clk **pcc3_uart_clks[ARRAY_SIZE(pcc3_uart_clk_ids) + 1] __initdata;
static void __init imx7ulp_clk_scg1_init(struct device_node *np) static void __init imx7ulp_clk_scg1_init(struct device_node *np)
{ {
struct clk_hw_onecell_data *clk_data; struct clk_hw_onecell_data *clk_data;
...@@ -150,7 +137,6 @@ static void __init imx7ulp_clk_pcc2_init(struct device_node *np) ...@@ -150,7 +137,6 @@ static void __init imx7ulp_clk_pcc2_init(struct device_node *np)
struct clk_hw_onecell_data *clk_data; struct clk_hw_onecell_data *clk_data;
struct clk_hw **hws; struct clk_hw **hws;
void __iomem *base; void __iomem *base;
int i;
clk_data = kzalloc(struct_size(clk_data, hws, IMX7ULP_CLK_PCC2_END), clk_data = kzalloc(struct_size(clk_data, hws, IMX7ULP_CLK_PCC2_END),
GFP_KERNEL); GFP_KERNEL);
...@@ -190,13 +176,7 @@ static void __init imx7ulp_clk_pcc2_init(struct device_node *np) ...@@ -190,13 +176,7 @@ static void __init imx7ulp_clk_pcc2_init(struct device_node *np)
of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_data); of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_data);
for (i = 0; i < ARRAY_SIZE(pcc2_uart_clk_ids); i++) { imx_register_uart_clocks(2);
int index = pcc2_uart_clk_ids[i];
pcc2_uart_clks[i] = &hws[index]->clk;
}
imx_register_uart_clocks(pcc2_uart_clks);
} }
CLK_OF_DECLARE(imx7ulp_clk_pcc2, "fsl,imx7ulp-pcc2", imx7ulp_clk_pcc2_init); CLK_OF_DECLARE(imx7ulp_clk_pcc2, "fsl,imx7ulp-pcc2", imx7ulp_clk_pcc2_init);
...@@ -205,7 +185,6 @@ static void __init imx7ulp_clk_pcc3_init(struct device_node *np) ...@@ -205,7 +185,6 @@ static void __init imx7ulp_clk_pcc3_init(struct device_node *np)
struct clk_hw_onecell_data *clk_data; struct clk_hw_onecell_data *clk_data;
struct clk_hw **hws; struct clk_hw **hws;
void __iomem *base; void __iomem *base;
int i;
clk_data = kzalloc(struct_size(clk_data, hws, IMX7ULP_CLK_PCC3_END), clk_data = kzalloc(struct_size(clk_data, hws, IMX7ULP_CLK_PCC3_END),
GFP_KERNEL); GFP_KERNEL);
...@@ -244,13 +223,7 @@ static void __init imx7ulp_clk_pcc3_init(struct device_node *np) ...@@ -244,13 +223,7 @@ static void __init imx7ulp_clk_pcc3_init(struct device_node *np)
of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_data); of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_data);
for (i = 0; i < ARRAY_SIZE(pcc3_uart_clk_ids); i++) { imx_register_uart_clocks(7);
int index = pcc3_uart_clk_ids[i];
pcc3_uart_clks[i] = &hws[index]->clk;
}
imx_register_uart_clocks(pcc3_uart_clks);
} }
CLK_OF_DECLARE(imx7ulp_clk_pcc3, "fsl,imx7ulp-pcc3", imx7ulp_clk_pcc3_init); CLK_OF_DECLARE(imx7ulp_clk_pcc3, "fsl,imx7ulp-pcc3", imx7ulp_clk_pcc3_init);
......
...@@ -296,20 +296,12 @@ static const char * const clkout_sels[] = {"audio_pll1_out", "audio_pll2_out", " ...@@ -296,20 +296,12 @@ static const char * const clkout_sels[] = {"audio_pll1_out", "audio_pll2_out", "
static struct clk_hw_onecell_data *clk_hw_data; static struct clk_hw_onecell_data *clk_hw_data;
static struct clk_hw **hws; static struct clk_hw **hws;
static const int uart_clk_ids[] = {
IMX8MM_CLK_UART1_ROOT,
IMX8MM_CLK_UART2_ROOT,
IMX8MM_CLK_UART3_ROOT,
IMX8MM_CLK_UART4_ROOT,
};
static struct clk **uart_hws[ARRAY_SIZE(uart_clk_ids) + 1];
static int imx8mm_clocks_probe(struct platform_device *pdev) static int imx8mm_clocks_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct device_node *np = dev->of_node; struct device_node *np = dev->of_node;
void __iomem *base; void __iomem *base;
int ret, i; int ret;
clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, clk_hw_data = kzalloc(struct_size(clk_hw_data, hws,
IMX8MM_CLK_END), GFP_KERNEL); IMX8MM_CLK_END), GFP_KERNEL);
...@@ -634,13 +626,7 @@ static int imx8mm_clocks_probe(struct platform_device *pdev) ...@@ -634,13 +626,7 @@ static int imx8mm_clocks_probe(struct platform_device *pdev)
goto unregister_hws; goto unregister_hws;
} }
for (i = 0; i < ARRAY_SIZE(uart_clk_ids); i++) { imx_register_uart_clocks(4);
int index = uart_clk_ids[i];
uart_hws[i] = &hws[index]->clk;
}
imx_register_uart_clocks(uart_hws);
return 0; return 0;
......
...@@ -289,20 +289,12 @@ static const char * const clkout_sels[] = {"audio_pll1_out", "audio_pll2_out", " ...@@ -289,20 +289,12 @@ static const char * const clkout_sels[] = {"audio_pll1_out", "audio_pll2_out", "
static struct clk_hw_onecell_data *clk_hw_data; static struct clk_hw_onecell_data *clk_hw_data;
static struct clk_hw **hws; static struct clk_hw **hws;
static const int uart_clk_ids[] = {
IMX8MN_CLK_UART1_ROOT,
IMX8MN_CLK_UART2_ROOT,
IMX8MN_CLK_UART3_ROOT,
IMX8MN_CLK_UART4_ROOT,
};
static struct clk **uart_hws[ARRAY_SIZE(uart_clk_ids) + 1];
static int imx8mn_clocks_probe(struct platform_device *pdev) static int imx8mn_clocks_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct device_node *np = dev->of_node; struct device_node *np = dev->of_node;
void __iomem *base; void __iomem *base;
int ret, i; int ret;
clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, clk_hw_data = kzalloc(struct_size(clk_hw_data, hws,
IMX8MN_CLK_END), GFP_KERNEL); IMX8MN_CLK_END), GFP_KERNEL);
...@@ -585,13 +577,7 @@ static int imx8mn_clocks_probe(struct platform_device *pdev) ...@@ -585,13 +577,7 @@ static int imx8mn_clocks_probe(struct platform_device *pdev)
goto unregister_hws; goto unregister_hws;
} }
for (i = 0; i < ARRAY_SIZE(uart_clk_ids); i++) { imx_register_uart_clocks(4);
int index = uart_clk_ids[i];
uart_hws[i] = &hws[index]->clk;
}
imx_register_uart_clocks(uart_hws);
return 0; return 0;
......
...@@ -152,10 +152,6 @@ static const char * const imx8mp_can2_sels[] = {"osc_24m", "sys_pll2_200m", "sys ...@@ -152,10 +152,6 @@ static const char * const imx8mp_can2_sels[] = {"osc_24m", "sys_pll2_200m", "sys
"sys_pll1_160m", "sys_pll1_800m", "sys_pll3_out", "sys_pll1_160m", "sys_pll1_800m", "sys_pll3_out",
"sys_pll2_250m", "audio_pll2_out", }; "sys_pll2_250m", "audio_pll2_out", };
static const char * const imx8mp_pcie_phy_sels[] = {"osc_24m", "sys_pll2_100m", "sys_pll2_500m",
"clk_ext1", "clk_ext2", "clk_ext3",
"clk_ext4", "sys_pll1_400m", };
static const char * const imx8mp_pcie_aux_sels[] = {"osc_24m", "sys_pll2_200m", "sys_pll2_50m", static const char * const imx8mp_pcie_aux_sels[] = {"osc_24m", "sys_pll2_200m", "sys_pll2_50m",
"sys_pll3_out", "sys_pll2_100m", "sys_pll1_80m", "sys_pll3_out", "sys_pll2_100m", "sys_pll1_80m",
"sys_pll1_160m", "sys_pll1_200m", }; "sys_pll1_160m", "sys_pll1_200m", };
...@@ -380,14 +376,6 @@ static const char * const imx8mp_memrepair_sels[] = {"osc_24m", "sys_pll2_100m", ...@@ -380,14 +376,6 @@ static const char * const imx8mp_memrepair_sels[] = {"osc_24m", "sys_pll2_100m",
"sys_pll1_800m", "sys_pll2_1000m", "sys_pll3_out", "sys_pll1_800m", "sys_pll2_1000m", "sys_pll3_out",
"clk_ext3", "audio_pll2_out", }; "clk_ext3", "audio_pll2_out", };
static const char * const imx8mp_pcie2_ctrl_sels[] = {"osc_24m", "sys_pll2_250m", "sys_pll2_200m",
"sys_pll1_266m", "sys_pll1_800m", "sys_pll2_500m",
"sys_pll2_333m", "sys_pll3_out", };
static const char * const imx8mp_pcie2_phy_sels[] = {"osc_24m", "sys_pll2_100m", "sys_pll2_500m",
"clk_ext1", "clk_ext2", "clk_ext3",
"clk_ext4", "sys_pll1_400m", };
static const char * const imx8mp_media_mipi_test_byte_sels[] = {"osc_24m", "sys_pll2_200m", "sys_pll2_50m", static const char * const imx8mp_media_mipi_test_byte_sels[] = {"osc_24m", "sys_pll2_200m", "sys_pll2_50m",
"sys_pll3_out", "sys_pll2_100m", "sys_pll3_out", "sys_pll2_100m",
"sys_pll1_80m", "sys_pll1_160m", "sys_pll1_80m", "sys_pll1_160m",
...@@ -414,20 +402,11 @@ static const char * const imx8mp_dram_core_sels[] = {"dram_pll_out", "dram_alt_r ...@@ -414,20 +402,11 @@ static const char * const imx8mp_dram_core_sels[] = {"dram_pll_out", "dram_alt_r
static struct clk_hw **hws; static struct clk_hw **hws;
static struct clk_hw_onecell_data *clk_hw_data; static struct clk_hw_onecell_data *clk_hw_data;
static const int uart_clk_ids[] = {
IMX8MP_CLK_UART1_ROOT,
IMX8MP_CLK_UART2_ROOT,
IMX8MP_CLK_UART3_ROOT,
IMX8MP_CLK_UART4_ROOT,
};
static struct clk **uart_clks[ARRAY_SIZE(uart_clk_ids) + 1];
static int imx8mp_clocks_probe(struct platform_device *pdev) static int imx8mp_clocks_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct device_node *np; struct device_node *np;
void __iomem *anatop_base, *ccm_base; void __iomem *anatop_base, *ccm_base;
int i;
np = of_find_compatible_node(NULL, NULL, "fsl,imx8mp-anatop"); np = of_find_compatible_node(NULL, NULL, "fsl,imx8mp-anatop");
anatop_base = of_iomap(np, 0); anatop_base = of_iomap(np, 0);
...@@ -585,7 +564,6 @@ static int imx8mp_clocks_probe(struct platform_device *pdev) ...@@ -585,7 +564,6 @@ static int imx8mp_clocks_probe(struct platform_device *pdev)
hws[IMX8MP_CLK_VPU_G2] = imx8m_clk_hw_composite("vpu_g2", imx8mp_vpu_g2_sels, ccm_base + 0xa180); hws[IMX8MP_CLK_VPU_G2] = imx8m_clk_hw_composite("vpu_g2", imx8mp_vpu_g2_sels, ccm_base + 0xa180);
hws[IMX8MP_CLK_CAN1] = imx8m_clk_hw_composite("can1", imx8mp_can1_sels, ccm_base + 0xa200); hws[IMX8MP_CLK_CAN1] = imx8m_clk_hw_composite("can1", imx8mp_can1_sels, ccm_base + 0xa200);
hws[IMX8MP_CLK_CAN2] = imx8m_clk_hw_composite("can2", imx8mp_can2_sels, ccm_base + 0xa280); hws[IMX8MP_CLK_CAN2] = imx8m_clk_hw_composite("can2", imx8mp_can2_sels, ccm_base + 0xa280);
hws[IMX8MP_CLK_PCIE_PHY] = imx8m_clk_hw_composite("pcie_phy", imx8mp_pcie_phy_sels, ccm_base + 0xa380);
hws[IMX8MP_CLK_PCIE_AUX] = imx8m_clk_hw_composite("pcie_aux", imx8mp_pcie_aux_sels, ccm_base + 0xa400); hws[IMX8MP_CLK_PCIE_AUX] = imx8m_clk_hw_composite("pcie_aux", imx8mp_pcie_aux_sels, ccm_base + 0xa400);
hws[IMX8MP_CLK_I2C5] = imx8m_clk_hw_composite("i2c5", imx8mp_i2c5_sels, ccm_base + 0xa480); hws[IMX8MP_CLK_I2C5] = imx8m_clk_hw_composite("i2c5", imx8mp_i2c5_sels, ccm_base + 0xa480);
hws[IMX8MP_CLK_I2C6] = imx8m_clk_hw_composite("i2c6", imx8mp_i2c6_sels, ccm_base + 0xa500); hws[IMX8MP_CLK_I2C6] = imx8m_clk_hw_composite("i2c6", imx8mp_i2c6_sels, ccm_base + 0xa500);
...@@ -643,8 +621,6 @@ static int imx8mp_clocks_probe(struct platform_device *pdev) ...@@ -643,8 +621,6 @@ static int imx8mp_clocks_probe(struct platform_device *pdev)
hws[IMX8MP_CLK_MEDIA_CAM2_PIX] = imx8m_clk_hw_composite("media_cam2_pix", imx8mp_media_cam2_pix_sels, ccm_base + 0xbe80); hws[IMX8MP_CLK_MEDIA_CAM2_PIX] = imx8m_clk_hw_composite("media_cam2_pix", imx8mp_media_cam2_pix_sels, ccm_base + 0xbe80);
hws[IMX8MP_CLK_MEDIA_LDB] = imx8m_clk_hw_composite("media_ldb", imx8mp_media_ldb_sels, ccm_base + 0xbf00); hws[IMX8MP_CLK_MEDIA_LDB] = imx8m_clk_hw_composite("media_ldb", imx8mp_media_ldb_sels, ccm_base + 0xbf00);
hws[IMX8MP_CLK_MEMREPAIR] = imx8m_clk_hw_composite_critical("mem_repair", imx8mp_memrepair_sels, ccm_base + 0xbf80); hws[IMX8MP_CLK_MEMREPAIR] = imx8m_clk_hw_composite_critical("mem_repair", imx8mp_memrepair_sels, ccm_base + 0xbf80);
hws[IMX8MP_CLK_PCIE2_CTRL] = imx8m_clk_hw_composite("pcie2_ctrl", imx8mp_pcie2_ctrl_sels, ccm_base + 0xc000);
hws[IMX8MP_CLK_PCIE2_PHY] = imx8m_clk_hw_composite("pcie2_phy", imx8mp_pcie2_phy_sels, ccm_base + 0xc080);
hws[IMX8MP_CLK_MEDIA_MIPI_TEST_BYTE] = imx8m_clk_hw_composite("media_mipi_test_byte", imx8mp_media_mipi_test_byte_sels, ccm_base + 0xc100); hws[IMX8MP_CLK_MEDIA_MIPI_TEST_BYTE] = imx8m_clk_hw_composite("media_mipi_test_byte", imx8mp_media_mipi_test_byte_sels, ccm_base + 0xc100);
hws[IMX8MP_CLK_ECSPI3] = imx8m_clk_hw_composite("ecspi3", imx8mp_ecspi3_sels, ccm_base + 0xc180); hws[IMX8MP_CLK_ECSPI3] = imx8m_clk_hw_composite("ecspi3", imx8mp_ecspi3_sels, ccm_base + 0xc180);
hws[IMX8MP_CLK_PDM] = imx8m_clk_hw_composite("pdm", imx8mp_pdm_sels, ccm_base + 0xc200); hws[IMX8MP_CLK_PDM] = imx8m_clk_hw_composite("pdm", imx8mp_pdm_sels, ccm_base + 0xc200);
...@@ -737,13 +713,7 @@ static int imx8mp_clocks_probe(struct platform_device *pdev) ...@@ -737,13 +713,7 @@ static int imx8mp_clocks_probe(struct platform_device *pdev)
of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_hw_data); of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_hw_data);
for (i = 0; i < ARRAY_SIZE(uart_clk_ids); i++) { imx_register_uart_clocks(4);
int index = uart_clk_ids[i];
uart_clks[i] = &hws[index]->clk;
}
imx_register_uart_clocks(uart_clks);
return 0; return 0;
} }
......
...@@ -113,12 +113,12 @@ static const char * const imx8mq_disp_dtrc_sels[] = {"osc_25m", "vpu_pll_out", " ...@@ -113,12 +113,12 @@ static const char * const imx8mq_disp_dtrc_sels[] = {"osc_25m", "vpu_pll_out", "
static const char * const imx8mq_disp_dc8000_sels[] = {"osc_25m", "vpu_pll_out", "sys1_pll_800m", "sys2_pll_1000m", "sys1_pll_160m", "sys2_pll_100m", "sys3_pll_out", "audio_pll2_out", }; static const char * const imx8mq_disp_dc8000_sels[] = {"osc_25m", "vpu_pll_out", "sys1_pll_800m", "sys2_pll_1000m", "sys1_pll_160m", "sys2_pll_100m", "sys3_pll_out", "audio_pll2_out", };
static const char * const imx8mq_pcie1_ctrl_sels[] = {"osc_25m", "sys2_pll_250m", "sys2_pll_200m", "sys1_pll_266m", static const char * const imx8mq_pcie1_ctrl_sels[] = {"osc_25m", "sys2_pll_250m", "sys2_pll_200m", "sys1_pll_266m",
"sys1_pll_800m", "sys2_pll_500m", "sys2_pll_250m", "sys3_pll_out", }; "sys1_pll_800m", "sys2_pll_500m", "sys2_pll_333m", "sys3_pll_out", };
static const char * const imx8mq_pcie1_phy_sels[] = {"osc_25m", "sys2_pll_100m", "sys2_pll_500m", "clk_ext1", "clk_ext2", static const char * const imx8mq_pcie1_phy_sels[] = {"osc_25m", "sys2_pll_100m", "sys2_pll_500m", "clk_ext1", "clk_ext2",
"clk_ext3", "clk_ext4", }; "clk_ext3", "clk_ext4", };
static const char * const imx8mq_pcie1_aux_sels[] = {"osc_25m", "sys2_pll_200m", "sys2_pll_500m", "sys3_pll_out", static const char * const imx8mq_pcie1_aux_sels[] = {"osc_25m", "sys2_pll_200m", "sys2_pll_50m", "sys3_pll_out",
"sys2_pll_100m", "sys1_pll_80m", "sys1_pll_160m", "sys1_pll_200m", }; "sys2_pll_100m", "sys1_pll_80m", "sys1_pll_160m", "sys1_pll_200m", };
static const char * const imx8mq_dc_pixel_sels[] = {"osc_25m", "video_pll1_out", "audio_pll2_out", "audio_pll1_out", "sys1_pll_800m", "sys2_pll_1000m", "sys3_pll_out", "clk_ext4", }; static const char * const imx8mq_dc_pixel_sels[] = {"osc_25m", "video_pll1_out", "audio_pll2_out", "audio_pll1_out", "sys1_pll_800m", "sys2_pll_1000m", "sys3_pll_out", "clk_ext4", };
...@@ -281,20 +281,12 @@ static const char * const pllout_monitor_sels[] = {"osc_25m", "osc_27m", "dummy" ...@@ -281,20 +281,12 @@ static const char * const pllout_monitor_sels[] = {"osc_25m", "osc_27m", "dummy"
static struct clk_hw_onecell_data *clk_hw_data; static struct clk_hw_onecell_data *clk_hw_data;
static struct clk_hw **hws; static struct clk_hw **hws;
static const int uart_clk_ids[] = {
IMX8MQ_CLK_UART1_ROOT,
IMX8MQ_CLK_UART2_ROOT,
IMX8MQ_CLK_UART3_ROOT,
IMX8MQ_CLK_UART4_ROOT,
};
static struct clk **uart_hws[ARRAY_SIZE(uart_clk_ids) + 1];
static int imx8mq_clocks_probe(struct platform_device *pdev) static int imx8mq_clocks_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct device_node *np = dev->of_node; struct device_node *np = dev->of_node;
void __iomem *base; void __iomem *base;
int err, i; int err;
clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, clk_hw_data = kzalloc(struct_size(clk_hw_data, hws,
IMX8MQ_CLK_END), GFP_KERNEL); IMX8MQ_CLK_END), GFP_KERNEL);
...@@ -629,13 +621,7 @@ static int imx8mq_clocks_probe(struct platform_device *pdev) ...@@ -629,13 +621,7 @@ static int imx8mq_clocks_probe(struct platform_device *pdev)
goto unregister_hws; goto unregister_hws;
} }
for (i = 0; i < ARRAY_SIZE(uart_clk_ids); i++) { imx_register_uart_clocks(4);
int index = uart_clk_ids[i];
uart_hws[i] = &hws[index]->clk;
}
imx_register_uart_clocks(uart_hws);
return 0; return 0;
......
...@@ -114,6 +114,7 @@ struct clk_hw *__imx_clk_lpcg_scu(struct device *dev, const char *name, ...@@ -114,6 +114,7 @@ struct clk_hw *__imx_clk_lpcg_scu(struct device *dev, const char *name,
if (ret) { if (ret) {
kfree(clk); kfree(clk);
hw = ERR_PTR(ret); hw = ERR_PTR(ret);
return hw;
} }
if (dev) if (dev)
......
...@@ -426,6 +426,7 @@ struct clk_hw *__imx_clk_scu(struct device *dev, const char *name, ...@@ -426,6 +426,7 @@ struct clk_hw *__imx_clk_scu(struct device *dev, const char *name,
if (ret) { if (ret) {
kfree(clk); kfree(clk);
hw = ERR_PTR(ret); hw = ERR_PTR(ret);
return hw;
} }
if (dev) if (dev)
......
...@@ -147,8 +147,10 @@ void imx_cscmr1_fixup(u32 *val) ...@@ -147,8 +147,10 @@ void imx_cscmr1_fixup(u32 *val)
} }
#ifndef MODULE #ifndef MODULE
static int imx_keep_uart_clocks;
static struct clk ** const *imx_uart_clocks; static bool imx_keep_uart_clocks;
static int imx_enabled_uart_clocks;
static struct clk **imx_uart_clocks;
static int __init imx_keep_uart_clocks_param(char *str) static int __init imx_keep_uart_clocks_param(char *str)
{ {
...@@ -161,24 +163,45 @@ __setup_param("earlycon", imx_keep_uart_earlycon, ...@@ -161,24 +163,45 @@ __setup_param("earlycon", imx_keep_uart_earlycon,
__setup_param("earlyprintk", imx_keep_uart_earlyprintk, __setup_param("earlyprintk", imx_keep_uart_earlyprintk,
imx_keep_uart_clocks_param, 0); imx_keep_uart_clocks_param, 0);
void imx_register_uart_clocks(struct clk ** const clks[]) void imx_register_uart_clocks(unsigned int clk_count)
{ {
imx_enabled_uart_clocks = 0;
/* i.MX boards use device trees now. For build tests without CONFIG_OF, do nothing */
#ifdef CONFIG_OF
if (imx_keep_uart_clocks) { if (imx_keep_uart_clocks) {
int i; int i;
imx_uart_clocks = clks; imx_uart_clocks = kcalloc(clk_count, sizeof(struct clk *), GFP_KERNEL);
for (i = 0; imx_uart_clocks[i]; i++)
clk_prepare_enable(*imx_uart_clocks[i]); if (!of_stdout)
return;
for (i = 0; i < clk_count; i++) {
imx_uart_clocks[imx_enabled_uart_clocks] = of_clk_get(of_stdout, i);
/* Stop if there are no more of_stdout references */
if (IS_ERR(imx_uart_clocks[imx_enabled_uart_clocks]))
return;
/* Only enable the clock if it's not NULL */
if (imx_uart_clocks[imx_enabled_uart_clocks])
clk_prepare_enable(imx_uart_clocks[imx_enabled_uart_clocks++]);
}
} }
#endif
} }
static int __init imx_clk_disable_uart(void) static int __init imx_clk_disable_uart(void)
{ {
if (imx_keep_uart_clocks && imx_uart_clocks) { if (imx_keep_uart_clocks && imx_enabled_uart_clocks) {
int i; int i;
for (i = 0; imx_uart_clocks[i]; i++) for (i = 0; i < imx_enabled_uart_clocks; i++) {
clk_disable_unprepare(*imx_uart_clocks[i]); clk_disable_unprepare(imx_uart_clocks[i]);
clk_put(imx_uart_clocks[i]);
}
kfree(imx_uart_clocks);
} }
return 0; return 0;
......
...@@ -11,9 +11,9 @@ extern spinlock_t imx_ccm_lock; ...@@ -11,9 +11,9 @@ extern spinlock_t imx_ccm_lock;
void imx_check_clocks(struct clk *clks[], unsigned int count); void imx_check_clocks(struct clk *clks[], unsigned int count);
void imx_check_clk_hws(struct clk_hw *clks[], unsigned int count); void imx_check_clk_hws(struct clk_hw *clks[], unsigned int count);
#ifndef MODULE #ifndef MODULE
void imx_register_uart_clocks(struct clk ** const clks[]); void imx_register_uart_clocks(unsigned int clk_count);
#else #else
static inline void imx_register_uart_clocks(struct clk ** const clks[]) static inline void imx_register_uart_clocks(unsigned int clk_count)
{ {
} }
#endif #endif
......
...@@ -11,78 +11,85 @@ config COMMON_CLK_ROCKCHIP ...@@ -11,78 +11,85 @@ config COMMON_CLK_ROCKCHIP
if COMMON_CLK_ROCKCHIP if COMMON_CLK_ROCKCHIP
config CLK_PX30 config CLK_PX30
bool "Rockchip PX30 clock controller support" bool "Rockchip PX30 clock controller support"
depends on (ARM64 || COMPILE_TEST) depends on ARM64 || COMPILE_TEST
default y default y
help help
Build the driver for PX30 Clock Driver. Build the driver for PX30 Clock Driver.
config CLK_RV110X config CLK_RV110X
bool "Rockchip RV110x clock controller support" bool "Rockchip RV110x clock controller support"
depends on (ARM || COMPILE_TEST) depends on ARM || COMPILE_TEST
default y default y
help help
Build the driver for RV110x Clock Driver. Build the driver for RV110x Clock Driver.
config CLK_RK3036 config CLK_RK3036
bool "Rockchip RK3036 clock controller support" bool "Rockchip RK3036 clock controller support"
depends on (ARM || COMPILE_TEST) depends on ARM || COMPILE_TEST
default y default y
help help
Build the driver for RK3036 Clock Driver. Build the driver for RK3036 Clock Driver.
config CLK_RK312X config CLK_RK312X
bool "Rockchip RK312x clock controller support" bool "Rockchip RK312x clock controller support"
depends on (ARM || COMPILE_TEST) depends on ARM || COMPILE_TEST
default y default y
help help
Build the driver for RK312x Clock Driver. Build the driver for RK312x Clock Driver.
config CLK_RK3188 config CLK_RK3188
bool "Rockchip RK3188 clock controller support" bool "Rockchip RK3188 clock controller support"
depends on (ARM || COMPILE_TEST) depends on ARM || COMPILE_TEST
default y default y
help help
Build the driver for RK3188 Clock Driver. Build the driver for RK3188 Clock Driver.
config CLK_RK322X config CLK_RK322X
bool "Rockchip RK322x clock controller support" bool "Rockchip RK322x clock controller support"
depends on (ARM || COMPILE_TEST) depends on ARM || COMPILE_TEST
default y default y
help help
Build the driver for RK322x Clock Driver. Build the driver for RK322x Clock Driver.
config CLK_RK3288 config CLK_RK3288
bool "Rockchip RK3288 clock controller support" bool "Rockchip RK3288 clock controller support"
depends on (ARM || COMPILE_TEST) depends on ARM || COMPILE_TEST
default y default y
help help
Build the driver for RK3288 Clock Driver. Build the driver for RK3288 Clock Driver.
config CLK_RK3308 config CLK_RK3308
bool "Rockchip RK3308 clock controller support" bool "Rockchip RK3308 clock controller support"
depends on (ARM64 || COMPILE_TEST) depends on ARM64 || COMPILE_TEST
default y default y
help help
Build the driver for RK3308 Clock Driver. Build the driver for RK3308 Clock Driver.
config CLK_RK3328 config CLK_RK3328
bool "Rockchip RK3328 clock controller support" bool "Rockchip RK3328 clock controller support"
depends on (ARM64 || COMPILE_TEST) depends on ARM64 || COMPILE_TEST
default y default y
help help
Build the driver for RK3328 Clock Driver. Build the driver for RK3328 Clock Driver.
config CLK_RK3368 config CLK_RK3368
bool "Rockchip RK3368 clock controller support" bool "Rockchip RK3368 clock controller support"
depends on (ARM64 || COMPILE_TEST) depends on ARM64 || COMPILE_TEST
default y default y
help help
Build the driver for RK3368 Clock Driver. Build the driver for RK3368 Clock Driver.
config CLK_RK3399 config CLK_RK3399
tristate "Rockchip RK3399 clock controller support" tristate "Rockchip RK3399 clock controller support"
depends on (ARM64 || COMPILE_TEST) depends on ARM64 || COMPILE_TEST
default y default y
help help
Build the driver for RK3399 Clock Driver. Build the driver for RK3399 Clock Driver.
config CLK_RK3568
tristate "Rockchip RK3568 clock controller support"
depends on ARM64 || COMPILE_TEST
default y
help
Build the driver for RK3568 Clock Driver.
endif endif
...@@ -26,3 +26,4 @@ obj-$(CONFIG_CLK_RK3308) += clk-rk3308.o ...@@ -26,3 +26,4 @@ obj-$(CONFIG_CLK_RK3308) += clk-rk3308.o
obj-$(CONFIG_CLK_RK3328) += clk-rk3328.o obj-$(CONFIG_CLK_RK3328) += clk-rk3328.o
obj-$(CONFIG_CLK_RK3368) += clk-rk3368.o obj-$(CONFIG_CLK_RK3368) += clk-rk3368.o
obj-$(CONFIG_CLK_RK3399) += clk-rk3399.o obj-$(CONFIG_CLK_RK3399) += clk-rk3399.o
obj-$(CONFIG_CLK_RK3568) += clk-rk3568.o
...@@ -84,10 +84,10 @@ static unsigned long rockchip_cpuclk_recalc_rate(struct clk_hw *hw, ...@@ -84,10 +84,10 @@ static unsigned long rockchip_cpuclk_recalc_rate(struct clk_hw *hw,
{ {
struct rockchip_cpuclk *cpuclk = to_rockchip_cpuclk_hw(hw); struct rockchip_cpuclk *cpuclk = to_rockchip_cpuclk_hw(hw);
const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data; const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
u32 clksel0 = readl_relaxed(cpuclk->reg_base + reg_data->core_reg); u32 clksel0 = readl_relaxed(cpuclk->reg_base + reg_data->core_reg[0]);
clksel0 >>= reg_data->div_core_shift; clksel0 >>= reg_data->div_core_shift[0];
clksel0 &= reg_data->div_core_mask; clksel0 &= reg_data->div_core_mask[0];
return parent_rate / (clksel0 + 1); return parent_rate / (clksel0 + 1);
} }
...@@ -120,6 +120,7 @@ static int rockchip_cpuclk_pre_rate_change(struct rockchip_cpuclk *cpuclk, ...@@ -120,6 +120,7 @@ static int rockchip_cpuclk_pre_rate_change(struct rockchip_cpuclk *cpuclk,
const struct rockchip_cpuclk_rate_table *rate; const struct rockchip_cpuclk_rate_table *rate;
unsigned long alt_prate, alt_div; unsigned long alt_prate, alt_div;
unsigned long flags; unsigned long flags;
int i = 0;
/* check validity of the new rate */ /* check validity of the new rate */
rate = rockchip_get_cpuclk_settings(cpuclk, ndata->new_rate); rate = rockchip_get_cpuclk_settings(cpuclk, ndata->new_rate);
...@@ -142,10 +143,10 @@ static int rockchip_cpuclk_pre_rate_change(struct rockchip_cpuclk *cpuclk, ...@@ -142,10 +143,10 @@ static int rockchip_cpuclk_pre_rate_change(struct rockchip_cpuclk *cpuclk,
if (alt_prate > ndata->old_rate) { if (alt_prate > ndata->old_rate) {
/* calculate dividers */ /* calculate dividers */
alt_div = DIV_ROUND_UP(alt_prate, ndata->old_rate) - 1; alt_div = DIV_ROUND_UP(alt_prate, ndata->old_rate) - 1;
if (alt_div > reg_data->div_core_mask) { if (alt_div > reg_data->div_core_mask[0]) {
pr_warn("%s: limiting alt-divider %lu to %d\n", pr_warn("%s: limiting alt-divider %lu to %d\n",
__func__, alt_div, reg_data->div_core_mask); __func__, alt_div, reg_data->div_core_mask[0]);
alt_div = reg_data->div_core_mask; alt_div = reg_data->div_core_mask[0];
} }
/* /*
...@@ -158,19 +159,17 @@ static int rockchip_cpuclk_pre_rate_change(struct rockchip_cpuclk *cpuclk, ...@@ -158,19 +159,17 @@ static int rockchip_cpuclk_pre_rate_change(struct rockchip_cpuclk *cpuclk,
pr_debug("%s: setting div %lu as alt-rate %lu > old-rate %lu\n", pr_debug("%s: setting div %lu as alt-rate %lu > old-rate %lu\n",
__func__, alt_div, alt_prate, ndata->old_rate); __func__, alt_div, alt_prate, ndata->old_rate);
writel(HIWORD_UPDATE(alt_div, reg_data->div_core_mask, for (i = 0; i < reg_data->num_cores; i++) {
reg_data->div_core_shift) | writel(HIWORD_UPDATE(alt_div, reg_data->div_core_mask[i],
HIWORD_UPDATE(reg_data->mux_core_alt, reg_data->div_core_shift[i]),
reg_data->mux_core_mask, cpuclk->reg_base + reg_data->core_reg[i]);
reg_data->mux_core_shift), }
cpuclk->reg_base + reg_data->core_reg);
} else {
/* select alternate parent */
writel(HIWORD_UPDATE(reg_data->mux_core_alt,
reg_data->mux_core_mask,
reg_data->mux_core_shift),
cpuclk->reg_base + reg_data->core_reg);
} }
/* select alternate parent */
writel(HIWORD_UPDATE(reg_data->mux_core_alt,
reg_data->mux_core_mask,
reg_data->mux_core_shift),
cpuclk->reg_base + reg_data->core_reg[0]);
spin_unlock_irqrestore(cpuclk->lock, flags); spin_unlock_irqrestore(cpuclk->lock, flags);
return 0; return 0;
...@@ -182,6 +181,7 @@ static int rockchip_cpuclk_post_rate_change(struct rockchip_cpuclk *cpuclk, ...@@ -182,6 +181,7 @@ static int rockchip_cpuclk_post_rate_change(struct rockchip_cpuclk *cpuclk,
const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data; const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
const struct rockchip_cpuclk_rate_table *rate; const struct rockchip_cpuclk_rate_table *rate;
unsigned long flags; unsigned long flags;
int i = 0;
rate = rockchip_get_cpuclk_settings(cpuclk, ndata->new_rate); rate = rockchip_get_cpuclk_settings(cpuclk, ndata->new_rate);
if (!rate) { if (!rate) {
...@@ -202,12 +202,17 @@ static int rockchip_cpuclk_post_rate_change(struct rockchip_cpuclk *cpuclk, ...@@ -202,12 +202,17 @@ static int rockchip_cpuclk_post_rate_change(struct rockchip_cpuclk *cpuclk,
* primary parent by the extra dividers that were needed for the alt. * primary parent by the extra dividers that were needed for the alt.
*/ */
writel(HIWORD_UPDATE(0, reg_data->div_core_mask, writel(HIWORD_UPDATE(reg_data->mux_core_main,
reg_data->div_core_shift) | reg_data->mux_core_mask,
HIWORD_UPDATE(reg_data->mux_core_main, reg_data->mux_core_shift),
reg_data->mux_core_mask, cpuclk->reg_base + reg_data->core_reg[0]);
reg_data->mux_core_shift),
cpuclk->reg_base + reg_data->core_reg); /* remove dividers */
for (i = 0; i < reg_data->num_cores; i++) {
writel(HIWORD_UPDATE(0, reg_data->div_core_mask[i],
reg_data->div_core_shift[i]),
cpuclk->reg_base + reg_data->core_reg[i]);
}
if (ndata->old_rate > ndata->new_rate) if (ndata->old_rate > ndata->new_rate)
rockchip_cpuclk_set_dividers(cpuclk, rate); rockchip_cpuclk_set_dividers(cpuclk, rate);
......
...@@ -124,9 +124,10 @@ static struct rockchip_cpuclk_rate_table px30_cpuclk_rates[] __initdata = { ...@@ -124,9 +124,10 @@ static struct rockchip_cpuclk_rate_table px30_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data px30_cpuclk_data = { static const struct rockchip_cpuclk_reg_data px30_cpuclk_data = {
.core_reg = PX30_CLKSEL_CON(0), .core_reg[0] = PX30_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0xf, .div_core_mask[0] = 0xf,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 7, .mux_core_shift = 7,
......
...@@ -102,9 +102,10 @@ static struct rockchip_cpuclk_rate_table rk3036_cpuclk_rates[] __initdata = { ...@@ -102,9 +102,10 @@ static struct rockchip_cpuclk_rate_table rk3036_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data rk3036_cpuclk_data = { static const struct rockchip_cpuclk_reg_data rk3036_cpuclk_data = {
.core_reg = RK2928_CLKSEL_CON(0), .core_reg[0] = RK2928_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 7, .mux_core_shift = 7,
......
...@@ -117,9 +117,10 @@ static struct rockchip_cpuclk_rate_table rk3128_cpuclk_rates[] __initdata = { ...@@ -117,9 +117,10 @@ static struct rockchip_cpuclk_rate_table rk3128_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data rk3128_cpuclk_data = { static const struct rockchip_cpuclk_reg_data rk3128_cpuclk_data = {
.core_reg = RK2928_CLKSEL_CON(0), .core_reg[0] = RK2928_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 7, .mux_core_shift = 7,
......
...@@ -145,9 +145,10 @@ static struct rockchip_cpuclk_rate_table rk3066_cpuclk_rates[] __initdata = { ...@@ -145,9 +145,10 @@ static struct rockchip_cpuclk_rate_table rk3066_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data rk3066_cpuclk_data = { static const struct rockchip_cpuclk_reg_data rk3066_cpuclk_data = {
.core_reg = RK2928_CLKSEL_CON(0), .core_reg[0] = RK2928_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 8, .mux_core_shift = 8,
...@@ -184,9 +185,10 @@ static struct rockchip_cpuclk_rate_table rk3188_cpuclk_rates[] __initdata = { ...@@ -184,9 +185,10 @@ static struct rockchip_cpuclk_rate_table rk3188_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data rk3188_cpuclk_data = { static const struct rockchip_cpuclk_reg_data rk3188_cpuclk_data = {
.core_reg = RK2928_CLKSEL_CON(0), .core_reg[0] = RK2928_CLKSEL_CON(0),
.div_core_shift = 9, .div_core_shift[0] = 9,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 8, .mux_core_shift = 8,
......
...@@ -119,9 +119,10 @@ static struct rockchip_cpuclk_rate_table rk3228_cpuclk_rates[] __initdata = { ...@@ -119,9 +119,10 @@ static struct rockchip_cpuclk_rate_table rk3228_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data rk3228_cpuclk_data = { static const struct rockchip_cpuclk_reg_data rk3228_cpuclk_data = {
.core_reg = RK2928_CLKSEL_CON(0), .core_reg[0] = RK2928_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 6, .mux_core_shift = 6,
......
...@@ -179,9 +179,10 @@ static struct rockchip_cpuclk_rate_table rk3288_cpuclk_rates[] __initdata = { ...@@ -179,9 +179,10 @@ static struct rockchip_cpuclk_rate_table rk3288_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data rk3288_cpuclk_data = { static const struct rockchip_cpuclk_reg_data rk3288_cpuclk_data = {
.core_reg = RK3288_CLKSEL_CON(0), .core_reg[0] = RK3288_CLKSEL_CON(0),
.div_core_shift = 8, .div_core_shift[0] = 8,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 15, .mux_core_shift = 15,
......
...@@ -109,9 +109,10 @@ static struct rockchip_cpuclk_rate_table rk3308_cpuclk_rates[] __initdata = { ...@@ -109,9 +109,10 @@ static struct rockchip_cpuclk_rate_table rk3308_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data rk3308_cpuclk_data = { static const struct rockchip_cpuclk_reg_data rk3308_cpuclk_data = {
.core_reg = RK3308_CLKSEL_CON(0), .core_reg[0] = RK3308_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0xf, .div_core_mask[0] = 0xf,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 6, .mux_core_shift = 6,
......
...@@ -130,9 +130,10 @@ static struct rockchip_cpuclk_rate_table rk3328_cpuclk_rates[] __initdata = { ...@@ -130,9 +130,10 @@ static struct rockchip_cpuclk_rate_table rk3328_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data rk3328_cpuclk_data = { static const struct rockchip_cpuclk_reg_data rk3328_cpuclk_data = {
.core_reg = RK3328_CLKSEL_CON(0), .core_reg[0] = RK3328_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 3, .mux_core_main = 3,
.mux_core_shift = 6, .mux_core_shift = 6,
......
...@@ -154,9 +154,10 @@ static struct clk_div_table div_ddrphy_t[] = { ...@@ -154,9 +154,10 @@ static struct clk_div_table div_ddrphy_t[] = {
#define IFLAGS ROCKCHIP_INVERTER_HIWORD_MASK #define IFLAGS ROCKCHIP_INVERTER_HIWORD_MASK
static const struct rockchip_cpuclk_reg_data rk3368_cpuclkb_data = { static const struct rockchip_cpuclk_reg_data rk3368_cpuclkb_data = {
.core_reg = RK3368_CLKSEL_CON(0), .core_reg[0] = RK3368_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 7, .mux_core_shift = 7,
...@@ -164,11 +165,12 @@ static const struct rockchip_cpuclk_reg_data rk3368_cpuclkb_data = { ...@@ -164,11 +165,12 @@ static const struct rockchip_cpuclk_reg_data rk3368_cpuclkb_data = {
}; };
static const struct rockchip_cpuclk_reg_data rk3368_cpuclkl_data = { static const struct rockchip_cpuclk_reg_data rk3368_cpuclkl_data = {
.core_reg = RK3368_CLKSEL_CON(2), .core_reg[0] = RK3368_CLKSEL_CON(2),
.div_core_shift = 0, .div_core_shift[0] = 0,
.mux_core_alt = 1, .mux_core_alt = 1,
.num_cores = 1,
.mux_core_main = 0, .mux_core_main = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.mux_core_shift = 7, .mux_core_shift = 7,
.mux_core_mask = 0x1, .mux_core_mask = 0x1,
}; };
......
...@@ -291,9 +291,10 @@ static struct rockchip_clk_branch rk3399_pmuclk_wifi_fracmux __initdata = ...@@ -291,9 +291,10 @@ static struct rockchip_clk_branch rk3399_pmuclk_wifi_fracmux __initdata =
RK3399_PMU_CLKSEL_CON(1), 14, 1, MFLAGS); RK3399_PMU_CLKSEL_CON(1), 14, 1, MFLAGS);
static const struct rockchip_cpuclk_reg_data rk3399_cpuclkl_data = { static const struct rockchip_cpuclk_reg_data rk3399_cpuclkl_data = {
.core_reg = RK3399_CLKSEL_CON(0), .core_reg[0] = RK3399_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 3, .mux_core_alt = 3,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 6, .mux_core_shift = 6,
...@@ -301,9 +302,10 @@ static const struct rockchip_cpuclk_reg_data rk3399_cpuclkl_data = { ...@@ -301,9 +302,10 @@ static const struct rockchip_cpuclk_reg_data rk3399_cpuclkl_data = {
}; };
static const struct rockchip_cpuclk_reg_data rk3399_cpuclkb_data = { static const struct rockchip_cpuclk_reg_data rk3399_cpuclkb_data = {
.core_reg = RK3399_CLKSEL_CON(2), .core_reg[0] = RK3399_CLKSEL_CON(2),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 3, .mux_core_alt = 3,
.mux_core_main = 1, .mux_core_main = 1,
.mux_core_shift = 6, .mux_core_shift = 6,
...@@ -1655,4 +1657,3 @@ builtin_platform_driver_probe(clk_rk3399_driver, clk_rk3399_probe); ...@@ -1655,4 +1657,3 @@ builtin_platform_driver_probe(clk_rk3399_driver, clk_rk3399_probe);
MODULE_DESCRIPTION("Rockchip RK3399 Clock Driver"); MODULE_DESCRIPTION("Rockchip RK3399 Clock Driver");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:clk-rk3399");
This diff is collapsed.
...@@ -106,9 +106,10 @@ static struct rockchip_cpuclk_rate_table rv1108_cpuclk_rates[] __initdata = { ...@@ -106,9 +106,10 @@ static struct rockchip_cpuclk_rate_table rv1108_cpuclk_rates[] __initdata = {
}; };
static const struct rockchip_cpuclk_reg_data rv1108_cpuclk_data = { static const struct rockchip_cpuclk_reg_data rv1108_cpuclk_data = {
.core_reg = RV1108_CLKSEL_CON(0), .core_reg[0] = RV1108_CLKSEL_CON(0),
.div_core_shift = 0, .div_core_shift[0] = 0,
.div_core_mask = 0x1f, .div_core_mask[0] = 0x1f,
.num_cores = 1,
.mux_core_alt = 1, .mux_core_alt = 1,
.mux_core_main = 0, .mux_core_main = 0,
.mux_core_shift = 8, .mux_core_shift = 8,
......
...@@ -188,6 +188,34 @@ struct clk; ...@@ -188,6 +188,34 @@ struct clk;
#define RK3399_PMU_CLKGATE_CON(x) ((x) * 0x4 + 0x100) #define RK3399_PMU_CLKGATE_CON(x) ((x) * 0x4 + 0x100)
#define RK3399_PMU_SOFTRST_CON(x) ((x) * 0x4 + 0x110) #define RK3399_PMU_SOFTRST_CON(x) ((x) * 0x4 + 0x110)
#define RK3568_PLL_CON(x) RK2928_PLL_CON(x)
#define RK3568_MODE_CON0 0xc0
#define RK3568_MISC_CON0 0xc4
#define RK3568_MISC_CON1 0xc8
#define RK3568_MISC_CON2 0xcc
#define RK3568_GLB_CNT_TH 0xd0
#define RK3568_GLB_SRST_FST 0xd4
#define RK3568_GLB_SRST_SND 0xd8
#define RK3568_GLB_RST_CON 0xdc
#define RK3568_GLB_RST_ST 0xe0
#define RK3568_CLKSEL_CON(x) ((x) * 0x4 + 0x100)
#define RK3568_CLKGATE_CON(x) ((x) * 0x4 + 0x300)
#define RK3568_SOFTRST_CON(x) ((x) * 0x4 + 0x400)
#define RK3568_SDMMC0_CON0 0x580
#define RK3568_SDMMC0_CON1 0x584
#define RK3568_SDMMC1_CON0 0x588
#define RK3568_SDMMC1_CON1 0x58c
#define RK3568_SDMMC2_CON0 0x590
#define RK3568_SDMMC2_CON1 0x594
#define RK3568_EMMC_CON0 0x598
#define RK3568_EMMC_CON1 0x59c
#define RK3568_PMU_PLL_CON(x) RK2928_PLL_CON(x)
#define RK3568_PMU_MODE_CON0 0x80
#define RK3568_PMU_CLKSEL_CON(x) ((x) * 0x4 + 0x100)
#define RK3568_PMU_CLKGATE_CON(x) ((x) * 0x4 + 0x180)
#define RK3568_PMU_SOFTRST_CON(x) ((x) * 0x4 + 0x200)
enum rockchip_pll_type { enum rockchip_pll_type {
pll_rk3036, pll_rk3036,
pll_rk3066, pll_rk3066,
...@@ -322,7 +350,8 @@ struct rockchip_cpuclk_clksel { ...@@ -322,7 +350,8 @@ struct rockchip_cpuclk_clksel {
u32 val; u32 val;
}; };
#define ROCKCHIP_CPUCLK_NUM_DIVIDERS 2 #define ROCKCHIP_CPUCLK_NUM_DIVIDERS 5
#define ROCKCHIP_CPUCLK_MAX_CORES 4
struct rockchip_cpuclk_rate_table { struct rockchip_cpuclk_rate_table {
unsigned long prate; unsigned long prate;
struct rockchip_cpuclk_clksel divs[ROCKCHIP_CPUCLK_NUM_DIVIDERS]; struct rockchip_cpuclk_clksel divs[ROCKCHIP_CPUCLK_NUM_DIVIDERS];
...@@ -330,22 +359,23 @@ struct rockchip_cpuclk_rate_table { ...@@ -330,22 +359,23 @@ struct rockchip_cpuclk_rate_table {
/** /**
* struct rockchip_cpuclk_reg_data - register offsets and masks of the cpuclock * struct rockchip_cpuclk_reg_data - register offsets and masks of the cpuclock
* @core_reg: register offset of the core settings register * @core_reg[]: register offset of the cores setting register
* @div_core_shift: core divider offset used to divide the pll value * @div_core_shift[]: cores divider offset used to divide the pll value
* @div_core_mask: core divider mask * @div_core_mask[]: cores divider mask
* @mux_core_alt: mux value to select alternate parent * @num_cores: number of cpu cores
* @mux_core_main: mux value to select main parent of core * @mux_core_main: mux value to select main parent of core
* @mux_core_shift: offset of the core multiplexer * @mux_core_shift: offset of the core multiplexer
* @mux_core_mask: core multiplexer mask * @mux_core_mask: core multiplexer mask
*/ */
struct rockchip_cpuclk_reg_data { struct rockchip_cpuclk_reg_data {
int core_reg; int core_reg[ROCKCHIP_CPUCLK_MAX_CORES];
u8 div_core_shift; u8 div_core_shift[ROCKCHIP_CPUCLK_MAX_CORES];
u32 div_core_mask; u32 div_core_mask[ROCKCHIP_CPUCLK_MAX_CORES];
u8 mux_core_alt; int num_cores;
u8 mux_core_main; u8 mux_core_alt;
u8 mux_core_shift; u8 mux_core_main;
u32 mux_core_mask; u8 mux_core_shift;
u32 mux_core_mask;
}; };
struct clk *rockchip_clk_register_cpuclk(const char *name, struct clk *rockchip_clk_register_cpuclk(const char *name,
......
...@@ -115,10 +115,8 @@ static int __init exynos4x12_isp_clk_probe(struct platform_device *pdev) ...@@ -115,10 +115,8 @@ static int __init exynos4x12_isp_clk_probe(struct platform_device *pdev)
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
reg_base = devm_ioremap_resource(dev, res); reg_base = devm_ioremap_resource(dev, res);
if (IS_ERR(reg_base)) { if (IS_ERR(reg_base))
dev_err(dev, "failed to map registers\n");
return PTR_ERR(reg_base); return PTR_ERR(reg_base);
}
exynos4x12_save_isp = samsung_clk_alloc_reg_dump(exynos4x12_clk_isp_save, exynos4x12_save_isp = samsung_clk_alloc_reg_dump(exynos4x12_clk_isp_save,
ARRAY_SIZE(exynos4x12_clk_isp_save)); ARRAY_SIZE(exynos4x12_clk_isp_save));
......
...@@ -537,8 +537,13 @@ static const struct samsung_gate_clock top1_gate_clks[] __initconst = { ...@@ -537,8 +537,13 @@ static const struct samsung_gate_clock top1_gate_clks[] __initconst = {
GATE(CLK_ACLK_FSYS0_200, "aclk_fsys0_200", "dout_aclk_fsys0_200", GATE(CLK_ACLK_FSYS0_200, "aclk_fsys0_200", "dout_aclk_fsys0_200",
ENABLE_ACLK_TOP13, 28, CLK_SET_RATE_PARENT | ENABLE_ACLK_TOP13, 28, CLK_SET_RATE_PARENT |
CLK_IS_CRITICAL, 0), CLK_IS_CRITICAL, 0),
/*
* This clock is required for the CMU_FSYS1 registers access, keep it
* enabled permanently until proper runtime PM support is added.
*/
GATE(CLK_ACLK_FSYS1_200, "aclk_fsys1_200", "dout_aclk_fsys1_200", GATE(CLK_ACLK_FSYS1_200, "aclk_fsys1_200", "dout_aclk_fsys1_200",
ENABLE_ACLK_TOP13, 24, CLK_SET_RATE_PARENT, 0), ENABLE_ACLK_TOP13, 24, CLK_SET_RATE_PARENT |
CLK_IS_CRITICAL, 0),
GATE(CLK_SCLK_PHY_FSYS1_26M, "sclk_phy_fsys1_26m", GATE(CLK_SCLK_PHY_FSYS1_26M, "sclk_phy_fsys1_26m",
"dout_sclk_phy_fsys1_26m", ENABLE_SCLK_TOP1_FSYS11, "dout_sclk_phy_fsys1_26m", ENABLE_SCLK_TOP1_FSYS11,
......
...@@ -72,10 +72,8 @@ static int s5pv210_audss_clk_probe(struct platform_device *pdev) ...@@ -72,10 +72,8 @@ static int s5pv210_audss_clk_probe(struct platform_device *pdev)
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
reg_base = devm_ioremap_resource(&pdev->dev, res); reg_base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(reg_base)) { if (IS_ERR(reg_base))
dev_err(&pdev->dev, "failed to map audss registers\n");
return PTR_ERR(reg_base); return PTR_ERR(reg_base);
}
clk_data = devm_kzalloc(&pdev->dev, clk_data = devm_kzalloc(&pdev->dev,
struct_size(clk_data, hws, AUDSS_MAX_CLKS), struct_size(clk_data, hws, AUDSS_MAX_CLKS),
......
...@@ -31,10 +31,10 @@ static int uniphier_clk_mux_set_parent(struct clk_hw *hw, u8 index) ...@@ -31,10 +31,10 @@ static int uniphier_clk_mux_set_parent(struct clk_hw *hw, u8 index)
static u8 uniphier_clk_mux_get_parent(struct clk_hw *hw) static u8 uniphier_clk_mux_get_parent(struct clk_hw *hw)
{ {
struct uniphier_clk_mux *mux = to_uniphier_clk_mux(hw); struct uniphier_clk_mux *mux = to_uniphier_clk_mux(hw);
int num_parents = clk_hw_get_num_parents(hw); unsigned int num_parents = clk_hw_get_num_parents(hw);
int ret; int ret;
unsigned int val; unsigned int val;
u8 i; unsigned int i;
ret = regmap_read(mux->regmap, mux->reg, &val); ret = regmap_read(mux->regmap, mux->reg, &val);
if (ret) if (ret)
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
config COMMON_CLK_ZYNQMP config COMMON_CLK_ZYNQMP
bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers" bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
depends on ARCH_ZYNQMP || COMPILE_TEST depends on ZYNQMP_FIRMWARE || COMPILE_TEST
depends on ZYNQMP_FIRMWARE default ZYNQMP_FIRMWARE
help help
Support for the Zynqmp Ultrascale clock controller. Support for the Zynqmp Ultrascale clock controller.
It has a dependency on the PMU firmware. It has a dependency on the PMU firmware.
......
...@@ -14,10 +14,12 @@ ...@@ -14,10 +14,12 @@
* struct zynqmp_pll - PLL clock * struct zynqmp_pll - PLL clock
* @hw: Handle between common and hardware-specific interfaces * @hw: Handle between common and hardware-specific interfaces
* @clk_id: PLL clock ID * @clk_id: PLL clock ID
* @set_pll_mode: Whether an IOCTL_SET_PLL_FRAC_MODE request be sent to ATF
*/ */
struct zynqmp_pll { struct zynqmp_pll {
struct clk_hw hw; struct clk_hw hw;
u32 clk_id; u32 clk_id;
bool set_pll_mode;
}; };
#define to_zynqmp_pll(_hw) container_of(_hw, struct zynqmp_pll, hw) #define to_zynqmp_pll(_hw) container_of(_hw, struct zynqmp_pll, hw)
...@@ -81,6 +83,8 @@ static inline void zynqmp_pll_set_mode(struct clk_hw *hw, bool on) ...@@ -81,6 +83,8 @@ static inline void zynqmp_pll_set_mode(struct clk_hw *hw, bool on)
if (ret) if (ret)
pr_warn_once("%s() PLL set frac mode failed for %s, ret = %d\n", pr_warn_once("%s() PLL set frac mode failed for %s, ret = %d\n",
__func__, clk_name, ret); __func__, clk_name, ret);
else
clk->set_pll_mode = true;
} }
/** /**
...@@ -100,9 +104,7 @@ static long zynqmp_pll_round_rate(struct clk_hw *hw, unsigned long rate, ...@@ -100,9 +104,7 @@ static long zynqmp_pll_round_rate(struct clk_hw *hw, unsigned long rate,
/* Enable the fractional mode if needed */ /* Enable the fractional mode if needed */
rate_div = (rate * FRAC_DIV) / *prate; rate_div = (rate * FRAC_DIV) / *prate;
f = rate_div % FRAC_DIV; f = rate_div % FRAC_DIV;
zynqmp_pll_set_mode(hw, !!f); if (f) {
if (zynqmp_pll_get_mode(hw) == PLL_MODE_FRAC) {
if (rate > PS_PLL_VCO_MAX) { if (rate > PS_PLL_VCO_MAX) {
fbdiv = rate / PS_PLL_VCO_MAX; fbdiv = rate / PS_PLL_VCO_MAX;
rate = rate / (fbdiv + 1); rate = rate / (fbdiv + 1);
...@@ -173,10 +175,12 @@ static int zynqmp_pll_set_rate(struct clk_hw *hw, unsigned long rate, ...@@ -173,10 +175,12 @@ static int zynqmp_pll_set_rate(struct clk_hw *hw, unsigned long rate,
long rate_div, frac, m, f; long rate_div, frac, m, f;
int ret; int ret;
if (zynqmp_pll_get_mode(hw) == PLL_MODE_FRAC) { rate_div = (rate * FRAC_DIV) / parent_rate;
rate_div = (rate * FRAC_DIV) / parent_rate; f = rate_div % FRAC_DIV;
zynqmp_pll_set_mode(hw, !!f);
if (f) {
m = rate_div / FRAC_DIV; m = rate_div / FRAC_DIV;
f = rate_div % FRAC_DIV;
m = clamp_t(u32, m, (PLL_FBDIV_MIN), (PLL_FBDIV_MAX)); m = clamp_t(u32, m, (PLL_FBDIV_MIN), (PLL_FBDIV_MAX));
rate = parent_rate * m; rate = parent_rate * m;
frac = (parent_rate * f) / FRAC_DIV; frac = (parent_rate * f) / FRAC_DIV;
...@@ -240,9 +244,15 @@ static int zynqmp_pll_enable(struct clk_hw *hw) ...@@ -240,9 +244,15 @@ static int zynqmp_pll_enable(struct clk_hw *hw)
u32 clk_id = clk->clk_id; u32 clk_id = clk->clk_id;
int ret; int ret;
if (zynqmp_pll_is_enabled(hw)) /*
* Don't skip enabling clock if there is an IOCTL_SET_PLL_FRAC_MODE request
* that has been sent to ATF.
*/
if (zynqmp_pll_is_enabled(hw) && (!clk->set_pll_mode))
return 0; return 0;
clk->set_pll_mode = false;
ret = zynqmp_pm_clock_enable(clk_id); ret = zynqmp_pm_clock_enable(clk_id);
if (ret) if (ret)
pr_warn_once("%s() clock enable failed for %s, ret = %d\n", pr_warn_once("%s() clock enable failed for %s, ret = %d\n",
......
...@@ -125,7 +125,6 @@ ...@@ -125,7 +125,6 @@
#define IMX8MP_CLK_CAN1 116 #define IMX8MP_CLK_CAN1 116
#define IMX8MP_CLK_CAN2 117 #define IMX8MP_CLK_CAN2 117
#define IMX8MP_CLK_MEMREPAIR 118 #define IMX8MP_CLK_MEMREPAIR 118
#define IMX8MP_CLK_PCIE_PHY 119
#define IMX8MP_CLK_PCIE_AUX 120 #define IMX8MP_CLK_PCIE_AUX 120
#define IMX8MP_CLK_I2C5 121 #define IMX8MP_CLK_I2C5 121
#define IMX8MP_CLK_I2C6 122 #define IMX8MP_CLK_I2C6 122
...@@ -182,8 +181,6 @@ ...@@ -182,8 +181,6 @@
#define IMX8MP_CLK_MEDIA_CAM2_PIX 173 #define IMX8MP_CLK_MEDIA_CAM2_PIX 173
#define IMX8MP_CLK_MEDIA_LDB 174 #define IMX8MP_CLK_MEDIA_LDB 174
#define IMX8MP_CLK_MEDIA_MIPI_CSI2_ESC 175 #define IMX8MP_CLK_MEDIA_MIPI_CSI2_ESC 175
#define IMX8MP_CLK_PCIE2_CTRL 176
#define IMX8MP_CLK_PCIE2_PHY 177
#define IMX8MP_CLK_MEDIA_MIPI_TEST_BYTE 178 #define IMX8MP_CLK_MEDIA_MIPI_TEST_BYTE 178
#define IMX8MP_CLK_ECSPI3 179 #define IMX8MP_CLK_ECSPI3 179
#define IMX8MP_CLK_PDM 180 #define IMX8MP_CLK_PDM 180
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment