ipmi.txt 686 B

12345678910111213141516171819202122232425
  1. IPMI device
  2. Required properties:
  3. - compatible: should be one of ipmi-kcs, ipmi-smic, or ipmi-bt
  4. - device_type: should be ipmi
  5. - reg: Address and length of the register set for the device
  6. Optional properties:
  7. - interrupts: The interrupt for the device. Without this the interface
  8. is polled.
  9. - reg-size - The size of the register. Defaults to 1
  10. - reg-spacing - The number of bytes between register starts. Defaults to 1
  11. - reg-shift - The amount to shift the registers to the right to get the data
  12. into bit zero.
  13. Example:
  14. smic@fff3a000 {
  15. compatible = "ipmi-smic";
  16. device_type = "ipmi";
  17. reg = <0xfff3a000 0x1000>;
  18. interrupts = <0 24 4>;
  19. reg-size = <4>;
  20. reg-spacing = <4>;
  21. };