MIPS: Whitespace cleanup.
[linux-2.6-block.git] / arch / mips / include / asm / pmc-sierra / msp71xx / msp_regs.h
CommitLineData
35832e26
MSJ
1/*
2 * Defines for the address space, registers and register configuration
3 * (bit masks, access macros etc) for the PMC-Sierra line of MSP products.
4 * This file contains addess maps for all the devices in the line of
5 * products but only has register definitions and configuration masks for
6 * registers which aren't definitely associated with any device. Things
7 * like clock settings, reset access, the ELB etc. Individual device
8 * drivers will reference the appropriate XXX_BASE value defined here
9 * and have individual registers offset from that.
10 *
11 * Copyright (C) 2005-2007 PMC-Sierra, Inc. All rights reserved.
12 * Author: Andrew Hughes, Andrew_Hughes@pmc-sierra.com
13 *
14 * ########################################################################
15 *
16 * This program is free software; you can distribute it and/or modify it
17 * under the terms of the GNU General Public License (Version 2) as
18 * published by the Free Software Foundation.
19 *
20 * This program is distributed in the hope it will be useful, but WITHOUT
21 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 * for more details.
24 *
25 * You should have received a copy of the GNU General Public License along
26 * with this program; if not, write to the Free Software Foundation, Inc.,
27 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
28 *
29 * ########################################################################
30 */
31
32#include <asm/addrspace.h>
33#include <linux/types.h>
34
35#ifndef _ASM_MSP_REGS_H
36#define _ASM_MSP_REGS_H
37
38/*
39 ########################################################################
70342287 40 # Address space and device base definitions #
35832e26
MSJ
41 ########################################################################
42 */
43
44/*
45 ***************************************************************************
70342287 46 * System Logic and Peripherals (ELB, UART0, etc) device address space *
35832e26
MSJ
47 ***************************************************************************
48 */
49#define MSP_SLP_BASE 0x1c000000
50 /* System Logic and Peripherals */
51#define MSP_RST_BASE (MSP_SLP_BASE + 0x10)
52 /* System reset register base */
53#define MSP_RST_SIZE 0x0C /* System reset register space */
54
55#define MSP_WTIMER_BASE (MSP_SLP_BASE + 0x04C)
70342287 56 /* watchdog timer base */
35832e26 57#define MSP_ITIMER_BASE (MSP_SLP_BASE + 0x054)
70342287 58 /* internal timer base */
35832e26 59#define MSP_UART0_BASE (MSP_SLP_BASE + 0x100)
70342287 60 /* UART0 controller base */
35832e26 61#define MSP_BCPY_CTRL_BASE (MSP_SLP_BASE + 0x120)
70342287 62 /* Block Copy controller base */
35832e26 63#define MSP_BCPY_DESC_BASE (MSP_SLP_BASE + 0x160)
70342287 64 /* Block Copy descriptor base */
35832e26
MSJ
65
66/*
67 ***************************************************************************
70342287 68 * PCI address space *
35832e26
MSJ
69 ***************************************************************************
70 */
71#define MSP_PCI_BASE 0x19000000
72
73/*
74 ***************************************************************************
70342287 75 * MSbus device address space *
35832e26
MSJ
76 ***************************************************************************
77 */
78#define MSP_MSB_BASE 0x18000000
70342287 79 /* MSbus address start */
35832e26 80#define MSP_PER_BASE (MSP_MSB_BASE + 0x400000)
70342287 81 /* Peripheral device registers */
35832e26 82#define MSP_MAC0_BASE (MSP_MSB_BASE + 0x600000)
70342287 83 /* MAC A device registers */
35832e26 84#define MSP_MAC1_BASE (MSP_MSB_BASE + 0x700000)
70342287 85 /* MAC B device registers */
35832e26
MSJ
86#define MSP_MAC_SIZE 0xE0 /* MAC register space */
87
88#define MSP_SEC_BASE (MSP_MSB_BASE + 0x800000)
70342287 89 /* Security Engine registers */
35832e26 90#define MSP_MAC2_BASE (MSP_MSB_BASE + 0x900000)
70342287 91 /* MAC C device registers */
35832e26 92#define MSP_ADSL2_BASE (MSP_MSB_BASE + 0xA80000)
70342287 93 /* ADSL2 device registers */
5027070b 94#define MSP_USB0_BASE (MSP_MSB_BASE + 0xB00000)
70342287 95 /* USB0 device registers */
5027070b
A
96#define MSP_USB1_BASE (MSP_MSB_BASE + 0x300000)
97 /* USB1 device registers */
35832e26 98#define MSP_CPUIF_BASE (MSP_MSB_BASE + 0xC00000)
70342287 99 /* CPU interface registers */
35832e26
MSJ
100
101/* Devices within the MSbus peripheral block */
102#define MSP_UART1_BASE (MSP_PER_BASE + 0x030)
70342287 103 /* UART1 controller base */
35832e26 104#define MSP_SPI_BASE (MSP_PER_BASE + 0x058)
70342287 105 /* SPI/MPI control registers */
35832e26 106#define MSP_TWI_BASE (MSP_PER_BASE + 0x090)
70342287 107 /* Two-wire control registers */
35832e26 108#define MSP_PTIMER_BASE (MSP_PER_BASE + 0x0F0)
70342287 109 /* Programmable timer control */
35832e26
MSJ
110
111/*
112 ***************************************************************************
70342287 113 * Physical Memory configuration address space *
35832e26
MSJ
114 ***************************************************************************
115 */
116#define MSP_MEM_CFG_BASE 0x17f00000
117
70342287 118#define MSP_MEM_INDIRECT_CTL_10 0x10
35832e26
MSJ
119
120/*
121 * Notes:
122 * 1) The SPI registers are split into two blocks, one offset from the
123 * MSP_SPI_BASE by 0x00 and the other offset from the MSP_SPI_BASE by
124 * 0x68. The SPI driver definitions for the register must be aware
125 * of this.
126 * 2) The block copy engine register are divided into two regions, one
127 * for the control/configuration of the engine proper and one for the
128 * values of the descriptors used in the copy process. These have
129 * different base defines (CTRL_BASE vs DESC_BASE)
130 * 3) These constants are for physical addresses which means that they
131 * work correctly with "ioremap" and friends. This means that device
132 * drivers will need to remap these addresses using ioremap and perhaps
70342287 133 * the readw/writew macros. Or they could use the regptr() macro
35832e26
MSJ
134 * defined below, but the readw/writew calls are the correct thing.
135 * 4) The UARTs have an additional status register offset from the base
70342287 136 * address. This register isn't used in the standard 8250 driver but
35832e26
MSJ
137 * may be used in other software. Consult the hardware datasheet for
138 * offset details.
139 * 5) For some unknown reason the security engine (MSP_SEC_BASE) registers
140 * start at an offset of 0x84 from the base address but the block of
141 * registers before this is reserved for the security engine. The
142 * driver will have to be aware of this but it makes the register
143 * definitions line up better with the documentation.
144 */
145
146/*
147 ########################################################################
148 # System register definitions. Not associated with a specific device #
149 ########################################################################
150 */
151
152/*
153 * This macro maps the physical register number into uncached space
154 * and (for C code) casts it into a u32 pointer so it can be dereferenced
155 * Normally these would be accessed with ioremap and readX/writeX, but
156 * these are convenient for a lot of internal kernel code.
157 */
158#ifdef __ASSEMBLER__
159 #define regptr(addr) (KSEG1ADDR(addr))
160#else
161 #define regptr(addr) ((volatile u32 *const)(KSEG1ADDR(addr)))
162#endif
163
164/*
165 ***************************************************************************
70342287 166 * System Logic and Peripherals (RESET, ELB, etc) registers *
35832e26
MSJ
167 ***************************************************************************
168 */
169
170/* System Control register definitions */
70342287
RB
171#define DEV_ID_REG regptr(MSP_SLP_BASE + 0x00)
172 /* Device-ID RO */
173#define FWR_ID_REG regptr(MSP_SLP_BASE + 0x04)
174 /* Firmware-ID Register RW */
175#define SYS_ID_REG0 regptr(MSP_SLP_BASE + 0x08)
176 /* System-ID Register-0 RW */
177#define SYS_ID_REG1 regptr(MSP_SLP_BASE + 0x0C)
178 /* System-ID Register-1 RW */
35832e26
MSJ
179
180/* System Reset register definitions */
70342287
RB
181#define RST_STS_REG regptr(MSP_SLP_BASE + 0x10)
182 /* System Reset Status RO */
183#define RST_SET_REG regptr(MSP_SLP_BASE + 0x14)
184 /* System Set Reset WO */
185#define RST_CLR_REG regptr(MSP_SLP_BASE + 0x18)
186 /* System Clear Reset WO */
35832e26
MSJ
187
188/* System Clock Registers */
189#define PCI_SLP_REG regptr(MSP_SLP_BASE + 0x1C)
70342287 190 /* PCI clock generator RW */
35832e26 191#define URT_SLP_REG regptr(MSP_SLP_BASE + 0x20)
70342287
RB
192 /* UART clock generator RW */
193/* reserved (MSP_SLP_BASE + 0x24) */
194/* reserved (MSP_SLP_BASE + 0x28) */
35832e26 195#define PLL1_SLP_REG regptr(MSP_SLP_BASE + 0x2C)
70342287 196 /* PLL1 clock generator RW */
35832e26 197#define PLL0_SLP_REG regptr(MSP_SLP_BASE + 0x30)
70342287 198 /* PLL0 clock generator RW */
35832e26 199#define MIPS_SLP_REG regptr(MSP_SLP_BASE + 0x34)
70342287
RB
200 /* MIPS clock generator RW */
201#define VE_SLP_REG regptr(MSP_SLP_BASE + 0x38)
35832e26 202 /* Voice Eng clock generator RW */
70342287 203/* reserved (MSP_SLP_BASE + 0x3C) */
35832e26
MSJ
204#define MSB_SLP_REG regptr(MSP_SLP_BASE + 0x40)
205 /* MS-Bus clock generator RW */
206#define SMAC_SLP_REG regptr(MSP_SLP_BASE + 0x44)
207 /* Sec & MAC clock generator RW */
208#define PERF_SLP_REG regptr(MSP_SLP_BASE + 0x48)
209 /* Per & TDM clock generator RW */
210
211/* Interrupt Controller Registers */
212#define SLP_INT_STS_REG regptr(MSP_SLP_BASE + 0x70)
213 /* Interrupt status register RW */
214#define SLP_INT_MSK_REG regptr(MSP_SLP_BASE + 0x74)
215 /* Interrupt enable/mask RW */
216#define SE_MBOX_REG regptr(MSP_SLP_BASE + 0x78)
217 /* Security Engine mailbox RW */
218#define VE_MBOX_REG regptr(MSP_SLP_BASE + 0x7C)
70342287 219 /* Voice Engine mailbox RW */
35832e26
MSJ
220
221/* ELB Controller Registers */
222#define CS0_CNFG_REG regptr(MSP_SLP_BASE + 0x80)
70342287 223 /* ELB CS0 Configuration Reg */
35832e26 224#define CS0_ADDR_REG regptr(MSP_SLP_BASE + 0x84)
70342287 225 /* ELB CS0 Base Address Reg */
35832e26 226#define CS0_MASK_REG regptr(MSP_SLP_BASE + 0x88)
70342287 227 /* ELB CS0 Mask Register */
35832e26 228#define CS0_ACCESS_REG regptr(MSP_SLP_BASE + 0x8C)
70342287 229 /* ELB CS0 access register */
35832e26
MSJ
230
231#define CS1_CNFG_REG regptr(MSP_SLP_BASE + 0x90)
70342287 232 /* ELB CS1 Configuration Reg */
35832e26 233#define CS1_ADDR_REG regptr(MSP_SLP_BASE + 0x94)
70342287 234 /* ELB CS1 Base Address Reg */
35832e26 235#define CS1_MASK_REG regptr(MSP_SLP_BASE + 0x98)
70342287 236 /* ELB CS1 Mask Register */
35832e26 237#define CS1_ACCESS_REG regptr(MSP_SLP_BASE + 0x9C)
70342287 238 /* ELB CS1 access register */
35832e26
MSJ
239
240#define CS2_CNFG_REG regptr(MSP_SLP_BASE + 0xA0)
70342287 241 /* ELB CS2 Configuration Reg */
35832e26 242#define CS2_ADDR_REG regptr(MSP_SLP_BASE + 0xA4)
70342287 243 /* ELB CS2 Base Address Reg */
35832e26 244#define CS2_MASK_REG regptr(MSP_SLP_BASE + 0xA8)
70342287 245 /* ELB CS2 Mask Register */
35832e26 246#define CS2_ACCESS_REG regptr(MSP_SLP_BASE + 0xAC)
70342287 247 /* ELB CS2 access register */
35832e26
MSJ
248
249#define CS3_CNFG_REG regptr(MSP_SLP_BASE + 0xB0)
70342287 250 /* ELB CS3 Configuration Reg */
35832e26 251#define CS3_ADDR_REG regptr(MSP_SLP_BASE + 0xB4)
70342287 252 /* ELB CS3 Base Address Reg */
35832e26 253#define CS3_MASK_REG regptr(MSP_SLP_BASE + 0xB8)
70342287 254 /* ELB CS3 Mask Register */
35832e26 255#define CS3_ACCESS_REG regptr(MSP_SLP_BASE + 0xBC)
70342287 256 /* ELB CS3 access register */
35832e26
MSJ
257
258#define CS4_CNFG_REG regptr(MSP_SLP_BASE + 0xC0)
70342287 259 /* ELB CS4 Configuration Reg */
35832e26 260#define CS4_ADDR_REG regptr(MSP_SLP_BASE + 0xC4)
70342287 261 /* ELB CS4 Base Address Reg */
35832e26 262#define CS4_MASK_REG regptr(MSP_SLP_BASE + 0xC8)
70342287 263 /* ELB CS4 Mask Register */
35832e26 264#define CS4_ACCESS_REG regptr(MSP_SLP_BASE + 0xCC)
70342287 265 /* ELB CS4 access register */
35832e26
MSJ
266
267#define CS5_CNFG_REG regptr(MSP_SLP_BASE + 0xD0)
70342287 268 /* ELB CS5 Configuration Reg */
35832e26 269#define CS5_ADDR_REG regptr(MSP_SLP_BASE + 0xD4)
70342287 270 /* ELB CS5 Base Address Reg */
35832e26 271#define CS5_MASK_REG regptr(MSP_SLP_BASE + 0xD8)
70342287 272 /* ELB CS5 Mask Register */
35832e26 273#define CS5_ACCESS_REG regptr(MSP_SLP_BASE + 0xDC)
70342287 274 /* ELB CS5 access register */
35832e26 275
70342287 276/* reserved 0xE0 - 0xE8 */
35832e26 277#define ELB_1PC_EN_REG regptr(MSP_SLP_BASE + 0xEC)
70342287 278 /* ELB single PC card detect */
35832e26 279
70342287
RB
280/* reserved 0xF0 - 0xF8 */
281#define ELB_CLK_CFG_REG regptr(MSP_SLP_BASE + 0xFC)
282 /* SDRAM read/ELB timing Reg */
35832e26
MSJ
283
284/* Extended UART status registers */
285#define UART0_STATUS_REG regptr(MSP_UART0_BASE + 0x0c0)
70342287 286 /* UART Status Register 0 */
35832e26 287#define UART1_STATUS_REG regptr(MSP_UART1_BASE + 0x170)
70342287 288 /* UART Status Register 1 */
35832e26
MSJ
289
290/* Performance monitoring registers */
291#define PERF_MON_CTRL_REG regptr(MSP_SLP_BASE + 0x140)
70342287 292 /* Performance monitor control */
35832e26 293#define PERF_MON_CLR_REG regptr(MSP_SLP_BASE + 0x144)
70342287 294 /* Performance monitor clear */
35832e26 295#define PERF_MON_CNTH_REG regptr(MSP_SLP_BASE + 0x148)
70342287 296 /* Perf monitor counter high */
35832e26 297#define PERF_MON_CNTL_REG regptr(MSP_SLP_BASE + 0x14C)
70342287 298 /* Perf monitor counter low */
35832e26
MSJ
299
300/* System control registers */
301#define SYS_CTRL_REG regptr(MSP_SLP_BASE + 0x150)
70342287 302 /* System control register */
35832e26 303#define SYS_ERR1_REG regptr(MSP_SLP_BASE + 0x154)
70342287 304 /* System Error status 1 */
35832e26 305#define SYS_ERR2_REG regptr(MSP_SLP_BASE + 0x158)
70342287 306 /* System Error status 2 */
35832e26 307#define SYS_INT_CFG_REG regptr(MSP_SLP_BASE + 0x15C)
70342287 308 /* System Interrupt config */
35832e26
MSJ
309
310/* Voice Engine Memory configuration */
311#define VE_MEM_REG regptr(MSP_SLP_BASE + 0x17C)
70342287 312 /* Voice engine memory config */
35832e26
MSJ
313
314/* CPU/SLP Error Status registers */
315#define CPU_ERR1_REG regptr(MSP_SLP_BASE + 0x180)
70342287 316 /* CPU/SLP Error status 1 */
35832e26 317#define CPU_ERR2_REG regptr(MSP_SLP_BASE + 0x184)
70342287 318 /* CPU/SLP Error status 1 */
35832e26 319
70342287 320/* Extended GPIO registers */
5027070b
A
321#define EXTENDED_GPIO1_REG regptr(MSP_SLP_BASE + 0x188)
322#define EXTENDED_GPIO2_REG regptr(MSP_SLP_BASE + 0x18c)
323#define EXTENDED_GPIO_REG EXTENDED_GPIO1_REG
324 /* Backward-compatibility */
35832e26
MSJ
325
326/* System Error registers */
327#define SLP_ERR_STS_REG regptr(MSP_SLP_BASE + 0x190)
70342287 328 /* Int status for SLP errors */
35832e26 329#define SLP_ERR_MSK_REG regptr(MSP_SLP_BASE + 0x194)
70342287 330 /* Int mask for SLP errors */
35832e26 331#define SLP_ELB_ERST_REG regptr(MSP_SLP_BASE + 0x198)
70342287 332 /* External ELB reset */
35832e26 333#define SLP_BOOT_STS_REG regptr(MSP_SLP_BASE + 0x19C)
70342287 334 /* Boot Status */
35832e26
MSJ
335
336/* Extended ELB addressing */
337#define CS0_EXT_ADDR_REG regptr(MSP_SLP_BASE + 0x1A0)
70342287 338 /* CS0 Extended address */
35832e26 339#define CS1_EXT_ADDR_REG regptr(MSP_SLP_BASE + 0x1A4)
70342287 340 /* CS1 Extended address */
35832e26 341#define CS2_EXT_ADDR_REG regptr(MSP_SLP_BASE + 0x1A8)
70342287 342 /* CS2 Extended address */
35832e26 343#define CS3_EXT_ADDR_REG regptr(MSP_SLP_BASE + 0x1AC)
70342287
RB
344 /* CS3 Extended address */
345/* reserved 0x1B0 */
35832e26 346#define CS5_EXT_ADDR_REG regptr(MSP_SLP_BASE + 0x1B4)
70342287 347 /* CS5 Extended address */
35832e26
MSJ
348
349/* PLL Adjustment registers */
350#define PLL_LOCK_REG regptr(MSP_SLP_BASE + 0x200)
70342287 351 /* PLL0 lock status */
35832e26 352#define PLL_ARST_REG regptr(MSP_SLP_BASE + 0x204)
70342287 353 /* PLL Analog reset status */
35832e26 354#define PLL0_ADJ_REG regptr(MSP_SLP_BASE + 0x208)
70342287 355 /* PLL0 Adjustment value */
35832e26 356#define PLL1_ADJ_REG regptr(MSP_SLP_BASE + 0x20C)
70342287 357 /* PLL1 Adjustment value */
35832e26
MSJ
358
359/*
360 ***************************************************************************
70342287 361 * Peripheral Register definitions *
35832e26
MSJ
362 ***************************************************************************
363 */
364
365/* Peripheral status */
366#define PER_CTRL_REG regptr(MSP_PER_BASE + 0x50)
70342287 367 /* Peripheral control register */
35832e26 368#define PER_STS_REG regptr(MSP_PER_BASE + 0x54)
70342287 369 /* Peripheral status register */
35832e26
MSJ
370
371/* SPI/MPI Registers */
372#define SMPI_TX_SZ_REG regptr(MSP_PER_BASE + 0x58)
70342287 373 /* SPI/MPI Tx Size register */
35832e26 374#define SMPI_RX_SZ_REG regptr(MSP_PER_BASE + 0x5C)
70342287 375 /* SPI/MPI Rx Size register */
35832e26 376#define SMPI_CTL_REG regptr(MSP_PER_BASE + 0x60)
70342287 377 /* SPI/MPI Control register */
35832e26 378#define SMPI_MS_REG regptr(MSP_PER_BASE + 0x64)
70342287 379 /* SPI/MPI Chip Select reg */
35832e26 380#define SMPI_CORE_DATA_REG regptr(MSP_PER_BASE + 0xC0)
70342287 381 /* SPI/MPI Core Data reg */
35832e26 382#define SMPI_CORE_CTRL_REG regptr(MSP_PER_BASE + 0xC4)
70342287 383 /* SPI/MPI Core Control reg */
35832e26 384#define SMPI_CORE_STAT_REG regptr(MSP_PER_BASE + 0xC8)
70342287 385 /* SPI/MPI Core Status reg */
35832e26 386#define SMPI_CORE_SSEL_REG regptr(MSP_PER_BASE + 0xCC)
70342287 387 /* SPI/MPI Core Ssel reg */
35832e26 388#define SMPI_FIFO_REG regptr(MSP_PER_BASE + 0xD0)
70342287 389 /* SPI/MPI Data FIFO reg */
35832e26 390
70342287 391/* Peripheral Block Error Registers */
35832e26 392#define PER_ERR_STS_REG regptr(MSP_PER_BASE + 0x70)
70342287 393 /* Error Bit Status Register */
35832e26 394#define PER_ERR_MSK_REG regptr(MSP_PER_BASE + 0x74)
70342287 395 /* Error Bit Mask Register */
35832e26 396#define PER_HDR1_REG regptr(MSP_PER_BASE + 0x78)
70342287 397 /* Error Header 1 Register */
35832e26 398#define PER_HDR2_REG regptr(MSP_PER_BASE + 0x7C)
70342287 399 /* Error Header 2 Register */
35832e26 400
70342287 401/* Peripheral Block Interrupt Registers */
35832e26 402#define PER_INT_STS_REG regptr(MSP_PER_BASE + 0x80)
70342287 403 /* Interrupt status register */
35832e26 404#define PER_INT_MSK_REG regptr(MSP_PER_BASE + 0x84)
70342287 405 /* Interrupt Mask Register */
35832e26 406#define GPIO_INT_STS_REG regptr(MSP_PER_BASE + 0x88)
70342287 407 /* GPIO interrupt status reg */
35832e26 408#define GPIO_INT_MSK_REG regptr(MSP_PER_BASE + 0x8C)
70342287 409 /* GPIO interrupt MASK Reg */
35832e26 410
70342287 411/* POLO GPIO registers */
35832e26 412#define POLO_GPIO_DAT1_REG regptr(MSP_PER_BASE + 0x0E0)
70342287 413 /* Polo GPIO[8:0] data reg */
35832e26 414#define POLO_GPIO_CFG1_REG regptr(MSP_PER_BASE + 0x0E4)
70342287 415 /* Polo GPIO[7:0] config reg */
35832e26 416#define POLO_GPIO_CFG2_REG regptr(MSP_PER_BASE + 0x0E8)
70342287 417 /* Polo GPIO[15:8] config reg */
35832e26
MSJ
418#define POLO_GPIO_OD1_REG regptr(MSP_PER_BASE + 0x0EC)
419 /* Polo GPIO[31:0] output drive */
420#define POLO_GPIO_CFG3_REG regptr(MSP_PER_BASE + 0x170)
70342287 421 /* Polo GPIO[23:16] config reg */
35832e26 422#define POLO_GPIO_DAT2_REG regptr(MSP_PER_BASE + 0x174)
70342287 423 /* Polo GPIO[15:9] data reg */
35832e26 424#define POLO_GPIO_DAT3_REG regptr(MSP_PER_BASE + 0x178)
70342287 425 /* Polo GPIO[23:16] data reg */
35832e26 426#define POLO_GPIO_DAT4_REG regptr(MSP_PER_BASE + 0x17C)
70342287 427 /* Polo GPIO[31:24] data reg */
35832e26 428#define POLO_GPIO_DAT5_REG regptr(MSP_PER_BASE + 0x180)
70342287 429 /* Polo GPIO[39:32] data reg */
35832e26 430#define POLO_GPIO_DAT6_REG regptr(MSP_PER_BASE + 0x184)
70342287 431 /* Polo GPIO[47:40] data reg */
35832e26 432#define POLO_GPIO_DAT7_REG regptr(MSP_PER_BASE + 0x188)
70342287 433 /* Polo GPIO[54:48] data reg */
35832e26 434#define POLO_GPIO_CFG4_REG regptr(MSP_PER_BASE + 0x18C)
70342287 435 /* Polo GPIO[31:24] config reg */
35832e26 436#define POLO_GPIO_CFG5_REG regptr(MSP_PER_BASE + 0x190)
70342287 437 /* Polo GPIO[39:32] config reg */
35832e26 438#define POLO_GPIO_CFG6_REG regptr(MSP_PER_BASE + 0x194)
70342287 439 /* Polo GPIO[47:40] config reg */
35832e26 440#define POLO_GPIO_CFG7_REG regptr(MSP_PER_BASE + 0x198)
70342287 441 /* Polo GPIO[54:48] config reg */
35832e26
MSJ
442#define POLO_GPIO_OD2_REG regptr(MSP_PER_BASE + 0x19C)
443 /* Polo GPIO[54:32] output drive */
444
70342287 445/* Generic GPIO registers */
35832e26 446#define GPIO_DATA1_REG regptr(MSP_PER_BASE + 0x170)
70342287 447 /* GPIO[1:0] data register */
35832e26 448#define GPIO_DATA2_REG regptr(MSP_PER_BASE + 0x174)
70342287 449 /* GPIO[5:2] data register */
35832e26 450#define GPIO_DATA3_REG regptr(MSP_PER_BASE + 0x178)
70342287 451 /* GPIO[9:6] data register */
35832e26 452#define GPIO_DATA4_REG regptr(MSP_PER_BASE + 0x17C)
70342287 453 /* GPIO[15:10] data register */
35832e26 454#define GPIO_CFG1_REG regptr(MSP_PER_BASE + 0x180)
70342287 455 /* GPIO[1:0] config register */
35832e26 456#define GPIO_CFG2_REG regptr(MSP_PER_BASE + 0x184)
70342287 457 /* GPIO[5:2] config register */
35832e26 458#define GPIO_CFG3_REG regptr(MSP_PER_BASE + 0x188)
70342287 459 /* GPIO[9:6] config register */
35832e26 460#define GPIO_CFG4_REG regptr(MSP_PER_BASE + 0x18C)
70342287 461 /* GPIO[15:10] config register */
35832e26 462#define GPIO_OD_REG regptr(MSP_PER_BASE + 0x190)
70342287 463 /* GPIO[15:0] output drive */
35832e26
MSJ
464
465/*
466 ***************************************************************************
70342287 467 * CPU Interface register definitions *
35832e26
MSJ
468 ***************************************************************************
469 */
470#define PCI_FLUSH_REG regptr(MSP_CPUIF_BASE + 0x00)
471 /* PCI-SDRAM queue flush trigger */
472#define OCP_ERR1_REG regptr(MSP_CPUIF_BASE + 0x04)
70342287 473 /* OCP Error Attribute 1 */
35832e26 474#define OCP_ERR2_REG regptr(MSP_CPUIF_BASE + 0x08)
70342287 475 /* OCP Error Attribute 2 */
35832e26 476#define OCP_STS_REG regptr(MSP_CPUIF_BASE + 0x0C)
70342287 477 /* OCP Error Status */
35832e26 478#define CPUIF_PM_REG regptr(MSP_CPUIF_BASE + 0x10)
70342287 479 /* CPU policy configuration */
35832e26 480#define CPUIF_CFG_REG regptr(MSP_CPUIF_BASE + 0x10)
70342287 481 /* Misc configuration options */
35832e26
MSJ
482
483/* Central Interrupt Controller Registers */
484#define MSP_CIC_BASE (MSP_CPUIF_BASE + 0x8000)
70342287 485 /* Central Interrupt registers */
35832e26 486#define CIC_EXT_CFG_REG regptr(MSP_CIC_BASE + 0x00)
70342287 487 /* External interrupt config */
35832e26 488#define CIC_STS_REG regptr(MSP_CIC_BASE + 0x04)
70342287 489 /* CIC Interrupt Status */
35832e26 490#define CIC_VPE0_MSK_REG regptr(MSP_CIC_BASE + 0x08)
70342287 491 /* VPE0 Interrupt Mask */
35832e26 492#define CIC_VPE1_MSK_REG regptr(MSP_CIC_BASE + 0x0C)
70342287 493 /* VPE1 Interrupt Mask */
35832e26 494#define CIC_TC0_MSK_REG regptr(MSP_CIC_BASE + 0x10)
70342287 495 /* Thread Context 0 Int Mask */
35832e26 496#define CIC_TC1_MSK_REG regptr(MSP_CIC_BASE + 0x14)
70342287 497 /* Thread Context 1 Int Mask */
35832e26 498#define CIC_TC2_MSK_REG regptr(MSP_CIC_BASE + 0x18)
70342287 499 /* Thread Context 2 Int Mask */
35832e26 500#define CIC_TC3_MSK_REG regptr(MSP_CIC_BASE + 0x18)
70342287 501 /* Thread Context 3 Int Mask */
35832e26 502#define CIC_TC4_MSK_REG regptr(MSP_CIC_BASE + 0x18)
70342287 503 /* Thread Context 4 Int Mask */
35832e26
MSJ
504#define CIC_PCIMSI_STS_REG regptr(MSP_CIC_BASE + 0x18)
505#define CIC_PCIMSI_MSK_REG regptr(MSP_CIC_BASE + 0x18)
506#define CIC_PCIFLSH_REG regptr(MSP_CIC_BASE + 0x18)
507#define CIC_VPE0_SWINT_REG regptr(MSP_CIC_BASE + 0x08)
508
509
510/*
511 ***************************************************************************
70342287 512 * Memory controller registers *
35832e26
MSJ
513 ***************************************************************************
514 */
515#define MEM_CFG1_REG regptr(MSP_MEM_CFG_BASE + 0x00)
516#define MEM_SS_ADDR regptr(MSP_MEM_CFG_BASE + 0x00)
517#define MEM_SS_DATA regptr(MSP_MEM_CFG_BASE + 0x04)
518#define MEM_SS_WRITE regptr(MSP_MEM_CFG_BASE + 0x08)
519
520/*
521 ***************************************************************************
70342287 522 * PCI controller registers *
35832e26
MSJ
523 ***************************************************************************
524 */
525#define PCI_BASE_REG regptr(MSP_PCI_BASE + 0x00)
526#define PCI_CONFIG_SPACE_REG regptr(MSP_PCI_BASE + 0x800)
527#define PCI_JTAG_DEVID_REG regptr(MSP_SLP_BASE + 0x13c)
528
529/*
530 ########################################################################
70342287 531 # Register content & macro definitions #
35832e26
MSJ
532 ########################################################################
533 */
534
535/*
536 ***************************************************************************
70342287 537 * DEV_ID defines *
35832e26
MSJ
538 ***************************************************************************
539 */
70342287
RB
540#define DEV_ID_PCI_DIS (1 << 26) /* Set if PCI disabled */
541#define DEV_ID_PCI_HOST (1 << 20) /* Set if PCI host */
542#define DEV_ID_SINGLE_PC (1 << 19) /* Set if single PC Card */
543#define DEV_ID_FAMILY (0xff << 8) /* family ID code */
544#define POLO_ZEUS_SUB_FAMILY (0x7 << 16) /* sub family for Polo/Zeus */
35832e26 545
70342287 546#define MSPFPGA_ID (0x00 << 8) /* you are on your own here */
35832e26 547#define MSP5000_ID (0x50 << 8)
70342287
RB
548#define MSP4F00_ID (0x4f << 8) /* FPGA version of MSP4200 */
549#define MSP4E00_ID (0x4f << 8) /* FPGA version of MSP7120 */
35832e26
MSJ
550#define MSP4200_ID (0x42 << 8)
551#define MSP4000_ID (0x40 << 8)
552#define MSP2XXX_ID (0x20 << 8)
553#define MSPZEUS_ID (0x10 << 8)
554
555#define MSP2004_SUB_ID (0x0 << 16)
556#define MSP2005_SUB_ID (0x1 << 16)
557#define MSP2006_SUB_ID (0x1 << 16)
558#define MSP2007_SUB_ID (0x2 << 16)
559#define MSP2010_SUB_ID (0x3 << 16)
560#define MSP2015_SUB_ID (0x4 << 16)
561#define MSP2020_SUB_ID (0x5 << 16)
562#define MSP2100_SUB_ID (0x6 << 16)
563
564/*
565 ***************************************************************************
70342287 566 * RESET defines *
35832e26
MSJ
567 ***************************************************************************
568 */
70342287
RB
569#define MSP_GR_RST (0x01 << 0) /* Global reset bit */
570#define MSP_MR_RST (0x01 << 1) /* MIPS reset bit */
571#define MSP_PD_RST (0x01 << 2) /* PVC DMA reset bit */
572#define MSP_PP_RST (0x01 << 3) /* PVC reset bit */
573/* reserved */
574#define MSP_EA_RST (0x01 << 6) /* Mac A reset bit */
575#define MSP_EB_RST (0x01 << 7) /* Mac B reset bit */
576#define MSP_SE_RST (0x01 << 8) /* Security Eng reset bit */
577#define MSP_PB_RST (0x01 << 9) /* Per block reset bit */
578#define MSP_EC_RST (0x01 << 10) /* Mac C reset bit */
579#define MSP_TW_RST (0x01 << 11) /* TWI reset bit */
580#define MSP_SPI_RST (0x01 << 12) /* SPI/MPI reset bit */
581#define MSP_U1_RST (0x01 << 13) /* UART1 reset bit */
582#define MSP_U0_RST (0x01 << 14) /* UART0 reset bit */
35832e26
MSJ
583
584/*
585 ***************************************************************************
70342287 586 * UART defines *
35832e26
MSJ
587 ***************************************************************************
588 */
35832e26 589#define MSP_BASE_BAUD 25000000
35832e26
MSJ
590#define MSP_UART_REG_LEN 0x20
591
592/*
593 ***************************************************************************
70342287 594 * ELB defines *
35832e26
MSJ
595 ***************************************************************************
596 */
70342287
RB
597#define PCCARD_32 0x02 /* Set if is PCCARD 32 (Cardbus) */
598#define SINGLE_PCCARD 0x01 /* Set to enable single PC card */
35832e26
MSJ
599
600/*
601 ***************************************************************************
70342287 602 * CIC defines *
35832e26
MSJ
603 ***************************************************************************
604 */
605
606/* CIC_EXT_CFG_REG */
607#define EXT_INT_POL(eirq) (1 << (eirq + 8))
608#define EXT_INT_EDGE(eirq) (1 << eirq)
609
610#define CIC_EXT_SET_TRIGGER_LEVEL(reg, eirq) (reg &= ~EXT_INT_EDGE(eirq))
611#define CIC_EXT_SET_TRIGGER_EDGE(reg, eirq) (reg |= EXT_INT_EDGE(eirq))
612#define CIC_EXT_SET_ACTIVE_HI(reg, eirq) (reg |= EXT_INT_POL(eirq))
613#define CIC_EXT_SET_ACTIVE_LO(reg, eirq) (reg &= ~EXT_INT_POL(eirq))
614#define CIC_EXT_SET_ACTIVE_RISING CIC_EXT_SET_ACTIVE_HI
615#define CIC_EXT_SET_ACTIVE_FALLING CIC_EXT_SET_ACTIVE_LO
616
617#define CIC_EXT_IS_TRIGGER_LEVEL(reg, eirq) \
618 ((reg & EXT_INT_EDGE(eirq)) == 0)
619#define CIC_EXT_IS_TRIGGER_EDGE(reg, eirq) (reg & EXT_INT_EDGE(eirq))
620#define CIC_EXT_IS_ACTIVE_HI(reg, eirq) (reg & EXT_INT_POL(eirq))
621#define CIC_EXT_IS_ACTIVE_LO(reg, eirq) \
622 ((reg & EXT_INT_POL(eirq)) == 0)
623#define CIC_EXT_IS_ACTIVE_RISING CIC_EXT_IS_ACTIVE_HI
624#define CIC_EXT_IS_ACTIVE_FALLING CIC_EXT_IS_ACTIVE_LO
625
626/*
627 ***************************************************************************
70342287 628 * Memory Controller defines *
35832e26
MSJ
629 ***************************************************************************
630 */
631
632/* Indirect memory controller registers */
633#define DDRC_CFG(n) (n)
634#define DDRC_DEBUG(n) (0x04 + n)
635#define DDRC_CTL(n) (0x40 + n)
636
637/* Macro to perform DDRC indirect write */
638#define DDRC_INDIRECT_WRITE(reg, mask, value) \
639({ \
640 *MEM_SS_ADDR = (((mask) & 0xf) << 8) | ((reg) & 0xff); \
641 *MEM_SS_DATA = (value); \
642 *MEM_SS_WRITE = 1; \
643})
644
645/*
646 ***************************************************************************
70342287 647 * SPI/MPI Mode *
35832e26
MSJ
648 ***************************************************************************
649 */
650#define SPI_MPI_RX_BUSY 0x00008000 /* SPI/MPI Receive Busy */
70342287 651#define SPI_MPI_FIFO_EMPTY 0x00004000 /* SPI/MPI Fifo Empty */
35832e26 652#define SPI_MPI_TX_BUSY 0x00002000 /* SPI/MPI Transmit Busy */
70342287 653#define SPI_MPI_FIFO_FULL 0x00001000 /* SPI/MPU FIFO full */
35832e26
MSJ
654
655/*
656 ***************************************************************************
70342287 657 * SPI/MPI Control Register *
35832e26
MSJ
658 ***************************************************************************
659 */
660#define SPI_MPI_RX_START 0x00000004 /* Start receive command */
661#define SPI_MPI_FLUSH_Q 0x00000002 /* Flush SPI/MPI Queue */
662#define SPI_MPI_TX_START 0x00000001 /* Start Transmit Command */
663
664#endif /* !_ASM_MSP_REGS_H */