Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
Each HSI port is supposed to have one child node, which
|
|
symbols the remote device connected to the HSI port. The
|
|
following properties are standardized for HSI clients:
|
|
|
|
Required HSI configuration properties:
|
|
|
|
- hsi-channel-ids: A list of channel ids
|
|
|
|
- hsi-rx-mode: Receiver Bit transmission mode ("stream" or "frame")
|
|
- hsi-tx-mode: Transmitter Bit transmission mode ("stream" or "frame")
|
|
- hsi-mode: May be used instead hsi-rx-mode and hsi-tx-mode if
|
|
the transmission mode is the same for receiver and
|
|
transmitter
|
|
- hsi-speed-kbps: Max bit transmission speed in kbit/s
|
|
- hsi-flow: RX flow type ("synchronized" or "pipeline")
|
|
- hsi-arb-mode: Arbitration mode for TX frame ("round-robin", "priority")
|
|
|
|
Optional HSI configuration properties:
|
|
|
|
- hsi-channel-names: A list with one name per channel specified in the
|
|
hsi-channel-ids property
|
|
|
|
|
|
Device Tree node example for an HSI client:
|
|
|
|
hsi-controller {
|
|
hsi-port {
|
|
modem: hsi-client {
|
|
compatible = "nokia,n900-modem";
|
|
|
|
hsi-channel-ids = <0>, <1>, <2>, <3>;
|
|
hsi-channel-names = "mcsaab-control",
|
|
"speech-control",
|
|
"speech-data",
|
|
"mcsaab-data";
|
|
hsi-speed-kbps = <55000>;
|
|
hsi-mode = "frame";
|
|
hsi-flow = "synchronized";
|
|
hsi-arb-mode = "round-robin";
|
|
|
|
/* more client specific properties */
|
|
};
|
|
};
|
|
};
|