aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/reef/acpi/mainboard.asl
blob: 6e6d61faeb8248274d29607356a4382be4a3883a (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2016 Google Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include "acpi/superio.asl"
#include "../gpio.h"

Scope (\_SB)
{
	Device (LID0)
	{
		Name (_HID, EisaId ("PNP0C0D"))
		Method (_LID, 0)
		{
			Return (\_SB.PCI0.LPCB.EC0.LIDS)
		}
	}

	Device (PWRB)
	{
		Name (_HID, EisaId ("PNP0C0C"))
	}
}

Scope (\_SB.PCI0.LPCB)
{
	/* Chrome OS Embedded Controller */
	#include "ec.asl"
}

Scope (\_SB.PCI0.I2C0)
{
	/* Headphone Codec */
	Device (HPDA)
	{
		Name (_HID, "DLGS7219")
		Name (_DDN, "Dialog DA7219 Codec")
		Name (_UID, 1)
		Name (_S0W, 4)
		Name (_DSD, Package () {
			ToUUID ("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
			Package () {
			Package () { "dlg,micbias-lvl", 2600 },
			Package () { "dlg,mic-amp-in-sel", "diff" },
			},
			ToUUID ("dbb8e3e6-5886-4ba6-8795-1319f52a966b"),
			Package () {
				Package () {"da7219_aad", "DAAD"},
			}
		})

		Name (DAAD, Package () {
			ToUUID ("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
			Package () {
				Package () { "dlg,btn-cfg", 50 },
				Package () { "dlg,mic-det-thr", 500 },
				Package () { "dlg,jack-ins-deb", 20 },
				Package () { "dlg,jack-det-rate", "32ms_64ms" },
				Package () { "dlg,jack-rem-deb", 1 },
				Package () { "dlg,a-d-btn-thr", 0xa },
				Package () { "dlg,d-b-btn-thr", 0x16 },
				Package () { "dlg,b-c-btn-thr", 0x21 },
				Package () { "dlg,c-mic-btn-thr", 0x3E },
				Package () { "dlg,btn-avg", 4 },
				Package () { "dlg,adc-1bit-rpt", 1 },
			}
		})

		Name (_CRS, ResourceTemplate()
		{
			I2cSerialBus (
				BOARD_HP_MIC_CODEC_I2C_ADDR,
				ControllerInitiated,
				400000,
				AddressingMode7Bit,
				"\\_SB.PCI0.I2C0",
			)
			Interrupt (ResourceConsumer, Level, ActiveLow)
			{
				BOARD_HP_MIC_CODEC_IRQ
			}
		})

		Method (_STA)
		{
			Return (0xF)
		}
	}
}