blob: 92cb23441fac343d70daf31d583dc4daf9d29792 [file] [log] [blame]
Martin Rothbf6b83a2015-10-11 10:37:02 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by 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.
Martin Rothbf6b83a2015-10-11 10:37:02 +020014 */
15
16#include <device/azalia_device.h>
17
18const u32 cim_verb_data[] = {
19 /* coreboot specific header */
20 0x80862805, // Codec Vendor / Device ID: Intel CougarPoint HDMI
21 0x80860101, // Subsystem ID
22 0x00000004, // Number of jacks
23
24 /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x80860101 */
25 AZALIA_SUBVENDOR(0x0, 0x80860101),
26
27 /* Pin Complex (NID 0x05) Digital Out at Int HDMI */
28 AZALIA_PIN_CFG(0x3, 0x05, 0x18560010),
29
30 /* Pin Complex (NID 0x06) Digital Out at Int HDMI */
31 AZALIA_PIN_CFG(0x3, 0x06, 0x18560020),
32
33 /* Pin Complex (NID 0x07) Digital Out at Int HDMI */
34 AZALIA_PIN_CFG(0x3, 0x07, 0x18560030)
35};
36
37const u32 pc_beep_verbs[0] = {};
38
39AZALIA_ARRAY_SIZES;