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  /* coreboot specific header */
7  0x14f15051, // Conexant CX20561 (Hermosa)
8  0x17aa211c, // Subsystem ID
9  0x00000008, // Number of entries
10 
11  /* Pin Widget Verb Table */
12 
13  AZALIA_PIN_CFG(0, 0x16, 0x022140f0),
14  AZALIA_PIN_CFG(0, 0x17, 0x61a190f0),
15  AZALIA_PIN_CFG(0, 0x18, 0x02a190f0),
16  AZALIA_PIN_CFG(0, 0x19, 0x40f000f0),
17  AZALIA_PIN_CFG(0, 0x1a, 0x901701f0),
18  AZALIA_PIN_CFG(0, 0x1b, 0x40f001f0),
19  AZALIA_PIN_CFG(0, 0x1c, 0x40f001f0),
20  AZALIA_PIN_CFG(0, 0x1d, 0x90a601f0)
21 };
22 
23 const u32 pc_beep_verbs[] = {
24  0x00170500, /* power up codec */
25  0x01470500, /* power up speakers */
26  0x01470100, /* select lout1 (input 0x0) for speakers */
27  0x01470740, /* enable speakers output */
28  0x00b37517, /* unmute beep (mixer's input 0x5), set amp 0dB */
29  0x00c37100, /* unmute mixer in lout1 (lout1 input 0x1) */
30  0x00c3b015, /* set lout1 output volume -15dB */
31  0x0143b000, /* unmute speakers */
32 };
#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