162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci    Aureal Vortex Soundcard driver.
462306a36Sopenharmony_ci
562306a36Sopenharmony_ci    IO addr collected from asp4core.vxd:
662306a36Sopenharmony_ci    function    address
762306a36Sopenharmony_ci    0005D5A0    13004
862306a36Sopenharmony_ci    00080674    14004
962306a36Sopenharmony_ci    00080AFF    12818
1062306a36Sopenharmony_ci
1162306a36Sopenharmony_ci */
1262306a36Sopenharmony_ci
1362306a36Sopenharmony_ci#define CHIP_AU8830
1462306a36Sopenharmony_ci
1562306a36Sopenharmony_ci#define CARD_NAME "Aureal Vortex 2"
1662306a36Sopenharmony_ci#define CARD_NAME_SHORT "au8830"
1762306a36Sopenharmony_ci
1862306a36Sopenharmony_ci#define NR_ADB 0x20
1962306a36Sopenharmony_ci#define NR_SRC 0x10
2062306a36Sopenharmony_ci#define NR_A3D 0x10
2162306a36Sopenharmony_ci#define NR_MIXIN 0x20
2262306a36Sopenharmony_ci#define NR_MIXOUT 0x10
2362306a36Sopenharmony_ci#define NR_WT 0x40
2462306a36Sopenharmony_ci
2562306a36Sopenharmony_ci/* ADBDMA */
2662306a36Sopenharmony_ci#define VORTEX_ADBDMA_STAT 0x27e00	/* read only, subbuffer, DMA pos */
2762306a36Sopenharmony_ci#define		POS_MASK 0x00000fff
2862306a36Sopenharmony_ci#define     POS_SHIFT 0x0
2962306a36Sopenharmony_ci#define 	ADB_SUBBUF_MASK 0x00003000	/* ADB only. */
3062306a36Sopenharmony_ci#define     ADB_SUBBUF_SHIFT 0xc	/* ADB only. */
3162306a36Sopenharmony_ci#define VORTEX_ADBDMA_CTRL 0x27a00	/* write only; format, flags, DMA pos */
3262306a36Sopenharmony_ci#define		OFFSET_MASK 0x00000fff
3362306a36Sopenharmony_ci#define     OFFSET_SHIFT 0x0
3462306a36Sopenharmony_ci#define		IE_MASK 0x00001000	/* interrupt enable. */
3562306a36Sopenharmony_ci#define     IE_SHIFT 0xc
3662306a36Sopenharmony_ci#define     DIR_MASK 0x00002000	/* Direction. */
3762306a36Sopenharmony_ci#define     DIR_SHIFT 0xd
3862306a36Sopenharmony_ci#define		FMT_MASK 0x0003c000
3962306a36Sopenharmony_ci#define		FMT_SHIFT 0xe
4062306a36Sopenharmony_ci#define		ADB_FIFO_EN_SHIFT	0x15
4162306a36Sopenharmony_ci#define		ADB_FIFO_EN			(1 << 0x15)
4262306a36Sopenharmony_ci// The ADB masks and shift also are valid for the wtdma, except if specified otherwise.
4362306a36Sopenharmony_ci#define VORTEX_ADBDMA_BUFCFG0 0x27800
4462306a36Sopenharmony_ci#define VORTEX_ADBDMA_BUFCFG1 0x27804
4562306a36Sopenharmony_ci#define VORTEX_ADBDMA_BUFBASE 0x27400
4662306a36Sopenharmony_ci#define VORTEX_ADBDMA_START 0x27c00	/* Which subbuffer starts */
4762306a36Sopenharmony_ci
4862306a36Sopenharmony_ci#define VORTEX_ADBDMA_STATUS 0x27A90	/* stored at AdbDma->this_10 / 2 DWORD in size. */
4962306a36Sopenharmony_ci/* Starting at the MSB, each pair of bits seem to be the current DMA page. */
5062306a36Sopenharmony_ci/* This current page bits are consistent (same value) with VORTEX_ADBDMA_STAT) */
5162306a36Sopenharmony_ci
5262306a36Sopenharmony_ci/* DMA */
5362306a36Sopenharmony_ci#define VORTEX_ENGINE_CTRL 0x27ae8
5462306a36Sopenharmony_ci#define 	ENGINE_INIT 0x1380000
5562306a36Sopenharmony_ci
5662306a36Sopenharmony_ci/* WTDMA */
5762306a36Sopenharmony_ci#define VORTEX_WTDMA_CTRL 0x27900	/* format, DMA pos */
5862306a36Sopenharmony_ci#define VORTEX_WTDMA_STAT 0x27d00	/* DMA subbuf, DMA pos */
5962306a36Sopenharmony_ci#define     WT_SUBBUF_MASK 0x3
6062306a36Sopenharmony_ci#define     WT_SUBBUF_SHIFT 0xc
6162306a36Sopenharmony_ci#define VORTEX_WTDMA_BUFBASE 0x27000
6262306a36Sopenharmony_ci#define VORTEX_WTDMA_BUFCFG0 0x27600
6362306a36Sopenharmony_ci#define VORTEX_WTDMA_BUFCFG1 0x27604
6462306a36Sopenharmony_ci#define VORTEX_WTDMA_START 0x27b00	/* which subbuffer is first */
6562306a36Sopenharmony_ci
6662306a36Sopenharmony_ci/* ADB */
6762306a36Sopenharmony_ci#define VORTEX_ADB_SR 0x28400	/* Samplerates enable/disable */
6862306a36Sopenharmony_ci#define VORTEX_ADB_RTBASE 0x28000
6962306a36Sopenharmony_ci#define VORTEX_ADB_RTBASE_COUNT 173
7062306a36Sopenharmony_ci#define VORTEX_ADB_CHNBASE 0x282b4
7162306a36Sopenharmony_ci#define VORTEX_ADB_CHNBASE_COUNT 24
7262306a36Sopenharmony_ci#define 	ROUTE_MASK	0xffff
7362306a36Sopenharmony_ci#define		SOURCE_MASK	0xff00
7462306a36Sopenharmony_ci#define     ADB_MASK   0xff
7562306a36Sopenharmony_ci#define		ADB_SHIFT 0x8
7662306a36Sopenharmony_ci/* ADB address */
7762306a36Sopenharmony_ci#define		OFFSET_ADBDMA	0x00
7862306a36Sopenharmony_ci#define		OFFSET_ADBDMAB	0x20
7962306a36Sopenharmony_ci#define		OFFSET_SRCIN	0x40
8062306a36Sopenharmony_ci#define		OFFSET_SRCOUT	0x20	/* ch 0x11 */
8162306a36Sopenharmony_ci#define		OFFSET_MIXIN	0x50	/* ch 0x11 */
8262306a36Sopenharmony_ci#define		OFFSET_MIXOUT	0x30	/* ch 0x11 */
8362306a36Sopenharmony_ci#define		OFFSET_CODECIN	0x70 /* ch 0x11 */	/* adb source */
8462306a36Sopenharmony_ci#define		OFFSET_CODECOUT	0x88 /* ch 0x11 */	/* adb target */
8562306a36Sopenharmony_ci#define		OFFSET_SPORTIN	0x78	/* ch 0x13 ADB source. 2 routes. */
8662306a36Sopenharmony_ci#define		OFFSET_SPORTOUT	0x90	/* ch 0x13 ADB sink. 2 routes. */
8762306a36Sopenharmony_ci#define		OFFSET_SPDIFIN	0x7A	/* ch 0x14 ADB source. */
8862306a36Sopenharmony_ci#define		OFFSET_SPDIFOUT	0x92	/* ch 0x14 ADB sink. */
8962306a36Sopenharmony_ci#define		OFFSET_AC98IN	0x7c	/* ch 0x14 ADB source. */
9062306a36Sopenharmony_ci#define		OFFSET_AC98OUT	0x94	/* ch 0x14 ADB sink. */
9162306a36Sopenharmony_ci#define		OFFSET_EQIN		0xa0	/* ch 0x11 */
9262306a36Sopenharmony_ci#define		OFFSET_EQOUT	0x7e /* ch 0x11 */	/* 2 routes on ch 0x11 */
9362306a36Sopenharmony_ci#define		OFFSET_A3DIN	0x70	/* ADB sink. */
9462306a36Sopenharmony_ci#define		OFFSET_A3DOUT	0xA6	/* ADB source. 2 routes per slice = 8 */
9562306a36Sopenharmony_ci#define		OFFSET_WT0		0x40	/* WT bank 0 output. 0x40 - 0x65 */
9662306a36Sopenharmony_ci#define		OFFSET_WT1		0x80	/* WT bank 1 output. 0x80 - 0xA5 */
9762306a36Sopenharmony_ci/* WT sources offset : 0x00-0x1f Direct stream. */
9862306a36Sopenharmony_ci/* WT sources offset : 0x20-0x25 Mixed Output. */
9962306a36Sopenharmony_ci#define		OFFSET_XTALKOUT	0x66	/* crosstalk canceller (source) 2 routes */
10062306a36Sopenharmony_ci#define		OFFSET_XTALKIN	0x96	/* crosstalk canceller (sink). 10 routes */
10162306a36Sopenharmony_ci#define		OFFSET_EFXOUT	0x68	/* ADB source. 8 routes. */
10262306a36Sopenharmony_ci#define		OFFSET_EFXIN	0x80	/* ADB sink. 8 routes. */
10362306a36Sopenharmony_ci
10462306a36Sopenharmony_ci/* ADB route translate helper */
10562306a36Sopenharmony_ci#define ADB_DMA(x) (x)
10662306a36Sopenharmony_ci#define ADB_SRCOUT(x) (x + OFFSET_SRCOUT)
10762306a36Sopenharmony_ci#define ADB_SRCIN(x) (x + OFFSET_SRCIN)
10862306a36Sopenharmony_ci#define ADB_MIXOUT(x) (x + OFFSET_MIXOUT)
10962306a36Sopenharmony_ci#define ADB_MIXIN(x) (x + OFFSET_MIXIN)
11062306a36Sopenharmony_ci#define ADB_CODECIN(x) (x + OFFSET_CODECIN)
11162306a36Sopenharmony_ci#define ADB_CODECOUT(x) (x + OFFSET_CODECOUT)
11262306a36Sopenharmony_ci#define ADB_SPORTIN(x) (x + OFFSET_SPORTIN)
11362306a36Sopenharmony_ci#define ADB_SPORTOUT(x) (x + OFFSET_SPORTOUT)
11462306a36Sopenharmony_ci#define ADB_SPDIFIN(x)	(x + OFFSET_SPDIFIN)
11562306a36Sopenharmony_ci#define ADB_SPDIFOUT(x)	(x + OFFSET_SPDIFOUT)
11662306a36Sopenharmony_ci#define ADB_EQIN(x) (x + OFFSET_EQIN)
11762306a36Sopenharmony_ci#define ADB_EQOUT(x) (x + OFFSET_EQOUT)
11862306a36Sopenharmony_ci#define ADB_A3DOUT(x) (x + OFFSET_A3DOUT)	/* 0x10 A3D blocks */
11962306a36Sopenharmony_ci#define ADB_A3DIN(x) (x + OFFSET_A3DIN)
12062306a36Sopenharmony_ci//#define ADB_WTOUT(x) ((x<x20)?(x + OFFSET_WT0):(x + OFFSET_WT1))
12162306a36Sopenharmony_ci#define ADB_WTOUT(x,y) (((x)==0)?((y) + OFFSET_WT0):((y) + OFFSET_WT1))
12262306a36Sopenharmony_ci#define ADB_XTALKIN(x) ((x) + OFFSET_XTALKIN)
12362306a36Sopenharmony_ci#define ADB_XTALKOUT(x) ((x) + OFFSET_XTALKOUT)
12462306a36Sopenharmony_ci
12562306a36Sopenharmony_ci#define MIX_DEFIGAIN 0x08
12662306a36Sopenharmony_ci#define MIX_DEFOGAIN 0x08	/* 0x8->6dB  (6dB = x4) 16 to 18 bit conversion? */
12762306a36Sopenharmony_ci
12862306a36Sopenharmony_ci/* MIXER */
12962306a36Sopenharmony_ci#define VORTEX_MIXER_SR 0x21f00
13062306a36Sopenharmony_ci#define VORTEX_MIXER_CLIP 0x21f80
13162306a36Sopenharmony_ci#define VORTEX_MIXER_CHNBASE 0x21e40
13262306a36Sopenharmony_ci#define VORTEX_MIXER_RTBASE 0x21e00
13362306a36Sopenharmony_ci#define 	MIXER_RTBASE_SIZE 0x38
13462306a36Sopenharmony_ci#define VORTEX_MIX_ENIN 0x21a00	/* Input enable bits. 4 bits wide. */
13562306a36Sopenharmony_ci#define VORTEX_MIX_SMP 0x21c00	/* wave data buffers. AU8820: 0x9c00 */
13662306a36Sopenharmony_ci
13762306a36Sopenharmony_ci/* MIX */
13862306a36Sopenharmony_ci#define VORTEX_MIX_INVOL_B 0x20000	/* Input volume current */
13962306a36Sopenharmony_ci#define VORTEX_MIX_VOL_B 0x20800	/* Output Volume current */
14062306a36Sopenharmony_ci#define VORTEX_MIX_INVOL_A 0x21000	/* Input Volume target */
14162306a36Sopenharmony_ci#define VORTEX_MIX_VOL_A 0x21800	/* Output Volume target */
14262306a36Sopenharmony_ci
14362306a36Sopenharmony_ci#define 	VOL_MIN 0x80	/* Input volume when muted. */
14462306a36Sopenharmony_ci#define		VOL_MAX 0x7f	/* FIXME: Not confirmed! Just guessed. */
14562306a36Sopenharmony_ci
14662306a36Sopenharmony_ci/* SRC */
14762306a36Sopenharmony_ci#define VORTEX_SRC_CHNBASE		0x26c40
14862306a36Sopenharmony_ci#define VORTEX_SRC_RTBASE		0x26c00
14962306a36Sopenharmony_ci#define VORTEX_SRCBLOCK_SR		0x26cc0
15062306a36Sopenharmony_ci#define VORTEX_SRC_SOURCE		0x26cc4
15162306a36Sopenharmony_ci#define VORTEX_SRC_SOURCESIZE	0x26cc8
15262306a36Sopenharmony_ci/* Params
15362306a36Sopenharmony_ci	0x26e00	: 1 U0
15462306a36Sopenharmony_ci	0x26e40	: 2 CR
15562306a36Sopenharmony_ci	0x26e80	: 3 U3
15662306a36Sopenharmony_ci	0x26ec0	: 4 DRIFT1
15762306a36Sopenharmony_ci	0x26f00 : 5 U1
15862306a36Sopenharmony_ci	0x26f40	: 6 DRIFT2
15962306a36Sopenharmony_ci	0x26f80	: 7 U2 : Target rate, direction
16062306a36Sopenharmony_ci*/
16162306a36Sopenharmony_ci
16262306a36Sopenharmony_ci#define VORTEX_SRC_CONVRATIO	0x26e40
16362306a36Sopenharmony_ci#define VORTEX_SRC_DRIFT0		0x26e80
16462306a36Sopenharmony_ci#define VORTEX_SRC_DRIFT1		0x26ec0
16562306a36Sopenharmony_ci#define VORTEX_SRC_DRIFT2		0x26f40
16662306a36Sopenharmony_ci#define VORTEX_SRC_U0			0x26e00
16762306a36Sopenharmony_ci#define		U0_SLOWLOCK		0x200
16862306a36Sopenharmony_ci#define VORTEX_SRC_U1			0x26f00
16962306a36Sopenharmony_ci#define VORTEX_SRC_U2			0x26f80
17062306a36Sopenharmony_ci#define VORTEX_SRC_DATA			0x26800	/* 0xc800 */
17162306a36Sopenharmony_ci#define VORTEX_SRC_DATA0		0x26000
17262306a36Sopenharmony_ci
17362306a36Sopenharmony_ci/* FIFO */
17462306a36Sopenharmony_ci#define VORTEX_FIFO_ADBCTRL 0x16100	/* Control bits. */
17562306a36Sopenharmony_ci#define VORTEX_FIFO_WTCTRL 0x16000
17662306a36Sopenharmony_ci#define		FIFO_RDONLY	0x00000001
17762306a36Sopenharmony_ci#define		FIFO_CTRL	0x00000002	/* Allow ctrl. ? */
17862306a36Sopenharmony_ci#define		FIFO_VALID	0x00000010
17962306a36Sopenharmony_ci#define 	FIFO_EMPTY	0x00000020
18062306a36Sopenharmony_ci#define		FIFO_U0		0x00002000	/* Unknown. */
18162306a36Sopenharmony_ci#define		FIFO_U1		0x00040000
18262306a36Sopenharmony_ci#define		FIFO_SIZE_BITS 6
18362306a36Sopenharmony_ci#define		FIFO_SIZE	(1<<(FIFO_SIZE_BITS))	// 0x40
18462306a36Sopenharmony_ci#define 	FIFO_MASK	(FIFO_SIZE-1)	//0x3f    /* at shift left 0xc */
18562306a36Sopenharmony_ci#define 	FIFO_BITS	0x1c400000
18662306a36Sopenharmony_ci#define VORTEX_FIFO_ADBDATA 0x14000
18762306a36Sopenharmony_ci#define VORTEX_FIFO_WTDATA 0x10000
18862306a36Sopenharmony_ci
18962306a36Sopenharmony_ci#define VORTEX_FIFO_GIRT	0x17000	/* wt0, wt1, adb */
19062306a36Sopenharmony_ci#define		GIRT_COUNT	3
19162306a36Sopenharmony_ci
19262306a36Sopenharmony_ci/* CODEC */
19362306a36Sopenharmony_ci
19462306a36Sopenharmony_ci#define VORTEX_CODEC_CHN 0x29080	/* The name "CHN" is wrong. */
19562306a36Sopenharmony_ci
19662306a36Sopenharmony_ci#define VORTEX_CODEC_CTRL 0x29184
19762306a36Sopenharmony_ci#define VORTEX_CODEC_IO 0x29188
19862306a36Sopenharmony_ci
19962306a36Sopenharmony_ci#define VORTEX_CODEC_SPORTCTRL 0x2918c
20062306a36Sopenharmony_ci
20162306a36Sopenharmony_ci#define VORTEX_CODEC_EN 0x29190
20262306a36Sopenharmony_ci#define		EN_AUDIO0		0x00000300
20362306a36Sopenharmony_ci#define		EN_MODEM		0x00000c00
20462306a36Sopenharmony_ci#define		EN_AUDIO1		0x00003000
20562306a36Sopenharmony_ci#define		EN_SPORT		0x00030000
20662306a36Sopenharmony_ci#define		EN_SPDIF		0x000c0000
20762306a36Sopenharmony_ci#define		EN_CODEC		(EN_AUDIO1 | EN_AUDIO0)
20862306a36Sopenharmony_ci
20962306a36Sopenharmony_ci#define VORTEX_SPDIF_SMPRATE	0x29194
21062306a36Sopenharmony_ci
21162306a36Sopenharmony_ci#define VORTEX_SPDIF_FLAGS		0x2205c
21262306a36Sopenharmony_ci#define VORTEX_SPDIF_CFG0		0x291D0	/* status data */
21362306a36Sopenharmony_ci#define VORTEX_SPDIF_CFG1		0x291D4
21462306a36Sopenharmony_ci
21562306a36Sopenharmony_ci#define VORTEX_SMP_TIME			0x29198	/* Sample counter/timer */
21662306a36Sopenharmony_ci#define VORTEX_SMP_TIMER		0x2919c
21762306a36Sopenharmony_ci#define VORTEX_CODEC2_CTRL		0x291a0
21862306a36Sopenharmony_ci
21962306a36Sopenharmony_ci#define VORTEX_MODEM_CTRL		0x291ac
22062306a36Sopenharmony_ci
22162306a36Sopenharmony_ci/* IRQ */
22262306a36Sopenharmony_ci#define VORTEX_IRQ_SOURCE 0x2a000	/* Interrupt source flags. */
22362306a36Sopenharmony_ci#define VORTEX_IRQ_CTRL 0x2a004	/* Interrupt source mask. */
22462306a36Sopenharmony_ci
22562306a36Sopenharmony_ci//#define VORTEX_IRQ_U0 0x2a008 /* ?? */
22662306a36Sopenharmony_ci#define VORTEX_STAT		0x2a008	/* Some sort of status */
22762306a36Sopenharmony_ci#define 	STAT_IRQ	0x00000001	/* This bitis set if the IRQ is valid. */
22862306a36Sopenharmony_ci
22962306a36Sopenharmony_ci#define VORTEX_CTRL		0x2a00c
23062306a36Sopenharmony_ci#define 	CTRL_MIDI_EN	0x00000001
23162306a36Sopenharmony_ci#define 	CTRL_MIDI_PORT	0x00000060
23262306a36Sopenharmony_ci#define 	CTRL_GAME_EN	0x00000008
23362306a36Sopenharmony_ci#define 	CTRL_GAME_PORT	0x00000e00
23462306a36Sopenharmony_ci#define 	CTRL_IRQ_ENABLE	0x00004000
23562306a36Sopenharmony_ci#define		CTRL_SPDIF		0x00000000	/* unknown. Please find this value */
23662306a36Sopenharmony_ci#define 	CTRL_SPORT		0x00200000
23762306a36Sopenharmony_ci#define 	CTRL_RST		0x00800000
23862306a36Sopenharmony_ci#define 	CTRL_UNKNOWN	0x01000000
23962306a36Sopenharmony_ci
24062306a36Sopenharmony_ci/* write: Timer period config / read: TIMER IRQ ack. */
24162306a36Sopenharmony_ci#define VORTEX_IRQ_STAT 0x2919c
24262306a36Sopenharmony_ci
24362306a36Sopenharmony_ci		     /* MIDI *//* GAME. */
24462306a36Sopenharmony_ci#define VORTEX_MIDI_DATA 0x28800
24562306a36Sopenharmony_ci#define VORTEX_MIDI_CMD 0x28804	/* Write command / Read status */
24662306a36Sopenharmony_ci
24762306a36Sopenharmony_ci#define VORTEX_GAME_LEGACY 0x28808
24862306a36Sopenharmony_ci#define VORTEX_CTRL2 0x2880c
24962306a36Sopenharmony_ci#define		CTRL2_GAME_ADCMODE 0x40
25062306a36Sopenharmony_ci#define VORTEX_GAME_AXIS 0x28810	/* Axis base register. 4 axis's */
25162306a36Sopenharmony_ci#define		AXIS_SIZE 4
25262306a36Sopenharmony_ci#define		AXIS_RANGE 0x1fff
253