blob: 18a61a243673887d409491f9b10abe44c2c29808 [file] [log] [blame]
Nicolas Reinecke2bffa8a2015-10-01 15:34:37 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
5 * Copyright (C) 2014 Vladimir Serbinenko
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17/* Vendor Name : Conexant
18 * Vendor ID : 0x14f1506e
19 * Subsystem ID : 0x17aa21d2
20 * Revision ID : 0x100002
21 */
22
23
24#include <device/azalia_device.h>
25
26const u32 cim_verb_data[] = {
27 /* coreboot specific header */
28 0x14f1506e, // Codec Vendor / Device ID: Conexant CX20590 - Schematic show CX20672
29 0x17aa21ce, // Subsystem ID
30 0x0000000d, // Number of 4 dword sets
31
32/* Bits 31:28 - Codec Address */
33/* Bits 27:20 - NID */
34/* Bits 19:8 - Verb ID */
35/* Bits 7:0 - Payload */
36
37/* NID 0x01 - NodeInfo */
38 AZALIA_SUBVENDOR(0x0, 0x17AA21D2),
39
40 AZALIA_PIN_CFG(0x0, 0x12, 0x90a60140),
41 AZALIA_PIN_CFG(0x0, 0x14, 0x90170110),
42 AZALIA_PIN_CFG(0x0, 0x15, 0x03211020),
43 AZALIA_PIN_CFG(0x0, 0x17, 0x411111f0),
44 AZALIA_PIN_CFG(0x0, 0x18, 0x03a11830),
45 AZALIA_PIN_CFG(0x0, 0x19, 0x411111f0),
46 AZALIA_PIN_CFG(0x0, 0x1a, 0x411111f0),
47 AZALIA_PIN_CFG(0x0, 0x1b, 0x411111f0),
48 AZALIA_PIN_CFG(0x0, 0x1d, 0x40138205),
49 AZALIA_PIN_CFG(0x0, 0x1e, 0x411111f0),
50
51 /* Misc entries */
52 0x00B707C0, /* Enable PortB as Output with HP amp */
53 0x00D70740, /* Enable PortD as Output */
54 0x0017A200, /* Disable ClkEn of PortSenseTst */
55 0x0017C621, /* Slave Port - Port A used as microphone input for
56 combo Jack
57 Master Port - Port B used for Jack Presence Detect
58 Enable Combo Jack Detection */
59 0x0017A208, /* Enable ClkEn of PortSenseTst */
60 0x00170500, /* Set power state to D0 */
61 0x00170500, /* Padding */
62 0x00170500, /* Padding */
63};
64
65const u32 pc_beep_verbs[] = {
66 0x02177a00, /* Digital PCBEEP Gain: 0h=-9db, 1h=-6db ... 4h=+3db, 5h=+6db */
67};
68
69AZALIA_ARRAY_SIZES;