1 /* SPDX-License-Identifier: GPL-2.0-only */ 1 2 #ifndef __ARCH_ARM_MACH_OMAP2_SDRC_H 3 #define __ARCH_ARM_MACH_OMAP2_SDRC_H 4 5 /* 6 * OMAP2/3 SDRC/SMS macros and prototypes 7 * 8 * Copyright (C) 2007-2008, 2012 Texas Instrum 9 * Copyright (C) 2007-2008 Nokia Corporation 10 * 11 * Paul Walmsley 12 * Tony Lindgren 13 * Richard Woodruff 14 */ 15 #undef DEBUG 16 17 #ifndef __ASSEMBLER__ 18 19 #include <linux/io.h> 20 21 extern void __iomem *omap2_sdrc_base; 22 extern void __iomem *omap2_sms_base; 23 24 #define OMAP_SDRC_REGADDR(reg) 25 #define OMAP_SMS_REGADDR(reg) 26 27 /* SDRC global register get/set */ 28 29 static inline void sdrc_write_reg(u32 val, u16 30 { 31 writel_relaxed(val, OMAP_SDRC_REGADDR( 32 } 33 34 static inline u32 sdrc_read_reg(u16 reg) 35 { 36 return readl_relaxed(OMAP_SDRC_REGADDR 37 } 38 39 /* SMS global register get/set */ 40 41 static inline void sms_write_reg(u32 val, u16 42 { 43 writel_relaxed(val, OMAP_SMS_REGADDR(r 44 } 45 46 static inline u32 sms_read_reg(u16 reg) 47 { 48 return readl_relaxed(OMAP_SMS_REGADDR( 49 } 50 51 extern void omap2_set_globals_sdrc(void __iome 52 53 54 /** 55 * struct omap_sdrc_params - SDRC parameters f 56 * @rate: SDRC clock rate (in Hz) 57 * @actim_ctrla: Value to program to SDRC_ACTI 58 * @actim_ctrlb: Value to program to SDRC_ACTI 59 * @rfr_ctrl: Value to program to SDRC_RFR_CTR 60 * @mr: Value to program to SDRC_MR for this r 61 * 62 * This structure holds a pre-computed set of 63 * SDRC for a given SDRC clock rate and SDRAM 64 * intended to be pre-computed and specified i 65 * files. The structure is keyed off the 'rat 66 */ 67 struct omap_sdrc_params { 68 unsigned long rate; 69 u32 actim_ctrla; 70 u32 actim_ctrlb; 71 u32 rfr_ctrl; 72 u32 mr; 73 }; 74 75 #ifdef CONFIG_SOC_HAS_OMAP2_SDRC 76 void omap2_sdrc_init(struct omap_sdrc_params * 77 struct omap_sdrc_p 78 #else 79 static inline void __init omap2_sdrc_init(stru 80 stru 81 #endif 82 83 void omap2_sms_restore_context(void); 84 85 struct memory_timings { 86 u32 m_type; /* ddr = 1, sd 87 u32 dll_mode; /* use lock mo 88 u32 slow_dll_ctrl; /* unlock mode 89 u32 fast_dll_ctrl; /* unlock mode 90 u32 base_cs; /* base chip s 91 }; 92 93 extern void omap2xxx_sdrc_init_params(u32 forc 94 95 u32 omap2xxx_sdrc_dll_is_unlocked(void); 96 u32 omap2xxx_sdrc_reprogram(u32 level, u32 for 97 98 99 #else 100 #define OMAP242X_SDRC_REGADDR(reg) 101 OMAP2_L3_IO_ADDRESS(OM 102 #define OMAP243X_SDRC_REGADDR(reg) 103 OMAP2_L3_IO_ADDRESS(OM 104 #define OMAP34XX_SDRC_REGADDR(reg) 105 OMAP2_L3_IO_ADDRESS(OM 106 107 #endif /* __ASSEMBLER__ */ 108 109 /* Minimum frequency that the SDRC DLL can loc 110 #define MIN_SDRC_DLL_LOCK_FREQ 830000 111 112 /* Scale factor for fixed-point arith in omap3 113 #define SDRC_MPURATE_SCALE 8 114 115 /* 2^SDRC_MPURATE_BASE_SHIFT: MPU MHz that SDR 116 #define SDRC_MPURATE_BASE_SHIFT 9 117 118 /* 119 * SDRC_MPURATE_LOOPS: Number of MPU loops to 120 * 2^MPURATE_BASE_SHIFT MHz for SDRC to stabil 121 */ 122 #define SDRC_MPURATE_LOOPS 96 123 124 /* SDRC register offsets - read/write with sdr 125 126 #define SDRC_SYSCONFIG 0x010 127 #define SDRC_CS_CFG 0x040 128 #define SDRC_SHARING 0x044 129 #define SDRC_ERR_TYPE 0x04C 130 #define SDRC_DLLA_CTRL 0x060 131 #define SDRC_DLLA_STATUS 0x064 132 #define SDRC_DLLB_CTRL 0x068 133 #define SDRC_DLLB_STATUS 0x06C 134 #define SDRC_POWER 0x070 135 #define SDRC_MCFG_0 0x080 136 #define SDRC_MR_0 0x084 137 #define SDRC_EMR2_0 0x08c 138 #define SDRC_ACTIM_CTRL_A_0 0x09c 139 #define SDRC_ACTIM_CTRL_B_0 0x0a0 140 #define SDRC_RFR_CTRL_0 0x0a4 141 #define SDRC_MANUAL_0 0x0a8 142 #define SDRC_MCFG_1 0x0B0 143 #define SDRC_MR_1 0x0B4 144 #define SDRC_EMR2_1 0x0BC 145 #define SDRC_ACTIM_CTRL_A_1 0x0C4 146 #define SDRC_ACTIM_CTRL_B_1 0x0C8 147 #define SDRC_RFR_CTRL_1 0x0D4 148 #define SDRC_MANUAL_1 0x0D8 149 150 #define SDRC_POWER_AUTOCOUNT_SHIFT 8 151 #define SDRC_POWER_AUTOCOUNT_MASK (0xfff 152 #define SDRC_POWER_CLKCTRL_SHIFT 4 153 #define SDRC_POWER_CLKCTRL_MASK (0x3 < 154 #define SDRC_SELF_REFRESH_ON_AUTOCOUNT (0x2 < 155 156 /* 157 * These values represent the number of memory 158 * autorefresh initiation. They assume 1 refr 159 * rows per device, and include a subtraction 160 * event that the autorefresh command is delay 161 * The '| 1' sets the ARE field to send one au 162 * counter reaches 0. 163 * 164 * These represent optimal values for common p 165 * As long as you scale down, most parameters 166 * become sub-optimal. The RFR value goes in t 167 * don't adjust it down as your clock period i 168 * will not be met. Setting all parameters for 169 * but may cut memory performance by 2x. Due t 170 * unlocked and their value needs run time cal 171 * need for that as no single right value exis 172 * 173 * Only the FULL speed values are given. Curre 174 * changes must be made at DPLLoutx2. The actu 175 * frequency operation will be handled by omap 176 * 177 * By having the boot loader boot up in the fa 178 * will result in something which you can swit 179 */ 180 #define SDRC_RFR_CTRL_165MHz (0x00044c00 | 181 #define SDRC_RFR_CTRL_133MHz (0x0003de00 | 182 #define SDRC_RFR_CTRL_100MHz (0x0002da01 | 183 #define SDRC_RFR_CTRL_110MHz (0x0002da01 | 184 #define SDRC_RFR_CTRL_BYPASS (0x00005000 | 185 186 187 /* 188 * SMS register access 189 */ 190 191 #define OMAP242X_SMS_REGADDR(reg) 192 (void __iomem *)OMAP2_L3_IO_AD 193 #define OMAP243X_SMS_REGADDR(reg) 194 (void __iomem *)OMAP2_L3_IO_AD 195 #define OMAP343X_SMS_REGADDR(reg) 196 (void __iomem *)OMAP2_L3_IO_AD 197 198 /* SMS register offsets - read/write with sms_ 199 200 #define SMS_SYSCONFIG 0x010 201 /* REVISIT: fill in other SMS registers here * 202 203 204 205 #endif 206
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.