blob: 0bb0ee2e691f1a8899ca63a9c5bc93d6a8a7a36b [file] [log] [blame]
Sara Birdad284972013-05-20 15:32:49 -04001/*
2 * drivers/misc/goldfish_audio.c
Alan Cox2e82b832013-01-23 14:13:52 +00003 *
4 * Copyright (C) 2007 Google, Inc.
5 * Copyright (C) 2012 Intel, Inc.
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#include <linux/module.h>
19#include <linux/miscdevice.h>
20#include <linux/fs.h>
21#include <linux/platform_device.h>
22#include <linux/types.h>
23#include <linux/pci.h>
24#include <linux/interrupt.h>
25#include <linux/io.h>
26#include <linux/sched.h>
27#include <linux/dma-mapping.h>
28#include <linux/uaccess.h>
Greg Hackmann453215072016-02-26 19:00:18 +000029#include <linux/slab.h>
Alanf6279712014-05-12 16:56:56 +010030#include <linux/goldfish.h>
Yu Ning6ab87582015-03-31 14:41:48 +080031#include <linux/acpi.h>
Alan Cox2e82b832013-01-23 14:13:52 +000032
33MODULE_AUTHOR("Google, Inc.");
34MODULE_DESCRIPTION("Android QEMU Audio Driver");
35MODULE_LICENSE("GPL");
36MODULE_VERSION("1.0");
37
38struct goldfish_audio {
39 char __iomem *reg_base;
40 int irq;
Loic Pefferkorn9b61f082014-09-03 22:23:12 +020041 /* lock protects access to buffer_status and to device registers */
Alan Cox2e82b832013-01-23 14:13:52 +000042 spinlock_t lock;
43 wait_queue_head_t wait;
44
Ricardo Ribalda Delgado82fdb8d2015-03-16 23:01:44 +010045 char *buffer_virt; /* combined buffer virtual address */
Alan Cox2e82b832013-01-23 14:13:52 +000046 unsigned long buffer_phys; /* combined buffer physical address */
47
Ricardo Ribalda Delgado82fdb8d2015-03-16 23:01:44 +010048 char *write_buffer1; /* write buffer 1 virtual address */
49 char *write_buffer2; /* write buffer 2 virtual address */
50 char *read_buffer; /* read buffer virtual address */
Alan Cox2e82b832013-01-23 14:13:52 +000051 int buffer_status;
52 int read_supported; /* true if we have audio input support */
53};
54
Sara Birdad284972013-05-20 15:32:49 -040055/*
56 * We will allocate two read buffers and two write buffers.
57 * Having two read buffers facilitate stereo -> mono conversion.
58 * Having two write buffers facilitate interleaved IO.
59 */
Alan Cox2e82b832013-01-23 14:13:52 +000060#define READ_BUFFER_SIZE 16384
61#define WRITE_BUFFER_SIZE 16384
62#define COMBINED_BUFFER_SIZE ((2 * READ_BUFFER_SIZE) + \
63 (2 * WRITE_BUFFER_SIZE))
64
65#define AUDIO_READ(data, addr) (readl(data->reg_base + addr))
66#define AUDIO_WRITE(data, addr, x) (writel(x, data->reg_base + addr))
Alanf6279712014-05-12 16:56:56 +010067#define AUDIO_WRITE64(data, addr, addr2, x) \
Christian Colic2ce601b2015-11-19 09:38:21 +010068 (gf_write_dma_addr((x), data->reg_base + addr, data->reg_base + addr2))
Alan Cox2e82b832013-01-23 14:13:52 +000069
Sara Birdad284972013-05-20 15:32:49 -040070/*
71 * temporary variable used between goldfish_audio_probe() and
72 * goldfish_audio_open()
73 */
Alan Cox2e82b832013-01-23 14:13:52 +000074static struct goldfish_audio *audio_data;
75
76enum {
77 /* audio status register */
78 AUDIO_INT_STATUS = 0x00,
79 /* set this to enable IRQ */
80 AUDIO_INT_ENABLE = 0x04,
81 /* set these to specify buffer addresses */
82 AUDIO_SET_WRITE_BUFFER_1 = 0x08,
83 AUDIO_SET_WRITE_BUFFER_2 = 0x0C,
84 /* set number of bytes in buffer to write */
85 AUDIO_WRITE_BUFFER_1 = 0x10,
86 AUDIO_WRITE_BUFFER_2 = 0x14,
Jun Tianc3c1ba62014-04-28 20:47:03 +010087 AUDIO_SET_WRITE_BUFFER_1_HIGH = 0x28,
88 AUDIO_SET_WRITE_BUFFER_2_HIGH = 0x30,
Alan Cox2e82b832013-01-23 14:13:52 +000089
90 /* true if audio input is supported */
91 AUDIO_READ_SUPPORTED = 0x18,
92 /* buffer to use for audio input */
93 AUDIO_SET_READ_BUFFER = 0x1C,
Jun Tianc3c1ba62014-04-28 20:47:03 +010094 AUDIO_SET_READ_BUFFER_HIGH = 0x34,
Alan Cox2e82b832013-01-23 14:13:52 +000095
96 /* driver writes number of bytes to read */
97 AUDIO_START_READ = 0x20,
98
99 /* number of bytes available in read buffer */
100 AUDIO_READ_BUFFER_AVAILABLE = 0x24,
101
102 /* AUDIO_INT_STATUS bits */
103
104 /* this bit set when it is safe to write more bytes to the buffer */
105 AUDIO_INT_WRITE_BUFFER_1_EMPTY = 1U << 0,
106 AUDIO_INT_WRITE_BUFFER_2_EMPTY = 1U << 1,
107 AUDIO_INT_READ_BUFFER_FULL = 1U << 2,
108
109 AUDIO_INT_MASK = AUDIO_INT_WRITE_BUFFER_1_EMPTY |
110 AUDIO_INT_WRITE_BUFFER_2_EMPTY |
111 AUDIO_INT_READ_BUFFER_FULL,
112};
113
Alan Cox2e82b832013-01-23 14:13:52 +0000114static atomic_t open_count = ATOMIC_INIT(0);
115
Alan Cox2e82b832013-01-23 14:13:52 +0000116static ssize_t goldfish_audio_read(struct file *fp, char __user *buf,
Loic Pefferkorn8f52e262014-09-03 22:23:13 +0200117 size_t count, loff_t *pos)
Alan Cox2e82b832013-01-23 14:13:52 +0000118{
119 struct goldfish_audio *data = fp->private_data;
Joshua Langebb099e2016-06-17 17:30:55 -0700120 unsigned long irq_flags;
Alan Cox2e82b832013-01-23 14:13:52 +0000121 int length;
122 int result = 0;
123
124 if (!data->read_supported)
125 return -ENODEV;
126
127 while (count > 0) {
128 length = (count > READ_BUFFER_SIZE ? READ_BUFFER_SIZE : count);
129 AUDIO_WRITE(data, AUDIO_START_READ, length);
130
Aya Mahfouzd7d3e892015-03-10 19:09:10 +0200131 wait_event_interruptible(data->wait, data->buffer_status &
132 AUDIO_INT_READ_BUFFER_FULL);
Alan Cox2e82b832013-01-23 14:13:52 +0000133
Joshua Langebb099e2016-06-17 17:30:55 -0700134 spin_lock_irqsave(&data->lock, irq_flags);
135 data->buffer_status &= ~AUDIO_INT_READ_BUFFER_FULL;
136 spin_unlock_irqrestore(&data->lock, irq_flags);
137
Loic Pefferkorn8f52e262014-09-03 22:23:13 +0200138 length = AUDIO_READ(data, AUDIO_READ_BUFFER_AVAILABLE);
Alan Cox2e82b832013-01-23 14:13:52 +0000139
140 /* copy data to user space */
141 if (copy_to_user(buf, data->read_buffer, length))
142 return -EFAULT;
143
144 result += length;
145 buf += length;
146 count -= length;
147 }
148 return result;
149}
150
151static ssize_t goldfish_audio_write(struct file *fp, const char __user *buf,
Loic Pefferkorn8f52e262014-09-03 22:23:13 +0200152 size_t count, loff_t *pos)
Alan Cox2e82b832013-01-23 14:13:52 +0000153{
154 struct goldfish_audio *data = fp->private_data;
155 unsigned long irq_flags;
156 ssize_t result = 0;
Ricardo Ribalda Delgado82fdb8d2015-03-16 23:01:44 +0100157 char *kbuf;
Alan Cox2e82b832013-01-23 14:13:52 +0000158
159 while (count > 0) {
160 ssize_t copy = count;
Garret Kellyef323812014-04-06 23:47:31 -0400161
Alan Cox2e82b832013-01-23 14:13:52 +0000162 if (copy > WRITE_BUFFER_SIZE)
163 copy = WRITE_BUFFER_SIZE;
Aya Mahfouzd7d3e892015-03-10 19:09:10 +0200164 wait_event_interruptible(data->wait, data->buffer_status &
Alan Cox2e82b832013-01-23 14:13:52 +0000165 (AUDIO_INT_WRITE_BUFFER_1_EMPTY |
Aya Mahfouzd7d3e892015-03-10 19:09:10 +0200166 AUDIO_INT_WRITE_BUFFER_2_EMPTY));
Alan Cox2e82b832013-01-23 14:13:52 +0000167
168 if ((data->buffer_status & AUDIO_INT_WRITE_BUFFER_1_EMPTY) != 0)
169 kbuf = data->write_buffer1;
170 else
171 kbuf = data->write_buffer2;
172
173 /* copy from user space to the appropriate buffer */
174 if (copy_from_user(kbuf, buf, copy)) {
175 result = -EFAULT;
176 break;
177 }
178
179 spin_lock_irqsave(&data->lock, irq_flags);
Sara Birdad284972013-05-20 15:32:49 -0400180 /*
181 * clear the buffer empty flag, and signal the emulator
182 * to start writing the buffer
183 */
Alan Cox2e82b832013-01-23 14:13:52 +0000184 if (kbuf == data->write_buffer1) {
185 data->buffer_status &= ~AUDIO_INT_WRITE_BUFFER_1_EMPTY;
186 AUDIO_WRITE(data, AUDIO_WRITE_BUFFER_1, copy);
187 } else {
188 data->buffer_status &= ~AUDIO_INT_WRITE_BUFFER_2_EMPTY;
189 AUDIO_WRITE(data, AUDIO_WRITE_BUFFER_2, copy);
190 }
191 spin_unlock_irqrestore(&data->lock, irq_flags);
192
193 buf += copy;
194 result += copy;
195 count -= copy;
196 }
197 return result;
198}
199
200static int goldfish_audio_open(struct inode *ip, struct file *fp)
201{
202 if (!audio_data)
203 return -ENODEV;
204
205 if (atomic_inc_return(&open_count) == 1) {
206 fp->private_data = audio_data;
207 audio_data->buffer_status = (AUDIO_INT_WRITE_BUFFER_1_EMPTY |
208 AUDIO_INT_WRITE_BUFFER_2_EMPTY);
209 AUDIO_WRITE(audio_data, AUDIO_INT_ENABLE, AUDIO_INT_MASK);
210 return 0;
Alan Cox2e82b832013-01-23 14:13:52 +0000211 }
Hoang Tran92271552014-06-16 15:18:37 +0800212
213 atomic_dec(&open_count);
214 return -EBUSY;
Alan Cox2e82b832013-01-23 14:13:52 +0000215}
216
217static int goldfish_audio_release(struct inode *ip, struct file *fp)
218{
219 atomic_dec(&open_count);
220 /* FIXME: surely this is wrong for the multi-opened case */
221 AUDIO_WRITE(audio_data, AUDIO_INT_ENABLE, 0);
222 return 0;
223}
224
225static long goldfish_audio_ioctl(struct file *fp, unsigned int cmd,
Loic Pefferkorn8f52e262014-09-03 22:23:13 +0200226 unsigned long arg)
Alan Cox2e82b832013-01-23 14:13:52 +0000227{
228 /* temporary workaround, until we switch to the ALSA API */
229 if (cmd == 315)
230 return -1;
Hoang Tran92271552014-06-16 15:18:37 +0800231
232 return 0;
Alan Cox2e82b832013-01-23 14:13:52 +0000233}
234
235static irqreturn_t goldfish_audio_interrupt(int irq, void *dev_id)
236{
237 unsigned long irq_flags;
238 struct goldfish_audio *data = dev_id;
239 u32 status;
240
241 spin_lock_irqsave(&data->lock, irq_flags);
242
243 /* read buffer status flags */
244 status = AUDIO_READ(data, AUDIO_INT_STATUS);
245 status &= AUDIO_INT_MASK;
Sara Birdad284972013-05-20 15:32:49 -0400246 /*
247 * if buffers are newly empty, wake up blocked
248 * goldfish_audio_write() call
249 */
Alan Cox2e82b832013-01-23 14:13:52 +0000250 if (status) {
251 data->buffer_status = status;
252 wake_up(&data->wait);
253 }
254
255 spin_unlock_irqrestore(&data->lock, irq_flags);
256 return status ? IRQ_HANDLED : IRQ_NONE;
257}
258
259/* file operations for /dev/eac */
260static const struct file_operations goldfish_audio_fops = {
261 .owner = THIS_MODULE,
262 .read = goldfish_audio_read,
263 .write = goldfish_audio_write,
264 .open = goldfish_audio_open,
265 .release = goldfish_audio_release,
266 .unlocked_ioctl = goldfish_audio_ioctl,
267};
268
269static struct miscdevice goldfish_audio_device = {
270 .minor = MISC_DYNAMIC_MINOR,
271 .name = "eac",
272 .fops = &goldfish_audio_fops,
273};
274
275static int goldfish_audio_probe(struct platform_device *pdev)
276{
277 int ret;
278 struct resource *r;
279 struct goldfish_audio *data;
280 dma_addr_t buf_addr;
281
Himangi Saraogi85f28332014-07-04 22:49:57 +0530282 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
Somya Anand6e3f3bb2015-03-16 19:34:09 +0530283 if (!data)
Himangi Saraogi85f28332014-07-04 22:49:57 +0530284 return -ENOMEM;
Alan Cox2e82b832013-01-23 14:13:52 +0000285 spin_lock_init(&data->lock);
286 init_waitqueue_head(&data->wait);
287 platform_set_drvdata(pdev, data);
288
289 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Christian Colic269ad6e2015-11-19 09:47:24 +0100290 if (!r) {
Alan Cox2e82b832013-01-23 14:13:52 +0000291 dev_err(&pdev->dev, "platform_get_resource failed\n");
Himangi Saraogi85f28332014-07-04 22:49:57 +0530292 return -ENODEV;
Alan Cox2e82b832013-01-23 14:13:52 +0000293 }
Himangi Saraogi85f28332014-07-04 22:49:57 +0530294 data->reg_base = devm_ioremap(&pdev->dev, r->start, PAGE_SIZE);
Christian Colic269ad6e2015-11-19 09:47:24 +0100295 if (!data->reg_base)
Himangi Saraogi85f28332014-07-04 22:49:57 +0530296 return -ENOMEM;
Alan Cox2e82b832013-01-23 14:13:52 +0000297
298 data->irq = platform_get_irq(pdev, 0);
299 if (data->irq < 0) {
300 dev_err(&pdev->dev, "platform_get_irq failed\n");
Himangi Saraogi85f28332014-07-04 22:49:57 +0530301 return -ENODEV;
Alan Cox2e82b832013-01-23 14:13:52 +0000302 }
Himangi Saraogi85f28332014-07-04 22:49:57 +0530303 data->buffer_virt = dmam_alloc_coherent(&pdev->dev,
Alan Cox2e82b832013-01-23 14:13:52 +0000304 COMBINED_BUFFER_SIZE, &buf_addr, GFP_KERNEL);
Christian Colic269ad6e2015-11-19 09:47:24 +0100305 if (!data->buffer_virt) {
Alan Cox2e82b832013-01-23 14:13:52 +0000306 dev_err(&pdev->dev, "allocate buffer failed\n");
Himangi Saraogi85f28332014-07-04 22:49:57 +0530307 return -ENOMEM;
Alan Cox2e82b832013-01-23 14:13:52 +0000308 }
309 data->buffer_phys = buf_addr;
310 data->write_buffer1 = data->buffer_virt;
311 data->write_buffer2 = data->buffer_virt + WRITE_BUFFER_SIZE;
312 data->read_buffer = data->buffer_virt + 2 * WRITE_BUFFER_SIZE;
313
Himangi Saraogi85f28332014-07-04 22:49:57 +0530314 ret = devm_request_irq(&pdev->dev, data->irq, goldfish_audio_interrupt,
Loic Pefferkorn8f52e262014-09-03 22:23:13 +0200315 IRQF_SHARED, pdev->name, data);
Alan Cox2e82b832013-01-23 14:13:52 +0000316 if (ret) {
317 dev_err(&pdev->dev, "request_irq failed\n");
Himangi Saraogi85f28332014-07-04 22:49:57 +0530318 return ret;
Alan Cox2e82b832013-01-23 14:13:52 +0000319 }
320
321 ret = misc_register(&goldfish_audio_device);
322 if (ret) {
323 dev_err(&pdev->dev,
324 "misc_register returned %d in goldfish_audio_init\n",
325 ret);
Himangi Saraogi85f28332014-07-04 22:49:57 +0530326 return ret;
Alan Cox2e82b832013-01-23 14:13:52 +0000327 }
328
Alanf6279712014-05-12 16:56:56 +0100329 AUDIO_WRITE64(data, AUDIO_SET_WRITE_BUFFER_1,
Loic Pefferkorn8f52e262014-09-03 22:23:13 +0200330 AUDIO_SET_WRITE_BUFFER_1_HIGH, buf_addr);
Alanf6279712014-05-12 16:56:56 +0100331 buf_addr += WRITE_BUFFER_SIZE;
Jun Tianc3c1ba62014-04-28 20:47:03 +0100332
Alanf6279712014-05-12 16:56:56 +0100333 AUDIO_WRITE64(data, AUDIO_SET_WRITE_BUFFER_2,
Loic Pefferkorn8f52e262014-09-03 22:23:13 +0200334 AUDIO_SET_WRITE_BUFFER_2_HIGH, buf_addr);
Jun Tianc3c1ba62014-04-28 20:47:03 +0100335
Alanf6279712014-05-12 16:56:56 +0100336 buf_addr += WRITE_BUFFER_SIZE;
Alan Cox2e82b832013-01-23 14:13:52 +0000337
338 data->read_supported = AUDIO_READ(data, AUDIO_READ_SUPPORTED);
339 if (data->read_supported)
Alanf6279712014-05-12 16:56:56 +0100340 AUDIO_WRITE64(data, AUDIO_SET_READ_BUFFER,
Loic Pefferkorn8f52e262014-09-03 22:23:13 +0200341 AUDIO_SET_READ_BUFFER_HIGH, buf_addr);
Alan Cox2e82b832013-01-23 14:13:52 +0000342
343 audio_data = data;
344 return 0;
Alan Cox2e82b832013-01-23 14:13:52 +0000345}
346
347static int goldfish_audio_remove(struct platform_device *pdev)
348{
Alan Cox2e82b832013-01-23 14:13:52 +0000349 misc_deregister(&goldfish_audio_device);
Alan Cox2e82b832013-01-23 14:13:52 +0000350 audio_data = NULL;
351 return 0;
352}
353
Greg Hackmann283ded12016-02-26 19:00:03 +0000354static const struct of_device_id goldfish_audio_of_match[] = {
355 { .compatible = "google,goldfish-audio", },
356 {},
357};
358MODULE_DEVICE_TABLE(of, goldfish_audio_of_match);
359
Yu Ning6ab87582015-03-31 14:41:48 +0800360static const struct acpi_device_id goldfish_audio_acpi_match[] = {
361 { "GFSH0005", 0 },
362 { },
363};
364MODULE_DEVICE_TABLE(acpi, goldfish_audio_acpi_match);
365
Alan Cox2e82b832013-01-23 14:13:52 +0000366static struct platform_driver goldfish_audio_driver = {
367 .probe = goldfish_audio_probe,
368 .remove = goldfish_audio_remove,
369 .driver = {
Greg Hackmann283ded12016-02-26 19:00:03 +0000370 .name = "goldfish_audio",
371 .of_match_table = goldfish_audio_of_match,
Yu Ning6ab87582015-03-31 14:41:48 +0800372 .acpi_match_table = ACPI_PTR(goldfish_audio_acpi_match),
Alan Cox2e82b832013-01-23 14:13:52 +0000373 }
374};
375
376module_platform_driver(goldfish_audio_driver);