25 lines
658 B
Plaintext
25 lines
658 B
Plaintext
/*
|
|
* Copyright (c) 2024 Marvin Herold
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&spi1{
|
|
status = "okay";
|
|
pinctrl-0 = < &spi1_nss_pa4 &spi1_sck_pa5 &spi1_miso_pa6 &spi1_mosi_pa7 >;
|
|
pinctrl-names = "default";
|
|
|
|
epd: epd@0 {
|
|
compatible = "solomon,ssd1680";
|
|
reg = <0>;
|
|
spi-max-frequency = <2000000>;
|
|
mipi-max-frequency = <2000000>;
|
|
width = <250>;
|
|
height = <122>;
|
|
rotation = <0>;
|
|
dc-gpios = <&gpiob 8 GPIO_ACTIVE_HIGH>;
|
|
reset-gpios = <&gpioc 1 GPIO_ACTIVE_HIGH>;
|
|
busy-gpios = <&gpiob 10 GPIO_ACTIVE_HIGH>;
|
|
cs-gpios = <&gpioa 4 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
}; |