prcm.c 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * linux/arch/arm/mach-omap2/prcm.c
 *
 * OMAP 24xx Power Reset and Clock Management (PRCM) functions
 *
 * Copyright (C) 2005 Nokia Corporation
 *
 * Written by Tony Lindgren <tony.lindgren@nokia.com>
 *
10 11 12
 * Copyright (C) 2007 Texas Instruments, Inc.
 * Rajendra Nayak <rnayak@ti.com>
 *
13
 * Some pieces of code Copyright (C) 2005 Texas Instruments, Inc.
14
 * Upgraded with OMAP4 support by Abhijit Pagare <abhijitpagare@ti.com>
15 16 17 18 19
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
20 21

#include <linux/kernel.h>
22 23
#include <linux/init.h>
#include <linux/clk.h>
24
#include <linux/io.h>
25
#include <linux/delay.h>
26

27 28
#include <plat/common.h>
#include <plat/prcm.h>
29
#include <plat/irqs.h>
30

31
#include "clock.h"
32
#include "clock2xxx.h"
33 34
#include "cm2xxx_3xxx.h"
#include "prm2xxx_3xxx.h"
35
#include "prm44xx.h"
36
#include "prminst44xx.h"
37
#include "prm-regbits-24xx.h"
38
#include "prm-regbits-44xx.h"
39
#include "control.h"
40

41 42 43
void __iomem *prm_base;
void __iomem *cm_base;
void __iomem *cm2_base;
44

45 46
#define MAX_MODULE_ENABLE_WAIT		100000

47 48
u32 omap_prcm_get_reset_sources(void)
{
49
	/* XXX This presumably needs modification for 34XX */
50
	if (cpu_is_omap24xx() || cpu_is_omap34xx())
51
		return omap2_prm_read_mod_reg(WKUP_MOD, OMAP2_RM_RSTST) & 0x7f;
52
	if (cpu_is_omap44xx())
53
		return omap2_prm_read_mod_reg(WKUP_MOD, OMAP4_RM_RSTST) & 0x7f;
54 55

	return 0;
56 57 58 59
}
EXPORT_SYMBOL(omap_prcm_get_reset_sources);

/* Resets clock rates and reboots the system. Only called from system.h */
60
void omap_prcm_arch_reset(char mode, const char *cmd)
61
{
62
	s16 prcm_offs = 0;
63

64 65 66
	if (cpu_is_omap24xx()) {
		omap2xxx_clk_prepare_for_reboot();

67
		prcm_offs = WKUP_MOD;
68
	} else if (cpu_is_omap34xx()) {
69
		prcm_offs = OMAP3430_GR_MOD;
70
		omap3_ctrl_write_boot_mode((cmd ? (u8)*cmd : 0));
71 72 73
	} else if (cpu_is_omap44xx()) {
		omap4_prm_global_warm_sw_reset(); /* never returns */
	} else {
74
		WARN_ON(1);
75
	}
76

77
	/* XXX should be moved to some OMAP2/3 specific code */
78 79 80
	omap2_prm_set_mod_reg_bits(OMAP_RST_DPLL3_MASK, prcm_offs,
				   OMAP2_RM_RSTCTRL);
	omap2_prm_read_mod_reg(prcm_offs, OMAP2_RM_RSTCTRL); /* OCP barrier */
81
}
82

83 84 85 86
/**
 * omap2_cm_wait_idlest - wait for IDLEST bit to indicate module readiness
 * @reg: physical address of module IDLEST register
 * @mask: value to mask against to determine if the module is active
87
 * @idlest: idle state indicator (0 or 1) for the clock
88 89 90 91
 * @name: name of the clock (for printk)
 *
 * Returns 1 if the module indicated readiness in time, or 0 if it
 * failed to enable in roughly MAX_MODULE_ENABLE_WAIT microseconds.
92 93 94
 *
 * XXX This function is deprecated.  It should be removed once the
 * hwmod conversion is complete.
95
 */
96 97
int omap2_cm_wait_idlest(void __iomem *reg, u32 mask, u8 idlest,
				const char *name)
98 99 100 101
{
	int i = 0;
	int ena = 0;

102
	if (idlest)
103 104
		ena = 0;
	else
105
		ena = mask;
106 107

	/* Wait for lock */
108 109
	omap_test_timeout(((__raw_readl(reg) & mask) == ena),
			  MAX_MODULE_ENABLE_WAIT, i);
110 111 112 113 114 115 116 117 118 119 120

	if (i < MAX_MODULE_ENABLE_WAIT)
		pr_debug("cm: Module associated with clock %s ready after %d "
			 "loops\n", name, i);
	else
		pr_err("cm: Module associated with clock %s didn't enable in "
		       "%d tries\n", name, MAX_MODULE_ENABLE_WAIT);

	return (i < MAX_MODULE_ENABLE_WAIT) ? 1 : 0;
};

121 122
void __init omap2_set_globals_prcm(struct omap_globals *omap2_globals)
{
123 124 125 126 127 128 129 130 131 132 133 134 135
	/* Static mapping, never released */
	if (omap2_globals->prm) {
		prm_base = ioremap(omap2_globals->prm, SZ_8K);
		WARN_ON(!prm_base);
	}
	if (omap2_globals->cm) {
		cm_base = ioremap(omap2_globals->cm, SZ_8K);
		WARN_ON(!cm_base);
	}
	if (omap2_globals->cm2) {
		cm2_base = ioremap(omap2_globals->cm2, SZ_8K);
		WARN_ON(!cm2_base);
	}
136
}