nvidia,tegra186-bpmp-i2c.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. NVIDIA Tegra186 BPMP I2C controller
  2. In Tegra186, the BPMP (Boot and Power Management Processor) owns certain HW
  3. devices, such as the I2C controller for the power management I2C bus. Software
  4. running on other CPUs must perform IPC to the BPMP in order to execute
  5. transactions on that I2C bus. This binding describes an I2C bus that is
  6. accessed in such a fashion.
  7. The BPMP I2C node must be located directly inside the main BPMP node. See
  8. ../firmware/nvidia,tegra186-bpmp.txt for details of the BPMP binding.
  9. This node represents an I2C controller. See ../i2c/i2c.txt for details of the
  10. core I2C binding.
  11. Required properties:
  12. - compatible:
  13. Array of strings.
  14. One of:
  15. - "nvidia,tegra186-bpmp-i2c".
  16. - #address-cells: Address cells for I2C device address.
  17. Single-cell integer.
  18. Must be <1>.
  19. - #size-cells:
  20. Single-cell integer.
  21. Must be <0>.
  22. - nvidia,bpmp-bus-id:
  23. Single-cell integer.
  24. Indicates the I2C bus number this DT node represent, as defined by the
  25. BPMP firmware.
  26. Example:
  27. bpmp {
  28. ...
  29. i2c {
  30. compatible = "nvidia,tegra186-bpmp-i2c";
  31. #address-cells = <1>;
  32. #size-cells = <0>;
  33. nvidia,bpmp-bus-id = <5>;
  34. };
  35. };