blob: 62b392695d2d630531b3947e7f4c3b0b3928d85c [file] [log] [blame]
Kuninori Morimotoabd31472016-05-31 09:00:14 +00001/*
2 * simple_card_core.h
3 *
4 * Copyright (c) 2016 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#ifndef __SIMPLE_CARD_CORE_H
11#define __SIMPLE_CARD_CORE_H
12
13#include <sound/soc.h>
14
Kuninori Morimotocecdef32016-06-30 06:02:46 +000015struct asoc_simple_dai {
16 const char *name;
17 unsigned int sysclk;
18 int slots;
19 int slot_width;
20 unsigned int tx_slot_mask;
21 unsigned int rx_slot_mask;
22 struct clk *clk;
23};
24
Kuninori Morimotoabd31472016-05-31 09:00:14 +000025int asoc_simple_card_parse_daifmt(struct device *dev,
26 struct device_node *node,
27 struct device_node *codec,
28 char *prefix,
29 unsigned int *retfmt);
Kuninori Morimoto1db33122016-07-11 23:57:14 +000030int asoc_simple_card_set_dailink_name(struct device *dev,
31 struct snd_soc_dai_link *dai_link,
32 const char *fmt, ...);
Kuninori Morimotofc55c9b2016-07-11 23:59:16 +000033int asoc_simple_card_parse_card_name(struct snd_soc_card *card,
34 char *prefix);
Kuninori Morimotoabd31472016-05-31 09:00:14 +000035
Kuninori Morimotobb6fc622016-08-08 05:59:56 +000036#define asoc_simple_card_parse_clk_cpu(node, dai_link, simple_dai) \
37 asoc_simple_card_parse_clk(node, dai_link->cpu_of_node, simple_dai)
38#define asoc_simple_card_parse_clk_codec(node, dai_link, simple_dai) \
39 asoc_simple_card_parse_clk(node, dai_link->codec_of_node, simple_dai)
40int asoc_simple_card_parse_clk(struct device_node *node,
41 struct device_node *dai_of_node,
42 struct asoc_simple_dai *simple_dai);
43
Kuninori Morimotoae30a692016-08-08 06:01:43 +000044#define asoc_simple_card_parse_cpu(node, dai_link, \
45 list_name, cells_name, is_single_link) \
46 asoc_simple_card_parse_dai(node, &dai_link->cpu_of_node, \
47 &dai_link->cpu_dai_name, list_name, cells_name, is_single_link)
48#define asoc_simple_card_parse_codec(node, dai_link, list_name, cells_name) \
49 asoc_simple_card_parse_dai(node, &dai_link->codec_of_node, \
50 &dai_link->codec_dai_name, list_name, cells_name, NULL)
51#define asoc_simple_card_parse_platform(node, dai_link, list_name, cells_name) \
52 asoc_simple_card_parse_dai(node, &dai_link->platform_of_node, \
53 NULL, list_name, cells_name, NULL)
54int asoc_simple_card_parse_dai(struct device_node *node,
55 struct device_node **endpoint_np,
56 const char **dai_name,
57 const char *list_name,
58 const char *cells_name,
59 int *is_single_links);
60
Kuninori Morimotoabd31472016-05-31 09:00:14 +000061#endif /* __SIMPLE_CARD_CORE_H */