Merge tag 'driver-core-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / sound / firewire / oxfw / oxfw.h
CommitLineData
da607e19 1/* SPDX-License-Identifier: GPL-2.0-only */
e2786ca6
TS
2/*
3 * oxfw.h - a part of driver for OXFW970/971 based devices
4 *
5 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
e2786ca6
TS
6 */
7
8#include <linux/device.h>
9#include <linux/firewire.h>
10#include <linux/firewire-constants.h>
11#include <linux/module.h>
12#include <linux/mod_devicetable.h>
13#include <linux/mutex.h>
14#include <linux/slab.h>
8985f4ac 15#include <linux/compat.h>
174cd4b1 16#include <linux/sched/signal.h>
e2786ca6
TS
17
18#include <sound/control.h>
19#include <sound/core.h>
20#include <sound/initval.h>
21#include <sound/pcm.h>
22#include <sound/pcm_params.h>
3c96101f 23#include <sound/info.h>
05588d34 24#include <sound/rawmidi.h>
8985f4ac
TS
25#include <sound/firewire.h>
26#include <sound/hwdep.h>
e2786ca6
TS
27
28#include "../lib.h"
29#include "../fcp.h"
30#include "../packets-buffer.h"
31#include "../iso-resources.h"
5955815e 32#include "../amdtp-am824.h"
e2786ca6
TS
33#include "../cmp.h"
34
5cd1d3f4
TS
35/* This is an arbitrary number for convinience. */
36#define SND_OXFW_STREAM_FORMAT_ENTRIES 10
e2786ca6
TS
37struct snd_oxfw {
38 struct snd_card *card;
39 struct fw_unit *unit;
e2786ca6 40 struct mutex mutex;
05588d34 41 spinlock_t lock;
5cd1d3f4 42
6c29230e
TS
43 bool registered;
44 struct delayed_work dwork;
45
13f3a46d 46 bool wrong_dbs;
b0ac0009
TS
47 bool has_output;
48 u8 *tx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
5cd1d3f4
TS
49 u8 *rx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
50 bool assumed;
b0ac0009 51 struct cmp_connection out_conn;
e2786ca6 52 struct cmp_connection in_conn;
b0ac0009 53 struct amdtp_stream tx_stream;
e2786ca6 54 struct amdtp_stream rx_stream;
4a0a0472 55 unsigned int substreams_count;
5cd1d3f4 56
05588d34
TS
57 unsigned int midi_input_ports;
58 unsigned int midi_output_ports;
59
8985f4ac
TS
60 int dev_lock_count;
61 bool dev_lock_changed;
62 wait_queue_head_t hwdep_wait;
27e66635
TS
63
64 const struct ieee1394_device_id *entry;
c582cc66 65 void *spec;
ac5d7786
TS
66
67 struct amdtp_domain domain;
e2786ca6
TS
68};
69
5b59d809
TS
70/*
71 * AV/C Stream Format Information Specification 1.1 Working Draft
72 * (Apr 2005, 1394TA)
73 */
74int avc_stream_set_format(struct fw_unit *unit, enum avc_general_plug_dir dir,
75 unsigned int pid, u8 *format, unsigned int len);
76int avc_stream_get_format(struct fw_unit *unit,
77 enum avc_general_plug_dir dir, unsigned int pid,
78 u8 *buf, unsigned int *len, unsigned int eid);
79static inline int
80avc_stream_get_format_single(struct fw_unit *unit,
81 enum avc_general_plug_dir dir, unsigned int pid,
82 u8 *buf, unsigned int *len)
83{
84 return avc_stream_get_format(unit, dir, pid, buf, len, 0xff);
85}
86static inline int
87avc_stream_get_format_list(struct fw_unit *unit,
88 enum avc_general_plug_dir dir, unsigned int pid,
89 u8 *buf, unsigned int *len,
90 unsigned int eid)
91{
92 return avc_stream_get_format(unit, dir, pid, buf, len, eid);
93}
94
95/*
96 * AV/C Digital Interface Command Set General Specification 4.2
97 * (Sep 2004, 1394TA)
98 */
99int avc_general_inquiry_sig_fmt(struct fw_unit *unit, unsigned int rate,
100 enum avc_general_plug_dir dir,
101 unsigned short pid);
102
779f0dba 103int snd_oxfw_stream_init_duplex(struct snd_oxfw *oxfw);
4f380d00
TS
104int snd_oxfw_stream_reserve_duplex(struct snd_oxfw *oxfw,
105 struct amdtp_stream *stream,
106 unsigned int rate, unsigned int pcm_channels);
107int snd_oxfw_stream_start_duplex(struct snd_oxfw *oxfw);
779f0dba
TS
108void snd_oxfw_stream_stop_duplex(struct snd_oxfw *oxfw);
109void snd_oxfw_stream_destroy_duplex(struct snd_oxfw *oxfw);
110void snd_oxfw_stream_update_duplex(struct snd_oxfw *oxfw);
3713d93a 111
5cd1d3f4
TS
112struct snd_oxfw_stream_formation {
113 unsigned int rate;
114 unsigned int pcm;
115 unsigned int midi;
116};
117int snd_oxfw_stream_parse_format(u8 *format,
118 struct snd_oxfw_stream_formation *formation);
119int snd_oxfw_stream_get_current_formation(struct snd_oxfw *oxfw,
120 enum avc_general_plug_dir dir,
121 struct snd_oxfw_stream_formation *formation);
b0ac0009 122
5cd1d3f4
TS
123int snd_oxfw_stream_discover(struct snd_oxfw *oxfw);
124
8985f4ac
TS
125void snd_oxfw_stream_lock_changed(struct snd_oxfw *oxfw);
126int snd_oxfw_stream_lock_try(struct snd_oxfw *oxfw);
127void snd_oxfw_stream_lock_release(struct snd_oxfw *oxfw);
128
3713d93a 129int snd_oxfw_create_pcm(struct snd_oxfw *oxfw);
31514bfb 130
3c96101f 131void snd_oxfw_proc_init(struct snd_oxfw *oxfw);
05588d34
TS
132
133int snd_oxfw_create_midi(struct snd_oxfw *oxfw);
8985f4ac
TS
134
135int snd_oxfw_create_hwdep(struct snd_oxfw *oxfw);
29aa09ac 136
3e2f4570 137int snd_oxfw_add_spkr(struct snd_oxfw *oxfw, bool is_lacie);
3f47152a 138int snd_oxfw_scs1x_add(struct snd_oxfw *oxfw);
e3315b43 139void snd_oxfw_scs1x_update(struct snd_oxfw *oxfw);