18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * arch/arm/mach-at91/include/mach/at91sam9_sdramc.h 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Copyright (C) 2007 Andrew Victor 68c2ecf20Sopenharmony_ci * Copyright (C) 2007 Atmel Corporation. 78c2ecf20Sopenharmony_ci * 88c2ecf20Sopenharmony_ci * SDRAM Controllers (SDRAMC) - System peripherals registers. 98c2ecf20Sopenharmony_ci * Based on AT91SAM9261 datasheet revision D. 108c2ecf20Sopenharmony_ci */ 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_ci#ifndef AT91SAM9_SDRAMC_H 138c2ecf20Sopenharmony_ci#define AT91SAM9_SDRAMC_H 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ci/* SDRAM Controller (SDRAMC) registers */ 168c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MR 0x00 /* SDRAM Controller Mode Register */ 178c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MODE (0xf << 0) /* Command Mode */ 188c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MODE_NORMAL 0 198c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MODE_NOP 1 208c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MODE_PRECHARGE 2 218c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MODE_LMR 3 228c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MODE_REFRESH 4 238c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MODE_EXT_LMR 5 248c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MODE_DEEP 6 258c2ecf20Sopenharmony_ci 268c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TR 0x04 /* SDRAM Controller Refresh Timer Register */ 278c2ecf20Sopenharmony_ci#define AT91_SDRAMC_COUNT (0xfff << 0) /* Refresh Timer Counter */ 288c2ecf20Sopenharmony_ci 298c2ecf20Sopenharmony_ci#define AT91_SDRAMC_CR 0x08 /* SDRAM Controller Configuration Register */ 308c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NC (3 << 0) /* Number of Column Bits */ 318c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NC_8 (0 << 0) 328c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NC_9 (1 << 0) 338c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NC_10 (2 << 0) 348c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NC_11 (3 << 0) 358c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NR (3 << 2) /* Number of Row Bits */ 368c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NR_11 (0 << 2) 378c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NR_12 (1 << 2) 388c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NR_13 (2 << 2) 398c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NB (1 << 4) /* Number of Banks */ 408c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NB_2 (0 << 4) 418c2ecf20Sopenharmony_ci#define AT91_SDRAMC_NB_4 (1 << 4) 428c2ecf20Sopenharmony_ci#define AT91_SDRAMC_CAS (3 << 5) /* CAS Latency */ 438c2ecf20Sopenharmony_ci#define AT91_SDRAMC_CAS_1 (1 << 5) 448c2ecf20Sopenharmony_ci#define AT91_SDRAMC_CAS_2 (2 << 5) 458c2ecf20Sopenharmony_ci#define AT91_SDRAMC_CAS_3 (3 << 5) 468c2ecf20Sopenharmony_ci#define AT91_SDRAMC_DBW (1 << 7) /* Data Bus Width */ 478c2ecf20Sopenharmony_ci#define AT91_SDRAMC_DBW_32 (0 << 7) 488c2ecf20Sopenharmony_ci#define AT91_SDRAMC_DBW_16 (1 << 7) 498c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TWR (0xf << 8) /* Write Recovery Delay */ 508c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TRC (0xf << 12) /* Row Cycle Delay */ 518c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TRP (0xf << 16) /* Row Precharge Delay */ 528c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TRCD (0xf << 20) /* Row to Column Delay */ 538c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TRAS (0xf << 24) /* Active to Precharge Delay */ 548c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TXSR (0xf << 28) /* Exit Self Refresh to Active Delay */ 558c2ecf20Sopenharmony_ci 568c2ecf20Sopenharmony_ci#define AT91_SDRAMC_LPR 0x10 /* SDRAM Controller Low Power Register */ 578c2ecf20Sopenharmony_ci#define AT91_SDRAMC_LPCB (3 << 0) /* Low-power Configurations */ 588c2ecf20Sopenharmony_ci#define AT91_SDRAMC_LPCB_DISABLE 0 598c2ecf20Sopenharmony_ci#define AT91_SDRAMC_LPCB_SELF_REFRESH 1 608c2ecf20Sopenharmony_ci#define AT91_SDRAMC_LPCB_POWER_DOWN 2 618c2ecf20Sopenharmony_ci#define AT91_SDRAMC_LPCB_DEEP_POWER_DOWN 3 628c2ecf20Sopenharmony_ci#define AT91_SDRAMC_PASR (7 << 4) /* Partial Array Self Refresh */ 638c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TCSR (3 << 8) /* Temperature Compensated Self Refresh */ 648c2ecf20Sopenharmony_ci#define AT91_SDRAMC_DS (3 << 10) /* Drive Strength */ 658c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TIMEOUT (3 << 12) /* Time to define when Low Power Mode is enabled */ 668c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TIMEOUT_0_CLK_CYCLES (0 << 12) 678c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TIMEOUT_64_CLK_CYCLES (1 << 12) 688c2ecf20Sopenharmony_ci#define AT91_SDRAMC_TIMEOUT_128_CLK_CYCLES (2 << 12) 698c2ecf20Sopenharmony_ci 708c2ecf20Sopenharmony_ci#define AT91_SDRAMC_IER 0x14 /* SDRAM Controller Interrupt Enable Register */ 718c2ecf20Sopenharmony_ci#define AT91_SDRAMC_IDR 0x18 /* SDRAM Controller Interrupt Disable Register */ 728c2ecf20Sopenharmony_ci#define AT91_SDRAMC_IMR 0x1C /* SDRAM Controller Interrupt Mask Register */ 738c2ecf20Sopenharmony_ci#define AT91_SDRAMC_ISR 0x20 /* SDRAM Controller Interrupt Status Register */ 748c2ecf20Sopenharmony_ci#define AT91_SDRAMC_RES (1 << 0) /* Refresh Error Status */ 758c2ecf20Sopenharmony_ci 768c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MDR 0x24 /* SDRAM Memory Device Register */ 778c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MD (3 << 0) /* Memory Device Type */ 788c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MD_SDRAM 0 798c2ecf20Sopenharmony_ci#define AT91_SDRAMC_MD_LOW_POWER_SDRAM 1 808c2ecf20Sopenharmony_ci 818c2ecf20Sopenharmony_ci#endif 82