mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
ad8783cb1c
This patch introduces support for building U-Boot to run on the MIPS Boston development board. This is a board built around an FPGA & an Intel EG20T Platform Controller Hub, used largely as part of the development of new CPUs and their software support. It is essentially the successor to the older MIPS Malta board. Signed-off-by: Paul Burton <paul.burton@imgtec.com>
26 lines
624 B
C
26 lines
624 B
C
/*
|
|
* Copyright (C) 2016 Imagination Technologies
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
*/
|
|
|
|
#ifndef __BOARD_BOSTON_REGS_H__
|
|
#define __BOARD_BOSTON_REGS_H__
|
|
|
|
#include <asm/addrspace.h>
|
|
|
|
#define BOSTON_PLAT_BASE CKSEG1ADDR(0x17ffd000)
|
|
#define BOSTON_LCD_BASE CKSEG1ADDR(0x17fff000)
|
|
|
|
/*
|
|
* Platform Register Definitions
|
|
*/
|
|
#define BOSTON_PLAT_CORE_CL (BOSTON_PLAT_BASE + 0x04)
|
|
|
|
#define BOSTON_PLAT_DDR3STAT (BOSTON_PLAT_BASE + 0x14)
|
|
# define BOSTON_PLAT_DDR3STAT_CALIB (1 << 2)
|
|
|
|
#define BOSTON_PLAT_DDRCONF0 (BOSTON_PLAT_BASE + 0x38)
|
|
# define BOSTON_PLAT_DDRCONF0_SIZE (0xf << 0)
|
|
|
|
#endif /* __BOARD_BOSTON_REGS_H__ */
|