> -----Original Message-----
> From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com]
> Sent: Wednesday, November 28, 2012 5:27 PM
> To: Navada Kanyana, Mukund
> Cc: Greg Kroah-Hartman; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH 1/1] regmap: Add support for continously numbered
> pages across regmap range
> 
> On Wed, Nov 28, 2012 at 11:52:22AM +0000, Navada Kanyana, Mukund wrote:
> 
> > static const struct regmap_range_cfg aic325x_ranges[] = {
> >         { .name = "CONF", .range_min = 128,
> >           .range_max = 383,
> >           .selector_reg = 0x0,
> >           .selector_mask = 0xff,
> >           .selector_shift = 0,
> >           .window_start = 0, .window_len =128,
> >         },
> >         { .name = "MINIDSP_A_CM_A", .range_min = AIC325X_ADSP_CM_A_BASE,
> >           .range_max = AIC325X_ADSP_CM_A_BASE + 1152,
> >           .selector_reg = 0x0,
> >           .selector_mask = 0xff,
> >           .selector_shift = 0,
> >           .window_start = 0, .window_len =128,
> >         },
> > };
> 
> You appear to have two different ranges with the same selector and
> window.  I'm really not sure why you expect this to work...  what
> happens when someone reads from the two different ranges simultaneously?
The selector register has to written appropriate page number. Two different 
ranges cannot be accessed simultaneously without changing the page number in 
the selector register.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to