blob: ac229e0d169392421443d59d17a81b1d2d0da7b7 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Chander Kashyap9c88fb82011-04-14 19:05:18 +00002/*
3 * (C) Copyright 2010 Samsung Electronics
4 * Naveen Krishna Ch <ch.naveen@samsung.com>
5 *
Chander Kashyap9c88fb82011-04-14 19:05:18 +00006 * Note: This file contains the register description for SROMC
Chander Kashyap9c88fb82011-04-14 19:05:18 +00007 */
8
9#ifndef __ASM_ARCH_SROMC_H_
10#define __ASM_ARCH_SROMC_H_
11
12#define SROMC_DATA16_WIDTH(x) (1<<((x*4)+0))
13#define SROMC_BYTE_ADDR_MODE(x) (1<<((x*4)+1)) /* 0-> Half-word base address*/
14 /* 1-> Byte base address*/
15#define SROMC_WAIT_ENABLE(x) (1<<((x*4)+2))
16#define SROMC_BYTE_ENABLE(x) (1<<((x*4)+3))
17
18#define SROMC_BC_TACS(x) (x << 28) /* address set-up */
19#define SROMC_BC_TCOS(x) (x << 24) /* chip selection set-up */
20#define SROMC_BC_TACC(x) (x << 16) /* access cycle */
21#define SROMC_BC_TCOH(x) (x << 12) /* chip selection hold */
22#define SROMC_BC_TAH(x) (x << 8) /* address holding time */
23#define SROMC_BC_TACP(x) (x << 4) /* page mode access cycle */
24#define SROMC_BC_PMC(x) (x << 0) /* normal(1data)page mode configuration */
25
26#ifndef __ASSEMBLY__
27struct s5p_sromc {
28 unsigned int bw;
29 unsigned int bc[4];
30};
31#endif /* __ASSEMBLY__ */
32
33/* Configure the Band Width and Bank Control Regs for required SROMC Bank */
34void s5p_config_sromc(u32 srom_bank, u32 srom_bw_conf, u32 srom_bc_conf);
35
Chander Kashyap9c88fb82011-04-14 19:05:18 +000036#endif /* __ASM_ARCH_SROMC_H_ */