1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (c) 2008 Simtec Electronics
4  *	Ben Dooks <ben@simtec.co.uk>
5  *	http://armlinux.simtec.co.uk/
6  */
7 
8 #ifndef __ARCH_ARM_MACH_S3C24XX_S3C2412_H
9 #define __ARCH_ARM_MACH_S3C24XX_S3C2412_H __FILE__
10 
11 #include "map-s3c.h"
12 
13 #define S3C2412_MEMREG(x)		(S3C24XX_VA_MEMCTRL + (x))
14 #define S3C2412_EBIREG(x)		(S3C2412_VA_EBI + (x))
15 
16 #define S3C2412_SSMCREG(x)		(S3C2412_VA_SSMC + (x))
17 #define S3C2412_SSMC(x, o)		(S3C2412_SSMCREG((x * 0x20) + (o)))
18 
19 #define S3C2412_REFRESH			S3C2412_MEMREG(0x10)
20 
21 #define S3C2412_EBI_BANKCFG		S3C2412_EBIREG(0x4)
22 
23 #define S3C2412_SSMC_BANK(x)		S3C2412_SSMC(x, 0x0)
24 
25 #endif /* __ARCH_ARM_MACH_S3C24XX_S3C2412_H */
26