899d5bdefa
Change-Id: I9ea191e5076e2f055405dc34d46dbbb8cfb0015e Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44106 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
12 lines
324 B
C
12 lines
324 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef _COMMON_HDA_VERB_H_
|
|
#define _COMMON_HDA_VERB_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
int hda_codec_detect(u8 *base);
|
|
int hda_codec_write(u8 *base, u32 size, const u32 *data);
|
|
int hda_codec_init(u8 *base, int addr, int verb_size, const u32 *verb_data);
|
|
|
|
#endif /* _COMMON_HDA_VERB_H_ */
|