blob: f26eeb42aacd4d6a3bc5ae321f42a3cd11a6e2ca [file] [log] [blame]
Angel Ponsa21dff62020-04-03 01:22:24 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Nico Huberefe1fed2013-04-29 18:00:57 +02002
Vladimir Serbinenko75c83872014-09-05 01:01:31 +02003#include <device/azalia_device.h>
4
5const u32 cim_verb_data[] = {
Nico Huberefe1fed2013-04-29 18:00:57 +02006 /* coreboot specific header */
Elyes HAOUASf10b5ff2016-10-06 19:49:55 +02007 0x11060397, /* Codec Vendor / Device ID: Via VT1708S */
8 0x11060000, /* Subsystem ID */
9 0x0000000c, /* Number of jacks */
Nico Huberefe1fed2013-04-29 18:00:57 +020010
11 /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x11060000 */
Angel Ponsec211702019-12-19 19:37:21 +010012 AZALIA_SUBVENDOR(0, 0x11060000),
Nico Huberefe1fed2013-04-29 18:00:57 +020013
14 /* Pin Widget Verb Table */
15
16 /*
17 * NID 0x19 [Port A (SURR)]:
18 * Jack Internal Speaker N/A Black
19 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020020 AZALIA_PIN_CFG(0, 0x19, 0x10101112),
Nico Huberefe1fed2013-04-29 18:00:57 +020021
22 /*
23 * NID 0x1a [Port B (MIC1/2)]:
24 * Jack Rear Mic In 1/8" Pink
25 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020026 AZALIA_PIN_CFG(0, 0x1a, 0x01a19036),
Nico Huberefe1fed2013-04-29 18:00:57 +020027
28 /*
29 * NID 0x1b [Port C (LINEIN)]:
30 * Jack Rear Line In 1/8" Blue
31 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020032 AZALIA_PIN_CFG(0, 0x1b, 0x0181303e),
Nico Huberefe1fed2013-04-29 18:00:57 +020033
34 /*
35 * NID 0x1c [Port D (Front)]:
36 * Jack Rear Line Out 1/8" Green
37 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020038 AZALIA_PIN_CFG(0, 0x1c, 0x01014010),
Nico Huberefe1fed2013-04-29 18:00:57 +020039
40 /*
41 * NID 0x1d [Port E (Front HP/MIC)]:
42 * Jack Front HP Out 1/8" Green
43 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020044 AZALIA_PIN_CFG(0, 0x1d, 0x022141f0),
Nico Huberefe1fed2013-04-29 18:00:57 +020045
46 /*
47 * NID 0x1e [Port F (Front HP/MIC)]:
48 * Jack Front Mic In 1/8" Pink
49 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020050 AZALIA_PIN_CFG(0, 0x1e, 0x02a19138),
Nico Huberefe1fed2013-04-29 18:00:57 +020051
52 /*
53 * NID 0x1f [CD]:
54 * Jack Int.(ATAPI) CD ATAPI internal Black
55 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020056 AZALIA_PIN_CFG(0, 0x1f, 0x19331137),
Nico Huberefe1fed2013-04-29 18:00:57 +020057
58 /*
59 * NID 0x20 [N/A]:
60 * Jack Rear S/PDIF Out RCA Unknown
61 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020062 AZALIA_PIN_CFG(0, 0x20, 0x014401f0),
Nico Huberefe1fed2013-04-29 18:00:57 +020063
64 /*
65 * NID 0x21 [N/A]:
66 * None Internal S/PDIF Out Other Digital Unknown
67 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020068 AZALIA_PIN_CFG(0, 0x21, 0x504600f0),
Nico Huberefe1fed2013-04-29 18:00:57 +020069
70 /*
71 * NID 0x22 [Port G (C/LFE)]:
72 * Jack Internal Speaker Unknown Orange
73 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020074 AZALIA_PIN_CFG(0, 0x22, 0x10106111),
Nico Huberefe1fed2013-04-29 18:00:57 +020075
76 /*
77 * NID 0x23 [Port H (SSL/SSR)]:
78 * Jack Internal Speaker Unknown Grey
79 */
Vladimir Serbinenkof91ecce2014-09-04 21:47:03 +020080 AZALIA_PIN_CFG(0, 0x23, 0x10102114),
Nico Huberefe1fed2013-04-29 18:00:57 +020081
82
83 /* coreboot specific header */
Elyes HAOUASf10b5ff2016-10-06 19:49:55 +020084 0x80862806, /* Codec Vendor / Device ID: Intel PantherPoint HDMI */
85 0x80860101, /* Subsystem ID */
86 0x00000004, /* Number of jacks */
Nico Huberefe1fed2013-04-29 18:00:57 +020087
88 /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x80860101 */
Angel Ponsd8ce9a82019-12-19 19:44:11 +010089 AZALIA_SUBVENDOR(3, 0x80860101),
Nico Huberefe1fed2013-04-29 18:00:57 +020090
91 /* Pin Complex (NID 0x05) Digital Out at Int HDMI */
Angel Ponsec211702019-12-19 19:37:21 +010092 AZALIA_PIN_CFG(3, 0x05, 0x58560010),
Nico Huberefe1fed2013-04-29 18:00:57 +020093
94 /* Pin Complex (NID 0x06) Digital Out at Int HDMI */
Angel Ponsec211702019-12-19 19:37:21 +010095 AZALIA_PIN_CFG(3, 0x06, 0x18560020),
Nico Huberefe1fed2013-04-29 18:00:57 +020096
97 /* Pin Complex (NID 0x07) Digital Out at Int HDMI */
Angel Ponsec211702019-12-19 19:37:21 +010098 AZALIA_PIN_CFG(3, 0x07, 0x18560030),
Nico Huberefe1fed2013-04-29 18:00:57 +020099};
Vladimir Serbinenko75c83872014-09-05 01:01:31 +0200100
101const u32 pc_beep_verbs[0] = {};
102
103AZALIA_ARRAY_SIZES;