/*	$NetBSD: ad1848reg.h,v 1.1 1995/02/21 02:26:41 brezak Exp $	*/

/*
 * Copyright (c) 1994 John Brezak
 * Copyright (c) 1991-1993 Regents of the University of California.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by the Computer Systems
 *	Engineering Group at Lawrence Berkeley Laboratory.
 * 4. Neither the name of the University nor of the Laboratory may be used
 *    to endorse or promote products derived from this software without
 *    specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 *	$Id: ad1848reg.h,v 1.1 1995/02/21 02:26:41 brezak Exp $
 */
/*
 * Copyright (c) 1993 Analog Devices Inc. All rights reserved
 */

#define AD1848_BASE_VALID(base) ((base) == 0x530)

/* ad1848 direct registers */
#define AD1848_IADDR	0x04
#define AD1848_IDATA	0x05
#define AD1848_STATUS	0x06
#define AD1848_PIO	0x07

/* Gain constants  */
#define GAIN_0      0x00
#define GAIN_1_5    0x01
#define GAIN_3      0x02
#define GAIN_4_5    0x03
#define GAIN_6      0x04
#define GAIN_7_5    0x05
#define GAIN_9      0x06
#define GAIN_10_5   0x07
#define GAIN_12     0x08
#define GAIN_13_5   0x09
#define GAIN_15     0x0a
#define GAIN_16_5   0x0b
#define GAIN_18     0x0c
#define GAIN_19_5   0x0d
#define GAIN_21     0x0e
#define GAIN_22_5   0x0f
#define MUTE       0XFFFF

/* Attenuation constants  */

#define ATTEN_0      0x00
#define ATTEN_1_5    0x01
#define ATTEN_3      0x02
#define ATTEN_4_5    0x03
#define ATTEN_6      0x04
#define ATTEN_7_5    0x05
#define ATTEN_9      0x06
#define ATTEN_10_5   0x07
#define ATTEN_12     0x08
#define ATTEN_13_5   0x09
#define ATTEN_15     0x0a
#define ATTEN_16_5   0x0b
#define ATTEN_18     0x0c
#define ATTEN_19_5   0x0d
#define ATTEN_21     0x0e
#define ATTEN_22_5   0x0f

/* 1848 Sound Port bit defines */
#define SP_IN_INIT            0x80
#define MODE_CHANGE_ENABLE    0x40
#define MODE_CHANGE_MASK      0xbf
#define TRANSFER_DISABLE      0x20
#define TRANSFER_DISABLE_MASK 0xdf
#define ADDRESS_MASK          0xf0

/* Status bits */
#define INTERRUPT_STATUS      0x01
#define PLAYBACK_READY        0x02
#define PLAYBACK_LEFT         0x04
/* pbright is not left */
#define PLAYBACK_UPPER        0x08
/* bplower is not upper */

#define SAMPLE_OVERRUN        0x10
#define SAMPLE_UNDERRUN       0x10
#define CAPTURE_READY         0x20
#define CAPTURE_LEFT          0x40
/* cpright is not left */
#define CAPTURE_UPPER         0x08
/* cplower is not upper */

/* Input & Output regs bits */
#define LINE_INPUT            0x00
#define AUX_INPUT             0x40
#define MIC_INPUT             0x80
#define MIXED_DAC_INPUT       0xC0
#define INPUT_GAIN_MASK       0xf0
#define INPUT_MIC_GAIN_ENABLE 0x20
#define INPUT_MIC_GAIN_MASK   0xdf
#define INPUT_SOURCE_MASK     0x3f
#define AUX_INPUT_ATTEN_BITS  0x1f
#define AUX_INPUT_ATTEN_MASK  0xe0
#define AUX_INPUT_MUTE        0x80
#define AUX_INPUT_MUTE_MASK   0x7f
#define OUTPUT_MUTE           0x80
#define OUTPUT_MUTE_MASK      0x7f
#define OUTPUT_ATTEN_BITS     0x3f
#define OUTPUT_ATTEN_MASK     0xc0

/* Clock and Data format reg bits */
#define CLOCK_SELECT_MASK     0xfe
#define CLOCK_XTAL2           0x01
#define CLOCK_XTAL1           0x00
#define CLOCK_FREQ_MASK       0xf1
#define STEREO_MONO_MASK      0xef
#define FMT_STEREO            0x10
#define RMT_MONO              0x00
#define LINEAR_COMP_MASK      0xdf
#define LINEAR                0x00
#define COMPANDED             0x20
#define FORMAT_MASK           0xbf
#define PCM                   0x00
#define ULAW                  0x00
#define TWOS_COMP             0x40
#define ALAW                  0x40

/* Interface Configuration reg bits */
#define PLAYBACK_ENABLE       0x01
#define PLAYBACK_ENABLE_MASK  0xfe
#define CAPTURE_ENABLE        0x02
#define CAPTURE_ENABLE_MASK   0xfd
#define SINGLE_DMA            0x04
#define SINGLE_DMA_MASK       0xfb
#define DUAL_DMA              0x00
#define AUTO_CAL_ENABLE       0x08
#define AUTO_CAL_DISABLE_MASK 0xf7
#define PLAYBACK_PIO_ENABLE   0x40
#define PLAYBACK_DMA_MASK     0xbf
#define CAPTURE_PIO_ENABLE    0x80
#define CAPTURE_DMA_MASK      0x7f

/* Pin control bits */
#define INTERRUPT_ENABLE      0x02
#define INTERRUPT_MASK        0xfd
#define XCTL0_ENABLE          0x40
#define XCTL1_ENABLE          0x80

/* Test and init reg bits */
#define OVERRANGE_LEFT_MASK   0xfc
#define OVERRANGE_RIGHT_MASK  0xf3
#define DATA_REQUEST_STATUS   0x10
#define AUTO_CAL_IN_PROG      0x20
#define PLAYBACK_UNDERRUN     0x40
#define CAPTURE_UNDERRUN      0x80

/* Miscellaneous Control reg bits */
#define ID_MASK               0xf0

/* Digital Mix Control reg bits */
#define DIGITAL_MIX1_MUTE_MASK	0xfe
#define DIGITAL_MIX1_ENABLE	0x01
#define MIX_ATTEN_MASK		0xfc

/* 1848 Sound Port reg defines */
#define SP_LEFT_INPUT_CONTROL    0x0
#define SP_RIGHT_INPUT_CONTROL   0x1
#define SP_LEFT_AUX1_CONTROL     0x2
#define SP_RIGHT_AUX1_CONTROL    0x3
#define SP_LEFT_AUX2_CONTROL     0x4
#define SP_RIGHT_AUX2_CONTROL    0x5
#define SP_LEFT_OUTPUT_CONTROL   0x6
#define SP_RIGHT_OUTPUT_CONTROL  0x7
#define SP_CLOCK_DATA_FORMAT     0x8
#define SP_INTERFACE_CONFIG      0x9
#define SP_PIN_CONTROL           0xA
#define SP_TEST_AND_INIT         0xB
#define SP_MISC_INFO             0xC
#define SP_DIGITAL_MIX           0xD
#define SP_UPPER_BASE_COUNT      0xE
#define SP_LOWER_BASE_COUNT      0xF

