47 lines
1001 B
Plaintext
47 lines
1001 B
Plaintext
/*
|
|
* Copyright (c) 2019, PHYTEC Messtechnik GmbH
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "waveshare_epaper_common.dtsi"
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,display = &ssd16xx;
|
|
};
|
|
};
|
|
|
|
&arduino_spi {
|
|
ssd16xx: ssd16xxfb@0 {
|
|
compatible = "gooddisplay,gdeh0213b1", "solomon,ssd1673", "solomon,ssd16xxfb";
|
|
spi-max-frequency = <4000000>;
|
|
reg = <0>;
|
|
width = <250>;
|
|
height = <120>;
|
|
pp-width-bits = <8>;
|
|
pp-height-bits = <8>;
|
|
dc-gpios = <&arduino_header 15 GPIO_ACTIVE_LOW>; /* D9 */
|
|
reset-gpios = <&arduino_header 14 GPIO_ACTIVE_LOW>; /* D8 */
|
|
busy-gpios = <&arduino_header 13 GPIO_ACTIVE_HIGH>; /* D7 */
|
|
gdv = [10 0a];
|
|
sdv = [19];
|
|
vcom = <0xa8>;
|
|
border-waveform = <0x71>;
|
|
dummy-line = <0x1a>;
|
|
gate-line-width = <0x08>;
|
|
lut-initial = [
|
|
22 55 AA 55 AA 55 AA 11
|
|
00 00 00 00 00 00 00 00
|
|
1E 1E 1E 1E 1E 1E 1E 1E
|
|
01 00 00 00 00
|
|
];
|
|
lut-default = [
|
|
18 00 00 00 00 00 00 00
|
|
00 00 00 00 00 00 00 00
|
|
0F 01 00 00 00 00 00 00
|
|
00 00 00 00 00
|
|
];
|
|
};
|
|
};
|