Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 1 | /* |
| 2 | * OMAP2/3 System Control Module register access |
| 3 | * |
Paul Walmsley | 3e6ece1 | 2012-10-17 00:46:45 +0000 | [diff] [blame] | 4 | * Copyright (C) 2007, 2012 Texas Instruments, Inc. |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 5 | * Copyright (C) 2007 Nokia Corporation |
| 6 | * |
| 7 | * Written by Paul Walmsley |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | #undef DEBUG |
| 14 | |
| 15 | #include <linux/kernel.h> |
Tony Lindgren | a58caad | 2008-07-03 12:24:44 +0300 | [diff] [blame] | 16 | #include <linux/io.h> |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 17 | |
Tony Lindgren | dbc0416 | 2012-08-31 10:59:07 -0700 | [diff] [blame] | 18 | #include "soc.h" |
Tony Lindgren | ee0839c | 2012-02-24 10:34:35 -0800 | [diff] [blame] | 19 | #include "iomap.h" |
| 20 | #include "common.h" |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 21 | #include "cm-regbits-34xx.h" |
| 22 | #include "prm-regbits-34xx.h" |
Paul Walmsley | 139563a | 2012-10-21 01:01:10 -0600 | [diff] [blame] | 23 | #include "prm3xxx.h" |
Paul Walmsley | ff4ae5d | 2012-10-21 01:01:11 -0600 | [diff] [blame] | 24 | #include "cm3xxx.h" |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 25 | #include "sdrc.h" |
Manjunath Kondaiah G | 3881573 | 2010-10-08 09:56:37 -0700 | [diff] [blame] | 26 | #include "pm.h" |
Paul Walmsley | 4814ced | 2010-10-08 11:40:20 -0600 | [diff] [blame] | 27 | #include "control.h" |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 28 | |
Paul Walmsley | 596efe4 | 2010-12-21 21:05:16 -0700 | [diff] [blame] | 29 | /* Used by omap3_ctrl_save_padconf() */ |
| 30 | #define START_PADCONF_SAVE 0x2 |
| 31 | #define PADCONF_SAVE_DONE 0x1 |
| 32 | |
Tony Lindgren | a58caad | 2008-07-03 12:24:44 +0300 | [diff] [blame] | 33 | static void __iomem *omap2_ctrl_base; |
Santosh Shilimkar | 0c34924 | 2010-09-27 14:02:57 -0600 | [diff] [blame] | 34 | static void __iomem *omap4_ctrl_pad_base; |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 35 | |
Rajendra Nayak | c96631e | 2008-09-26 17:49:02 +0530 | [diff] [blame] | 36 | #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM) |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 37 | struct omap3_scratchpad { |
| 38 | u32 boot_config_ptr; |
| 39 | u32 public_restore_ptr; |
| 40 | u32 secure_ram_restore_ptr; |
| 41 | u32 sdrc_module_semaphore; |
| 42 | u32 prcm_block_offset; |
| 43 | u32 sdrc_block_offset; |
| 44 | }; |
| 45 | |
| 46 | struct omap3_scratchpad_prcm_block { |
| 47 | u32 prm_clksrc_ctrl; |
| 48 | u32 prm_clksel; |
| 49 | u32 cm_clksel_core; |
| 50 | u32 cm_clksel_wkup; |
| 51 | u32 cm_clken_pll; |
| 52 | u32 cm_autoidle_pll; |
| 53 | u32 cm_clksel1_pll; |
| 54 | u32 cm_clksel2_pll; |
| 55 | u32 cm_clksel3_pll; |
| 56 | u32 cm_clken_pll_mpu; |
| 57 | u32 cm_autoidle_pll_mpu; |
| 58 | u32 cm_clksel1_pll_mpu; |
| 59 | u32 cm_clksel2_pll_mpu; |
| 60 | u32 prcm_block_size; |
| 61 | }; |
| 62 | |
| 63 | struct omap3_scratchpad_sdrc_block { |
| 64 | u16 sysconfig; |
| 65 | u16 cs_cfg; |
| 66 | u16 sharing; |
| 67 | u16 err_type; |
| 68 | u32 dll_a_ctrl; |
| 69 | u32 dll_b_ctrl; |
| 70 | u32 power; |
| 71 | u32 cs_0; |
| 72 | u32 mcfg_0; |
| 73 | u16 mr_0; |
| 74 | u16 emr_1_0; |
| 75 | u16 emr_2_0; |
| 76 | u16 emr_3_0; |
| 77 | u32 actim_ctrla_0; |
| 78 | u32 actim_ctrlb_0; |
| 79 | u32 rfr_ctrl_0; |
| 80 | u32 cs_1; |
| 81 | u32 mcfg_1; |
| 82 | u16 mr_1; |
| 83 | u16 emr_1_1; |
| 84 | u16 emr_2_1; |
| 85 | u16 emr_3_1; |
| 86 | u32 actim_ctrla_1; |
| 87 | u32 actim_ctrlb_1; |
| 88 | u32 rfr_ctrl_1; |
| 89 | u16 dcdl_1_ctrl; |
| 90 | u16 dcdl_2_ctrl; |
| 91 | u32 flags; |
| 92 | u32 block_size; |
| 93 | }; |
| 94 | |
Tero Kristo | 27d59a4 | 2008-10-13 13:15:00 +0300 | [diff] [blame] | 95 | void *omap3_secure_ram_storage; |
| 96 | |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 97 | /* |
| 98 | * This is used to store ARM registers in SDRAM before attempting |
| 99 | * an MPU OFF. The save and restore happens from the SRAM sleep code. |
| 100 | * The address is stored in scratchpad, so that it can be used |
| 101 | * during the restore path. |
| 102 | */ |
| 103 | u32 omap3_arm_context[128]; |
| 104 | |
Rajendra Nayak | c96631e | 2008-09-26 17:49:02 +0530 | [diff] [blame] | 105 | struct omap3_control_regs { |
| 106 | u32 sysconfig; |
| 107 | u32 devconf0; |
| 108 | u32 mem_dftrw0; |
| 109 | u32 mem_dftrw1; |
| 110 | u32 msuspendmux_0; |
| 111 | u32 msuspendmux_1; |
| 112 | u32 msuspendmux_2; |
| 113 | u32 msuspendmux_3; |
| 114 | u32 msuspendmux_4; |
| 115 | u32 msuspendmux_5; |
| 116 | u32 sec_ctrl; |
| 117 | u32 devconf1; |
| 118 | u32 csirxfe; |
| 119 | u32 iva2_bootaddr; |
| 120 | u32 iva2_bootmod; |
| 121 | u32 debobs_0; |
| 122 | u32 debobs_1; |
| 123 | u32 debobs_2; |
| 124 | u32 debobs_3; |
| 125 | u32 debobs_4; |
| 126 | u32 debobs_5; |
| 127 | u32 debobs_6; |
| 128 | u32 debobs_7; |
| 129 | u32 debobs_8; |
| 130 | u32 prog_io0; |
| 131 | u32 prog_io1; |
| 132 | u32 dss_dpll_spreading; |
| 133 | u32 core_dpll_spreading; |
| 134 | u32 per_dpll_spreading; |
| 135 | u32 usbhost_dpll_spreading; |
| 136 | u32 pbias_lite; |
| 137 | u32 temp_sensor; |
| 138 | u32 sramldo4; |
| 139 | u32 sramldo5; |
| 140 | u32 csi; |
Paul Walmsley | f5f9d13 | 2010-12-21 15:30:53 -0700 | [diff] [blame] | 141 | u32 padconf_sys_nirq; |
Rajendra Nayak | c96631e | 2008-09-26 17:49:02 +0530 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | static struct omap3_control_regs control_context; |
| 145 | #endif /* CONFIG_ARCH_OMAP3 && CONFIG_PM */ |
| 146 | |
Tony Lindgren | a58caad | 2008-07-03 12:24:44 +0300 | [diff] [blame] | 147 | #define OMAP_CTRL_REGADDR(reg) (omap2_ctrl_base + (reg)) |
Santosh Shilimkar | 70ba71a | 2010-09-27 14:02:57 -0600 | [diff] [blame] | 148 | #define OMAP4_CTRL_PAD_REGADDR(reg) (omap4_ctrl_pad_base + (reg)) |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 149 | |
Paul Walmsley | b6a4226 | 2012-10-29 20:50:21 -0600 | [diff] [blame] | 150 | void __init omap2_set_globals_control(void __iomem *ctrl, |
| 151 | void __iomem *ctrl_pad) |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 152 | { |
Paul Walmsley | b6a4226 | 2012-10-29 20:50:21 -0600 | [diff] [blame] | 153 | omap2_ctrl_base = ctrl; |
| 154 | omap4_ctrl_pad_base = ctrl_pad; |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 155 | } |
| 156 | |
Tony Lindgren | a58caad | 2008-07-03 12:24:44 +0300 | [diff] [blame] | 157 | void __iomem *omap_ctrl_base_get(void) |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 158 | { |
| 159 | return omap2_ctrl_base; |
| 160 | } |
| 161 | |
| 162 | u8 omap_ctrl_readb(u16 offset) |
| 163 | { |
| 164 | return __raw_readb(OMAP_CTRL_REGADDR(offset)); |
| 165 | } |
| 166 | |
| 167 | u16 omap_ctrl_readw(u16 offset) |
| 168 | { |
| 169 | return __raw_readw(OMAP_CTRL_REGADDR(offset)); |
| 170 | } |
| 171 | |
| 172 | u32 omap_ctrl_readl(u16 offset) |
| 173 | { |
| 174 | return __raw_readl(OMAP_CTRL_REGADDR(offset)); |
| 175 | } |
| 176 | |
| 177 | void omap_ctrl_writeb(u8 val, u16 offset) |
| 178 | { |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 179 | __raw_writeb(val, OMAP_CTRL_REGADDR(offset)); |
| 180 | } |
| 181 | |
| 182 | void omap_ctrl_writew(u16 val, u16 offset) |
| 183 | { |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 184 | __raw_writew(val, OMAP_CTRL_REGADDR(offset)); |
| 185 | } |
| 186 | |
| 187 | void omap_ctrl_writel(u32 val, u16 offset) |
| 188 | { |
Paul Walmsley | 69d88a0 | 2008-03-18 10:02:50 +0200 | [diff] [blame] | 189 | __raw_writel(val, OMAP_CTRL_REGADDR(offset)); |
| 190 | } |
| 191 | |
Santosh Shilimkar | 70ba71a | 2010-09-27 14:02:57 -0600 | [diff] [blame] | 192 | /* |
| 193 | * On OMAP4 control pad are not addressable from control |
| 194 | * core base. So the common omap_ctrl_read/write APIs breaks |
| 195 | * Hence export separate APIs to manage the omap4 pad control |
| 196 | * registers. This APIs will work only for OMAP4 |
| 197 | */ |
| 198 | |
| 199 | u32 omap4_ctrl_pad_readl(u16 offset) |
| 200 | { |
| 201 | return __raw_readl(OMAP4_CTRL_PAD_REGADDR(offset)); |
| 202 | } |
| 203 | |
| 204 | void omap4_ctrl_pad_writel(u32 val, u16 offset) |
| 205 | { |
| 206 | __raw_writel(val, OMAP4_CTRL_PAD_REGADDR(offset)); |
| 207 | } |
| 208 | |
Paul Walmsley | 166353b | 2010-12-21 20:01:21 -0700 | [diff] [blame] | 209 | #ifdef CONFIG_ARCH_OMAP3 |
| 210 | |
| 211 | /** |
| 212 | * omap3_ctrl_write_boot_mode - set scratchpad boot mode for the next boot |
| 213 | * @bootmode: 8-bit value to pass to some boot code |
| 214 | * |
| 215 | * Set the bootmode in the scratchpad RAM. This is used after the |
| 216 | * system restarts. Not sure what actually uses this - it may be the |
| 217 | * bootloader, rather than the boot ROM - contrary to the preserved |
| 218 | * comment below. No return value. |
| 219 | */ |
| 220 | void omap3_ctrl_write_boot_mode(u8 bootmode) |
| 221 | { |
| 222 | u32 l; |
| 223 | |
| 224 | l = ('B' << 24) | ('M' << 16) | bootmode; |
| 225 | |
| 226 | /* |
| 227 | * Reserve the first word in scratchpad for communicating |
| 228 | * with the boot ROM. A pointer to a data structure |
| 229 | * describing the boot process can be stored there, |
| 230 | * cf. OMAP34xx TRM, Initialization / Software Booting |
| 231 | * Configuration. |
| 232 | * |
| 233 | * XXX This should use some omap_ctrl_writel()-type function |
| 234 | */ |
| 235 | __raw_writel(l, OMAP2_L4_IO_ADDRESS(OMAP343X_SCRATCHPAD + 4)); |
| 236 | } |
| 237 | |
| 238 | #endif |
| 239 | |
Omar Ramirez Luna | 90f1380 | 2012-06-18 16:18:09 -0600 | [diff] [blame] | 240 | /** |
| 241 | * omap_ctrl_write_dsp_boot_addr - set boot address for a remote processor |
| 242 | * @bootaddr: physical address of the boot loader |
| 243 | * |
| 244 | * Set boot address for the boot loader of a supported processor |
| 245 | * when a power ON sequence occurs. |
| 246 | */ |
| 247 | void omap_ctrl_write_dsp_boot_addr(u32 bootaddr) |
| 248 | { |
| 249 | u32 offset = cpu_is_omap243x() ? OMAP243X_CONTROL_IVA2_BOOTADDR : |
| 250 | cpu_is_omap34xx() ? OMAP343X_CONTROL_IVA2_BOOTADDR : |
| 251 | cpu_is_omap44xx() ? OMAP4_CTRL_MODULE_CORE_DSP_BOOTADDR : |
| 252 | 0; |
| 253 | |
| 254 | if (!offset) { |
| 255 | pr_err("%s: unsupported omap type\n", __func__); |
| 256 | return; |
| 257 | } |
| 258 | |
| 259 | omap_ctrl_writel(bootaddr, offset); |
| 260 | } |
| 261 | |
| 262 | /** |
| 263 | * omap_ctrl_write_dsp_boot_mode - set boot mode for a remote processor |
| 264 | * @bootmode: 8-bit value to pass to some boot code |
| 265 | * |
| 266 | * Sets boot mode for the boot loader of a supported processor |
| 267 | * when a power ON sequence occurs. |
| 268 | */ |
| 269 | void omap_ctrl_write_dsp_boot_mode(u8 bootmode) |
| 270 | { |
| 271 | u32 offset = cpu_is_omap243x() ? OMAP243X_CONTROL_IVA2_BOOTMOD : |
| 272 | cpu_is_omap34xx() ? OMAP343X_CONTROL_IVA2_BOOTMOD : |
| 273 | 0; |
| 274 | |
| 275 | if (!offset) { |
| 276 | pr_err("%s: unsupported omap type\n", __func__); |
| 277 | return; |
| 278 | } |
| 279 | |
| 280 | omap_ctrl_writel(bootmode, offset); |
| 281 | } |
| 282 | |
Rajendra Nayak | c96631e | 2008-09-26 17:49:02 +0530 | [diff] [blame] | 283 | #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM) |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 284 | /* |
| 285 | * Clears the scratchpad contents in case of cold boot- |
| 286 | * called during bootup |
| 287 | */ |
| 288 | void omap3_clear_scratchpad_contents(void) |
| 289 | { |
| 290 | u32 max_offset = OMAP343X_SCRATCHPAD_ROM_OFFSET; |
Manjunath Kondaiah G | 4d63bc1 | 2010-10-08 09:56:11 -0700 | [diff] [blame] | 291 | void __iomem *v_addr; |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 292 | u32 offset = 0; |
| 293 | v_addr = OMAP2_L4_IO_ADDRESS(OMAP343X_SCRATCHPAD_ROM); |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 294 | if (omap2_prm_read_mod_reg(OMAP3430_GR_MOD, OMAP3_PRM_RSTST_OFFSET) & |
Paul Walmsley | 2bc4ef7 | 2010-05-18 18:47:24 -0600 | [diff] [blame] | 295 | OMAP3430_GLOBAL_COLD_RST_MASK) { |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 296 | for ( ; offset <= max_offset; offset += 0x4) |
| 297 | __raw_writel(0x0, (v_addr + offset)); |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 298 | omap2_prm_set_mod_reg_bits(OMAP3430_GLOBAL_COLD_RST_MASK, |
| 299 | OMAP3430_GR_MOD, |
| 300 | OMAP3_PRM_RSTST_OFFSET); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 301 | } |
| 302 | } |
| 303 | |
| 304 | /* Populate the scratchpad structure with restore structure */ |
| 305 | void omap3_save_scratchpad_contents(void) |
| 306 | { |
Manjunath Kondaiah G | 4d63bc1 | 2010-10-08 09:56:11 -0700 | [diff] [blame] | 307 | void __iomem *scratchpad_address; |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 308 | u32 arm_context_addr; |
| 309 | struct omap3_scratchpad scratchpad_contents; |
| 310 | struct omap3_scratchpad_prcm_block prcm_block_contents; |
| 311 | struct omap3_scratchpad_sdrc_block sdrc_block_contents; |
| 312 | |
Jean Pihet | f7dfe3d | 2010-12-18 16:44:45 +0100 | [diff] [blame] | 313 | /* |
| 314 | * Populate the Scratchpad contents |
| 315 | * |
| 316 | * The "get_*restore_pointer" functions are used to provide a |
| 317 | * physical restore address where the ROM code jumps while waking |
| 318 | * up from MPU OFF/OSWR state. |
| 319 | * The restore pointer is stored into the scratchpad. |
| 320 | */ |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 321 | scratchpad_contents.boot_config_ptr = 0x0; |
Nishanth Menon | 458e999 | 2010-12-20 14:05:06 -0600 | [diff] [blame] | 322 | if (cpu_is_omap3630()) |
| 323 | scratchpad_contents.public_restore_ptr = |
Kevin Hilman | 14c79bb | 2011-06-23 17:16:14 -0700 | [diff] [blame] | 324 | virt_to_phys(omap3_restore_3630); |
Nishanth Menon | 458e999 | 2010-12-20 14:05:06 -0600 | [diff] [blame] | 325 | else if (omap_rev() != OMAP3430_REV_ES3_0 && |
Tero Kristo | 0795a75 | 2008-10-13 17:58:50 +0300 | [diff] [blame] | 326 | omap_rev() != OMAP3430_REV_ES3_1) |
| 327 | scratchpad_contents.public_restore_ptr = |
Kevin Hilman | 14c79bb | 2011-06-23 17:16:14 -0700 | [diff] [blame] | 328 | virt_to_phys(omap3_restore); |
Tero Kristo | 0795a75 | 2008-10-13 17:58:50 +0300 | [diff] [blame] | 329 | else |
| 330 | scratchpad_contents.public_restore_ptr = |
Kevin Hilman | 14c79bb | 2011-06-23 17:16:14 -0700 | [diff] [blame] | 331 | virt_to_phys(omap3_restore_es3); |
| 332 | |
Tero Kristo | 27d59a4 | 2008-10-13 13:15:00 +0300 | [diff] [blame] | 333 | if (omap_type() == OMAP2_DEVICE_TYPE_GP) |
| 334 | scratchpad_contents.secure_ram_restore_ptr = 0x0; |
| 335 | else |
| 336 | scratchpad_contents.secure_ram_restore_ptr = |
| 337 | (u32) __pa(omap3_secure_ram_storage); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 338 | scratchpad_contents.sdrc_module_semaphore = 0x0; |
| 339 | scratchpad_contents.prcm_block_offset = 0x2C; |
| 340 | scratchpad_contents.sdrc_block_offset = 0x64; |
| 341 | |
| 342 | /* Populate the PRCM block contents */ |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 343 | prcm_block_contents.prm_clksrc_ctrl = |
| 344 | omap2_prm_read_mod_reg(OMAP3430_GR_MOD, |
| 345 | OMAP3_PRM_CLKSRC_CTRL_OFFSET); |
| 346 | prcm_block_contents.prm_clksel = |
| 347 | omap2_prm_read_mod_reg(OMAP3430_CCR_MOD, |
| 348 | OMAP3_PRM_CLKSEL_OFFSET); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 349 | prcm_block_contents.cm_clksel_core = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 350 | omap2_cm_read_mod_reg(CORE_MOD, CM_CLKSEL); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 351 | prcm_block_contents.cm_clksel_wkup = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 352 | omap2_cm_read_mod_reg(WKUP_MOD, CM_CLKSEL); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 353 | prcm_block_contents.cm_clken_pll = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 354 | omap2_cm_read_mod_reg(PLL_MOD, CM_CLKEN); |
Eduardo Valentin | a8ae645 | 2011-04-13 18:21:07 +0300 | [diff] [blame] | 355 | /* |
| 356 | * As per erratum i671, ROM code does not respect the PER DPLL |
| 357 | * programming scheme if CM_AUTOIDLE_PLL..AUTO_PERIPH_DPLL == 1. |
| 358 | * Then, in anycase, clear these bits to avoid extra latencies. |
| 359 | */ |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 360 | prcm_block_contents.cm_autoidle_pll = |
Eduardo Valentin | a8ae645 | 2011-04-13 18:21:07 +0300 | [diff] [blame] | 361 | omap2_cm_read_mod_reg(PLL_MOD, CM_AUTOIDLE) & |
| 362 | ~OMAP3430_AUTO_PERIPH_DPLL_MASK; |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 363 | prcm_block_contents.cm_clksel1_pll = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 364 | omap2_cm_read_mod_reg(PLL_MOD, OMAP3430_CM_CLKSEL1_PLL); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 365 | prcm_block_contents.cm_clksel2_pll = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 366 | omap2_cm_read_mod_reg(PLL_MOD, OMAP3430_CM_CLKSEL2_PLL); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 367 | prcm_block_contents.cm_clksel3_pll = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 368 | omap2_cm_read_mod_reg(PLL_MOD, OMAP3430_CM_CLKSEL3); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 369 | prcm_block_contents.cm_clken_pll_mpu = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 370 | omap2_cm_read_mod_reg(MPU_MOD, OMAP3430_CM_CLKEN_PLL); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 371 | prcm_block_contents.cm_autoidle_pll_mpu = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 372 | omap2_cm_read_mod_reg(MPU_MOD, OMAP3430_CM_AUTOIDLE_PLL); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 373 | prcm_block_contents.cm_clksel1_pll_mpu = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 374 | omap2_cm_read_mod_reg(MPU_MOD, OMAP3430_CM_CLKSEL1_PLL); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 375 | prcm_block_contents.cm_clksel2_pll_mpu = |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 376 | omap2_cm_read_mod_reg(MPU_MOD, OMAP3430_CM_CLKSEL2_PLL); |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 377 | prcm_block_contents.prcm_block_size = 0x0; |
| 378 | |
| 379 | /* Populate the SDRC block contents */ |
| 380 | sdrc_block_contents.sysconfig = |
| 381 | (sdrc_read_reg(SDRC_SYSCONFIG) & 0xFFFF); |
| 382 | sdrc_block_contents.cs_cfg = |
| 383 | (sdrc_read_reg(SDRC_CS_CFG) & 0xFFFF); |
| 384 | sdrc_block_contents.sharing = |
| 385 | (sdrc_read_reg(SDRC_SHARING) & 0xFFFF); |
| 386 | sdrc_block_contents.err_type = |
| 387 | (sdrc_read_reg(SDRC_ERR_TYPE) & 0xFFFF); |
| 388 | sdrc_block_contents.dll_a_ctrl = sdrc_read_reg(SDRC_DLLA_CTRL); |
| 389 | sdrc_block_contents.dll_b_ctrl = 0x0; |
Rajendra Nayak | f265dc4 | 2009-06-09 22:30:41 +0530 | [diff] [blame] | 390 | /* |
| 391 | * Due to a OMAP3 errata (1.142), on EMU/HS devices SRDC should |
| 392 | * be programed to issue automatic self refresh on timeout |
| 393 | * of AUTO_CNT = 1 prior to any transition to OFF mode. |
| 394 | */ |
| 395 | if ((omap_type() != OMAP2_DEVICE_TYPE_GP) |
| 396 | && (omap_rev() >= OMAP3430_REV_ES3_0)) |
| 397 | sdrc_block_contents.power = (sdrc_read_reg(SDRC_POWER) & |
| 398 | ~(SDRC_POWER_AUTOCOUNT_MASK| |
| 399 | SDRC_POWER_CLKCTRL_MASK)) | |
| 400 | (1 << SDRC_POWER_AUTOCOUNT_SHIFT) | |
| 401 | SDRC_SELF_REFRESH_ON_AUTOCOUNT; |
| 402 | else |
| 403 | sdrc_block_contents.power = sdrc_read_reg(SDRC_POWER); |
| 404 | |
Rajendra Nayak | 8014078 | 2008-09-26 17:48:46 +0530 | [diff] [blame] | 405 | sdrc_block_contents.cs_0 = 0x0; |
| 406 | sdrc_block_contents.mcfg_0 = sdrc_read_reg(SDRC_MCFG_0); |
| 407 | sdrc_block_contents.mr_0 = (sdrc_read_reg(SDRC_MR_0) & 0xFFFF); |
| 408 | sdrc_block_contents.emr_1_0 = 0x0; |
| 409 | sdrc_block_contents.emr_2_0 = 0x0; |
| 410 | sdrc_block_contents.emr_3_0 = 0x0; |
| 411 | sdrc_block_contents.actim_ctrla_0 = |
| 412 | sdrc_read_reg(SDRC_ACTIM_CTRL_A_0); |
| 413 | sdrc_block_contents.actim_ctrlb_0 = |
| 414 | sdrc_read_reg(SDRC_ACTIM_CTRL_B_0); |
| 415 | sdrc_block_contents.rfr_ctrl_0 = |
| 416 | sdrc_read_reg(SDRC_RFR_CTRL_0); |
| 417 | sdrc_block_contents.cs_1 = 0x0; |
| 418 | sdrc_block_contents.mcfg_1 = sdrc_read_reg(SDRC_MCFG_1); |
| 419 | sdrc_block_contents.mr_1 = sdrc_read_reg(SDRC_MR_1) & 0xFFFF; |
| 420 | sdrc_block_contents.emr_1_1 = 0x0; |
| 421 | sdrc_block_contents.emr_2_1 = 0x0; |
| 422 | sdrc_block_contents.emr_3_1 = 0x0; |
| 423 | sdrc_block_contents.actim_ctrla_1 = |
| 424 | sdrc_read_reg(SDRC_ACTIM_CTRL_A_1); |
| 425 | sdrc_block_contents.actim_ctrlb_1 = |
| 426 | sdrc_read_reg(SDRC_ACTIM_CTRL_B_1); |
| 427 | sdrc_block_contents.rfr_ctrl_1 = |
| 428 | sdrc_read_reg(SDRC_RFR_CTRL_1); |
| 429 | sdrc_block_contents.dcdl_1_ctrl = 0x0; |
| 430 | sdrc_block_contents.dcdl_2_ctrl = 0x0; |
| 431 | sdrc_block_contents.flags = 0x0; |
| 432 | sdrc_block_contents.block_size = 0x0; |
| 433 | |
| 434 | arm_context_addr = virt_to_phys(omap3_arm_context); |
| 435 | |
| 436 | /* Copy all the contents to the scratchpad location */ |
| 437 | scratchpad_address = OMAP2_L4_IO_ADDRESS(OMAP343X_SCRATCHPAD); |
| 438 | memcpy_toio(scratchpad_address, &scratchpad_contents, |
| 439 | sizeof(scratchpad_contents)); |
| 440 | /* Scratchpad contents being 32 bits, a divide by 4 done here */ |
| 441 | memcpy_toio(scratchpad_address + |
| 442 | scratchpad_contents.prcm_block_offset, |
| 443 | &prcm_block_contents, sizeof(prcm_block_contents)); |
| 444 | memcpy_toio(scratchpad_address + |
| 445 | scratchpad_contents.sdrc_block_offset, |
| 446 | &sdrc_block_contents, sizeof(sdrc_block_contents)); |
| 447 | /* |
| 448 | * Copies the address of the location in SDRAM where ARM |
| 449 | * registers get saved during a MPU OFF transition. |
| 450 | */ |
| 451 | memcpy_toio(scratchpad_address + |
| 452 | scratchpad_contents.sdrc_block_offset + |
| 453 | sizeof(sdrc_block_contents), &arm_context_addr, 4); |
| 454 | } |
| 455 | |
Rajendra Nayak | c96631e | 2008-09-26 17:49:02 +0530 | [diff] [blame] | 456 | void omap3_control_save_context(void) |
| 457 | { |
| 458 | control_context.sysconfig = omap_ctrl_readl(OMAP2_CONTROL_SYSCONFIG); |
| 459 | control_context.devconf0 = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0); |
| 460 | control_context.mem_dftrw0 = |
| 461 | omap_ctrl_readl(OMAP343X_CONTROL_MEM_DFTRW0); |
| 462 | control_context.mem_dftrw1 = |
| 463 | omap_ctrl_readl(OMAP343X_CONTROL_MEM_DFTRW1); |
| 464 | control_context.msuspendmux_0 = |
| 465 | omap_ctrl_readl(OMAP2_CONTROL_MSUSPENDMUX_0); |
| 466 | control_context.msuspendmux_1 = |
| 467 | omap_ctrl_readl(OMAP2_CONTROL_MSUSPENDMUX_1); |
| 468 | control_context.msuspendmux_2 = |
| 469 | omap_ctrl_readl(OMAP2_CONTROL_MSUSPENDMUX_2); |
| 470 | control_context.msuspendmux_3 = |
| 471 | omap_ctrl_readl(OMAP2_CONTROL_MSUSPENDMUX_3); |
| 472 | control_context.msuspendmux_4 = |
| 473 | omap_ctrl_readl(OMAP2_CONTROL_MSUSPENDMUX_4); |
| 474 | control_context.msuspendmux_5 = |
| 475 | omap_ctrl_readl(OMAP2_CONTROL_MSUSPENDMUX_5); |
| 476 | control_context.sec_ctrl = omap_ctrl_readl(OMAP2_CONTROL_SEC_CTRL); |
| 477 | control_context.devconf1 = omap_ctrl_readl(OMAP343X_CONTROL_DEVCONF1); |
| 478 | control_context.csirxfe = omap_ctrl_readl(OMAP343X_CONTROL_CSIRXFE); |
| 479 | control_context.iva2_bootaddr = |
| 480 | omap_ctrl_readl(OMAP343X_CONTROL_IVA2_BOOTADDR); |
| 481 | control_context.iva2_bootmod = |
| 482 | omap_ctrl_readl(OMAP343X_CONTROL_IVA2_BOOTMOD); |
| 483 | control_context.debobs_0 = omap_ctrl_readl(OMAP343X_CONTROL_DEBOBS(0)); |
| 484 | control_context.debobs_1 = omap_ctrl_readl(OMAP343X_CONTROL_DEBOBS(1)); |
| 485 | control_context.debobs_2 = omap_ctrl_readl(OMAP343X_CONTROL_DEBOBS(2)); |
| 486 | control_context.debobs_3 = omap_ctrl_readl(OMAP343X_CONTROL_DEBOBS(3)); |
| 487 | control_context.debobs_4 = omap_ctrl_readl(OMAP343X_CONTROL_DEBOBS(4)); |
| 488 | control_context.debobs_5 = omap_ctrl_readl(OMAP343X_CONTROL_DEBOBS(5)); |
| 489 | control_context.debobs_6 = omap_ctrl_readl(OMAP343X_CONTROL_DEBOBS(6)); |
| 490 | control_context.debobs_7 = omap_ctrl_readl(OMAP343X_CONTROL_DEBOBS(7)); |
| 491 | control_context.debobs_8 = omap_ctrl_readl(OMAP343X_CONTROL_DEBOBS(8)); |
| 492 | control_context.prog_io0 = omap_ctrl_readl(OMAP343X_CONTROL_PROG_IO0); |
| 493 | control_context.prog_io1 = omap_ctrl_readl(OMAP343X_CONTROL_PROG_IO1); |
| 494 | control_context.dss_dpll_spreading = |
| 495 | omap_ctrl_readl(OMAP343X_CONTROL_DSS_DPLL_SPREADING); |
| 496 | control_context.core_dpll_spreading = |
| 497 | omap_ctrl_readl(OMAP343X_CONTROL_CORE_DPLL_SPREADING); |
| 498 | control_context.per_dpll_spreading = |
| 499 | omap_ctrl_readl(OMAP343X_CONTROL_PER_DPLL_SPREADING); |
| 500 | control_context.usbhost_dpll_spreading = |
| 501 | omap_ctrl_readl(OMAP343X_CONTROL_USBHOST_DPLL_SPREADING); |
| 502 | control_context.pbias_lite = |
| 503 | omap_ctrl_readl(OMAP343X_CONTROL_PBIAS_LITE); |
| 504 | control_context.temp_sensor = |
| 505 | omap_ctrl_readl(OMAP343X_CONTROL_TEMP_SENSOR); |
| 506 | control_context.sramldo4 = omap_ctrl_readl(OMAP343X_CONTROL_SRAMLDO4); |
| 507 | control_context.sramldo5 = omap_ctrl_readl(OMAP343X_CONTROL_SRAMLDO5); |
| 508 | control_context.csi = omap_ctrl_readl(OMAP343X_CONTROL_CSI); |
Paul Walmsley | f5f9d13 | 2010-12-21 15:30:53 -0700 | [diff] [blame] | 509 | control_context.padconf_sys_nirq = |
| 510 | omap_ctrl_readl(OMAP343X_CONTROL_PADCONF_SYSNIRQ); |
Rajendra Nayak | c96631e | 2008-09-26 17:49:02 +0530 | [diff] [blame] | 511 | return; |
| 512 | } |
| 513 | |
| 514 | void omap3_control_restore_context(void) |
| 515 | { |
| 516 | omap_ctrl_writel(control_context.sysconfig, OMAP2_CONTROL_SYSCONFIG); |
| 517 | omap_ctrl_writel(control_context.devconf0, OMAP2_CONTROL_DEVCONF0); |
| 518 | omap_ctrl_writel(control_context.mem_dftrw0, |
| 519 | OMAP343X_CONTROL_MEM_DFTRW0); |
| 520 | omap_ctrl_writel(control_context.mem_dftrw1, |
| 521 | OMAP343X_CONTROL_MEM_DFTRW1); |
| 522 | omap_ctrl_writel(control_context.msuspendmux_0, |
| 523 | OMAP2_CONTROL_MSUSPENDMUX_0); |
| 524 | omap_ctrl_writel(control_context.msuspendmux_1, |
| 525 | OMAP2_CONTROL_MSUSPENDMUX_1); |
| 526 | omap_ctrl_writel(control_context.msuspendmux_2, |
| 527 | OMAP2_CONTROL_MSUSPENDMUX_2); |
| 528 | omap_ctrl_writel(control_context.msuspendmux_3, |
| 529 | OMAP2_CONTROL_MSUSPENDMUX_3); |
| 530 | omap_ctrl_writel(control_context.msuspendmux_4, |
| 531 | OMAP2_CONTROL_MSUSPENDMUX_4); |
| 532 | omap_ctrl_writel(control_context.msuspendmux_5, |
| 533 | OMAP2_CONTROL_MSUSPENDMUX_5); |
| 534 | omap_ctrl_writel(control_context.sec_ctrl, OMAP2_CONTROL_SEC_CTRL); |
| 535 | omap_ctrl_writel(control_context.devconf1, OMAP343X_CONTROL_DEVCONF1); |
| 536 | omap_ctrl_writel(control_context.csirxfe, OMAP343X_CONTROL_CSIRXFE); |
| 537 | omap_ctrl_writel(control_context.iva2_bootaddr, |
| 538 | OMAP343X_CONTROL_IVA2_BOOTADDR); |
| 539 | omap_ctrl_writel(control_context.iva2_bootmod, |
| 540 | OMAP343X_CONTROL_IVA2_BOOTMOD); |
| 541 | omap_ctrl_writel(control_context.debobs_0, OMAP343X_CONTROL_DEBOBS(0)); |
| 542 | omap_ctrl_writel(control_context.debobs_1, OMAP343X_CONTROL_DEBOBS(1)); |
| 543 | omap_ctrl_writel(control_context.debobs_2, OMAP343X_CONTROL_DEBOBS(2)); |
| 544 | omap_ctrl_writel(control_context.debobs_3, OMAP343X_CONTROL_DEBOBS(3)); |
| 545 | omap_ctrl_writel(control_context.debobs_4, OMAP343X_CONTROL_DEBOBS(4)); |
| 546 | omap_ctrl_writel(control_context.debobs_5, OMAP343X_CONTROL_DEBOBS(5)); |
| 547 | omap_ctrl_writel(control_context.debobs_6, OMAP343X_CONTROL_DEBOBS(6)); |
| 548 | omap_ctrl_writel(control_context.debobs_7, OMAP343X_CONTROL_DEBOBS(7)); |
| 549 | omap_ctrl_writel(control_context.debobs_8, OMAP343X_CONTROL_DEBOBS(8)); |
| 550 | omap_ctrl_writel(control_context.prog_io0, OMAP343X_CONTROL_PROG_IO0); |
| 551 | omap_ctrl_writel(control_context.prog_io1, OMAP343X_CONTROL_PROG_IO1); |
| 552 | omap_ctrl_writel(control_context.dss_dpll_spreading, |
| 553 | OMAP343X_CONTROL_DSS_DPLL_SPREADING); |
| 554 | omap_ctrl_writel(control_context.core_dpll_spreading, |
| 555 | OMAP343X_CONTROL_CORE_DPLL_SPREADING); |
| 556 | omap_ctrl_writel(control_context.per_dpll_spreading, |
| 557 | OMAP343X_CONTROL_PER_DPLL_SPREADING); |
| 558 | omap_ctrl_writel(control_context.usbhost_dpll_spreading, |
| 559 | OMAP343X_CONTROL_USBHOST_DPLL_SPREADING); |
| 560 | omap_ctrl_writel(control_context.pbias_lite, |
| 561 | OMAP343X_CONTROL_PBIAS_LITE); |
| 562 | omap_ctrl_writel(control_context.temp_sensor, |
| 563 | OMAP343X_CONTROL_TEMP_SENSOR); |
| 564 | omap_ctrl_writel(control_context.sramldo4, OMAP343X_CONTROL_SRAMLDO4); |
| 565 | omap_ctrl_writel(control_context.sramldo5, OMAP343X_CONTROL_SRAMLDO5); |
| 566 | omap_ctrl_writel(control_context.csi, OMAP343X_CONTROL_CSI); |
Paul Walmsley | f5f9d13 | 2010-12-21 15:30:53 -0700 | [diff] [blame] | 567 | omap_ctrl_writel(control_context.padconf_sys_nirq, |
| 568 | OMAP343X_CONTROL_PADCONF_SYSNIRQ); |
Rajendra Nayak | c96631e | 2008-09-26 17:49:02 +0530 | [diff] [blame] | 569 | return; |
| 570 | } |
Nishanth Menon | 458e999 | 2010-12-20 14:05:06 -0600 | [diff] [blame] | 571 | |
| 572 | void omap3630_ctrl_disable_rta(void) |
| 573 | { |
| 574 | if (!cpu_is_omap3630()) |
| 575 | return; |
| 576 | omap_ctrl_writel(OMAP36XX_RTA_DISABLE, OMAP36XX_CONTROL_MEM_RTA_CTRL); |
| 577 | } |
| 578 | |
Paul Walmsley | 596efe4 | 2010-12-21 21:05:16 -0700 | [diff] [blame] | 579 | /** |
| 580 | * omap3_ctrl_save_padconf - save padconf registers to scratchpad RAM |
| 581 | * |
| 582 | * Tell the SCM to start saving the padconf registers, then wait for |
| 583 | * the process to complete. Returns 0 unconditionally, although it |
| 584 | * should also eventually be able to return -ETIMEDOUT, if the save |
| 585 | * does not complete. |
| 586 | * |
| 587 | * XXX This function is missing a timeout. What should it be? |
| 588 | */ |
| 589 | int omap3_ctrl_save_padconf(void) |
| 590 | { |
| 591 | u32 cpo; |
| 592 | |
| 593 | /* Save the padconf registers */ |
| 594 | cpo = omap_ctrl_readl(OMAP343X_CONTROL_PADCONF_OFF); |
| 595 | cpo |= START_PADCONF_SAVE; |
| 596 | omap_ctrl_writel(cpo, OMAP343X_CONTROL_PADCONF_OFF); |
| 597 | |
| 598 | /* wait for the save to complete */ |
| 599 | while (!(omap_ctrl_readl(OMAP343X_CONTROL_GENERAL_PURPOSE_STATUS) |
| 600 | & PADCONF_SAVE_DONE)) |
| 601 | udelay(1); |
| 602 | |
| 603 | return 0; |
| 604 | } |
| 605 | |
Rajendra Nayak | c96631e | 2008-09-26 17:49:02 +0530 | [diff] [blame] | 606 | #endif /* CONFIG_ARCH_OMAP3 && CONFIG_PM */ |