30 lines
566 B
Plaintext
30 lines
566 B
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <st/stm32f407.dtsi>
|
|
|
|
/ {
|
|
soc {
|
|
uart7: serial@40007800 {
|
|
compatible = "st,stm32-uart";
|
|
reg = <0x40007800 0x400>;
|
|
clocks = <&rcc STM32_CLOCK_BUS_APB1 0x40000000>;
|
|
interrupts = <82 0>;
|
|
status = "disabled";
|
|
label = "UART_7";
|
|
};
|
|
|
|
uart8: serial@40007c00 {
|
|
compatible = "st,stm32-uart";
|
|
reg = <0x40007c00 0x400>;
|
|
clocks = <&rcc STM32_CLOCK_BUS_APB1 0x80000000>;
|
|
interrupts = <83 0>;
|
|
status = "disabled";
|
|
label = "UART_8";
|
|
};
|
|
};
|
|
};
|