blob: ddd57747b7d80c6c531fefa7645c1495df3fde15 [file] [log] [blame]
Angel Pons0612b272020-04-05 15:46:56 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Shawn Nematbakhsh51d787a2014-01-16 17:52:21 -08002
Duncan Laurief0aaa292014-04-22 10:48:29 -07003#ifndef _COMMON_HDA_VERB_H_
4#define _COMMON_HDA_VERB_H_
Shawn Nematbakhsh51d787a2014-01-16 17:52:21 -08005
6#include <stdint.h>
7
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -08008int hda_codec_detect(u8 *base);
9int hda_codec_write(u8 *base, u32 size, const u32 *data);
10int hda_codec_init(u8 *base, int addr, int verb_size, const u32 *verb_data);
Shawn Nematbakhsh51d787a2014-01-16 17:52:21 -080011
Duncan Laurief0aaa292014-04-22 10:48:29 -070012#endif /* _COMMON_HDA_VERB_H_ */