blob: 5e6f5950e38352360f942bc4a3e5060cb4ca4482 [file] [log] [blame]
Patrick Georgibe61a172010-12-18 07:48:43 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2009-2010 iWave Systems
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Patrick Georgibe61a172010-12-18 07:48:43 +000014 */
15
Jonathan A. Kollaschec505ad22015-07-07 12:57:46 -050016#include <device/azalia_device.h>
17
18const u32 cim_verb_data[] = {
Uwe Hermann405721d2010-12-18 13:22:37 +000019 /* coreboot specific header */
20 0x111d76d5, // Codec Vendor / Device ID: IDT 92HD81
21 0x00000000, // Subsystem ID
22 0x0000000a, // Number of jacks
Patrick Georgibe61a172010-12-18 07:48:43 +000023
Uwe Hermann405721d2010-12-18 13:22:37 +000024 /* NID 0x0a, Port A (capless headphone) */
Patrick Georgibe61a172010-12-18 07:48:43 +000025 0x0A71C40,
26 0x0A71D10,
27 0x0A71EA1,
28 0x0A71F02,
29
Uwe Hermann405721d2010-12-18 13:22:37 +000030 /* NID 0x0b, Port B (capless headphone) */
Patrick Georgibe61a172010-12-18 07:48:43 +000031 0x0B71C1F,
32 0x0B71D10,
33 0x0B71E21,
34 0x0B71F02,
35
Uwe Hermann405721d2010-12-18 13:22:37 +000036 /*
37 * NID 0x0c, Port C (Line IN/OUT+MIC for YD/UA revisions, and
38 * Line IN+MIC for TA revision)
39 */
Patrick Georgibe61a172010-12-18 07:48:43 +000040 0x0C71CF0,
41 0x0C71D00,
42 0x0C71E00,
43 0x0C71F40,
44
Uwe Hermann405721d2010-12-18 13:22:37 +000045 /* NID 0x0d, Port D (BTL output - EAPD control) */
Patrick Georgibe61a172010-12-18 07:48:43 +000046 0x0D71C10,
47 0x0D71D41,
48 0x0D71E10,
49 0x0D71F10,
50
Uwe Hermann405721d2010-12-18 13:22:37 +000051 /* NID 0x0e, Port E (Line IN/OUT) */
Patrick Georgibe61a172010-12-18 07:48:43 +000052 0x0E71CF0,
53 0x0E71D00,
54 0x0E71E00,
55 0x0E71F40,
56
Uwe Hermann405721d2010-12-18 13:22:37 +000057 /* NID 0x0f, Port F (Line IN/OUT, MIC) */
Patrick Georgibe61a172010-12-18 07:48:43 +000058 0x0F71CF0,
59 0x0F71D00,
60 0x0F71E00,
61 0x0F71F40,
62
Uwe Hermann405721d2010-12-18 13:22:37 +000063 /* NID 0x10, MonoOut (output-only) */
Patrick Georgibe61a172010-12-18 07:48:43 +000064 0x1071CF0,
65 0x1071D00,
66 0x1071EF0,
67 0x1071F40,
68
Uwe Hermann405721d2010-12-18 13:22:37 +000069 /* NID 0x10, DigMic0 (Digital Microphone 0) */
Patrick Georgibe61a172010-12-18 07:48:43 +000070 0x1171CF0,
71 0x1171D00,
72 0x1171E00,
73 0x1171F40,
74
Uwe Hermann405721d2010-12-18 13:22:37 +000075 /* NID 0x1f, Dig0Pin (First Digital Output Pin) */
Patrick Georgibe61a172010-12-18 07:48:43 +000076 0x1F71C50,
77 0x1F71D21,
78 0x1F71E40,
79 0x1F71F10,
80
Uwe Hermann405721d2010-12-18 13:22:37 +000081 /* NID 0x20, Dig1Pin (Second Digital Output Pin / DMIC Input Pin) */
Patrick Georgibe61a172010-12-18 07:48:43 +000082 0x2071CF0,
83 0x2071D00,
84 0x2071E00,
85 0x2071F40,
86
Uwe Hermann405721d2010-12-18 13:22:37 +000087 /* BTL Gain */
88 0x017F417, /* Gain = 16.79dB */
Patrick Georgibe61a172010-12-18 07:48:43 +000089};
Jonathan A. Kollaschec505ad22015-07-07 12:57:46 -050090
91const u32 pc_beep_verbs[0] = {};
92
Vladimir Serbinenko75c83872014-09-05 01:01:31 +020093AZALIA_ARRAY_SIZES;