[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

[U-Boot] [PATCH] fsl_ifc_nand: Added random output enable cmd

2016-09-06 Thread Matt Weber
This patch adds random output enable command support in IFC nand controller driver. This command implements change read column (05h-E0h). Signed-off-by: Ronak Desai Signed-off-by: Matthew Weber ---

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

2016-09-07 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. Also, remove the usage of ifc_ctrl->cs_nand from driver as chipselect

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

2016-09-26 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. Also, remove the usage of ifc_ctrl->cs_nand from driver as chipselect

[U-Boot] [PATCH 1/1] mtd/spi: Support of non-jedec MRAM devices

2017-07-10 Thread Matt Weber
This patch adds support of non-jedec MRAM devices mr25hx from Everspin. This flash devices do not have jedec device ID and hence support for name matching is also added as part of this series. This patch streamlined the update of SPI flash probing function API changes and included the following

[U-Boot] [PATCH 1/1] tools: conditionally disable python libfdt wrapper

2017-05-01 Thread Matt Weber
Not all host systems want the default swig to be used when building the tools. Allow for the disabling of the wrapper to enable cross-compiling of the tools on a host system with swig. Signed-off-by: Matthew Weber --- I'm open for suggestions on what updates

[U-Boot] [PATCH] libfdt: give setup.py optional interpreter

2017-10-12 Thread Matt Weber
If building in a sandboxed environment where a alternate python interpreter is desired. Allow configuring of the PYTHON variable to specify the interpreter to invoke setup.py. Signed-off-by: Matthew Weber --- tools/Makefile | 2 +- 1 file changed, 1

[U-Boot] [PATCH] include/version.h: workaround sysroot inc order

2018-07-26 Thread Matt Weber
On some systems the host system or even the cross sysroot can contain a version.h. This leads to the wrong file being picked up and a PLAIN_VERSION undefined error. This workaround symlinks the version.h into the tool folder to allow reordering of search folders. Fixes