26 lines
562 B
Plaintext
26 lines
562 B
Plaintext
/*
|
|
* Copyright (c) 2019 STMicroelectronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <st/l4/stm32l4r5.dtsi>
|
|
#include <zephyr/dt-bindings/display/panel.h>
|
|
|
|
/ {
|
|
soc {
|
|
compatible = "st,stm32l4r9", "st,stm32l4", "simple-bus";
|
|
|
|
ltdc: display-controller@40016800 {
|
|
compatible = "st,stm32-ltdc";
|
|
reg = <0x40016800 0x200>;
|
|
interrupts = <91 0>, <92 0>;
|
|
interrupt-names = "ltdc", "ltdc_er";
|
|
clocks = <&rcc STM32_CLOCK_BUS_APB2 0x04000000>;
|
|
resets = <&rctl STM32_RESET(APB2, 26U)>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|