2014-11-28 23:59:27 +08:00
|
|
|
/*
|
|
|
|
* oxfw.h - a part of driver for OXFW970/971 based devices
|
|
|
|
*
|
|
|
|
* Copyright (c) Clemens Ladisch <clemens@ladisch.de>
|
|
|
|
* Licensed under the terms of the GNU General Public License, version 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/firewire.h>
|
|
|
|
#include <linux/firewire-constants.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/mod_devicetable.h>
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
|
|
|
|
#include <sound/control.h>
|
|
|
|
#include <sound/core.h>
|
|
|
|
#include <sound/initval.h>
|
|
|
|
#include <sound/pcm.h>
|
|
|
|
#include <sound/pcm_params.h>
|
2014-12-08 23:10:43 +08:00
|
|
|
#include <sound/info.h>
|
2014-12-08 23:10:48 +08:00
|
|
|
#include <sound/rawmidi.h>
|
2014-11-28 23:59:27 +08:00
|
|
|
|
|
|
|
#include "../lib.h"
|
|
|
|
#include "../fcp.h"
|
|
|
|
#include "../packets-buffer.h"
|
|
|
|
#include "../iso-resources.h"
|
|
|
|
#include "../amdtp.h"
|
|
|
|
#include "../cmp.h"
|
|
|
|
|
|
|
|
struct device_info {
|
|
|
|
const char *driver_name;
|
2014-12-08 23:10:40 +08:00
|
|
|
const char *vendor_name;
|
|
|
|
const char *model_name;
|
2014-11-28 23:59:27 +08:00
|
|
|
unsigned int mixer_channels;
|
|
|
|
u8 mute_fb_id;
|
|
|
|
u8 volume_fb_id;
|
|
|
|
};
|
|
|
|
|
2014-12-08 23:10:42 +08:00
|
|
|
/* This is an arbitrary number for convinience. */
|
|
|
|
#define SND_OXFW_STREAM_FORMAT_ENTRIES 10
|
2014-11-28 23:59:27 +08:00
|
|
|
struct snd_oxfw {
|
|
|
|
struct snd_card *card;
|
|
|
|
struct fw_unit *unit;
|
|
|
|
const struct device_info *device_info;
|
|
|
|
struct mutex mutex;
|
2014-12-08 23:10:48 +08:00
|
|
|
spinlock_t lock;
|
2014-12-08 23:10:42 +08:00
|
|
|
|
2014-12-08 23:10:46 +08:00
|
|
|
bool has_output;
|
|
|
|
u8 *tx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
|
2014-12-08 23:10:42 +08:00
|
|
|
u8 *rx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
|
|
|
|
bool assumed;
|
2014-12-08 23:10:46 +08:00
|
|
|
struct cmp_connection out_conn;
|
2014-11-28 23:59:27 +08:00
|
|
|
struct cmp_connection in_conn;
|
2014-12-08 23:10:46 +08:00
|
|
|
struct amdtp_stream tx_stream;
|
2014-11-28 23:59:27 +08:00
|
|
|
struct amdtp_stream rx_stream;
|
2014-12-08 23:10:46 +08:00
|
|
|
unsigned int capture_substreams;
|
|
|
|
unsigned int playback_substreams;
|
2014-12-08 23:10:42 +08:00
|
|
|
|
2014-12-08 23:10:48 +08:00
|
|
|
unsigned int midi_input_ports;
|
|
|
|
unsigned int midi_output_ports;
|
|
|
|
|
2014-11-28 23:59:27 +08:00
|
|
|
bool mute;
|
|
|
|
s16 volume[6];
|
|
|
|
s16 volume_min;
|
|
|
|
s16 volume_max;
|
|
|
|
};
|
|
|
|
|
2014-12-08 23:10:41 +08:00
|
|
|
/*
|
|
|
|
* AV/C Stream Format Information Specification 1.1 Working Draft
|
|
|
|
* (Apr 2005, 1394TA)
|
|
|
|
*/
|
|
|
|
int avc_stream_set_format(struct fw_unit *unit, enum avc_general_plug_dir dir,
|
|
|
|
unsigned int pid, u8 *format, unsigned int len);
|
|
|
|
int avc_stream_get_format(struct fw_unit *unit,
|
|
|
|
enum avc_general_plug_dir dir, unsigned int pid,
|
|
|
|
u8 *buf, unsigned int *len, unsigned int eid);
|
|
|
|
static inline int
|
|
|
|
avc_stream_get_format_single(struct fw_unit *unit,
|
|
|
|
enum avc_general_plug_dir dir, unsigned int pid,
|
|
|
|
u8 *buf, unsigned int *len)
|
|
|
|
{
|
|
|
|
return avc_stream_get_format(unit, dir, pid, buf, len, 0xff);
|
|
|
|
}
|
|
|
|
static inline int
|
|
|
|
avc_stream_get_format_list(struct fw_unit *unit,
|
|
|
|
enum avc_general_plug_dir dir, unsigned int pid,
|
|
|
|
u8 *buf, unsigned int *len,
|
|
|
|
unsigned int eid)
|
|
|
|
{
|
|
|
|
return avc_stream_get_format(unit, dir, pid, buf, len, eid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* AV/C Digital Interface Command Set General Specification 4.2
|
|
|
|
* (Sep 2004, 1394TA)
|
|
|
|
*/
|
|
|
|
int avc_general_inquiry_sig_fmt(struct fw_unit *unit, unsigned int rate,
|
|
|
|
enum avc_general_plug_dir dir,
|
|
|
|
unsigned short pid);
|
|
|
|
|
2014-12-08 23:10:46 +08:00
|
|
|
int snd_oxfw_stream_init_simplex(struct snd_oxfw *oxfw,
|
|
|
|
struct amdtp_stream *stream);
|
|
|
|
int snd_oxfw_stream_start_simplex(struct snd_oxfw *oxfw,
|
|
|
|
struct amdtp_stream *stream,
|
|
|
|
unsigned int rate, unsigned int pcm_channels);
|
|
|
|
void snd_oxfw_stream_stop_simplex(struct snd_oxfw *oxfw,
|
|
|
|
struct amdtp_stream *stream);
|
|
|
|
void snd_oxfw_stream_destroy_simplex(struct snd_oxfw *oxfw,
|
|
|
|
struct amdtp_stream *stream);
|
|
|
|
void snd_oxfw_stream_update_simplex(struct snd_oxfw *oxfw,
|
|
|
|
struct amdtp_stream *stream);
|
2014-11-28 23:59:28 +08:00
|
|
|
|
2014-12-08 23:10:42 +08:00
|
|
|
struct snd_oxfw_stream_formation {
|
|
|
|
unsigned int rate;
|
|
|
|
unsigned int pcm;
|
|
|
|
unsigned int midi;
|
|
|
|
};
|
|
|
|
int snd_oxfw_stream_parse_format(u8 *format,
|
|
|
|
struct snd_oxfw_stream_formation *formation);
|
|
|
|
int snd_oxfw_stream_get_current_formation(struct snd_oxfw *oxfw,
|
|
|
|
enum avc_general_plug_dir dir,
|
|
|
|
struct snd_oxfw_stream_formation *formation);
|
2014-12-08 23:10:46 +08:00
|
|
|
|
2014-12-08 23:10:42 +08:00
|
|
|
int snd_oxfw_stream_discover(struct snd_oxfw *oxfw);
|
|
|
|
|
2014-11-28 23:59:28 +08:00
|
|
|
int snd_oxfw_create_pcm(struct snd_oxfw *oxfw);
|
2014-11-28 23:59:29 +08:00
|
|
|
|
|
|
|
int snd_oxfw_create_mixer(struct snd_oxfw *oxfw);
|
2014-12-08 23:10:43 +08:00
|
|
|
|
|
|
|
void snd_oxfw_proc_init(struct snd_oxfw *oxfw);
|
2014-12-08 23:10:48 +08:00
|
|
|
|
|
|
|
int snd_oxfw_create_midi(struct snd_oxfw *oxfw);
|