piixpmreg.h revision 1.12 1 1.12 msaitoh /* $NetBSD: piixpmreg.h,v 1.12 2020/01/14 22:55:27 msaitoh Exp $ */
2 1.1 jmcneill /* $OpenBSD: piixreg.h,v 1.3 2006/01/03 22:39:03 grange Exp $ */
3 1.1 jmcneill
4 1.8 msaitoh /*-
5 1.8 msaitoh * Copyright (c) 2016 Andriy Gapon <avg (at) FreeBSD.org>
6 1.8 msaitoh * All rights reserved.
7 1.8 msaitoh *
8 1.8 msaitoh * Redistribution and use in source and binary forms, with or without
9 1.8 msaitoh * modification, are permitted provided that the following conditions
10 1.8 msaitoh * are met:
11 1.8 msaitoh * 1. Redistributions of source code must retain the above copyright
12 1.8 msaitoh * notice, this list of conditions and the following disclaimer.
13 1.8 msaitoh * 2. Redistributions in binary form must reproduce the above copyright
14 1.8 msaitoh * notice, this list of conditions and the following disclaimer in the
15 1.8 msaitoh * documentation and/or other materials provided with the distribution.
16 1.8 msaitoh *
17 1.8 msaitoh * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 1.8 msaitoh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 1.8 msaitoh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 1.8 msaitoh * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 1.8 msaitoh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 1.8 msaitoh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 1.8 msaitoh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 1.8 msaitoh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 1.8 msaitoh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 1.8 msaitoh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 1.8 msaitoh * SUCH DAMAGE.
28 1.8 msaitoh *
29 1.8 msaitoh * $FreeBSD: head/sys/dev/amdsbwd/amd_chipset.h 333269 2018-05-05 05:22:11Z avg $
30 1.8 msaitoh */
31 1.8 msaitoh
32 1.1 jmcneill /*
33 1.1 jmcneill * Copyright (c) 2005 Alexander Yurchenko <grange (at) openbsd.org>
34 1.1 jmcneill *
35 1.1 jmcneill * Permission to use, copy, modify, and distribute this software for any
36 1.1 jmcneill * purpose with or without fee is hereby granted, provided that the above
37 1.1 jmcneill * copyright notice and this permission notice appear in all copies.
38 1.1 jmcneill *
39 1.1 jmcneill * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
40 1.1 jmcneill * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
41 1.1 jmcneill * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
42 1.1 jmcneill * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
43 1.1 jmcneill * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
44 1.1 jmcneill * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
45 1.1 jmcneill * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
46 1.1 jmcneill */
47 1.1 jmcneill
48 1.1 jmcneill #ifndef _DEV_PCI_PIIXREG_H_
49 1.1 jmcneill #define _DEV_PCI_PIIXREG_H_
50 1.1 jmcneill
51 1.1 jmcneill /*
52 1.1 jmcneill * Intel PCI-to-ISA / IDE Xcelerator (PIIX) register definitions.
53 1.1 jmcneill */
54 1.1 jmcneill
55 1.1 jmcneill /*
56 1.1 jmcneill * Power management registers.
57 1.1 jmcneill */
58 1.1 jmcneill
59 1.1 jmcneill /* PCI configuration registers */
60 1.3 jmcneill #define PIIX_PM_BASE 0x40 /* Power management base address */
61 1.5 hannken #define PIIX_PM_BASE_CSB5_RESET 0x10 /* CSB5 PM reset */
62 1.2 jmcneill #define PIIX_DEVACTA 0x54 /* Device activity A (function 3) */
63 1.2 jmcneill #define PIIX_DEVACTB 0x58 /* Device activity B (function 3) */
64 1.4 drochner #define PIIX_PMREGMISC 0x80 /* Misc. Power management */
65 1.1 jmcneill #define PIIX_SMB_BASE 0x90 /* SMBus base address */
66 1.1 jmcneill #define PIIX_SMB_HOSTC 0xd0 /* SMBus host configuration */
67 1.1 jmcneill #define PIIX_SMB_HOSTC_HSTEN (1 << 16) /* enable host controller */
68 1.1 jmcneill #define PIIX_SMB_HOSTC_SMI (0 << 17) /* SMI */
69 1.9 msaitoh #define PIIX_SMB_HOSTC_IRQ (4 << 17) /* IRQ 9 */
70 1.1 jmcneill #define PIIX_SMB_HOSTC_INTMASK (7 << 17)
71 1.1 jmcneill
72 1.1 jmcneill /* SMBus I/O registers */
73 1.1 jmcneill #define PIIX_SMB_HS 0x00 /* host status */
74 1.1 jmcneill #define PIIX_SMB_HS_BUSY (1 << 0) /* running a command */
75 1.1 jmcneill #define PIIX_SMB_HS_INTR (1 << 1) /* command completed */
76 1.1 jmcneill #define PIIX_SMB_HS_DEVERR (1 << 2) /* command error */
77 1.1 jmcneill #define PIIX_SMB_HS_BUSERR (1 << 3) /* transaction collision */
78 1.1 jmcneill #define PIIX_SMB_HS_FAILED (1 << 4) /* failed bus transaction */
79 1.1 jmcneill #define PIIX_SMB_HS_BITS "\020\001BUSY\002INTR\003DEVERR\004BUSERR\005FAILED"
80 1.1 jmcneill #define PIIX_SMB_HC 0x02 /* host control */
81 1.1 jmcneill #define PIIX_SMB_HC_INTREN (1 << 0) /* enable interrupts */
82 1.1 jmcneill #define PIIX_SMB_HC_KILL (1 << 1) /* kill current transaction */
83 1.1 jmcneill #define PIIX_SMB_HC_CMD_QUICK (0 << 2) /* QUICK command */
84 1.1 jmcneill #define PIIX_SMB_HC_CMD_BYTE (1 << 2) /* BYTE command */
85 1.1 jmcneill #define PIIX_SMB_HC_CMD_BDATA (2 << 2) /* BYTE DATA command */
86 1.1 jmcneill #define PIIX_SMB_HC_CMD_WDATA (3 << 2) /* WORD DATA command */
87 1.1 jmcneill #define PIIX_SMB_HC_CMD_BLOCK (5 << 2) /* BLOCK command */
88 1.1 jmcneill #define PIIX_SMB_HC_START (1 << 6) /* start transaction */
89 1.1 jmcneill #define PIIX_SMB_HCMD 0x03 /* host command */
90 1.1 jmcneill #define PIIX_SMB_TXSLVA 0x04 /* transmit slave address */
91 1.1 jmcneill #define PIIX_SMB_TXSLVA_READ (1 << 0) /* read direction */
92 1.1 jmcneill #define PIIX_SMB_TXSLVA_ADDR(x) (((x) & 0x7f) << 1) /* 7-bit address */
93 1.1 jmcneill #define PIIX_SMB_HD0 0x05 /* host data 0 */
94 1.1 jmcneill #define PIIX_SMB_HD1 0x06 /* host data 1 */
95 1.1 jmcneill #define PIIX_SMB_HBDB 0x07 /* host block data byte */
96 1.1 jmcneill #define PIIX_SMB_SC 0x08 /* slave control */
97 1.1 jmcneill #define PIIX_SMB_SC_ALERTEN (1 << 3) /* enable SMBALERT# */
98 1.11 msaitoh #define PIIX_SMB_SC_HOSTSEM (1 << 4) /* (W1S) HostSemaphore */
99 1.11 msaitoh #define PIIX_SMB_SC_CLRHOSTSEM (1 << 5) /* (W1C) ClrHostSemaphore */
100 1.11 msaitoh #define PIIX_SMB_SC_ECSEM (1 << 6) /* (W1S) EcSemaphore */
101 1.11 msaitoh #define PIIX_SMB_SC_CLRECSEM (1 << 7) /* (W1C) ClrEcSemaphore */
102 1.11 msaitoh #define PIIX_SMB_SC_SEMMASK 0xf0 /* Semaphore bits */
103 1.1 jmcneill
104 1.3 jmcneill /* Power management I/O registers */
105 1.3 jmcneill #define PIIX_PM_PMTMR 0x08 /* power management timer */
106 1.3 jmcneill
107 1.3 jmcneill /* Misc */
108 1.3 jmcneill #define PIIX_PM_SIZE 0x38 /* Power management I/O space size */
109 1.1 jmcneill #define PIIX_SMB_SIZE 0x10 /* SMBus I/O space size */
110 1.1 jmcneill
111 1.8 msaitoh /*
112 1.8 msaitoh * AMD SB800 and compatible chipset's configuration registers.
113 1.8 msaitoh * See SB8xx RRG 2.3.3, etc.
114 1.8 msaitoh */
115 1.8 msaitoh
116 1.8 msaitoh /* In the I/O area */
117 1.8 msaitoh #define SB800_INDIRECTIO_BASE 0xcd6
118 1.8 msaitoh #define SB800_INDIRECTIO_SIZE 2
119 1.8 msaitoh #define SB800_INDIRECTIO_INDEX 0
120 1.8 msaitoh #define SB800_INDIRECTIO_DATA 1
121 1.9 msaitoh
122 1.6 soren #define SB800_PM_SMBUS0EN_LO 0x2c
123 1.6 soren #define SB800_PM_SMBUS0EN_HI 0x2d
124 1.10 msaitoh #define SB800_PM_SMBUS0EN_ENABLE __BIT(0) /* Function enable */
125 1.10 msaitoh #define SB800_PM_SMBUS0_MASK_C __BITS(2, 1) /* Port mask (PMIO2C) */
126 1.10 msaitoh #define SB800_PM_SMBUS0EN_BADDR __BITS(15, 5) /* Base address */
127 1.10 msaitoh
128 1.10 msaitoh #define SB800_PM_SMBUS0SEL 0x2e
129 1.10 msaitoh #define SB800_PM_SMBUS0_MASK_E __BITS(2, 1) /* Port mask (PMIO2E) */
130 1.10 msaitoh #define SB800_PM_SMBUS0SELEN 0x2f
131 1.10 msaitoh #define SB800_PM_USE_SMBUS0SEL __BIT(0) /*
132 1.10 msaitoh * If the bit is set, SMBUS0SEL is
133 1.10 msaitoh * used to select the port.
134 1.10 msaitoh */
135 1.6 soren
136 1.9 msaitoh /* In the SMBus I/O space */
137 1.8 msaitoh #define SB800_SMB_HOSTC 0x10 /* I2C bus configuration */
138 1.9 msaitoh #define SB800_SMB_HOSTC_IRQ (1 << 0) /* 0:SMI 1:IRQ */
139 1.9 msaitoh
140 1.9 msaitoh /* Misc */
141 1.9 msaitoh #define SB800_SMB_SIZE 0x11 /* SMBus I/O space size */
142 1.8 msaitoh
143 1.8 msaitoh /*
144 1.8 msaitoh * Newer FCH registers in the PMIO space.
145 1.8 msaitoh * See BKDG for Family 16h Models 30h-3Fh 3.26.13 PMx00 and PMx04.
146 1.8 msaitoh */
147 1.8 msaitoh #define AMDFCH41_PM_DECODE_EN0 0x00
148 1.8 msaitoh #define AMDFCH41_SMBUS_EN 0x10
149 1.8 msaitoh #define AMDFCH41_WDT_EN 0x80
150 1.8 msaitoh #define AMDFCH41_PM_DECODE_EN1 0x01
151 1.8 msaitoh #define AMDFCH41_PM_PORT_INDEX 0x02
152 1.12 msaitoh #define AMDFCH41_SMBUS_PORTMASK 0x18
153 1.8 msaitoh #define AMDFCH41_PM_DECODE_EN3 0x03
154 1.8 msaitoh #define AMDFCH41_WDT_RES_MASK 0x03
155 1.8 msaitoh #define AMDFCH41_WDT_RES_32US 0x00
156 1.8 msaitoh #define AMDFCH41_WDT_RES_10MS 0x01
157 1.8 msaitoh #define AMDFCH41_WDT_RES_100MS 0x02
158 1.8 msaitoh #define AMDFCH41_WDT_RES_1S 0x03
159 1.8 msaitoh #define AMDFCH41_WDT_EN_MASK 0x0c
160 1.8 msaitoh #define AMDFCH41_WDT_ENABLE 0x00
161 1.8 msaitoh #define AMDFCH41_PM_ISA_CTRL 0x04
162 1.8 msaitoh #define AMDFCH41_MMIO_EN 0x02
163 1.8 msaitoh
164 1.1 jmcneill #endif /* !_DEV_PCI_PIIXREG_H_ */
165