client-devices.txt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Each HSI port is supposed to have one child node, which
  2. symbols the remote device connected to the HSI port. The
  3. following properties are standardized for HSI clients:
  4. Required HSI configuration properties:
  5. - hsi-channel-ids: A list of channel ids
  6. - hsi-rx-mode: Receiver Bit transmission mode ("stream" or "frame")
  7. - hsi-tx-mode: Transmitter Bit transmission mode ("stream" or "frame")
  8. - hsi-mode: May be used instead hsi-rx-mode and hsi-tx-mode if
  9. the transmission mode is the same for receiver and
  10. transmitter
  11. - hsi-speed-kbps: Max bit transmission speed in kbit/s
  12. - hsi-flow: RX flow type ("synchronized" or "pipeline")
  13. - hsi-arb-mode: Arbitration mode for TX frame ("round-robin", "priority")
  14. Optional HSI configuration properties:
  15. - hsi-channel-names: A list with one name per channel specified in the
  16. hsi-channel-ids property
  17. Device Tree node example for an HSI client:
  18. hsi-controller {
  19. hsi-port {
  20. modem: hsi-client {
  21. compatible = "nokia,n900-modem";
  22. hsi-channel-ids = <0>, <1>, <2>, <3>;
  23. hsi-channel-names = "mcsaab-control",
  24. "speech-control",
  25. "speech-data",
  26. "mcsaab-data";
  27. hsi-speed-kbps = <55000>;
  28. hsi-mode = "frame";
  29. hsi-flow = "synchronized";
  30. hsi-arb-mode = "round-robin";
  31. /* more client specific properties */
  32. };
  33. };
  34. };