Commit 0b242e61bfaccf69d4c15fb5a23ed3802f308de8

Authored by Karthik R Sankar
Committed by Jacob Stiffler
1 parent b902336584

Added DT bindings for DebugSS

Showing 2 changed files with 28 additions and 0 deletions Side-by-side Diff

Documentation/devicetree/bindings/misc/dra7xx-debugss.txt
  1 +Texas Instruments Debug Sub-System (DebugSS) module for DRA7xx devices
  2 +
  3 +Required properties:
  4 +- compatible : Should be "ti,dra7xx-debugss"
  5 +
  6 +Optional properties:
  7 +- clocks : the clocks feeding the Debug sub-system.
  8 +- clocks-names : clock name strings correspond to the clocks
  9 + defined above. These strings are used inside
  10 + module source code to identify the respective
  11 + clocks
  12 +
  13 +Documentation:
  14 +http://www.ti.com/lit/ds/symlink/dra746.pdf
  15 +
  16 +Examples:
  17 +
  18 +debugss: debugss {
  19 + compatible = "ti,dra7xx-debugss";
  20 + clocks = <&sys_clkin1>;
  21 + clock-names = "sysclockin1";
  22 +};
arch/arm/boot/dts/dra7.dtsi
... ... @@ -2044,6 +2044,12 @@
2044 2044 };
2045 2045  
2046 2046 };
  2047 +
  2048 + debugss: debugss {
  2049 + compatible = "ti,dra7xx-debugss";
  2050 + clocks = <&sys_clkin1>;
  2051 + clock-names = "sysclockin1";
  2052 + };
2047 2053 };
2048 2054 };
2049 2055