[alsa-devel] [PATCH 2/8] add device specific command
Clemens Ladisch
clemens at ladisch.de
Mon Jun 3 13:18:27 CEST 2013
o-takashi at sakamocchi.jp wrote:
> Fireworks can be controlled by device specific commands over IEEE1394 TA's
> AV/C Digital Interface Command Set.
It can also be controlled by sending the commands directly (without the
AV/C header) to address 0xecc000000000. This is one of the differences
between FFADO and the Echo drivers, and might be related to the problems
that FFADO has with the latest Fireworks firmware versions.
Do you have the latest firmware in your AFPre8?
> +struct avc_fields {
> + unsigned short cts:4;
> + unsigned short ctype:4;
> ...
The layout of bit fields are very unportable. And if you do *not*
actually rely on the memory layout, you do not actually save space
because the code to access the fields becomes more complex.
> +efc_over_avc(struct snd_efw *efw, unsigned int category,
> + /* AV/C fields */
> + struct avc_fields avc_fields = {
> + .cts = AVC_CTS,
> + .ctype = AVC_CTYPE,
> + .subunit_type = AVC_SUBUNIT_TYPE,
> + .subunit_id = AVC_SUBUNIT_ID,
> + .opcode = AVC_OPCODE,
> + .company_id = AVC_COMPANY_ID
> + };
The compiler has to construct this on the stack. Use "static const".
> + /* calcurate buffer size*/
calculate
> + if (param_count > response_quadlets)
> + cmdbuf_bytes = 32 + param_count * 4;
> + else
> + cmdbuf_bytes = 32 + response_quadlets * 4;
max()
> +int snd_efw_command_identify(struct snd_efw *efw)
> +{
> + return efc_over_avc(efw, EFC_CAT_HWCTL,
> + EFC_CMD_HWCTL_IDENTIFY,
That was part of my old driver, but most if this device-specific stuff
is not needed for a simple kernel streaming driver.
Regards,
Clemens
More information about the Alsa-devel
mailing list