summaryrefslogtreecommitdiffstats
path: root/src/mainboard/getac/p470/hda_verb.c
blob: 9826f05c6d5b4778efc5d8223e2e85caee9e72ad (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
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <device/azalia_device.h>

const u32 cim_verb_data[] = {
	/* coreboot specific header */
	0x10ec0262,	// Codec Vendor / Device ID: Realtek ALC262
	0x10714700,	// Subsystem ID
	0x0000000d,	// Number of jacks

	/* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x10ec0000 */
	AZALIA_SUBVENDOR(0, 0x10EC0000),

	/* Pin Widget Verb Table */

	/* Pin Complex (NID 0x12), DMIC */
	AZALIA_PIN_CFG(0, 0x12, 0x411111F0),

	/* Pin Complex (NID 0x14), LINE_OUT (port D) */
	AZALIA_PIN_CFG(0, 0x14, 0x99130110),

	/* Pin Complex (NID 0x15), HP_OUT (port A) */
	AZALIA_PIN_CFG(0, 0x15, 0x01214020),

	/* Pin Complex (NID 0x16), MONO-OUT */
	AZALIA_PIN_CFG(0, 0x16, 0x411111F0),

	/* Pin Complex (NID 0x18), MIC1 (port B) */
	AZALIA_PIN_CFG(0, 0x18, 0x01A19830),

	/* Pin Complex (NID 0x19), MIC2 (port F) */
	AZALIA_PIN_CFG(0, 0x19, 0x99A30931),

	/* Pin Complex (NID 0x1A), LINE1 (port C) */
	AZALIA_PIN_CFG(0, 0x1A, 0x02A1983F),

	/* Pin Complex (NID 0x1B), LINE2 (port E) */
	AZALIA_PIN_CFG(0, 0x1B, 0x0221401F),

	/* Pin Complex (NID 0x1C), CD_IN */
	AZALIA_PIN_CFG(0, 0x1C, 0x411111F0),

	/* Pin Complex (NID 0x1D), PCBEEP */
	AZALIA_PIN_CFG(0, 0x1D, 0x411111F0),

	/* Pin Complex (NID 0x1E), S/PDIF-OUT */
	AZALIA_PIN_CFG(0, 0x1E, 0x411111F0),

	/* Pin Complex (NID 0x1F), S/PDIF-IN */
	AZALIA_PIN_CFG(0, 0x1F, 0x411111F0),
};

const u32 pc_beep_verbs[0] = {};

AZALIA_ARRAY_SIZES;