diff options
-rw-r--r-- | drivers/clk/st/clkgen-mux.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/clk/st/clkgen-mux.c b/drivers/clk/st/clkgen-mux.c index a329906d1e81..9bdedc8ed82a 100644 --- a/drivers/clk/st/clkgen-mux.c +++ b/drivers/clk/st/clkgen-mux.c | |||
@@ -580,6 +580,11 @@ static struct clkgen_mux_data stih416_a9_mux_data = { | |||
580 | .shift = 0, | 580 | .shift = 0, |
581 | .width = 2, | 581 | .width = 2, |
582 | }; | 582 | }; |
583 | static struct clkgen_mux_data stih407_a9_mux_data = { | ||
584 | .offset = 0x1a4, | ||
585 | .shift = 1, | ||
586 | .width = 2, | ||
587 | }; | ||
583 | 588 | ||
584 | static struct of_device_id mux_of_match[] = { | 589 | static struct of_device_id mux_of_match[] = { |
585 | { | 590 | { |
@@ -610,6 +615,10 @@ static struct of_device_id mux_of_match[] = { | |||
610 | .compatible = "st,stih416-clkgen-a9-mux", | 615 | .compatible = "st,stih416-clkgen-a9-mux", |
611 | .data = &stih416_a9_mux_data, | 616 | .data = &stih416_a9_mux_data, |
612 | }, | 617 | }, |
618 | { | ||
619 | .compatible = "st,stih407-clkgen-a9-mux", | ||
620 | .data = &stih407_a9_mux_data, | ||
621 | }, | ||
613 | {} | 622 | {} |
614 | }; | 623 | }; |
615 | 624 | ||