18c2ecf20Sopenharmony_ciNVIDIA Tegra20/Tegra30/Tegr114/Tegra124 fuse block.
28c2ecf20Sopenharmony_ci
38c2ecf20Sopenharmony_ciRequired properties:
48c2ecf20Sopenharmony_ci- compatible : For Tegra20, must contain "nvidia,tegra20-efuse".  For Tegra30,
58c2ecf20Sopenharmony_ci  must contain "nvidia,tegra30-efuse".  For Tegra114, must contain
68c2ecf20Sopenharmony_ci  "nvidia,tegra114-efuse".  For Tegra124, must contain "nvidia,tegra124-efuse".
78c2ecf20Sopenharmony_ci  For Tegra132 must contain "nvidia,tegra132-efuse", "nvidia,tegra124-efuse".
88c2ecf20Sopenharmony_ci  For Tegra210 must contain "nvidia,tegra210-efuse". For Tegra186 must contain
98c2ecf20Sopenharmony_ci  "nvidia,tegra186-efuse". For Tegra194 must contain "nvidia,tegra194-efuse".
108c2ecf20Sopenharmony_ci  For Tegra234 must contain "nvidia,tegra234-efuse".
118c2ecf20Sopenharmony_ci  Details:
128c2ecf20Sopenharmony_ci  nvidia,tegra20-efuse: Tegra20 requires using APB DMA to read the fuse data
138c2ecf20Sopenharmony_ci	due to a hardware bug. Tegra20 also lacks certain information which is
148c2ecf20Sopenharmony_ci	available in later generations such as fab code, lot code, wafer id,..
158c2ecf20Sopenharmony_ci  nvidia,tegra30-efuse, nvidia,tegra114-efuse and nvidia,tegra124-efuse:
168c2ecf20Sopenharmony_ci	The differences between these SoCs are the size of the efuse array,
178c2ecf20Sopenharmony_ci	the location of the spare (OEM programmable) bits and the location of
188c2ecf20Sopenharmony_ci	the speedo data.
198c2ecf20Sopenharmony_ci- reg: Should contain 1 entry: the entry gives the physical address and length
208c2ecf20Sopenharmony_ci       of the fuse registers.
218c2ecf20Sopenharmony_ci- clocks: Must contain an entry for each entry in clock-names.
228c2ecf20Sopenharmony_ci  See ../clocks/clock-bindings.txt for details.
238c2ecf20Sopenharmony_ci- clock-names: Must include the following entries:
248c2ecf20Sopenharmony_ci  - fuse
258c2ecf20Sopenharmony_ci- resets: Must contain an entry for each entry in reset-names.
268c2ecf20Sopenharmony_ci  See ../reset/reset.txt for details.
278c2ecf20Sopenharmony_ci- reset-names: Must include the following entries:
288c2ecf20Sopenharmony_ci - fuse
298c2ecf20Sopenharmony_ci
308c2ecf20Sopenharmony_ciExample:
318c2ecf20Sopenharmony_ci
328c2ecf20Sopenharmony_ci	fuse@7000f800 {
338c2ecf20Sopenharmony_ci		compatible = "nvidia,tegra20-efuse";
348c2ecf20Sopenharmony_ci		reg = <0x7000f800 0x400>,
358c2ecf20Sopenharmony_ci		      <0x70000000 0x400>;
368c2ecf20Sopenharmony_ci		clocks = <&tegra_car TEGRA20_CLK_FUSE>;
378c2ecf20Sopenharmony_ci		clock-names = "fuse";
388c2ecf20Sopenharmony_ci		resets = <&tegra_car 39>;
398c2ecf20Sopenharmony_ci		reset-names = "fuse";
408c2ecf20Sopenharmony_ci	};
418c2ecf20Sopenharmony_ci
428c2ecf20Sopenharmony_ci
43