[coreboot-gerrit] Patch set updated for coreboot: google/cyan: Add Wifi regulatory method

Hannah Williams (hannah.williams@intel.com) gerrit at coreboot.org
Wed Jan 20 21:05:17 CET 2016


Hannah Williams (hannah.williams at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13055

-gerrit

commit 7150bc75cee8a0f5c8d33905e61f22457041da2a
Author: Hannah Williams <hannah.williams at intel.com>
Date:   Tue Jan 19 16:02:28 2016 -0800

    google/cyan: Add Wifi regulatory method
    
    WRDD method in wifi.asl returns the regulatory domain code. This value
    is read from VPD in wifi_regulatory_domain() and saved to global nvs if
    CONFIG_HAVE_REGULATORY_DOMAIN is enabled. It returns default code if
    CONFIG_HAVE_REGULATORY_DOMAIN is not enabled.
    
    Change-Id: I6e96bdf0fe93ae30a3afdcb63a0f89ce21023704
    Signed-off-by: Hannah Williams <hannah.williams at intel.com>
---
 src/mainboard/google/cyan/dsdt.asl | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/mainboard/google/cyan/dsdt.asl b/src/mainboard/google/cyan/dsdt.asl
index e9e1997..b3c970d 100755
--- a/src/mainboard/google/cyan/dsdt.asl
+++ b/src/mainboard/google/cyan/dsdt.asl
@@ -42,7 +42,17 @@ DefinitionBlock(
 		/* Dynamic Platform Thermal Framework */
 		#include "acpi/dptf.asl"
 	}
+	Scope (\_SB.PCI0)
+	{
+		Device (RP03)
+		{
+			Name (_ADR, 0x001C0002)  // _ADR: Address
+			OperationRegion(RPXX, PCI_Config, 0x00, 0x10)
 
+			/* Wifi Device */
+			#include <soc/intel/common/acpi/wifi.asl>
+		}
+	}
 	#include "acpi/chromeos.asl"
 	#include <vendorcode/google/chromeos/acpi/chromeos.asl>
 



More information about the coreboot-gerrit mailing list