-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dt-bindings-net-meson-dwmac-convert-to-yaml'
Neil Armstrong says: ==================== dt-bindings: net: meson-dwmac: convert to yaml This patchsets converts the Amlogic Meson DWMAC glue bindings over to YAML schemas using the already converted dwmac bindings. The first patch is needed because the Amlogic glue needs a supplementary reg cell to access the DWMAC glue registers. Changes since v3: - Specified net-next target tree Changes since v2: - Added review tags - Updated allwinner,sun7i-a20-gmac.yaml reg maxItems ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Showing
4 changed files
with
123 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,9 @@ properties: | |
compatible: | ||
const: allwinner,sun7i-a20-gmac | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
|
113 changes: 113 additions & 0 deletions
113
Documentation/devicetree/bindings/net/amlogic,meson-dwmac.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) | ||
# Copyright 2019 BayLibre, SAS | ||
%YAML 1.2 | ||
--- | ||
$id: "http://devicetree.org/schemas/net/amlogic,meson-dwmac.yaml#" | ||
$schema: "http://devicetree.org/meta-schemas/core.yaml#" | ||
|
||
title: Amlogic Meson DWMAC Ethernet controller | ||
|
||
maintainers: | ||
- Neil Armstrong <narmstrong@baylibre.com> | ||
- Martin Blumenstingl <martin.blumenstingl@googlemail.com> | ||
|
||
# We need a select here so we don't match all nodes with 'snps,dwmac' | ||
select: | ||
properties: | ||
compatible: | ||
contains: | ||
enum: | ||
- amlogic,meson6-dwmac | ||
- amlogic,meson8b-dwmac | ||
- amlogic,meson8m2-dwmac | ||
- amlogic,meson-gxbb-dwmac | ||
- amlogic,meson-axg-dwmac | ||
required: | ||
- compatible | ||
|
||
allOf: | ||
- $ref: "snps,dwmac.yaml#" | ||
- if: | ||
properties: | ||
compatible: | ||
contains: | ||
enum: | ||
- amlogic,meson8b-dwmac | ||
- amlogic,meson8m2-dwmac | ||
- amlogic,meson-gxbb-dwmac | ||
- amlogic,meson-axg-dwmac | ||
|
||
then: | ||
properties: | ||
clocks: | ||
items: | ||
- description: GMAC main clock | ||
- description: First parent clock of the internal mux | ||
- description: Second parent clock of the internal mux | ||
|
||
clock-names: | ||
minItems: 3 | ||
maxItems: 3 | ||
items: | ||
- const: stmmaceth | ||
- const: clkin0 | ||
- const: clkin1 | ||
|
||
amlogic,tx-delay-ns: | ||
$ref: /schemas/types.yaml#definitions/uint32 | ||
description: | ||
The internal RGMII TX clock delay (provided by this driver) in | ||
nanoseconds. Allowed values are 0ns, 2ns, 4ns, 6ns. | ||
When phy-mode is set to "rgmii" then the TX delay should be | ||
explicitly configured. When not configured a fallback of 2ns is | ||
used. When the phy-mode is set to either "rgmii-id" or "rgmii-txid" | ||
the TX clock delay is already provided by the PHY. In that case | ||
this property should be set to 0ns (which disables the TX clock | ||
delay in the MAC to prevent the clock from going off because both | ||
PHY and MAC are adding a delay). | ||
Any configuration is ignored when the phy-mode is set to "rmii". | ||
|
||
properties: | ||
compatible: | ||
additionalItems: true | ||
maxItems: 3 | ||
items: | ||
- enum: | ||
- amlogic,meson6-dwmac | ||
- amlogic,meson8b-dwmac | ||
- amlogic,meson8m2-dwmac | ||
- amlogic,meson-gxbb-dwmac | ||
- amlogic,meson-axg-dwmac | ||
contains: | ||
enum: | ||
- snps,dwmac-3.70a | ||
- snps,dwmac | ||
|
||
reg: | ||
items: | ||
- description: | ||
The first register range should be the one of the DWMAC controller | ||
- description: | ||
The second range is is for the Amlogic specific configuration | ||
(for example the PRG_ETHERNET register range on Meson8b and newer) | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
- interrupt-names | ||
- clocks | ||
- clock-names | ||
- phy-mode | ||
|
||
examples: | ||
- | | ||
ethmac: ethernet@c9410000 { | ||
compatible = "amlogic,meson-gxbb-dwmac", "snps,dwmac"; | ||
reg = <0xc9410000 0x10000>, <0xc8834540 0x8>; | ||
interrupts = <8>; | ||
interrupt-names = "macirq"; | ||
clocks = <&clk_eth>, <&clkc_fclk_div2>, <&clk_mpll2>; | ||
clock-names = "stmmaceth", "clkin0", "clkin1"; | ||
phy-mode = "rgmii"; | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters