Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Driver for Tascam US-X2Y USB soundcards |
| 3 | * |
| 4 | * FPGA Loader + ALSA Startup |
| 5 | * |
| 6 | * Copyright (c) 2003 by Karsten Wiese <annabellesgarden@yahoo.de> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | */ |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/usb.h> |
| 25 | #include <sound/core.h> |
| 26 | #include <sound/memalloc.h> |
| 27 | #include <sound/pcm.h> |
| 28 | #include <sound/hwdep.h> |
| 29 | #include "usx2y.h" |
| 30 | #include "usbusx2y.h" |
| 31 | #include "usX2Yhwdep.h" |
| 32 | |
Nick Piggin | eb415b8 | 2007-12-13 16:16:40 +0100 | [diff] [blame] | 33 | static int snd_us428ctls_vm_fault(struct vm_area_struct *area, |
| 34 | struct vm_fault *vmf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
| 36 | unsigned long offset; |
| 37 | struct page * page; |
| 38 | void *vaddr; |
| 39 | |
Nick Piggin | eb415b8 | 2007-12-13 16:16:40 +0100 | [diff] [blame] | 40 | snd_printdd("ENTER, start %lXh, pgoff %ld\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | area->vm_start, |
Nick Piggin | eb415b8 | 2007-12-13 16:16:40 +0100 | [diff] [blame] | 42 | vmf->pgoff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Nick Piggin | eb415b8 | 2007-12-13 16:16:40 +0100 | [diff] [blame] | 44 | offset = vmf->pgoff << PAGE_SHIFT; |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 45 | vaddr = (char*)((struct usX2Ydev *)area->vm_private_data)->us428ctls_sharedmem + offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | page = virt_to_page(vaddr); |
| 47 | get_page(page); |
Nick Piggin | eb415b8 | 2007-12-13 16:16:40 +0100 | [diff] [blame] | 48 | vmf->page = page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Nick Piggin | eb415b8 | 2007-12-13 16:16:40 +0100 | [diff] [blame] | 50 | snd_printdd("vaddr=%p made us428ctls_vm_fault() page %p\n", |
| 51 | vaddr, page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Nick Piggin | eb415b8 | 2007-12-13 16:16:40 +0100 | [diff] [blame] | 53 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Alexey Dobriyan | f0f37e2 | 2009-09-27 22:29:37 +0400 | [diff] [blame] | 56 | static const struct vm_operations_struct us428ctls_vm_ops = { |
Nick Piggin | eb415b8 | 2007-12-13 16:16:40 +0100 | [diff] [blame] | 57 | .fault = snd_us428ctls_vm_fault, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | }; |
| 59 | |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 60 | static int snd_us428ctls_mmap(struct snd_hwdep * hw, struct file *filp, struct vm_area_struct *area) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
| 62 | unsigned long size = (unsigned long)(area->vm_end - area->vm_start); |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 63 | struct usX2Ydev *us428 = hw->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | // FIXME this hwdep interface is used twice: fpga download and mmap for controlling Lights etc. Maybe better using 2 hwdep devs? |
| 66 | // so as long as the device isn't fully initialised yet we return -EBUSY here. |
Takashi Iwai | cb43237 | 2005-11-17 10:48:52 +0100 | [diff] [blame] | 67 | if (!(us428->chip_status & USX2Y_STAT_CHIP_INIT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | return -EBUSY; |
| 69 | |
| 70 | /* if userspace tries to mmap beyond end of our buffer, fail */ |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 71 | if (size > PAGE_ALIGN(sizeof(struct us428ctls_sharedmem))) { |
| 72 | snd_printd( "%lu > %lu\n", size, (unsigned long)sizeof(struct us428ctls_sharedmem)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | return -EINVAL; |
| 74 | } |
| 75 | |
| 76 | if (!us428->us428ctls_sharedmem) { |
| 77 | init_waitqueue_head(&us428->us428ctls_wait_queue_head); |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 78 | if(!(us428->us428ctls_sharedmem = snd_malloc_pages(sizeof(struct us428ctls_sharedmem), GFP_KERNEL))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | return -ENOMEM; |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 80 | memset(us428->us428ctls_sharedmem, -1, sizeof(struct us428ctls_sharedmem)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | us428->us428ctls_sharedmem->CtlSnapShotLast = -2; |
| 82 | } |
| 83 | area->vm_ops = &us428ctls_vm_ops; |
Nick Piggin | 2f98735 | 2008-02-02 03:08:53 +0100 | [diff] [blame] | 84 | area->vm_flags |= VM_RESERVED | VM_DONTEXPAND; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | area->vm_private_data = hw->private_data; |
| 86 | return 0; |
| 87 | } |
| 88 | |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 89 | static unsigned int snd_us428ctls_poll(struct snd_hwdep *hw, struct file *file, poll_table *wait) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
| 91 | unsigned int mask = 0; |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 92 | struct usX2Ydev *us428 = hw->private_data; |
| 93 | struct us428ctls_sharedmem *shm = us428->us428ctls_sharedmem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | if (us428->chip_status & USX2Y_STAT_CHIP_HUP) |
| 95 | return POLLHUP; |
| 96 | |
| 97 | poll_wait(file, &us428->us428ctls_wait_queue_head, wait); |
| 98 | |
| 99 | if (shm != NULL && shm->CtlSnapShotLast != shm->CtlSnapShotRed) |
| 100 | mask |= POLLIN; |
| 101 | |
| 102 | return mask; |
| 103 | } |
| 104 | |
| 105 | |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 106 | static int snd_usX2Y_hwdep_dsp_status(struct snd_hwdep *hw, |
| 107 | struct snd_hwdep_dsp_status *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
| 109 | static char *type_ids[USX2Y_TYPE_NUMS] = { |
| 110 | [USX2Y_TYPE_122] = "us122", |
| 111 | [USX2Y_TYPE_224] = "us224", |
| 112 | [USX2Y_TYPE_428] = "us428", |
| 113 | }; |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 114 | struct usX2Ydev *us428 = hw->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | int id = -1; |
| 116 | |
Clemens Ladisch | a014bba | 2009-11-16 12:26:30 +0100 | [diff] [blame] | 117 | switch (le16_to_cpu(us428->dev->descriptor.idProduct)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | case USB_ID_US122: |
| 119 | id = USX2Y_TYPE_122; |
| 120 | break; |
| 121 | case USB_ID_US224: |
| 122 | id = USX2Y_TYPE_224; |
| 123 | break; |
| 124 | case USB_ID_US428: |
| 125 | id = USX2Y_TYPE_428; |
| 126 | break; |
| 127 | } |
| 128 | if (0 > id) |
| 129 | return -ENODEV; |
| 130 | strcpy(info->id, type_ids[id]); |
| 131 | info->num_dsps = 2; // 0: Prepad Data, 1: FPGA Code |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 132 | if (us428->chip_status & USX2Y_STAT_CHIP_INIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | info->chip_ready = 1; |
| 134 | info->version = USX2Y_DRIVER_VERSION; |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 139 | static int usX2Y_create_usbmidi(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 141 | static struct snd_usb_midi_endpoint_info quirk_data_1 = { |
| 142 | .out_ep = 0x06, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | .in_ep = 0x06, |
| 144 | .out_cables = 0x001, |
| 145 | .in_cables = 0x001 |
| 146 | }; |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 147 | static struct snd_usb_audio_quirk quirk_1 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | .vendor_name = "TASCAM", |
| 149 | .product_name = NAME_ALLCAPS, |
| 150 | .ifnum = 0, |
| 151 | .type = QUIRK_MIDI_FIXED_ENDPOINT, |
| 152 | .data = &quirk_data_1 |
| 153 | }; |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 154 | static struct snd_usb_midi_endpoint_info quirk_data_2 = { |
| 155 | .out_ep = 0x06, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | .in_ep = 0x06, |
| 157 | .out_cables = 0x003, |
| 158 | .in_cables = 0x003 |
| 159 | }; |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 160 | static struct snd_usb_audio_quirk quirk_2 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | .vendor_name = "TASCAM", |
| 162 | .product_name = "US428", |
| 163 | .ifnum = 0, |
| 164 | .type = QUIRK_MIDI_FIXED_ENDPOINT, |
| 165 | .data = &quirk_data_2 |
| 166 | }; |
Clemens Ladisch | a014bba | 2009-11-16 12:26:30 +0100 | [diff] [blame] | 167 | struct usb_device *dev = usX2Y(card)->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | struct usb_interface *iface = usb_ifnum_to_if(dev, 0); |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 169 | struct snd_usb_audio_quirk *quirk = |
| 170 | le16_to_cpu(dev->descriptor.idProduct) == USB_ID_US428 ? |
| 171 | &quirk_2 : &quirk_1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | snd_printdd("usX2Y_create_usbmidi \n"); |
Clemens Ladisch | d82af9f | 2009-11-16 12:23:46 +0100 | [diff] [blame] | 174 | return snd_usbmidi_create(card, iface, &usX2Y(card)->midi_list, quirk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | } |
| 176 | |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 177 | static int usX2Y_create_alsa_devices(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
| 179 | int err; |
| 180 | |
| 181 | do { |
| 182 | if ((err = usX2Y_create_usbmidi(card)) < 0) { |
Takashi Iwai | d3d579f | 2005-10-21 16:20:11 +0200 | [diff] [blame] | 183 | snd_printk(KERN_ERR "usX2Y_create_alsa_devices: usX2Y_create_usbmidi error %i \n", err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | break; |
| 185 | } |
| 186 | if ((err = usX2Y_audio_create(card)) < 0) |
| 187 | break; |
| 188 | if ((err = usX2Y_hwdep_pcm_new(card)) < 0) |
| 189 | break; |
| 190 | if ((err = snd_card_register(card)) < 0) |
| 191 | break; |
| 192 | } while (0); |
| 193 | |
| 194 | return err; |
| 195 | } |
| 196 | |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 197 | static int snd_usX2Y_hwdep_dsp_load(struct snd_hwdep *hw, |
| 198 | struct snd_hwdep_dsp_image *dsp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 200 | struct usX2Ydev *priv = hw->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | int lret, err = -EINVAL; |
| 202 | snd_printdd( "dsp_load %s\n", dsp->name); |
| 203 | |
| 204 | if (access_ok(VERIFY_READ, dsp->image, dsp->length)) { |
Clemens Ladisch | a014bba | 2009-11-16 12:26:30 +0100 | [diff] [blame] | 205 | struct usb_device* dev = priv->dev; |
Li Zefan | 85385c1 | 2009-04-10 09:43:59 +0800 | [diff] [blame] | 206 | char *buf; |
| 207 | |
| 208 | buf = memdup_user(dsp->image, dsp->length); |
| 209 | if (IS_ERR(buf)) |
| 210 | return PTR_ERR(buf); |
| 211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | err = usb_set_interface(dev, 0, 1); |
| 213 | if (err) |
Takashi Iwai | d3d579f | 2005-10-21 16:20:11 +0200 | [diff] [blame] | 214 | snd_printk(KERN_ERR "usb_set_interface error \n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | else |
| 216 | err = usb_bulk_msg(dev, usb_sndbulkpipe(dev, 2), buf, dsp->length, &lret, 6000); |
| 217 | kfree(buf); |
| 218 | } |
| 219 | if (err) |
| 220 | return err; |
| 221 | if (dsp->index == 1) { |
Nishanth Aravamudan | b27c187 | 2005-07-09 10:54:37 +0200 | [diff] [blame] | 222 | msleep(250); // give the device some time |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | err = usX2Y_AsyncSeq04_init(priv); |
| 224 | if (err) { |
Takashi Iwai | d3d579f | 2005-10-21 16:20:11 +0200 | [diff] [blame] | 225 | snd_printk(KERN_ERR "usX2Y_AsyncSeq04_init error \n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return err; |
| 227 | } |
| 228 | err = usX2Y_In04_init(priv); |
| 229 | if (err) { |
Takashi Iwai | d3d579f | 2005-10-21 16:20:11 +0200 | [diff] [blame] | 230 | snd_printk(KERN_ERR "usX2Y_In04_init error \n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | return err; |
| 232 | } |
| 233 | err = usX2Y_create_alsa_devices(hw->card); |
| 234 | if (err) { |
Takashi Iwai | d3d579f | 2005-10-21 16:20:11 +0200 | [diff] [blame] | 235 | snd_printk(KERN_ERR "usX2Y_create_alsa_devices error %i \n", err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | snd_card_free(hw->card); |
| 237 | return err; |
| 238 | } |
| 239 | priv->chip_status |= USX2Y_STAT_CHIP_INIT; |
| 240 | snd_printdd("%s: alsa all started\n", hw->name); |
| 241 | } |
| 242 | return err; |
| 243 | } |
| 244 | |
| 245 | |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 246 | int usX2Y_hwdep_new(struct snd_card *card, struct usb_device* device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { |
| 248 | int err; |
Takashi Iwai | bbe85bb | 2005-11-17 15:08:26 +0100 | [diff] [blame] | 249 | struct snd_hwdep *hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
| 251 | if ((err = snd_hwdep_new(card, SND_USX2Y_LOADER_ID, 0, &hw)) < 0) |
| 252 | return err; |
| 253 | |
| 254 | hw->iface = SNDRV_HWDEP_IFACE_USX2Y; |
| 255 | hw->private_data = usX2Y(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | hw->ops.dsp_status = snd_usX2Y_hwdep_dsp_status; |
| 257 | hw->ops.dsp_load = snd_usX2Y_hwdep_dsp_load; |
| 258 | hw->ops.mmap = snd_us428ctls_mmap; |
| 259 | hw->ops.poll = snd_us428ctls_poll; |
| 260 | hw->exclusive = 1; |
| 261 | sprintf(hw->name, "/proc/bus/usb/%03d/%03d", device->bus->busnum, device->devnum); |
| 262 | return 0; |
| 263 | } |
| 264 | |