blob: d54d4a9ac4a159192494c7f957517cf9099e7004 [file] [log] [blame]
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +09001/*
2 * oxfw.h - a part of driver for OXFW970/971 based devices
3 *
4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
5 * Licensed under the terms of the GNU General Public License, version 2.
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>
Takashi Sakamoto8985f4a2014-12-09 00:10:49 +090015#include <linux/compat.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010016#include <linux/sched/signal.h>
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090017
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>
Takashi Sakamoto3c961012014-12-09 00:10:43 +090023#include <sound/info.h>
Takashi Sakamoto05588d32014-12-09 00:10:48 +090024#include <sound/rawmidi.h>
Takashi Sakamoto8985f4a2014-12-09 00:10:49 +090025#include <sound/firewire.h>
26#include <sound/hwdep.h>
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090027
28#include "../lib.h"
29#include "../fcp.h"
30#include "../packets-buffer.h"
31#include "../iso-resources.h"
Takashi Sakamoto59558152015-09-19 11:21:55 +090032#include "../amdtp-am824.h"
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090033#include "../cmp.h"
34
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +090035/* This is an arbitrary number for convinience. */
36#define SND_OXFW_STREAM_FORMAT_ENTRIES 10
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090037struct snd_oxfw {
38 struct snd_card *card;
39 struct fw_unit *unit;
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090040 struct mutex mutex;
Takashi Sakamoto05588d32014-12-09 00:10:48 +090041 spinlock_t lock;
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +090042
Takashi Sakamoto6c292302016-03-31 08:47:07 +090043 bool registered;
44 struct delayed_work dwork;
45
Takashi Sakamoto13f3a462015-09-20 21:18:55 +090046 bool wrong_dbs;
Takashi Sakamotob0ac0002014-12-09 00:10:46 +090047 bool has_output;
48 u8 *tx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +090049 u8 *rx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
50 bool assumed;
Takashi Sakamotob0ac0002014-12-09 00:10:46 +090051 struct cmp_connection out_conn;
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090052 struct cmp_connection in_conn;
Takashi Sakamotob0ac0002014-12-09 00:10:46 +090053 struct amdtp_stream tx_stream;
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090054 struct amdtp_stream rx_stream;
Takashi Sakamotob0ac0002014-12-09 00:10:46 +090055 unsigned int capture_substreams;
56 unsigned int playback_substreams;
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +090057
Takashi Sakamoto05588d32014-12-09 00:10:48 +090058 unsigned int midi_input_ports;
59 unsigned int midi_output_ports;
60
Takashi Sakamoto8985f4a2014-12-09 00:10:49 +090061 int dev_lock_count;
62 bool dev_lock_changed;
63 wait_queue_head_t hwdep_wait;
Takashi Sakamoto27e66632015-12-15 23:56:20 +090064
65 const struct ieee1394_device_id *entry;
Takashi Sakamotoc582cc62015-12-16 20:37:54 +090066 void *spec;
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090067};
68
Takashi Sakamoto5b59d8092014-12-09 00:10:41 +090069/*
70 * AV/C Stream Format Information Specification 1.1 Working Draft
71 * (Apr 2005, 1394TA)
72 */
73int avc_stream_set_format(struct fw_unit *unit, enum avc_general_plug_dir dir,
74 unsigned int pid, u8 *format, unsigned int len);
75int avc_stream_get_format(struct fw_unit *unit,
76 enum avc_general_plug_dir dir, unsigned int pid,
77 u8 *buf, unsigned int *len, unsigned int eid);
78static inline int
79avc_stream_get_format_single(struct fw_unit *unit,
80 enum avc_general_plug_dir dir, unsigned int pid,
81 u8 *buf, unsigned int *len)
82{
83 return avc_stream_get_format(unit, dir, pid, buf, len, 0xff);
84}
85static inline int
86avc_stream_get_format_list(struct fw_unit *unit,
87 enum avc_general_plug_dir dir, unsigned int pid,
88 u8 *buf, unsigned int *len,
89 unsigned int eid)
90{
91 return avc_stream_get_format(unit, dir, pid, buf, len, eid);
92}
93
94/*
95 * AV/C Digital Interface Command Set General Specification 4.2
96 * (Sep 2004, 1394TA)
97 */
98int avc_general_inquiry_sig_fmt(struct fw_unit *unit, unsigned int rate,
99 enum avc_general_plug_dir dir,
100 unsigned short pid);
101
Takashi Sakamotob0ac0002014-12-09 00:10:46 +0900102int snd_oxfw_stream_init_simplex(struct snd_oxfw *oxfw,
103 struct amdtp_stream *stream);
104int snd_oxfw_stream_start_simplex(struct snd_oxfw *oxfw,
105 struct amdtp_stream *stream,
106 unsigned int rate, unsigned int pcm_channels);
107void snd_oxfw_stream_stop_simplex(struct snd_oxfw *oxfw,
108 struct amdtp_stream *stream);
109void snd_oxfw_stream_destroy_simplex(struct snd_oxfw *oxfw,
110 struct amdtp_stream *stream);
111void snd_oxfw_stream_update_simplex(struct snd_oxfw *oxfw,
112 struct amdtp_stream *stream);
Takashi Sakamoto3713d932014-11-29 00:59:28 +0900113
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +0900114struct snd_oxfw_stream_formation {
115 unsigned int rate;
116 unsigned int pcm;
117 unsigned int midi;
118};
119int snd_oxfw_stream_parse_format(u8 *format,
120 struct snd_oxfw_stream_formation *formation);
121int snd_oxfw_stream_get_current_formation(struct snd_oxfw *oxfw,
122 enum avc_general_plug_dir dir,
123 struct snd_oxfw_stream_formation *formation);
Takashi Sakamotob0ac0002014-12-09 00:10:46 +0900124
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +0900125int snd_oxfw_stream_discover(struct snd_oxfw *oxfw);
126
Takashi Sakamoto8985f4a2014-12-09 00:10:49 +0900127void snd_oxfw_stream_lock_changed(struct snd_oxfw *oxfw);
128int snd_oxfw_stream_lock_try(struct snd_oxfw *oxfw);
129void snd_oxfw_stream_lock_release(struct snd_oxfw *oxfw);
130
Takashi Sakamoto3713d932014-11-29 00:59:28 +0900131int snd_oxfw_create_pcm(struct snd_oxfw *oxfw);
Takashi Sakamoto31514bf2014-11-29 00:59:29 +0900132
Takashi Sakamoto3c961012014-12-09 00:10:43 +0900133void snd_oxfw_proc_init(struct snd_oxfw *oxfw);
Takashi Sakamoto05588d32014-12-09 00:10:48 +0900134
135int snd_oxfw_create_midi(struct snd_oxfw *oxfw);
Takashi Sakamoto8985f4a2014-12-09 00:10:49 +0900136
137int snd_oxfw_create_hwdep(struct snd_oxfw *oxfw);
Takashi Sakamoto29aa09a2015-12-15 23:56:18 +0900138
Takashi Sakamoto3e2f4572015-12-16 20:37:56 +0900139int snd_oxfw_add_spkr(struct snd_oxfw *oxfw, bool is_lacie);
Takashi Sakamoto3f471522015-12-22 09:15:39 +0900140int snd_oxfw_scs1x_add(struct snd_oxfw *oxfw);
Takashi Sakamotoe3315b42015-12-22 09:15:40 +0900141void snd_oxfw_scs1x_update(struct snd_oxfw *oxfw);