aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/common/acpi/wifi.asl
blob: 23923a5c187aa473d1f75cffad97b1986f35efcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* SPDX-License-Identifier: GPL-2.0-only */

Device (WIFI)
{
	Name (_ADR, Zero)
	OperationRegion(WIXX, PCI_Config, 0x00, 0x10)
	Name (WRDX, Package()
	{
		// Revision
		0,
		Package()
		{
			// DomainType, 0x7:WiFi
			0x00000007,
			// Default Regulatory Domain Country identifier
			0x4150,
		}
	})
	Method(WRDD,0,Serialized)
	{
		DeRefOf (WRDX[1])[1] = \CID1 // Country identifier

		Return(WRDX)
	}

}