mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
d84881e068
Loongson I2S controller is found on 7axxx/2kxxx chips from loongson, it is a PCI device with two private DMA controllers, one for playback, the other for capture. The driver supports the use of DTS or ACPI to describe device resources. Signed-off-by: Yingkun Meng <mengyingkun@loongson.cn> Link: https://lore.kernel.org/r/20230615122718.3412942-1-mengyingkun@loongson.cn Signed-off-by: Mark Brown <broonie@kernel.org>
17 lines
361 B
C
17 lines
361 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* ALSA ASoC interface for the Loongson platform
|
|
*
|
|
* Copyright (C) 2023 Loongson Technology Corporation Limited
|
|
* Author: Yingkun Meng <mengyingkun@loongson.cn>
|
|
*/
|
|
|
|
#ifndef _LOONGSON_DMA_H
|
|
#define _LOONGSON_DMA_H
|
|
|
|
#include <sound/soc.h>
|
|
|
|
extern const struct snd_soc_component_driver loongson_i2s_component;
|
|
|
|
#endif
|