1 // SPDX-License-Identifier: GPL-2.0-only
3 * digi00x-hwdep.c - a part of driver for Digidesign Digi 002/003 family
5 * Copyright (c) 2014-2015 Takashi Sakamoto
9 * This codes give three functionality.
11 * 1.get firewire node information
12 * 2.get notification about starting/stopping stream
13 * 3.lock/unlock stream
14 * 4.get asynchronous messaging
19 static long hwdep_read(struct snd_hwdep
*hwdep
, char __user
*buf
, long count
,
22 struct snd_dg00x
*dg00x
= hwdep
->private_data
;
24 union snd_firewire_event event
;
26 spin_lock_irq(&dg00x
->lock
);
28 while (!dg00x
->dev_lock_changed
&& dg00x
->msg
== 0) {
29 prepare_to_wait(&dg00x
->hwdep_wait
, &wait
, TASK_INTERRUPTIBLE
);
30 spin_unlock_irq(&dg00x
->lock
);
32 finish_wait(&dg00x
->hwdep_wait
, &wait
);
33 if (signal_pending(current
))
35 spin_lock_irq(&dg00x
->lock
);
38 memset(&event
, 0, sizeof(event
));
39 if (dg00x
->dev_lock_changed
) {
40 event
.lock_status
.type
= SNDRV_FIREWIRE_EVENT_LOCK_STATUS
;
41 event
.lock_status
.status
= (dg00x
->dev_lock_count
> 0);
42 dg00x
->dev_lock_changed
= false;
44 count
= min_t(long, count
, sizeof(event
.lock_status
));
46 event
.digi00x_message
.type
=
47 SNDRV_FIREWIRE_EVENT_DIGI00X_MESSAGE
;
48 event
.digi00x_message
.message
= dg00x
->msg
;
51 count
= min_t(long, count
, sizeof(event
.digi00x_message
));
54 spin_unlock_irq(&dg00x
->lock
);
56 if (copy_to_user(buf
, &event
, count
))
62 static __poll_t
hwdep_poll(struct snd_hwdep
*hwdep
, struct file
*file
,
65 struct snd_dg00x
*dg00x
= hwdep
->private_data
;
68 poll_wait(file
, &dg00x
->hwdep_wait
, wait
);
70 spin_lock_irq(&dg00x
->lock
);
71 if (dg00x
->dev_lock_changed
|| dg00x
->msg
)
72 events
= EPOLLIN
| EPOLLRDNORM
;
75 spin_unlock_irq(&dg00x
->lock
);
80 static int hwdep_get_info(struct snd_dg00x
*dg00x
, void __user
*arg
)
82 struct fw_device
*dev
= fw_parent_device(dg00x
->unit
);
83 struct snd_firewire_get_info info
;
85 memset(&info
, 0, sizeof(info
));
86 info
.type
= SNDRV_FIREWIRE_TYPE_DIGI00X
;
87 info
.card
= dev
->card
->index
;
88 *(__be32
*)&info
.guid
[0] = cpu_to_be32(dev
->config_rom
[3]);
89 *(__be32
*)&info
.guid
[4] = cpu_to_be32(dev
->config_rom
[4]);
90 strlcpy(info
.device_name
, dev_name(&dev
->device
),
91 sizeof(info
.device_name
));
93 if (copy_to_user(arg
, &info
, sizeof(info
)))
99 static int hwdep_lock(struct snd_dg00x
*dg00x
)
103 spin_lock_irq(&dg00x
->lock
);
105 if (dg00x
->dev_lock_count
== 0) {
106 dg00x
->dev_lock_count
= -1;
112 spin_unlock_irq(&dg00x
->lock
);
117 static int hwdep_unlock(struct snd_dg00x
*dg00x
)
121 spin_lock_irq(&dg00x
->lock
);
123 if (dg00x
->dev_lock_count
== -1) {
124 dg00x
->dev_lock_count
= 0;
130 spin_unlock_irq(&dg00x
->lock
);
135 static int hwdep_release(struct snd_hwdep
*hwdep
, struct file
*file
)
137 struct snd_dg00x
*dg00x
= hwdep
->private_data
;
139 spin_lock_irq(&dg00x
->lock
);
140 if (dg00x
->dev_lock_count
== -1)
141 dg00x
->dev_lock_count
= 0;
142 spin_unlock_irq(&dg00x
->lock
);
147 static int hwdep_ioctl(struct snd_hwdep
*hwdep
, struct file
*file
,
148 unsigned int cmd
, unsigned long arg
)
150 struct snd_dg00x
*dg00x
= hwdep
->private_data
;
153 case SNDRV_FIREWIRE_IOCTL_GET_INFO
:
154 return hwdep_get_info(dg00x
, (void __user
*)arg
);
155 case SNDRV_FIREWIRE_IOCTL_LOCK
:
156 return hwdep_lock(dg00x
);
157 case SNDRV_FIREWIRE_IOCTL_UNLOCK
:
158 return hwdep_unlock(dg00x
);
165 static int hwdep_compat_ioctl(struct snd_hwdep
*hwdep
, struct file
*file
,
166 unsigned int cmd
, unsigned long arg
)
168 return hwdep_ioctl(hwdep
, file
, cmd
,
169 (unsigned long)compat_ptr(arg
));
172 #define hwdep_compat_ioctl NULL
175 int snd_dg00x_create_hwdep_device(struct snd_dg00x
*dg00x
)
177 static const struct snd_hwdep_ops ops
= {
179 .release
= hwdep_release
,
181 .ioctl
= hwdep_ioctl
,
182 .ioctl_compat
= hwdep_compat_ioctl
,
184 struct snd_hwdep
*hwdep
;
187 err
= snd_hwdep_new(dg00x
->card
, "Digi00x", 0, &hwdep
);
191 strcpy(hwdep
->name
, "Digi00x");
192 hwdep
->iface
= SNDRV_HWDEP_IFACE_FW_DIGI00X
;
194 hwdep
->private_data
= dg00x
;
195 hwdep
->exclusive
= true;