blob: c4e77ea4600b27c594e7af892608719d079ff49a [file] [log] [blame]
Angel Pons89ab2502020-04-03 01:22:28 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Nicolas Reinecke572795b2014-12-29 19:57:29 +01002
Nicolas Reinecke572795b2014-12-29 19:57:29 +01003/* Bits 31:28 - Codec Address */
4/* Bits 27:20 - NID */
5/* Bits 19:8 - Verb ID */
6/* Bits 7:0 - Payload */
7
Angel Pons30129482019-12-06 00:31:22 +01008#include <device/azalia_device.h>
Nicolas Reinecke572795b2014-12-29 19:57:29 +01009
Angel Pons30129482019-12-06 00:31:22 +010010const u32 cim_verb_data[] = {
11 0x14f1506e, /* Codec VID / DID: Conexant CX20590 - schematic shows CX20672 */
12 0x17aa21d2, /* Subsystem ID */
13 13, /* Number of 4 dword sets */
Angel Ponsec211702019-12-19 19:37:21 +010014 AZALIA_SUBVENDOR(0, 0x17aa21d2),
15 AZALIA_PIN_CFG(0, 0x19, 0x04211040),
16 AZALIA_PIN_CFG(0, 0x1a, 0x61a19050),
17 AZALIA_PIN_CFG(0, 0x1b, 0x04a11060),
18 AZALIA_PIN_CFG(0, 0x1c, 0x6121401f),
19 AZALIA_PIN_CFG(0, 0x1d, 0x40f001f0),
20 AZALIA_PIN_CFG(0, 0x1e, 0x40f001f0),
21 AZALIA_PIN_CFG(0, 0x1f, 0x90170110),
22 AZALIA_PIN_CFG(0, 0x20, 0x40f001f0),
23 AZALIA_PIN_CFG(0, 0x22, 0x40f001f0),
24 AZALIA_PIN_CFG(0, 0x23, 0x90a60170),
Nicolas Reinecke572795b2014-12-29 19:57:29 +010025
26 /* Misc entries */
Angel Pons30129482019-12-06 00:31:22 +010027 0x00b707C0, /* Enable PortB as Output with HP amp */
28 0x00d70740, /* Enable PortD as Output */
29 0x0017a200, /* Disable ClkEn of PortSenseTst */
30 0x0017c621, /* Slave Port - Port A used as microphone input for
Nicolas Reinecke572795b2014-12-29 19:57:29 +010031 combo Jack
32 Master Port - Port B used for Jack Presence Detect
33 Enable Combo Jack Detection */
Angel Pons30129482019-12-06 00:31:22 +010034 0x0017a208, /* Enable ClkEn of PortSenseTst */
Nicolas Reinecke572795b2014-12-29 19:57:29 +010035 0x00170500, /* Set power state to D0 */
36 0x00170500, /* Padding */
37 0x00170500, /* Padding */
38};
39
40const u32 pc_beep_verbs[] = {
41 0x02177a00, /* Digital PCBEEP Gain: 0h=-9db, 1h=-6db ... 4h=+3db, 5h=+6db */
42};
43
44AZALIA_ARRAY_SIZES;