blob: bffb9c07dfa33c411c892ac30dd732465b3a8d66 [file] [log] [blame]
Angel Pons89ab2502020-04-03 01:22:28 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Zaolina823f9b2014-05-06 21:31:45 +02002
Zaolina823f9b2014-05-06 21:31:45 +02003/* 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>
Zaolina823f9b2014-05-06 21:31:45 +02009
Angel Pons30129482019-12-06 00:31:22 +010010const u32 cim_verb_data[] = {
11 0x14f1506e, /* Codec VID / DID: Conexant CX20590 - Schematic shows CX20672 */
12 0x17aa21cf, /* Subsystem ID */
13 13, /* Number of 4 dword sets */
Angel Ponsec211702019-12-19 19:37:21 +010014 AZALIA_SUBVENDOR(0, 0x17aa21cf),
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),
Zaolina823f9b2014-05-06 21:31:45 +020025
Zaolina823f9b2014-05-06 21:31:45 +020026 /* 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
Zaolina823f9b2014-05-06 21:31:45 +020031 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 */
Zaolina823f9b2014-05-06 21:31:45 +020035 0x00170500, /* Set power state to D0 */
Nicolas Reineckedf5a91d2014-10-17 12:16:20 +020036 0x00170500, /* Padding */
37 0x00170500, /* Padding */
Zaolina823f9b2014-05-06 21:31:45 +020038};
39
Vladimir Serbinenko75c83872014-09-05 01:01:31 +020040const u32 pc_beep_verbs[] = {
Zaolina823f9b2014-05-06 21:31:45 +020041 0x02177a00, /* Digital PCBEEP Gain: 0h=-9db, 1h=-6db ... 4h=+3db, 5h=+6db */
42};
43
Vladimir Serbinenko75c83872014-09-05 01:01:31 +020044AZALIA_ARRAY_SIZES;