Duy Truong | 790f06d | 2013-02-13 16:38:12 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2011, The Linux Foundation. All rights reserved. |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/platform_device.h> |
| 14 | #include <linux/err.h> |
| 15 | #include <mach/qdsp6v2/audio_dev_ctl.h> |
| 16 | #include <sound/q6afe.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include "snddev_virtual.h" |
| 19 | |
| 20 | static DEFINE_MUTEX(snddev_virtual_lock); |
| 21 | |
| 22 | static int snddev_virtual_open(struct msm_snddev_info *dev_info) |
| 23 | { |
| 24 | int rc = 0; |
| 25 | |
| 26 | pr_debug("%s\n", __func__); |
| 27 | |
| 28 | mutex_lock(&snddev_virtual_lock); |
| 29 | |
| 30 | if (!dev_info) { |
| 31 | pr_err("%s: NULL dev_info\n", __func__); |
| 32 | |
| 33 | rc = -EINVAL; |
| 34 | goto done; |
| 35 | } |
| 36 | |
| 37 | if (!dev_info->opened) { |
| 38 | rc = afe_start_pseudo_port(dev_info->copp_id); |
| 39 | } else { |
| 40 | pr_err("%s: Pseudo port 0x%x is already open\n", |
| 41 | __func__, dev_info->copp_id); |
| 42 | |
| 43 | rc = -EBUSY; |
| 44 | } |
| 45 | |
| 46 | done: |
| 47 | mutex_unlock(&snddev_virtual_lock); |
| 48 | |
| 49 | return rc; |
| 50 | } |
| 51 | |
| 52 | static int snddev_virtual_close(struct msm_snddev_info *dev_info) |
| 53 | { |
| 54 | int rc = 0; |
| 55 | |
| 56 | pr_debug("%s\n", __func__); |
| 57 | |
| 58 | mutex_lock(&snddev_virtual_lock); |
| 59 | |
| 60 | if (!dev_info) { |
| 61 | pr_err("%s: NULL dev_info\n", __func__); |
| 62 | |
| 63 | rc = -EINVAL; |
| 64 | goto done; |
| 65 | } |
| 66 | |
| 67 | if (dev_info->opened) { |
| 68 | rc = afe_stop_pseudo_port(dev_info->copp_id); |
| 69 | } else { |
| 70 | pr_err("%s: Pseudo port 0x%x is not open\n", |
| 71 | __func__, dev_info->copp_id); |
| 72 | |
| 73 | rc = -EPERM; |
| 74 | } |
| 75 | |
| 76 | done: |
| 77 | mutex_unlock(&snddev_virtual_lock); |
| 78 | |
| 79 | return rc; |
| 80 | } |
| 81 | |
| 82 | static int snddev_virtual_set_freq(struct msm_snddev_info *dev_info, u32 rate) |
| 83 | { |
| 84 | int rc = 0; |
| 85 | |
| 86 | if (!dev_info) |
| 87 | rc = -EINVAL; |
| 88 | |
| 89 | return rate; |
| 90 | } |
| 91 | |
| 92 | static int snddev_virtual_probe(struct platform_device *pdev) |
| 93 | { |
| 94 | int rc = 0; |
| 95 | struct snddev_virtual_data *pdata; |
| 96 | struct msm_snddev_info *dev_info; |
| 97 | |
| 98 | pr_debug("%s\n", __func__); |
| 99 | |
| 100 | if (!pdev || !pdev->dev.platform_data) { |
| 101 | pr_err("%s: Invalid caller\n", __func__); |
| 102 | |
| 103 | rc = -EPERM; |
| 104 | goto done; |
| 105 | } |
| 106 | |
| 107 | pdata = pdev->dev.platform_data; |
| 108 | |
| 109 | dev_info = kmalloc(sizeof(struct msm_snddev_info), GFP_KERNEL); |
| 110 | if (!dev_info) { |
| 111 | pr_err("%s: Out of memory\n", __func__); |
| 112 | |
| 113 | rc = -ENOMEM; |
| 114 | goto done; |
| 115 | } |
| 116 | |
| 117 | dev_info->name = pdata->name; |
| 118 | dev_info->copp_id = pdata->copp_id; |
| 119 | dev_info->private_data = (void *) NULL; |
| 120 | dev_info->dev_ops.open = snddev_virtual_open; |
| 121 | dev_info->dev_ops.close = snddev_virtual_close; |
| 122 | dev_info->dev_ops.set_freq = snddev_virtual_set_freq; |
| 123 | dev_info->capability = pdata->capability; |
| 124 | dev_info->sample_rate = 48000; |
| 125 | dev_info->opened = 0; |
| 126 | dev_info->sessions = 0; |
| 127 | |
| 128 | msm_snddev_register(dev_info); |
| 129 | |
| 130 | done: |
| 131 | return rc; |
| 132 | } |
| 133 | |
| 134 | static int snddev_virtual_remove(struct platform_device *pdev) |
| 135 | { |
| 136 | return 0; |
| 137 | } |
| 138 | |
| 139 | static struct platform_driver snddev_virtual_driver = { |
| 140 | .probe = snddev_virtual_probe, |
| 141 | .remove = snddev_virtual_remove, |
| 142 | .driver = { .name = "snddev_virtual" } |
| 143 | }; |
| 144 | |
| 145 | static int __init snddev_virtual_init(void) |
| 146 | { |
| 147 | int rc = 0; |
| 148 | |
| 149 | pr_debug("%s\n", __func__); |
| 150 | |
| 151 | rc = platform_driver_register(&snddev_virtual_driver); |
| 152 | if (IS_ERR_VALUE(rc)) { |
| 153 | pr_err("%s: Platform driver register failure\n", __func__); |
| 154 | |
| 155 | return -ENODEV; |
| 156 | } |
| 157 | |
| 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | static void __exit snddev_virtual_exit(void) |
| 162 | { |
| 163 | platform_driver_unregister(&snddev_virtual_driver); |
| 164 | |
| 165 | return; |
| 166 | } |
| 167 | |
| 168 | module_init(snddev_virtual_init); |
| 169 | module_exit(snddev_virtual_exit); |
| 170 | |
| 171 | MODULE_DESCRIPTION("Virtual Sound Device driver"); |
| 172 | MODULE_LICENSE("GPL v2"); |