[PATCH] read cfi device id according the bus width
张忠山
zzs213 at 126.com
Thu Nov 22 01:26:17 EST 2012
In message <20121122061438.GR8327 at game.jcrosoft.org> Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 14:01 Thu 22 Nov , 张忠山 wrote:
> > Signed-off-by: 张忠山 <zzs213 at 126.com>
> > ---
> > drivers/nor/cfi_flash_amd.c | 7 +++++--
> > 1 files changed, 5 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/nor/cfi_flash_amd.c b/drivers/nor/cfi_flash_amd.c
> > index 45c59b9..3ab4be0 100644
> > --- a/drivers/nor/cfi_flash_amd.c
> > +++ b/drivers/nor/cfi_flash_amd.c
> > @@ -62,8 +62,11 @@ static void amd_read_jedec_ids (struct flash_info *info)
> > udelay(1000); /* some flash are slow to respond */
> >
> > info->manufacturer_id = jedec_read_mfr(info);
> > - info->device_id = flash_read_uchar (info,
> > - FLASH_OFFSET_DEVICE_ID);
> > + if(info->chipwidth == FLASH_CFI_BY16)
> > + info->device_id = flash_read16(flash_make_addr(info, 0, FLASH_OFFSET_DEVICE_ID));
> > + else
> > + info->device_id = flash_read_uchar (info,
> > + FLASH_OFFSET_DEVICE_ID);
>
> make this global with all with support
> as don in linux
>
> as this is valid for amd and intel and st
>
Does this mean cp this code to the function
drivers/nor/cfi_flash_intel.c:intel_read_jedec_ids() ?
--
Best Regards,
zzs
More information about the barebox
mailing list