blob: 9534e93e3a3607bdcabde4b6049d0f50cb1100a5 [file] [log] [blame]
Takashi Sakamotob5b04332014-04-25 22:45:00 +09001/*
2 * fireworks.h - a part of driver for Fireworks based devices
3 *
4 * Copyright (c) 2009-2010 Clemens Ladisch
5 * Copyright (c) 2013-2014 Takashi Sakamoto
6 *
7 * Licensed under the terms of the GNU General Public License, version 2.
8 */
9#ifndef SOUND_FIREWORKS_H_INCLUDED
10#define SOUND_FIREWORKS_H_INCLUDED
11
12#include <linux/compat.h>
13#include <linux/device.h>
14#include <linux/firewire.h>
15#include <linux/firewire-constants.h>
16#include <linux/module.h>
17#include <linux/mod_devicetable.h>
18#include <linux/delay.h>
19#include <linux/slab.h>
20
21#include <sound/core.h>
22#include <sound/initval.h>
Takashi Sakamotobde8a8f2014-04-25 22:45:01 +090023#include <sound/pcm.h>
24
Takashi Sakamoto315fd412014-04-25 22:45:02 +090025#include "../packets-buffer.h"
26#include "../iso-resources.h"
27#include "../amdtp.h"
Takashi Sakamotobde8a8f2014-04-25 22:45:01 +090028#include "../cmp.h"
29#include "../lib.h"
30
Takashi Sakamoto315fd412014-04-25 22:45:02 +090031#define SND_EFW_MAX_MIDI_OUT_PORTS 2
32#define SND_EFW_MAX_MIDI_IN_PORTS 2
33
Takashi Sakamotobde8a8f2014-04-25 22:45:01 +090034#define SND_EFW_MULTIPLIER_MODES 3
35#define HWINFO_NAME_SIZE_BYTES 32
36#define HWINFO_MAX_CAPS_GROUPS 8
37
38/*
39 * This should be greater than maximum bytes for EFW response content.
40 * Currently response against command for isochronous channel mapping is
41 * confirmed to be the maximum one. But for flexibility, use maximum data
42 * payload for asynchronous primary packets at S100 (Cable base rate) in
43 * IEEE Std 1394-1995.
44 */
45#define SND_EFW_RESPONSE_MAXIMUM_BYTES 0x200U
46
47struct snd_efw_phys_grp {
48 u8 type; /* see enum snd_efw_grp_type */
49 u8 count;
50} __packed;
Takashi Sakamotob5b04332014-04-25 22:45:00 +090051
52struct snd_efw {
53 struct snd_card *card;
54 struct fw_unit *unit;
55 int card_index;
56
57 struct mutex mutex;
58 spinlock_t lock;
Takashi Sakamotobde8a8f2014-04-25 22:45:01 +090059
60 /* for transaction */
61 u32 seqnum;
62 bool resp_addr_changable;
Takashi Sakamoto315fd412014-04-25 22:45:02 +090063
Takashi Sakamoto69702232014-04-25 22:45:05 +090064 /* for quirks */
65 bool is_af9;
66
Takashi Sakamoto315fd412014-04-25 22:45:02 +090067 unsigned int midi_in_ports;
68 unsigned int midi_out_ports;
69
70 unsigned int supported_sampling_rate;
71 unsigned int pcm_capture_channels[SND_EFW_MULTIPLIER_MODES];
72 unsigned int pcm_playback_channels[SND_EFW_MULTIPLIER_MODES];
73
74 struct amdtp_stream *master;
75 struct amdtp_stream tx_stream;
76 struct amdtp_stream rx_stream;
77 struct cmp_connection out_conn;
78 struct cmp_connection in_conn;
79 atomic_t capture_substreams;
80 atomic_t playback_substreams;
Takashi Sakamotob5b04332014-04-25 22:45:00 +090081};
82
Takashi Sakamotobde8a8f2014-04-25 22:45:01 +090083struct snd_efw_transaction {
84 __be32 length;
85 __be32 version;
86 __be32 seqnum;
87 __be32 category;
88 __be32 command;
89 __be32 status;
90 __be32 params[0];
91};
92int snd_efw_transaction_run(struct fw_unit *unit,
93 const void *cmd, unsigned int cmd_size,
94 void *resp, unsigned int resp_size);
95int snd_efw_transaction_register(void);
96void snd_efw_transaction_unregister(void);
97void snd_efw_transaction_bus_reset(struct fw_unit *unit);
98
99struct snd_efw_hwinfo {
100 u32 flags;
101 u32 guid_hi;
102 u32 guid_lo;
103 u32 type;
104 u32 version;
105 char vendor_name[HWINFO_NAME_SIZE_BYTES];
106 char model_name[HWINFO_NAME_SIZE_BYTES];
107 u32 supported_clocks;
108 u32 amdtp_rx_pcm_channels;
109 u32 amdtp_tx_pcm_channels;
110 u32 phys_out;
111 u32 phys_in;
112 u32 phys_out_grp_count;
113 struct snd_efw_phys_grp phys_out_grps[HWINFO_MAX_CAPS_GROUPS];
114 u32 phys_in_grp_count;
115 struct snd_efw_phys_grp phys_in_grps[HWINFO_MAX_CAPS_GROUPS];
116 u32 midi_out_ports;
117 u32 midi_in_ports;
118 u32 max_sample_rate;
119 u32 min_sample_rate;
120 u32 dsp_version;
121 u32 arm_version;
122 u32 mixer_playback_channels;
123 u32 mixer_capture_channels;
124 u32 fpga_version;
125 u32 amdtp_rx_pcm_channels_2x;
126 u32 amdtp_tx_pcm_channels_2x;
127 u32 amdtp_rx_pcm_channels_4x;
128 u32 amdtp_tx_pcm_channels_4x;
129 u32 reserved[16];
130} __packed;
131enum snd_efw_grp_type {
132 SND_EFW_CH_TYPE_ANALOG = 0,
133 SND_EFW_CH_TYPE_SPDIF = 1,
134 SND_EFW_CH_TYPE_ADAT = 2,
135 SND_EFW_CH_TYPE_SPDIF_OR_ADAT = 3,
136 SND_EFW_CH_TYPE_ANALOG_MIRRORING = 4,
137 SND_EFW_CH_TYPE_HEADPHONES = 5,
138 SND_EFW_CH_TYPE_I2S = 6,
139 SND_EFW_CH_TYPE_GUITAR = 7,
140 SND_EFW_CH_TYPE_PIEZO_GUITAR = 8,
141 SND_EFW_CH_TYPE_GUITAR_STRING = 9,
142 SND_EFW_CH_TYPE_VIRTUAL = 0x10000,
143 SND_EFW_CH_TYPE_DUMMY
144};
145struct snd_efw_phys_meters {
146 u32 status; /* guitar state/midi signal/clock input detect */
147 u32 reserved0;
148 u32 reserved1;
149 u32 reserved2;
150 u32 reserved3;
151 u32 out_meters;
152 u32 in_meters;
153 u32 reserved4;
154 u32 reserved5;
155 u32 values[0];
156} __packed;
157enum snd_efw_clock_source {
158 SND_EFW_CLOCK_SOURCE_INTERNAL = 0,
159 SND_EFW_CLOCK_SOURCE_SYTMATCH = 1,
160 SND_EFW_CLOCK_SOURCE_WORDCLOCK = 2,
161 SND_EFW_CLOCK_SOURCE_SPDIF = 3,
162 SND_EFW_CLOCK_SOURCE_ADAT_1 = 4,
163 SND_EFW_CLOCK_SOURCE_ADAT_2 = 5,
164 SND_EFW_CLOCK_SOURCE_CONTINUOUS = 6 /* internal variable clock */
165};
166enum snd_efw_transport_mode {
167 SND_EFW_TRANSPORT_MODE_WINDOWS = 0,
168 SND_EFW_TRANSPORT_MODE_IEC61883 = 1,
169};
170int snd_efw_command_set_resp_addr(struct snd_efw *efw,
171 u16 addr_high, u32 addr_low);
172int snd_efw_command_set_tx_mode(struct snd_efw *efw, unsigned int mode);
173int snd_efw_command_get_hwinfo(struct snd_efw *efw,
174 struct snd_efw_hwinfo *hwinfo);
175int snd_efw_command_get_phys_meters(struct snd_efw *efw,
176 struct snd_efw_phys_meters *meters,
177 unsigned int len);
178int snd_efw_command_get_clock_source(struct snd_efw *efw,
179 enum snd_efw_clock_source *source);
180int snd_efw_command_get_sampling_rate(struct snd_efw *efw, unsigned int *rate);
181int snd_efw_command_set_sampling_rate(struct snd_efw *efw, unsigned int rate);
182
Takashi Sakamoto315fd412014-04-25 22:45:02 +0900183int snd_efw_stream_init_duplex(struct snd_efw *efw);
184int snd_efw_stream_start_duplex(struct snd_efw *efw, int sampling_rate);
185void snd_efw_stream_stop_duplex(struct snd_efw *efw);
186void snd_efw_stream_update_duplex(struct snd_efw *efw);
187void snd_efw_stream_destroy_duplex(struct snd_efw *efw);
188
Takashi Sakamotob5b04332014-04-25 22:45:00 +0900189#define SND_EFW_DEV_ENTRY(vendor, model) \
190{ \
191 .match_flags = IEEE1394_MATCH_VENDOR_ID | \
192 IEEE1394_MATCH_MODEL_ID, \
193 .vendor_id = vendor,\
194 .model_id = model \
195}
196
197#endif