Guest User

Untitled

a guest
Oct 25th, 2023
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | Source Code | 0 0
  1. /dts-v1/;
  2. /plugin/;
  3.  
  4. / {
  5. compatible = "brcm,bcm2835";
  6.  
  7. fragment@0 {
  8. target = <&dsi1>;
  9. __overlay__{
  10. status = "okay";
  11. #address-cells = <1>;
  12. #size-cells = <0>;
  13. port {
  14. dsi_out_port:endpoint {
  15. remote-endpoint = <&panel_dsi_port>;
  16. };
  17. };
  18.  
  19. eqt700hky008p:eqt700hky008p@0 {
  20. compatible = "easy_quick_eqt700hky008p";
  21. status = "okay";
  22. reg = <0>;
  23. reset-gpios = <&gpio 30 1>; // LCD RST, active low!
  24. /*
  25. backlight = <&oes_pwm_backlight>;
  26. */
  27. port {
  28. panel_dsi_port: endpoint {
  29. remote-endpoint = <&dsi_out_port>;
  30. };
  31. };
  32. };
  33. };
  34. };
  35.  
  36. fragment@1 {
  37. target = <&gpio>;
  38. __overlay__ {
  39. eqt700hky008p_pins: eqt700hky008p_pins {
  40. brcm,pins = <30>;
  41. brcm,function = <1>; // out
  42. brcm,pull = <0>; // off
  43. };
  44. };
  45.  
  46. };
  47.  
  48. __overrides__ {
  49. reset = <&eqt700hky008p_pins>,"brcm,pins:0",
  50. <&eqt700hky008p>,"reset-gpios:4";
  51.  
  52. };
  53.  
  54. };
  55.  
Advertisement
Add Comment
Please, Sign In to add comment