2 * Driver for Tascam US-X2Y USB soundcards
4 * FPGA Loader + ALSA Startup
6 * Copyright (c) 2003 by Karsten Wiese <annabellesgarden@yahoo.de>
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.
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.
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
23 #include <sound/driver.h>
24 #include <linux/interrupt.h>
25 #include <linux/usb.h>
26 #include <sound/core.h>
27 #include <sound/memalloc.h>
28 #include <sound/pcm.h>
29 #include <sound/hwdep.h>
32 #include "usX2Yhwdep.h"
34 int usX2Y_hwdep_pcm_new(snd_card_t
* card
);
37 static struct page
* snd_us428ctls_vm_nopage(struct vm_area_struct
*area
, unsigned long address
, int *type
)
43 snd_printdd("ENTER, start %lXh, ofs %lXh, pgoff %ld, addr %lXh\n",
45 address
- area
->vm_start
,
46 (address
- area
->vm_start
) >> PAGE_SHIFT
,
49 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
50 offset
+= address
- area
->vm_start
;
51 snd_assert((offset
% PAGE_SIZE
) == 0, return NOPAGE_OOM
);
52 vaddr
= (char*)((usX2Ydev_t
*)area
->vm_private_data
)->us428ctls_sharedmem
+ offset
;
53 page
= virt_to_page(vaddr
);
55 snd_printdd( "vaddr=%p made us428ctls_vm_nopage() return %p; offset=%lX\n", vaddr
, page
, offset
);
58 *type
= VM_FAULT_MINOR
;
63 static struct vm_operations_struct us428ctls_vm_ops
= {
64 .nopage
= snd_us428ctls_vm_nopage
,
67 static int snd_us428ctls_mmap(snd_hwdep_t
* hw
, struct file
*filp
, struct vm_area_struct
*area
)
69 unsigned long size
= (unsigned long)(area
->vm_end
- area
->vm_start
);
70 usX2Ydev_t
*us428
= (usX2Ydev_t
*)hw
->private_data
;
72 // FIXME this hwdep interface is used twice: fpga download and mmap for controlling Lights etc. Maybe better using 2 hwdep devs?
73 // so as long as the device isn't fully initialised yet we return -EBUSY here.
74 if (!(((usX2Ydev_t
*)hw
->private_data
)->chip_status
& USX2Y_STAT_CHIP_INIT
))
77 /* if userspace tries to mmap beyond end of our buffer, fail */
78 if (size
> ((PAGE_SIZE
- 1 + sizeof(us428ctls_sharedmem_t
)) / PAGE_SIZE
) * PAGE_SIZE
) {
79 snd_printd( "%lu > %lu\n", size
, (unsigned long)sizeof(us428ctls_sharedmem_t
));
83 if (!us428
->us428ctls_sharedmem
) {
84 init_waitqueue_head(&us428
->us428ctls_wait_queue_head
);
85 if(!(us428
->us428ctls_sharedmem
= snd_malloc_pages(sizeof(us428ctls_sharedmem_t
), GFP_KERNEL
)))
87 memset(us428
->us428ctls_sharedmem
, -1, sizeof(us428ctls_sharedmem_t
));
88 us428
->us428ctls_sharedmem
->CtlSnapShotLast
= -2;
90 area
->vm_ops
= &us428ctls_vm_ops
;
91 area
->vm_flags
|= VM_RESERVED
;
92 area
->vm_private_data
= hw
->private_data
;
96 static unsigned int snd_us428ctls_poll(snd_hwdep_t
*hw
, struct file
*file
, poll_table
*wait
)
98 unsigned int mask
= 0;
99 usX2Ydev_t
*us428
= (usX2Ydev_t
*)hw
->private_data
;
100 us428ctls_sharedmem_t
*shm
= us428
->us428ctls_sharedmem
;
101 if (us428
->chip_status
& USX2Y_STAT_CHIP_HUP
)
104 poll_wait(file
, &us428
->us428ctls_wait_queue_head
, wait
);
106 if (shm
!= NULL
&& shm
->CtlSnapShotLast
!= shm
->CtlSnapShotRed
)
113 static int snd_usX2Y_hwdep_open(snd_hwdep_t
*hw
, struct file
*file
)
118 static int snd_usX2Y_hwdep_release(snd_hwdep_t
*hw
, struct file
*file
)
123 static int snd_usX2Y_hwdep_dsp_status(snd_hwdep_t
*hw
, snd_hwdep_dsp_status_t
*info
)
125 static char *type_ids
[USX2Y_TYPE_NUMS
] = {
126 [USX2Y_TYPE_122
] = "us122",
127 [USX2Y_TYPE_224
] = "us224",
128 [USX2Y_TYPE_428
] = "us428",
132 switch (le16_to_cpu(((usX2Ydev_t
*)hw
->private_data
)->chip
.dev
->descriptor
.idProduct
)) {
145 strcpy(info
->id
, type_ids
[id
]);
146 info
->num_dsps
= 2; // 0: Prepad Data, 1: FPGA Code
147 if (((usX2Ydev_t
*)hw
->private_data
)->chip_status
& USX2Y_STAT_CHIP_INIT
)
148 info
->chip_ready
= 1;
149 info
->version
= USX2Y_DRIVER_VERSION
;
154 static int usX2Y_create_usbmidi(snd_card_t
* card
)
156 static snd_usb_midi_endpoint_info_t quirk_data_1
= {
162 static snd_usb_audio_quirk_t quirk_1
= {
163 .vendor_name
= "TASCAM",
164 .product_name
= NAME_ALLCAPS
,
166 .type
= QUIRK_MIDI_FIXED_ENDPOINT
,
167 .data
= &quirk_data_1
169 static snd_usb_midi_endpoint_info_t quirk_data_2
= {
175 static snd_usb_audio_quirk_t quirk_2
= {
176 .vendor_name
= "TASCAM",
177 .product_name
= "US428",
179 .type
= QUIRK_MIDI_FIXED_ENDPOINT
,
180 .data
= &quirk_data_2
182 struct usb_device
*dev
= usX2Y(card
)->chip
.dev
;
183 struct usb_interface
*iface
= usb_ifnum_to_if(dev
, 0);
184 snd_usb_audio_quirk_t
*quirk
= le16_to_cpu(dev
->descriptor
.idProduct
) == USB_ID_US428
? &quirk_2
: &quirk_1
;
186 snd_printdd("usX2Y_create_usbmidi \n");
187 return snd_usb_create_midi_interface(&usX2Y(card
)->chip
, iface
, quirk
);
190 static int usX2Y_create_alsa_devices(snd_card_t
* card
)
195 if ((err
= usX2Y_create_usbmidi(card
)) < 0) {
196 snd_printk("usX2Y_create_alsa_devices: usX2Y_create_usbmidi error %i \n", err
);
199 if ((err
= usX2Y_audio_create(card
)) < 0)
201 if ((err
= usX2Y_hwdep_pcm_new(card
)) < 0)
203 if ((err
= snd_card_register(card
)) < 0)
210 static int snd_usX2Y_hwdep_dsp_load(snd_hwdep_t
*hw
, snd_hwdep_dsp_image_t
*dsp
)
212 usX2Ydev_t
*priv
= hw
->private_data
;
213 int lret
, err
= -EINVAL
;
214 snd_printdd( "dsp_load %s\n", dsp
->name
);
216 if (access_ok(VERIFY_READ
, dsp
->image
, dsp
->length
)) {
217 struct usb_device
* dev
= priv
->chip
.dev
;
218 char *buf
= kmalloc(dsp
->length
, GFP_KERNEL
);
221 if (copy_from_user(buf
, dsp
->image
, dsp
->length
)) {
225 err
= usb_set_interface(dev
, 0, 1);
227 snd_printk("usb_set_interface error \n");
229 err
= usb_bulk_msg(dev
, usb_sndbulkpipe(dev
, 2), buf
, dsp
->length
, &lret
, 6000);
234 if (dsp
->index
== 1) {
235 msleep(250); // give the device some time
236 err
= usX2Y_AsyncSeq04_init(priv
);
238 snd_printk("usX2Y_AsyncSeq04_init error \n");
241 err
= usX2Y_In04_init(priv
);
243 snd_printk("usX2Y_In04_init error \n");
246 err
= usX2Y_create_alsa_devices(hw
->card
);
248 snd_printk("usX2Y_create_alsa_devices error %i \n", err
);
249 snd_card_free(hw
->card
);
252 priv
->chip_status
|= USX2Y_STAT_CHIP_INIT
;
253 snd_printdd("%s: alsa all started\n", hw
->name
);
259 int usX2Y_hwdep_new(snd_card_t
* card
, struct usb_device
* device
)
264 if ((err
= snd_hwdep_new(card
, SND_USX2Y_LOADER_ID
, 0, &hw
)) < 0)
267 hw
->iface
= SNDRV_HWDEP_IFACE_USX2Y
;
268 hw
->private_data
= usX2Y(card
);
269 hw
->ops
.open
= snd_usX2Y_hwdep_open
;
270 hw
->ops
.release
= snd_usX2Y_hwdep_release
;
271 hw
->ops
.dsp_status
= snd_usX2Y_hwdep_dsp_status
;
272 hw
->ops
.dsp_load
= snd_usX2Y_hwdep_dsp_load
;
273 hw
->ops
.mmap
= snd_us428ctls_mmap
;
274 hw
->ops
.poll
= snd_us428ctls_poll
;
276 sprintf(hw
->name
, "/proc/bus/usb/%03d/%03d", device
->bus
->busnum
, device
->devnum
);