Re: [U-Boot] [PATCH] sf: Add support for Macronix mx25u12835f

2019-07-12 Thread Vladimir Vid
Sorry for the late reply, I got caught up working on another project and overlooked this. Yes, per my testing mx25u12835f is working stable without the SECT_4K option. I also found that Xilinx is using the same flash and also without the SECT_4K, so I don't think this should not be an issue.

[U-Boot] [PATCH v4] arm64: mvebu: Add basic support for uDPU board

2019-01-28 Thread Vladimir Vid
uis Torres Cc: Scott Roberts Cc: Paul Arola Cc: Stefan Roese Signed-off-by: Vladimir Vid --- v4 changes: - moved u-boot specific properties to armada-3720-uDPU-u-boot.dtsi - added additional 'u-boot,dm-pre-reloc' on sdhci1 (eMMC) --- arch/arm/dts/Makefile | 1 + ar

[U-Boot] [PATCH v3] arm64: mvebu: Add basic support for uDPU board

2019-01-25 Thread Vladimir Vid
uis Torres Cc: Scott Roberts Cc: Paul Arola Cc: Chris Packham Signed-off-by: Vladimir Vid --- v3 changes: - removed MMC_SDHCI_MV driver which was generating error durring the build. SDHCI_XENON driver is sufficient for the internal eMMC. - fixed remaining warnings durring the build time (reg

[U-Boot] [PATCH v2] arm64: mvebu: Add basic support for uDPU board

2019-01-15 Thread Vladimir Vid
uis Torres Cc: Scott Roberts Cc: Paul Arola Signed-off-by: Vladimir Vid Cc: Chris Packham Cc: Stefan Roese --- v2: - updated compatible string - added 'u-boot,dm-pre-reloc' to spi0 and spi-flash nodes - updated board defconfig (properly with savedefconfig this time) - removed unused PCA d

[U-Boot] [PATCH] arm64: mvebu: Add basic support for uDPU board

2019-01-11 Thread Vladimir Vid
uis Torres Cc: Scott Roberts Cc: Paul Arola Signed-off-by: Vladimir Vid --- arch/arm/dts/Makefile |1 + arch/arm/dts/armada-3720-uDPU.dts | 197 +++ board/Marvell/mvebu_armada-37xx/MAINTAINERS |5 + configs/uDPU_defconfig

[U-Boot] [PATCH] sf: Add support for Macronix mx25u12835f

2018-12-18 Thread Vladimir Vid
Add ID for Macronix mx25u12835f flash. Signed-off-by: Vladimir Vid --- drivers/mtd/spi/spi_flash_ids.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/spi/spi_flash_ids.c b/drivers/mtd/spi/spi_flash_ids.c index ad0a0c8150..4876007ef6 100644 --- a/drivers/mtd/spi/spi_flash_ids.c

[U-Boot] [PATCH] arm64: a37xx: add CONFIG_MTD_DEVICE and CONFIG_MTD_PARTITIONS

2018-07-13 Thread Vladimir Vid
CONFIG_MTD_DEVICE is required for the mtdparts command and but it is missing from the mvebu_armada-37xx.h CONFIG_MTD_PARTITIONS is needed for the ubi support. Some of the Marvell based devices may require this as well. Signed-off-by: Vladimir Vid Signed-off-by: Luka Perkov --- include