blob: 6c74527d4926b3e476428fb6327652d9ca22dfbb [file] [log] [blame]
Kuninori Morimotof2390882012-04-08 21:17:50 -07001/*
2 * ASoC simple sound card support
3 *
4 * Copyright (C) 2012 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#ifndef __SIMPLE_CARD_H
13#define __SIMPLE_CARD_H
14
15#include <sound/soc.h>
16
Kuninori Morimotoa4a2992c2013-01-10 16:49:11 -080017struct asoc_simple_dai {
18 const char *name;
Kuninori Morimotof2390882012-04-08 21:17:50 -070019 unsigned int fmt;
Kuninori Morimotof2390882012-04-08 21:17:50 -070020 unsigned int sysclk;
21};
22
23struct asoc_simple_card_info {
24 const char *name;
25 const char *card;
Kuninori Morimotof2390882012-04-08 21:17:50 -070026 const char *codec;
27 const char *platform;
Kuninori Morimotoa4a2992c2013-01-10 16:49:11 -080028
29 unsigned int daifmt;
30 struct asoc_simple_dai cpu_dai;
31 struct asoc_simple_dai codec_dai;
Kuninori Morimotof2390882012-04-08 21:17:50 -070032
33 /* used in simple-card.c */
34 struct snd_soc_dai_link snd_link;
35 struct snd_soc_card snd_card;
36};
37
38#endif /* __SIMPLE_CARD_H */