1 OMAP SSI controller bindings 2 3 OMAP3's Synchronous Serial Interface (SSI) con 4 legacy variant of MIPI's High Speed Synchronou 5 while the controller found inside OMAP4 is sup 6 with the HSI standard. 7 8 Required properties: 9 - compatible: Should include "ti,oma 10 - reg-names: Contains the values "s 11 - reg: Contains a matching re 12 in reg-names. 13 - interrupt-names: Contains the value "gd 14 - interrupts: Contains matching inte 15 in interrupt-names. 16 - ranges: Represents the bus add 17 controller node and th 18 - clock-names: Must include the follo 19 "ssi_ssr_fck": The OMAP clock of that name 20 "ssi_sst_fck": The OMAP clock of that name 21 "ssi_ick": The OMAP clock of that name 22 - clocks: Contains a matching cl 23 clock-names. 24 - #address-cells: Should be set to <1> 25 - #size-cells: Should be set to <1> 26 27 Each port is represented as a sub-node of the 28 29 Required Port sub-node properties: 30 - compatible: Should be set to the f 31 ti,omap3-ssi-port (app 32 ti,omap4-hsi-port (app 33 - reg-names: Contains the values "t 34 - reg: Contains a matching re 35 in reg-names. 36 - interrupts: Should contain interru 37 0 and 1 (in this order 38 - ti,ssi-cawake-gpio: Defines which GPIO pin 39 events for the port. T 40 property. If it's miss 41 enabled. 42 43 Optional properties: 44 - ti,hwmods: Shall contain TI inter 45 by the SoC 46 47 Example for Nokia N900: 48 49 ssi-controller@48058000 { 50 compatible = "ti,omap3-ssi"; 51 52 /* needed until hwmod is updated to us 53 ti,hwmods = "ssi"; 54 55 reg = <0x48058000 0x1000>, 56 <0x48059000 0x1000>; 57 reg-names = "sys", 58 "gdd"; 59 60 interrupts = <55>; 61 interrupt-names = "gdd_mpu"; 62 63 clocks = <&ssi_ssr_fck>, 64 <&ssi_sst_fck>, 65 <&ssi_ick>; 66 clock-names = "ssi_ssr_fck", 67 "ssi_sst_fck", 68 "ssi_ick"; 69 70 #address-cells = <1>; 71 #size-cells = <1>; 72 ranges; 73 74 ssi-port@4805a000 { 75 compatible = "ti,omap3-ssi-por 76 77 reg = <0x4805a000 0x800>, 78 <0x4805a800 0x800>; 79 reg-names = "tx", 80 "rx"; 81 82 interrupt-parent = <&intc>; 83 interrupts = <67>, 84 <68>; 85 86 ti,ssi-cawake-gpio = <&gpio5 2 87 } 88 89 ssi-port@4805a000 { 90 compatible = "ti,omap3-ssi-por 91 92 reg = <0x4805b000 0x800>, 93 <0x4805b800 0x800>; 94 reg-names = "tx", 95 "rx"; 96 97 interrupt-parent = <&intc>; 98 interrupts = <69>, 99 <70>; 100 101 } 102 }
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.