drivers/wifi: Remove unnecessary data structure copy
[coreboot2.git] / src / vendorcode / google / chromeos / acpi / amac.asl
blobe6f10aef0be3c663ee2df75029e66a80841fc7f9
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 /*
4  * The Realtek r8152 driver in the Linux kernel supports a MAC address
5  * dock pass-through feature which can result in the dock ethernet port
6  * using the same MAC address that is assigned to the internal NIC.  This
7  * is done by calling an ACPI method at \_SB.AMAC() which returns a
8  * formatted string (as a buffer) containing the MAC address for the
9  * dock to use.
10  *
11  * The Linux kernel implementation can be found at
12  * drivers/net/usb/r8152.c:vendor_mac_passthru_addr_read()
13  *
14  * For ChromeOS, the policy which controls where the dock MAC address
15  * comes from is written into RW_VPD property "dock_passthrough":
16  *
17  *   "dock_mac" or empty: Use MAC address from RO_VPD value "dock_mac"
18  *   "ethernet_mac0": Use MAC address from RO_VPD value "ethernet_mac0"
19  *   "builtin": existing dock MAC address (return nothing)
20  */
22 Scope (\_SB)
24         Method (AMAC, 0, Serialized)
25         {
26                 /* Format expected by the Linux kernel r8152 driver */
27                 Name (MACA, "_AUXMAC_#XXXXXXXXXXXX#")
29                 /* Get "dock_passthrough" value from RW_VPD */
30                 Local0 = \VPD.VPDF ("RW", "dock_passthrough")
32                 Local1 = 0
33                 Switch (ToString (Local0))
34                 {
35                         Case ("ethernet_mac0") {
36                                 Local1 = \VPD.VPDF ("RO", "ethernet_mac0")
37                         }
38                         Case ("builtin") {
39                                 Return (0)
40                         }
41                         /* "dock_mac" or policy not found. */
42                         Default {
43                                 Local1 = \VPD.VPDF ("RO", "dock_mac")
44                         }
45                 }
46                 If (Local1 == 0) {
47                         Return (0)
48                 }
49                 Printf ("MAC address returned from VPD: %o", Local1)
51                 /* Verify MAC address format is AA:BB:CC:DD:EE:FF */
52                 For (Local3 = 2, Local3 < 17, Local3 += 3) {
53                         If (ToString (DerefOf (Local1[Local3])) != ":") {
54                                 Printf ("Invalid MAC address byte %o", Local3)
55                                 Return (0)
56                         }
57                 }
59                 /* Convert MAC address into format specified by MACA */
60                 Local2 = ToBuffer (MACA)
61                 Local4 = 0 /* First MAC address byte in input buffer */
62                 Local5 = 9 /* First MAC address byte in output buffer */
63                 For (Local3 = 0, Local3 < 6, Local3++) {
64                         Local2[Local5] = DerefOf (Local1[Local4])
65                         Local2[Local5 + 1] = DerefOf (Local1[Local4 + 1])
66                         Local5 += 2
67                         Local4 += 3 /* Skip ":" in address from VPD */
68                 }
70                 Printf ("AMAC = %o", ToString (Local2))
71                 Return (Local2)
72         }