summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common/acpi/wifi.asl
blob: 31bf994402e0526fee1961f931375cd2d09c2272 (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)
	{
		Store(\CID1,Index (DeRefOf (Index (WRDX, 1)), 1)) // Country identifier

		Return(WRDX)
	}

}