Re: [PATCH v6 4/7] ARM: rockchip: add suspend and resume for RK3288

From: Doug Anderson
Date: Wed Oct 29 2014 - 15:26:37 EST


Kevin,

On Wed, Oct 29, 2014 at 12:01 PM, Kevin Hilman <khilman@xxxxxxxxxx> wrote:
>> + /* set bit 8 so that system will resume to FAST_BOOT_ADDR */
>> + regmap_write(sgrf_regmap, RK3288_SGRF_SOC_CON0,
>> + BIT(SGRF_FAST_BOOT_EN) | BIT(SGRF_FAST_BOOT_EN + 16));
>
> Comment says "bit 8", but code says bit 8 and bit 24, and if bit 24 is
> needed, it should probably get its own #define in the header.

This is Rockchip's "write enable" feature hitting us again. The upper
16-bits are "write enables" for the lower 16-bits. So to set bit 8
you set bit 8 to whatever value you want and then 'write enable' by
setting (1 << 8 << 16). It allows you to avoid read-modify-write.
See this in Rockchip's clk.h:

#define HIWORD_UPDATE(val, mask, shift) \
((val) << (shift) | (mask) << ((shift) + 16))
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/