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 15 #ifndef __PLAT_REGS_CLOCK_H 16 #define __PLAT_REGS_CLOCK_H __FILE__ 17 18 /* 19 * FIXME: Remove remaining definitions 20 */ 21 22 #define S3C_CLKREG(x) (S3C_VA_SYS + (x)) 23 24 #define S3C_PCLK_GATE S3C_CLKREG(0x34) 25 #define S3C6410_CLK_SRC2 S3C_CLKREG(0x10C) 26 #define S3C_MEM_SYS_CFG S3C_CLKREG(0x120) 27 28 /* PCLK GATE Registers */ 29 #define S3C_CLKCON_PCLK_UART3 (1<<4) 30 #define S3C_CLKCON_PCLK_UART2 (1<<3) 31 #define S3C_CLKCON_PCLK_UART1 (1<<2) 32 #define S3C_CLKCON_PCLK_UART0 (1<<1) 33 34 /* MEM_SYS_CFG */ 35 #define MEM_SYS_CFG_INDEP_CF 0x4000 36 #define MEM_SYS_CFG_EBI_FIX_PRI_CFCON 0x30 37 38 #endif /* _PLAT_REGS_CLOCK_H */ 39