nvidia,tegra114-mipi.txt 1002 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. NVIDIA Tegra MIPI pad calibration controller
  2. Required properties:
  3. - compatible: "nvidia,tegra<chip>-mipi"
  4. - reg: Physical base address and length of the controller's registers.
  5. - clocks: Must contain an entry for each entry in clock-names.
  6. See ../clocks/clock-bindings.txt for details.
  7. - clock-names: Must include the following entries:
  8. - mipi-cal
  9. - #nvidia,mipi-calibrate-cells: Should be 1. The cell is a bitmask of the pads
  10. that need to be calibrated for a given device.
  11. User nodes need to contain an nvidia,mipi-calibrate property that has a
  12. phandle to refer to the calibration controller node and a bitmask of the pads
  13. that need to be calibrated.
  14. Example:
  15. mipi: mipi@700e3000 {
  16. compatible = "nvidia,tegra114-mipi";
  17. reg = <0x700e3000 0x100>;
  18. clocks = <&tegra_car TEGRA114_CLK_MIPI_CAL>;
  19. clock-names = "mipi-cal";
  20. #nvidia,mipi-calibrate-cells = <1>;
  21. };
  22. ...
  23. host1x@50000000 {
  24. ...
  25. dsi@54300000 {
  26. ...
  27. nvidia,mipi-calibrate = <&mipi 0x060>;
  28. ...
  29. };
  30. ...
  31. };