~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/net/lantiq,pef2256.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/net/lantiq,pef2256.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: Lantiq PEF2256
  8 
  9 maintainers:
 10   - Herve Codina <herve.codina@bootlin.com>
 11 
 12 description:
 13   The Lantiq PEF2256, also known as Infineon PEF2256 or FALC56, is a framer and
 14   line interface component designed to fulfill all required interfacing between
 15   an analog E1/T1/J1 line and the digital PCM system highway/H.100 bus.
 16 
 17 properties:
 18   compatible:
 19     items:
 20       - const: lantiq,pef2256
 21 
 22   reg:
 23     maxItems: 1
 24 
 25   clocks:
 26     items:
 27       - description: Master Clock
 28       - description: System Clock Receive
 29       - description: System Clock Transmit
 30 
 31   clock-names:
 32     items:
 33       - const: mclk
 34       - const: sclkr
 35       - const: sclkx
 36 
 37   interrupts:
 38     maxItems: 1
 39 
 40   reset-gpios:
 41     description:
 42       GPIO used to reset the device.
 43     maxItems: 1
 44 
 45   pinctrl:
 46     $ref: /schemas/pinctrl/pinctrl.yaml#
 47     additionalProperties: false
 48 
 49     patternProperties:
 50       '-pins$':
 51         type: object
 52         $ref: /schemas/pinctrl/pinmux-node.yaml#
 53         additionalProperties: false
 54 
 55         properties:
 56           pins:
 57             enum: [ RPA, RPB, RPC, RPD, XPA, XPB, XPC, XPD ]
 58 
 59           function:
 60             enum: [ SYPR, RFM, RFMB, RSIGM, RSIG, DLR, FREEZE, RFSP, LOS,
 61                     SYPX, XFMS, XSIG, TCLK, XMFB, XSIGM, DLX, XCLK, XLT,
 62                     GPI, GPOH, GPOL ]
 63 
 64         required:
 65           - pins
 66           - function
 67 
 68   lantiq,data-rate-bps:
 69     enum: [2048000, 4096000, 8192000, 16384000]
 70     default: 2048000
 71     description:
 72       Data rate (bit per seconds) on the system highway.
 73 
 74   lantiq,clock-falling-edge:
 75     $ref: /schemas/types.yaml#/definitions/flag
 76     description:
 77       Data is sent on falling edge of the clock (and received on the rising
 78       edge). If 'clock-falling-edge' is not present, data is sent on the
 79       rising edge (and received on the falling edge).
 80 
 81   lantiq,channel-phase:
 82     $ref: /schemas/types.yaml#/definitions/uint32
 83     enum: [0, 1, 2, 3, 4, 5, 6, 7]
 84     default: 0
 85     description: |
 86       The pef2256 delivers a full frame (32 8-bit time-slots in E1 and 24 8-bit
 87       time-slots 8 8-bit signaling in E1/J1) every 125us. This lead to a data
 88       rate of 2048000 bit/s. When lantiq,data-rate-bps is more than 2048000
 89       bit/s, the data (all 32 8-bit) present in the frame are interleave with
 90       unused time-slots. The lantiq,channel-phase property allows to set the
 91       correct alignment of the interleave mechanism.
 92       For instance, suppose lantiq,data-rate-bps = 8192000 (ie 4*2048000), and
 93       lantiq,channel-phase = 2, the interleave schema with unused time-slots
 94       (nu) and used time-slots (XX) for TSi is
 95         nu nu XX nu nu nu XX nu nu nu XX nu
 96         <-- TSi --> <- TSi+1 -> <- TSi+2 ->
 97       With lantiq,data-rate-bps = 8192000, and lantiq,channel-phase = 1, the
 98       interleave schema is
 99         nu XX nu nu nu XX nu nu nu XX nu nu
100         <-- TSi --> <- TSi+1 -> <- TSi+2 ->
101       With lantiq,data-rate-bps = 4096000 (ie 2*2048000), and
102       lantiq,channel-phase = 1, the interleave schema is
103         nu    XX    nu    XX    nu    XX
104         <-- TSi --> <- TSi+1 -> <- TSi+2 ->
105 
106 patternProperties:
107   '^codec(-([0-9]|[1-2][0-9]|3[0-1]))?$':
108     type: object
109     $ref: /schemas/sound/dai-common.yaml
110     unevaluatedProperties: false
111     description:
112       Codec provided by the pef2256. This codec allows to use some of the PCM
113       system highway time-slots as audio channels to transport audio data over
114       the E1/T1/J1 lines.
115       The time-slots used by the codec must be set and so, the properties
116       'dai-tdm-slot-num', 'dai-tdm-slot-width', 'dai-tdm-slot-tx-mask' and
117       'dai-tdm-slot-rx-mask' must be present in the sound card node for
118       sub-nodes that involve the codec. The codec uses 8-bit time-slots.
119       'dai-tdm-tdm-slot-with' must be set to 8.
120       The tx and rx masks define the pef2256 time-slots assigned to the codec.
121 
122     properties:
123       compatible:
124         const: lantiq,pef2256-codec
125 
126       '#sound-dai-cells':
127         const: 0
128 
129     required:
130       - compatible
131       - '#sound-dai-cells'
132 
133 required:
134   - compatible
135   - reg
136   - clocks
137   - clock-names
138   - interrupts
139 
140 additionalProperties: false
141 
142 examples:
143   - |
144     #include <dt-bindings/gpio/gpio.h>
145     #include <dt-bindings/interrupt-controller/irq.h>
146 
147     pef2256: framer@2000000 {
148       compatible = "lantiq,pef2256";
149       reg = <0x2000000 0x100>;
150       interrupts = <8 IRQ_TYPE_LEVEL_LOW>;
151       interrupt-parent = <&intc>;
152       clocks = <&clk_mclk>, <&clk_sclkr>, <&clk_sclkx>;
153       clock-names = "mclk", "sclkr", "sclkx";
154       reset-gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
155       lantiq,data-rate-bps = <4096000>;
156 
157       pinctrl {
158         pef2256_rpa_sypr: rpa-pins {
159           pins = "RPA";
160           function = "SYPR";
161         };
162         pef2256_xpa_sypx: xpa-pins {
163           pins = "XPA";
164           function = "SYPX";
165         };
166       };
167 
168       pef2256_codec0: codec-0 {
169         compatible = "lantiq,pef2256-codec";
170         #sound-dai-cells = <0>;
171         sound-name-prefix = "PEF2256_0";
172       };
173 
174       pef2256_codec1: codec-1 {
175         compatible = "lantiq,pef2256-codec";
176         #sound-dai-cells = <0>;
177         sound-name-prefix = "PEF2256_1";
178       };
179     };
180 
181     sound {
182       compatible = "simple-audio-card";
183       #address-cells = <1>;
184       #size-cells = <0>;
185       simple-audio-card,dai-link@0 { /* CPU DAI1 - pef2256 codec 1 */
186         reg = <0>;
187         cpu {
188           sound-dai = <&cpu_dai1>;
189         };
190         codec {
191           sound-dai = <&pef2256_codec0>;
192           dai-tdm-slot-num = <4>;
193           dai-tdm-slot-width = <8>;
194           /* TS 1, 2, 3, 4 */
195           dai-tdm-slot-tx-mask = <0 1 1 1 1>;
196           dai-tdm-slot-rx-mask = <0 1 1 1 1>;
197         };
198       };
199       simple-audio-card,dai-link@1 { /* CPU DAI2 - pef2256 codec 2 */
200         reg = <1>;
201         cpu {
202           sound-dai = <&cpu_dai2>;
203         };
204         codec {
205           sound-dai = <&pef2256_codec1>;
206           dai-tdm-slot-num = <4>;
207           dai-tdm-slot-width = <8>;
208           /* TS 5, 6, 7, 8 */
209           dai-tdm-slot-tx-mask = <0 0 0 0 0 1 1 1 1>;
210           dai-tdm-slot-rx-mask = <0 0 0 0 0 1 1 1 1>;
211         };
212       };
213     };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php