can-transceiver.txt 634 B

123456789101112131415161718192021222324
  1. Generic CAN transceiver Device Tree binding
  2. ------------------------------
  3. CAN transceiver typically limits the max speed in standard CAN and CAN FD
  4. modes. Typically these limitations are static and the transceivers themselves
  5. provide no way to detect this limitation at runtime. For this situation,
  6. the "can-transceiver" node can be used.
  7. Required Properties:
  8. max-bitrate: a positive non 0 value that determines the max
  9. speed that CAN/CAN-FD can run. Any other value
  10. will be ignored.
  11. Examples:
  12. Based on Texas Instrument's TCAN1042HGV CAN Transceiver
  13. m_can0 {
  14. ....
  15. can-transceiver {
  16. max-bitrate = <5000000>;
  17. };
  18. ...
  19. };