blob: fe0865bd64cf7dab3cbf08ec9055e4203a8c3666 [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 */
Tony Lindgrenb824efa2006-04-02 17:46:20 +010020#include <linux/module.h>
21#include <linux/init.h>
22#include <linux/clk.h>
Tony Lindgrena58caad2008-07-03 12:24:44 +030023#include <linux/io.h>
Paul Walmsley72350b22009-07-24 19:44:03 -060024#include <linux/delay.h>
Tony Lindgrenb824efa2006-04-02 17:46:20 +010025
Tony Lindgrence491cf2009-10-20 09:40:47 -070026#include <plat/common.h>
27#include <plat/prcm.h>
Rajendra Nayakc171a252008-09-26 17:48:31 +053028#include <plat/irqs.h>
Paul Walmsley44595982008-03-18 10:04:51 +020029
Tony Lindgrena58caad2008-07-03 12:24:44 +030030#include "clock.h"
Paul Walmsleyfeec1272010-01-26 20:13:11 -070031#include "clock2xxx.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070032#include "cm2xxx_3xxx.h"
33#include "cm44xx.h"
34#include "prm2xxx_3xxx.h"
Paul Walmsleyd198b512010-12-21 15:30:54 -070035#include "prm44xx.h"
Paul Walmsley2ace8312010-12-21 21:05:14 -070036#include "prcm44xx.h"
Paul Walmsley44595982008-03-18 10:04:51 +020037#include "prm-regbits-24xx.h"
Rajeev Kulkarniff4d3e12010-09-21 10:34:09 -060038#include "prm-regbits-44xx.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060039#include "control.h"
Tony Lindgrenb824efa2006-04-02 17:46:20 +010040
Paul Walmsley59fb6592010-12-21 15:30:55 -070041void __iomem *prm_base;
42void __iomem *cm_base;
43void __iomem *cm2_base;
Tony Lindgrena58caad2008-07-03 12:24:44 +030044
Paul Walmsley72350b22009-07-24 19:44:03 -060045#define MAX_MODULE_ENABLE_WAIT 100000
46
Tony Lindgrenb824efa2006-04-02 17:46:20 +010047u32 omap_prcm_get_reset_sources(void)
48{
Tony Lindgrenff00fcc2008-07-03 12:24:44 +030049 /* XXX This presumably needs modification for 34XX */
Rajendra Nayak766d3052010-03-31 04:16:30 -060050 if (cpu_is_omap24xx() || cpu_is_omap34xx())
Abhijit Pagare37903002010-01-26 20:12:51 -070051 return prm_read_mod_reg(WKUP_MOD, OMAP2_RM_RSTST) & 0x7f;
52 if (cpu_is_omap44xx())
53 return prm_read_mod_reg(WKUP_MOD, OMAP4_RM_RSTST) & 0x7f;
Kevin Hilman0cc93142010-02-24 12:05:56 -070054
55 return 0;
Tony Lindgrenb824efa2006-04-02 17:46:20 +010056}
57EXPORT_SYMBOL(omap_prcm_get_reset_sources);
58
59/* Resets clock rates and reboots the system. Only called from system.h */
Aaro Koskinen29b9a212010-02-26 10:25:28 +000060void omap_prcm_arch_reset(char mode, const char *cmd)
Tony Lindgrenb824efa2006-04-02 17:46:20 +010061{
Kevin Hilman0cc93142010-02-24 12:05:56 -070062 s16 prcm_offs = 0;
Paul Walmsley44595982008-03-18 10:04:51 +020063
Paul Walmsleyfeec1272010-01-26 20:13:11 -070064 if (cpu_is_omap24xx()) {
65 omap2xxx_clk_prepare_for_reboot();
66
Tony Lindgrenff00fcc2008-07-03 12:24:44 +030067 prcm_offs = WKUP_MOD;
Paul Walmsleyfeec1272010-01-26 20:13:11 -070068 } else if (cpu_is_omap34xx()) {
Tony Lindgrenff00fcc2008-07-03 12:24:44 +030069 prcm_offs = OMAP3430_GR_MOD;
Paul Walmsley166353b2010-12-21 20:01:21 -070070 omap3_ctrl_write_boot_mode((cmd ? (u8)*cmd : 0));
Abhijit Pagare37903002010-01-26 20:12:51 -070071 } else if (cpu_is_omap44xx())
Paul Walmsleycdb54c42010-12-21 15:30:55 -070072 prcm_offs = OMAP4430_PRM_DEVICE_INST;
Abhijit Pagare37903002010-01-26 20:12:51 -070073 else
Tony Lindgrenff00fcc2008-07-03 12:24:44 +030074 WARN_ON(1);
75
Rajendra Nayak766d3052010-03-31 04:16:30 -060076 if (cpu_is_omap24xx() || cpu_is_omap34xx())
Paul Walmsley2fd0f752010-05-18 18:40:23 -060077 prm_set_mod_reg_bits(OMAP_RST_DPLL3_MASK, prcm_offs,
Abhijit Pagare37903002010-01-26 20:12:51 -070078 OMAP2_RM_RSTCTRL);
79 if (cpu_is_omap44xx())
Rajeev Kulkarniff4d3e12010-09-21 10:34:09 -060080 prm_set_mod_reg_bits(OMAP4430_RST_GLOBAL_WARM_SW_MASK,
81 prcm_offs, OMAP4_RM_RSTCTRL);
Tony Lindgrenb824efa2006-04-02 17:46:20 +010082}
Tony Lindgrena58caad2008-07-03 12:24:44 +030083
Paul Walmsley72350b22009-07-24 19:44:03 -060084/**
85 * omap2_cm_wait_idlest - wait for IDLEST bit to indicate module readiness
86 * @reg: physical address of module IDLEST register
87 * @mask: value to mask against to determine if the module is active
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070088 * @idlest: idle state indicator (0 or 1) for the clock
Paul Walmsley72350b22009-07-24 19:44:03 -060089 * @name: name of the clock (for printk)
90 *
91 * Returns 1 if the module indicated readiness in time, or 0 if it
92 * failed to enable in roughly MAX_MODULE_ENABLE_WAIT microseconds.
Paul Walmsley59fb6592010-12-21 15:30:55 -070093 *
94 * XXX This function is deprecated. It should be removed once the
95 * hwmod conversion is complete.
Paul Walmsley72350b22009-07-24 19:44:03 -060096 */
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -070097int omap2_cm_wait_idlest(void __iomem *reg, u32 mask, u8 idlest,
98 const char *name)
Paul Walmsley72350b22009-07-24 19:44:03 -060099{
100 int i = 0;
101 int ena = 0;
102
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700103 if (idlest)
Paul Walmsley72350b22009-07-24 19:44:03 -0600104 ena = 0;
105 else
Ranjith Lohithakshan419cc972010-02-24 12:05:54 -0700106 ena = mask;
Paul Walmsley72350b22009-07-24 19:44:03 -0600107
108 /* Wait for lock */
Paul Walmsley6f8b7ff2009-12-08 16:33:16 -0700109 omap_test_timeout(((__raw_readl(reg) & mask) == ena),
110 MAX_MODULE_ENABLE_WAIT, i);
Paul Walmsley72350b22009-07-24 19:44:03 -0600111
112 if (i < MAX_MODULE_ENABLE_WAIT)
113 pr_debug("cm: Module associated with clock %s ready after %d "
114 "loops\n", name, i);
115 else
116 pr_err("cm: Module associated with clock %s didn't enable in "
117 "%d tries\n", name, MAX_MODULE_ENABLE_WAIT);
118
119 return (i < MAX_MODULE_ENABLE_WAIT) ? 1 : 0;
120};
121
Tony Lindgrena58caad2008-07-03 12:24:44 +0300122void __init omap2_set_globals_prcm(struct omap_globals *omap2_globals)
123{
Santosh Shilimkarb7ebb102010-02-15 18:03:37 +0530124 /* Static mapping, never released */
125 if (omap2_globals->prm) {
126 prm_base = ioremap(omap2_globals->prm, SZ_8K);
127 WARN_ON(!prm_base);
128 }
129 if (omap2_globals->cm) {
130 cm_base = ioremap(omap2_globals->cm, SZ_8K);
131 WARN_ON(!cm_base);
132 }
133 if (omap2_globals->cm2) {
134 cm2_base = ioremap(omap2_globals->cm2, SZ_8K);
135 WARN_ON(!cm2_base);
136 }
Tony Lindgrena58caad2008-07-03 12:24:44 +0300137}