Cleanup up HD audio codec / hda_verb.h files.
[coreboot.git] / src / mainboard / msi / ms9652_fam10 / 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 /*
23  * FIXME: This file is currently unused and incorrect for this board.
24  *        Someone who owns the board should replace it with a correct one.
25  */
26
27 static u32 mainboard_cim_verb_data[] = {
28         /* coreboot specific header */
29         0x10ec0880,     // Codec Vendor / Device ID: Realtek ALC880
30         0x00000000,     // Subsystem ID
31         0x0000000d,     // Number of jacks
32
33         /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x0000e601 */
34         0x00172001,
35         0x001721e6,
36         0x00172200,
37         0x00172300,
38
39         /* NID 0x14, FRONT-OUT-L/R */
40         0x01471c10,
41         0x01471d44,
42         0x01471e01,
43         0x01471f01,
44
45         /* NID 0x15, SURR-OUT-L/R */
46         0x01571c12,
47         0x01571d14,
48         0x01571e01,
49         0x01571f01,
50
51         /* NID 0x16, CEN/LFE-OUT */
52         0x01671c11,
53         0x01671d60,
54         0x01671e01,
55         0x01671f01,
56
57         /* NID 0x17, SIDE-SURR-L/R */
58         0x01771c14,
59         0x01771d20,
60         0x01771e01,
61         0x01771f01,
62
63         /* NID 0x18, MIC1-L/R, VREFO */
64         0x01871c30,
65         0x01871d9c,
66         0x01871ea1,
67         0x01871f01,
68
69         /* NID 0x19, MIC2-L/R, VREFO */
70         0x01971c40,
71         0x01971d9c,
72         0x01971ea1,
73         0x01971f02,
74
75         /* NID 0x1a, LINE1-L/R, VREFO */
76         0x01a71c31,
77         0x01a71d34,
78         0x01a71e81,
79         0x01a71f01,
80
81         /* NID 0x1b, LINE2-L/R, VREFO */
82         0x01b71c1f,
83         0x01b71d44,
84         0x01b71e21,
85         0x01b71f02,
86
87         /* NID 0x1c, CD-L/R / GND */
88         0x01c71cf0,
89         0x01c71d11,
90         0x01c71e11,
91         0x01c71f41,
92
93         /* NID 0x1d, PCBEEP */
94         0x01d71c3e,
95         0x01d71d01,
96         0x01d71e83,
97         0x01d71f99,
98
99         /* NID 0x1e, S/PDIF-OUT */
100         0x01e71c20,
101         0x01e71d41,
102         0x01e71e45,
103         0x01e71f01,
104
105         /* NID 0x1f, S/PDIF-IN */
106         0x01f71c50,
107         0x01f71d91,
108         0x01f71ec5,
109         0x01f71f01,
110 };
111
112 extern u32 *cim_verb_data;
113 extern u32 cim_verb_data_size;
114