aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJerome Brunet <jbrunet@baylibre.com>2018-02-19 06:21:46 -0500
committerNeil Armstrong <narmstrong@baylibre.com>2018-03-13 05:10:00 -0400
commit5b13ef64eebdc9e989fac2a3eb9aaa252a3edda6 (patch)
treea935c47e31f186223cf3ce735537d2600db3c415
parent05f814402d6174369b3b29832cbb5eb5ed287059 (diff)
clk: meson: clean-up clk81 clocks
clk81 is a composite clock which parents all the peripheral clocks of the platform. It is a critical clock which is used as provided by the bootloader. We don't want to change its rate or reparent it, ever. Remove the CLK_IGNORE_UNUSED on the mux and divider. These clock can't gate so the flag is useless, and the gate is already critical, so the clock won't ever be unused. Remove CLK_SET_RATE_NO_REPARENT from mux, it is useless since the mux is read-only. Remove CLK_SET_RATE_PARENT from the gate and divider and use ro_ops for the divider. A peripheral clock should not try to change the rate of clk81. Stopping the rate propagation is good way to make sure such request would be ignored. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
-rw-r--r--drivers/clk/meson/gxbb.c6
-rw-r--r--drivers/clk/meson/meson8b.c6
2 files changed, 4 insertions, 8 deletions
diff --git a/drivers/clk/meson/gxbb.c b/drivers/clk/meson/gxbb.c
index 70b4669cf7d6..db5e0dcbb5aa 100644
--- a/drivers/clk/meson/gxbb.c
+++ b/drivers/clk/meson/gxbb.c
@@ -775,7 +775,6 @@ static struct clk_regmap gxbb_mpeg_clk_sel = {
775 */ 775 */
776 .parent_names = clk81_parent_names, 776 .parent_names = clk81_parent_names,
777 .num_parents = ARRAY_SIZE(clk81_parent_names), 777 .num_parents = ARRAY_SIZE(clk81_parent_names),
778 .flags = (CLK_SET_RATE_NO_REPARENT | CLK_IGNORE_UNUSED),
779 }, 778 },
780}; 779};
781 780
@@ -787,10 +786,9 @@ static struct clk_regmap gxbb_mpeg_clk_div = {
787 }, 786 },
788 .hw.init = &(struct clk_init_data){ 787 .hw.init = &(struct clk_init_data){
789 .name = "mpeg_clk_div", 788 .name = "mpeg_clk_div",
790 .ops = &clk_regmap_divider_ops, 789 .ops = &clk_regmap_divider_ro_ops,
791 .parent_names = (const char *[]){ "mpeg_clk_sel" }, 790 .parent_names = (const char *[]){ "mpeg_clk_sel" },
792 .num_parents = 1, 791 .num_parents = 1,
793 .flags = (CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED),
794 }, 792 },
795}; 793};
796 794
@@ -805,7 +803,7 @@ static struct clk_regmap gxbb_clk81 = {
805 .ops = &clk_regmap_gate_ops, 803 .ops = &clk_regmap_gate_ops,
806 .parent_names = (const char *[]){ "mpeg_clk_div" }, 804 .parent_names = (const char *[]){ "mpeg_clk_div" },
807 .num_parents = 1, 805 .num_parents = 1,
808 .flags = (CLK_SET_RATE_PARENT | CLK_IS_CRITICAL), 806 .flags = CLK_IS_CRITICAL,
809 }, 807 },
810}; 808};
811 809
diff --git a/drivers/clk/meson/meson8b.c b/drivers/clk/meson/meson8b.c
index 9c9e3d180120..b324c44d36eb 100644
--- a/drivers/clk/meson/meson8b.c
+++ b/drivers/clk/meson/meson8b.c
@@ -506,7 +506,6 @@ static struct clk_regmap meson8b_mpeg_clk_sel = {
506 .parent_names = (const char *[]){ "fclk_div3", "fclk_div4", 506 .parent_names = (const char *[]){ "fclk_div3", "fclk_div4",
507 "fclk_div5" }, 507 "fclk_div5" },
508 .num_parents = 3, 508 .num_parents = 3,
509 .flags = (CLK_SET_RATE_NO_REPARENT | CLK_IGNORE_UNUSED),
510 }, 509 },
511}; 510};
512 511
@@ -518,10 +517,9 @@ struct clk_regmap meson8b_mpeg_clk_div = {
518 }, 517 },
519 .hw.init = &(struct clk_init_data){ 518 .hw.init = &(struct clk_init_data){
520 .name = "mpeg_clk_div", 519 .name = "mpeg_clk_div",
521 .ops = &clk_regmap_divider_ops, 520 .ops = &clk_regmap_divider_ro_ops,
522 .parent_names = (const char *[]){ "mpeg_clk_sel" }, 521 .parent_names = (const char *[]){ "mpeg_clk_sel" },
523 .num_parents = 1, 522 .num_parents = 1,
524 .flags = (CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED),
525 }, 523 },
526}; 524};
527 525
@@ -535,7 +533,7 @@ struct clk_regmap meson8b_clk81 = {
535 .ops = &clk_regmap_gate_ops, 533 .ops = &clk_regmap_gate_ops,
536 .parent_names = (const char *[]){ "mpeg_clk_div" }, 534 .parent_names = (const char *[]){ "mpeg_clk_div" },
537 .num_parents = 1, 535 .num_parents = 1,
538 .flags = (CLK_SET_RATE_PARENT | CLK_IS_CRITICAL), 536 .flags = CLK_IS_CRITICAL,
539 }, 537 },
540}; 538};
541 539