162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */ 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * Microchip SAMA7 UDDR Controller and DDR3 PHY Controller registers offsets 462306a36Sopenharmony_ci * and bit definitions. 562306a36Sopenharmony_ci * 662306a36Sopenharmony_ci * Copyright (C) [2020] Microchip Technology Inc. and its subsidiaries 762306a36Sopenharmony_ci * 862306a36Sopenharmony_ci * Author: Claudu Beznea <claudiu.beznea@microchip.com> 962306a36Sopenharmony_ci */ 1062306a36Sopenharmony_ci 1162306a36Sopenharmony_ci#ifndef __SAMA7_DDR_H__ 1262306a36Sopenharmony_ci#define __SAMA7_DDR_H__ 1362306a36Sopenharmony_ci 1462306a36Sopenharmony_ci/* DDR3PHY */ 1562306a36Sopenharmony_ci#define DDR3PHY_PIR (0x04) /* DDR3PHY PHY Initialization Register */ 1662306a36Sopenharmony_ci#define DDR3PHY_PIR_DLLBYP (1 << 17) /* DLL Bypass */ 1762306a36Sopenharmony_ci#define DDR3PHY_PIR_ITMSRST (1 << 4) /* Interface Timing Module Soft Reset */ 1862306a36Sopenharmony_ci#define DDR3PHY_PIR_DLLLOCK (1 << 2) /* DLL Lock */ 1962306a36Sopenharmony_ci#define DDR3PHY_PIR_DLLSRST (1 << 1) /* DLL Soft Rest */ 2062306a36Sopenharmony_ci#define DDR3PHY_PIR_INIT (1 << 0) /* Initialization Trigger */ 2162306a36Sopenharmony_ci 2262306a36Sopenharmony_ci#define DDR3PHY_PGCR (0x08) /* DDR3PHY PHY General Configuration Register */ 2362306a36Sopenharmony_ci#define DDR3PHY_PGCR_CKDV1 (1 << 13) /* CK# Disable Value */ 2462306a36Sopenharmony_ci#define DDR3PHY_PGCR_CKDV0 (1 << 12) /* CK Disable Value */ 2562306a36Sopenharmony_ci 2662306a36Sopenharmony_ci#define DDR3PHY_PGSR (0x0C) /* DDR3PHY PHY General Status Register */ 2762306a36Sopenharmony_ci#define DDR3PHY_PGSR_IDONE (1 << 0) /* Initialization Done */ 2862306a36Sopenharmony_ci 2962306a36Sopenharmony_ci#define DDR3PHY_ACDLLCR (0x14) /* DDR3PHY AC DLL Control Register */ 3062306a36Sopenharmony_ci#define DDR3PHY_ACDLLCR_DLLSRST (1 << 30) /* DLL Soft Reset */ 3162306a36Sopenharmony_ci 3262306a36Sopenharmony_ci#define DDR3PHY_ACIOCR (0x24) /* DDR3PHY AC I/O Configuration Register */ 3362306a36Sopenharmony_ci#define DDR3PHY_ACIOCR_CSPDD_CS0 (1 << 18) /* CS#[0] Power Down Driver */ 3462306a36Sopenharmony_ci#define DDR3PHY_ACIOCR_CKPDD_CK0 (1 << 8) /* CK[0] Power Down Driver */ 3562306a36Sopenharmony_ci#define DDR3PHY_ACIORC_ACPDD (1 << 3) /* AC Power Down Driver */ 3662306a36Sopenharmony_ci 3762306a36Sopenharmony_ci#define DDR3PHY_DXCCR (0x28) /* DDR3PHY DATX8 Common Configuration Register */ 3862306a36Sopenharmony_ci#define DDR3PHY_DXCCR_DXPDR (1 << 3) /* Data Power Down Receiver */ 3962306a36Sopenharmony_ci 4062306a36Sopenharmony_ci#define DDR3PHY_DSGCR (0x2C) /* DDR3PHY DDR System General Configuration Register */ 4162306a36Sopenharmony_ci#define DDR3PHY_DSGCR_ODTPDD_ODT0 (1 << 20) /* ODT[0] Power Down Driver */ 4262306a36Sopenharmony_ci 4362306a36Sopenharmony_ci#define DDR3PHY_ZQ0SR0 (0x188) /* ZQ status register 0 */ 4462306a36Sopenharmony_ci#define DDR3PHY_ZQ0SR0_PDO_OFF (0) /* Pull-down output impedance select offset */ 4562306a36Sopenharmony_ci#define DDR3PHY_ZQ0SR0_PUO_OFF (5) /* Pull-up output impedance select offset */ 4662306a36Sopenharmony_ci#define DDR3PHY_ZQ0SR0_PDODT_OFF (10) /* Pull-down on-die termination impedance select offset */ 4762306a36Sopenharmony_ci#define DDR3PHY_ZQ0SRO_PUODT_OFF (15) /* Pull-up on-die termination impedance select offset */ 4862306a36Sopenharmony_ci 4962306a36Sopenharmony_ci#define DDR3PHY_DX0DLLCR (0x1CC) /* DDR3PHY DATX8 DLL Control Register */ 5062306a36Sopenharmony_ci#define DDR3PHY_DX1DLLCR (0x20C) /* DDR3PHY DATX8 DLL Control Register */ 5162306a36Sopenharmony_ci#define DDR3PHY_DXDLLCR_DLLDIS (1 << 31) /* DLL Disable */ 5262306a36Sopenharmony_ci 5362306a36Sopenharmony_ci/* UDDRC */ 5462306a36Sopenharmony_ci#define UDDRC_STAT (0x04) /* UDDRC Operating Mode Status Register */ 5562306a36Sopenharmony_ci#define UDDRC_STAT_SELFREF_TYPE_DIS (0x0 << 4) /* SDRAM is not in Self-refresh */ 5662306a36Sopenharmony_ci#define UDDRC_STAT_SELFREF_TYPE_PHY (0x1 << 4) /* SDRAM is in Self-refresh, which was caused by PHY Master Request */ 5762306a36Sopenharmony_ci#define UDDRC_STAT_SELFREF_TYPE_SW (0x2 << 4) /* SDRAM is in Self-refresh, which was not caused solely under Automatic Self-refresh control */ 5862306a36Sopenharmony_ci#define UDDRC_STAT_SELFREF_TYPE_AUTO (0x3 << 4) /* SDRAM is in Self-refresh, which was caused by Automatic Self-refresh only */ 5962306a36Sopenharmony_ci#define UDDRC_STAT_SELFREF_TYPE_MSK (0x3 << 4) /* Self-refresh type mask */ 6062306a36Sopenharmony_ci#define UDDRC_STAT_OPMODE_INIT (0x0 << 0) /* Init */ 6162306a36Sopenharmony_ci#define UDDRC_STAT_OPMODE_NORMAL (0x1 << 0) /* Normal */ 6262306a36Sopenharmony_ci#define UDDRC_STAT_OPMODE_PWRDOWN (0x2 << 0) /* Power-down */ 6362306a36Sopenharmony_ci#define UDDRC_STAT_OPMODE_SELF_REFRESH (0x3 << 0) /* Self-refresh */ 6462306a36Sopenharmony_ci#define UDDRC_STAT_OPMODE_MSK (0x7 << 0) /* Operating mode mask */ 6562306a36Sopenharmony_ci 6662306a36Sopenharmony_ci#define UDDRC_PWRCTL (0x30) /* UDDRC Low Power Control Register */ 6762306a36Sopenharmony_ci#define UDDRC_PWRCTL_SELFREF_EN (1 << 0) /* Automatic self-refresh */ 6862306a36Sopenharmony_ci#define UDDRC_PWRCTL_SELFREF_SW (1 << 5) /* Software self-refresh */ 6962306a36Sopenharmony_ci 7062306a36Sopenharmony_ci#define UDDRC_DFIMISC (0x1B0) /* UDDRC DFI Miscellaneous Control Register */ 7162306a36Sopenharmony_ci#define UDDRC_DFIMISC_DFI_INIT_COMPLETE_EN (1 << 0) /* PHY initialization complete enable signal */ 7262306a36Sopenharmony_ci 7362306a36Sopenharmony_ci#define UDDRC_SWCTRL (0x320) /* UDDRC Software Register Programming Control Enable */ 7462306a36Sopenharmony_ci#define UDDRC_SWCTRL_SW_DONE (1 << 0) /* Enable quasi-dynamic register programming outside reset */ 7562306a36Sopenharmony_ci 7662306a36Sopenharmony_ci#define UDDRC_SWSTAT (0x324) /* UDDRC Software Register Programming Control Status */ 7762306a36Sopenharmony_ci#define UDDRC_SWSTAT_SW_DONE_ACK (1 << 0) /* Register programming done */ 7862306a36Sopenharmony_ci 7962306a36Sopenharmony_ci#define UDDRC_PSTAT (0x3FC) /* UDDRC Port Status Register */ 8062306a36Sopenharmony_ci#define UDDRC_PSTAT_ALL_PORTS (0x1F001F) /* Read + writes outstanding transactions on all ports */ 8162306a36Sopenharmony_ci 8262306a36Sopenharmony_ci#define UDDRC_PCTRL_0 (0x490) /* UDDRC Port 0 Control Register */ 8362306a36Sopenharmony_ci#define UDDRC_PCTRL_1 (0x540) /* UDDRC Port 1 Control Register */ 8462306a36Sopenharmony_ci#define UDDRC_PCTRL_2 (0x5F0) /* UDDRC Port 2 Control Register */ 8562306a36Sopenharmony_ci#define UDDRC_PCTRL_3 (0x6A0) /* UDDRC Port 3 Control Register */ 8662306a36Sopenharmony_ci#define UDDRC_PCTRL_4 (0x750) /* UDDRC Port 4 Control Register */ 8762306a36Sopenharmony_ci 8862306a36Sopenharmony_ci#endif /* __SAMA7_DDR_H__ */ 89