Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 1 | /* |
| 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 Morimoto | a4a2992c | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 17 | struct asoc_simple_dai { |
| 18 | const char *name; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 19 | unsigned int fmt; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 20 | unsigned int sysclk; |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 21 | int slots; |
| 22 | int slot_width; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 23 | }; |
| 24 | |
| 25 | struct asoc_simple_card_info { |
| 26 | const char *name; |
| 27 | const char *card; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 28 | const char *codec; |
| 29 | const char *platform; |
Kuninori Morimoto | a4a2992c | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 30 | |
| 31 | unsigned int daifmt; |
| 32 | struct asoc_simple_dai cpu_dai; |
| 33 | struct asoc_simple_dai codec_dai; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | #endif /* __SIMPLE_CARD_H */ |