regs-clock-s3c64xx.h 816 B

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright 2008 Openmoko, Inc.
  4. * Copyright 2008 Simtec Electronics
  5. * Ben Dooks <[email protected]>
  6. * http://armlinux.simtec.co.uk/
  7. *
  8. * S3C64XX clock register definitions
  9. */
  10. #ifndef __PLAT_REGS_CLOCK_H
  11. #define __PLAT_REGS_CLOCK_H __FILE__
  12. /*
  13. * FIXME: Remove remaining definitions
  14. */
  15. #define S3C_CLKREG(x) (S3C_VA_SYS + (x))
  16. #define S3C_PCLK_GATE S3C_CLKREG(0x34)
  17. #define S3C6410_CLK_SRC2 S3C_CLKREG(0x10C)
  18. #define S3C_MEM_SYS_CFG S3C_CLKREG(0x120)
  19. /* PCLK GATE Registers */
  20. #define S3C_CLKCON_PCLK_UART3 (1<<4)
  21. #define S3C_CLKCON_PCLK_UART2 (1<<3)
  22. #define S3C_CLKCON_PCLK_UART1 (1<<2)
  23. #define S3C_CLKCON_PCLK_UART0 (1<<1)
  24. /* MEM_SYS_CFG */
  25. #define MEM_SYS_CFG_INDEP_CF 0x4000
  26. #define MEM_SYS_CFG_EBI_FIX_PRI_CFCON 0x30
  27. #endif /* _PLAT_REGS_CLOCK_H */