remove trailing whitespace
[coreboot.git] / src / mainboard / nvidia / l1_2pvv / hda_verb.h
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2004 Tyan Computer
5  * Copyright (C) 2006-2007 AMD
6  * Copyright (C) 2007-2009 coresystems GmbH
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; version 2 of the License.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 static u32 mainboard_cim_verb_data[] = {
23         /* coreboot specific header */
24         0x10ec0880,     // Codec Vendor / Device ID: Realtek ALC880
25         0x00000000,     // Subsystem ID
26         0x0000000d,     // Number of jacks
27
28         /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x0000e601 */
29         0x00172001,
30         0x001721e6,
31         0x00172200,
32         0x00172300,
33
34         /* NID 0x14, FRONT-OUT-L/R */
35         0x01471c10,
36         0x01471d44,
37         0x01471e01,
38         0x01471f01,
39
40         /* NID 0x15, SURR-OUT-L/R */
41         0x01571c12,
42         0x01571d14,
43         0x01571e01,
44         0x01571f01,
45
46         /* NID 0x16, CEN/LFE-OUT */
47         0x01671c11,
48         0x01671d60,
49         0x01671e01,
50         0x01671f01,
51
52         /* NID 0x17, SIDE-SURR-L/R */
53         0x01771c14,
54         0x01771d20,
55         0x01771e01,
56         0x01771f01,
57
58         /* NID 0x18, MIC1-L/R, VREFO */
59         0x01871c30,
60         0x01871d9c,
61         0x01871ea1,
62         0x01871f01,
63
64         /* NID 0x19, MIC2-L/R, VREFO */
65         0x01971c40,
66         0x01971d9c,
67         0x01971ea1,
68         0x01971f02,
69
70         /* NID 0x1a, LINE1-L/R, VREFO */
71         0x01a71c31,
72         0x01a71d34,
73         0x01a71e81,
74         0x01a71f01,
75
76         /* NID 0x1b, LINE2-L/R, VREFO */
77         0x01b71c1f,
78         0x01b71d44,
79         0x01b71e21,
80         0x01b71f02,
81
82         /* NID 0x1c, CD-L/R / GND */
83         0x01c71cf0,
84         0x01c71d11,
85         0x01c71e11,
86         0x01c71f41,
87
88         /* NID 0x1d, PCBEEP */
89         0x01d71c3e,
90         0x01d71d01,
91         0x01d71e83,
92         0x01d71f99,
93
94         /* NID 0x1e, S/PDIF-OUT */
95         0x01e71c20,
96         0x01e71d41,
97         0x01e71e45,
98         0x01e71f01,
99
100         /* NID 0x1f, S/PDIF-IN */
101         0x01f71c50,
102         0x01f71d91,
103         0x01f71ec5,
104         0x01f71f01,
105 };
106
107 extern u32 *cim_verb_data;
108 extern u32 cim_verb_data_size;
109