[U-Boot] [PATCH] fsl-ifc-nand : Corrected the programming of chip select

2018-04-17 Thread Ronak Desai
Corrected the chip selection in IFC_NAND_CSEL register. Due to this issue in multi-chip nand use-case, IFC was always pointing to the last probed chip even though user select another device through "nand device " command. Also, updated the driver to remove usage of ifc_ctrl->cs_nand as it's the

Re: [U-Boot] [PATCH] fsl-ifc-nand : Corrected the programming of chip select

2016-09-06 Thread Scott Wood
On 09/06/2016 02:31 PM, Ronak Desai wrote: > We don't need to update fsl_ifc_sram_init() as fsl_ifc_sram_init is > called from the fsl_ifc_chip_init which configures the ifc_ctrl->cs_nand > with correct value based on the chip-select under initialization. > > Best Regards, > Ronak Desai We

Re: [U-Boot] [PATCH] fsl-ifc-nand : Corrected the programming of chip select

2016-09-06 Thread Scott Wood
On 09/06/2016 08:44 AM, Matt Weber wrote: > Corrected the chip selection in IFC_NAND_CSEL register. Due to this > issue in multi-chip nand use-case, IFC was always pointing to the last > probed chip even though the user select another device through "nand > device" command. > > Signed-off-by:

Re: [U-Boot] [PATCH] fsl-ifc-nand : Corrected the programming of chip select

2016-09-06 Thread Ronak Desai
We don't need to update fsl_ifc_sram_init() as fsl_ifc_sram_init is called from the fsl_ifc_chip_init which configures the ifc_ctrl->cs_nand with correct value based on the chip-select under initialization. Best Regards, Ronak Desai On Tue, Sep 6, 2016 at 12:01 PM, Scott Wood

[U-Boot] [PATCH] fsl-ifc-nand : Corrected the programming of chip select

2016-09-06 Thread Matt Weber
Corrected the chip selection in IFC_NAND_CSEL register. Due to this issue in multi-chip nand use-case, IFC was always pointing to the last probed chip even though the user select another device through "nand device" command. Signed-off-by: Ronak Desai