Guest User

Untitled

a guest
Nov 19th, 2022
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2022, Leandro Friedrich <[email protected]>
  4. */
  5.  
  6. /dts-v1/;
  7. #include "exynos7885.dtsi"
  8. #include <dt-bindings/gpio/gpio.h>
  9. #include <dt-bindings/input/input.h>
  10. #include <dt-bindings/interrupt-controller/irq.h>
  11.  
  12. / {
  13. model = "Samsung Galaxy A10";
  14. compatible = "samsung,a10", "samsung,exynos7885";
  15. chassis-type = "handset";
  16.  
  17. #address-cells = <2>;
  18. #size-cells = <2>;
  19.  
  20. reserved-memory {
  21. #address-cells = <2>;
  22. #size-cells = <2>;
  23. ranges;
  24. framebuffer@0xec000000 {
  25. reg = <0x0 0xec000000 0x0 (720*1520*4)>;
  26. no-map;
  27. };
  28. };
  29.  
  30. chosen {
  31. #address-cells = <2>;
  32. #size-cells = <2>;
  33. ranges;
  34. stdout-path = "/chosen/framebuffer@0xec000000";
  35. framebuffer@0xec000000 {
  36. compatible = "simple-framebuffer";
  37. reg = <0x0 0xec000000 0x0 (720*1520*4)>;
  38. width = <720>;
  39. height = <1520>;
  40. stride = <(720 * 4)>;
  41. format = "a8r8g8b8";
  42. };
  43. };
  44.  
  45. memory@80000000 {
  46. device_type = "memory";
  47. /* reg = <0 0x90000000 0 0x70000000>;*/
  48. reg = <0 0x80000000 0 0x80000000>;
  49. };
  50.  
  51. };
  52.  
  53.  
  54. &mmc_0 {
  55. status = "okay";
  56. mmc-hs200-1_8v;
  57. mmc-hs400-1_8v;
  58. cap-mmc-highspeed;
  59. non-removable;
  60. mmc-hs400-enhanced-strobe;
  61. card-detect-delay = <200>;
  62. clock-frequency = <800000000>;
  63. bus-width = <8>;
  64. samsung,dw-mshc-ciu-div = <3>;
  65. samsung,dw-mshc-sdr-timing = <0 4>;
  66. samsung,dw-mshc-ddr-timing = <2 4>;
  67. samsung,dw-mshc-hs200-timing = <3 0 3 0>;
  68. samsung,dw-mshc-hs400-timing = <0 2>;
  69.  
  70. pinctrl-names = "default";
  71. pinctrl-0 = <&sd0_clk_fast_slew_rate_3x &sd0_cmd &sd0_rdqs
  72. &sd0_bus1 &sd0_bus4 &sd0_bus8>;
  73. };
Advertisement
Add Comment
Please, Sign In to add comment