amlogic.txt 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. Amlogic MesonX device tree bindings
  2. -------------------------------------------
  3. Work in progress statement:
  4. Device tree files and bindings applying to Amlogic SoCs and boards are
  5. considered "unstable". Any Amlogic device tree binding may change at
  6. any time. Be sure to use a device tree binary and a kernel image
  7. generated from the same source tree.
  8. Please refer to Documentation/devicetree/bindings/ABI.txt for a definition of a
  9. stable binding/ABI.
  10. ---------------------------------------------------------------
  11. Boards with the Amlogic Meson6 SoC shall have the following properties:
  12. Required root node property:
  13. compatible: "amlogic,meson6"
  14. Boards with the Amlogic Meson8 SoC shall have the following properties:
  15. Required root node property:
  16. compatible: "amlogic,meson8";
  17. Boards with the Amlogic Meson8b SoC shall have the following properties:
  18. Required root node property:
  19. compatible: "amlogic,meson8b";
  20. Boards with the Amlogic Meson8m2 SoC shall have the following properties:
  21. Required root node property:
  22. compatible: "amlogic,meson8m2";
  23. Boards with the Amlogic Meson GXBaby SoC shall have the following properties:
  24. Required root node property:
  25. compatible: "amlogic,meson-gxbb";
  26. Boards with the Amlogic Meson GXL S905X SoC shall have the following properties:
  27. Required root node property:
  28. compatible: "amlogic,s905x", "amlogic,meson-gxl";
  29. Boards with the Amlogic Meson GXL S905D SoC shall have the following properties:
  30. Required root node property:
  31. compatible: "amlogic,s905d", "amlogic,meson-gxl";
  32. Boards with the Amlogic Meson GXL S805X SoC shall have the following properties:
  33. Required root node property:
  34. compatible: "amlogic,s805x", "amlogic,meson-gxl";
  35. Boards with the Amlogic Meson GXL S905W SoC shall have the following properties:
  36. Required root node property:
  37. compatible: "amlogic,s905w", "amlogic,meson-gxl";
  38. Boards with the Amlogic Meson GXM S912 SoC shall have the following properties:
  39. Required root node property:
  40. compatible: "amlogic,s912", "amlogic,meson-gxm";
  41. Boards with the Amlogic Meson AXG A113D SoC shall have the following properties:
  42. Required root node property:
  43. compatible: "amlogic,a113d", "amlogic,meson-axg";
  44. Board compatible values (alphabetically, grouped by SoC):
  45. - "geniatech,atv1200" (Meson6)
  46. - "minix,neo-x8" (Meson8)
  47. - "hardkernel,odroid-c1" (Meson8b)
  48. - "tronfy,mxq" (Meson8b)
  49. - "tronsmart,mxiii-plus" (Meson8m2)
  50. - "amlogic,p200" (Meson gxbb)
  51. - "amlogic,p201" (Meson gxbb)
  52. - "friendlyarm,nanopi-k2" (Meson gxbb)
  53. - "hardkernel,odroid-c2" (Meson gxbb)
  54. - "nexbox,a95x" (Meson gxbb or Meson gxl s905x)
  55. - "tronsmart,vega-s95-pro", "tronsmart,vega-s95" (Meson gxbb)
  56. - "tronsmart,vega-s95-meta", "tronsmart,vega-s95" (Meson gxbb)
  57. - "tronsmart,vega-s95-telos", "tronsmart,vega-s95" (Meson gxbb)
  58. - "wetek,hub" (Meson gxbb)
  59. - "wetek,play2" (Meson gxbb)
  60. - "amlogic,p212" (Meson gxl s905x)
  61. - "hwacom,amazetv" (Meson gxl s905x)
  62. - "khadas,vim" (Meson gxl s905x)
  63. - "libretech,cc" (Meson gxl s905x)
  64. - "amlogic,p230" (Meson gxl s905d)
  65. - "amlogic,p231" (Meson gxl s905d)
  66. - "amlogic,p241" (Meson gxl s805x)
  67. - "amlogic,p281" (Meson gxl s905w)
  68. - "oranth,tx3-mini" (Meson gxl s905w)
  69. - "amlogic,q200" (Meson gxm s912)
  70. - "amlogic,q201" (Meson gxm s912)
  71. - "khadas,vim2" (Meson gxm s912)
  72. - "kingnovel,r-box-pro" (Meson gxm S912)
  73. - "nexbox,a1" (Meson gxm s912)
  74. - "tronsmart,vega-s96" (Meson gxm s912)
  75. - "amlogic,s400" (Meson axg a113d)
  76. Amlogic Meson Firmware registers Interface
  77. ------------------------------------------
  78. The Meson SoCs have a register bank with status and data shared with the
  79. secure firmware.
  80. Required properties:
  81. - compatible: For Meson GX SoCs, must be "amlogic,meson-gx-ao-secure", "syscon"
  82. Properties should indentify components of this register interface :
  83. Meson GX SoC Information
  84. ------------------------
  85. A firmware register encodes the SoC type, package and revision information on
  86. the Meson GX SoCs.
  87. If present, the following property should be added :
  88. Optional properties:
  89. - amlogic,has-chip-id: If present, the interface gives the current SoC version.
  90. Example
  91. -------
  92. ao-secure@140 {
  93. compatible = "amlogic,meson-gx-ao-secure", "syscon";
  94. reg = <0x0 0x140 0x0 0x140>;
  95. amlogic,has-chip-id;
  96. };