regs-clock.h 1017 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* arch/arm/plat-s3c64xx/include/plat/regs-clock.h
  2. *
  3. * Copyright 2008 Openmoko, Inc.
  4. * Copyright 2008 Simtec Electronics
  5. * Ben Dooks <ben@simtec.co.uk>
  6. * http://armlinux.simtec.co.uk/
  7. *
  8. * S3C64XX clock register definitions
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #ifndef __PLAT_REGS_CLOCK_H
  15. #define __PLAT_REGS_CLOCK_H __FILE__
  16. /*
  17. * FIXME: Remove remaining definitions
  18. */
  19. #define S3C_CLKREG(x) (S3C_VA_SYS + (x))
  20. #define S3C_PCLK_GATE S3C_CLKREG(0x34)
  21. #define S3C6410_CLK_SRC2 S3C_CLKREG(0x10C)
  22. #define S3C_MEM_SYS_CFG S3C_CLKREG(0x120)
  23. /* PCLK GATE Registers */
  24. #define S3C_CLKCON_PCLK_UART3 (1<<4)
  25. #define S3C_CLKCON_PCLK_UART2 (1<<3)
  26. #define S3C_CLKCON_PCLK_UART1 (1<<2)
  27. #define S3C_CLKCON_PCLK_UART0 (1<<1)
  28. /* MEM_SYS_CFG */
  29. #define MEM_SYS_CFG_INDEP_CF 0x4000
  30. #define MEM_SYS_CFG_EBI_FIX_PRI_CFCON 0x30
  31. #endif /* _PLAT_REGS_CLOCK_H */