Path: blob/master/Documentation/devicetree/bindings/hsi/nokia-modem.txt
26308 views
Nokia modem client bindings12The Nokia modem HSI client follows the common HSI client binding3and inherits all required properties. The following additional4properties are needed by the Nokia modem HSI client:56Required properties:7- compatible: Should be one of8"nokia,n900-modem"9"nokia,n950-modem"10"nokia,n9-modem"11- hsi-channel-names: Should contain the following strings12"mcsaab-control"13"speech-control"14"speech-data"15"mcsaab-data"16- gpios: Should provide a GPIO handler for each GPIO listed in17gpio-names18- gpio-names: Should contain the following strings19"cmt_apeslpx" (for n900, n950, n9)20"cmt_rst_rq" (for n900, n950, n9)21"cmt_en" (for n900, n950, n9)22"cmt_rst" (for n900)23"cmt_bsi" (for n900)24- interrupts: Should be IRQ handle for modem's reset indication2526Example:2728&ssi_port {29modem: hsi-client {30compatible = "nokia,n900-modem";3132pinctrl-names = "default";33pinctrl-0 = <&modem_pins>;3435hsi-channel-ids = <0>, <1>, <2>, <3>;36hsi-channel-names = "mcsaab-control",37"speech-control",38"speech-data",39"mcsaab-data";40hsi-speed-kbps = <55000>;41hsi-mode = "frame";42hsi-flow = "synchronized";43hsi-arb-mode = "round-robin";4445interrupts-extended = <&gpio3 8 IRQ_TYPE_EDGE_FALLING>; /* 72 */4647gpios = <&gpio3 6 GPIO_ACTIVE_HIGH>, /* 70 */48<&gpio3 9 GPIO_ACTIVE_HIGH>, /* 73 */49<&gpio3 10 GPIO_ACTIVE_HIGH>, /* 74 */50<&gpio3 11 GPIO_ACTIVE_HIGH>, /* 75 */51<&gpio5 29 GPIO_ACTIVE_HIGH>; /* 157 */52gpio-names = "cmt_apeslpx",53"cmt_rst_rq",54"cmt_en",55"cmt_rst",56"cmt_bsi";57};58};596061