← Documents Documentation/firmware-guide/acpi/dsd/phy.rst GitHub 원문 ↗

Linux 6.18.37 · Firmware

MDIO bus and PHYs in ACPI

ACPI _DSD의 MDIO PHY 등록, phy-handle·phy-mode·managed·fixed-link ASL 예제 전문 번역입니다.

Source pathDocumentation/firmware-guide/acpi/dsd/phy.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약·해설

phy.rst:1-201

ACPI의 MDIO PHY는 `fwnode_mdiobus_register_phy()`가 `_ADR`로 probe·등록하고, MAC의 `phy-handle` object reference가 해당 PHY를 다시 찾는다. `phy-mode`는 연결 방식, `managed`는 선택 관리 방식이다.

예제는 MDI0 아래 `_ADR=0x1`의 PHY1과 `_ADR=0x2`의 PHY2를 만들고, PR17·PR18이 각각 `rgmii-id` mode로 이 PHY를 참조한다.

PHY가 없는 고정 연결은 Hierarchical Data Extension UUID로 `fixed-link → LNK0`를 만들고 `speed=1000`, `full-duplex=1`을 제공한다. 모든 property는 Device Properties UUID와 ethernet-controller binding의 계약을 따라야 한다.

ACPI MDIO 구성 점검
MDIO controller _HID·_CRS 확인PHY child의 _ADR 고유성 확인fwnode_mdiobus_register_phy() 등록MAC phy-handle object path 확인phy-mode·managed 값 binding 대조fixed-link이면 speed와 선택 property 검증

Controller·PHY 등록부터 MAC link mode까지의 검토 순서다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 .. SPDX-License-Identifier: GPL-2.0
2
3 =========================
4 MDIO bus and PHYs in ACPI
5 =========================
6
7 The PHYs on an MDIO bus [phy] are probed and registered using
8 fwnode_mdiobus_register_phy().
9
10 Later, for connecting these PHYs to their respective MACs, the PHYs registered
11 on the MDIO bus have to be referenced.
12
13 This document introduces two _DSD properties that are to be used
14 for connecting PHYs on the MDIO bus [dsd-properties-rules] to the MAC layer.
15
16 These properties are defined in accordance with the "Device
17 Properties UUID For _DSD" [dsd-guide] document and the
18 daffd814-6eba-4d8c-8a91-bc9bbf4aa301 UUID must be used in the Device
19 Data Descriptors containing them.
20
21 phy-handle
22 ----------
23 For each MAC node, a device property "phy-handle" is used to reference
24 the PHY that is registered on an MDIO bus. This is mandatory for
25 network interfaces that have PHYs connected to MAC via MDIO bus.
26
27 During the MDIO bus driver initialization, PHYs on this bus are probed
28 using the _ADR object as shown below and are registered on the MDIO bus.
29
30 .. code-block:: none
31
32 Scope(\_SB.MDI0)
33 {
34 Device(PHY1) {
35 Name (_ADR, 0x1)
36 } // end of PHY1
37
38 Device(PHY2) {
39 Name (_ADR, 0x2)
40 } // end of PHY2
41 }
42
43 Later, during the MAC driver initialization, the registered PHY devices
44 have to be retrieved from the MDIO bus. For this, the MAC driver needs
45 references to the previously registered PHYs which are provided
46 as device object references (e.g. \_SB.MDI0.PHY1).
47
48 phy-mode
49 --------
50 The "phy-mode" _DSD property is used to describe the connection to
51 the PHY. The valid values for "phy-mode" are defined in [ethernet-controller].
52
53 managed
54 -------
55 Optional property, which specifies the PHY management type.
56 The valid values for "managed" are defined in [ethernet-controller].
57
58 fixed-link
59 ----------
60 The "fixed-link" is described by a data-only subnode of the
61 MAC port, which is linked in the _DSD package via
62 hierarchical data extension (UUID dbb8e3e6-5886-4ba6-8795-1319f52a966b
63 in accordance with [dsd-guide] "_DSD Implementation Guide" document).
64 The subnode should comprise a required property ("speed") and
65 possibly the optional ones - complete list of parameters and
66 their values are specified in [ethernet-controller].
67
68 The following ASL example illustrates the usage of these properties.
69
70 DSDT entry for MDIO node
71 ------------------------
72
73 The MDIO bus has an SoC component (MDIO controller) and a platform
74 component (PHYs on the MDIO bus).
75
76 a) Silicon Component
77 This node describes the MDIO controller, MDI0
78 ---------------------------------------------
79
80 .. code-block:: none
81
82 Scope(_SB)
83 {
84 Device(MDI0) {
85 Name(_HID, "NXP0006")
86 Name(_CCA, 1)
87 Name(_UID, 0)
88 Name(_CRS, ResourceTemplate() {
89 Memory32Fixed(ReadWrite, MDI0_BASE, MDI_LEN)
90 Interrupt(ResourceConsumer, Level, ActiveHigh, Shared)
91 {
92 MDI0_IT
93 }
94 }) // end of _CRS for MDI0
95 } // end of MDI0
96 }
97
98 b) Platform Component
99 The PHY1 and PHY2 nodes represent the PHYs connected to MDIO bus MDI0
100 ---------------------------------------------------------------------
101
102 .. code-block:: none
103
104 Scope(\_SB.MDI0)
105 {
106 Device(PHY1) {
107 Name (_ADR, 0x1)
108 } // end of PHY1
109
110 Device(PHY2) {
111 Name (_ADR, 0x2)
112 } // end of PHY2
113 }
114
115 DSDT entries representing MAC nodes
116 -----------------------------------
117
118 Below are the MAC nodes where PHY nodes are referenced.
119 phy-mode and phy-handle are used as explained earlier.
120 ------------------------------------------------------
121
122 .. code-block:: none
123
124 Scope(\_SB.MCE0.PR17)
125 {
126 Name (_DSD, Package () {
127 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
128 Package () {
129 Package (2) {"phy-mode", "rgmii-id"},
130 Package (2) {"phy-handle", \_SB.MDI0.PHY1}
131 }
132 })
133 }
134
135 Scope(\_SB.MCE0.PR18)
136 {
137 Name (_DSD, Package () {
138 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
139 Package () {
140 Package (2) {"phy-mode", "rgmii-id"},
141 Package (2) {"phy-handle", \_SB.MDI0.PHY2}}
142 }
143 })
144 }
145
146 MAC node example where "managed" property is specified.
147 -------------------------------------------------------
148
149 .. code-block:: none
150
151 Scope(\_SB.PP21.ETH0)
152 {
153 Name (_DSD, Package () {
154 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
155 Package () {
156 Package () {"phy-mode", "sgmii"},
157 Package () {"managed", "in-band-status"}
158 }
159 })
160 }
161
162 MAC node example with a "fixed-link" subnode.
163 ---------------------------------------------
164
165 .. code-block:: none
166
167 Scope(\_SB.PP21.ETH1)
168 {
169 Name (_DSD, Package () {
170 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
171 Package () {
172 Package () {"phy-mode", "sgmii"},
173 },
174 ToUUID("dbb8e3e6-5886-4ba6-8795-1319f52a966b"),
175 Package () {
176 Package () {"fixed-link", "LNK0"}
177 }
178 })
179 Name (LNK0, Package(){ // Data-only subnode of port
180 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
181 Package () {
182 Package () {"speed", 1000},
183 Package () {"full-duplex", 1}
184 }
185 })
186 }
187
188 References
189 ==========
190
191 [phy] Documentation/networking/phy.rst
192
193 [dsd-properties-rules]
194 Documentation/firmware-guide/acpi/DSD-properties-rules.rst
195
196 [ethernet-controller]
197 Documentation/devicetree/bindings/net/ethernet-controller.yaml
198
199 [dsd-guide] DSD Guide.
200 https://github.com/UEFI/DSD-Guide/blob/main/dsd-guide.adoc, referenced
201 2021-11-30.
202

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

MDIO PHY 등록과 MAC 연결

1-20

MDIO bus [phy]에 있는 PHY는 `fwnode_mdiobus_register_phy()`를 사용해 probe하고 등록한다. 이후 각 PHY를 대응하는 MAC에 연결하려면 MDIO bus에 등록된 PHY를 firmware description에서 참조할 수 있어야 한다.

이 문서는 MDIO bus의 PHY [dsd-properties-rules]를 MAC layer에 연결할 때 사용하는 `_DSD` property들을 소개한다. 원문은 두 property를 소개한다고 표현하며 핵심 연결 property는 `phy-handle`과 `phy-mode`다. 뒤에서는 선택적인 `managed`와 data-only `fixed-link` 표현도 함께 설명한다.

이 property들은 `Device Properties UUID For _DSD` [dsd-guide]에 맞춰 정의된다. 이를 담는 Device Data Descriptor에는 Device Properties UUID `daffd814-6eba-4d8c-8a91-bc9bbf4aa301`을 사용해야 한다.

MDIO PHY 연결 수명주기
MDIO bus firmware node 탐색fwnode_mdiobus_register_phy()로 PHY probe·등록_ADR로 bus address 식별MAC _DSD의 phy-handle 해석등록된 PHY device 검색MAC과 PHY 연결

Bus 초기화에서 MAC driver가 PHY를 얻기까지의 전체 흐름이다.

PHY _DSD 기반
항목
Property 규격Device Properties UUID For _DSD
Device Properties UUIDdaffd814-6eba-4d8c-8a91-bc9bbf4aa301
등록 함수fwnode_mdiobus_register_phy()
용도MDIO bus PHY를 MAC layer에 연결

Property package가 따라야 하는 UUID와 문서 기준이다.

.. SPDX-License-Identifier: GPL-2.0

=========================
MDIO bus and PHYs in ACPI
=========================

The PHYs on an MDIO bus [phy] are probed and registered using
fwnode_mdiobus_register_phy().

Later, for connecting these PHYs to their respective MACs, the PHYs registered
on the MDIO bus have to be referenced.

This document introduces two _DSD properties that are to be used
for connecting PHYs on the MDIO bus [dsd-properties-rules] to the MAC layer.

These properties are defined in accordance with the "Device
Properties UUID For _DSD" [dsd-guide] document and the
daffd814-6eba-4d8c-8a91-bc9bbf4aa301 UUID must be used in the Device
Data Descriptors containing them.

phy-handle·phy-mode·managed·fixed-link

21-67

각 MAC node는 MDIO bus에 등록된 PHY를 참조하기 위해 `phy-handle` device property를 사용한다. MDIO bus를 통해 MAC에 PHY가 연결된 network interface에는 이 property가 필수다.

MDIO bus driver 초기화 중에는 PHY를 `_ADR` object로 probe해 bus에 등록한다. 예제의 `Scope(\_SB.MDI0)` 아래 `PHY1`은 `_ADR=0x1`, `PHY2`는 `_ADR=0x2`를 사용한다.

그 뒤 MAC driver 초기화 중에는 MDIO bus에서 이미 등록된 PHY device를 다시 가져와야 한다. MAC driver에 필요한 참조는 `\_SB.MDI0.PHY1` 같은 ACPI device object reference 형태로 제공한다.

phy-handle 해석
MDIO scope에서 PHY Device 탐색PHY1._ADR=0x1·PHY2._ADR=0x2로 probeMDIO bus에 PHY device 등록MAC의 phy-handle object reference 읽기동일 object에 등록된 PHY 검색

주소 기반 등록과 object reference 기반 검색을 이어 붙이는 절차다.

`phy-mode` `_DSD` property는 PHY와의 connection 방식을 기술한다. 유효한 `phy-mode` 값은 [ethernet-controller]에 정의되어 있다. `managed`는 PHY management type을 지정하는 선택 property이며, 그 유효한 값도 같은 binding에 정의된다.

`fixed-link`는 MAC port의 data-only subnode로 기술한다. 이 subnode는 DSD Guide에 따른 Hierarchical Data Extension UUID `dbb8e3e6-5886-4ba6-8795-1319f52a966b`으로 `_DSD` package에 연결한다.

`fixed-link` subnode에는 필수 property `speed`가 있어야 하며 선택 property도 포함할 수 있다. 가능한 parameter의 전체 목록과 값은 [ethernet-controller]에 정의되어 있으므로 ACPI 예제에 나온 property만이 전부라고 가정해서는 안 된다.

MAC·PHY 연결 property
Property필수성값·역할
phy-handleMDIO PHY 연결 interface에서 필수등록된 PHY의 ACPI device object reference
phy-mode연결 형식 기술ethernet-controller binding의 유효 mode
managed선택ethernet-controller binding의 management type
fixed-link고정 link에서 사용Hierarchical data extension의 data-only subnode
speedfixed-link에서 필수고정 link 속도

각 property의 필수 여부, 값 형식과 정의 위치를 구분한다.

fixed-link 구조
MAC port _DSDHierarchical Data Extension UUIDfixed-link → data-only subnodeSubnode의 Device Properties UUID필수 speed와 선택 property

MAC _DSD에서 data-only link node의 property로 내려가는 계층이다.

phy-handle
----------
For each MAC node, a device property "phy-handle" is used to reference
the PHY that is registered on an MDIO bus. This is mandatory for
network interfaces that have PHYs connected to MAC via MDIO bus.

During the MDIO bus driver initialization, PHYs on this bus are probed
using the _ADR object as shown below and are registered on the MDIO bus.

.. code-block:: none

      Scope(\_SB.MDI0)
      {
        Device(PHY1) {
          Name (_ADR, 0x1)
        } // end of PHY1

        Device(PHY2) {
          Name (_ADR, 0x2)
        } // end of PHY2
      }

Later, during the MAC driver initialization, the registered PHY devices
have to be retrieved from the MDIO bus. For this, the MAC driver needs
references to the previously registered PHYs which are provided
as device object references (e.g. \_SB.MDI0.PHY1).

phy-mode
--------
The "phy-mode" _DSD property is used to describe the connection to
the PHY. The valid values for "phy-mode" are defined in [ethernet-controller].

managed
-------
Optional property, which specifies the PHY management type.
The valid values for "managed" are defined in [ethernet-controller].

fixed-link
----------
The "fixed-link" is described by a data-only subnode of the
MAC port, which is linked in the _DSD package via
hierarchical data extension (UUID dbb8e3e6-5886-4ba6-8795-1319f52a966b
in accordance with [dsd-guide] "_DSD Implementation Guide" document).
The subnode should comprise a required property ("speed") and
possibly the optional ones - complete list of parameters and
their values are specified in [ethernet-controller].

MDIO controller와 PHY platform node

68-114

이어지는 ASL 예제는 위 property의 사용법을 보여준다. MDIO bus는 SoC component인 MDIO controller와 platform component인 bus 위 PHY들로 구성된다.

Silicon component node는 MDIO controller `MDI0`을 기술한다. `Scope(_SB)` 아래 `Device(MDI0)`은 `_HID="NXP0006"`, `_CCA=1`, `_UID=0`을 제공한다.

`MDI0._CRS` ResourceTemplate은 `Memory32Fixed(ReadWrite, MDI0_BASE, MDI_LEN)` memory resource와 `Interrupt(ResourceConsumer, Level, ActiveHigh, Shared)` interrupt resource를 정의하며 interrupt ID는 `MDI0_IT`다.

MDI0 controller object
Object·Resource
_HIDNXP0006
_CCA1
_UID0
MemoryMDI0_BASE, MDI_LEN, ReadWrite
InterruptMDI0_IT, Level, ActiveHigh, Shared

Silicon component의 식별자, coherency, UID와 resource를 정리한다.

Platform component는 `Scope(\_SB.MDI0)` 아래의 `PHY1`과 `PHY2` node다. 이들은 MDI0 bus에 연결된 물리 PHY를 나타내며 각각 `_ADR=0x1`, `_ADR=0x2`로 bus address를 선언한다.

MDIO PHY platform node
ACPI objectParent scope_ADR
PHY1\_SB.MDI00x1
PHY2\_SB.MDI00x2

동일 controller scope 안에서 PHY object와 MDIO address를 대응시킨다.

MDIO firmware topology
\_SBMDI0: NXP0006 controller_CRS: memory + MDI0_IT interrupt\_SB.MDI0.PHY1: _ADR 0x1\_SB.MDI0.PHY2: _ADR 0x2

Controller resource와 bus child PHY의 계층을 구조화했다.

The following ASL example illustrates the usage of these properties.

DSDT entry for MDIO node
------------------------

The MDIO bus has an SoC component (MDIO controller) and a platform
component (PHYs on the MDIO bus).

a) Silicon Component
This node describes the MDIO controller, MDI0
---------------------------------------------

.. code-block:: none

        Scope(_SB)
        {
          Device(MDI0) {
            Name(_HID, "NXP0006")
            Name(_CCA, 1)
            Name(_UID, 0)
            Name(_CRS, ResourceTemplate() {
              Memory32Fixed(ReadWrite, MDI0_BASE, MDI_LEN)
              Interrupt(ResourceConsumer, Level, ActiveHigh, Shared)
               {
                 MDI0_IT
               }
            }) // end of _CRS for MDI0
          } // end of MDI0
        }

b) Platform Component
The PHY1 and PHY2 nodes represent the PHYs connected to MDIO bus MDI0
---------------------------------------------------------------------

.. code-block:: none

        Scope(\_SB.MDI0)
        {
          Device(PHY1) {
            Name (_ADR, 0x1)
          } // end of PHY1

          Device(PHY2) {
            Name (_ADR, 0x2)
          } // end of PHY2
        }

MAC node의 PHY 참조

115-145

다음 DSDT entry들은 PHY node를 참조하는 MAC node다. 앞에서 설명한 `phy-mode`와 `phy-handle`을 Device Properties UUID package 안에 함께 둔다.

`Scope(\_SB.MCE0.PR17)`은 `phy-mode="rgmii-id"`와 `phy-handle=\_SB.MDI0.PHY1`을 제공한다. 따라서 PR17 MAC port는 RGMII internal delay mode로 MDIO address 1의 PHY1에 연결된다.

`Scope(\_SB.MCE0.PR18)`은 같은 `phy-mode="rgmii-id"`를 사용하지만 `phy-handle=\_SB.MDI0.PHY2`를 제공한다. 따라서 PR18은 address 2의 PHY2를 사용한다.

ASL 원문에는 PR18 package 주변의 닫는 중괄호 배치가 PR17과 다르게 보인다. 전문 번역에서는 의미를 설명하되 아래 영어 원문과 줄별 source block은 그대로 보존해 구현자가 원본을 직접 대조할 수 있게 한다.

MAC port와 PHY mapping
MAC scopephy-modephy-handlePHY _ADR
\_SB.MCE0.PR17rgmii-id\_SB.MDI0.PHY10x1
\_SB.MCE0.PR18rgmii-id\_SB.MDI0.PHY20x2

각 MAC scope의 mode, object reference와 최종 MDIO address를 대응시킨다.

PR17·PR18 연결
PR17 → phy-handle PHY1 → MDI0 address 0x1PR17 → phy-mode rgmii-idPR18 → phy-handle PHY2 → MDI0 address 0x2PR18 → phy-mode rgmii-id

MAC property에서 등록된 PHY와 address까지 이어지는 관계다.

DSDT entries representing MAC nodes
-----------------------------------

Below are the MAC nodes where PHY nodes are referenced.
phy-mode and phy-handle are used as explained earlier.
------------------------------------------------------

.. code-block:: none

        Scope(\_SB.MCE0.PR17)
        {
          Name (_DSD, Package () {
             ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
                 Package () {
                     Package (2) {"phy-mode", "rgmii-id"},
                     Package (2) {"phy-handle", \_SB.MDI0.PHY1}
              }
           })
        }

        Scope(\_SB.MCE0.PR18)
        {
          Name (_DSD, Package () {
            ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
                Package () {
                    Package (2) {"phy-mode", "rgmii-id"},
                    Package (2) {"phy-handle", \_SB.MDI0.PHY2}}
            }
          })
        }

Managed PHY와 fixed-link 예제

146-187

`managed` property를 지정한 MAC 예제는 `Scope(\_SB.PP21.ETH0)`이다. Device Properties UUID package에서 `phy-mode="sgmii"`와 `managed="in-band-status"`를 제공한다. 이 구성은 SGMII link 상태를 in-band signaling으로 관리함을 나타낸다.

`fixed-link` subnode 예제는 `Scope(\_SB.PP21.ETH1)`이다. 첫 Device Properties UUID package는 `phy-mode="sgmii"`를 제공하고, 이어지는 Hierarchical Data Extension UUID package는 `"fixed-link" → "LNK0"`을 연결한다.

`LNK0`는 port의 data-only subnode다. 자체 Device Properties UUID package에 필수 `speed=1000`과 선택 `full-duplex=1`을 제공하므로, 1000 단위 속도의 full-duplex 고정 link를 기술한다.

Managed와 fixed-link 비교
MACphy-mode관리 표현추가 값
\_SB.PP21.ETH0sgmiimanagedin-band-status
\_SB.PP21.ETH1sgmiifixed-link → LNK0speed=1000, full-duplex=1

두 MAC 예제가 link management를 표현하는 방식을 비교한다.

ETH1 fixed-link 계층
\_SB.PP21.ETH1Device Properties UUID: phy-mode=sgmiiHierarchical Data Extension UUIDfixed-link → LNK0LNK0 Device Properties UUIDspeed=1000 + full-duplex=1

MAC property package에서 LNK0 data-only subnode까지의 구조다.

LNK0 property
Property필수성
speed1000필수
full-duplex1선택

Data-only fixed-link subnode에 실제로 들어 있는 값이다.

MAC node example where "managed" property is specified.
-------------------------------------------------------

.. code-block:: none

        Scope(\_SB.PP21.ETH0)
        {
          Name (_DSD, Package () {
             ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
                 Package () {
                     Package () {"phy-mode", "sgmii"},
                     Package () {"managed", "in-band-status"}
                 }
           })
        }

MAC node example with a "fixed-link" subnode.
---------------------------------------------

.. code-block:: none

        Scope(\_SB.PP21.ETH1)
        {
          Name (_DSD, Package () {
            ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
                 Package () {
                     Package () {"phy-mode", "sgmii"},
                 },
            ToUUID("dbb8e3e6-5886-4ba6-8795-1319f52a966b"),
                 Package () {
                     Package () {"fixed-link", "LNK0"}
                 }
          })
          Name (LNK0, Package(){ // Data-only subnode of port
            ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
                 Package () {
                     Package () {"speed", 1000},
                     Package () {"full-duplex", 1}
                 }
          })
        }

참고 문서

188-201

[phy]는 `Documentation/networking/phy.rst`이며 Linux PHY subsystem의 동작을 설명한다. [dsd-properties-rules]는 `Documentation/firmware-guide/acpi/DSD-properties-rules.rst`로 `_DSD` property의 유효성 규칙을 제공한다.

[ethernet-controller]는 `Documentation/devicetree/bindings/net/ethernet-controller.yaml`이다. `phy-mode`, `managed`, `fixed-link`의 전체 parameter와 유효 값은 이 binding을 기준으로 확인한다.

[dsd-guide]는 `https://github.com/UEFI/DSD-Guide/blob/main/dsd-guide.adoc`의 DSD Guide이며 문서에 기록된 참조일은 2021-11-30이다.

MDIO·PHY 참고 자료
Label자료용도
phyDocumentation/networking/phy.rstLinux PHY subsystem
dsd-properties-rulesfirmware-guide/acpi/DSD-properties-rules.rst_DSD property 유효성
ethernet-controllerdevicetree/bindings/net/ethernet-controller.yamlEthernet PHY property 값
dsd-guideUEFI DSD GuideDevice·Hierarchical Data Extension UUID

원문의 reference label과 문서 위치를 보존했다.

References
==========

[phy] Documentation/networking/phy.rst

[dsd-properties-rules]
    Documentation/firmware-guide/acpi/DSD-properties-rules.rst

[ethernet-controller]
    Documentation/devicetree/bindings/net/ethernet-controller.yaml

[dsd-guide] DSD Guide.
    https://github.com/UEFI/DSD-Guide/blob/main/dsd-guide.adoc, referenced
    2021-11-30.