162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 262306a36Sopenharmony_ci#ifndef __SOUND_CS4231_REGS_H 362306a36Sopenharmony_ci#define __SOUND_CS4231_REGS_H 462306a36Sopenharmony_ci 562306a36Sopenharmony_ci/* 662306a36Sopenharmony_ci * Copyright (c) by Jaroslav Kysela <perex@perex.cz> 762306a36Sopenharmony_ci * Definitions for CS4231 & InterWave chips & compatible chips registers 862306a36Sopenharmony_ci */ 962306a36Sopenharmony_ci 1062306a36Sopenharmony_ci/* IO ports */ 1162306a36Sopenharmony_ci 1262306a36Sopenharmony_ci#define CS4231P(x) (c_d_c_CS4231##x) 1362306a36Sopenharmony_ci 1462306a36Sopenharmony_ci#define c_d_c_CS4231REGSEL 0 1562306a36Sopenharmony_ci#define c_d_c_CS4231REG 1 1662306a36Sopenharmony_ci#define c_d_c_CS4231STATUS 2 1762306a36Sopenharmony_ci#define c_d_c_CS4231PIO 3 1862306a36Sopenharmony_ci 1962306a36Sopenharmony_ci/* codec registers */ 2062306a36Sopenharmony_ci 2162306a36Sopenharmony_ci#define CS4231_LEFT_INPUT 0x00 /* left input control */ 2262306a36Sopenharmony_ci#define CS4231_RIGHT_INPUT 0x01 /* right input control */ 2362306a36Sopenharmony_ci#define CS4231_AUX1_LEFT_INPUT 0x02 /* left AUX1 input control */ 2462306a36Sopenharmony_ci#define CS4231_AUX1_RIGHT_INPUT 0x03 /* right AUX1 input control */ 2562306a36Sopenharmony_ci#define CS4231_AUX2_LEFT_INPUT 0x04 /* left AUX2 input control */ 2662306a36Sopenharmony_ci#define CS4231_AUX2_RIGHT_INPUT 0x05 /* right AUX2 input control */ 2762306a36Sopenharmony_ci#define CS4231_LEFT_OUTPUT 0x06 /* left output control register */ 2862306a36Sopenharmony_ci#define CS4231_RIGHT_OUTPUT 0x07 /* right output control register */ 2962306a36Sopenharmony_ci#define CS4231_PLAYBK_FORMAT 0x08 /* clock and data format - playback - bits 7-0 MCE */ 3062306a36Sopenharmony_ci#define CS4231_IFACE_CTRL 0x09 /* interface control - bits 7-2 MCE */ 3162306a36Sopenharmony_ci#define CS4231_PIN_CTRL 0x0a /* pin control */ 3262306a36Sopenharmony_ci#define CS4231_TEST_INIT 0x0b /* test and initialization */ 3362306a36Sopenharmony_ci#define CS4231_MISC_INFO 0x0c /* miscellaneous information */ 3462306a36Sopenharmony_ci#define CS4231_LOOPBACK 0x0d /* loopback control */ 3562306a36Sopenharmony_ci#define CS4231_PLY_UPR_CNT 0x0e /* playback upper base count */ 3662306a36Sopenharmony_ci#define CS4231_PLY_LWR_CNT 0x0f /* playback lower base count */ 3762306a36Sopenharmony_ci#define CS4231_ALT_FEATURE_1 0x10 /* alternate #1 feature enable */ 3862306a36Sopenharmony_ci#define AD1845_AF1_MIC_LEFT 0x10 /* alternate #1 feature + MIC left */ 3962306a36Sopenharmony_ci#define CS4231_ALT_FEATURE_2 0x11 /* alternate #2 feature enable */ 4062306a36Sopenharmony_ci#define AD1845_AF2_MIC_RIGHT 0x11 /* alternate #2 feature + MIC right */ 4162306a36Sopenharmony_ci#define CS4231_LEFT_LINE_IN 0x12 /* left line input control */ 4262306a36Sopenharmony_ci#define CS4231_RIGHT_LINE_IN 0x13 /* right line input control */ 4362306a36Sopenharmony_ci#define CS4231_TIMER_LOW 0x14 /* timer low byte */ 4462306a36Sopenharmony_ci#define CS4231_TIMER_HIGH 0x15 /* timer high byte */ 4562306a36Sopenharmony_ci#define CS4231_LEFT_MIC_INPUT 0x16 /* left MIC input control register (InterWave only) */ 4662306a36Sopenharmony_ci#define AD1845_UPR_FREQ_SEL 0x16 /* upper byte of frequency select */ 4762306a36Sopenharmony_ci#define CS4231_RIGHT_MIC_INPUT 0x17 /* right MIC input control register (InterWave only) */ 4862306a36Sopenharmony_ci#define AD1845_LWR_FREQ_SEL 0x17 /* lower byte of frequency select */ 4962306a36Sopenharmony_ci#define CS4236_EXT_REG 0x17 /* extended register access */ 5062306a36Sopenharmony_ci#define CS4231_IRQ_STATUS 0x18 /* irq status register */ 5162306a36Sopenharmony_ci#define CS4231_LINE_LEFT_OUTPUT 0x19 /* left line output control register (InterWave only) */ 5262306a36Sopenharmony_ci#define CS4231_VERSION 0x19 /* CS4231(A) - version values */ 5362306a36Sopenharmony_ci#define CS4231_MONO_CTRL 0x1a /* mono input/output control */ 5462306a36Sopenharmony_ci#define CS4231_LINE_RIGHT_OUTPUT 0x1b /* right line output control register (InterWave only) */ 5562306a36Sopenharmony_ci#define AD1845_PWR_DOWN 0x1b /* power down control */ 5662306a36Sopenharmony_ci#define CS4235_LEFT_MASTER 0x1b /* left master output control */ 5762306a36Sopenharmony_ci#define CS4231_REC_FORMAT 0x1c /* clock and data format - record - bits 7-0 MCE */ 5862306a36Sopenharmony_ci#define AD1845_CLOCK 0x1d /* crystal clock select and total power down */ 5962306a36Sopenharmony_ci#define CS4235_RIGHT_MASTER 0x1d /* right master output control */ 6062306a36Sopenharmony_ci#define CS4231_REC_UPR_CNT 0x1e /* record upper count */ 6162306a36Sopenharmony_ci#define CS4231_REC_LWR_CNT 0x1f /* record lower count */ 6262306a36Sopenharmony_ci 6362306a36Sopenharmony_ci/* definitions for codec register select port - CODECP( REGSEL ) */ 6462306a36Sopenharmony_ci 6562306a36Sopenharmony_ci#define CS4231_INIT 0x80 /* CODEC is initializing */ 6662306a36Sopenharmony_ci#define CS4231_MCE 0x40 /* mode change enable */ 6762306a36Sopenharmony_ci#define CS4231_TRD 0x20 /* transfer request disable */ 6862306a36Sopenharmony_ci 6962306a36Sopenharmony_ci/* definitions for codec status register - CODECP( STATUS ) */ 7062306a36Sopenharmony_ci 7162306a36Sopenharmony_ci#define CS4231_GLOBALIRQ 0x01 /* IRQ is active */ 7262306a36Sopenharmony_ci 7362306a36Sopenharmony_ci/* definitions for codec irq status */ 7462306a36Sopenharmony_ci 7562306a36Sopenharmony_ci#define CS4231_PLAYBACK_IRQ 0x10 7662306a36Sopenharmony_ci#define CS4231_RECORD_IRQ 0x20 7762306a36Sopenharmony_ci#define CS4231_TIMER_IRQ 0x40 7862306a36Sopenharmony_ci#define CS4231_ALL_IRQS 0x70 7962306a36Sopenharmony_ci#define CS4231_REC_UNDERRUN 0x08 8062306a36Sopenharmony_ci#define CS4231_REC_OVERRUN 0x04 8162306a36Sopenharmony_ci#define CS4231_PLY_OVERRUN 0x02 8262306a36Sopenharmony_ci#define CS4231_PLY_UNDERRUN 0x01 8362306a36Sopenharmony_ci 8462306a36Sopenharmony_ci/* definitions for CS4231_LEFT_INPUT and CS4231_RIGHT_INPUT registers */ 8562306a36Sopenharmony_ci 8662306a36Sopenharmony_ci#define CS4231_ENABLE_MIC_GAIN 0x20 8762306a36Sopenharmony_ci 8862306a36Sopenharmony_ci#define CS4231_MIXS_LINE 0x00 8962306a36Sopenharmony_ci#define CS4231_MIXS_AUX1 0x40 9062306a36Sopenharmony_ci#define CS4231_MIXS_MIC 0x80 9162306a36Sopenharmony_ci#define CS4231_MIXS_ALL 0xc0 9262306a36Sopenharmony_ci 9362306a36Sopenharmony_ci/* definitions for clock and data format register - CS4231_PLAYBK_FORMAT */ 9462306a36Sopenharmony_ci 9562306a36Sopenharmony_ci#define CS4231_LINEAR_8 0x00 /* 8-bit unsigned data */ 9662306a36Sopenharmony_ci#define CS4231_ALAW_8 0x60 /* 8-bit A-law companded */ 9762306a36Sopenharmony_ci#define CS4231_ULAW_8 0x20 /* 8-bit U-law companded */ 9862306a36Sopenharmony_ci#define CS4231_LINEAR_16 0x40 /* 16-bit twos complement data - little endian */ 9962306a36Sopenharmony_ci#define CS4231_LINEAR_16_BIG 0xc0 /* 16-bit twos complement data - big endian */ 10062306a36Sopenharmony_ci#define CS4231_ADPCM_16 0xa0 /* 16-bit ADPCM */ 10162306a36Sopenharmony_ci#define CS4231_STEREO 0x10 /* stereo mode */ 10262306a36Sopenharmony_ci/* bits 3-1 define frequency divisor */ 10362306a36Sopenharmony_ci#define CS4231_XTAL1 0x00 /* 24.576 crystal */ 10462306a36Sopenharmony_ci#define CS4231_XTAL2 0x01 /* 16.9344 crystal */ 10562306a36Sopenharmony_ci 10662306a36Sopenharmony_ci/* definitions for interface control register - CS4231_IFACE_CTRL */ 10762306a36Sopenharmony_ci 10862306a36Sopenharmony_ci#define CS4231_RECORD_PIO 0x80 /* record PIO enable */ 10962306a36Sopenharmony_ci#define CS4231_PLAYBACK_PIO 0x40 /* playback PIO enable */ 11062306a36Sopenharmony_ci#define CS4231_CALIB_MODE 0x18 /* calibration mode bits */ 11162306a36Sopenharmony_ci#define CS4231_AUTOCALIB 0x08 /* auto calibrate */ 11262306a36Sopenharmony_ci#define CS4231_SINGLE_DMA 0x04 /* use single DMA channel */ 11362306a36Sopenharmony_ci#define CS4231_RECORD_ENABLE 0x02 /* record enable */ 11462306a36Sopenharmony_ci#define CS4231_PLAYBACK_ENABLE 0x01 /* playback enable */ 11562306a36Sopenharmony_ci 11662306a36Sopenharmony_ci/* definitions for pin control register - CS4231_PIN_CTRL */ 11762306a36Sopenharmony_ci 11862306a36Sopenharmony_ci#define CS4231_IRQ_ENABLE 0x02 /* enable IRQ */ 11962306a36Sopenharmony_ci#define CS4231_XCTL1 0x40 /* external control #1 */ 12062306a36Sopenharmony_ci#define CS4231_XCTL0 0x80 /* external control #0 */ 12162306a36Sopenharmony_ci 12262306a36Sopenharmony_ci/* definitions for test and init register - CS4231_TEST_INIT */ 12362306a36Sopenharmony_ci 12462306a36Sopenharmony_ci#define CS4231_CALIB_IN_PROGRESS 0x20 /* auto calibrate in progress */ 12562306a36Sopenharmony_ci#define CS4231_DMA_REQUEST 0x10 /* DMA request in progress */ 12662306a36Sopenharmony_ci 12762306a36Sopenharmony_ci/* definitions for misc control register - CS4231_MISC_INFO */ 12862306a36Sopenharmony_ci 12962306a36Sopenharmony_ci#define CS4231_MODE2 0x40 /* MODE 2 */ 13062306a36Sopenharmony_ci#define CS4231_IW_MODE3 0x6c /* MODE 3 - InterWave enhanced mode */ 13162306a36Sopenharmony_ci#define CS4231_4236_MODE3 0xe0 /* MODE 3 - CS4236+ enhanced mode */ 13262306a36Sopenharmony_ci 13362306a36Sopenharmony_ci/* definitions for alternate feature 1 register - CS4231_ALT_FEATURE_1 */ 13462306a36Sopenharmony_ci 13562306a36Sopenharmony_ci#define CS4231_DACZ 0x01 /* zero DAC when underrun */ 13662306a36Sopenharmony_ci#define CS4231_TIMER_ENABLE 0x40 /* codec timer enable */ 13762306a36Sopenharmony_ci#define CS4231_OLB 0x80 /* output level bit */ 13862306a36Sopenharmony_ci 13962306a36Sopenharmony_ci/* definitions for Extended Registers - CS4236+ */ 14062306a36Sopenharmony_ci 14162306a36Sopenharmony_ci#define CS4236_REG(i23val) (((i23val << 2) & 0x10) | ((i23val >> 4) & 0x0f)) 14262306a36Sopenharmony_ci#define CS4236_I23VAL(reg) ((((reg)&0xf) << 4) | (((reg)&0x10) >> 2) | 0x8) 14362306a36Sopenharmony_ci 14462306a36Sopenharmony_ci#define CS4236_LEFT_LINE 0x08 /* left LINE alternate volume */ 14562306a36Sopenharmony_ci#define CS4236_RIGHT_LINE 0x18 /* right LINE alternate volume */ 14662306a36Sopenharmony_ci#define CS4236_LEFT_MIC 0x28 /* left MIC volume */ 14762306a36Sopenharmony_ci#define CS4236_RIGHT_MIC 0x38 /* right MIC volume */ 14862306a36Sopenharmony_ci#define CS4236_LEFT_MIX_CTRL 0x48 /* synthesis and left input mixer control */ 14962306a36Sopenharmony_ci#define CS4236_RIGHT_MIX_CTRL 0x58 /* right input mixer control */ 15062306a36Sopenharmony_ci#define CS4236_LEFT_FM 0x68 /* left FM volume */ 15162306a36Sopenharmony_ci#define CS4236_RIGHT_FM 0x78 /* right FM volume */ 15262306a36Sopenharmony_ci#define CS4236_LEFT_DSP 0x88 /* left DSP serial port volume */ 15362306a36Sopenharmony_ci#define CS4236_RIGHT_DSP 0x98 /* right DSP serial port volume */ 15462306a36Sopenharmony_ci#define CS4236_RIGHT_LOOPBACK 0xa8 /* right loopback monitor volume */ 15562306a36Sopenharmony_ci#define CS4236_DAC_MUTE 0xb8 /* DAC mute and IFSE enable */ 15662306a36Sopenharmony_ci#define CS4236_ADC_RATE 0xc8 /* indenpendent ADC sample frequency */ 15762306a36Sopenharmony_ci#define CS4236_DAC_RATE 0xd8 /* indenpendent DAC sample frequency */ 15862306a36Sopenharmony_ci#define CS4236_LEFT_MASTER 0xe8 /* left master digital audio volume */ 15962306a36Sopenharmony_ci#define CS4236_RIGHT_MASTER 0xf8 /* right master digital audio volume */ 16062306a36Sopenharmony_ci#define CS4236_LEFT_WAVE 0x0c /* left wavetable serial port volume */ 16162306a36Sopenharmony_ci#define CS4236_RIGHT_WAVE 0x1c /* right wavetable serial port volume */ 16262306a36Sopenharmony_ci#define CS4236_VERSION 0x9c /* chip version and ID */ 16362306a36Sopenharmony_ci 16462306a36Sopenharmony_ci/* definitions for extended registers - OPTI93X */ 16562306a36Sopenharmony_ci#define OPTi931_AUX_LEFT_INPUT 0x10 16662306a36Sopenharmony_ci#define OPTi931_AUX_RIGHT_INPUT 0x11 16762306a36Sopenharmony_ci#define OPTi93X_MIC_LEFT_INPUT 0x14 16862306a36Sopenharmony_ci#define OPTi93X_MIC_RIGHT_INPUT 0x15 16962306a36Sopenharmony_ci#define OPTi93X_OUT_LEFT 0x16 17062306a36Sopenharmony_ci#define OPTi93X_OUT_RIGHT 0x17 17162306a36Sopenharmony_ci 17262306a36Sopenharmony_ci#endif /* __SOUND_CS4231_REGS_H */ 173