Add, hopefully, support for the ICH5 sound hardware.
[dragonfly.git] / sys / dev / sound / pci / ich.h
1 /*
2  * Copyright (c) 2000 Katsurajima Naoto <raven@katsurajima.seya.yokohama.jp>
3  * Copyright (c) 2001 Cameron Grant <cg@freebsd.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHERIN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THEPOSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/sys/dev/sound/pci/ich.h,v 1.1.2.3 2002/08/22 16:38:21 orion Exp $
28  * $DragonFly: src/sys/dev/sound/pci/ich.h,v 1.2 2003/06/17 04:28:30 dillon Exp $
29  */
30
31 #define PCIR_NAMBAR 0x10
32 #define PCIR_NABMBAR 0x14
33
34 #define PCIR_ICH_LEGACY 0x41
35 #define ICH_LEGACY_ENABLE       0x01
36
37 /* Native Audio Bus Master Control Registers */
38 #define ICH_REG_X_BDBAR 0x00
39 #define ICH_REG_X_CIV   0x04
40 #define ICH_REG_X_LVI   0x05
41 #define ICH_REG_X_SR    0x06
42 #define ICH_REG_X_PICB  0x08
43 #define ICH_REG_X_PIV   0x0a
44 #define ICH_REG_X_CR    0x0b
45
46 #define ICH_REG_PI_BASE 0x00
47 #define ICH_REG_PO_BASE 0x10
48 #define ICH_REG_MC_BASE 0x20
49
50 #define ICH_REG_GLOB_CNT 0x2c
51 #define ICH_REG_GLOB_STA 0x30
52 #define ICH_REG_ACC_SEMA 0x34
53
54 /* Status Register Values */
55 #define ICH_X_SR_DCH   0x0001
56 #define ICH_X_SR_CELV  0x0002
57 #define ICH_X_SR_LVBCI 0x0004
58 #define ICH_X_SR_BCIS  0x0008
59 #define ICH_X_SR_FIFOE 0x0010
60
61 /* Control Register Values */
62 #define ICH_X_CR_RPBM  0x01
63 #define ICH_X_CR_RR    0x02
64 #define ICH_X_CR_LVBIE 0x04
65 #define ICH_X_CR_FEIE  0x08
66 #define ICH_X_CR_IOCE  0x10
67
68 /* Global Control Register Values */
69 #define ICH_GLOB_CTL_GIE  0x00000001
70 #define ICH_GLOB_CTL_COLD 0x00000002 /* negate */
71 #define ICH_GLOB_CTL_WARM 0x00000004
72 #define ICH_GLOB_CTL_SHUT 0x00000008
73 #define ICH_GLOB_CTL_PRES 0x00000010
74 #define ICH_GLOB_CTL_SRES 0x00000020
75
76 /* Global Status Register Values */
77 #define ICH_GLOB_STA_GSCI   0x00000001
78 #define ICH_GLOB_STA_MIINT  0x00000002
79 #define ICH_GLOB_STA_MOINT  0x00000004
80 #define ICH_GLOB_STA_PIINT  0x00000020
81 #define ICH_GLOB_STA_POINT  0x00000040
82 #define ICH_GLOB_STA_MINT   0x00000080
83 #define ICH_GLOB_STA_PCR    0x00000100
84 #define ICH_GLOB_STA_SCR    0x00000200
85 #define ICH_GLOB_STA_PRES   0x00000400
86 #define ICH_GLOB_STA_SRES   0x00000800
87 #define ICH_GLOB_STA_SLOT12 0x00007000
88 #define ICH_GLOB_STA_RCODEC 0x00008000
89 #define ICH_GLOB_STA_AD3    0x00010000
90 #define ICH_GLOB_STA_MD3    0x00020000
91 #define ICH_GLOB_STA_IMASK  (ICH_GLOB_STA_MIINT | ICH_GLOB_STA_MOINT | ICH_GLOB_STA_PIINT | ICH_GLOB_STA_POINT | ICH_GLOB_STA_MINT | ICH_GLOB_STA_PRES | ICH_GLOB_STA_SRES)
92
93 /* play/record buffer */
94 #define ICH_BDC_IOC 0x80000000
95 #define ICH_BDC_BUP 0x40000000
96