xref: /openbmc/u-boot/board/armltd/integrator/integrator-sc.h (revision 83d290c56fab2d38cd1ab4c4cc7099559c1d5046)
1*83d290c5STom Rini /* SPDX-License-Identifier: GPL-2.0+ */
20a20e534SLinus Walleij /*
30a20e534SLinus Walleij  * (C) Copyright 2011
40a20e534SLinus Walleij  * Linaro
50a20e534SLinus Walleij  * Linus Walleij <linus.walleij@linaro.org>
60a20e534SLinus Walleij  * Register definitions for the System Controller (SC) and
70a20e534SLinus Walleij  * the similar "CP Controller" found in the ARM Integrator/AP and
80a20e534SLinus Walleij  * Integrator/CP reference designs
90a20e534SLinus Walleij  */
100a20e534SLinus Walleij 
110a20e534SLinus Walleij #ifndef __ARM_SC_H
120a20e534SLinus Walleij #define __ARM_SC_H
130a20e534SLinus Walleij 
140a20e534SLinus Walleij #define SC_BASE			0x11000000
150a20e534SLinus Walleij 
160a20e534SLinus Walleij /*
170a20e534SLinus Walleij  * The system controller registers
180a20e534SLinus Walleij  */
190a20e534SLinus Walleij #define SC_ID_OFFSET		0x00
200a20e534SLinus Walleij #define SC_OSC_OFFSET		0x04
210a20e534SLinus Walleij /* Setting this bit switches to 25 MHz mode, clear means 33 MHz */
220a20e534SLinus Walleij #define SC_OSC_DIVXY		(1 << 8)
230a20e534SLinus Walleij #define SC_CTRLS_OFFSET		0x08
240a20e534SLinus Walleij #define SC_CTRLC_OFFSET		0x0C
250a20e534SLinus Walleij /* Set bits by writing CTRLS, clear bits by writing CTRLC */
260a20e534SLinus Walleij #define SC_CTRL_SOFTRESET	(1 << 0)
270a20e534SLinus Walleij #define SC_CTRL_FLASHVPP	(1 << 1)
280a20e534SLinus Walleij #define SC_CTRL_FLASHWP		(1 << 2)
290a20e534SLinus Walleij #define SC_CTRL_UART1DTR	(1 << 4)
300a20e534SLinus Walleij #define SC_CTRL_UART1RTS	(1 << 5)
310a20e534SLinus Walleij #define SC_CTRL_UART0DTR	(1 << 6)
320a20e534SLinus Walleij #define SC_CTRL_UART0RTS	(1 << 7)
330a20e534SLinus Walleij #define SC_DEC_OFFSET		0x10
340a20e534SLinus Walleij #define SC_ARB_OFFSET		0x14
350a20e534SLinus Walleij #define SC_PCI_OFFSET		0x18
360a20e534SLinus Walleij #define SC_PCI_PCIEN		(1 << 0)
370a20e534SLinus Walleij #define SC_PCI_PCIBINT_CLR	(1 << 1)
380a20e534SLinus Walleij #define SC_LOCK_OFFSET		0x1C
390a20e534SLinus Walleij #define SC_LBFADDR_OFFSET	0x20
400a20e534SLinus Walleij #define SC_LBFCODE_OFFSET	0x24
410a20e534SLinus Walleij 
420a20e534SLinus Walleij #define SC_ID (SC_BASE + SC_ID_OFFSET)
430a20e534SLinus Walleij #define SC_OSC (SC_BASE + SC_OSC_OFFSET)
440a20e534SLinus Walleij #define SC_CTRLS (SC_BASE + SC_CTRLS_OFFSET)
450a20e534SLinus Walleij #define SC_CTRLC (SC_BASE + SC_CTRLC_OFFSET)
460a20e534SLinus Walleij #define SC_DEC (SC_BASE + SC_DEC_OFFSET)
470a20e534SLinus Walleij #define SC_ARB (SC_BASE + SC_ARB_OFFSET)
480a20e534SLinus Walleij #define SC_PCI (SC_BASE + SC_PCI_OFFSET)
490a20e534SLinus Walleij #define SC_LOCK (SC_BASE + SC_LOCK_OFFSET)
500a20e534SLinus Walleij #define SC_LBFADDR (SC_BASE + SC_LBFADDR_OFFSET)
510a20e534SLinus Walleij #define SC_LBFCODE (SC_BASE + SC_LBFCODE_OFFSET)
520a20e534SLinus Walleij 
530a20e534SLinus Walleij /*
540a20e534SLinus Walleij  * The Integrator/CP as a smaller set of registers, at a different
550a20e534SLinus Walleij  * offset - probably not to disturb old software.
560a20e534SLinus Walleij  */
570a20e534SLinus Walleij 
580a20e534SLinus Walleij #define CP_BASE			0xCB000000
590a20e534SLinus Walleij 
600a20e534SLinus Walleij #define CP_IDFIELD_OFFSET	0x00
610a20e534SLinus Walleij #define CP_FLASHPROG_OFFSET	0x04
620a20e534SLinus Walleij #define CP_FLASHPROG_FLVPPEN	(1 << 0)
630a20e534SLinus Walleij #define CP_FLASHPROG_FLWREN	(1 << 1)
640a20e534SLinus Walleij #define CP_FLASHPROG_FLASHSIZE	(1 << 2)
650a20e534SLinus Walleij #define CP_FLASHPROG_EXTRABANK	(1 << 3)
660a20e534SLinus Walleij #define CP_INTREG_OFFSET	0x08
670a20e534SLinus Walleij #define CP_DECODE_OFFSET	0x0C
680a20e534SLinus Walleij 
690a20e534SLinus Walleij #define CP_IDFIELD (CP_BASE + CP_ID_OFFSET)
700a20e534SLinus Walleij #define CP_FLASHPROG (CP_BASE + CP_FLASHPROG_OFFSET)
710a20e534SLinus Walleij #define CP_INTREG (CP_BASE + CP_INTREG_OFFSET)
720a20e534SLinus Walleij #define CP_DECODE (CP_BASE + CP_DECODE_OFFSET)
730a20e534SLinus Walleij 
740a20e534SLinus Walleij #endif
75