1/*
2 * Driver for PowerMac Burgundy onboard soundchips
3 * Copyright (c) 2001 by Takashi Iwai <tiwai@suse.de>
4 *   based on dmasound.c.
5 *
6 *   This program is free software; you can redistribute it and/or modify
7 *   it under the terms of the GNU General Public License as published by
8 *   the Free Software Foundation; either version 2 of the License, or
9 *   (at your option) any later version.
10 *
11 *   This program is distributed in the hope that it will be useful,
12 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 *   GNU General Public License for more details.
15 *
16 *   You should have received a copy of the GNU General Public License
17 *   along with this program; if not, write to the Free Software
18 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 */
20
21
22#ifndef __BURGUNDY_H
23#define __BURGUNDY_H
24
25#define MASK_ADDR_BURGUNDY_INPSEL21 (0x11 << 12)
26#define MASK_ADDR_BURGUNDY_INPSEL3 (0x12 << 12)
27
28#define MASK_ADDR_BURGUNDY_GAINCH1 (0x13 << 12)
29#define MASK_ADDR_BURGUNDY_GAINCH2 (0x14 << 12)
30#define MASK_ADDR_BURGUNDY_GAINCH3 (0x15 << 12)
31#define MASK_ADDR_BURGUNDY_GAINCH4 (0x16 << 12)
32
33#define MASK_ADDR_BURGUNDY_VOLCH1 (0x20 << 12)
34#define MASK_ADDR_BURGUNDY_VOLCH2 (0x21 << 12)
35#define MASK_ADDR_BURGUNDY_VOLCH3 (0x22 << 12)
36#define MASK_ADDR_BURGUNDY_VOLCH4 (0x23 << 12)
37
38#define MASK_ADDR_BURGUNDY_OUTPUTSELECTS (0x2B << 12)
39#define MASK_ADDR_BURGUNDY_OUTPUTENABLES (0x2F << 12)
40
41#define MASK_ADDR_BURGUNDY_MASTER_VOLUME (0x30 << 12)
42
43#define MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES (0x60 << 12)
44
45#define MASK_ADDR_BURGUNDY_ATTENSPEAKER (0x62 << 12)
46#define MASK_ADDR_BURGUNDY_ATTENLINEOUT (0x63 << 12)
47#define MASK_ADDR_BURGUNDY_ATTENHP (0x64 << 12)
48
49#define MASK_ADDR_BURGUNDY_VOLCD (MASK_ADDR_BURGUNDY_VOLCH1)
50#define MASK_ADDR_BURGUNDY_VOLLINE (MASK_ADDR_BURGUNDY_VOLCH2)
51#define MASK_ADDR_BURGUNDY_VOLMIC (MASK_ADDR_BURGUNDY_VOLCH3)
52#define MASK_ADDR_BURGUNDY_VOLMODEM (MASK_ADDR_BURGUNDY_VOLCH4)
53
54#define MASK_ADDR_BURGUNDY_GAINCD (MASK_ADDR_BURGUNDY_GAINCH1)
55#define MASK_ADDR_BURGUNDY_GAINLINE (MASK_ADDR_BURGUNDY_GAINCH2)
56#define MASK_ADDR_BURGUNDY_GAINMIC (MASK_ADDR_BURGUNDY_GAINCH3)
57#define MASK_ADDR_BURGUNDY_GAINMODEM (MASK_ADDR_BURGUNDY_VOLCH4)
58
59
60/* These are all default values for the burgundy */
61#define DEF_BURGUNDY_INPSEL21 (0xAA)
62#define DEF_BURGUNDY_INPSEL3 (0x0A)
63
64#define DEF_BURGUNDY_GAINCD (0x33)
65#define DEF_BURGUNDY_GAINLINE (0x44)
66#define DEF_BURGUNDY_GAINMIC (0x44)
67#define DEF_BURGUNDY_GAINMODEM (0x06)
68
69/* Remember: lowest volume here is 0x9b */
70#define DEF_BURGUNDY_VOLCD (0xCCCCCCCC)
71#define DEF_BURGUNDY_VOLLINE (0x00000000)
72#define DEF_BURGUNDY_VOLMIC (0x00000000)
73#define DEF_BURGUNDY_VOLMODEM (0xCCCCCCCC)
74
75#define DEF_BURGUNDY_OUTPUTSELECTS (0x010f010f)
76#define DEF_BURGUNDY_OUTPUTENABLES (0x0A)
77
78/* #define DEF_BURGUNDY_MASTER_VOLUME (0xFFFFFFFF) */ /* too loud */
79#define DEF_BURGUNDY_MASTER_VOLUME (0xDDDDDDDD)
80
81#define DEF_BURGUNDY_MORE_OUTPUTENABLES (0x7E)
82
83#define DEF_BURGUNDY_ATTENSPEAKER (0x44)
84#define DEF_BURGUNDY_ATTENLINEOUT (0xCC)
85#define DEF_BURGUNDY_ATTENHP (0xCC)
86
87/* OUTPUTENABLES bits */
88#define BURGUNDY_OUTPUT_LEFT	0x02
89#define BURGUNDY_OUTPUT_RIGHT	0x04
90#define BURGUNDY_OUTPUT_INTERN	0x80
91
92/* volume offset */
93#define BURGUNDY_VOLUME_OFFSET	155
94
95#endif /* __BURGUNDY_H */
96