boards: nucleo f7xx: Increase core speed
STM32F7 allow to run at significantly higher speed that the one configured on these boards. Configure clocks to make benefit of full potential. Additionally, configure PLL_Q output to provide USB compatible 48MHz freq. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
parent
93ff35f69f
commit
9151af224a
3 changed files with 15 additions and 15 deletions
|
@ -74,19 +74,19 @@
|
|||
|
||||
&pll {
|
||||
div-m = <4>;
|
||||
mul-n = <72>;
|
||||
mul-n = <216>;
|
||||
div-p = <2>;
|
||||
div-q = <3>;
|
||||
div-q = <9>;
|
||||
clocks = <&clk_hse>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&rcc {
|
||||
clocks = <&pll>;
|
||||
clock-frequency = <DT_FREQ_M(72)>;
|
||||
clock-frequency = <DT_FREQ_M(216)>;
|
||||
ahb-prescaler = <1>;
|
||||
apb1-prescaler = <2>;
|
||||
apb2-prescaler = <1>;
|
||||
apb1-prescaler = <4>;
|
||||
apb2-prescaler = <2>;
|
||||
};
|
||||
|
||||
&usart2 {
|
||||
|
|
|
@ -68,19 +68,19 @@
|
|||
|
||||
&pll {
|
||||
div-m = <4>;
|
||||
mul-n = <72>;
|
||||
mul-n = <216>;
|
||||
div-p = <2>;
|
||||
div-q = <3>;
|
||||
div-q = <9>;
|
||||
clocks = <&clk_hse>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&rcc {
|
||||
clocks = <&pll>;
|
||||
clock-frequency = <DT_FREQ_M(72)>;
|
||||
clock-frequency = <DT_FREQ_M(216)>;
|
||||
ahb-prescaler = <1>;
|
||||
apb1-prescaler = <2>;
|
||||
apb2-prescaler = <1>;
|
||||
apb1-prescaler = <4>;
|
||||
apb2-prescaler = <2>;
|
||||
};
|
||||
|
||||
&usart2 {
|
||||
|
|
|
@ -75,19 +75,19 @@
|
|||
|
||||
&pll {
|
||||
div-m = <4>;
|
||||
mul-n = <72>;
|
||||
mul-n = <216>;
|
||||
div-p = <2>;
|
||||
div-q = <3>;
|
||||
div-q = <9>;
|
||||
clocks = <&clk_hse>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&rcc {
|
||||
clocks = <&pll>;
|
||||
clock-frequency = <DT_FREQ_M(72)>;
|
||||
clock-frequency = <DT_FREQ_M(216)>;
|
||||
ahb-prescaler = <1>;
|
||||
apb1-prescaler = <2>;
|
||||
apb2-prescaler = <1>;
|
||||
apb1-prescaler = <4>;
|
||||
apb2-prescaler = <2>;
|
||||
};
|
||||
|
||||
&usart2 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue