162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 262306a36Sopenharmony_ci#ifndef __SOUND_HOONTECH_H 362306a36Sopenharmony_ci#define __SOUND_HOONTECH_H 462306a36Sopenharmony_ci 562306a36Sopenharmony_ci/* 662306a36Sopenharmony_ci * ALSA driver for ICEnsemble ICE1712 (Envy24) 762306a36Sopenharmony_ci * 862306a36Sopenharmony_ci * Lowlevel functions for Hoontech STDSP24 962306a36Sopenharmony_ci * 1062306a36Sopenharmony_ci * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz> 1162306a36Sopenharmony_ci */ 1262306a36Sopenharmony_ci 1362306a36Sopenharmony_ci#define HOONTECH_DEVICE_DESC \ 1462306a36Sopenharmony_ci "{Hoontech,SoundTrack DSP 24}," \ 1562306a36Sopenharmony_ci "{Hoontech,SoundTrack DSP 24 Value}," \ 1662306a36Sopenharmony_ci "{Hoontech,SoundTrack DSP 24 Media 7.1}," \ 1762306a36Sopenharmony_ci "{Event Electronics,EZ8}," 1862306a36Sopenharmony_ci 1962306a36Sopenharmony_ci#define ICE1712_SUBDEVICE_STDSP24 0x12141217 /* Hoontech SoundTrack Audio DSP 24 */ 2062306a36Sopenharmony_ci#define ICE1712_SUBDEVICE_STDSP24_VALUE 0x00010010 /* A dummy id for Hoontech SoundTrack Audio DSP 24 Value */ 2162306a36Sopenharmony_ci#define ICE1712_SUBDEVICE_STDSP24_MEDIA7_1 0x16141217 /* Hoontech ST Audio DSP24 Media 7.1 */ 2262306a36Sopenharmony_ci#define ICE1712_SUBDEVICE_EVENT_EZ8 0x00010001 /* A dummy id for EZ8 */ 2362306a36Sopenharmony_ci#define ICE1712_SUBDEVICE_STAUDIO_ADCIII 0x00010002 /* A dummy id for STAudio ADCIII */ 2462306a36Sopenharmony_ci 2562306a36Sopenharmony_ciextern struct snd_ice1712_card_info snd_ice1712_hoontech_cards[]; 2662306a36Sopenharmony_ci 2762306a36Sopenharmony_ci 2862306a36Sopenharmony_ci/* Hoontech SoundTrack Audio DSP 24 GPIO definitions */ 2962306a36Sopenharmony_ci 3062306a36Sopenharmony_ci#define ICE1712_STDSP24_0_BOX(r, x) r[0] = ((r[0] & ~3) | ((x)&3)) 3162306a36Sopenharmony_ci#define ICE1712_STDSP24_0_DAREAR(r, x) r[0] = ((r[0] & ~4) | (((x)&1)<<2)) 3262306a36Sopenharmony_ci#define ICE1712_STDSP24_1_CHN1(r, x) r[1] = ((r[1] & ~1) | ((x)&1)) 3362306a36Sopenharmony_ci#define ICE1712_STDSP24_1_CHN2(r, x) r[1] = ((r[1] & ~2) | (((x)&1)<<1)) 3462306a36Sopenharmony_ci#define ICE1712_STDSP24_1_CHN3(r, x) r[1] = ((r[1] & ~4) | (((x)&1)<<2)) 3562306a36Sopenharmony_ci#define ICE1712_STDSP24_2_CHN4(r, x) r[2] = ((r[2] & ~1) | ((x)&1)) 3662306a36Sopenharmony_ci#define ICE1712_STDSP24_2_MIDIIN(r, x) r[2] = ((r[2] & ~2) | (((x)&1)<<1)) 3762306a36Sopenharmony_ci#define ICE1712_STDSP24_2_MIDI1(r, x) r[2] = ((r[2] & ~4) | (((x)&1)<<2)) 3862306a36Sopenharmony_ci#define ICE1712_STDSP24_3_MIDI2(r, x) r[3] = ((r[3] & ~1) | ((x)&1)) 3962306a36Sopenharmony_ci#define ICE1712_STDSP24_3_MUTE(r, x) r[3] = ((r[3] & ~2) | (((x)&1)<<1)) 4062306a36Sopenharmony_ci#define ICE1712_STDSP24_3_INSEL(r, x) r[3] = ((r[3] & ~4) | (((x)&1)<<2)) 4162306a36Sopenharmony_ci#define ICE1712_STDSP24_SET_ADDR(r, a) r[a&3] = ((r[a&3] & ~0x18) | (((a)&3)<<3)) 4262306a36Sopenharmony_ci#define ICE1712_STDSP24_CLOCK(r, a, c) r[a&3] = ((r[a&3] & ~0x20) | (((c)&1)<<5)) 4362306a36Sopenharmony_ci#define ICE1712_STDSP24_CLOCK_BIT (1<<5) 4462306a36Sopenharmony_ci 4562306a36Sopenharmony_ci/* Hoontech SoundTrack Audio DSP 24 box configuration definitions */ 4662306a36Sopenharmony_ci 4762306a36Sopenharmony_ci#define ICE1712_STDSP24_DAREAR (1<<0) 4862306a36Sopenharmony_ci#define ICE1712_STDSP24_MUTE (1<<1) 4962306a36Sopenharmony_ci#define ICE1712_STDSP24_INSEL (1<<2) 5062306a36Sopenharmony_ci 5162306a36Sopenharmony_ci#define ICE1712_STDSP24_BOX_CHN1 (1<<0) /* input channel 1 */ 5262306a36Sopenharmony_ci#define ICE1712_STDSP24_BOX_CHN2 (1<<1) /* input channel 2 */ 5362306a36Sopenharmony_ci#define ICE1712_STDSP24_BOX_CHN3 (1<<2) /* input channel 3 */ 5462306a36Sopenharmony_ci#define ICE1712_STDSP24_BOX_CHN4 (1<<3) /* input channel 4 */ 5562306a36Sopenharmony_ci#define ICE1712_STDSP24_BOX_MIDI1 (1<<8) 5662306a36Sopenharmony_ci#define ICE1712_STDSP24_BOX_MIDI2 (1<<9) 5762306a36Sopenharmony_ci 5862306a36Sopenharmony_ci/* Hoontech SoundTrack Audio DSP 24 Value definitions for modified hardware */ 5962306a36Sopenharmony_ci 6062306a36Sopenharmony_ci#define ICE1712_STDSP24_AK4524_CS 0x03 /* AK4524 chip select; low = active */ 6162306a36Sopenharmony_ci#define ICE1712_STDSP24_SERIAL_DATA 0x0c /* ak4524 data */ 6262306a36Sopenharmony_ci#define ICE1712_STDSP24_SERIAL_CLOCK 0x30 /* ak4524 clock */ 6362306a36Sopenharmony_ci 6462306a36Sopenharmony_ci#endif /* __SOUND_HOONTECH_H */ 65