Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: net: add i.MX95 ENETC support

The ENETC of i.MX95 has been upgraded to revision 4.1, and the vendor
ID and device ID have also changed, so add the new compatible strings
for i.MX95 ENETC. In addition, i.MX95 supports configuration of RGMII
or RMII reference clock.

Signed-off-by: Wei Fang <wei.fang@nxp.com>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Wei Fang and committed by
David S. Miller
db2fb74c da98dbbc

+25 -3
+25 -3
Documentation/devicetree/bindings/net/fsl,enetc.yaml
··· 20 20 21 21 properties: 22 22 compatible: 23 - items: 23 + oneOf: 24 + - items: 25 + - enum: 26 + - pci1957,e100 27 + - const: fsl,enetc 24 28 - enum: 25 - - pci1957,e100 26 - - const: fsl,enetc 29 + - pci1131,e101 27 30 28 31 reg: 29 32 maxItems: 1 33 + 34 + clocks: 35 + items: 36 + - description: MAC transmit/receive reference clock 37 + 38 + clock-names: 39 + items: 40 + - const: ref 30 41 31 42 mdio: 32 43 $ref: mdio.yaml ··· 51 40 allOf: 52 41 - $ref: /schemas/pci/pci-device.yaml 53 42 - $ref: ethernet-controller.yaml 43 + - if: 44 + not: 45 + properties: 46 + compatible: 47 + contains: 48 + enum: 49 + - pci1131,e101 50 + then: 51 + properties: 52 + clocks: false 53 + clock-names: false 54 54 55 55 unevaluatedProperties: false 56 56