am79c930reg.h revision 1.3.6.2 1 1.3.6.2 bouyer /* $NetBSD: am79c930reg.h,v 1.3.6.2 2000/11/20 11:40:22 bouyer Exp $ */
2 1.3.6.2 bouyer
3 1.3.6.2 bouyer /*-
4 1.3.6.2 bouyer * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 1.3.6.2 bouyer * All rights reserved.
6 1.3.6.2 bouyer *
7 1.3.6.2 bouyer * This code is derived from software contributed to The NetBSD Foundation
8 1.3.6.2 bouyer * by Bill Sommerfeld
9 1.3.6.2 bouyer *
10 1.3.6.2 bouyer * Redistribution and use in source and binary forms, with or without
11 1.3.6.2 bouyer * modification, are permitted provided that the following conditions
12 1.3.6.2 bouyer * are met:
13 1.3.6.2 bouyer * 1. Redistributions of source code must retain the above copyright
14 1.3.6.2 bouyer * notice, this list of conditions and the following disclaimer.
15 1.3.6.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
16 1.3.6.2 bouyer * notice, this list of conditions and the following disclaimer in the
17 1.3.6.2 bouyer * documentation and/or other materials provided with the distribution.
18 1.3.6.2 bouyer * 3. All advertising materials mentioning features or use of this software
19 1.3.6.2 bouyer * must display the following acknowledgement:
20 1.3.6.2 bouyer * This product includes software developed by the NetBSD
21 1.3.6.2 bouyer * Foundation, Inc. and its contributors.
22 1.3.6.2 bouyer * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.3.6.2 bouyer * contributors may be used to endorse or promote products derived
24 1.3.6.2 bouyer * from this software without specific prior written permission.
25 1.3.6.2 bouyer *
26 1.3.6.2 bouyer * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.3.6.2 bouyer * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.3.6.2 bouyer * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.3.6.2 bouyer * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.3.6.2 bouyer * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.3.6.2 bouyer * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.3.6.2 bouyer * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.3.6.2 bouyer * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.3.6.2 bouyer * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.3.6.2 bouyer * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.3.6.2 bouyer * POSSIBILITY OF SUCH DAMAGE.
37 1.3.6.2 bouyer */
38 1.3.6.2 bouyer
39 1.3.6.2 bouyer /*
40 1.3.6.2 bouyer * Device register definitions gleaned from from the AMD "Am79C930
41 1.3.6.2 bouyer * PCnet(tm)-Mobile Single Chip Wireless LAN Media Access Controller"
42 1.3.6.2 bouyer * data sheet, AMD Pub #20183, Rev B, amendment/0, issue date August 1997.
43 1.3.6.2 bouyer *
44 1.3.6.2 bouyer * As of 1999/10/23, this was available from AMD's web site in PDF
45 1.3.6.2 bouyer * form.
46 1.3.6.2 bouyer */
47 1.3.6.2 bouyer
48 1.3.6.2 bouyer
49 1.3.6.2 bouyer /*
50 1.3.6.2 bouyer * The 79c930 contains a bus interface unit, a media access
51 1.3.6.2 bouyer * controller, and a tranceiver attachment interface.
52 1.3.6.2 bouyer * The MAC contains an 80188 CPU core.
53 1.3.6.2 bouyer * typical devices built around this chip typically add 32k or 64k of
54 1.3.6.2 bouyer * memory for buffers.
55 1.3.6.2 bouyer *
56 1.3.6.2 bouyer * The 80188 runs firmware which handles most of the 802.11 gorp, and
57 1.3.6.2 bouyer * communicates with the host using shared data structures in this
58 1.3.6.2 bouyer * memory; the specifics of the shared memory layout are not covered
59 1.3.6.2 bouyer * in this source file; see <dev/ic/am80211fw.h> for details of that layer.
60 1.3.6.2 bouyer */
61 1.3.6.2 bouyer
62 1.3.6.2 bouyer /*
63 1.3.6.2 bouyer * Device Registers
64 1.3.6.2 bouyer */
65 1.3.6.2 bouyer
66 1.3.6.2 bouyer #define AM79C930_IO_BASE 0
67 1.3.6.2 bouyer #define AM79C930_IO_SIZE 16
68 1.3.6.2 bouyer #define AM79C930_IO_SIZE_BIG 40
69 1.3.6.2 bouyer #define AM79C930_IO_ALIGN 0x40 /* am79c930 decodes lower 6bits */
70 1.3.6.2 bouyer
71 1.3.6.2 bouyer
72 1.3.6.2 bouyer #define AM79C930_GCR 0 /* General Config Register */
73 1.3.6.2 bouyer
74 1.3.6.2 bouyer #define AM79C930_GCR_SWRESET 0x80 /* software reset */
75 1.3.6.2 bouyer #define AM79C930_GCR_CORESET 0x40 /* core reset */
76 1.3.6.2 bouyer #define AM79C930_GCR_DISPWDN 0x20 /* disable powerdown */
77 1.3.6.2 bouyer #define AM79C930_GCR_ECWAIT 0x10 /* embedded controller wait */
78 1.3.6.2 bouyer #define AM79C930_GCR_ECINT 0x08 /* interrupt from embedded ctrlr */
79 1.3.6.2 bouyer #define AM79C930_GCR_INT2EC 0x04 /* interrupt to embedded ctrlr */
80 1.3.6.2 bouyer #define AM79C930_GCR_ENECINT 0x02 /* enable interrupts from e.c. */
81 1.3.6.2 bouyer #define AM79C930_GCR_DAM 0x01 /* direct access mode (read only) */
82 1.3.6.2 bouyer
83 1.3.6.2 bouyer #define AM79C930_GCR_BITS "\020\1DAM\2ENECINT\3INT2EC\4ECINT\5ECWAIT\6DISPWDN\7CORESET\010SWRESET"
84 1.3.6.2 bouyer
85 1.3.6.2 bouyer #define AM79C930_BSS 1 /* Bank Switching Select register */
86 1.3.6.2 bouyer
87 1.3.6.2 bouyer #define AM79C930_BSS_ECATR 0x80 /* E.C. ALE test read */
88 1.3.6.2 bouyer #define AM79C930_BSS_FS 0x20 /* Flash Select */
89 1.3.6.2 bouyer #define AM79C930_BSS_MBS 0x18 /* Memory Bank Select */
90 1.3.6.2 bouyer #define AM79C930_BSS_EIOW 0x04 /* Expand I/O Window */
91 1.3.6.2 bouyer #define AM79C930_BSS_TBS 0x03 /* TAI Bank Select */
92 1.3.6.2 bouyer
93 1.3.6.2 bouyer #define AM79C930_LMA_LO 2 /* Local Memory Address register (low byte) */
94 1.3.6.2 bouyer
95 1.3.6.2 bouyer #define AM79C930_LMA_HI 3 /* Local Memory Address register (high byte) */
96 1.3.6.2 bouyer
97 1.3.6.2 bouyer /* set this bit to turn off ISAPnP version */
98 1.3.6.2 bouyer #define AM79C930_LMA_HI_ISAPWRDWN 0x80
99 1.3.6.2 bouyer
100 1.3.6.2 bouyer /*
101 1.3.6.2 bouyer * mmm, inconsistancy in chip documentation:
102 1.3.6.2 bouyer * According to page 79--80, all four of the following are equivalent
103 1.3.6.2 bouyer * and address the single byte pointed at by BSS_{FS,MBS} | LMA_{HI,LO}
104 1.3.6.2 bouyer * According to tables on p63 and p67, they're the LSB through MSB
105 1.3.6.2 bouyer * of a 32-bit word.
106 1.3.6.2 bouyer */
107 1.3.6.2 bouyer
108 1.3.6.2 bouyer #define AM79C930_IODPA 4 /* I/O Data port A */
109 1.3.6.2 bouyer #define AM79C930_IODPB 5 /* I/O Data port B */
110 1.3.6.2 bouyer #define AM79C930_IODPC 6 /* I/O Data port C */
111 1.3.6.2 bouyer #define AM79C930_IODPD 7 /* I/O Data port D */
112 1.3.6.2 bouyer
113 1.3.6.2 bouyer
114 1.3.6.2 bouyer /*
115 1.3.6.2 bouyer * Tranceiver Attachment Interface Registers (TIR space)
116 1.3.6.2 bouyer * (omitted for now, since host access to them is for diagnostic
117 1.3.6.2 bouyer * purposes only).
118 1.3.6.2 bouyer */
119 1.3.6.2 bouyer
120 1.3.6.2 bouyer /*
121 1.3.6.2 bouyer * memory space goo.
122 1.3.6.2 bouyer */
123 1.3.6.2 bouyer
124 1.3.6.2 bouyer #define AM79C930_MEM_SIZE 0x8000 /* 32k */
125 1.3.6.2 bouyer #define AM79C930_MEM_BASE 0x0 /* starting at 0 */
126