Re: [U-Boot] [PATCH] usb: dwc3: Handle case where setup_phy is not needed

2019-06-06 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Siva Durga Prasad Paladugu > Sent: Tuesday, May 28, 2019 3:36 PM > To: Michal Simek ; Lukasz Majewski > > Cc: u-boot@lists.denx.de; ma...@denx.de; jjhib...@ti.com; > s...@chromium.org; patrick.delau...@st.com > Subject: RE: [PATCH

Re: [U-Boot] [PATCH] usb: dwc3: Handle case where setup_phy is not needed

2019-05-28 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Michal Simek [mailto:michal.si...@xilinx.com] > Sent: Monday, April 1, 2019 4:10 PM > To: Siva Durga Prasad Paladugu ; Lukasz Majewski > > Cc: u-boot@lists.denx.de; ma...@denx.de; jjhib...@ti.com; > s...@chromium.org; patrick.delau...

Re: [U-Boot] [PATCH v2 00/18] Improvement for the DWC3 USB generic driver and fixes for the K2 platforms

2019-05-22 Thread Siva Durga Prasad Paladugu
Hi Lukasz, > -Original Message- > From: Lukasz Majewski [mailto:lu...@denx.de] > Sent: Tuesday, May 21, 2019 5:52 PM > To: Siva Durga Prasad Paladugu > Cc: Jean-Jacques Hiblot ; ma...@denx.de; Marcel Ziswiler > ; u-boot@lists.denx.de; Miquel Raynal > ; Stefan Roese

Re: [U-Boot] [PATCH v2 00/18] Improvement for the DWC3 USB generic driver and fixes for the K2 platforms

2019-05-21 Thread Siva Durga Prasad Paladugu
Hi, -Original Message- From: Marek Vasut [mailto:ma...@denx.de] Sent: Tuesday, May 21, 2019 6:14 PM To: Siva Durga Prasad Paladugu ; Jean-Jacques Hiblot ; lu...@denx.de Cc: Marcel Ziswiler ; u-boot@lists.denx.de; Miquel Raynal ; Stefan Roese ; Tom Rini ; Ryder Lee ; Heinrich

Re: [U-Boot] [PATCH v2 00/18] Improvement for the DWC3 USB generic driver and fixes for the K2 platforms

2019-05-21 Thread Siva Durga Prasad Paladugu
Hi, Tested the series with one out of tree patch(https://marc.info/?l=u-boot=155409909828219 ) on Xilinx ZynqMP and it looks fine. We may need to finalize on https://marc.info/?l=u-boot=155409909828219 as well. U-Boot 2019.04-rc4-00065-g5063fa3-dirty (May 21 2019 - 16:58:34 +0530) Model:

Re: [U-Boot] [PATCH] usb: dwc3: Handle case where setup_phy is not needed

2019-04-01 Thread Siva Durga Prasad Paladugu
Hi Lukasz, > -Original Message- > From: Lukasz Majewski [mailto:lu...@denx.de] > Sent: Monday, April 01, 2019 4:04 PM > To: Siva Durga Prasad Paladugu > Cc: u-boot@lists.denx.de; ma...@denx.de; jjhib...@ti.com; > s...@chromium.org; patrick.delau...@st.com; Michal Sime

Re: [U-Boot] [PATCH] usb: dwc3: Handle case where setup_phy is not needed

2019-04-01 Thread Siva Durga Prasad Paladugu
Hi Lukasz, > -Original Message- > From: Lukasz Majewski [mailto:lu...@denx.de] > Sent: Monday, April 01, 2019 1:03 PM > To: Siva Durga Prasad Paladugu > Cc: u-boot@lists.denx.de; ma...@denx.de; jjhib...@ti.com; > s...@chromium.org; patrick.delau...@st.com; Michal Sime

[U-Boot] [PATCH] usb: dwc3: Handle case where setup_phy is not needed

2019-04-01 Thread Siva Durga Prasad Paladugu
If CONFIG_PHY is not enabled then the dwc3_setup_phy() returns ENOTSUPP which can be still valid and intentional so modify error check to handle this -ENOTSUPP. Signed-off-by: Siva Durga Prasad Paladugu --- drivers/usb/dwc3/dwc3-generic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[U-Boot] [PATCH] usb: composite: Fix max packet size for USB3.0

2018-12-13 Thread Siva Durga Prasad Paladugu
with superspeed. Without this patch, the max packet size is overflowed to zero as the bMaxPacketsize is of u8 and hence host is not able to detect this device. Signed-off-by: Siva Durga Prasad Paladugu Reviewed-by: Bin Meng --- Changes from RFC: - Fixed typo in description as per comment. --- drivers

[U-Boot] [RFC PATCH] usb: composite: Fix max packet size for USB3.0

2018-12-12 Thread Siva Durga Prasad Paladugu
with superspeed. With out this patch, the max packet size is overflowed to zero as the bMaxPacketsize is of u8 and hence host is not able to detect this device. Signed-off-by: Siva Durga Prasad Paladugu --- drivers/usb/gadget/composite.c | 17 +++-- 1 file changed, 15 insertions(+), 2

[U-Boot] [RFC PATCH] mmc: sdhci: zynqmp: Added support to read tap delay values from DT

2018-12-03 Thread Siva Durga Prasad Paladugu
From: Vipul Kumar This patch added support to read ITAP and OTAP delay values from the device tree. If the DT does not contain tap delay values, the predefined values will be used for the same. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek

[U-Boot] [PATCH 2/2] net: phy: Add gmiitorgmii converter support

2018-11-26 Thread Siva Durga Prasad Paladugu
This bridge just needs to be configured based on real phy negotiated speed and duplex. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- drivers/net/phy/Kconfig | 7 +++ drivers/net/phy/Makefile| 1 + drivers/net/phy/phy.c

[U-Boot] [PATCH 1/2] net: phy: Move fixed link code to separate routine

2018-11-26 Thread Siva Durga Prasad Paladugu
This patch moves fixed-link functionality code to a separate routine inorder to make it more modular and cleaner. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- drivers/net/phy/phy.c | 34 +++--- 1 file changed, 27 insertions(+), 7

[U-Boot] [PATCH 2/2] net: zynq_gem: Add check for 64-bit dma support by hardware

2018-11-26 Thread Siva Durga Prasad Paladugu
This patch throws an error if 64-bit support is expected but DMA hardware is not capable of 64-bit support. It also prints a debug message if DMA is capable of 64-bit but not using it. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- drivers/net/zynq_gem.c | 24

[U-Boot] [PATCH 1/2] net: zynq_gem: Added 64-bit addressing support

2018-11-26 Thread Siva Durga Prasad Paladugu
From: Vipul Kumar This patch adds 64-bit addressing support for zynq gem. This means it can perform send and receive operations on 64-bit address buffers. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- drivers/net/zynq_gem.c | 63

Re: [U-Boot] [PATCH v3] usb: dwc3: convert to livetree

2018-09-20 Thread Siva Durga Prasad Paladugu
Hi Marek/Michal, Can you please review and let me know if any comments otherwise, please take it up. Thanks, Siva > -Original Message- > From: Siva Durga Prasad Paladugu [mailto:siva.durga.palad...@xilinx.com] > Sent: Friday, September 07, 2018 4:27 PM > To: u-boot@lists.

Re: [U-Boot] QSPI driver for Zynq and ZynqMP

2018-09-16 Thread Siva Durga Prasad Paladugu
Hi Jagan, Could you please take some time to look into this mail and let me now your comments. Thanks, Siva > -Original Message- > From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Siva > Durga Prasad Paladugu > Sent: Wednesday, September 12, 2018 2:47 PM

Re: [U-Boot] QSPI driver for Zynq and ZynqMP

2018-09-12 Thread Siva Durga Prasad Paladugu
Ping! Thanks, Siva From: Siva Durga Prasad Paladugu Sent: Friday, September 07, 2018 12:59 PM To: 'u-boot@lists.denx.de' Cc: Jagan Teki ; Michal Simek Subject: QSPI driver for Zynq and ZynqMP Hi Jagan, We would like to upstream quad and dual modes(parallel and stacked) support for qspi

[U-Boot] [PATCH v3] usb: dwc3: convert to livetree

2018-09-07 Thread Siva Durga Prasad Paladugu
From: Vipul Kumar Update the DWC3 USB driver to support a live tree. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu Tested-by: Michal Simek --- Changes in v3: - Used ofnode_valid() to check for node validity This fixes the below compilation failure for stih410

[U-Boot] QSPI driver for Zynq and ZynqMP

2018-09-07 Thread Siva Durga Prasad Paladugu
Hi Jagan, We would like to upstream quad and dual modes(parallel and stacked) support for qspi drivers of Zynq and ZynqMP. Can we send patches based on existing framework(drivers/spi , this is what we are using on Xilinx tree) or you want us to use any other? I know we had discussion sometime

Re: [U-Boot] [PATCH v2] usb: dwc3: convert to livetree

2018-09-06 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Michal Simek [mailto:michal.si...@xilinx.com] > Sent: Thursday, September 06, 2018 7:36 PM > To: Siva Durga Prasad Paladugu ; u- > b...@lists.denx.de > Cc: Michal Simek ; ma...@denx.de; > bmeng...@gmail.com; s...@chromiu

Re: [U-Boot] [PATCH v2] usb: dwc3: convert to livetree

2018-09-06 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Thursday, September 06, 2018 4:28 PM > To: Siva Durga Prasad Paladugu ; u- > b...@lists.denx.de > Cc: Michal Simek ; bmeng...@gmail.com; > s...@chromium.org; yamada.masah...@socionext.com; Vip

[U-Boot] [PATCH v2] usb: dwc3: convert to livetree

2018-09-06 Thread Siva Durga Prasad Paladugu
From: Vipul Kumar Update the DWC3 USB driver to support a live tree. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Vipul Kumar Tested-by: Michal Simek --- Changes in v2: - Fixed travis build issues with some platforms. --- drivers/usb/common/common.c | 11

[U-Boot] [PATCH] net: zynq_gem: Fix reading of max-speed property

2018-09-04 Thread Siva Durga Prasad Paladugu
max-speed property is part of phynode and it has to be read using ofnode_read_u32_default(). This fixes the issue of incorrect max-speed read from DT. Signed-off-by: Siva Durga Prasad Paladugu --- drivers/net/zynq_gem.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[U-Boot] Query on FAT file system

2018-08-29 Thread Siva Durga Prasad Paladugu
Hi, I have below queries on FAT filesystem support in uboot. It would be really helpful if someone can provide some insight into these. 1. fatwrite command is not able to write into subdirectories, but able to perform same ops on to root directory, its treating / as part of file name

Re: [U-Boot] [UBOOT PATCH v2] net: zynq_gem: convert to use livetree

2018-07-22 Thread Siva Durga Prasad Paladugu
Hi Joe/Michal, Can you please take it up if it is fine. Thanks, Siva > -Original Message- > From: Siva Durga Prasad Paladugu [mailto:siva.durga.palad...@xilinx.com] > Sent: Monday, July 16, 2018 6:26 PM > To: u-boot@lists.denx.de > Cc: Michal Simek ; joe.her

Re: [U-Boot] Issue with fat16 format

2018-07-19 Thread Siva Durga Prasad Paladugu
Hi Heinrich/Rob, Do we have any update on this issue. Thanks, Siva > -Original Message- > From: Vipul Kumar > Sent: Monday, June 18, 2018 10:35 AM > To: Heinrich Schuchardt ; u-boot@lists.denx.de > Cc: Michal Simek ; Siva Durga Prasad Paladugu > ; Rob Clark ; Ɓukasz

[U-Boot] [PATCH v2] arm64: zynqmp: Add QSPI flash mini u-boot configuration

2018-07-18 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint of internal memory. This configuration has only required qspi flash support and it uses DCC as serial. Signed-off-by: Siva Durga Prasad Paladugu --- Chnages for v2: - Fixed copyright year - Fixed memory

[U-Boot] [PATCH] arm64: zynqmp: Add QSPI flash mini u-boot configuration

2018-07-18 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint of internal memory. This configuration has only required qspi flash support and it uses DCC as serial. Signed-off-by: Siva Durga Prasad Paladugu --- This patch is based on series "[PATCH v6 0/5

[U-Boot] [UBOOT PATCH v2] net: zynq_gem: convert to use livetree

2018-07-16 Thread Siva Durga Prasad Paladugu
This patch updates the zynq gem driver to support livetree. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Vipul Kumar --- Changes for v2: - Note that this patch is based on below two series. https://patchwork.ozlabs.org/cover/936370/ and https://patchwork.ozlabs.org/cover/936380

Re: [U-Boot] [PATCH 3/3] net: zynq_gem: convert to use livetree

2018-07-16 Thread Siva Durga Prasad Paladugu
HI Joe, > -Original Message- > From: Siva Durga Prasad Paladugu > Sent: Monday, July 16, 2018 2:32 PM > To: 'joe.hershber...@ni.com' ; Grygorii Strashko > > Cc: u-boot ; Michal Simek ; > Vipul Kumar > Subject: RE: [U-Boot] [PATCH 3/3] net: zynq_gem: convert to

[U-Boot] [UBOOT PATCH v4 5/5] arm: zynq: Add parallel NOR flash mini u-boot configuration for zynq

2018-07-16 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint OCM memory. This configuration only has required parallel nor flash support. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v3: - None, rebased on latest master Changes from v2: - None

[U-Boot] [UBOOT PATCH v4 3/5] arm: zynq: Dont define SDRAM_BASE and SDRAM_SIZE in .h

2018-07-16 Thread Siva Durga Prasad Paladugu
Remove the SDRAM_BASE nad SDRAM_SIZE as it can now get these details from DT. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v3: - None Changes from v2: - None Changes from v1: - Removed commit reference from description as per comment --- include/configs/zynq_cse.h | 3 --- 1

[U-Boot] [UBOOT PATCH v4 4/5] arm: zynq: Add Nand flash mini u-boot configuration for zynq

2018-07-16 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint of memory. This configuration has only required nand flash support. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v3: - Rebased on latest master Changes from v2: - None Changes from v1

[U-Boot] [UBOOT PATCH v4 2/5] lib: fdtdec: Rename routine fdtdec_setup_memory_size()

2018-07-16 Thread Siva Durga Prasad Paladugu
This patch renames the routine fdtdec_setup_memory_size() to fdtdec_setup_mem_size_base() as it now fills the mem base as well along with size. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v3: - Separted the rename patch --- arch/arm/mach-mvebu/arm64-common.c

[U-Boot] [UBOOT PATCH v4 1/5] lib: fdtdec: Update ram_base to store ram start adddress

2018-07-16 Thread Siva Durga Prasad Paladugu
This patch updates the ram_base to store the start address of the first bank DRAM and the use this ram_base to calculate ram_top properly. This patch fixes the erroneous calculation of ram_top incase of non zero ram start address. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal

Re: [U-Boot] [PATCH 3/3] net: zynq_gem: convert to use livetree

2018-07-16 Thread Siva Durga Prasad Paladugu
Hi Joe, > -Original Message- > From: Joe Hershberger [mailto:joe.hershber...@ni.com] > Sent: Thursday, July 12, 2018 12:26 AM > To: Siva Durga Prasad Paladugu ; Grygorii Strashko > > Cc: u-boot ; Joe Hershberger > ; Michal Simek ; Vipul > Kumar > Subject: R

Re: [U-Boot] [PATCH v7 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-07-16 Thread Siva Durga Prasad Paladugu
Hi Jagan, > -Original Message- > From: Jagan Teki [mailto:jagannadh.t...@gmail.com] > Sent: Monday, July 16, 2018 2:00 PM > To: Siva Durga Prasad Paladugu > Cc: U-Boot Mailing List ; Michal Simek > > Subject: Re: [U-Boot] [PATCH v7 1/2] spi: zynqmp_gqspi: Add supp

Re: [U-Boot] [PATCH 1/3] net: phy: ti: Modify to support livetree

2018-07-09 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Siva Durga Prasad Paladugu > Sent: Tuesday, July 10, 2018 9:32 AM > To: Grygorii Strashko ; u-boot@lists.denx.de > Cc: joe.hershber...@ni.com; Michal Simek > Subject: RE: [U-Boot] [PATCH 1/3] net: phy: ti: Modify to suppor

Re: [U-Boot] [PATCH 1/3] net: phy: ti: Modify to support livetree

2018-07-09 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Grygorii Strashko [mailto:grygorii.stras...@ti.com] > Sent: Monday, July 09, 2018 10:51 PM > To: Siva Durga Prasad Paladugu ; u- > b...@lists.denx.de > Cc: joe.hershber...@ni.com; Michal Simek > Subject: Re: [U-Boot] [PATCH 1/3]

[U-Boot] [PATCH 3/3] net: zynq_gem: convert to use livetree

2018-07-06 Thread Siva Durga Prasad Paladugu
This patch updates the zynq gem driver to support livetree. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Vipul Kumar --- drivers/net/zynq_gem.c | 29 ++--- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/drivers/net/zynq_gem.c b/drivers/net

[U-Boot] [PATCH 1/3] net: phy: ti: Modify to support livetree

2018-07-06 Thread Siva Durga Prasad Paladugu
This patch adds support for livetree by using dev_.. calls instead of fdtdec_.. Signed-off-by: Siva Durga Prasad Paladugu --- drivers/net/phy/ti.c | 16 +++- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/drivers/net/phy/ti.c b/drivers/net/phy/ti.c index 8f3ed8a

[U-Boot] [PATCH 2/3] net: phy: xilinx_phy: Add suuport for livetree

2018-07-06 Thread Siva Durga Prasad Paladugu
This patch adds support for livetree by using dev_.. calls instead of fdtdec_.. . Signed-off-by: Siva Durga Prasad Paladugu --- drivers/net/phy/xilinx_phy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/phy/xilinx_phy.c b/drivers/net/phy/xilinx_phy.c index

[U-Boot] [PATCH v7 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-07-04 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for ZynqMP SoC. This driver is responsible for communicating with qspi flash devices. Signed-off-by: Siva Durga Prasad Paladugu --- Changes for v7: - Removed reading of mode, clock phase and polarity from ofdata_to_platdata as drivercan get from spi-uclass

[U-Boot] [PATCH v7 2/2] zynqmp: zcu102: Add qspi driver support for ZynqMP zcu102 boards

2018-07-04 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for all ZynqMP ZCU102 boards. Signed-off-by: Siva Durga Prasad Paladugu Acked-by: Michal Simek --- Changes for v7: - Added "spi-flash" to compatible strings. Changes for v6: - None Changes for v5: - None Changes for v4: - None Changes for v3:

[U-Boot] [PATCH v6 2/2] zynqmp: zcu102: Add qspi driver support for ZynqMP zcu102 boards

2018-06-27 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for all ZynqMP ZCU102 boards. Signed-off-by: Siva Durga Prasad Paladugu Acked-by: Michal Simek --- Changes for v6: - None Changes for v5: - None Changes for v4: - None Changes for v3: - Changed as per latest changes in 1/2 Changes for v2: - Rebased on top

[U-Boot] [PATCH v6 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-06-27 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for ZynqMP SoC. This driver is responsible for communicating with qspi flash devices. Signed-off-by: Siva Durga Prasad Paladugu --- Changes for v6: - Removed spi_flash.h inclusion and other unused macros - Fixed coding style comments - Removed tx_rx_mode

Re: [U-Boot] [PATCH v5 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-06-27 Thread Siva Durga Prasad Paladugu
Hi Jagan, > -Original Message- > From: Jagan Teki [mailto:ja...@amarulasolutions.com] > Sent: Wednesday, June 27, 2018 12:52 PM > To: Siva Durga Prasad Paladugu > Cc: U-Boot-Denx ; Jagan Teki > ; Michal Simek > Subject: Re: [U-Boot] [PATCH v5 1/2] spi: zynq

[U-Boot] [PATCH v5] xilinx: zynq: Add support to secure images

2018-06-26 Thread Siva Durga Prasad Paladugu
encrypted image back to DDR as per destination address. The image has to be encrypted using xilinx bootgen tool and to get only the encrypted image from tool use -split option while invoking bootgen. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v4: - Moved license to top

[U-Boot] [PATCH v5 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-06-26 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for ZynqMP SoC. This driver is responsible for communicating with qspi flash devices. Signed-off-by: Siva Durga Prasad Paladugu --- Changed for v5: - Removed zynqm_gqspi.h file which was added by mistake. Changes for v4: - Moved macro definitions back to .c

[U-Boot] [PATCH v5 2/2] zynqmp: zcu102: Add qspi driver support for ZynqMP zcu102 boards

2018-06-26 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for all ZynqMP ZCU102 boards. Signed-off-by: Siva Durga Prasad Paladugu --- Changes for v5: - None Changes for v4: - None Changes for v3: - Changed as per latest changes in 1/2 Changes for v2: - Rebased on top of latest master and enabled qspi for all

[U-Boot] [PATCH v4 2/2] zynqmp: zcu102: Add qspi driver support for ZynqMP zcu102 boards

2018-06-26 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for all ZynqMP ZCU102 boards. Signed-off-by: Siva Durga Prasad Paladugu --- Changes for v4: - None Changes for v3: - Changed as per latest changes in 1/2 Changes for v2: - Rebased on top of latest master and enabled qspi for all zcu102 boards. --- configs

[U-Boot] [PATCH v4 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-06-26 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for ZynqMP SoC. This driver is responsible for communicating with qspi flash devices. Signed-off-by: Siva Durga Prasad Paladugu --- Changes for v4: - Moved macro definitions back to .c - Removed last_cmd and flash command checks in driver - Used macros

Re: [U-Boot] [RFC PATCH] fpga: zynq: Add encrypted bitstream support with auto detect

2018-06-19 Thread Siva Durga Prasad Paladugu
Hi Stefan, > -Original Message- > From: ste...@herbrechtsmeier.net [mailto:ste...@herbrechtsmeier.net] > Sent: Friday, June 08, 2018 5:29 PM > To: Siva Durga Prasad Paladugu > Cc: Stefan Herbrechtsmeier ; > u-boot@lists.denx.de; Michal Simek ; > mon...@monstr.eu

Re: [U-Boot] [RFC PATCH] fpga: zynq: Add encrypted bitstream support with auto detect

2018-06-19 Thread Siva Durga Prasad Paladugu
Hi Stefan, Yes, I checked and it looks fine functionally, I even tested it. Otherthan this, I have few comments on this which I am going to reply to your RFC patch mail. Thanks, Siva > -Original Message- > From: Siva Durga Prasad Paladugu > Sent: Tuesday, June 12, 201

[U-Boot] [PATCH v4] xilinx: zynq: Add support to secure images

2018-06-18 Thread Siva Durga Prasad Paladugu
encrypted image back to DDR as per destination address. The image has to be encrypted using xilinx bootgen tool and to get only the encrypted image from tool use -split option while invoking bootgen. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v3: - Removed aesload

[U-Boot] [PATCH v3 4/4] arm: zynq: Add parallel NOR flash mini u-boot configuration for zynq

2018-06-18 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint OCM memory. This configuration only has required parallel nor flash support. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v2: - None Changes from v1: - None --- arch/arm/dts/Makefile

[U-Boot] [PATCH v3 2/4] arm: zynq: Dont define SDRAM_BASE and SDRAM_SIZE in .h

2018-06-18 Thread Siva Durga Prasad Paladugu
Remove the SDRAM_BASE nad SDRAM_SIZE as it can now get these details from DT. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v2: - None Changes from v1: - Removed commit reference from description as per comment --- include/configs/zynq_cse.h | 3 --- 1 file changed, 3 deletions

[U-Boot] [PATCH v3 3/4] arm: zynq: Add Nand flash mini u-boot configuration for zynq

2018-06-18 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint of memory. This configuration has only required nand flash support. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v2: - None Changes from v1: - Update memory node as per comment - Removed

[U-Boot] [PATCH v3 1/4] lib: fdtdec: Add new variable ram_start to global data

2018-06-18 Thread Siva Durga Prasad Paladugu
fdtdec_setup_memory_size() to fdtdec_setup_mem_size_start() as this routine now takes care of memory size and start. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- Changes from v2: - Used new varibale ram_start - Rename fdtdec_setup_memory_size Changes from v1: - None --- arch/arm

Re: [U-Boot] [PATCH 1/4] lib: fdtdec: Fill initial ram top with DDR start value from dt

2018-06-14 Thread Siva Durga Prasad Paladugu
Hi Simon, > -Original Message- > From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass > Sent: Saturday, June 09, 2018 3:29 AM > To: Michal Simek > Cc: Siva Durga Prasad Paladugu ; U-Boot Mailing List > ; Tom Rini > Subject: Re: [PATCH 1/4] lib:

Re: [U-Boot] [PATCH] mmc: sdhci: Fix MMC HS200 tuning command failures

2018-06-12 Thread Siva Durga Prasad Paladugu
these. I will talk to Michal, if he can send this patch on my behalf till my e-mail issue got resolved Thanks, Siva On Tue, Jun 12, 2018 at 5:57 PM, Masahiro Yamada < yamada.masah...@socionext.com> wrote: > 2018-06-12 21:00 GMT+09:00 Siva Durga Prasad Paladugu > : > > This patch fi

[U-Boot] [PATCH] mmc: sdhci: Fix MMC HS200 tuning command failures

2018-06-12 Thread Siva Durga Prasad Paladugu
This patch fixes the mmc tuning command failures when tuning pattern data needs to read back for comparision against the excpected bit pattern. Signed-off-by: Siva Durga Prasad Paladugu --- drivers/mmc/sdhci.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers

Re: [U-Boot] HS200 for SDHCI is broken

2018-06-12 Thread Siva Durga Prasad Paladugu
L; if (!(cmd->resp_type & MMC_RSP_PRESENT)) Thanks, Siva > -Original Message- > From: Michal Simek [mailto:michal.si...@xilinx.com] > Sent: Tuesday, June 12, 2018 2:34 PM > To: Masahiro Yamada ; Siva Durga > Prasad Paladugu ; Michal Simek > ; U-Boot Ma

Re: [U-Boot] [RFC PATCH] fpga: zynq: Add encrypted bitstream support with auto detect

2018-06-11 Thread Siva Durga Prasad Paladugu
Hi Stefan, > -Original Message- > From: stefan.herbrechtsme...@weidmueller.com > [mailto:stefan.herbrechtsme...@weidmueller.com] > Sent: Monday, June 11, 2018 9:33 PM > To: Siva Durga Prasad Paladugu ; > ste...@herbrechtsmeier.net > Cc: u-boot@lists.denx.de; michal.

[U-Boot] [PATCH v3] xilinx: zynq: Add support to secure images

2018-06-11 Thread Siva Durga Prasad Paladugu
Durga Prasad Paladugu --- Changes from v2: - Created separate commands for zynq aesload and aesloadp as per comment - Fixed all other coding style comments Changes from v1: - Defined two config synbols for RSA and AES separately and used them wherever required. - Used U_BOOT_CMD_KENT as per

Re: [U-Boot] [RFC PATCH] fpga: zynq: Add encrypted bitstream support with auto detect

2018-06-11 Thread Siva Durga Prasad Paladugu
> Sent: Friday, June 08, 2018 5:29 PM > To: Siva Durga Prasad Paladugu > Cc: Stefan Herbrechtsmeier ; > u-boot@lists.denx.de; Michal Simek ; > mon...@monstr.eu > Subject: [RFC PATCH] fpga: zynq: Add encrypted bitstream support with > auto detect > > From: Stefan H

[U-Boot] [PATCH v2 3/4] arm: zynq: Add Nand flash mini u-boot configuration for zynq

2018-06-08 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint of memory. This configuration has only required nand flash support. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v1: - Update memory node as per comment - Removed intc and fclk as per

[U-Boot] [PATCH v2 2/4] arm: zynq: Dont define SDRAM_BASE and SDRAM_SIZE in .h

2018-06-08 Thread Siva Durga Prasad Paladugu
Remove the SDRAM_BASE nad SDRAM_SIZE as it can now get these details from DT. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v1: - Removed commit reference from description as per comment --- include/configs/zynq_cse.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include

[U-Boot] [PATCH v2 4/4] arm: zynq: Add parallel NOR flash mini u-boot configuration for zynq

2018-06-08 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint OCM memory. This configuration only has required parallel nor flash support. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v1: - None --- arch/arm/dts/Makefile | 1 + arch/arm/dts

[U-Boot] [PATCH v2 1/4] lib: fdtdec: Fill initial ram top with DDR start value from dt

2018-06-08 Thread Siva Durga Prasad Paladugu
Fill initial ram top with DDR base addr value from DT as not filling it here always assumes it as zero while calculating relocation offset and hence lead to failures in somecases. This will assumed as zero if CONFIG_SYS_SDRAM_BASE is not defined. Signed-off-by: Siva Durga Prasad Paladugu Signed

[U-Boot] [PATCH v2] xilinx: zynq: Add support to secure images

2018-06-07 Thread Siva Durga Prasad Paladugu
Durga Prasad Paladugu --- Changes from v1: - Defined two config synbols for RSA and AES separately and used them wherever required. - Used U_BOOT_CMD_KENT as per comment - Cleared DEVCFG_CTRL_PCAP_RATE_EN_MASK once decryption is done. Changes from RFC: - Moved zynqaes to board/xilinx/zynq/cmds.c

[U-Boot] [PATCH] arm64: zynqmp: Split emmc configuration into emmc0 and emmc1

2018-06-05 Thread Siva Durga Prasad Paladugu
CONFIG_MMC_SDHCI_ZYNQ through defconfig. Signed-off-by: Siva Durga Prasad Paladugu --- arch/arm/dts/Makefile | 4 +- ...{zynqmp-mini-emmc.dts => zynqmp-mini-emmc0.dts} | 20 ++- arch/arm/dts/zynqmp-mini-emmc1.dts | 67 ++ ...efcon

[U-Boot] [PATCH 4/4] arm: zynq: Add parallel NOR flash mini u-boot configuration for zynq

2018-06-05 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint OCM memory. This configuration only has required parallel nor flash support. Signed-off-by: Siva Durga Prasad Paladugu --- arch/arm/dts/Makefile | 1 + arch/arm/dts/zynq-cse-nor.dts | 88

[U-Boot] [PATCH 2/4] arm: zynq: Dont define SDRAM_BASE and SDRAM_SIZE in .h

2018-06-05 Thread Siva Durga Prasad Paladugu
Remove the SDRAM_BASE nad SDRAM_SIZE as it can now get these details from DT using 'commit 327f66622391 ("lib: fdtdec: Fill initial ram top with DDR start value from dt")' Signed-off-by: Siva Durga Prasad Paladugu --- include/configs/zynq_cse.h | 3 --- 1 file changed, 3 deletion

[U-Boot] [PATCH 3/4] arm: zynq: Add Nand flash mini u-boot configuration for zynq

2018-06-05 Thread Siva Durga Prasad Paladugu
Add configuration files/dtses for mini u-boot configuration which runs on smaller footprint of memory. This configuration has only required nand flash support. Signed-off-by: Siva Durga Prasad Paladugu --- arch/arm/dts/Makefile | 1 + arch/arm/dts/zynq-cse-nand.dts | 90

[U-Boot] [PATCH 1/4] lib: fdtdec: Fill initial ram top with DDR start value from dt

2018-06-05 Thread Siva Durga Prasad Paladugu
Fill initial ram top with DDR base addr value from DT as not filling it here always assumes it as zero while calculating relocation offset and hence lead to failures in somecases. This will assumed as zero if CONFIG_SYS_SDRAM_BASE is not defined. Signed-off-by: Siva Durga Prasad Paladugu Signed

Re: [U-Boot] [PATCH] xilinx: zynq: Add support to secure images

2018-05-31 Thread Siva Durga Prasad Paladugu
Hi Stefan, > -Original Message- > From: Stefan Herbrechtsmeier [mailto:ste...@herbrechtsmeier.net] > Sent: Thursday, May 31, 2018 10:57 PM > To: Siva Durga Prasad Paladugu ; u- > b...@lists.denx.de > Cc: michal.si...@xilinx.com > Subject: Re: [U-Boot] [PATCH] xili

Re: [U-Boot] [PATCH] xilinx: zynq: Add support to secure images

2018-05-31 Thread Siva Durga Prasad Paladugu
Hi Stefan, > -Original Message- > From: Stefan Herbrechtsmeier [mailto:ste...@herbrechtsmeier.net] > Sent: Thursday, May 31, 2018 3:43 PM > To: Siva Durga Prasad Paladugu ; u- > b...@lists.denx.de > Cc: michal.si...@xilinx.com > Subject: Re: [U-Boot] [PATCH] xili

[U-Boot] [PATCH v2 3/3] fpga: zynqmp: Add secure bitstream loading for ZynqMP

2018-05-31 Thread Siva Durga Prasad Paladugu
This patch adds support for loading secure bitstreams on ZynqMP platforms. The secure bitstream images has to be generated using Xilinx bootgen tool. Signed-off-by: Siva Durga Prasad Paladugu --- Changes for v2: - None --- arch/arm/include/asm/arch-zynqmp/sys_proto.h | 6 configs

[U-Boot] [PATCH v2 1/3] cmd: fpga: Reorder the arguments parsing code

2018-05-31 Thread Siva Durga Prasad Paladugu
Durga Prasad Paladugu --- Changes for v2: - Correct the argc check as per comment. --- cmd/fpga.c | 31 +++ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/cmd/fpga.c b/cmd/fpga.c index 14ad4e5..3f09d42 100644 --- a/cmd/fpga.c +++ b/cmd/fpga.c @@ -60,15

[U-Boot] [PATCH v2 2/3] cmd: fpga: Add support to load secure bitstreams

2018-05-31 Thread Siva Durga Prasad Paladugu
authenticated and device key encrypted bitstream is as follows "fpga loads 0 10 200 0 1" Signed-off-by: Siva Durga Prasad Paladugu --- Changes for v2: - None --- cmd/Kconfig | 7 ++ cmd/fpga.c | 62 - dr

[U-Boot] [PATCH] xilinx: zynq: Add support to secure images

2018-05-31 Thread Siva Durga Prasad Paladugu
Durga Prasad Paladugu --- Changes from RFC: - Moved zynqaes to board/xilinx/zynq/cmds.c and renamed as "zynq aes". - Moved boot image parsing code to a separate file. - Squashed in to a single patch. - Fixed coding style comments. --- arch/arm/Kconfig | 1 + board/xilinx/zy

Re: [U-Boot] [PATCH 2/3] cmd: fpga: Add support to load secure bitstreams

2018-05-31 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Michal Simek [mailto:michal.si...@xilinx.com] > Sent: Thursday, May 31, 2018 11:29 AM > To: Siva Durga Prasad Paladugu ; u- > b...@lists.denx.de > Cc: michal.si...@xilinx.com > Subject: Re: [PATCH 2/3] cmd: fpga: Add support to l

Re: [U-Boot] [PATCH 1/3] cmd: fpga: Reorder the arguments parsing code

2018-05-30 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Michal Simek [mailto:michal.si...@xilinx.com] > Sent: Wednesday, May 30, 2018 8:37 PM > To: Siva Durga Prasad Paladugu ; u- > b...@lists.denx.de > Cc: michal.si...@xilinx.com > Subject: Re: [PATCH 1/3] cmd: fpga: Reorder the a

[U-Boot] [PATCH v2 1/2] mmc: sdhci: Update sdhci_send_command() to handle HS200

2018-05-29 Thread Siva Durga Prasad Paladugu
This patch updates sdhci_send_command() to handle MMC HS200 tuning command. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v1: - Fixed spacings as per comment --- drivers/mmc/sdhci.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/sdhci.c b

[U-Boot] [PATCH v2 2/2] mmc: zynqmp: Add HS200 modes support for ZynqMP

2018-05-29 Thread Siva Durga Prasad Paladugu
This patch adds HS200 suuport for ZynqMP and enables the same for ZC1751 DC1 board which has eMMC on it. Signed-off-by: Siva Durga Prasad Paladugu --- Changes from v1: - Fixed coding style as per comment --- configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig | 1 + drivers/mmc/zynq_sdhci.c

[U-Boot] [PATCH 3/3] fpga: zynqmp: Add secure bitstream loading for ZynqMP

2018-05-29 Thread Siva Durga Prasad Paladugu
This patch adds support for loading secure bitstreams on ZynqMP platforms. The secure bitstream images has to be generated using Xilinx bootgen tool. Signed-off-by: Siva Durga Prasad Paladugu --- arch/arm/include/asm/arch-zynqmp/sys_proto.h | 6 configs

[U-Boot] [PATCH 2/3] cmd: fpga: Add support to load secure bitstreams

2018-05-29 Thread Siva Durga Prasad Paladugu
authenticated and device key encrypted bitstream is as follows "fpga loads 0 10 200 0 1" Signed-off-by: Siva Durga Prasad Paladugu --- cmd/Kconfig | 7 ++ cmd/fpga.c | 62 - drivers/fpga/f

[U-Boot] [PATCH 1/3] cmd: fpga: Reorder the arguments parsing code

2018-05-29 Thread Siva Durga Prasad Paladugu
Durga Prasad Paladugu --- cmd/fpga.c | 31 +++ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/cmd/fpga.c b/cmd/fpga.c index 14ad4e5..0981826 100644 --- a/cmd/fpga.c +++ b/cmd/fpga.c @@ -60,15 +60,31 @@ int do_fpga(cmd_tbl_t *cmdtp, int flag, int argc

Re: [U-Boot] [PATCH] sf: Enable FSR polling on N25Q256(A)

2018-05-28 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Jagan Teki [mailto:jagannadh.t...@gmail.com] > Sent: Tuesday, May 29, 2018 10:22 AM > To: Marek Vasut ; Siva Durga Prasad Paladugu > > Cc: U-Boot Mailing List ; Tom Rini > > Subject: Re: [U-Boot] [PATCH] sf: Enable FSR polling o

[U-Boot] [PATCH 1/2] mmc: sdhci: Update sdhci_send_command() to handle HS200

2018-05-24 Thread Siva Durga Prasad Paladugu
This patch updates sdhci_send_command() to handle MMC HS200 tuning command. Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.palad...@xilinx.com> --- drivers/mmc/sdhci.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/s

[U-Boot] [PATCH 2/2] mmc: zynqmp: Add HS200 modes support for ZynqMP

2018-05-24 Thread Siva Durga Prasad Paladugu
This patch adds HS200 suuport for ZynqMP and enables the same for ZC1751 DC1 board which has eMMC on it. Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.palad...@xilinx.com> --- configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig | 1 + drivers/mmc/zynq_sdhci.c

Re: [U-Boot] [PATCH v3 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-05-09 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Jagan Teki [mailto:jagannadh.t...@gmail.com] > Sent: Wednesday, May 09, 2018 4:47 PM > To: Siva Durga Prasad Paladugu <siva...@xilinx.com> > Cc: Jagan Teki <ja...@amarulasolutions.com>; U-Boot-Denx b...@lists.denx.de>; mic

Re: [U-Boot] [PATCH v3 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-05-09 Thread Siva Durga Prasad Paladugu
Hi Jagan, > -Original Message- > From: Jagan Teki [mailto:jagannadh.t...@gmail.com] > Sent: Wednesday, May 09, 2018 4:18 PM > To: Siva Durga Prasad Paladugu <siva...@xilinx.com> > Cc: Jagan Teki <ja...@amarulasolutions.com>; U-Boot-Denx b...@lists.denx.d

Re: [U-Boot] [PATCH v3 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-05-09 Thread Siva Durga Prasad Paladugu
Hi Jagan, > -Original Message- > From: Jagan Teki [mailto:jagannadh.t...@gmail.com] > Sent: Wednesday, May 09, 2018 1:22 PM > To: Siva Durga Prasad Paladugu <siva...@xilinx.com> > Cc: Jagan Teki <ja...@amarulasolutions.com>; U-Boot-Denx b...@lists.denx.d

Re: [U-Boot] [PATCH v3 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-05-09 Thread Siva Durga Prasad Paladugu
Hi, > -Original Message- > From: Jagan Teki [mailto:jagannadh.t...@gmail.com] > Sent: Wednesday, May 09, 2018 1:12 PM > To: Siva Durga Prasad Paladugu <siva...@xilinx.com> > Cc: Jagan Teki <ja...@amarulasolutions.com>; U-Boot-Denx b...@lists.denx.de>; mic

Re: [U-Boot] [PATCH v3 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-05-09 Thread Siva Durga Prasad Paladugu
Hi Jagan, > -Original Message- > From: Jagan Teki [mailto:ja...@amarulasolutions.com] > Sent: Wednesday, May 09, 2018 12:01 PM > To: Siva Durga Prasad Paladugu <siva...@xilinx.com> > Cc: U-Boot-Denx <u-boot@lists.denx.de>; michal.si...@xilinx.com > S

[U-Boot] [PATCH v3 1/2] spi: zynqmp_gqspi: Add support for ZynqMP qspi driver

2018-05-08 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for ZynqMP SoC. This driver is responsible for communicating with qspi flash devices. Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.palad...@xilinx.com> --- Changes for v3: - Renamed all macros, functions, files and configs as per comment

[U-Boot] [PATCH v3 2/2] zynqmp: zcu102: Add qspi driver support for ZynqMP zcu102 boards

2018-05-08 Thread Siva Durga Prasad Paladugu
This patch adds qspi driver support for all ZynqMP ZCU102 boards. Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.palad...@xilinx.com> --- Changes for v3: - Changed as per latest changes in 1/2 Changes for v2: - Rebased on top of latest master and enabled qspi for all zcu102

  1   2   3   4   >