amlogic.txt 4.2 KB
Newer Older
1 2 3
Amlogic MesonX device tree bindings
-------------------------------------------

4 5 6 7 8 9 10 11 12 13 14 15
Work in progress statement:

Device tree files and bindings applying to Amlogic SoCs and boards are
considered "unstable". Any Amlogic device tree binding may change at
any time. Be sure to use a device tree binary and a kernel image
generated from the same source tree.

Please refer to Documentation/devicetree/bindings/ABI.txt for a definition of a
stable binding/ABI.

---------------------------------------------------------------

16
Boards with the Amlogic Meson6 SoC shall have the following properties:
17 18
  Required root node property:
    compatible: "amlogic,meson6"
19

20 21 22
Boards with the Amlogic Meson8 SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,meson8";
23

24 25 26 27
Boards with the Amlogic Meson8b SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,meson8b";

28 29 30 31
Boards with the Amlogic Meson8m2 SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,meson8m2";

32 33 34 35
Boards with the Amlogic Meson GXBaby SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,meson-gxbb";

36 37 38 39
Boards with the Amlogic Meson GXL S905X SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,s905x", "amlogic,meson-gxl";

40 41 42 43
Boards with the Amlogic Meson GXL S905D SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,s905d", "amlogic,meson-gxl";

44 45 46 47
Boards with the Amlogic Meson GXL S805X SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,s805x", "amlogic,meson-gxl";

48 49 50 51
Boards with the Amlogic Meson GXL S905W SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,s905w", "amlogic,meson-gxl";

52 53 54 55
Boards with the Amlogic Meson GXM S912 SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,s912", "amlogic,meson-gxm";

56 57 58 59
Boards with the Amlogic Meson AXG A113D SoC shall have the following properties:
  Required root node property:
    compatible: "amlogic,a113d", "amlogic,meson-axg";

60 61
Board compatible values (alphabetically, grouped by SoC):

62
  - "geniatech,atv1200" (Meson6)
63

64
  - "minix,neo-x8" (Meson8)
65

66
  - "hardkernel,odroid-c1" (Meson8b)
67 68
  - "tronfy,mxq" (Meson8b)

69 70
  - "tronsmart,mxiii-plus" (Meson8m2)

71 72
  - "amlogic,p200" (Meson gxbb)
  - "amlogic,p201" (Meson gxbb)
73
  - "friendlyarm,nanopi-k2" (Meson gxbb)
74 75
  - "hardkernel,odroid-c2" (Meson gxbb)
  - "nexbox,a95x" (Meson gxbb or Meson gxl s905x)
76 77 78
  - "tronsmart,vega-s95-pro", "tronsmart,vega-s95" (Meson gxbb)
  - "tronsmart,vega-s95-meta", "tronsmart,vega-s95" (Meson gxbb)
  - "tronsmart,vega-s95-telos", "tronsmart,vega-s95" (Meson gxbb)
79 80
  - "wetek,hub" (Meson gxbb)
  - "wetek,play2" (Meson gxbb)
81

82
  - "amlogic,p212" (Meson gxl s905x)
83
  - "hwacom,amazetv" (Meson gxl s905x)
84
  - "khadas,vim" (Meson gxl s905x)
85
  - "libretech,cc" (Meson gxl s905x)
86

87 88
  - "amlogic,p230" (Meson gxl s905d)
  - "amlogic,p231" (Meson gxl s905d)
89

90 91
  - "amlogic,p241" (Meson gxl s805x)

92
  - "amlogic,p281" (Meson gxl s905w)
93
  - "oranth,tx3-mini" (Meson gxl s905w)
94

95 96
  - "amlogic,q200" (Meson gxm s912)
  - "amlogic,q201" (Meson gxm s912)
97
  - "khadas,vim2" (Meson gxm s912)
98
  - "kingnovel,r-box-pro" (Meson gxm S912)
99
  - "nexbox,a1" (Meson gxm s912)
100
  - "tronsmart,vega-s96" (Meson gxm s912)
101

102 103
  - "amlogic,s400" (Meson axg a113d)

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
Amlogic Meson Firmware registers Interface
------------------------------------------

The Meson SoCs have a register bank with status and data shared with the
secure firmware.

Required properties:
 - compatible: For Meson GX SoCs, must be "amlogic,meson-gx-ao-secure", "syscon"

Properties should indentify components of this register interface :

Meson GX SoC Information
------------------------
A firmware register encodes the SoC type, package and revision information on
the Meson GX SoCs.
If present, the following property should be added :

Optional properties:
  - amlogic,has-chip-id: If present, the interface gives the current SoC version.

Example
-------

ao-secure@140 {
	compatible = "amlogic,meson-gx-ao-secure", "syscon";
	reg = <0x0 0x140 0x0 0x140>;
	amlogic,has-chip-id;
};