Path: blob/master/Documentation/devicetree/bindings/hsi/client-devices.txt
26308 views
Each HSI port is supposed to have one child node, which1symbols the remote device connected to the HSI port. The2following properties are standardized for HSI clients:34Required HSI configuration properties:56- hsi-channel-ids: A list of channel ids78- hsi-rx-mode: Receiver Bit transmission mode ("stream" or "frame")9- hsi-tx-mode: Transmitter Bit transmission mode ("stream" or "frame")10- hsi-mode: May be used instead hsi-rx-mode and hsi-tx-mode if11the transmission mode is the same for receiver and12transmitter13- hsi-speed-kbps: Max bit transmission speed in kbit/s14- hsi-flow: RX flow type ("synchronized" or "pipeline")15- hsi-arb-mode: Arbitration mode for TX frame ("round-robin", "priority")1617Optional HSI configuration properties:1819- hsi-channel-names: A list with one name per channel specified in the20hsi-channel-ids property212223Device Tree node example for an HSI client:2425hsi-controller {26hsi-port {27modem: hsi-client {28compatible = "nokia,n900-modem";2930hsi-channel-ids = <0>, <1>, <2>, <3>;31hsi-channel-names = "mcsaab-control",32"speech-control",33"speech-data",34"mcsaab-data";35hsi-speed-kbps = <55000>;36hsi-mode = "frame";37hsi-flow = "synchronized";38hsi-arb-mode = "round-robin";3940/* more client specific properties */41};42};43};444546