boston-regs.h 624 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (C) 2016 Imagination Technologies
  3. *
  4. * SPDX-License-Identifier: GPL-2.0
  5. */
  6. #ifndef __BOARD_BOSTON_REGS_H__
  7. #define __BOARD_BOSTON_REGS_H__
  8. #include <asm/addrspace.h>
  9. #define BOSTON_PLAT_BASE CKSEG1ADDR(0x17ffd000)
  10. #define BOSTON_LCD_BASE CKSEG1ADDR(0x17fff000)
  11. /*
  12. * Platform Register Definitions
  13. */
  14. #define BOSTON_PLAT_CORE_CL (BOSTON_PLAT_BASE + 0x04)
  15. #define BOSTON_PLAT_DDR3STAT (BOSTON_PLAT_BASE + 0x14)
  16. # define BOSTON_PLAT_DDR3STAT_CALIB (1 << 2)
  17. #define BOSTON_PLAT_DDRCONF0 (BOSTON_PLAT_BASE + 0x38)
  18. # define BOSTON_PLAT_DDRCONF0_SIZE (0xf << 0)
  19. #endif /* __BOARD_BOSTON_REGS_H__ */