blob: 3aab13730408016055e3f1244bf89d9748abb3d2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* *********************************************************************
2 * SB1250 Board Support Package
Ralf Baechle42a3b4f2005-09-03 15:56:17 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Register Definitions File: sb1250_regs.h
Ralf Baechle42a3b4f2005-09-03 15:56:17 -07005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This module contains the addresses of the on-chip peripherals
7 * on the SB1250.
Ralf Baechle42a3b4f2005-09-03 15:56:17 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * SB1250 specification level: 01/02/2002
Ralf Baechle42a3b4f2005-09-03 15:56:17 -070010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Author: Mitch Lichtenberg
Ralf Baechle42a3b4f2005-09-03 15:56:17 -070012 *
13 *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 * Copyright 2000,2001,2002,2003
16 * Broadcom Corporation. All rights reserved.
Ralf Baechle42a3b4f2005-09-03 15:56:17 -070017 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * the License, or (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
Ralf Baechle42a3b4f2005-09-03 15:56:17 -070030 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * MA 02111-1307 USA
32 ********************************************************************* */
33
34
35#ifndef _SB1250_REGS_H
36#define _SB1250_REGS_H
37
38#include "sb1250_defs.h"
39
40
41/* *********************************************************************
42 * Some general notes:
Ralf Baechle42a3b4f2005-09-03 15:56:17 -070043 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * For the most part, when there is more than one peripheral
45 * of the same type on the SOC, the constants below will be
46 * offsets from the base of each peripheral. For example,
47 * the MAC registers are described as offsets from the first
48 * MAC register, and there will be a MAC_REGISTER() macro
Ralf Baechle42a3b4f2005-09-03 15:56:17 -070049 * to calculate the base address of a given MAC.
50 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * The information in this file is based on the SB1250 SOC
52 * manual version 0.2, July 2000.
53 ********************************************************************* */
54
55
Ralf Baechle42a3b4f2005-09-03 15:56:17 -070056/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * Memory Controller Registers
58 ********************************************************************* */
59
60/*
61 * XXX: can't remove MC base 0 if 112x, since it's used by other macros,
62 * since there is one reg there (but it could get its addr/offset constant).
63 */
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -070064
65#if SIBYTE_HDR_FEATURE_1250_112x /* This MC only on 1250 & 112x */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define A_MC_BASE_0 0x0010051000
67#define A_MC_BASE_1 0x0010052000
68#define MC_REGISTER_SPACING 0x1000
69
70#define A_MC_BASE(ctlid) ((ctlid)*MC_REGISTER_SPACING+A_MC_BASE_0)
71#define A_MC_REGISTER(ctlid,reg) (A_MC_BASE(ctlid)+(reg))
72
73#define R_MC_CONFIG 0x0000000100
74#define R_MC_DRAMCMD 0x0000000120
75#define R_MC_DRAMMODE 0x0000000140
76#define R_MC_TIMING1 0x0000000160
77#define R_MC_TIMING2 0x0000000180
78#define R_MC_CS_START 0x00000001A0
79#define R_MC_CS_END 0x00000001C0
80#define R_MC_CS_INTERLEAVE 0x00000001E0
81#define S_MC_CS_STARTEND 16
82
83#define R_MC_CSX_BASE 0x0000000200
84#define R_MC_CSX_ROW 0x0000000000 /* relative to CSX_BASE, above */
85#define R_MC_CSX_COL 0x0000000020 /* relative to CSX_BASE, above */
86#define R_MC_CSX_BA 0x0000000040 /* relative to CSX_BASE, above */
87#define MC_CSX_SPACING 0x0000000060 /* relative to CSX_BASE, above */
88
89#define R_MC_CS0_ROW 0x0000000200
90#define R_MC_CS0_COL 0x0000000220
91#define R_MC_CS0_BA 0x0000000240
92#define R_MC_CS1_ROW 0x0000000260
93#define R_MC_CS1_COL 0x0000000280
94#define R_MC_CS1_BA 0x00000002A0
95#define R_MC_CS2_ROW 0x00000002C0
96#define R_MC_CS2_COL 0x00000002E0
97#define R_MC_CS2_BA 0x0000000300
98#define R_MC_CS3_ROW 0x0000000320
99#define R_MC_CS3_COL 0x0000000340
100#define R_MC_CS3_BA 0x0000000360
101#define R_MC_CS_ATTR 0x0000000380
102#define R_MC_TEST_DATA 0x0000000400
103#define R_MC_TEST_ECC 0x0000000420
104#define R_MC_MCLK_CFG 0x0000000500
105
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700106#endif /* 1250 & 112x */
107
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700108/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * L2 Cache Control Registers
110 ********************************************************************* */
111
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700112#if SIBYTE_HDR_FEATURE_1250_112x /* This L2C only on 1250/112x */
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define A_L2_READ_TAG 0x0010040018
115#define A_L2_ECC_TAG 0x0010040038
116#if SIBYTE_HDR_FEATURE(1250, PASS3) || SIBYTE_HDR_FEATURE(112x, PASS1)
117#define A_L2_READ_MISC 0x0010040058
118#endif /* 1250 PASS3 || 112x PASS1 */
119#define A_L2_WAY_DISABLE 0x0010041000
120#define A_L2_MAKEDISABLE(x) (A_L2_WAY_DISABLE | (((~(x))&0x0F) << 8))
121#define A_L2_MGMT_TAG_BASE 0x00D0000000
122
123#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1)
124#define A_L2_CACHE_DISABLE 0x0010042000
125#define A_L2_MAKECACHEDISABLE(x) (A_L2_CACHE_DISABLE | (((x)&0x0F) << 8))
126#define A_L2_MISC_CONFIG 0x0010043000
127#endif /* 1250 PASS2 || 112x PASS1 */
128
129/* Backward-compatibility definitions. */
130/* XXX: discourage people from using these constants. */
131#define A_L2_READ_ADDRESS A_L2_READ_TAG
132#define A_L2_EEC_ADDRESS A_L2_ECC_TAG
133
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700134#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700136/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * PCI Interface Registers
138 ********************************************************************* */
139
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700140#if SIBYTE_HDR_FEATURE_1250_112x /* This PCI/HT only on 1250/112x */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#define A_PCI_TYPE00_HEADER 0x00DE000000
142#define A_PCI_TYPE01_HEADER 0x00DE000800
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700143#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700146/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 * Ethernet DMA and MACs
148 ********************************************************************* */
149
150#define A_MAC_BASE_0 0x0010064000
151#define A_MAC_BASE_1 0x0010065000
152#if SIBYTE_HDR_FEATURE_CHIP(1250)
153#define A_MAC_BASE_2 0x0010066000
154#endif /* 1250 */
155
156#define MAC_SPACING 0x1000
157#define MAC_DMA_TXRX_SPACING 0x0400
158#define MAC_DMA_CHANNEL_SPACING 0x0100
159#define DMA_RX 0
160#define DMA_TX 1
161#define MAC_NUM_DMACHAN 2 /* channels per direction */
162
163/* XXX: not correct; depends on SOC type. */
164#define MAC_NUM_PORTS 3
165
166#define A_MAC_CHANNEL_BASE(macnum) \
167 (A_MAC_BASE_0 + \
168 MAC_SPACING*(macnum))
169
170#define A_MAC_REGISTER(macnum,reg) \
171 (A_MAC_BASE_0 + \
172 MAC_SPACING*(macnum) + (reg))
173
174
175#define R_MAC_DMA_CHANNELS 0x800 /* Relative to A_MAC_CHANNEL_BASE */
176
177#define A_MAC_DMA_CHANNEL_BASE(macnum,txrx,chan) \
178 ((A_MAC_CHANNEL_BASE(macnum)) + \
179 R_MAC_DMA_CHANNELS + \
180 (MAC_DMA_TXRX_SPACING*(txrx)) + \
181 (MAC_DMA_CHANNEL_SPACING*(chan)))
182
183#define R_MAC_DMA_CHANNEL_BASE(txrx,chan) \
184 (R_MAC_DMA_CHANNELS + \
185 (MAC_DMA_TXRX_SPACING*(txrx)) + \
186 (MAC_DMA_CHANNEL_SPACING*(chan)))
187
188#define A_MAC_DMA_REGISTER(macnum,txrx,chan,reg) \
189 (A_MAC_DMA_CHANNEL_BASE(macnum,txrx,chan) + \
190 (reg))
191
192#define R_MAC_DMA_REGISTER(txrx,chan,reg) \
193 (R_MAC_DMA_CHANNEL_BASE(txrx,chan) + \
194 (reg))
195
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700196/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * DMA channel registers, relative to A_MAC_DMA_CHANNEL_BASE
198 */
199
200#define R_MAC_DMA_CONFIG0 0x00000000
201#define R_MAC_DMA_CONFIG1 0x00000008
202#define R_MAC_DMA_DSCR_BASE 0x00000010
203#define R_MAC_DMA_DSCR_CNT 0x00000018
204#define R_MAC_DMA_CUR_DSCRA 0x00000020
205#define R_MAC_DMA_CUR_DSCRB 0x00000028
206#define R_MAC_DMA_CUR_DSCRADDR 0x00000030
207#if SIBYTE_HDR_FEATURE(1250, PASS3) || SIBYTE_HDR_FEATURE(112x, PASS1)
208#define R_MAC_DMA_OODPKTLOST_RX 0x00000038 /* rx only */
209#endif /* 1250 PASS3 || 112x PASS1 */
210
211/*
212 * RMON Counters
213 */
214
215#define R_MAC_RMON_TX_BYTES 0x00000000
216#define R_MAC_RMON_COLLISIONS 0x00000008
217#define R_MAC_RMON_LATE_COL 0x00000010
218#define R_MAC_RMON_EX_COL 0x00000018
219#define R_MAC_RMON_FCS_ERROR 0x00000020
220#define R_MAC_RMON_TX_ABORT 0x00000028
221/* Counter #6 (0x30) now reserved */
222#define R_MAC_RMON_TX_BAD 0x00000038
223#define R_MAC_RMON_TX_GOOD 0x00000040
224#define R_MAC_RMON_TX_RUNT 0x00000048
225#define R_MAC_RMON_TX_OVERSIZE 0x00000050
226#define R_MAC_RMON_RX_BYTES 0x00000080
227#define R_MAC_RMON_RX_MCAST 0x00000088
228#define R_MAC_RMON_RX_BCAST 0x00000090
229#define R_MAC_RMON_RX_BAD 0x00000098
230#define R_MAC_RMON_RX_GOOD 0x000000A0
231#define R_MAC_RMON_RX_RUNT 0x000000A8
232#define R_MAC_RMON_RX_OVERSIZE 0x000000B0
233#define R_MAC_RMON_RX_FCS_ERROR 0x000000B8
234#define R_MAC_RMON_RX_LENGTH_ERROR 0x000000C0
235#define R_MAC_RMON_RX_CODE_ERROR 0x000000C8
236#define R_MAC_RMON_RX_ALIGN_ERROR 0x000000D0
237
238/* Updated to spec 0.2 */
239#define R_MAC_CFG 0x00000100
240#define R_MAC_THRSH_CFG 0x00000108
241#define R_MAC_VLANTAG 0x00000110
242#define R_MAC_FRAMECFG 0x00000118
243#define R_MAC_EOPCNT 0x00000120
244#define R_MAC_FIFO_PTRS 0x00000130
245#define R_MAC_ADFILTER_CFG 0x00000200
246#define R_MAC_ETHERNET_ADDR 0x00000208
247#define R_MAC_PKT_TYPE 0x00000210
248#if SIBYTE_HDR_FEATURE(1250, PASS3) || SIBYTE_HDR_FEATURE(112x, PASS1)
249#define R_MAC_ADMASK0 0x00000218
250#define R_MAC_ADMASK1 0x00000220
251#endif /* 1250 PASS3 || 112x PASS1 */
252#define R_MAC_HASH_BASE 0x00000240
253#define R_MAC_ADDR_BASE 0x00000280
254#define R_MAC_CHLO0_BASE 0x00000300
255#define R_MAC_CHUP0_BASE 0x00000320
256#define R_MAC_ENABLE 0x00000400
257#define R_MAC_STATUS 0x00000408
258#define R_MAC_INT_MASK 0x00000410
259#define R_MAC_TXD_CTL 0x00000420
260#define R_MAC_MDIO 0x00000428
261#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1)
262#define R_MAC_STATUS1 0x00000430
263#endif /* 1250 PASS2 || 112x PASS1 */
264#define R_MAC_DEBUG_STATUS 0x00000448
265
266#define MAC_HASH_COUNT 8
267#define MAC_ADDR_COUNT 8
268#define MAC_CHMAP_COUNT 4
269
270
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700271/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 * DUART Registers
273 ********************************************************************* */
274
275
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700276#if SIBYTE_HDR_FEATURE_1250_112x /* This MC only on 1250 & 112x */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#define R_DUART_NUM_PORTS 2
278
279#define A_DUART 0x0010060000
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#define DUART_CHANREG_SPACING 0x100
282#define A_DUART_CHANREG(chan,reg) (A_DUART + DUART_CHANREG_SPACING*(chan) + (reg))
283#define R_DUART_CHANREG(chan,reg) (DUART_CHANREG_SPACING*(chan) + (reg))
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700284#endif /* 1250 & 112x */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286#define R_DUART_MODE_REG_1 0x100
287#define R_DUART_MODE_REG_2 0x110
288#define R_DUART_STATUS 0x120
289#define R_DUART_CLK_SEL 0x130
290#define R_DUART_CMD 0x150
291#define R_DUART_RX_HOLD 0x160
292#define R_DUART_TX_HOLD 0x170
293
294#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1)
295#define R_DUART_FULL_CTL 0x140
296#define R_DUART_OPCR_X 0x180
297#define R_DUART_AUXCTL_X 0x190
298#endif /* 1250 PASS2 || 112x PASS1 */
299
300
301/*
302 * The IMR and ISR can't be addressed with A_DUART_CHANREG,
303 * so use this macro instead.
304 */
305
306#define R_DUART_AUX_CTRL 0x310
307#define R_DUART_ISR_A 0x320
308#define R_DUART_IMR_A 0x330
309#define R_DUART_ISR_B 0x340
310#define R_DUART_IMR_B 0x350
311#define R_DUART_OUT_PORT 0x360
312#define R_DUART_OPCR 0x370
313
314#define R_DUART_SET_OPR 0x3B0
315#define R_DUART_CLEAR_OPR 0x3C0
316
317#define DUART_IMRISR_SPACING 0x20
318
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700319#if SIBYTE_HDR_FEATURE_1250_112x /* This MC only on 1250 & 112x */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#define R_DUART_IMRREG(chan) (R_DUART_IMR_A + (chan)*DUART_IMRISR_SPACING)
321#define R_DUART_ISRREG(chan) (R_DUART_ISR_A + (chan)*DUART_IMRISR_SPACING)
322
323#define A_DUART_IMRREG(chan) (A_DUART + R_DUART_IMRREG(chan))
324#define A_DUART_ISRREG(chan) (A_DUART + R_DUART_ISRREG(chan))
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700325#endif /* 1250 & 112x */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327
328
329
330/*
331 * These constants are the absolute addresses.
332 */
333
334#define A_DUART_MODE_REG_1_A 0x0010060100
335#define A_DUART_MODE_REG_2_A 0x0010060110
336#define A_DUART_STATUS_A 0x0010060120
337#define A_DUART_CLK_SEL_A 0x0010060130
338#define A_DUART_CMD_A 0x0010060150
339#define A_DUART_RX_HOLD_A 0x0010060160
340#define A_DUART_TX_HOLD_A 0x0010060170
341
342#define A_DUART_MODE_REG_1_B 0x0010060200
343#define A_DUART_MODE_REG_2_B 0x0010060210
344#define A_DUART_STATUS_B 0x0010060220
345#define A_DUART_CLK_SEL_B 0x0010060230
346#define A_DUART_CMD_B 0x0010060250
347#define A_DUART_RX_HOLD_B 0x0010060260
348#define A_DUART_TX_HOLD_B 0x0010060270
349
350#define A_DUART_INPORT_CHNG 0x0010060300
351#define A_DUART_AUX_CTRL 0x0010060310
352#define A_DUART_ISR_A 0x0010060320
353#define A_DUART_IMR_A 0x0010060330
354#define A_DUART_ISR_B 0x0010060340
355#define A_DUART_IMR_B 0x0010060350
356#define A_DUART_OUT_PORT 0x0010060360
357#define A_DUART_OPCR 0x0010060370
358#define A_DUART_IN_PORT 0x0010060380
359#define A_DUART_ISR 0x0010060390
360#define A_DUART_IMR 0x00100603A0
361#define A_DUART_SET_OPR 0x00100603B0
362#define A_DUART_CLEAR_OPR 0x00100603C0
363#define A_DUART_INPORT_CHNG_A 0x00100603D0
364#define A_DUART_INPORT_CHNG_B 0x00100603E0
365
366#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1)
367#define A_DUART_FULL_CTL_A 0x0010060140
368#define A_DUART_FULL_CTL_B 0x0010060240
369
370#define A_DUART_OPCR_A 0x0010060180
371#define A_DUART_OPCR_B 0x0010060280
372
373#define A_DUART_INPORT_CHNG_DEBUG 0x00100603F0
374#endif /* 1250 PASS2 || 112x PASS1 */
375
376
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700377/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * Synchronous Serial Registers
379 ********************************************************************* */
380
381
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700382#if SIBYTE_HDR_FEATURE_1250_112x /* sync serial only on 1250/112x */
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#define A_SER_BASE_0 0x0010060400
385#define A_SER_BASE_1 0x0010060800
386#define SER_SPACING 0x400
387
388#define SER_DMA_TXRX_SPACING 0x80
389
390#define SER_NUM_PORTS 2
391
392#define A_SER_CHANNEL_BASE(sernum) \
393 (A_SER_BASE_0 + \
394 SER_SPACING*(sernum))
395
396#define A_SER_REGISTER(sernum,reg) \
397 (A_SER_BASE_0 + \
398 SER_SPACING*(sernum) + (reg))
399
400
401#define R_SER_DMA_CHANNELS 0 /* Relative to A_SER_BASE_x */
402
403#define A_SER_DMA_CHANNEL_BASE(sernum,txrx) \
404 ((A_SER_CHANNEL_BASE(sernum)) + \
405 R_SER_DMA_CHANNELS + \
406 (SER_DMA_TXRX_SPACING*(txrx)))
407
408#define A_SER_DMA_REGISTER(sernum,txrx,reg) \
409 (A_SER_DMA_CHANNEL_BASE(sernum,txrx) + \
410 (reg))
411
412
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700413/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * DMA channel registers, relative to A_SER_DMA_CHANNEL_BASE
415 */
416
417#define R_SER_DMA_CONFIG0 0x00000000
418#define R_SER_DMA_CONFIG1 0x00000008
419#define R_SER_DMA_DSCR_BASE 0x00000010
420#define R_SER_DMA_DSCR_CNT 0x00000018
421#define R_SER_DMA_CUR_DSCRA 0x00000020
422#define R_SER_DMA_CUR_DSCRB 0x00000028
423#define R_SER_DMA_CUR_DSCRADDR 0x00000030
424
425#define R_SER_DMA_CONFIG0_RX 0x00000000
426#define R_SER_DMA_CONFIG1_RX 0x00000008
427#define R_SER_DMA_DSCR_BASE_RX 0x00000010
428#define R_SER_DMA_DSCR_COUNT_RX 0x00000018
429#define R_SER_DMA_CUR_DSCR_A_RX 0x00000020
430#define R_SER_DMA_CUR_DSCR_B_RX 0x00000028
431#define R_SER_DMA_CUR_DSCR_ADDR_RX 0x00000030
432
433#define R_SER_DMA_CONFIG0_TX 0x00000080
434#define R_SER_DMA_CONFIG1_TX 0x00000088
435#define R_SER_DMA_DSCR_BASE_TX 0x00000090
436#define R_SER_DMA_DSCR_COUNT_TX 0x00000098
437#define R_SER_DMA_CUR_DSCR_A_TX 0x000000A0
438#define R_SER_DMA_CUR_DSCR_B_TX 0x000000A8
439#define R_SER_DMA_CUR_DSCR_ADDR_TX 0x000000B0
440
441#define R_SER_MODE 0x00000100
442#define R_SER_MINFRM_SZ 0x00000108
443#define R_SER_MAXFRM_SZ 0x00000110
444#define R_SER_ADDR 0x00000118
445#define R_SER_USR0_ADDR 0x00000120
446#define R_SER_USR1_ADDR 0x00000128
447#define R_SER_USR2_ADDR 0x00000130
448#define R_SER_USR3_ADDR 0x00000138
449#define R_SER_CMD 0x00000140
450#define R_SER_TX_RD_THRSH 0x00000160
451#define R_SER_TX_WR_THRSH 0x00000168
452#define R_SER_RX_RD_THRSH 0x00000170
453#define R_SER_LINE_MODE 0x00000178
454#define R_SER_DMA_ENABLE 0x00000180
455#define R_SER_INT_MASK 0x00000190
456#define R_SER_STATUS 0x00000188
457#define R_SER_STATUS_DEBUG 0x000001A8
458#define R_SER_RX_TABLE_BASE 0x00000200
459#define SER_RX_TABLE_COUNT 16
460#define R_SER_TX_TABLE_BASE 0x00000300
461#define SER_TX_TABLE_COUNT 16
462
463/* RMON Counters */
464#define R_SER_RMON_TX_BYTE_LO 0x000001C0
465#define R_SER_RMON_TX_BYTE_HI 0x000001C8
466#define R_SER_RMON_RX_BYTE_LO 0x000001D0
467#define R_SER_RMON_RX_BYTE_HI 0x000001D8
468#define R_SER_RMON_TX_UNDERRUN 0x000001E0
469#define R_SER_RMON_RX_OVERFLOW 0x000001E8
470#define R_SER_RMON_RX_ERRORS 0x000001F0
471#define R_SER_RMON_RX_BADADDR 0x000001F8
472
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700473#endif /* 1250/112x */
474
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700475/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * Generic Bus Registers
477 ********************************************************************* */
478
479#define IO_EXT_CFG_COUNT 8
480
481#define A_IO_EXT_BASE 0x0010061000
482#define A_IO_EXT_REG(r) (A_IO_EXT_BASE + (r))
483
484#define A_IO_EXT_CFG_BASE 0x0010061000
485#define A_IO_EXT_MULT_SIZE_BASE 0x0010061100
486#define A_IO_EXT_START_ADDR_BASE 0x0010061200
487#define A_IO_EXT_TIME_CFG0_BASE 0x0010061600
488#define A_IO_EXT_TIME_CFG1_BASE 0x0010061700
489
490#define IO_EXT_REGISTER_SPACING 8
491#define A_IO_EXT_CS_BASE(cs) (A_IO_EXT_CFG_BASE+IO_EXT_REGISTER_SPACING*(cs))
492#define R_IO_EXT_REG(reg,cs) ((cs)*IO_EXT_REGISTER_SPACING + (reg))
493
494#define R_IO_EXT_CFG 0x0000
495#define R_IO_EXT_MULT_SIZE 0x0100
496#define R_IO_EXT_START_ADDR 0x0200
497#define R_IO_EXT_TIME_CFG0 0x0600
498#define R_IO_EXT_TIME_CFG1 0x0700
499
500
501#define A_IO_INTERRUPT_STATUS 0x0010061A00
502#define A_IO_INTERRUPT_DATA0 0x0010061A10
503#define A_IO_INTERRUPT_DATA1 0x0010061A18
504#define A_IO_INTERRUPT_DATA2 0x0010061A20
505#define A_IO_INTERRUPT_DATA3 0x0010061A28
506#define A_IO_INTERRUPT_ADDR0 0x0010061A30
507#define A_IO_INTERRUPT_ADDR1 0x0010061A40
508#define A_IO_INTERRUPT_PARITY 0x0010061A50
509#define A_IO_PCMCIA_CFG 0x0010061A60
510#define A_IO_PCMCIA_STATUS 0x0010061A70
511#define A_IO_DRIVE_0 0x0010061300
512#define A_IO_DRIVE_1 0x0010061308
513#define A_IO_DRIVE_2 0x0010061310
514#define A_IO_DRIVE_3 0x0010061318
515#define A_IO_DRIVE_BASE A_IO_DRIVE_0
516#define IO_DRIVE_REGISTER_SPACING 8
517#define R_IO_DRIVE(x) ((x)*IO_DRIVE_REGISTER_SPACING)
518#define A_IO_DRIVE(x) (A_IO_DRIVE_BASE + R_IO_DRIVE(x))
519
520#define R_IO_INTERRUPT_STATUS 0x0A00
521#define R_IO_INTERRUPT_DATA0 0x0A10
522#define R_IO_INTERRUPT_DATA1 0x0A18
523#define R_IO_INTERRUPT_DATA2 0x0A20
524#define R_IO_INTERRUPT_DATA3 0x0A28
525#define R_IO_INTERRUPT_ADDR0 0x0A30
526#define R_IO_INTERRUPT_ADDR1 0x0A40
527#define R_IO_INTERRUPT_PARITY 0x0A50
528#define R_IO_PCMCIA_CFG 0x0A60
529#define R_IO_PCMCIA_STATUS 0x0A70
530
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700531/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 * GPIO Registers
533 ********************************************************************* */
534
535#define A_GPIO_CLR_EDGE 0x0010061A80
536#define A_GPIO_INT_TYPE 0x0010061A88
537#define A_GPIO_INPUT_INVERT 0x0010061A90
538#define A_GPIO_GLITCH 0x0010061A98
539#define A_GPIO_READ 0x0010061AA0
540#define A_GPIO_DIRECTION 0x0010061AA8
541#define A_GPIO_PIN_CLR 0x0010061AB0
542#define A_GPIO_PIN_SET 0x0010061AB8
543
544#define A_GPIO_BASE 0x0010061A80
545
546#define R_GPIO_CLR_EDGE 0x00
547#define R_GPIO_INT_TYPE 0x08
548#define R_GPIO_INPUT_INVERT 0x10
549#define R_GPIO_GLITCH 0x18
550#define R_GPIO_READ 0x20
551#define R_GPIO_DIRECTION 0x28
552#define R_GPIO_PIN_CLR 0x30
553#define R_GPIO_PIN_SET 0x38
554
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700555/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 * SMBus Registers
557 ********************************************************************* */
558
559#define A_SMB_XTRA_0 0x0010060000
560#define A_SMB_XTRA_1 0x0010060008
561#define A_SMB_FREQ_0 0x0010060010
562#define A_SMB_FREQ_1 0x0010060018
563#define A_SMB_STATUS_0 0x0010060020
564#define A_SMB_STATUS_1 0x0010060028
565#define A_SMB_CMD_0 0x0010060030
566#define A_SMB_CMD_1 0x0010060038
567#define A_SMB_START_0 0x0010060040
568#define A_SMB_START_1 0x0010060048
569#define A_SMB_DATA_0 0x0010060050
570#define A_SMB_DATA_1 0x0010060058
571#define A_SMB_CONTROL_0 0x0010060060
572#define A_SMB_CONTROL_1 0x0010060068
573#define A_SMB_PEC_0 0x0010060070
574#define A_SMB_PEC_1 0x0010060078
575
576#define A_SMB_0 0x0010060000
577#define A_SMB_1 0x0010060008
578#define SMB_REGISTER_SPACING 0x8
579#define A_SMB_BASE(idx) (A_SMB_0+(idx)*SMB_REGISTER_SPACING)
580#define A_SMB_REGISTER(idx,reg) (A_SMB_BASE(idx)+(reg))
581
582#define R_SMB_XTRA 0x0000000000
583#define R_SMB_FREQ 0x0000000010
584#define R_SMB_STATUS 0x0000000020
585#define R_SMB_CMD 0x0000000030
586#define R_SMB_START 0x0000000040
587#define R_SMB_DATA 0x0000000050
588#define R_SMB_CONTROL 0x0000000060
589#define R_SMB_PEC 0x0000000070
590
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700591/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * Timer Registers
593 ********************************************************************* */
594
595/*
596 * Watchdog timers
597 */
598
599#define A_SCD_WDOG_0 0x0010020050
600#define A_SCD_WDOG_1 0x0010020150
601#define SCD_WDOG_SPACING 0x100
602#define SCD_NUM_WDOGS 2
603#define A_SCD_WDOG_BASE(w) (A_SCD_WDOG_0+SCD_WDOG_SPACING*(w))
604#define A_SCD_WDOG_REGISTER(w,r) (A_SCD_WDOG_BASE(w) + (r))
605
606#define R_SCD_WDOG_INIT 0x0000000000
607#define R_SCD_WDOG_CNT 0x0000000008
608#define R_SCD_WDOG_CFG 0x0000000010
609
610#define A_SCD_WDOG_INIT_0 0x0010020050
611#define A_SCD_WDOG_CNT_0 0x0010020058
612#define A_SCD_WDOG_CFG_0 0x0010020060
613
614#define A_SCD_WDOG_INIT_1 0x0010020150
615#define A_SCD_WDOG_CNT_1 0x0010020158
616#define A_SCD_WDOG_CFG_1 0x0010020160
617
618/*
619 * Generic timers
620 */
621
622#define A_SCD_TIMER_0 0x0010020070
623#define A_SCD_TIMER_1 0x0010020078
624#define A_SCD_TIMER_2 0x0010020170
625#define A_SCD_TIMER_3 0x0010020178
626#define SCD_NUM_TIMERS 4
627#define A_SCD_TIMER_BASE(w) (A_SCD_TIMER_0+0x08*((w)&1)+0x100*(((w)&2)>>1))
628#define A_SCD_TIMER_REGISTER(w,r) (A_SCD_TIMER_BASE(w) + (r))
629
630#define R_SCD_TIMER_INIT 0x0000000000
631#define R_SCD_TIMER_CNT 0x0000000010
632#define R_SCD_TIMER_CFG 0x0000000020
633
634#define A_SCD_TIMER_INIT_0 0x0010020070
635#define A_SCD_TIMER_CNT_0 0x0010020080
636#define A_SCD_TIMER_CFG_0 0x0010020090
637
638#define A_SCD_TIMER_INIT_1 0x0010020078
639#define A_SCD_TIMER_CNT_1 0x0010020088
640#define A_SCD_TIMER_CFG_1 0x0010020098
641
642#define A_SCD_TIMER_INIT_2 0x0010020170
643#define A_SCD_TIMER_CNT_2 0x0010020180
644#define A_SCD_TIMER_CFG_2 0x0010020190
645
646#define A_SCD_TIMER_INIT_3 0x0010020178
647#define A_SCD_TIMER_CNT_3 0x0010020188
648#define A_SCD_TIMER_CFG_3 0x0010020198
649
650#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1)
651#define A_SCD_SCRATCH 0x0010020C10
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700652#endif /* 1250 PASS2 || 112x PASS1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700654#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1) || SIBYTE_HDR_FEATURE_CHIP(1480)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#define A_SCD_ZBBUS_CYCLE_COUNT 0x0010030000
656#define A_SCD_ZBBUS_CYCLE_CP0 0x0010020C00
657#define A_SCD_ZBBUS_CYCLE_CP1 0x0010020C08
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700658#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700660/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 * System Control Registers
662 ********************************************************************* */
663
664#define A_SCD_SYSTEM_REVISION 0x0010020000
665#define A_SCD_SYSTEM_CFG 0x0010020008
666#define A_SCD_SYSTEM_MANUF 0x0010038000
667
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700668/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 * System Address Trap Registers
670 ********************************************************************* */
671
672#define A_ADDR_TRAP_INDEX 0x00100200B0
673#define A_ADDR_TRAP_REG 0x00100200B8
674#define A_ADDR_TRAP_UP_0 0x0010020400
675#define A_ADDR_TRAP_UP_1 0x0010020408
676#define A_ADDR_TRAP_UP_2 0x0010020410
677#define A_ADDR_TRAP_UP_3 0x0010020418
678#define A_ADDR_TRAP_DOWN_0 0x0010020420
679#define A_ADDR_TRAP_DOWN_1 0x0010020428
680#define A_ADDR_TRAP_DOWN_2 0x0010020430
681#define A_ADDR_TRAP_DOWN_3 0x0010020438
682#define A_ADDR_TRAP_CFG_0 0x0010020440
683#define A_ADDR_TRAP_CFG_1 0x0010020448
684#define A_ADDR_TRAP_CFG_2 0x0010020450
685#define A_ADDR_TRAP_CFG_3 0x0010020458
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700686#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1) || SIBYTE_HDR_FEATURE_CHIP(1480)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#define A_ADDR_TRAP_REG_DEBUG 0x0010020460
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700688#endif /* 1250 PASS2 || 112x PASS1 || 1480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700691/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * System Interrupt Mapper Registers
693 ********************************************************************* */
694
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700695#if SIBYTE_HDR_FEATURE_1250_112x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696#define A_IMR_CPU0_BASE 0x0010020000
697#define A_IMR_CPU1_BASE 0x0010022000
698#define IMR_REGISTER_SPACING 0x2000
699#define IMR_REGISTER_SPACING_SHIFT 13
700
701#define A_IMR_MAPPER(cpu) (A_IMR_CPU0_BASE+(cpu)*IMR_REGISTER_SPACING)
702#define A_IMR_REGISTER(cpu,reg) (A_IMR_MAPPER(cpu)+(reg))
703
704#define R_IMR_INTERRUPT_DIAG 0x0010
705#define R_IMR_INTERRUPT_MASK 0x0028
706#define R_IMR_INTERRUPT_TRACE 0x0038
707#define R_IMR_INTERRUPT_SOURCE_STATUS 0x0040
708#define R_IMR_LDT_INTERRUPT_SET 0x0048
709#define R_IMR_LDT_INTERRUPT 0x0018
710#define R_IMR_LDT_INTERRUPT_CLR 0x0020
711#define R_IMR_MAILBOX_CPU 0x00c0
712#define R_IMR_ALIAS_MAILBOX_CPU 0x1000
713#define R_IMR_MAILBOX_SET_CPU 0x00C8
714#define R_IMR_ALIAS_MAILBOX_SET_CPU 0x1008
715#define R_IMR_MAILBOX_CLR_CPU 0x00D0
716#define R_IMR_INTERRUPT_STATUS_BASE 0x0100
717#define R_IMR_INTERRUPT_STATUS_COUNT 7
718#define R_IMR_INTERRUPT_MAP_BASE 0x0200
719#define R_IMR_INTERRUPT_MAP_COUNT 64
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700720#endif /* 1250/112x */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700722/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 * System Performance Counter Registers
724 ********************************************************************* */
725
726#define A_SCD_PERF_CNT_CFG 0x00100204C0
727#define A_SCD_PERF_CNT_0 0x00100204D0
728#define A_SCD_PERF_CNT_1 0x00100204D8
729#define A_SCD_PERF_CNT_2 0x00100204E0
730#define A_SCD_PERF_CNT_3 0x00100204E8
731
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700732/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 * System Bus Watcher Registers
734 ********************************************************************* */
735
736#define A_SCD_BUS_ERR_STATUS 0x0010020880
737#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1)
738#define A_SCD_BUS_ERR_STATUS_DEBUG 0x00100208D0
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700739#define A_BUS_ERR_STATUS_DEBUG 0x00100208D0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#endif /* 1250 PASS2 || 112x PASS1 */
741#define A_BUS_ERR_DATA_0 0x00100208A0
742#define A_BUS_ERR_DATA_1 0x00100208A8
743#define A_BUS_ERR_DATA_2 0x00100208B0
744#define A_BUS_ERR_DATA_3 0x00100208B8
745#define A_BUS_L2_ERRORS 0x00100208C0
746#define A_BUS_MEM_IO_ERRORS 0x00100208C8
747
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700748/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 * System Debug Controller Registers
750 ********************************************************************* */
751
752#define A_SCD_JTAG_BASE 0x0010000000
753
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700754/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * System Trace Buffer Registers
756 ********************************************************************* */
757
758#define A_SCD_TRACE_CFG 0x0010020A00
759#define A_SCD_TRACE_READ 0x0010020A08
760#define A_SCD_TRACE_EVENT_0 0x0010020A20
761#define A_SCD_TRACE_EVENT_1 0x0010020A28
762#define A_SCD_TRACE_EVENT_2 0x0010020A30
763#define A_SCD_TRACE_EVENT_3 0x0010020A38
764#define A_SCD_TRACE_SEQUENCE_0 0x0010020A40
765#define A_SCD_TRACE_SEQUENCE_1 0x0010020A48
766#define A_SCD_TRACE_SEQUENCE_2 0x0010020A50
767#define A_SCD_TRACE_SEQUENCE_3 0x0010020A58
768#define A_SCD_TRACE_EVENT_4 0x0010020A60
769#define A_SCD_TRACE_EVENT_5 0x0010020A68
770#define A_SCD_TRACE_EVENT_6 0x0010020A70
771#define A_SCD_TRACE_EVENT_7 0x0010020A78
772#define A_SCD_TRACE_SEQUENCE_4 0x0010020A80
773#define A_SCD_TRACE_SEQUENCE_5 0x0010020A88
774#define A_SCD_TRACE_SEQUENCE_6 0x0010020A90
775#define A_SCD_TRACE_SEQUENCE_7 0x0010020A98
776
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700777/* *********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * System Generic DMA Registers
779 ********************************************************************* */
780
781#define A_DM_0 0x0010020B00
782#define A_DM_1 0x0010020B20
783#define A_DM_2 0x0010020B40
784#define A_DM_3 0x0010020B60
785#define DM_REGISTER_SPACING 0x20
786#define DM_NUM_CHANNELS 4
787#define A_DM_BASE(idx) (A_DM_0 + ((idx) * DM_REGISTER_SPACING))
788#define A_DM_REGISTER(idx,reg) (A_DM_BASE(idx) + (reg))
789
790#define R_DM_DSCR_BASE 0x0000000000
791#define R_DM_DSCR_COUNT 0x0000000008
792#define R_DM_CUR_DSCR_ADDR 0x0000000010
793#define R_DM_DSCR_BASE_DEBUG 0x0000000018
794
795#if SIBYTE_HDR_FEATURE(1250, PASS3) || SIBYTE_HDR_FEATURE(112x, PASS1)
796#define A_DM_PARTIAL_0 0x0010020ba0
797#define A_DM_PARTIAL_1 0x0010020ba8
798#define A_DM_PARTIAL_2 0x0010020bb0
799#define A_DM_PARTIAL_3 0x0010020bb8
800#define DM_PARTIAL_REGISTER_SPACING 0x8
801#define A_DM_PARTIAL(idx) (A_DM_PARTIAL_0 + ((idx) * DM_PARTIAL_REGISTER_SPACING))
802#endif /* 1250 PASS3 || 112x PASS1 */
803
804#if SIBYTE_HDR_FEATURE(1250, PASS3) || SIBYTE_HDR_FEATURE(112x, PASS1)
805#define A_DM_CRC_0 0x0010020b80
806#define A_DM_CRC_1 0x0010020b90
807#define DM_CRC_REGISTER_SPACING 0x10
808#define DM_CRC_NUM_CHANNELS 2
809#define A_DM_CRC_BASE(idx) (A_DM_CRC_0 + ((idx) * DM_CRC_REGISTER_SPACING))
810#define A_DM_CRC_REGISTER(idx,reg) (A_DM_CRC_BASE(idx) + (reg))
811
812#define R_CRC_DEF_0 0x00
813#define R_CTCP_DEF_0 0x08
814#endif /* 1250 PASS3 || 112x PASS1 */
815
816/* *********************************************************************
817 * Physical Address Map
818 ********************************************************************* */
819
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700820#if SIBYTE_HDR_FEATURE_1250_112x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821#define A_PHYS_MEMORY_0 _SB_MAKE64(0x0000000000)
822#define A_PHYS_MEMORY_SIZE _SB_MAKE64((256*1024*1024))
823#define A_PHYS_SYSTEM_CTL _SB_MAKE64(0x0010000000)
824#define A_PHYS_IO_SYSTEM _SB_MAKE64(0x0010060000)
825#define A_PHYS_GENBUS _SB_MAKE64(0x0010090000)
826#define A_PHYS_GENBUS_END _SB_MAKE64(0x0040000000)
827#define A_PHYS_LDTPCI_IO_MATCH_BYTES_32 _SB_MAKE64(0x0040000000)
828#define A_PHYS_LDTPCI_IO_MATCH_BITS_32 _SB_MAKE64(0x0060000000)
829#define A_PHYS_MEMORY_1 _SB_MAKE64(0x0080000000)
830#define A_PHYS_MEMORY_2 _SB_MAKE64(0x0090000000)
831#define A_PHYS_MEMORY_3 _SB_MAKE64(0x00C0000000)
832#define A_PHYS_L2_CACHE_TEST _SB_MAKE64(0x00D0000000)
833#define A_PHYS_LDT_SPECIAL_MATCH_BYTES _SB_MAKE64(0x00D8000000)
834#define A_PHYS_LDTPCI_IO_MATCH_BYTES _SB_MAKE64(0x00DC000000)
835#define A_PHYS_LDTPCI_CFG_MATCH_BYTES _SB_MAKE64(0x00DE000000)
836#define A_PHYS_LDT_SPECIAL_MATCH_BITS _SB_MAKE64(0x00F8000000)
837#define A_PHYS_LDTPCI_IO_MATCH_BITS _SB_MAKE64(0x00FC000000)
838#define A_PHYS_LDTPCI_CFG_MATCH_BITS _SB_MAKE64(0x00FE000000)
839#define A_PHYS_MEMORY_EXP _SB_MAKE64(0x0100000000)
840#define A_PHYS_MEMORY_EXP_SIZE _SB_MAKE64((508*1024*1024*1024))
841#define A_PHYS_LDT_EXP _SB_MAKE64(0x8000000000)
842#define A_PHYS_PCI_FULLACCESS_BYTES _SB_MAKE64(0xF000000000)
843#define A_PHYS_PCI_FULLACCESS_BITS _SB_MAKE64(0xF100000000)
844#define A_PHYS_RESERVED _SB_MAKE64(0xF200000000)
845#define A_PHYS_RESERVED_SPECIAL_LDT _SB_MAKE64(0xFD00000000)
846
847#define A_PHYS_L2CACHE_WAY_SIZE _SB_MAKE64(0x0000020000)
848#define PHYS_L2CACHE_NUM_WAYS 4
849#define A_PHYS_L2CACHE_TOTAL_SIZE _SB_MAKE64(0x0000080000)
850#define A_PHYS_L2CACHE_WAY0 _SB_MAKE64(0x00D0180000)
851#define A_PHYS_L2CACHE_WAY1 _SB_MAKE64(0x00D01A0000)
852#define A_PHYS_L2CACHE_WAY2 _SB_MAKE64(0x00D01C0000)
853#define A_PHYS_L2CACHE_WAY3 _SB_MAKE64(0x00D01E0000)
Andrew Isaacson4cbf2be2005-10-19 23:55:11 -0700854#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856
857#endif