blob: 9b0ac77177b6e3aa13156822a2c23f61635e56bd [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;
Xiubo Li6ff62ee2014-02-14 09:34:36 +080021 int slots;
22 int slot_width;
Kuninori Morimotof2390882012-04-08 21:17:50 -070023};
24
25struct asoc_simple_card_info {
26 const char *name;
27 const char *card;
Kuninori Morimotof2390882012-04-08 21:17:50 -070028 const char *codec;
29 const char *platform;
Kuninori Morimotoa4a2992c2013-01-10 16:49:11 -080030
31 unsigned int daifmt;
32 struct asoc_simple_dai cpu_dai;
33 struct asoc_simple_dai codec_dai;
Kuninori Morimotof2390882012-04-08 21:17:50 -070034};
35
36#endif /* __SIMPLE_CARD_H */