blob: c35e5cea9f8f076a993a09b8eae63897a89e0146 [file] [log] [blame]
Tony Lindgrenb824efa2006-04-02 17:46:20 +01001/*
2 * linux/arch/arm/mach-omap2/prcm.c
3 *
4 * OMAP 24xx Power Reset and Clock Management (PRCM) functions
5 *
6 * Copyright (C) 2005 Nokia Corporation
7 *
8 * Written by Tony Lindgren <tony.lindgren@nokia.com>
9 *
Rajendra Nayakc171a252008-09-26 17:48:31 +053010 * Copyright (C) 2007 Texas Instruments, Inc.
11 * Rajendra Nayak <rnayak@ti.com>
12 *
Tony Lindgrenb824efa2006-04-02 17:46:20 +010013 * Some pieces of code Copyright (C) 2005 Texas Instruments, Inc.
Abhijit Pagare37903002010-01-26 20:12:51 -070014 * Upgraded with OMAP4 support by Abhijit Pagare <abhijitpagare@ti.com>
Tony Lindgrenb824efa2006-04-02 17:46:20 +010015 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation.
19 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070020
21#include <linux/kernel.h>
Tony Lindgrenb824efa2006-04-02 17:46:20 +010022#include <linux/init.h>
23#include <linux/clk.h>
Tony Lindgrena58caad2008-07-03 12:24:44 +030024#include <linux/io.h>
Paul Walmsley72350b22009-07-24 19:44:03 -060025#include <linux/delay.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040026#include <linux/export.h>
Tony Lindgrenb824efa2006-04-02 17:46:20 +010027
Russell King - ARM Linuxee54dba2011-01-27 16:39:45 -080028#include <mach/system.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010029#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070030#include <plat/prcm.h>
Rajendra Nayakc171a252008-09-26 17:48:31 +053031#include <plat/irqs.h>
Paul Walmsley44595982008-03-18 10:04:51 +020032
Tony Lindgrena58caad2008-07-03 12:24:44 +030033#include "clock.h"
Paul Walmsleyfeec1272010-01-26 20:13:11 -070034#include "clock2xxx.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070035#include "cm2xxx_3xxx.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070036#include "prm2xxx_3xxx.h"
Paul Walmsleyd198b512010-12-21 15:30:54 -070037#include "prm44xx.h"
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070038#include "prminst44xx.h"
Paul Walmsley44595982008-03-18 10:04:51 +020039#include "prm-regbits-24xx.h"
Rajeev Kulkarniff4d3e12010-09-21 10:34:09 -060040#include "prm-regbits-44xx.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060041#include "control.h"
Tony Lindgrenb824efa2006-04-02 17:46:20 +010042
Paul Walmsley59fb6592010-12-21 15:30:55 -070043void __iomem *prm_base;
44void __iomem *cm_base;
45void __iomem *cm2_base;
Tony Lindgrena58caad2008-07-03 12:24:44 +030046
Paul Walmsley72350b22009-07-24 19:44:03 -060047#define MAX_MODULE_ENABLE_WAIT 100000
48
Tony Lindgrenb824efa2006-04-02 17:46:20 +010049u32 omap_prcm_get_reset_sources(void)
50{
Tony Lindgrenff00fcc2008-07-03 12:24:44 +030051 /* XXX This presumably needs modification for 34XX */
Rajendra Nayak766d3052010-03-31 04:16:30 -060052 if (cpu_is_omap24xx() || cpu_is_omap34xx())
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070053 return omap2_prm_read_mod_reg(WKUP_MOD, OMAP2_RM_RSTST) & 0x7f;
Abhijit Pagare37903002010-01-26 20:12:51 -070054 if (cpu_is_omap44xx())
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070055 return omap2_prm_read_mod_reg(WKUP_MOD, OMAP4_RM_RSTST) & 0x7f;
Kevin Hilman0cc93142010-02-24 12:05:56 -070056
57 return 0;
Tony Lindgrenb824efa2006-04-02 17:46:20 +010058}
59EXPORT_SYMBOL(omap_prcm_get_reset_sources);
60
61/* Resets clock rates and reboots the system. Only called from system.h */
Russell King - ARM Linuxee54dba2011-01-27 16:39:45 -080062static void omap_prcm_arch_reset(char mode, const char *cmd)
Tony Lindgrenb824efa2006-04-02 17:46:20 +010063{
Kevin Hilman0cc93142010-02-24 12:05:56 -070064 s16 prcm_offs = 0;
Paul Walmsley44595982008-03-18 10:04:51 +020065
Paul Walmsleyfeec1272010-01-26 20:13:11 -070066 if (cpu_is_omap24xx()) {
67 omap2xxx_clk_prepare_for_reboot();
68
Tony Lindgrenff00fcc2008-07-03 12:24:44 +030069 prcm_offs = WKUP_MOD;
Paul Walmsleyfeec1272010-01-26 20:13:11 -070070 } else if (cpu_is_omap34xx()) {
Tony Lindgrenff00fcc2008-07-03 12:24:44 +030071 prcm_offs = OMAP3430_GR_MOD;
Paul Walmsley166353b2010-12-21 20:01:21 -070072 omap3_ctrl_write_boot_mode((cmd ? (u8)*cmd : 0));
Paul Walmsleydac9a772010-12-21 21:05:14 -070073 } else if (cpu_is_omap44xx()) {
Benoit Coussone54433f2011-07-10 05:56:31 -060074 omap4_prminst_global_warm_sw_reset(); /* never returns */
Paul Walmsleydac9a772010-12-21 21:05:14 -070075 } else {
Tony Lindgrenff00fcc2008-07-03 12:24:44 +030076 WARN_ON(1);
Paul Walmsleydac9a772010-12-21 21:05:14 -070077 }
Tony Lindgrenff00fcc2008-07-03 12:24:44 +030078
Vishwanath BS9bf83912010-10-05 19:35:34 +053079 /*
80 * As per Errata i520, in some cases, user will not be able to
81 * access DDR memory after warm-reset.
82 * This situation occurs while the warm-reset happens during a read
83 * access to DDR memory. In that particular condition, DDR memory
84 * does not respond to a corrupted read command due to the warm
85 * reset occurrence but SDRC is waiting for read completion.
86 * SDRC is not sensitive to the warm reset, but the interconnect is
87 * reset on the fly, thus causing a misalignment between SDRC logic,
88 * interconnect logic and DDR memory state.
89 * WORKAROUND:
90 * Steps to perform before a Warm reset is trigged:
91 * 1. enable self-refresh on idle request
92 * 2. put SDRC in idle
93 * 3. wait until SDRC goes to idle
94 * 4. generate SW reset (Global SW reset)
95 *
96 * Steps to be performed after warm reset occurs (in bootloader):
97 * if HW warm reset is the source, apply below steps before any
98 * accesses to SDRAM:
99 * 1. Reset SMS and SDRC and wait till reset is complete
100 * 2. Re-initialize SMS, SDRC and memory
101 *
102 * NOTE: Above work around is required only if arch reset is implemented
103 * using Global SW reset(GLOBAL_SW_RST). DPLL3 reset does not need
104 * the WA since it resets SDRC as well as part of cold reset.
105 */
106
Paul Walmsleydac9a772010-12-21 21:05:14 -0700107 /* XXX should be moved to some OMAP2/3 specific code */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700108 omap2_prm_set_mod_reg_bits(OMAP_RST_DPLL3_MASK, prcm_offs,
109 OMAP2_RM_RSTCTRL);
110 omap2_prm_read_mod_reg(prcm_offs, OMAP2_RM_RSTCTRL); /* OCP barrier */
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100111}
Tony Lindgrena58caad2008-07-03 12:24:44 +0300112
Russell King - ARM Linuxee54dba2011-01-27 16:39:45 -0800113void (*arch_reset)(char, const char *) = omap_prcm_arch_reset;
114
Paul Walmsley72350b22009-07-24 19:44:03 -0600115/**
116 * omap2_cm_wait_idlest - wait for IDLEST bit to indicate module readiness
117 * @reg: physical address of module IDLEST register
118 * @mask: value to mask against to determine if the module is active
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700119 * @idlest: idle state indicator (0 or 1) for the clock
Paul Walmsley72350b22009-07-24 19:44:03 -0600120 * @name: name of the clock (for printk)
121 *
122 * Returns 1 if the module indicated readiness in time, or 0 if it
123 * failed to enable in roughly MAX_MODULE_ENABLE_WAIT microseconds.
Paul Walmsley59fb6592010-12-21 15:30:55 -0700124 *
125 * XXX This function is deprecated. It should be removed once the
126 * hwmod conversion is complete.
Paul Walmsley72350b22009-07-24 19:44:03 -0600127 */
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700128int omap2_cm_wait_idlest(void __iomem *reg, u32 mask, u8 idlest,
129 const char *name)
Paul Walmsley72350b22009-07-24 19:44:03 -0600130{
131 int i = 0;
132 int ena = 0;
133
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700134 if (idlest)
Paul Walmsley72350b22009-07-24 19:44:03 -0600135 ena = 0;
136 else
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700137 ena = mask;
Paul Walmsley72350b22009-07-24 19:44:03 -0600138
139 /* Wait for lock */
Paul Walmsley6f8b7ff2009-12-08 16:33:16 -0700140 omap_test_timeout(((__raw_readl(reg) & mask) == ena),
141 MAX_MODULE_ENABLE_WAIT, i);
Paul Walmsley72350b22009-07-24 19:44:03 -0600142
143 if (i < MAX_MODULE_ENABLE_WAIT)
144 pr_debug("cm: Module associated with clock %s ready after %d "
145 "loops\n", name, i);
146 else
147 pr_err("cm: Module associated with clock %s didn't enable in "
148 "%d tries\n", name, MAX_MODULE_ENABLE_WAIT);
149
150 return (i < MAX_MODULE_ENABLE_WAIT) ? 1 : 0;
151};
152
Tony Lindgrena58caad2008-07-03 12:24:44 +0300153void __init omap2_set_globals_prcm(struct omap_globals *omap2_globals)
154{
Tony Lindgren4c3cf902011-10-04 18:17:41 -0700155 if (omap2_globals->prm)
156 prm_base = omap2_globals->prm;
157 if (omap2_globals->cm)
158 cm_base = omap2_globals->cm;
159 if (omap2_globals->cm2)
160 cm2_base = omap2_globals->cm2;
Tony Lindgrena58caad2008-07-03 12:24:44 +0300161}