blob: d8e3cc2dc7470d8deaa3b89a5855b22b034725db [file] [log] [blame]
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -07001/*
2 * Atmel SSC driver
3 *
4 * Copyright (C) 2007 Atmel Corporation
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
11#include <linux/platform_device.h>
12#include <linux/list.h>
13#include <linux/clk.h>
14#include <linux/err.h>
15#include <linux/io.h>
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070016#include <linux/spinlock.h>
17#include <linux/atmel-ssc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Paul Gortmakereb12a672011-07-03 15:14:56 -040019#include <linux/module.h>
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070020
Bo Shen099343c2012-11-07 11:41:41 +080021#include <linux/of.h>
22
Peter Rosine8314d72016-12-06 20:22:36 +010023#include "../../sound/soc/atmel/atmel_ssc_dai.h"
24
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070025/* Serialize access to ssc_list and user count */
26static DEFINE_SPINLOCK(user_lock);
27static LIST_HEAD(ssc_list);
28
29struct ssc_device *ssc_request(unsigned int ssc_num)
30{
31 int ssc_valid = 0;
32 struct ssc_device *ssc;
33
34 spin_lock(&user_lock);
35 list_for_each_entry(ssc, &ssc_list, list) {
Bo Shen099343c2012-11-07 11:41:41 +080036 if (ssc->pdev->dev.of_node) {
37 if (of_alias_get_id(ssc->pdev->dev.of_node, "ssc")
38 == ssc_num) {
Songjun Wuc706f2e2016-03-02 12:15:25 +010039 ssc->pdev->id = ssc_num;
Bo Shen099343c2012-11-07 11:41:41 +080040 ssc_valid = 1;
41 break;
42 }
43 } else if (ssc->pdev->id == ssc_num) {
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070044 ssc_valid = 1;
45 break;
46 }
47 }
48
49 if (!ssc_valid) {
50 spin_unlock(&user_lock);
Hans-Christian Egtvedtdfecb712009-02-04 15:12:17 -080051 pr_err("ssc: ssc%d platform device is missing\n", ssc_num);
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070052 return ERR_PTR(-ENODEV);
53 }
54
55 if (ssc->user) {
56 spin_unlock(&user_lock);
57 dev_dbg(&ssc->pdev->dev, "module busy\n");
58 return ERR_PTR(-EBUSY);
59 }
60 ssc->user++;
61 spin_unlock(&user_lock);
62
Bo Shen49af54f2014-09-24 17:33:55 +080063 clk_prepare(ssc->clk);
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070064
65 return ssc;
66}
67EXPORT_SYMBOL(ssc_request);
68
69void ssc_free(struct ssc_device *ssc)
70{
Boris BREZILLON9a9b1c62013-07-18 09:48:40 +020071 bool disable_clk = true;
72
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070073 spin_lock(&user_lock);
Boris BREZILLON9a9b1c62013-07-18 09:48:40 +020074 if (ssc->user)
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070075 ssc->user--;
Boris BREZILLON9a9b1c62013-07-18 09:48:40 +020076 else {
77 disable_clk = false;
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070078 dev_dbg(&ssc->pdev->dev, "device already free\n");
79 }
80 spin_unlock(&user_lock);
Boris BREZILLON9a9b1c62013-07-18 09:48:40 +020081
82 if (disable_clk)
Bo Shen49af54f2014-09-24 17:33:55 +080083 clk_unprepare(ssc->clk);
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -070084}
85EXPORT_SYMBOL(ssc_free);
86
Bo Shen636036d22012-11-06 13:57:51 +080087static struct atmel_ssc_platform_data at91rm9200_config = {
88 .use_dma = 0,
Bo Shenc4027fa2014-06-11 18:14:39 +080089 .has_fslen_ext = 0,
90};
91
92static struct atmel_ssc_platform_data at91sam9rl_config = {
93 .use_dma = 0,
94 .has_fslen_ext = 1,
Bo Shen636036d22012-11-06 13:57:51 +080095};
96
97static struct atmel_ssc_platform_data at91sam9g45_config = {
98 .use_dma = 1,
Bo Shenc4027fa2014-06-11 18:14:39 +080099 .has_fslen_ext = 1,
Bo Shen636036d22012-11-06 13:57:51 +0800100};
101
102static const struct platform_device_id atmel_ssc_devtypes[] = {
103 {
104 .name = "at91rm9200_ssc",
105 .driver_data = (unsigned long) &at91rm9200_config,
106 }, {
Bo Shenc4027fa2014-06-11 18:14:39 +0800107 .name = "at91sam9rl_ssc",
108 .driver_data = (unsigned long) &at91sam9rl_config,
109 }, {
Bo Shen636036d22012-11-06 13:57:51 +0800110 .name = "at91sam9g45_ssc",
111 .driver_data = (unsigned long) &at91sam9g45_config,
112 }, {
113 /* sentinel */
114 }
115};
116
Bo Shen099343c2012-11-07 11:41:41 +0800117#ifdef CONFIG_OF
118static const struct of_device_id atmel_ssc_dt_ids[] = {
119 {
120 .compatible = "atmel,at91rm9200-ssc",
121 .data = &at91rm9200_config,
122 }, {
Bo Shenc4027fa2014-06-11 18:14:39 +0800123 .compatible = "atmel,at91sam9rl-ssc",
124 .data = &at91sam9rl_config,
125 }, {
Bo Shen099343c2012-11-07 11:41:41 +0800126 .compatible = "atmel,at91sam9g45-ssc",
127 .data = &at91sam9g45_config,
128 }, {
129 /* sentinel */
130 }
131};
132MODULE_DEVICE_TABLE(of, atmel_ssc_dt_ids);
133#endif
134
Nathan Chancellor7c973012018-10-17 10:09:02 -0700135static inline const struct atmel_ssc_platform_data *
Bo Shen099343c2012-11-07 11:41:41 +0800136 atmel_ssc_get_driver_data(struct platform_device *pdev)
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700137{
Bo Shen099343c2012-11-07 11:41:41 +0800138 if (pdev->dev.of_node) {
139 const struct of_device_id *match;
140 match = of_match_node(atmel_ssc_dt_ids, pdev->dev.of_node);
141 if (match == NULL)
142 return NULL;
143 return match->data;
144 }
145
146 return (struct atmel_ssc_platform_data *)
147 platform_get_device_id(pdev)->driver_data;
148}
149
Peter Rosine8314d72016-12-06 20:22:36 +0100150#ifdef CONFIG_SND_ATMEL_SOC_SSC
151static int ssc_sound_dai_probe(struct ssc_device *ssc)
152{
153 struct device_node *np = ssc->pdev->dev.of_node;
154 int ret;
155 int id;
156
157 ssc->sound_dai = false;
158
159 if (!of_property_read_bool(np, "#sound-dai-cells"))
160 return 0;
161
162 id = of_alias_get_id(np, "ssc");
163 if (id < 0)
164 return id;
165
166 ret = atmel_ssc_set_audio(id);
167 ssc->sound_dai = !ret;
168
169 return ret;
170}
171
172static void ssc_sound_dai_remove(struct ssc_device *ssc)
173{
174 if (!ssc->sound_dai)
175 return;
176
177 atmel_ssc_put_audio(of_alias_get_id(ssc->pdev->dev.of_node, "ssc"));
178}
179#else
180static inline int ssc_sound_dai_probe(struct ssc_device *ssc)
181{
182 if (of_property_read_bool(ssc->pdev->dev.of_node, "#sound-dai-cells"))
183 return -ENOTSUPP;
184
185 return 0;
186}
187
188static inline void ssc_sound_dai_remove(struct ssc_device *ssc)
189{
190}
191#endif
192
Bo Shen5c86ac62012-10-16 11:56:59 +0800193static int ssc_probe(struct platform_device *pdev)
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700194{
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700195 struct resource *regs;
196 struct ssc_device *ssc;
Bo Shen099343c2012-11-07 11:41:41 +0800197 const struct atmel_ssc_platform_data *plat_dat;
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700198
Bo Shen2e4de7b2012-10-16 11:56:58 +0800199 ssc = devm_kzalloc(&pdev->dev, sizeof(struct ssc_device), GFP_KERNEL);
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700200 if (!ssc) {
201 dev_dbg(&pdev->dev, "out of memory\n");
Bo Shen2e4de7b2012-10-16 11:56:58 +0800202 return -ENOMEM;
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700203 }
204
Bo Shen2e4de7b2012-10-16 11:56:58 +0800205 ssc->pdev = pdev;
Bo Shen099343c2012-11-07 11:41:41 +0800206
207 plat_dat = atmel_ssc_get_driver_data(pdev);
208 if (!plat_dat)
209 return -ENODEV;
210 ssc->pdata = (struct atmel_ssc_platform_data *)plat_dat;
Bo Shen2e4de7b2012-10-16 11:56:58 +0800211
Bo Shen048d4ff2014-02-10 14:09:45 +0800212 if (pdev->dev.of_node) {
213 struct device_node *np = pdev->dev.of_node;
214 ssc->clk_from_rk_pin =
215 of_property_read_bool(np, "atmel,clk-from-rk-pin");
216 }
217
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700218 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding16847892013-01-21 11:09:10 +0100219 ssc->regs = devm_ioremap_resource(&pdev->dev, regs);
220 if (IS_ERR(ssc->regs))
221 return PTR_ERR(ssc->regs);
Bo Shen2e4de7b2012-10-16 11:56:58 +0800222
Nicolas Ferre31974362012-11-20 16:38:17 +0800223 ssc->phybase = regs->start;
224
Bo Shen2e4de7b2012-10-16 11:56:58 +0800225 ssc->clk = devm_clk_get(&pdev->dev, "pclk");
226 if (IS_ERR(ssc->clk)) {
227 dev_dbg(&pdev->dev, "no pclk clock defined\n");
228 return -ENXIO;
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700229 }
230
231 /* disable all interrupts */
Boris BREZILLON6f0d9472013-06-07 18:26:09 +0200232 clk_prepare_enable(ssc->clk);
Joachim Eastwoodf4319ff2012-12-08 13:46:41 +0100233 ssc_writel(ssc->regs, IDR, -1);
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700234 ssc_readl(ssc->regs, SR);
Boris BREZILLON6f0d9472013-06-07 18:26:09 +0200235 clk_disable_unprepare(ssc->clk);
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700236
237 ssc->irq = platform_get_irq(pdev, 0);
238 if (!ssc->irq) {
239 dev_dbg(&pdev->dev, "could not get irq\n");
Bo Shen2e4de7b2012-10-16 11:56:58 +0800240 return -ENXIO;
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700241 }
242
243 spin_lock(&user_lock);
244 list_add_tail(&ssc->list, &ssc_list);
245 spin_unlock(&user_lock);
246
247 platform_set_drvdata(pdev, ssc);
248
249 dev_info(&pdev->dev, "Atmel SSC device at 0x%p (irq %d)\n",
250 ssc->regs, ssc->irq);
251
Peter Rosine8314d72016-12-06 20:22:36 +0100252 if (ssc_sound_dai_probe(ssc))
253 dev_err(&pdev->dev, "failed to auto-setup ssc for audio\n");
254
Bo Shen2e4de7b2012-10-16 11:56:58 +0800255 return 0;
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700256}
257
Bill Pemberton486a5c22012-11-19 13:26:02 -0500258static int ssc_remove(struct platform_device *pdev)
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700259{
260 struct ssc_device *ssc = platform_get_drvdata(pdev);
261
Peter Rosine8314d72016-12-06 20:22:36 +0100262 ssc_sound_dai_remove(ssc);
263
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700264 spin_lock(&user_lock);
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700265 list_del(&ssc->list);
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700266 spin_unlock(&user_lock);
267
268 return 0;
269}
270
271static struct platform_driver ssc_driver = {
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700272 .driver = {
273 .name = "ssc",
Bo Shen099343c2012-11-07 11:41:41 +0800274 .of_match_table = of_match_ptr(atmel_ssc_dt_ids),
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700275 },
Bo Shen636036d22012-11-06 13:57:51 +0800276 .id_table = atmel_ssc_devtypes,
Bo Shen5c86ac62012-10-16 11:56:59 +0800277 .probe = ssc_probe,
Linus Torvalds046e7d62012-12-13 11:51:23 -0800278 .remove = ssc_remove,
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700279};
Bo Shen5c86ac62012-10-16 11:56:59 +0800280module_platform_driver(ssc_driver);
Hans-Christian Egtvedteb1f2932007-10-16 23:26:11 -0700281
282MODULE_AUTHOR("Hans-Christian Egtvedt <hcegtvedt@atmel.com>");
283MODULE_DESCRIPTION("SSC driver for Atmel AVR32 and AT91");
284MODULE_LICENSE("GPL");
Kay Sieversd6c23852008-04-15 14:34:33 -0700285MODULE_ALIAS("platform:ssc");