forked from Minki/linux
fd3b36045c
Read configuration values from Xen store according to xen/interface/io/sndif.h protocol: - introduce configuration structures for different components, e.g. sound card, device, stream - read PCM HW parameters, e.g rate, format etc. - detect stream type (capture/playback) - read device and card parameters Signed-off-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
23 lines
421 B
C
23 lines
421 B
C
/* SPDX-License-Identifier: GPL-2.0 OR MIT */
|
|
|
|
/*
|
|
* Xen para-virtual sound device
|
|
*
|
|
* Copyright (C) 2016-2018 EPAM Systems Inc.
|
|
*
|
|
* Author: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
|
|
*/
|
|
|
|
#ifndef __XEN_SND_FRONT_H
|
|
#define __XEN_SND_FRONT_H
|
|
|
|
#include "xen_snd_front_cfg.h"
|
|
|
|
struct xen_snd_front_info {
|
|
struct xenbus_device *xb_dev;
|
|
|
|
struct xen_front_cfg_card cfg;
|
|
};
|
|
|
|
#endif /* __XEN_SND_FRONT_H */
|