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 <linux/interrupt.h>
24 #include <linux/slab.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 static int snd_us428ctls_vm_fault(struct vm_area_struct
*area
,
41 snd_printdd("ENTER, start %lXh, pgoff %ld\n",
45 offset
= vmf
->pgoff
<< PAGE_SHIFT
;
46 vaddr
= (char*)((struct usX2Ydev
*)area
->vm_private_data
)->us428ctls_sharedmem
+ offset
;
47 page
= virt_to_page(vaddr
);
51 snd_printdd("vaddr=%p made us428ctls_vm_fault() page %p\n",
57 static const struct vm_operations_struct us428ctls_vm_ops
= {
58 .fault
= snd_us428ctls_vm_fault
,
61 static int snd_us428ctls_mmap(struct snd_hwdep
* hw
, struct file
*filp
, struct vm_area_struct
*area
)
63 unsigned long size
= (unsigned long)(area
->vm_end
- area
->vm_start
);
64 struct usX2Ydev
*us428
= hw
->private_data
;
66 // FIXME this hwdep interface is used twice: fpga download and mmap for controlling Lights etc. Maybe better using 2 hwdep devs?
67 // so as long as the device isn't fully initialised yet we return -EBUSY here.
68 if (!(us428
->chip_status
& USX2Y_STAT_CHIP_INIT
))
71 /* if userspace tries to mmap beyond end of our buffer, fail */
72 if (size
> PAGE_ALIGN(sizeof(struct us428ctls_sharedmem
))) {
73 snd_printd( "%lu > %lu\n", size
, (unsigned long)sizeof(struct us428ctls_sharedmem
));
77 if (!us428
->us428ctls_sharedmem
) {
78 init_waitqueue_head(&us428
->us428ctls_wait_queue_head
);
79 if(!(us428
->us428ctls_sharedmem
= snd_malloc_pages(sizeof(struct us428ctls_sharedmem
), GFP_KERNEL
)))
81 memset(us428
->us428ctls_sharedmem
, -1, sizeof(struct us428ctls_sharedmem
));
82 us428
->us428ctls_sharedmem
->CtlSnapShotLast
= -2;
84 area
->vm_ops
= &us428ctls_vm_ops
;
85 area
->vm_flags
|= VM_DONTEXPAND
| VM_DONTDUMP
;
86 area
->vm_private_data
= hw
->private_data
;
90 static unsigned int snd_us428ctls_poll(struct snd_hwdep
*hw
, struct file
*file
, poll_table
*wait
)
92 unsigned int mask
= 0;
93 struct usX2Ydev
*us428
= hw
->private_data
;
94 struct us428ctls_sharedmem
*shm
= us428
->us428ctls_sharedmem
;
95 if (us428
->chip_status
& USX2Y_STAT_CHIP_HUP
)
98 poll_wait(file
, &us428
->us428ctls_wait_queue_head
, wait
);
100 if (shm
!= NULL
&& shm
->CtlSnapShotLast
!= shm
->CtlSnapShotRed
)
107 static int snd_usX2Y_hwdep_dsp_status(struct snd_hwdep
*hw
,
108 struct snd_hwdep_dsp_status
*info
)
110 static char *type_ids
[USX2Y_TYPE_NUMS
] = {
111 [USX2Y_TYPE_122
] = "us122",
112 [USX2Y_TYPE_224
] = "us224",
113 [USX2Y_TYPE_428
] = "us428",
115 struct usX2Ydev
*us428
= hw
->private_data
;
118 switch (le16_to_cpu(us428
->dev
->descriptor
.idProduct
)) {
131 strcpy(info
->id
, type_ids
[id
]);
132 info
->num_dsps
= 2; // 0: Prepad Data, 1: FPGA Code
133 if (us428
->chip_status
& USX2Y_STAT_CHIP_INIT
)
134 info
->chip_ready
= 1;
135 info
->version
= USX2Y_DRIVER_VERSION
;
140 static int usX2Y_create_usbmidi(struct snd_card
*card
)
142 static struct snd_usb_midi_endpoint_info quirk_data_1
= {
148 static struct snd_usb_audio_quirk quirk_1
= {
149 .vendor_name
= "TASCAM",
150 .product_name
= NAME_ALLCAPS
,
152 .type
= QUIRK_MIDI_FIXED_ENDPOINT
,
153 .data
= &quirk_data_1
155 static struct snd_usb_midi_endpoint_info quirk_data_2
= {
161 static struct snd_usb_audio_quirk quirk_2
= {
162 .vendor_name
= "TASCAM",
163 .product_name
= "US428",
165 .type
= QUIRK_MIDI_FIXED_ENDPOINT
,
166 .data
= &quirk_data_2
168 struct usb_device
*dev
= usX2Y(card
)->dev
;
169 struct usb_interface
*iface
= usb_ifnum_to_if(dev
, 0);
170 struct snd_usb_audio_quirk
*quirk
=
171 le16_to_cpu(dev
->descriptor
.idProduct
) == USB_ID_US428
?
174 snd_printdd("usX2Y_create_usbmidi \n");
175 return snd_usbmidi_create(card
, iface
, &usX2Y(card
)->midi_list
, quirk
);
178 static int usX2Y_create_alsa_devices(struct snd_card
*card
)
183 if ((err
= usX2Y_create_usbmidi(card
)) < 0) {
184 snd_printk(KERN_ERR
"usX2Y_create_alsa_devices: usX2Y_create_usbmidi error %i \n", err
);
187 if ((err
= usX2Y_audio_create(card
)) < 0)
189 if ((err
= usX2Y_hwdep_pcm_new(card
)) < 0)
191 if ((err
= snd_card_register(card
)) < 0)
198 static int snd_usX2Y_hwdep_dsp_load(struct snd_hwdep
*hw
,
199 struct snd_hwdep_dsp_image
*dsp
)
201 struct usX2Ydev
*priv
= hw
->private_data
;
202 int lret
, err
= -EINVAL
;
203 snd_printdd( "dsp_load %s\n", dsp
->name
);
205 if (access_ok(VERIFY_READ
, dsp
->image
, dsp
->length
)) {
206 struct usb_device
* dev
= priv
->dev
;
209 buf
= memdup_user(dsp
->image
, dsp
->length
);
213 err
= usb_set_interface(dev
, 0, 1);
215 snd_printk(KERN_ERR
"usb_set_interface error \n");
217 err
= usb_bulk_msg(dev
, usb_sndbulkpipe(dev
, 2), buf
, dsp
->length
, &lret
, 6000);
222 if (dsp
->index
== 1) {
223 msleep(250); // give the device some time
224 err
= usX2Y_AsyncSeq04_init(priv
);
226 snd_printk(KERN_ERR
"usX2Y_AsyncSeq04_init error \n");
229 err
= usX2Y_In04_init(priv
);
231 snd_printk(KERN_ERR
"usX2Y_In04_init error \n");
234 err
= usX2Y_create_alsa_devices(hw
->card
);
236 snd_printk(KERN_ERR
"usX2Y_create_alsa_devices error %i \n", err
);
237 snd_card_free(hw
->card
);
240 priv
->chip_status
|= USX2Y_STAT_CHIP_INIT
;
241 snd_printdd("%s: alsa all started\n", hw
->name
);
247 int usX2Y_hwdep_new(struct snd_card
*card
, struct usb_device
* device
)
250 struct snd_hwdep
*hw
;
252 if ((err
= snd_hwdep_new(card
, SND_USX2Y_LOADER_ID
, 0, &hw
)) < 0)
255 hw
->iface
= SNDRV_HWDEP_IFACE_USX2Y
;
256 hw
->private_data
= usX2Y(card
);
257 hw
->ops
.dsp_status
= snd_usX2Y_hwdep_dsp_status
;
258 hw
->ops
.dsp_load
= snd_usX2Y_hwdep_dsp_load
;
259 hw
->ops
.mmap
= snd_us428ctls_mmap
;
260 hw
->ops
.poll
= snd_us428ctls_poll
;
262 sprintf(hw
->name
, "/proc/bus/usb/%03d/%03d", device
->bus
->busnum
, device
->devnum
);