On Tue, 2012-03-06 at 11:30 +0530, Rajendra Nayak wrote: > On Tuesday 06 March 2012 11:14 AM, Nishanth Menon wrote: > > On 17:17-20120302, Tero Kristo wrote: > >> From: Vishwanath BS<vishwanath.bs@xxxxxx> > >> > >> Since IO Daisychain modifies only PRM registers, it makes sense to move > >> it to PRM File. Also changed the timeout value for IO chain enable to > >> 100us and added a wait for status disable at the end. > >> > > [...] > >> +/* > >> + * Maximum time(us) it takes to output the signal WUCLKOUT of the last pad of > >> + * the I/O ring after asserting WUCLKIN high > >> + */ > >> +#define MAX_IOPAD_LATCH_TIME 100 > >> + > >> +/* OMAP3 Daisychain enable sequence */ > >> +void omap3_trigger_io_chain(void) > >> +{ > >> + int i = 0; > >> + > >> + omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD, > >> + PM_WKEN); > >> + /* Do a readback to assure write has been done */ > >> + omap2_prm_read_mod_reg(WKUP_MOD, PM_WKEN); > >> + > >> + omap_test_timeout(((omap2_prm_read_mod_reg(WKUP_MOD, PM_WKST)& > >> + OMAP3430_ST_IO_CHAIN_MASK) == 1), > > umm > > arch/arm/mach-omap2/prm-regbits-34xx.h:#define OMAP3430_ST_IO_CHAIN_MASK > > (1<< 16) > > (reg& (1<< 16)) == 1 > > will ever be true? > > good catch. Its should actually be '((reg & (1 << 16)) >> 16) == 1' > This is fixed in the omap4_trigger_io() function, looks like is missed > here. I'll fix this for next version. -Tero -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html