Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Gadget Function Driver for USB audio source device |
| 3 | * |
| 4 | * Copyright (C) 2012 Google, Inc. |
| 5 | * |
| 6 | * This software is licensed under the terms of the GNU General Public |
| 7 | * License version 2, as published by the Free Software Foundation, and |
| 8 | * may be copied, distributed, and modified under those terms. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | */ |
| 16 | |
Deepa Madiregama | 52b0ad1 | 2013-03-01 12:04:19 +0530 | [diff] [blame] | 17 | #include <asm/dma.h> |
| 18 | #include <linux/dma-mapping.h> |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 19 | #include <linux/device.h> |
| 20 | #include <linux/usb/audio.h> |
| 21 | #include <linux/wait.h> |
| 22 | #include <sound/core.h> |
| 23 | #include <sound/initval.h> |
| 24 | #include <sound/pcm.h> |
| 25 | |
| 26 | #define SAMPLE_RATE 44100 |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 27 | #define FRAMES_PER_MSEC (SAMPLE_RATE / 1000) |
Mike Lockwood | db2e707 | 2012-05-27 15:41:53 -0700 | [diff] [blame] | 28 | |
Vijayavardhan Vennapusa | e02f8f3 | 2012-10-05 15:45:16 +0530 | [diff] [blame] | 29 | #define IN_EP_MAX_PACKET_SIZE 256 |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 30 | |
| 31 | /* Number of requests to allocate */ |
Mike Lockwood | db2e707 | 2012-05-27 15:41:53 -0700 | [diff] [blame] | 32 | #define IN_EP_REQ_COUNT 4 |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 33 | |
| 34 | #define AUDIO_AC_INTERFACE 0 |
| 35 | #define AUDIO_AS_INTERFACE 1 |
| 36 | #define AUDIO_NUM_INTERFACES 2 |
| 37 | |
| 38 | /* B.3.1 Standard AC Interface Descriptor */ |
| 39 | static struct usb_interface_descriptor audio_source_ac_interface_desc = { |
| 40 | .bLength = USB_DT_INTERFACE_SIZE, |
| 41 | .bDescriptorType = USB_DT_INTERFACE, |
| 42 | .bNumEndpoints = 0, |
| 43 | .bInterfaceClass = USB_CLASS_AUDIO, |
| 44 | .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL, |
| 45 | }; |
| 46 | |
| 47 | |
| 48 | #define UAC_DT_AC_HEADER_LENGTH UAC_DT_AC_HEADER_SIZE(AUDIO_NUM_INTERFACES) |
| 49 | /* 1 input terminal, 1 output terminal and 1 feature unit */ |
| 50 | #define UAC_DT_TOTAL_LENGTH (UAC_DT_AC_HEADER_LENGTH \ |
| 51 | + UAC_DT_INPUT_TERMINAL_SIZE + UAC_DT_OUTPUT_TERMINAL_SIZE \ |
| 52 | + UAC_DT_FEATURE_UNIT_SIZE(0)) |
| 53 | /* B.3.2 Class-Specific AC Interface Descriptor */ |
| 54 | static struct uac1_ac_header_descriptor_2 audio_source_ac_header_desc = { |
| 55 | .bLength = UAC_DT_AC_HEADER_LENGTH, |
| 56 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 57 | .bDescriptorSubtype = UAC_HEADER, |
| 58 | .bcdADC = __constant_cpu_to_le16(0x0100), |
| 59 | .wTotalLength = __constant_cpu_to_le16(UAC_DT_TOTAL_LENGTH), |
| 60 | .bInCollection = AUDIO_NUM_INTERFACES, |
| 61 | .baInterfaceNr = { |
| 62 | [0] = AUDIO_AC_INTERFACE, |
| 63 | [1] = AUDIO_AS_INTERFACE, |
| 64 | } |
| 65 | }; |
| 66 | |
| 67 | #define INPUT_TERMINAL_ID 1 |
| 68 | static struct uac_input_terminal_descriptor input_terminal_desc = { |
| 69 | .bLength = UAC_DT_INPUT_TERMINAL_SIZE, |
| 70 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 71 | .bDescriptorSubtype = UAC_INPUT_TERMINAL, |
| 72 | .bTerminalID = INPUT_TERMINAL_ID, |
| 73 | .wTerminalType = UAC_INPUT_TERMINAL_MICROPHONE, |
| 74 | .bAssocTerminal = 0, |
| 75 | .wChannelConfig = 0x3, |
| 76 | }; |
| 77 | |
| 78 | DECLARE_UAC_FEATURE_UNIT_DESCRIPTOR(0); |
| 79 | |
| 80 | #define FEATURE_UNIT_ID 2 |
| 81 | static struct uac_feature_unit_descriptor_0 feature_unit_desc = { |
| 82 | .bLength = UAC_DT_FEATURE_UNIT_SIZE(0), |
| 83 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 84 | .bDescriptorSubtype = UAC_FEATURE_UNIT, |
| 85 | .bUnitID = FEATURE_UNIT_ID, |
| 86 | .bSourceID = INPUT_TERMINAL_ID, |
| 87 | .bControlSize = 2, |
| 88 | }; |
| 89 | |
| 90 | #define OUTPUT_TERMINAL_ID 3 |
| 91 | static struct uac1_output_terminal_descriptor output_terminal_desc = { |
| 92 | .bLength = UAC_DT_OUTPUT_TERMINAL_SIZE, |
| 93 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 94 | .bDescriptorSubtype = UAC_OUTPUT_TERMINAL, |
| 95 | .bTerminalID = OUTPUT_TERMINAL_ID, |
| 96 | .wTerminalType = UAC_TERMINAL_STREAMING, |
| 97 | .bAssocTerminal = FEATURE_UNIT_ID, |
| 98 | .bSourceID = FEATURE_UNIT_ID, |
| 99 | }; |
| 100 | |
| 101 | /* B.4.1 Standard AS Interface Descriptor */ |
| 102 | static struct usb_interface_descriptor as_interface_alt_0_desc = { |
| 103 | .bLength = USB_DT_INTERFACE_SIZE, |
| 104 | .bDescriptorType = USB_DT_INTERFACE, |
| 105 | .bAlternateSetting = 0, |
| 106 | .bNumEndpoints = 0, |
| 107 | .bInterfaceClass = USB_CLASS_AUDIO, |
| 108 | .bInterfaceSubClass = USB_SUBCLASS_AUDIOSTREAMING, |
| 109 | }; |
| 110 | |
| 111 | static struct usb_interface_descriptor as_interface_alt_1_desc = { |
| 112 | .bLength = USB_DT_INTERFACE_SIZE, |
| 113 | .bDescriptorType = USB_DT_INTERFACE, |
| 114 | .bAlternateSetting = 1, |
| 115 | .bNumEndpoints = 1, |
| 116 | .bInterfaceClass = USB_CLASS_AUDIO, |
| 117 | .bInterfaceSubClass = USB_SUBCLASS_AUDIOSTREAMING, |
| 118 | }; |
| 119 | |
| 120 | /* B.4.2 Class-Specific AS Interface Descriptor */ |
| 121 | static struct uac1_as_header_descriptor as_header_desc = { |
| 122 | .bLength = UAC_DT_AS_HEADER_SIZE, |
| 123 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 124 | .bDescriptorSubtype = UAC_AS_GENERAL, |
| 125 | .bTerminalLink = INPUT_TERMINAL_ID, |
| 126 | .bDelay = 1, |
| 127 | .wFormatTag = UAC_FORMAT_TYPE_I_PCM, |
| 128 | }; |
| 129 | |
| 130 | static struct uac_format_type_i_discrete_descriptor_1 as_type_i_desc = { |
| 131 | .bLength = UAC_FORMAT_TYPE_I_DISCRETE_DESC_SIZE(1), |
| 132 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 133 | .bDescriptorSubtype = UAC_FORMAT_TYPE, |
| 134 | .bFormatType = UAC_FORMAT_TYPE_I, |
| 135 | .bSubframeSize = 2, |
| 136 | .bBitResolution = 16, |
| 137 | .bSamFreqType = 1, |
| 138 | }; |
| 139 | |
| 140 | /* Standard ISO IN Endpoint Descriptor for highspeed */ |
| 141 | static struct usb_endpoint_descriptor hs_as_in_ep_desc = { |
| 142 | .bLength = USB_DT_ENDPOINT_AUDIO_SIZE, |
| 143 | .bDescriptorType = USB_DT_ENDPOINT, |
| 144 | .bEndpointAddress = USB_DIR_IN, |
| 145 | .bmAttributes = USB_ENDPOINT_SYNC_SYNC |
| 146 | | USB_ENDPOINT_XFER_ISOC, |
| 147 | .wMaxPacketSize = __constant_cpu_to_le16(IN_EP_MAX_PACKET_SIZE), |
| 148 | .bInterval = 4, /* poll 1 per millisecond */ |
| 149 | }; |
| 150 | |
| 151 | /* Standard ISO IN Endpoint Descriptor for highspeed */ |
| 152 | static struct usb_endpoint_descriptor fs_as_in_ep_desc = { |
| 153 | .bLength = USB_DT_ENDPOINT_AUDIO_SIZE, |
| 154 | .bDescriptorType = USB_DT_ENDPOINT, |
| 155 | .bEndpointAddress = USB_DIR_IN, |
| 156 | .bmAttributes = USB_ENDPOINT_SYNC_SYNC |
| 157 | | USB_ENDPOINT_XFER_ISOC, |
| 158 | .wMaxPacketSize = __constant_cpu_to_le16(IN_EP_MAX_PACKET_SIZE), |
| 159 | .bInterval = 1, /* poll 1 per millisecond */ |
| 160 | }; |
| 161 | |
| 162 | /* Class-specific AS ISO OUT Endpoint Descriptor */ |
| 163 | static struct uac_iso_endpoint_descriptor as_iso_in_desc = { |
| 164 | .bLength = UAC_ISO_ENDPOINT_DESC_SIZE, |
| 165 | .bDescriptorType = USB_DT_CS_ENDPOINT, |
| 166 | .bDescriptorSubtype = UAC_EP_GENERAL, |
| 167 | .bmAttributes = 1, |
| 168 | .bLockDelayUnits = 1, |
| 169 | .wLockDelay = __constant_cpu_to_le16(1), |
| 170 | }; |
| 171 | |
| 172 | static struct usb_descriptor_header *hs_audio_desc[] = { |
| 173 | (struct usb_descriptor_header *)&audio_source_ac_interface_desc, |
| 174 | (struct usb_descriptor_header *)&audio_source_ac_header_desc, |
| 175 | |
| 176 | (struct usb_descriptor_header *)&input_terminal_desc, |
| 177 | (struct usb_descriptor_header *)&output_terminal_desc, |
| 178 | (struct usb_descriptor_header *)&feature_unit_desc, |
| 179 | |
| 180 | (struct usb_descriptor_header *)&as_interface_alt_0_desc, |
| 181 | (struct usb_descriptor_header *)&as_interface_alt_1_desc, |
| 182 | (struct usb_descriptor_header *)&as_header_desc, |
| 183 | |
| 184 | (struct usb_descriptor_header *)&as_type_i_desc, |
| 185 | |
| 186 | (struct usb_descriptor_header *)&hs_as_in_ep_desc, |
| 187 | (struct usb_descriptor_header *)&as_iso_in_desc, |
| 188 | NULL, |
| 189 | }; |
| 190 | |
| 191 | static struct usb_descriptor_header *fs_audio_desc[] = { |
| 192 | (struct usb_descriptor_header *)&audio_source_ac_interface_desc, |
| 193 | (struct usb_descriptor_header *)&audio_source_ac_header_desc, |
| 194 | |
| 195 | (struct usb_descriptor_header *)&input_terminal_desc, |
| 196 | (struct usb_descriptor_header *)&output_terminal_desc, |
| 197 | (struct usb_descriptor_header *)&feature_unit_desc, |
| 198 | |
| 199 | (struct usb_descriptor_header *)&as_interface_alt_0_desc, |
| 200 | (struct usb_descriptor_header *)&as_interface_alt_1_desc, |
| 201 | (struct usb_descriptor_header *)&as_header_desc, |
| 202 | |
| 203 | (struct usb_descriptor_header *)&as_type_i_desc, |
| 204 | |
| 205 | (struct usb_descriptor_header *)&fs_as_in_ep_desc, |
| 206 | (struct usb_descriptor_header *)&as_iso_in_desc, |
| 207 | NULL, |
| 208 | }; |
| 209 | |
| 210 | static struct snd_pcm_hardware audio_hw_info = { |
| 211 | .info = SNDRV_PCM_INFO_MMAP | |
| 212 | SNDRV_PCM_INFO_MMAP_VALID | |
| 213 | SNDRV_PCM_INFO_BATCH | |
| 214 | SNDRV_PCM_INFO_INTERLEAVED | |
| 215 | SNDRV_PCM_INFO_BLOCK_TRANSFER, |
| 216 | |
| 217 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 218 | .channels_min = 2, |
| 219 | .channels_max = 2, |
| 220 | .rate_min = SAMPLE_RATE, |
| 221 | .rate_max = SAMPLE_RATE, |
| 222 | |
| 223 | .buffer_bytes_max = 1024 * 1024, |
| 224 | .period_bytes_min = 64, |
| 225 | .period_bytes_max = 512 * 1024, |
| 226 | .periods_min = 2, |
| 227 | .periods_max = 1024, |
| 228 | }; |
| 229 | |
| 230 | /*-------------------------------------------------------------------------*/ |
| 231 | |
| 232 | struct audio_source_config { |
| 233 | int card; |
| 234 | int device; |
| 235 | }; |
| 236 | |
| 237 | struct audio_dev { |
| 238 | struct usb_function func; |
| 239 | struct snd_card *card; |
| 240 | struct snd_pcm *pcm; |
| 241 | struct snd_pcm_substream *substream; |
| 242 | |
| 243 | struct list_head idle_reqs; |
| 244 | struct usb_ep *in_ep; |
| 245 | |
| 246 | spinlock_t lock; |
| 247 | |
| 248 | /* beginning, end and current position in our buffer */ |
| 249 | void *buffer_start; |
| 250 | void *buffer_end; |
| 251 | void *buffer_pos; |
| 252 | |
| 253 | /* byte size of a "period" */ |
| 254 | unsigned int period; |
| 255 | /* bytes sent since last call to snd_pcm_period_elapsed */ |
| 256 | unsigned int period_offset; |
| 257 | /* time we started playing */ |
| 258 | ktime_t start_time; |
| 259 | /* number of frames sent since start_time */ |
| 260 | s64 frames_sent; |
Vijayavardhan Vennapusa | 15285e6 | 2013-01-10 12:27:16 +0530 | [diff] [blame] | 261 | |
| 262 | bool audio_ep_enabled; |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 263 | }; |
| 264 | |
| 265 | static inline struct audio_dev *func_to_audio_source(struct usb_function *f) |
| 266 | { |
| 267 | return container_of(f, struct audio_dev, func); |
| 268 | } |
| 269 | |
| 270 | /*-------------------------------------------------------------------------*/ |
| 271 | |
| 272 | static struct usb_request *audio_request_new(struct usb_ep *ep, int buffer_size) |
| 273 | { |
| 274 | struct usb_request *req = usb_ep_alloc_request(ep, GFP_KERNEL); |
| 275 | if (!req) |
| 276 | return NULL; |
| 277 | |
| 278 | req->buf = kmalloc(buffer_size, GFP_KERNEL); |
| 279 | if (!req->buf) { |
| 280 | usb_ep_free_request(ep, req); |
| 281 | return NULL; |
| 282 | } |
| 283 | req->length = buffer_size; |
| 284 | return req; |
| 285 | } |
| 286 | |
| 287 | static void audio_request_free(struct usb_request *req, struct usb_ep *ep) |
| 288 | { |
| 289 | if (req) { |
| 290 | kfree(req->buf); |
| 291 | usb_ep_free_request(ep, req); |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | static void audio_req_put(struct audio_dev *audio, struct usb_request *req) |
| 296 | { |
| 297 | unsigned long flags; |
| 298 | |
| 299 | spin_lock_irqsave(&audio->lock, flags); |
| 300 | list_add_tail(&req->list, &audio->idle_reqs); |
| 301 | spin_unlock_irqrestore(&audio->lock, flags); |
| 302 | } |
| 303 | |
| 304 | static struct usb_request *audio_req_get(struct audio_dev *audio) |
| 305 | { |
| 306 | unsigned long flags; |
| 307 | struct usb_request *req; |
| 308 | |
| 309 | spin_lock_irqsave(&audio->lock, flags); |
| 310 | if (list_empty(&audio->idle_reqs)) { |
| 311 | req = 0; |
| 312 | } else { |
| 313 | req = list_first_entry(&audio->idle_reqs, struct usb_request, |
| 314 | list); |
| 315 | list_del(&req->list); |
| 316 | } |
| 317 | spin_unlock_irqrestore(&audio->lock, flags); |
| 318 | return req; |
| 319 | } |
| 320 | |
| 321 | /* send the appropriate number of packets to match our bitrate */ |
| 322 | static void audio_send(struct audio_dev *audio) |
| 323 | { |
| 324 | struct snd_pcm_runtime *runtime; |
| 325 | struct usb_request *req; |
| 326 | int length, length1, length2, ret; |
| 327 | s64 msecs; |
| 328 | s64 frames; |
| 329 | ktime_t now; |
| 330 | |
| 331 | /* audio->substream will be null if we have been closed */ |
| 332 | if (!audio->substream) |
| 333 | return; |
| 334 | /* audio->buffer_pos will be null if we have been stopped */ |
| 335 | if (!audio->buffer_pos) |
| 336 | return; |
| 337 | |
| 338 | runtime = audio->substream->runtime; |
| 339 | |
Mike Lockwood | db2e707 | 2012-05-27 15:41:53 -0700 | [diff] [blame] | 340 | /* compute number of frames to send */ |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 341 | now = ktime_get(); |
| 342 | msecs = ktime_to_ns(now) - ktime_to_ns(audio->start_time); |
| 343 | do_div(msecs, 1000000); |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 344 | frames = msecs * SAMPLE_RATE; |
| 345 | do_div(frames, 1000); |
| 346 | |
| 347 | /* Readjust our frames_sent if we fall too far behind. |
| 348 | * If we get too far behind it is better to drop some frames than |
| 349 | * to keep sending data too fast in an attempt to catch up. |
| 350 | */ |
Mike Lockwood | db2e707 | 2012-05-27 15:41:53 -0700 | [diff] [blame] | 351 | if (frames - audio->frames_sent > 10 * FRAMES_PER_MSEC) |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 352 | audio->frames_sent = frames - FRAMES_PER_MSEC; |
| 353 | |
| 354 | frames -= audio->frames_sent; |
| 355 | |
Mike Lockwood | db2e707 | 2012-05-27 15:41:53 -0700 | [diff] [blame] | 356 | /* We need to send something to keep the pipeline going */ |
| 357 | if (frames <= 0) |
| 358 | frames = FRAMES_PER_MSEC; |
| 359 | |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 360 | while (frames > 0) { |
| 361 | req = audio_req_get(audio); |
| 362 | if (!req) |
| 363 | break; |
| 364 | |
| 365 | length = frames_to_bytes(runtime, frames); |
| 366 | if (length > IN_EP_MAX_PACKET_SIZE) |
| 367 | length = IN_EP_MAX_PACKET_SIZE; |
| 368 | |
| 369 | if (audio->buffer_pos + length > audio->buffer_end) |
| 370 | length1 = audio->buffer_end - audio->buffer_pos; |
| 371 | else |
| 372 | length1 = length; |
| 373 | memcpy(req->buf, audio->buffer_pos, length1); |
| 374 | if (length1 < length) { |
| 375 | /* Wrap around and copy remaining length |
| 376 | * at beginning of buffer. |
| 377 | */ |
| 378 | length2 = length - length1; |
| 379 | memcpy(req->buf + length1, audio->buffer_start, |
| 380 | length2); |
| 381 | audio->buffer_pos = audio->buffer_start + length2; |
| 382 | } else { |
| 383 | audio->buffer_pos += length1; |
| 384 | if (audio->buffer_pos >= audio->buffer_end) |
| 385 | audio->buffer_pos = audio->buffer_start; |
| 386 | } |
| 387 | |
| 388 | req->length = length; |
| 389 | ret = usb_ep_queue(audio->in_ep, req, GFP_ATOMIC); |
| 390 | if (ret < 0) { |
| 391 | pr_err("usb_ep_queue failed ret: %d\n", ret); |
| 392 | audio_req_put(audio, req); |
| 393 | break; |
| 394 | } |
| 395 | |
| 396 | frames -= bytes_to_frames(runtime, length); |
| 397 | audio->frames_sent += bytes_to_frames(runtime, length); |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | static void audio_control_complete(struct usb_ep *ep, struct usb_request *req) |
| 402 | { |
| 403 | /* nothing to do here */ |
| 404 | } |
| 405 | |
| 406 | static void audio_data_complete(struct usb_ep *ep, struct usb_request *req) |
| 407 | { |
| 408 | struct audio_dev *audio = req->context; |
| 409 | |
| 410 | pr_debug("audio_data_complete req->status %d req->actual %d\n", |
| 411 | req->status, req->actual); |
| 412 | |
| 413 | audio_req_put(audio, req); |
| 414 | |
Mike Lockwood | cbc8ed8 | 2012-08-02 11:22:05 -0700 | [diff] [blame] | 415 | if (!audio->buffer_start || req->status) |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 416 | return; |
| 417 | |
| 418 | audio->period_offset += req->actual; |
| 419 | if (audio->period_offset >= audio->period) { |
| 420 | snd_pcm_period_elapsed(audio->substream); |
| 421 | audio->period_offset = 0; |
| 422 | } |
| 423 | audio_send(audio); |
| 424 | } |
| 425 | |
| 426 | static int audio_source_set_endpoint_req(struct usb_function *f, |
| 427 | const struct usb_ctrlrequest *ctrl) |
| 428 | { |
| 429 | int value = -EOPNOTSUPP; |
| 430 | u16 ep = le16_to_cpu(ctrl->wIndex); |
| 431 | u16 len = le16_to_cpu(ctrl->wLength); |
| 432 | u16 w_value = le16_to_cpu(ctrl->wValue); |
| 433 | |
| 434 | pr_debug("bRequest 0x%x, w_value 0x%04x, len %d, endpoint %d\n", |
| 435 | ctrl->bRequest, w_value, len, ep); |
| 436 | |
| 437 | switch (ctrl->bRequest) { |
| 438 | case UAC_SET_CUR: |
| 439 | case UAC_SET_MIN: |
| 440 | case UAC_SET_MAX: |
| 441 | case UAC_SET_RES: |
| 442 | value = len; |
| 443 | break; |
| 444 | default: |
| 445 | break; |
| 446 | } |
| 447 | |
| 448 | return value; |
| 449 | } |
| 450 | |
| 451 | static int audio_source_get_endpoint_req(struct usb_function *f, |
| 452 | const struct usb_ctrlrequest *ctrl) |
| 453 | { |
| 454 | struct usb_composite_dev *cdev = f->config->cdev; |
| 455 | int value = -EOPNOTSUPP; |
| 456 | u8 ep = ((le16_to_cpu(ctrl->wIndex) >> 8) & 0xFF); |
| 457 | u16 len = le16_to_cpu(ctrl->wLength); |
| 458 | u16 w_value = le16_to_cpu(ctrl->wValue); |
| 459 | u8 *buf = cdev->req->buf; |
| 460 | |
| 461 | pr_debug("bRequest 0x%x, w_value 0x%04x, len %d, endpoint %d\n", |
| 462 | ctrl->bRequest, w_value, len, ep); |
| 463 | |
| 464 | if (w_value == UAC_EP_CS_ATTR_SAMPLE_RATE << 8) { |
| 465 | switch (ctrl->bRequest) { |
| 466 | case UAC_GET_CUR: |
| 467 | case UAC_GET_MIN: |
| 468 | case UAC_GET_MAX: |
| 469 | case UAC_GET_RES: |
| 470 | /* return our sample rate */ |
| 471 | buf[0] = (u8)SAMPLE_RATE; |
| 472 | buf[1] = (u8)(SAMPLE_RATE >> 8); |
| 473 | buf[2] = (u8)(SAMPLE_RATE >> 16); |
| 474 | value = 3; |
| 475 | break; |
| 476 | default: |
| 477 | break; |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | return value; |
| 482 | } |
| 483 | |
| 484 | static int |
| 485 | audio_setup(struct usb_function *f, const struct usb_ctrlrequest *ctrl) |
| 486 | { |
| 487 | struct usb_composite_dev *cdev = f->config->cdev; |
| 488 | struct usb_request *req = cdev->req; |
| 489 | int value = -EOPNOTSUPP; |
| 490 | u16 w_index = le16_to_cpu(ctrl->wIndex); |
| 491 | u16 w_value = le16_to_cpu(ctrl->wValue); |
| 492 | u16 w_length = le16_to_cpu(ctrl->wLength); |
| 493 | |
| 494 | /* composite driver infrastructure handles everything; interface |
| 495 | * activation uses set_alt(). |
| 496 | */ |
| 497 | switch (ctrl->bRequestType) { |
| 498 | case USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT: |
| 499 | value = audio_source_set_endpoint_req(f, ctrl); |
| 500 | break; |
| 501 | |
| 502 | case USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_ENDPOINT: |
| 503 | value = audio_source_get_endpoint_req(f, ctrl); |
| 504 | break; |
| 505 | } |
| 506 | |
| 507 | /* respond with data transfer or status phase? */ |
| 508 | if (value >= 0) { |
| 509 | pr_debug("audio req%02x.%02x v%04x i%04x l%d\n", |
| 510 | ctrl->bRequestType, ctrl->bRequest, |
| 511 | w_value, w_index, w_length); |
| 512 | req->zero = 0; |
| 513 | req->length = value; |
| 514 | req->complete = audio_control_complete; |
| 515 | value = usb_ep_queue(cdev->gadget->ep0, req, GFP_ATOMIC); |
| 516 | if (value < 0) |
| 517 | pr_err("audio response on err %d\n", value); |
| 518 | } |
| 519 | |
| 520 | /* device either stalls (value < 0) or reports success */ |
| 521 | return value; |
| 522 | } |
| 523 | |
| 524 | static int audio_set_alt(struct usb_function *f, unsigned intf, unsigned alt) |
| 525 | { |
| 526 | struct audio_dev *audio = func_to_audio_source(f); |
| 527 | struct usb_composite_dev *cdev = f->config->cdev; |
| 528 | int ret; |
| 529 | |
| 530 | pr_debug("audio_set_alt intf %d, alt %d\n", intf, alt); |
| 531 | |
Vijayavardhan Vennapusa | 15285e6 | 2013-01-10 12:27:16 +0530 | [diff] [blame] | 532 | if (intf == as_interface_alt_1_desc.bInterfaceNumber) { |
| 533 | if (alt && !audio->audio_ep_enabled) { |
| 534 | ret = config_ep_by_speed(cdev->gadget, f, audio->in_ep); |
| 535 | if (ret) { |
| 536 | audio->in_ep->desc = NULL; |
| 537 | ERROR(cdev, "config_ep fail ep %s, result %d\n", |
| 538 | audio->in_ep->name, ret); |
| 539 | return ret; |
| 540 | } |
| 541 | ret = usb_ep_enable(audio->in_ep); |
| 542 | if (ret) { |
| 543 | ERROR(cdev, "failedto enable ep%s, result %d\n", |
| 544 | audio->in_ep->name, ret); |
| 545 | return ret; |
| 546 | } |
| 547 | audio->audio_ep_enabled = true; |
| 548 | } else if (!alt && audio->audio_ep_enabled) { |
| 549 | usb_ep_disable(audio->in_ep); |
| 550 | audio->audio_ep_enabled = false; |
| 551 | } |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 552 | } |
| 553 | return 0; |
| 554 | } |
| 555 | |
| 556 | static void audio_disable(struct usb_function *f) |
| 557 | { |
| 558 | struct audio_dev *audio = func_to_audio_source(f); |
| 559 | |
| 560 | pr_debug("audio_disable\n"); |
Vijayavardhan Vennapusa | 15285e6 | 2013-01-10 12:27:16 +0530 | [diff] [blame] | 561 | if (audio->audio_ep_enabled) { |
| 562 | usb_ep_disable(audio->in_ep); |
| 563 | audio->audio_ep_enabled = false; |
| 564 | } |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | /*-------------------------------------------------------------------------*/ |
| 568 | |
| 569 | static void audio_build_desc(struct audio_dev *audio) |
| 570 | { |
| 571 | u8 *sam_freq; |
| 572 | int rate; |
| 573 | |
| 574 | /* Set channel numbers */ |
| 575 | input_terminal_desc.bNrChannels = 2; |
| 576 | as_type_i_desc.bNrChannels = 2; |
| 577 | |
| 578 | /* Set sample rates */ |
| 579 | rate = SAMPLE_RATE; |
| 580 | sam_freq = as_type_i_desc.tSamFreq[0]; |
| 581 | memcpy(sam_freq, &rate, 3); |
| 582 | } |
| 583 | |
| 584 | /* audio function driver setup/binding */ |
| 585 | static int |
| 586 | audio_bind(struct usb_configuration *c, struct usb_function *f) |
| 587 | { |
| 588 | struct usb_composite_dev *cdev = c->cdev; |
| 589 | struct audio_dev *audio = func_to_audio_source(f); |
| 590 | int status; |
| 591 | struct usb_ep *ep; |
| 592 | struct usb_request *req; |
| 593 | int i; |
| 594 | |
| 595 | audio_build_desc(audio); |
| 596 | |
| 597 | /* allocate instance-specific interface IDs, and patch descriptors */ |
| 598 | status = usb_interface_id(c, f); |
| 599 | if (status < 0) |
| 600 | goto fail; |
| 601 | audio_source_ac_interface_desc.bInterfaceNumber = status; |
| 602 | |
| 603 | status = usb_interface_id(c, f); |
| 604 | if (status < 0) |
| 605 | goto fail; |
| 606 | as_interface_alt_0_desc.bInterfaceNumber = status; |
| 607 | as_interface_alt_1_desc.bInterfaceNumber = status; |
| 608 | |
| 609 | status = -ENODEV; |
| 610 | |
| 611 | /* allocate our endpoint */ |
| 612 | ep = usb_ep_autoconfig(cdev->gadget, &fs_as_in_ep_desc); |
| 613 | if (!ep) |
| 614 | goto fail; |
| 615 | audio->in_ep = ep; |
| 616 | ep->driver_data = audio; /* claim */ |
| 617 | |
| 618 | if (gadget_is_dualspeed(c->cdev->gadget)) |
| 619 | hs_as_in_ep_desc.bEndpointAddress = |
| 620 | fs_as_in_ep_desc.bEndpointAddress; |
| 621 | |
| 622 | for (i = 0, status = 0; i < IN_EP_REQ_COUNT && status == 0; i++) { |
| 623 | req = audio_request_new(ep, IN_EP_MAX_PACKET_SIZE); |
| 624 | if (req) { |
| 625 | req->context = audio; |
| 626 | req->complete = audio_data_complete; |
| 627 | audio_req_put(audio, req); |
| 628 | } else |
| 629 | status = -ENOMEM; |
| 630 | } |
| 631 | |
| 632 | fail: |
| 633 | return status; |
| 634 | } |
| 635 | |
| 636 | static void |
| 637 | audio_unbind(struct usb_configuration *c, struct usb_function *f) |
| 638 | { |
| 639 | struct audio_dev *audio = func_to_audio_source(f); |
| 640 | struct usb_request *req; |
| 641 | |
| 642 | while ((req = audio_req_get(audio))) |
| 643 | audio_request_free(req, audio->in_ep); |
| 644 | |
| 645 | snd_card_free_when_closed(audio->card); |
Mike Lockwood | 785e1af | 2012-09-05 15:23:57 +0530 | [diff] [blame] | 646 | audio->card = NULL; |
| 647 | audio->pcm = NULL; |
| 648 | audio->substream = NULL; |
| 649 | audio->in_ep = NULL; |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | static void audio_pcm_playback_start(struct audio_dev *audio) |
| 653 | { |
| 654 | audio->start_time = ktime_get(); |
| 655 | audio->frames_sent = 0; |
| 656 | audio_send(audio); |
| 657 | } |
| 658 | |
| 659 | static void audio_pcm_playback_stop(struct audio_dev *audio) |
| 660 | { |
| 661 | unsigned long flags; |
| 662 | |
| 663 | spin_lock_irqsave(&audio->lock, flags); |
| 664 | audio->buffer_start = 0; |
| 665 | audio->buffer_end = 0; |
| 666 | audio->buffer_pos = 0; |
| 667 | spin_unlock_irqrestore(&audio->lock, flags); |
| 668 | } |
| 669 | |
| 670 | static int audio_pcm_open(struct snd_pcm_substream *substream) |
| 671 | { |
| 672 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 673 | struct audio_dev *audio = substream->private_data; |
| 674 | |
| 675 | runtime->private_data = audio; |
| 676 | runtime->hw = audio_hw_info; |
| 677 | snd_pcm_limit_hw_rates(runtime); |
| 678 | runtime->hw.channels_max = 2; |
| 679 | |
| 680 | audio->substream = substream; |
| 681 | return 0; |
| 682 | } |
| 683 | |
| 684 | static int audio_pcm_close(struct snd_pcm_substream *substream) |
| 685 | { |
| 686 | struct audio_dev *audio = substream->private_data; |
| 687 | unsigned long flags; |
| 688 | |
| 689 | spin_lock_irqsave(&audio->lock, flags); |
| 690 | audio->substream = NULL; |
| 691 | spin_unlock_irqrestore(&audio->lock, flags); |
| 692 | |
| 693 | return 0; |
| 694 | } |
| 695 | |
| 696 | static int audio_pcm_hw_params(struct snd_pcm_substream *substream, |
| 697 | struct snd_pcm_hw_params *params) |
| 698 | { |
Deepa Madiregama | 52b0ad1 | 2013-03-01 12:04:19 +0530 | [diff] [blame] | 699 | struct snd_dma_buffer *buf = &substream->dma_buffer; |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 700 | unsigned int channels = params_channels(params); |
| 701 | unsigned int rate = params_rate(params); |
| 702 | |
| 703 | if (rate != SAMPLE_RATE) |
| 704 | return -EINVAL; |
| 705 | if (channels != 2) |
| 706 | return -EINVAL; |
| 707 | |
Deepa Madiregama | 52b0ad1 | 2013-03-01 12:04:19 +0530 | [diff] [blame] | 708 | if (!substream->pcm->card->dev->coherent_dma_mask) |
| 709 | substream->pcm->card->dev->coherent_dma_mask = DMA_BIT_MASK(32); |
| 710 | |
| 711 | buf->dev.type = SNDRV_DMA_TYPE_DEV; |
| 712 | buf->dev.dev = substream->pcm->card->dev; |
| 713 | buf->private_data = NULL; |
| 714 | buf->area = dma_alloc_coherent(substream->pcm->card->dev, |
| 715 | params_buffer_bytes(params), |
| 716 | &buf->addr, GFP_KERNEL); |
| 717 | if (!buf->area) |
| 718 | return -ENOMEM; |
| 719 | buf->bytes = params_buffer_bytes(params); |
| 720 | snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer); |
| 721 | return 0; |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | static int audio_pcm_hw_free(struct snd_pcm_substream *substream) |
| 725 | { |
Deepa Madiregama | 52b0ad1 | 2013-03-01 12:04:19 +0530 | [diff] [blame] | 726 | struct snd_dma_buffer *buf = &substream->dma_buffer; |
| 727 | |
| 728 | if (buf->area != NULL) |
| 729 | dma_free_coherent(substream->pcm->card->dev, buf->bytes, |
| 730 | buf->area, buf->addr); |
| 731 | buf->area = NULL; |
| 732 | return 0; |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | static int audio_pcm_prepare(struct snd_pcm_substream *substream) |
| 736 | { |
| 737 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 738 | struct audio_dev *audio = runtime->private_data; |
| 739 | |
| 740 | audio->period = snd_pcm_lib_period_bytes(substream); |
| 741 | audio->period_offset = 0; |
| 742 | audio->buffer_start = runtime->dma_area; |
| 743 | audio->buffer_end = audio->buffer_start |
| 744 | + snd_pcm_lib_buffer_bytes(substream); |
| 745 | audio->buffer_pos = audio->buffer_start; |
| 746 | |
| 747 | return 0; |
| 748 | } |
| 749 | |
| 750 | static snd_pcm_uframes_t audio_pcm_pointer(struct snd_pcm_substream *substream) |
| 751 | { |
| 752 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 753 | struct audio_dev *audio = runtime->private_data; |
| 754 | ssize_t bytes = audio->buffer_pos - audio->buffer_start; |
| 755 | |
| 756 | /* return offset of next frame to fill in our buffer */ |
| 757 | return bytes_to_frames(runtime, bytes); |
| 758 | } |
| 759 | |
| 760 | static int audio_pcm_playback_trigger(struct snd_pcm_substream *substream, |
| 761 | int cmd) |
| 762 | { |
| 763 | struct audio_dev *audio = substream->runtime->private_data; |
| 764 | int ret = 0; |
| 765 | |
| 766 | switch (cmd) { |
| 767 | case SNDRV_PCM_TRIGGER_START: |
| 768 | case SNDRV_PCM_TRIGGER_RESUME: |
| 769 | audio_pcm_playback_start(audio); |
| 770 | break; |
| 771 | |
| 772 | case SNDRV_PCM_TRIGGER_STOP: |
| 773 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 774 | audio_pcm_playback_stop(audio); |
| 775 | break; |
| 776 | |
| 777 | default: |
| 778 | ret = -EINVAL; |
| 779 | } |
| 780 | |
| 781 | return ret; |
| 782 | } |
| 783 | |
Deepa Madiregama | 52b0ad1 | 2013-03-01 12:04:19 +0530 | [diff] [blame] | 784 | static int audio_pcm_mmap(struct snd_pcm_substream *substream, |
| 785 | struct vm_area_struct *vma) |
| 786 | { |
| 787 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 788 | |
| 789 | if (runtime->dma_addr && runtime->dma_bytes) { |
| 790 | return dma_mmap_coherent(substream->pcm->card->dev, vma, |
| 791 | runtime->dma_area, |
| 792 | runtime->dma_addr, |
| 793 | runtime->dma_bytes); |
| 794 | } else { |
| 795 | pr_err("Physical address or size of buf is NULL"); |
| 796 | return -EINVAL; |
| 797 | } |
| 798 | } |
| 799 | |
Mike Lockwood | 785e1af | 2012-09-05 15:23:57 +0530 | [diff] [blame] | 800 | static struct audio_dev _audio_dev = { |
| 801 | .func = { |
| 802 | .name = "audio_source", |
| 803 | .bind = audio_bind, |
| 804 | .unbind = audio_unbind, |
| 805 | .set_alt = audio_set_alt, |
| 806 | .setup = audio_setup, |
| 807 | .disable = audio_disable, |
| 808 | .descriptors = fs_audio_desc, |
| 809 | .hs_descriptors = hs_audio_desc, |
| 810 | }, |
| 811 | .lock = __SPIN_LOCK_UNLOCKED(_audio_dev.lock), |
| 812 | .idle_reqs = LIST_HEAD_INIT(_audio_dev.idle_reqs), |
| 813 | }; |
| 814 | |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 815 | static struct snd_pcm_ops audio_playback_ops = { |
| 816 | .open = audio_pcm_open, |
| 817 | .close = audio_pcm_close, |
| 818 | .ioctl = snd_pcm_lib_ioctl, |
| 819 | .hw_params = audio_pcm_hw_params, |
| 820 | .hw_free = audio_pcm_hw_free, |
| 821 | .prepare = audio_pcm_prepare, |
| 822 | .trigger = audio_pcm_playback_trigger, |
| 823 | .pointer = audio_pcm_pointer, |
Deepa Madiregama | 52b0ad1 | 2013-03-01 12:04:19 +0530 | [diff] [blame] | 824 | .mmap = audio_pcm_mmap, |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 825 | }; |
| 826 | |
| 827 | int audio_source_bind_config(struct usb_configuration *c, |
| 828 | struct audio_source_config *config) |
| 829 | { |
| 830 | struct audio_dev *audio; |
| 831 | struct snd_card *card; |
| 832 | struct snd_pcm *pcm; |
| 833 | int err; |
| 834 | |
| 835 | config->card = -1; |
| 836 | config->device = -1; |
| 837 | |
Mike Lockwood | 785e1af | 2012-09-05 15:23:57 +0530 | [diff] [blame] | 838 | audio = &_audio_dev; |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 839 | |
| 840 | err = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1, |
| 841 | THIS_MODULE, 0, &card); |
| 842 | if (err) |
Mike Lockwood | 785e1af | 2012-09-05 15:23:57 +0530 | [diff] [blame] | 843 | return err; |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 844 | |
| 845 | snd_card_set_dev(card, &c->cdev->gadget->dev); |
| 846 | |
| 847 | err = snd_pcm_new(card, "USB audio source", 0, 1, 0, &pcm); |
| 848 | if (err) |
| 849 | goto pcm_fail; |
| 850 | pcm->private_data = audio; |
| 851 | pcm->info_flags = 0; |
| 852 | audio->pcm = pcm; |
| 853 | |
| 854 | strlcpy(pcm->name, "USB gadget audio", sizeof(pcm->name)); |
| 855 | |
| 856 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &audio_playback_ops); |
| 857 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, |
| 858 | NULL, 0, 64 * 1024); |
| 859 | |
| 860 | strlcpy(card->driver, "audio_source", sizeof(card->driver)); |
| 861 | strlcpy(card->shortname, card->driver, sizeof(card->shortname)); |
| 862 | strlcpy(card->longname, "USB accessory audio source", |
| 863 | sizeof(card->longname)); |
| 864 | |
| 865 | err = snd_card_register(card); |
| 866 | if (err) |
| 867 | goto register_fail; |
| 868 | |
| 869 | err = usb_add_function(c, &audio->func); |
| 870 | if (err) |
| 871 | goto add_fail; |
| 872 | |
| 873 | config->card = pcm->card->number; |
| 874 | config->device = pcm->device; |
| 875 | audio->card = card; |
| 876 | return 0; |
| 877 | |
| 878 | add_fail: |
| 879 | register_fail: |
| 880 | pcm_fail: |
| 881 | snd_card_free(audio->card); |
Mike Lockwood | 1187482 | 2012-08-27 16:43:53 +0530 | [diff] [blame] | 882 | return err; |
| 883 | } |