blob: 7b5dad819ca411806eaa794405ebd7a541eb052f [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>
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090016
17#include <sound/control.h>
18#include <sound/core.h>
19#include <sound/initval.h>
20#include <sound/pcm.h>
21#include <sound/pcm_params.h>
Takashi Sakamoto3c961012014-12-09 00:10:43 +090022#include <sound/info.h>
Takashi Sakamoto05588d32014-12-09 00:10:48 +090023#include <sound/rawmidi.h>
Takashi Sakamoto8985f4a2014-12-09 00:10:49 +090024#include <sound/firewire.h>
25#include <sound/hwdep.h>
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090026
27#include "../lib.h"
28#include "../fcp.h"
29#include "../packets-buffer.h"
30#include "../iso-resources.h"
31#include "../amdtp.h"
32#include "../cmp.h"
33
34struct device_info {
35 const char *driver_name;
Takashi Sakamotofec7b752014-12-09 00:10:40 +090036 const char *vendor_name;
37 const char *model_name;
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090038 unsigned int mixer_channels;
39 u8 mute_fb_id;
40 u8 volume_fb_id;
41};
42
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +090043/* This is an arbitrary number for convinience. */
44#define SND_OXFW_STREAM_FORMAT_ENTRIES 10
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090045struct snd_oxfw {
46 struct snd_card *card;
47 struct fw_unit *unit;
48 const struct device_info *device_info;
49 struct mutex mutex;
Takashi Sakamoto05588d32014-12-09 00:10:48 +090050 spinlock_t lock;
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +090051
Takashi Sakamoto13f3a462015-09-20 21:18:55 +090052 bool wrong_dbs;
Takashi Sakamotob0ac0002014-12-09 00:10:46 +090053 bool has_output;
54 u8 *tx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +090055 u8 *rx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
56 bool assumed;
Takashi Sakamotob0ac0002014-12-09 00:10:46 +090057 struct cmp_connection out_conn;
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090058 struct cmp_connection in_conn;
Takashi Sakamotob0ac0002014-12-09 00:10:46 +090059 struct amdtp_stream tx_stream;
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090060 struct amdtp_stream rx_stream;
Takashi Sakamotob0ac0002014-12-09 00:10:46 +090061 unsigned int capture_substreams;
62 unsigned int playback_substreams;
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +090063
Takashi Sakamoto05588d32014-12-09 00:10:48 +090064 unsigned int midi_input_ports;
65 unsigned int midi_output_ports;
66
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090067 bool mute;
68 s16 volume[6];
69 s16 volume_min;
70 s16 volume_max;
Takashi Sakamoto8985f4a2014-12-09 00:10:49 +090071
72 int dev_lock_count;
73 bool dev_lock_changed;
74 wait_queue_head_t hwdep_wait;
Takashi Sakamotoe2786ca2014-11-29 00:59:27 +090075};
76
Takashi Sakamoto5b59d8092014-12-09 00:10:41 +090077/*
78 * AV/C Stream Format Information Specification 1.1 Working Draft
79 * (Apr 2005, 1394TA)
80 */
81int avc_stream_set_format(struct fw_unit *unit, enum avc_general_plug_dir dir,
82 unsigned int pid, u8 *format, unsigned int len);
83int avc_stream_get_format(struct fw_unit *unit,
84 enum avc_general_plug_dir dir, unsigned int pid,
85 u8 *buf, unsigned int *len, unsigned int eid);
86static inline int
87avc_stream_get_format_single(struct fw_unit *unit,
88 enum avc_general_plug_dir dir, unsigned int pid,
89 u8 *buf, unsigned int *len)
90{
91 return avc_stream_get_format(unit, dir, pid, buf, len, 0xff);
92}
93static inline int
94avc_stream_get_format_list(struct fw_unit *unit,
95 enum avc_general_plug_dir dir, unsigned int pid,
96 u8 *buf, unsigned int *len,
97 unsigned int eid)
98{
99 return avc_stream_get_format(unit, dir, pid, buf, len, eid);
100}
101
102/*
103 * AV/C Digital Interface Command Set General Specification 4.2
104 * (Sep 2004, 1394TA)
105 */
106int avc_general_inquiry_sig_fmt(struct fw_unit *unit, unsigned int rate,
107 enum avc_general_plug_dir dir,
108 unsigned short pid);
109
Takashi Sakamotob0ac0002014-12-09 00:10:46 +0900110int snd_oxfw_stream_init_simplex(struct snd_oxfw *oxfw,
111 struct amdtp_stream *stream);
112int snd_oxfw_stream_start_simplex(struct snd_oxfw *oxfw,
113 struct amdtp_stream *stream,
114 unsigned int rate, unsigned int pcm_channels);
115void snd_oxfw_stream_stop_simplex(struct snd_oxfw *oxfw,
116 struct amdtp_stream *stream);
117void snd_oxfw_stream_destroy_simplex(struct snd_oxfw *oxfw,
118 struct amdtp_stream *stream);
119void snd_oxfw_stream_update_simplex(struct snd_oxfw *oxfw,
120 struct amdtp_stream *stream);
Takashi Sakamoto3713d932014-11-29 00:59:28 +0900121
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +0900122struct snd_oxfw_stream_formation {
123 unsigned int rate;
124 unsigned int pcm;
125 unsigned int midi;
126};
127int snd_oxfw_stream_parse_format(u8 *format,
128 struct snd_oxfw_stream_formation *formation);
129int snd_oxfw_stream_get_current_formation(struct snd_oxfw *oxfw,
130 enum avc_general_plug_dir dir,
131 struct snd_oxfw_stream_formation *formation);
Takashi Sakamotob0ac0002014-12-09 00:10:46 +0900132
Takashi Sakamoto5cd1d3f2014-12-09 00:10:42 +0900133int snd_oxfw_stream_discover(struct snd_oxfw *oxfw);
134
Takashi Sakamoto8985f4a2014-12-09 00:10:49 +0900135void snd_oxfw_stream_lock_changed(struct snd_oxfw *oxfw);
136int snd_oxfw_stream_lock_try(struct snd_oxfw *oxfw);
137void snd_oxfw_stream_lock_release(struct snd_oxfw *oxfw);
138
Takashi Sakamoto3713d932014-11-29 00:59:28 +0900139int snd_oxfw_create_pcm(struct snd_oxfw *oxfw);
Takashi Sakamoto31514bf2014-11-29 00:59:29 +0900140
141int snd_oxfw_create_mixer(struct snd_oxfw *oxfw);
Takashi Sakamoto3c961012014-12-09 00:10:43 +0900142
143void snd_oxfw_proc_init(struct snd_oxfw *oxfw);
Takashi Sakamoto05588d32014-12-09 00:10:48 +0900144
145int snd_oxfw_create_midi(struct snd_oxfw *oxfw);
Takashi Sakamoto8985f4a2014-12-09 00:10:49 +0900146
147int snd_oxfw_create_hwdep(struct snd_oxfw *oxfw);