diff options
Diffstat (limited to 'arch/arm/include/asm/arch-tegra2/clk_rst.h')
| -rw-r--r-- | arch/arm/include/asm/arch-tegra2/clk_rst.h | 10 | 
1 files changed, 8 insertions, 2 deletions
| diff --git a/arch/arm/include/asm/arch-tegra2/clk_rst.h b/arch/arm/include/asm/arch-tegra2/clk_rst.h index 0b6e004fb..415e42001 100644 --- a/arch/arm/include/asm/arch-tegra2/clk_rst.h +++ b/arch/arm/include/asm/arch-tegra2/clk_rst.h @@ -125,9 +125,15 @@ struct clk_rst_ctlr {  #define OSC_FREQ_SHIFT		30  #define OSC_FREQ_MASK		(3U << OSC_FREQ_SHIFT) -/* CLK_RST_CONTROLLER_CLK_SOURCE_x_OUT_0 */ +/* + * CLK_RST_CONTROLLER_CLK_SOURCE_x_OUT_0 - the mask here is normally 8 bits + * but can be 16. We could use knowledge we have to restrict the mask in + * the 8-bit cases (the divider_bits value returned by + * get_periph_clock_source()) but it does not seem worth it since the code + * already checks the ranges of values it is writing, in clk_get_divider(). + */  #define OUT_CLK_DIVISOR_SHIFT	0 -#define OUT_CLK_DIVISOR_MASK	(255 << OUT_CLK_DIVISOR_SHIFT) +#define OUT_CLK_DIVISOR_MASK	(0xffff << OUT_CLK_DIVISOR_SHIFT)  #define OUT_CLK_SOURCE_SHIFT	30  #define OUT_CLK_SOURCE_MASK	(3U << OUT_CLK_SOURCE_SHIFT) |