summaryrefslogtreecommitdiff
path: root/sound/soc/ux500/u5500.c
blob: bd5ee83fe9915b84660d7d1b47d074eca3879201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
 * Copyright (C) ST-Ericsson SA 2011
 *
 * Author: Xie Xiaolei (xie.xiaolei@stericsson.com)
 *         for ST-Ericsson.
 *
 * License terms:
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as published
 * by the Free Software Foundation.
 */

#include <linux/io.h>
#include <sound/soc.h>
#include <asm/mach-types.h>

#include "ux500_pcm.h"
#include "ux500_msp_dai.h"

#include <linux/spi/spi.h>
#include <sound/initval.h>

#ifdef CONFIG_SND_SOC_UX500_AB5500
#include "ux500_ab5500.h"
#endif

static struct platform_device *u5500_platform_dev;
/* Create dummy devices for platform drivers */

static struct platform_device ux500_pcm = {
		.name = "ux500-pcm",
		.id = 0,
		.dev = {
			.platform_data = NULL,
		},
};


/* Define the whole U5500 soundcard, linking platform to the codec-drivers  */
struct snd_soc_dai_link u5500_dai_links[] = {
	{
		.name = "ab5500_0",
		.stream_name = "ab5500_0",
		.cpu_dai_name = "i2s.0",
		.codec_dai_name = "ab5500-codec-dai.0",
		.platform_name = "ux500-pcm.0",
		.codec_name = "ab5500-codec.0",
		.init = NULL,
		.ops = (struct snd_soc_ops[]) {
			{
				.startup = ux500_ab5500_startup,
				.shutdown = ux500_ab5500_shutdown,
				.hw_params = ux500_ab5500_hw_params,
			}
		}
	},
	{
		.name = "ab5500_1",
		.stream_name = "ab5500_1",
		.cpu_dai_name = "i2s.1",
		.codec_dai_name = "ab5500-codec-dai.1",
		.platform_name = "ux500-pcm.0",
		.codec_name = "ab5500-codec.0",
		.init = NULL,
		.ops = (struct snd_soc_ops[]) {
			{
				.startup = ux500_ab5500_startup,
				.shutdown = ux500_ab5500_shutdown,
				.hw_params = ux500_ab5500_hw_params,
			}
		}
	}
};

static struct snd_soc_card u5500_drvdata = {
	.name = "U5500-card",
	.probe = NULL,
	.dai_link = u5500_dai_links,
	.num_links = ARRAY_SIZE(u5500_dai_links),
};

static int __init u5500_soc_init(void)
{
	int ret = 0;

	pr_debug("%s: Enter.\n", __func__);

	if (!machine_is_u5500())
		return 0;

	platform_device_register(&ux500_pcm);

	u5500_platform_dev = platform_device_alloc("soc-audio", -1);
	if (!u5500_platform_dev)
		return -ENOMEM;

	platform_set_drvdata(u5500_platform_dev, &u5500_drvdata);
	u5500_drvdata.dev = &u5500_platform_dev->dev;

	ret = platform_device_add(u5500_platform_dev);
	if (ret) {
		pr_err("%s: Error: Failed to add platform device (%s).\n",
			__func__,
			u5500_drvdata.name);
		platform_device_put(u5500_platform_dev);
	}

	return ret;
}

static void __exit u5500_soc_exit(void)
{
	pr_debug("%s: Enter.\n", __func__);

	platform_device_unregister(u5500_platform_dev);
}

module_init(u5500_soc_init);
module_exit(u5500_soc_exit);

MODULE_LICENSE("GPLv2");