coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
hda_verb.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <device/azalia_device.h>
4 
5 const u32 cim_verb_data[] = {
6  0x111d7605, /* Codec Vendor / Device ID: IDT */
7  0x103c17c2, /* Subsystem ID */
8 
9  11, /* Number of 4 dword sets */
10  /* NID 0x01: Subsystem ID. */
11  AZALIA_SUBVENDOR(0, 0x103c17c2),
12 
13  /* NID 0x0a. */
14  AZALIA_PIN_CFG(0, 0x0a, 0x21011030),
15 
16  /* NID 0x0b. */
17  AZALIA_PIN_CFG(0, 0x0b, 0x0421101f),
18 
19  /* NID 0x0c. */
20  AZALIA_PIN_CFG(0, 0x0c, 0x04a11020),
21 
22  /* NID 0x0d. */
23  AZALIA_PIN_CFG(0, 0x0d, 0x90170110),
24 
25  /* NID 0x0e. */
26  AZALIA_PIN_CFG(0, 0x0e, 0x40f000f0),
27 
28  /* NID 0x0f. */
29  AZALIA_PIN_CFG(0, 0x0f, 0x2181102e),
30 
31  /* NID 0x10. */
32  AZALIA_PIN_CFG(0, 0x10, 0x40f000f0),
33 
34  /* NID 0x11. */
35  AZALIA_PIN_CFG(0, 0x11, 0xd5a30140),
36 
37  /* NID 0x1f. */
38  AZALIA_PIN_CFG(0, 0x1f, 0x40f000f0),
39 
40  /* NID 0x20. */
41  AZALIA_PIN_CFG(0, 0x20, 0x40f000f0),
42  0x80862806, /* Codec Vendor / Device ID: Intel */
43  0x80860101, /* Subsystem ID */
44 
45  4, /* Number of 4 dword sets */
46  /* NID 0x01: Subsystem ID. */
47  AZALIA_SUBVENDOR(3, 0x80860101),
48 
49  /* NID 0x05. */
50  AZALIA_PIN_CFG(3, 0x05, 0x18560010),
51 
52  /* NID 0x06. */
53  AZALIA_PIN_CFG(3, 0x06, 0x18560020),
54 
55  /* NID 0x07. */
56  AZALIA_PIN_CFG(3, 0x07, 0x18560030),
57 };
58 
59 const u32 pc_beep_verbs[0] = {};
60 
#define AZALIA_SUBVENDOR(codec, val)
#define AZALIA_PIN_CFG(codec, pin, val)
const u32 cim_verb_data[]
Definition: hda_verb.c:5
const u32 pc_beep_verbs[]
Definition: hda_verb.c:37
AZALIA_ARRAY_SIZES
Definition: hda_verb.c:39
uint32_t u32
Definition: stdint.h:51