162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * arch/arm/mach-at91/include/mach/at91sam9_sdramc.h
462306a36Sopenharmony_ci *
562306a36Sopenharmony_ci * Copyright (C) 2007 Andrew Victor
662306a36Sopenharmony_ci * Copyright (C) 2007 Atmel Corporation.
762306a36Sopenharmony_ci *
862306a36Sopenharmony_ci * SDRAM Controllers (SDRAMC) - System peripherals registers.
962306a36Sopenharmony_ci * Based on AT91SAM9261 datasheet revision D.
1062306a36Sopenharmony_ci */
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ci#ifndef AT91SAM9_SDRAMC_H
1362306a36Sopenharmony_ci#define AT91SAM9_SDRAMC_H
1462306a36Sopenharmony_ci
1562306a36Sopenharmony_ci/* SDRAM Controller (SDRAMC) registers */
1662306a36Sopenharmony_ci#define AT91_SDRAMC_MR		0x00	/* SDRAM Controller Mode Register */
1762306a36Sopenharmony_ci#define		AT91_SDRAMC_MODE	(0xf << 0)		/* Command Mode */
1862306a36Sopenharmony_ci#define			AT91_SDRAMC_MODE_NORMAL		0
1962306a36Sopenharmony_ci#define			AT91_SDRAMC_MODE_NOP		1
2062306a36Sopenharmony_ci#define			AT91_SDRAMC_MODE_PRECHARGE	2
2162306a36Sopenharmony_ci#define			AT91_SDRAMC_MODE_LMR		3
2262306a36Sopenharmony_ci#define			AT91_SDRAMC_MODE_REFRESH	4
2362306a36Sopenharmony_ci#define			AT91_SDRAMC_MODE_EXT_LMR	5
2462306a36Sopenharmony_ci#define			AT91_SDRAMC_MODE_DEEP		6
2562306a36Sopenharmony_ci
2662306a36Sopenharmony_ci#define AT91_SDRAMC_TR		0x04	/* SDRAM Controller Refresh Timer Register */
2762306a36Sopenharmony_ci#define		AT91_SDRAMC_COUNT	(0xfff << 0)		/* Refresh Timer Counter */
2862306a36Sopenharmony_ci
2962306a36Sopenharmony_ci#define AT91_SDRAMC_CR		0x08	/* SDRAM Controller Configuration Register */
3062306a36Sopenharmony_ci#define		AT91_SDRAMC_NC		(3 << 0)		/* Number of Column Bits */
3162306a36Sopenharmony_ci#define			AT91_SDRAMC_NC_8	(0 << 0)
3262306a36Sopenharmony_ci#define			AT91_SDRAMC_NC_9	(1 << 0)
3362306a36Sopenharmony_ci#define			AT91_SDRAMC_NC_10	(2 << 0)
3462306a36Sopenharmony_ci#define			AT91_SDRAMC_NC_11	(3 << 0)
3562306a36Sopenharmony_ci#define		AT91_SDRAMC_NR		(3 << 2)		/* Number of Row Bits */
3662306a36Sopenharmony_ci#define			AT91_SDRAMC_NR_11	(0 << 2)
3762306a36Sopenharmony_ci#define			AT91_SDRAMC_NR_12	(1 << 2)
3862306a36Sopenharmony_ci#define			AT91_SDRAMC_NR_13	(2 << 2)
3962306a36Sopenharmony_ci#define		AT91_SDRAMC_NB		(1 << 4)		/* Number of Banks */
4062306a36Sopenharmony_ci#define			AT91_SDRAMC_NB_2	(0 << 4)
4162306a36Sopenharmony_ci#define			AT91_SDRAMC_NB_4	(1 << 4)
4262306a36Sopenharmony_ci#define		AT91_SDRAMC_CAS		(3 << 5)		/* CAS Latency */
4362306a36Sopenharmony_ci#define			AT91_SDRAMC_CAS_1	(1 << 5)
4462306a36Sopenharmony_ci#define			AT91_SDRAMC_CAS_2	(2 << 5)
4562306a36Sopenharmony_ci#define			AT91_SDRAMC_CAS_3	(3 << 5)
4662306a36Sopenharmony_ci#define		AT91_SDRAMC_DBW		(1 << 7)		/* Data Bus Width */
4762306a36Sopenharmony_ci#define			AT91_SDRAMC_DBW_32	(0 << 7)
4862306a36Sopenharmony_ci#define			AT91_SDRAMC_DBW_16	(1 << 7)
4962306a36Sopenharmony_ci#define		AT91_SDRAMC_TWR		(0xf <<  8)		/* Write Recovery Delay */
5062306a36Sopenharmony_ci#define		AT91_SDRAMC_TRC		(0xf << 12)		/* Row Cycle Delay */
5162306a36Sopenharmony_ci#define		AT91_SDRAMC_TRP		(0xf << 16)		/* Row Precharge Delay */
5262306a36Sopenharmony_ci#define		AT91_SDRAMC_TRCD	(0xf << 20)		/* Row to Column Delay */
5362306a36Sopenharmony_ci#define		AT91_SDRAMC_TRAS	(0xf << 24)		/* Active to Precharge Delay */
5462306a36Sopenharmony_ci#define		AT91_SDRAMC_TXSR	(0xf << 28)		/* Exit Self Refresh to Active Delay */
5562306a36Sopenharmony_ci
5662306a36Sopenharmony_ci#define AT91_SDRAMC_LPR		0x10	/* SDRAM Controller Low Power Register */
5762306a36Sopenharmony_ci#define		AT91_SDRAMC_LPCB		(3 << 0)	/* Low-power Configurations */
5862306a36Sopenharmony_ci#define			AT91_SDRAMC_LPCB_DISABLE		0
5962306a36Sopenharmony_ci#define			AT91_SDRAMC_LPCB_SELF_REFRESH		1
6062306a36Sopenharmony_ci#define			AT91_SDRAMC_LPCB_POWER_DOWN		2
6162306a36Sopenharmony_ci#define			AT91_SDRAMC_LPCB_DEEP_POWER_DOWN	3
6262306a36Sopenharmony_ci#define		AT91_SDRAMC_PASR		(7 << 4)	/* Partial Array Self Refresh */
6362306a36Sopenharmony_ci#define		AT91_SDRAMC_TCSR		(3 << 8)	/* Temperature Compensated Self Refresh */
6462306a36Sopenharmony_ci#define		AT91_SDRAMC_DS			(3 << 10)	/* Drive Strength */
6562306a36Sopenharmony_ci#define		AT91_SDRAMC_TIMEOUT		(3 << 12)	/* Time to define when Low Power Mode is enabled */
6662306a36Sopenharmony_ci#define			AT91_SDRAMC_TIMEOUT_0_CLK_CYCLES	(0 << 12)
6762306a36Sopenharmony_ci#define			AT91_SDRAMC_TIMEOUT_64_CLK_CYCLES	(1 << 12)
6862306a36Sopenharmony_ci#define			AT91_SDRAMC_TIMEOUT_128_CLK_CYCLES	(2 << 12)
6962306a36Sopenharmony_ci
7062306a36Sopenharmony_ci#define AT91_SDRAMC_IER		0x14	/* SDRAM Controller Interrupt Enable Register */
7162306a36Sopenharmony_ci#define AT91_SDRAMC_IDR		0x18	/* SDRAM Controller Interrupt Disable Register */
7262306a36Sopenharmony_ci#define AT91_SDRAMC_IMR		0x1C	/* SDRAM Controller Interrupt Mask Register */
7362306a36Sopenharmony_ci#define AT91_SDRAMC_ISR		0x20	/* SDRAM Controller Interrupt Status Register */
7462306a36Sopenharmony_ci#define		AT91_SDRAMC_RES		(1 << 0)		/* Refresh Error Status */
7562306a36Sopenharmony_ci
7662306a36Sopenharmony_ci#define AT91_SDRAMC_MDR		0x24	/* SDRAM Memory Device Register */
7762306a36Sopenharmony_ci#define		AT91_SDRAMC_MD		(3 << 0)		/* Memory Device Type */
7862306a36Sopenharmony_ci#define			AT91_SDRAMC_MD_SDRAM		0
7962306a36Sopenharmony_ci#define			AT91_SDRAMC_MD_LOW_POWER_SDRAM	1
8062306a36Sopenharmony_ci
8162306a36Sopenharmony_ci#endif
82