/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ACI_H_
#define _ACI_H_
#define ACI_REG_COMMAND 0 /* write register offset */
#define ACI_REG_STATUS 1 /* read register offset */
#define ACI_REG_BUSY 2 /* busy register offset */
#define ACI_REG_RDS 2 /* PCM20: RDS register offset */
#define ACI_MINTIME 500 /* ACI time out limit */
#define ACI_SET_MUTE 0 x0d
#define ACI_SET_POWERAMP 0 x0f
#define ACI_SET_TUNERMUTE 0 xa3
#define ACI_SET_TUNERMONO 0 xa4
#define ACI_SET_IDE 0 xd0
#define ACI_SET_WSS 0 xd1
#define ACI_SET_SOLOMODE 0 xd2
#define ACI_SET_PREAMP 0 x03
#define ACI_GET_PREAMP 0 x21
#define ACI_WRITE_TUNE 0 xa7
#define ACI_READ_TUNERSTEREO 0 xa8
#define ACI_READ_TUNERSTATION 0 xa9
#define ACI_READ_VERSION 0 xf1
#define ACI_READ_IDCODE 0 xf2
#define ACI_INIT 0 xff
#define ACI_STATUS 0 xf0
#define ACI_S_GENERAL 0 x00
#define ACI_ERROR_OP 0 xdf
/* ACI Mixer */
/* These are the values for the right channel GET registers.
Add an offset of 0x01 for the left channel register.
(left=right+0x01) */
#define ACI_GET_MASTER 0 x03
#define ACI_GET_MIC 0 x05
#define ACI_GET_LINE 0 x07
#define ACI_GET_CD 0 x09
#define ACI_GET_SYNTH 0 x0b
#define ACI_GET_PCM 0 x0d
#define ACI_GET_LINE1 0 x10 /* Radio on PCM20 */
#define ACI_GET_LINE2 0 x12
#define ACI_GET_EQ1 0 x22 /* from Bass ... */
#define ACI_GET_EQ2 0 x24
#define ACI_GET_EQ3 0 x26
#define ACI_GET_EQ4 0 x28
#define ACI_GET_EQ5 0 x2a
#define ACI_GET_EQ6 0 x2c
#define ACI_GET_EQ7 0 x2e /* ... to Treble */
/* And these are the values for the right channel SET registers.
For left channel access you have to add an offset of 0x08.
MASTER is an exception, which needs an offset of 0x01 */
#define ACI_SET_MASTER 0 x00
#define ACI_SET_MIC 0 x30
#define ACI_SET_LINE 0 x31
#define ACI_SET_CD 0 x34
#define ACI_SET_SYNTH 0 x33
#define ACI_SET_PCM 0 x32
#define ACI_SET_LINE1 0 x35 /* Radio on PCM20 */
#define ACI_SET_LINE2 0 x36
#define ACI_SET_EQ1 0 x40 /* from Bass ... */
#define ACI_SET_EQ2 0 x41
#define ACI_SET_EQ3 0 x42
#define ACI_SET_EQ4 0 x43
#define ACI_SET_EQ5 0 x44
#define ACI_SET_EQ6 0 x45
#define ACI_SET_EQ7 0 x46 /* ... to Treble */
struct snd_miro_aci {
struct snd_card *card;
unsigned long aci_port;
int aci_vendor;
int aci_product;
int aci_version;
int aci_amp;
int aci_preamp;
int aci_solomode;
struct mutex aci_mutex;
};
int snd_aci_cmd(struct snd_miro_aci *aci, int write1, int write2, int write3);
struct snd_miro_aci *snd_aci_get_aci(void );
#endif /* _ACI_H_ */
Messung V0.5 in Prozent C=87 H=100 G=93
[zur Elbe Produktseite wechseln0.11QuellennavigatorsAnalyse erneut starten2026-06-08]