[U-Boot] [PATCH 1/2] SPI Flash: add support of sst26wf* flash series

2018-02-06 Thread Eugeniy Paltsev
sst26wf flash series block protection implementation differs from other SST series, so add implementation for sst26wf lock/unlock/is_locked functions. Signed-off-by: Eugeniy Paltsev --- drivers/mtd/spi/spi_flash.c | 188 1 file changed, 188

[U-Boot] [PATCH] ARC: AXS10x: drop NAND support

2019-03-27 Thread Eugeniy Paltsev
ssues. So instead of keeping support of yet another non-standard peripheral we're dropping its support for good. Signed-off-by: Eugeniy Paltsev --- board/synopsys/axs10x/Makefile | 1 - board/synopsys/axs10x/nand.c | 242 - configs/axs101_defconf

[U-Boot] [PATCH 0/3] ARC: DM_MMC migration

2019-02-25 Thread Eugeniy Paltsev
Introduce DesignWare MMC driver extension and migrate several ARC devboard to DM_MMC Eugeniy Paltsev (3): ARC: dwmmc: Adding DesignWare MMC driver support for ARC devboards ARC: [plat-hsdk]: migrate to DM_MMC ARC: [plat-axs10x]: migrate to DM_MMC MAINTAINERS

[U-Boot] [PATCH 1/3] ARC: dwmmc: Adding DesignWare MMC driver support for ARC devboards

2019-02-25 Thread Eugeniy Paltsev
Add the DM_MMC-compatible DesignWare MMC driver support for Synopsys ARC devboards. It is created to switch ARC devboards to use DM_MMC. It required information such as clocks (Bus Interface Unit clock, Card Interface Unit clock) and SDIO bus width. Signed-off-by: Eugeniy Paltsev

[U-Boot] [PATCH 2/3] ARC: [plat-hsdk]: migrate to DM_MMC

2019-02-25 Thread Eugeniy Paltsev
Signed-off-by: Eugeniy Paltsev --- arch/arc/dts/hsdk.dts | 26 ++ board/synopsys/hsdk/hsdk.c | 41 ++--- configs/hsdk_defconfig | 2 ++ 3 files changed, 34 insertions(+), 35 deletions(-) diff --git a/arch/arc/dts/hsdk.dts b

[U-Boot] [PATCH 3/3] ARC: [plat-axs10x]: migrate to DM_MMC

2019-02-25 Thread Eugeniy Paltsev
Signed-off-by: Eugeniy Paltsev --- arch/arc/dts/axs10x_mb.dtsi| 28 board/synopsys/axs10x/axs10x.c | 29 - configs/axs103_defconfig | 2 ++ 3 files changed, 30 insertions(+), 29 deletions(-) diff --git a/arch/arc/dts

[U-Boot] [PATCH 1/1] MTD: SPI: revert removing SST26* flash IC protection ops

2019-09-04 Thread Eugeniy Paltsev
which were introduced previously by Commit 3d4fed87a5fa (mtd: sf: Add support of sst26wf* flash ICs protection ops) Signed-off-by: Eugeniy Paltsev --- Tom, could you please pick this patch to 2019.10? drivers/mtd/spi/sf_internal.h | 1 + drivers/mtd/spi/spi-nor-co

[U-Boot] Regressions in MTD / SPI FLASH

2019-09-04 Thread Eugeniy Paltsev
ystem changes mustn't be done such harmful way. Eugeniy Paltsev (1): MTD: SPI: revert removing SST26* flash IC protection ops drivers/mtd/spi/sf_internal.h | 1 + drivers/mtd/spi/spi-nor-core.c | 181 + drivers/mtd/spi/spi-nor-ids.c | 8 +- include/lin

Re: [U-Boot] Regressions in MTD / SPI FLASH

2019-09-09 Thread Eugeniy Paltsev
Hi! Comments are inlined: >On 04/09/19 11:37 PM, Eugeniy Paltsev wrote: >> We faced with regressions caused by >> commit c4e8862308d4 (mtd: spi: Switch to new SPI NOR framework) >> This switch was performed by removing entire u-boot spi-flash >> core implementation

Re: [U-Boot] [PATCH 1/1] MTD: SPI: revert removing SST26* flash IC protection ops

2019-09-09 Thread Eugeniy Paltsev
>On Wed, Sep 4, 2019 at 11:37 PM Eugeniy Paltsev > wrote: >> >> Commit c4e8862308d4 (mtd: spi: Switch to new SPI NOR framework) >> performs switch from previous 'spi_flash' infrastructure without >> proper testing/investigations which results in regression

[U-Boot] [PATCH v2 2/2] MTD: SPI: enable protection ops for SST26 flash series

2019-09-09 Thread Eugeniy Paltsev
enabled by Commit 3d4fed87a5fa (mtd: sf: Add support of sst26wf* flash ICs protection ops) Signed-off-by: Eugeniy Paltsev --- drivers/mtd/spi/spi-nor-ids.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c index a

[U-Boot] [PATCH v2 1/2] MTD: SPI: add missing SST26* flash IC protection ops

2019-09-09 Thread Eugeniy Paltsev
viously by Commit 3d4fed87a5fa (mtd: sf: Add support of sst26wf* flash ICs protection ops) Signed-off-by: Eugeniy Paltsev --- drivers/mtd/spi/sf_internal.h | 1 + drivers/mtd/spi/spi-nor-core.c | 181 + include/linux/mtd/spi-nor.h| 4 + 3 files changed, 186

Re: [U-Boot] Regressions in MTD / SPI FLASH

2019-09-10 Thread Eugeniy Paltsev
Hi Vignesh, that patch helps - both erase and write works fine. For n25q512ax3: Tested-by: "Eugeniy Paltsev " --- Eugeniy Paltsev From: Vignesh Raghavendra Sent: Tuesday, September 10, 2019 08:07 To: Eugeniy Paltsev; Jagan Teki

Re: [U-Boot] Regressions in MTD / SPI FLASH

2019-09-12 Thread Eugeniy Paltsev
Hi Vignesh, I doesn't have access to board with n25q512ax3 currently, however I can test this on Monday (16.09) --- Eugeniy Paltsev From: Vignesh Raghavendra Sent: Tuesday, September 10, 2019 15:27 To: Eugeniy Paltsev; Jagan Teki Cc: u

Re: [U-Boot] Regressions in MTD / SPI FLASH

2019-09-24 Thread Eugeniy Paltsev
AXS# md.b 0x8100 0x10 8100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 AXS# -->8---- All tests were performed on 4b95daf5dca with your commit (for disabling 4B opcodes) applied. --- Eugeniy Paltsev ___________

Re: [U-Boot] [PATCH RFT 0/3] spi-nor: spi-nor-ids: Fix 4 Byte addressing for n25q256 and n25q512*

2019-09-24 Thread Eugeniy Paltsev
t I need to check it. --- Eugeniy Paltsev From: Vignesh Raghavendra Sent: Tuesday, September 24, 2019 08:56 To: Jagan Teki; Eugeniy Paltsev; Ashish Kumar; Simon Goldschmidt Cc: Vignesh Raghavendra; u-boot@lists.denx.de; Tom Rini; Alexey Brodkin Subject: [PATCH RFT 0

Re: [U-Boot] [PATCH RFT 0/3] spi-nor: spi-nor-ids: Fix 4 Byte addressing for n25q256 and n25q512*

2019-10-07 Thread Eugeniy Paltsev
[1B in] 81 [ret 0] SF: 16 bytes @ 0x18 Written: OK OK AXS# sf read 0x8100 0x18 0x10 && echo OK device 0 offset 0x18, size 0x10 0b 00 18 00 00 | [16B in] 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ret 0] SF: 16 bytes @ 0x18 Read: OK OK ->8--

[U-Boot] [PATCH] NET: DW: fix regression for ARC boards

2019-10-07 Thread Eugeniy Paltsev
that by adding "snps,arc-dwmac-3.70a" compatible string to "drivers/net/designware.c" and using it in ARC boards device tree. Signed-off-by: Eugeniy Paltsev --- Tom, could you please pick this patch to 2019.10? arch/arc/dts/axs10x_mb.dtsi | 2 +- arch/arc/dts/hsdk.dts

[U-Boot] [PATCH 2/2] MAINTAINERS: add info about ARC HSDK reset driver

2019-10-08 Thread Eugeniy Paltsev
Signed-off-by: Eugeniy Paltsev --- MAINTAINERS | 7 +++ 1 file changed, 7 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index e752e4b3de0..4cecbb6d134 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -94,6 +94,13 @@ L: uboot-snps-...@synopsys.com F: doc/device-tree-bindings/gpio

[U-Boot] [PATCH 1/2] ARC: HSDK: introduce reset driver

2019-10-08 Thread Eugeniy Paltsev
Introduce reset driver for Synopsys ARC HSDK SoC Signed-off-by: Eugeniy Paltsev --- drivers/reset/Kconfig | 7 ++ drivers/reset/Makefile | 1 + drivers/reset/reset-hsdk.c | 116 include/dt-bindings/reset/snps

[U-Boot] [PATCH] ARC: [plat-axs101]: migrate to DM_MMC

2019-10-08 Thread Eugeniy Paltsev
Signed-off-by: Eugeniy Paltsev --- configs/axs101_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/axs101_defconfig b/configs/axs101_defconfig index 0bfb532fc74..38c8ae998fd 100644 --- a/configs/axs101_defconfig +++ b/configs/axs101_defconfig @@ -35,7 +35,9 @@ CONFIG_DM=y

Re: [U-Boot] [PATCH] ARC: enable unit tests on development platforms

2019-11-28 Thread Eugeniy Paltsev
Hi Alexey, ping! --- Eugeniy Paltsev From: Eugeniy Paltsev Sent: Friday, November 8, 2019 18:31 To: uboot-snps-...@synopsys.com; Alexey Brodkin Cc: u-boot@lists.denx.de; Eugeniy Paltsev Subject: [PATCH] ARC: enable unit tests on development platforms

Re: [PATCH] ARC: enable unit tests on development platforms

2019-12-04 Thread Eugeniy Paltsev
Hi Alexey, ping! --- Eugeniy Paltsev From: Eugeniy Paltsev Sent: Thursday, November 28, 2019 18:54 To: uboot-snps-...@synopsys.com; Alexey Brodkin Cc: u-boot@lists.denx.de; Eugeniy Paltsev Subject: Re: [PATCH] ARC: enable unit tests on development

<    1   2   3