2009-09-03 20:14:02 +03:00
|
|
|
/*
|
|
|
|
* OMAP2/3 CM module functions
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Nokia Corporation
|
|
|
|
* Paul Walmsley
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
|
2009-12-08 16:33:16 -07:00
|
|
|
#include <plat/common.h>
|
|
|
|
|
2009-09-03 20:14:02 +03:00
|
|
|
#include "cm.h"
|
2010-12-21 15:30:55 -07:00
|
|
|
#include "cm2xxx_3xxx.h"
|
2009-09-03 20:14:02 +03:00
|
|
|
#include "cm-regbits-24xx.h"
|
|
|
|
#include "cm-regbits-34xx.h"
|
|
|
|
|
|
|
|
static const u8 cm_idlest_offs[] = {
|
|
|
|
CM_IDLEST1, CM_IDLEST2, OMAP2430_CM_IDLEST3
|
|
|
|
};
|
|
|
|
|
2010-12-21 15:30:55 -07:00
|
|
|
|
|
|
|
u32 cm_read_mod_reg(s16 module, u16 idx)
|
|
|
|
{
|
|
|
|
return __raw_readl(cm_base + module + idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cm_write_mod_reg(u32 val, s16 module, u16 idx)
|
|
|
|
{
|
|
|
|
__raw_writel(val, cm_base + module + idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read-modify-write a register in a CM module. Caller must lock */
|
|
|
|
u32 cm_rmw_mod_reg_bits(u32 mask, u32 bits, s16 module, s16 idx)
|
|
|
|
{
|
|
|
|
u32 v;
|
|
|
|
|
|
|
|
v = cm_read_mod_reg(module, idx);
|
|
|
|
v &= ~mask;
|
|
|
|
v |= bits;
|
|
|
|
cm_write_mod_reg(v, module, idx);
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 cm_set_mod_reg_bits(u32 bits, s16 module, s16 idx)
|
|
|
|
{
|
|
|
|
return cm_rmw_mod_reg_bits(bits, bits, module, idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 cm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx)
|
|
|
|
{
|
|
|
|
return cm_rmw_mod_reg_bits(bits, 0x0, module, idx);
|
|
|
|
}
|
|
|
|
|
2009-09-03 20:14:02 +03:00
|
|
|
/**
|
|
|
|
* omap2_cm_wait_idlest_ready - wait for a module to leave idle or standby
|
|
|
|
* @prcm_mod: PRCM module offset
|
|
|
|
* @idlest_id: CM_IDLESTx register ID (i.e., x = 1, 2, 3)
|
|
|
|
* @idlest_shift: shift of the bit in the CM_IDLEST* register to check
|
|
|
|
*
|
|
|
|
* XXX document
|
|
|
|
*/
|
|
|
|
int omap2_cm_wait_module_ready(s16 prcm_mod, u8 idlest_id, u8 idlest_shift)
|
|
|
|
{
|
|
|
|
int ena = 0, i = 0;
|
|
|
|
u8 cm_idlest_reg;
|
|
|
|
u32 mask;
|
|
|
|
|
|
|
|
if (!idlest_id || (idlest_id > ARRAY_SIZE(cm_idlest_offs)))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
cm_idlest_reg = cm_idlest_offs[idlest_id - 1];
|
|
|
|
|
2010-07-26 16:34:28 -06:00
|
|
|
mask = 1 << idlest_shift;
|
|
|
|
|
2009-09-03 20:14:02 +03:00
|
|
|
if (cpu_is_omap24xx())
|
2010-07-26 16:34:28 -06:00
|
|
|
ena = mask;
|
2009-09-03 20:14:02 +03:00
|
|
|
else if (cpu_is_omap34xx())
|
|
|
|
ena = 0;
|
|
|
|
else
|
|
|
|
BUG();
|
|
|
|
|
2009-12-08 16:33:16 -07:00
|
|
|
omap_test_timeout(((cm_read_mod_reg(prcm_mod, cm_idlest_reg) & mask) == ena),
|
|
|
|
MAX_MODULE_READY_TIME, i);
|
2009-09-03 20:14:02 +03:00
|
|
|
|
|
|
|
return (i < MAX_MODULE_READY_TIME) ? 0 : -EBUSY;
|
|
|
|
}
|
|
|
|
|