[U-Boot] [UBOOT PATCH] Kconfig: Move config SYS_MALLOC_LEN to Kconfig for zynq

2018-07-20 Thread Vipul Kumar
From: Siva Durga Prasad Paladugu This patch moves the the config SYS_MALLOC_LEN to Kconfig. It will be just for Zynq arch and to do will be for all other archs. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Vipul Kumar --- Kconfig | 7 +++ arch/arm/mach

[U-Boot] [UBOOT PATCH] gpio: zynq: Used platdata structure for storing static data instead of priv

2018-07-20 Thread Vipul Kumar
This patch used platdata structure instead of priv for storing static information read from DT. Signed-off-by: Vipul Kumar --- drivers/gpio/zynq_gpio.c | 67 1 file changed, 34 insertions(+), 33 deletions(-) diff --git a/drivers/gpio/zynq_gpio.c

[U-Boot] [UBOOT PATCH v2] env: Added support to save env to spi through Kconfig

2018-07-17 Thread Vipul Kumar
This patch added support to enable CONFIG_ENV_SIZE, CONFIG_ENV_OFFSET and CONFIG_ENV_SECT_SIZE through Kconfig for Zynq and Zynqmp. Signed-off-by: Vipul Kumar --- Changes in v2: - Changed if condition of ENV_SIZE for Zynqmp - Changed if condition for ENV_SECT_SIZE --- env/Kconfig

[U-Boot] [UBOOT PATCH v5 0/4] spi:xilinx_spi: Modify xilinx spi driver

2018-06-29 Thread Vipul Kumar
name to xilinx_spi_startup_block() Michal Simek (1): spi: xilinx: Read reg base address from DTS file Vipul Kumar (3): spi: xilinx_spi: Modify transfer logic xilinx_spi_xfer() function spi: xilinx_spi: Added support to read JEDEC-id twice at the boot time spi: xilinx_spi: convert to

[U-Boot] [UBOOT PATCH v5 1/4] spi: xilinx: Read reg base address from DTS file

2018-06-29 Thread Vipul Kumar
From: Michal Simek This patch added support to read register base address from DTS file. Signed-off-by: Michal Simek Signed-off-by: Vipul Kumar --- Changes in v5: - No change --- drivers/spi/xilinx_spi.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/spi

[U-Boot] [UBOOT PATCH v5 4/4] spi: xilinx_spi: convert to livetree

2018-06-29 Thread Vipul Kumar
Update the xilinx spi driver to support a live tree. Signed-off-by: Vipul Kumar --- Changes in v5: - No change --- drivers/spi/xilinx_spi.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/spi/xilinx_spi.c b/drivers/spi/xilinx_spi.c index 8621738..2b5f2cf 100644

[U-Boot] [UBOOT PATCH v5 2/4] spi: xilinx_spi: Modify transfer logic xilinx_spi_xfer() function

2018-06-29 Thread Vipul Kumar
This patch modify xilinx_spi_xfer() function and add rxfifo() and txfifo() functions to add the modularity so that these functions can be used by other functions within the same file. This patch also added support to read fifo_size from dts. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga

[U-Boot] [UBOOT PATCH v5 3/4] spi: xilinx_spi: Added support to read JEDEC-id twice at the boot time

2018-06-29 Thread Vipul Kumar
This patch is for the startup block issue in the spi controller. SPI clock is passing through STARTUP block to FLASH. STARTUP block don't provide clock as soon as QSPI provides command. So, first command fails. This patch added support to read JEDEC id in xilinx_spi_xfer (). Signed-off-by:

[U-Boot] [UBOOT PATCH v4 3/4] spi: xilinx_spi: Added support to read JEDEC-id twice at the boot time

2018-06-28 Thread Vipul Kumar
This patch is for the startup block issue in the spi controller. SPI clock is passing through STARTUP block to FLASH. STARTUP block don't provide clock as soon as QSPI provides command. So, first command fails. This patch added support to read JEDEC id in xilinx_spi_xfer (). Signed-off-by:

[U-Boot] [UBOOT PATCH v4 2/4] spi: xilinx_spi: Modify transfer logic xilinx_spi_xfer() function

2018-06-28 Thread Vipul Kumar
This patch modify xilinx_spi_xfer() function and add rxfifo() and txfifo() functions to add the modularity so that these functions can be used by other functions within the same file. This patch also added support to read fifo_size from dts. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga

[U-Boot] [UBOOT PATCH v4 1/4] spi: xilinx: Read reg base address from DTS file

2018-06-28 Thread Vipul Kumar
From: Michal Simek This patch added support to read register base address from DTS file. Signed-off-by: Vipul Kumar --- Changes in v4: - No change --- drivers/spi/xilinx_spi.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/spi/xilinx_spi.c b/drivers/spi

[U-Boot] [UBOOT PATCH v4 0/4] spi:xilinx_spi: Modify xilinx spi driver

2018-06-28 Thread Vipul Kumar
: Read reg base address from DTS file Vipul Kumar (3): spi: xilinx_spi: Modify transfer logic xilinx_spi_xfer() function spi: xilinx_spi: Added support to read JEDEC-id twice at the boot time spi: xilinx_spi: convert to livetree drivers/spi/xilinx_spi.c | 152

[U-Boot] [UBOOT PATCH v4 4/4] spi: xilinx_spi: convert to livetree

2018-06-28 Thread Vipul Kumar
Update the xilinx spi driver to support a live tree. Signed-off-by: Vipul Kumar --- drivers/spi/xilinx_spi.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/spi/xilinx_spi.c b/drivers/spi/xilinx_spi.c index f66ea15..59ac851 100644 --- a/drivers/spi/xilinx_spi.c

[U-Boot] [UBOOT PATCH] env: Added support to save env to spi through Kconfig

2018-06-27 Thread Vipul Kumar
This patch added support to enable CONFIG_ENV_SIZE, CONFIG_ENV_OFFSET and CONFIG_ENV_SECT_SIZE through Kconfig for Zynq and Zynqmp. Signed-off-by: Vipul Kumar --- env/Kconfig | 27 +++ include/configs/xilinx_zynqmp.h | 3 --- include/configs/zynq

[U-Boot] [UBOOT PATCH] clk: zynqmp: Fixed the same if/else part error reported by coverity

2018-06-26 Thread Vipul Kumar
This patch fixed the same if/else part error by adding the required source select on the basis of is_pre_src check. Signed-off-by: Vipul Kumar --- drivers/clk/clk_zynqmp.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/clk/clk_zynqmp.c b/drivers/clk

Re: [U-Boot] [UBOOT PATCH v3 3/3] spi: xilinx_spi: Added support to read JEDEC-id twice at the boot time

2018-06-25 Thread Vipul Kumar
Hi Jagan, > -Original Message- > From: Jagan Teki [mailto:jagannadh.t...@gmail.com] > Sent: Monday, June 25, 2018 3:47 PM > To: Vipul Kumar > Cc: U-Boot Mailing List ; Michal Simek > > Subject: Re: [U-Boot] [UBOOT PATCH v3 3/3] spi: xilinx_spi: Added support to >

[U-Boot] [UBOOT PATCH v3 2/3] spi: xilinx_spi: Modify transfer logic xilinx_spi_xfer() function

2018-06-21 Thread Vipul Kumar
This patch modify xilinx_spi_xfer() function and add rxfifo() and txfifo() functions to add the modularity so that these functions can be used by other functions within the same file. This patch also added support to read fifo_size from dts. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga

[U-Boot] [UBOOT PATCH v3 3/3] spi: xilinx_spi: Added support to read JEDEC-id twice at the boot time

2018-06-21 Thread Vipul Kumar
This patch is for the startup block issue in the spi controller. SPI clock is passing through STARTUP block to FLASH. STARTUP block don't provide clock as soon as QSPI provides command. So, first command fails. This patch added support to read JEDEC id in xilinx_spi_xfer (). Signed-off-by:

[U-Boot] [UBOOT PATCH v3 0/3] spi:xilinx_spi: Modify xilinx spi driver

2018-06-21 Thread Vipul Kumar
in V3: - Read reg in probe function - Removed xilinx_spi_ofdata_to_platdata function - Added fifo_depth read support in 2/3 and removed from 1/3 Michal Simek (1): spi: xilinx: Read reg base address from DTS file Vipul Kumar (2): spi: xilinx_spi: Modify transfer logic xilinx_spi_xfer() function

[U-Boot] [UBOOT PATCH v3 1/3] spi: xilinx: Read reg base address from DTS file

2018-06-21 Thread Vipul Kumar
From: Michal Simek This patch added support to read register base address from DTS file. Signed-off-by: Michal Simek Signed-off-by: Vipul Kumar --- Changes in v3: - Read reg in probe function - Removed xilinx_spi_ofdata_to_platdata function - Removed reading of fifo_depth --- drivers/spi

Re: [U-Boot] [UBOOT PATCH v2 0/3] spi:xilinx_spi: Modify xilinx spi driver

2018-06-18 Thread Vipul Kumar
Hi Jagan, Do you have any comment on this series of patch ? Regards, Vipul > -Original Message- > From: Vipul Kumar [mailto:vipul.ku...@xilinx.com] > Sent: Tuesday, June 12, 2018 11:34 AM > To: u-boot@lists.denx.de > Cc: michal.si...@xilinx.com; Siva Durga Prasad

Re: [U-Boot] Issue with fat16 format

2018-06-18 Thread Vipul Kumar
Hi Heinrich, > -Original Message- > From: Heinrich Schuchardt [mailto:xypron.deb...@gmx.de] > Sent: Sunday, June 17, 2018 1:07 AM > To: Vipul Kumar ; u-boot@lists.denx.de > Cc: Michal Simek ; Siva Durga Prasad Paladugu > ; Rob Clark ; Ɓukasz Majewski > ; Simon Gla

[U-Boot] Issue with fat16 format

2018-06-15 Thread Vipul Kumar
give your comments on this issue and point out what's causing this issue. Regards, Vipul Kumar This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable

[U-Boot] [UBOOT PATCH] spi: zynq_qspi: Fixed incorrect return value error

2018-06-13 Thread Vipul Kumar
This patch replaced "return 0" with "return status" to fix the incorrect return value error reported by the coverity. Signed-off-by: Vipul Kumar --- drivers/spi/zynq_qspi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/zynq_qspi.c b/dri

[U-Boot] [UBOOT PATCH v2 3/3] spi: xilinx_spi: Added support to read JEDEC-id twice at the boot time

2018-06-11 Thread Vipul Kumar
This patch is for the startup block issue in the spi controller. SPI clock is passing through STARTUP block to FLASH. STARTUP block don't provide clock as soon as QSPI provides command. So, first command fails. This patch added support to read JEDEC id in xilinx_spi_xfer (). Signed-off-by:

[U-Boot] [UBOOT PATCH v2 2/3] spi: xilinx_spi: Modify transfer logic xilinx_spi_xfer() function

2018-06-11 Thread Vipul Kumar
This patch modify xilinx_spi_xfer() function and add rxfifo() and txfifo() functions to add the modularity. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/spi/xilinx_spi.c | 98 +++- 1 file changed, 63 insertions

[U-Boot] [UBOOT PATCH v2 0/3] spi:xilinx_spi: Modify xilinx spi driver

2018-06-11 Thread Vipul Kumar
Simek (1): spi: xilinx: Read reg base address from DTS file Vipul Kumar (2): spi: xilinx_spi: Modify transfer logic xilinx_spi_xfer() function spi: xilinx_spi: Added support to read JEDEC-id twice at the boot time drivers/spi/xilinx_spi.c | 165

[U-Boot] [UBOOT PATCH v2 1/3] spi: xilinx: Read reg base address from DTS file

2018-06-11 Thread Vipul Kumar
From: Michal Simek This patch added support to read register base address from DTS file. Signed-off-by: Michal Simek Signed-off-by: Vipul Kumar --- drivers/spi/xilinx_spi.c | 24 +--- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/drivers/spi/xilinx_spi.c

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

2018-06-11 Thread Vipul Kumar
Update the DWC3 USB driver to support a live tree. Signed-off-by: Vipul Kumar --- drivers/usb/common/common.c | 11 +-- drivers/usb/dwc3/dwc3-generic.c | 17 +++-- drivers/usb/host/xhci-dwc3.c| 3 ++- drivers/usb/host/xhci-zynqmp.c | 3 +-- include/linux/usb/otg.h

Re: [U-Boot] [UBOOT PATCH] spi: xilinx_spi: Modify xilinx spi driver

2018-06-04 Thread Vipul Kumar
Hi Jagan, Do you have any comments on this? If not, could you please take it up. Thanks, Vipul > -Original Message- > From: Vipul Kumar [mailto:vipul.ku...@xilinx.com] > Sent: Monday, May 28, 2018 6:06 PM > To: u-boot@lists.denx.de > Cc: michal.si...@xilinx.com; Si

[U-Boot] [UBOOT PATCH] spi: xilinx_spi: Modify xilinx spi driver

2018-05-28 Thread Vipul Kumar
on as QSPI provides command. So, first command fails. This patch added support to read JEDEC id in xilinx_spi_xfer () before performing the spi operations. Signed-off-by: Vipul Kumar --- drivers/spi/xilinx_spi.c | 161 +++ 1 file changed, 121 inser

Re: [U-Boot] [UBOOT PATCH] env: mmc: Fix misaligned buffer address when saving envvars to FAT

2018-05-17 Thread Vipul Kumar
Hi, > -Original Message- > From: Alex Kiernan [mailto:alex.kier...@gmail.com] > Sent: Thursday, May 17, 2018 1:31 PM > To: Vipul Kumar > Cc: u-boot ; gmus...@ciena.com; Michal Simek > ; Siva Durga Prasad Paladugu > > Subject: Re: [U-Boot] [UBOOT PATCH] env: mm

[U-Boot] [UBOOT PATCH] env: mmc: Fix misaligned buffer address when saving envvars to FAT

2018-05-17 Thread Vipul Kumar
ate boundary. Signed-off-by: Gary Mussar Signed-off-by: Vipul Kumar --- include/environment.h | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/environment.h b/include/environment.h index 50c62c5..d6c530d 100644 --- a/include/environment.h +++ b/include/environmen

[U-Boot] [UBOOT PATCH v3] microblaze: wdt: Added Kconfig support for CONFIG_XILINX_TB_WATCHDOG

2018-03-06 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_XILINX_TB_WATCHDOG and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- Changes in v3: - Removed select hw_watchdog - Branch: u-boot-microblaze/kconfig --- configs/microblaze

Re: [U-Boot] [UBOOT PATCH v2 2/2] arm64: zynqmp: mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI1

2018-02-28 Thread Vipul Kumar
Hi Jaehoon, > -Original Message- > From: Jaehoon Chung [mailto:jh80.ch...@samsung.com] > Sent: Wednesday, February 28, 2018 1:13 PM > To: Vipul Kumar ; u-boot@lists.denx.de > Cc: Vipul Kumar ; michal.si...@xilinx.com; Siva Durga > Prasad Paladugu > Subject: Re: [U-Bo

[U-Boot] [UBOOT PATCH v2 0/2] mmc: Added Kconfig support to set minimum and maximum frequency of the mmc controller

2018-02-28 Thread Vipul Kumar
This series of patch added Kconfig support for CONFIG_ZYNQ_SDHCI_MAX_FREQ and CONFIG_ZYNQ_SDHCI_MIN_FREQ and set the default values. -Changes in V2: -Set min. frequency for ep 100KHz -Branch: u-boot-microblaze/kconfig Vipul Kumar (2): mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI_MAX_FREQ

[U-Boot] [UBOOT PATCH v2 2/2] mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI_MIN_FREQ

2018-02-28 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_SDHCI_MIN_FREQ and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- - Changes in v2: - Set min. frequency for ep 100KHz - Branch: u-boot-microblaze/kconfig --- configs

[U-Boot] [UBOOT PATCH v2 1/2] mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI_MAX_FREQ

2018-02-28 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_SDHCI_MAX_FREQ and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- arch/arm/cpu/armv8/zynqmp/Kconfig | 3 +++ arch/arm/mach-zynq/Kconfig | 3 +++ configs

[U-Boot] [UBOOT PATCH v2 2/2] eeprom: Added Kconfig support for eeprom u-boot headers

2018-02-28 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_EEPROM_BUS and CONFIG_ZYNQ_GEM_EEPROM_ADDR and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- - Changes in V2: - Added depends on ARCH_ZYNQ - Branch: u-boot-microblaze/kconfig

[U-Boot] [UBOOT PATCH v2 1/2] eeprom: Enabled eeprom u-boot headers in defconfig

2018-02-28 Thread Vipul Kumar
This patch enabled eeprom related u-boot headers in the respective defconfig and removed CONFIG_ZYNQ_EEPROM. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- - Changes in v2: - Removed CONFIG_ZYNQ_EEPROM for zynqmp. - Enabled configs defined under CONFIG_ZYNQ_EEPROM for

[U-Boot] [UBOOT PATCH v2 0/2] eeprom: Moved eeprom u-boot headers to the Kconfig

2018-02-28 Thread Vipul Kumar
zynq - in defconfig and removed CONFIG_ZYNQ_EEPROM. - Added depends on ARCH_ZYNQ - Branch: u-boot-microblaze/kconfig Vipul Kumar (2): eeprom: Enabled eeprom u-boot headers in defconfig eeprom: Added Kconfig support for eeprom u-boot headers configs/syzygy_hub_defconfig | 1

[U-Boot] [UBOOT PATCH v2 1/2] arm64: zynqmp: mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI0

2018-02-27 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_SDHCI0 and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- - Changes in v2: - Added depends on MMC_SDHCI_ZYNQ - Branch: u-boot-microblaze/kconfig --- arch/arm/cpu/armv8/zynqmp/Kconfig

[U-Boot] [UBOOT PATCH v2 0/2] arm64: zynqmp: mmc: Moved mmc u-boot headers to the Kconfig

2018-02-27 Thread Vipul Kumar
This series of patch moved mmc u-boot headers to the Kconfig and enabled it in respective defconfig. These are the configs: -CONFIG_ZYNQ_SDHCI0 -CONFIG_ZYNQ_SDHCI1 -Changes in V2: - Added depends on MMC_SDHCI_ZYNQ - Branch: u-boot-microblaze/kconfig Vipul Kumar (2): arm64: zynqmp: mmc: Added

[U-Boot] [UBOOT PATCH v2 2/2] arm64: zynqmp: mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI1

2018-02-27 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_SDHCI1 and enabled it in defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- - Changes in v2: - Added depends on MMC_SDHCI_ZYNQ - Branch: u-boot-microblaze/kconfig --- arch/arm/cpu/armv8/zynqmp/Kconfig

[U-Boot] [UBOOT PATCH v2 0/2] microblaze: Moved U-boot headers to Kconfig

2018-02-27 Thread Vipul Kumar
ze/kconfig Vipul Kumar (2): microblaze: Added Kconfig support for CONFIG_XILINX_GPIO microblaze: wdt: Added Kconfig support for CONFIG_XILINX_TB_WATCHDOG configs/microblaze-generic_defconfig | 2 ++ drivers/gpio/Kconfig | 5 + drivers/watchdog/Kconfig | 7 ++

[U-Boot] [UBOOT PATCH v2 2/2] microblaze: wdt: Added Kconfig support for CONFIG_XILINX_TB_WATCHDOG

2018-02-27 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_XILINX_TB_WATCHDOG and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- - Changes in v2: - Added select HW_WATCHDOG - Branch: u-boot-microblaze/kconfig --- configs/microblaze

[U-Boot] [UBOOT PATCH v2 1/2] microblaze: Added Kconfig support for CONFIG_XILINX_GPIO

2018-02-27 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_XILINX_GPIO and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- - Changes in v2: - Removed "Enable" from description - Branch: u-boot-microblaze/kconfig --- configs/

[U-Boot] [UBOOT PATCH v2 2/2] spi: Added Kconfig support for SYS_ZYNQ_SPI_WAIT and XILINX_SPI_IDLE_VAL

2018-02-27 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_ZYNQ_SPI_WAIT and CONFIG_XILINX_SPI_IDLE_VAL and set default value. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- - Changes in V2: - Added depends on XILINX_SPI - Branch: u-boot-microblaze/kconfig --- drivers/spi

[U-Boot] [UBOOT PATCH v2 1/2] qspi: Added Kconfig support for CONFIG_SYS_ZYNQ_QSPI_WAIT

2018-02-27 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_ZYNQ_QSPI_WAIT and set it to default value 10 milliseconds. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- -Changes in v2: - Added depends on ZYNQ_QSPI - Branch: u-boot-microblaze/kconfig --- drivers/spi/Kconfig | 7

[U-Boot] [UBOOT PATCH v2 0/2] spi: Moved spi u-bbot headers to Kconfig

2018-02-27 Thread Vipul Kumar
This seris of patch moved spi headers to Kconfig. These are the configs: -CONFIG_SYS_ZYNQ_SPI_WAIT -CONFIG_XILINX_SPI_IDLE_VAL -CONFIG_SYS_ZYNQ_QSPI_WAIT -Changes in V2: - Added depends on ZYNQ_QSPI - Added depends on XILINX_SPI - Branch: u-boot-microblaze/kconfig Vipul Kumar (2): qspi: Added

[U-Boot] [UBOOT PATCH 0/2] eeprom: Moved eeprom u-boot headers to the Kconfig

2018-02-22 Thread Vipul Kumar
This series of patch added Kconfig support for eeprom u-boot headers and enabled in respective defconfig. These are the configs: -CONFIG_ZYNQ_EEPROM -CONFIG_ZYNQ_EEPROM_BUS -CONFIG_ZYNQ_GEM_EEPROM_ADDR Vipul Kumar (2): eeprom: Added Kconfig support for ZYNQ_EEPROM eeprom: Added Kconfig

[U-Boot] [UBOOT PATCH 2/2] eeprom: Added Kconfig support for eeprom u-boot headers

2018-02-22 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_EEPROM_BUS and CONFIG_ZYNQ_GEM_EEPROM_ADDR and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/syzygy_hub_defconfig | 1 + configs

[U-Boot] [UBOOT PATCH 1/2] eeprom: Added Kconfig support for ZYNQ_EEPROM

2018-02-22 Thread Vipul Kumar
This patch added Kconfig support for ZYNQ_EEPROM and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/xilinx_zynqmp_ep_defconfig | 1 + configs/zynq_zc702_defconfig | 1 + configs/zynq_zc706_defconfig | 1

[U-Boot] [UBOOT PATCH 2/2] mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI_MIN_FREQ

2018-02-22 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_SDHCI_MIN_FREQ and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/xilinx_zynqmp_ep_defconfig | 1 + drivers/mmc/Kconfig| 7 +++ drivers/mmc/zynq_sdhci.c

[U-Boot] [UBOOT PATCH 0/2] mmc: Added Kconfig support to set minimum and maximum frequency of the mmc controller

2018-02-22 Thread Vipul Kumar
This series of patch added Kconfig support for CONFIG_ZYNQ_SDHCI_MAX_FREQ and CONFIG_ZYNQ_SDHCI_MIN_FREQ and set the default values. Vipul Kumar (2): mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI_MAX_FREQ mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI_MIN_FREQ arch/arm/cpu/armv8/zynqmp

[U-Boot] [UBOOT PATCH 1/2] mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI_MAX_FREQ

2018-02-22 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_SDHCI_MAX_FREQ and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- arch/arm/cpu/armv8/zynqmp/Kconfig | 3 +++ arch/arm/mach-zynq/Kconfig | 3 +++ configs

[U-Boot] [UBOOT PATCH 0/2] arm64: zynqmp: mmc: Moved mmc u-boot headers to the Kconfig

2018-02-22 Thread Vipul Kumar
This series of patch moved mmc u-boot headers to the Kconfig and enabled it in respective defconfig. These are the configs: -CONFIG_ZYNQ_SDHCI0 -CONFIG_ZYNQ_SDHCI1 Vipul Kumar (2): arm64: zynqmp: mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI0 arm64: zynqmp: mmc: Added Kconfig support for

[U-Boot] [UBOOT PATCH 1/2] arm64: zynqmp: mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI0

2018-02-22 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_SDHCI0 and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- arch/arm/cpu/armv8/zynqmp/Kconfig| 5 + configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig | 1 + configs

[U-Boot] [UBOOT PATCH 2/2] arm64: zynqmp: mmc: Added Kconfig support for CONFIG_ZYNQ_SDHCI1

2018-02-22 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_SDHCI1 and enabled it in defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- arch/arm/cpu/armv8/zynqmp/Kconfig| 5 + configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig | 1 + configs

[U-Boot] [UBOOT PATCH 5/6] i2c: Added Kconfig support for CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/syzygy_hub_defconfig | 1 + configs/xilinx_zynqmp_zcu102_rev1_0_defconfig | 1 + configs

[U-Boot] [UBOOT PATCH 6/6] i2c: Added kconfig support for CONFIG_ZYNQ_I2C0 and CONFIG_ZYNQ_I2C1

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_I2C0 and CONFIG_ZYNQ_I2C1 and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/syzygy_hub_defconfig | 1 + configs/topic_miami_defconfig | 2

[U-Boot] [UBOOT PATCH 2/2] microblaze: wdt: Added Kconfig support for CONFIG_XILINX_TB_WATCHDOG

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_XILINX_TB_WATCHDOG and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/microblaze-generic_defconfig | 1 + drivers/watchdog/Kconfig | 6 ++ include/configs

[U-Boot] [UBOOT PATCH 2/2] spi: Added Kconfig support for SYS_ZYNQ_SPI_WAIT and XILINX_SPI_IDLE_VAL

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_ZYNQ_SPI_WAIT and CONFIG_XILINX_SPI_IDLE_VAL and set default value. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/spi/Kconfig | 12 drivers/spi/xilinx_spi.c | 4 drivers/spi/zynq_spi.c

[U-Boot] [UBOOT PATCH 1/2] qspi: Added Kconfig support for CONFIG_SYS_ZYNQ_QSPI_WAIT

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_ZYNQ_QSPI_WAIT and set it to default value 10 milliseconds. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/spi/Kconfig | 6 ++ drivers/spi/zynq_qspi.c | 3 --- 2 files changed, 6 insertions(+), 3

[U-Boot] [UBOOT PATCH 3/6] i2c: Added Kconfig support for CONFIG_SYS_I2C_ZYNQ_SLAVE

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_I2C_ZYNQ_SLAVE and set it default to 0. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/i2c/Kconfig | 7 +++ include/configs/xilinx_zynqmp.h | 1 - include/configs/zynq-common.h | 1 - 3 files

[U-Boot] [UBOOT PATCH 0/2] microblaze: Moved U-boot headers to Kconfig

2018-02-16 Thread Vipul Kumar
This seris of patch moved microblaze u-boot headers to the kconfig and enabled it in respective defconfig. These are the configs: -CONFIG_XILINX_GPIO -CONFIG_XILINX_TB_WATCHDOG Vipul Kumar (2): microblaze: Added Kconfig support for CONFIG_XILINX_GPIO microblaze: wdt: Added Kconfig support for

[U-Boot] [UBOOT PATCH 4/6] i2c: Added Kconfig support for CONFIG_SYS_I2C_ZYNQ_SPEED

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_I2C_ZYNQ_SPEED and set it to default value 10. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/i2c/Kconfig | 7 +++ include/configs/xilinx_zynqmp.h | 1 - include/configs/zynq-common.h | 1

[U-Boot] [UBOOT PATCH 3/4] arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_FPGA_ZYNQPL. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/fpga/Kconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/drivers/fpga/Kconfig b/drivers/fpga/Kconfig index ac08bc1..50e9019 100644 --- a

[U-Boot] [UBOOT PATCH 0/6] i2c: Moved i2c u-boot headers to Kconfig

2018-02-16 Thread Vipul Kumar
This series of patch moved i2c u-boot headers to the Kconfig and enabled in respective defconfig. These are the configs: -CONFIG_SYS_I2C_ZYNQ -CONFIG_SYS_I2C_ZYNQ_SLAVE -CONFIG_SYS_I2C_ZYNQ_SPEED -CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET -CONFIG_ZYNQ_I2C0 -CONFIG_ZYNQ_I2C1 Vipul Kumar (6): i2c: Added

[U-Boot] [UBOOT PATCH 0/2] spi: Moved spi u-bbot headers to Kconfig

2018-02-16 Thread Vipul Kumar
This seris of patch moved spi headers to Kconfig. These are the configs: -CONFIG_SYS_ZYNQ_SPI_WAIT -CONFIG_XILINX_SPI_IDLE_VAL -CONFIG_SYS_ZYNQ_QSPI_WAIT Vipul Kumar (2): qspi: Added Kconfig support for CONFIG_SYS_ZYNQ_QSPI_WAIT spi: Added Kconfig support for SYS_ZYNQ_SPI_WAIT and

[U-Boot] [UBOOT PATCH 1/2] microblaze: Added Kconfig support for CONFIG_XILINX_GPIO

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_XILINX_GPIO and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/microblaze-generic_defconfig | 1 + drivers/gpio/Kconfig | 5 + include/configs/microblaze

[U-Boot] [UBOOT PATCH 1/6] i2c: Added Kconfig support for CONFIG_SYS_I2C_ZYNQ

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_I2C_ZYNQ. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/i2c/Kconfig | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig index 7dbec77..62d134c 100644 --- a/drivers

[U-Boot] [UBOOT PATCH 2/6] i2c: Enabled CONFIG_SYS_I2C_ZYNQ in the respective defconfig

2018-02-16 Thread Vipul Kumar
This patch enabled CONFIG_SYS_I2C_ZYNQ in the respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/syzygy_hub_defconfig | 1 + configs/topic_miami_defconfig | 1 + configs/topic_miamilite_defconfig

[U-Boot] [UBOOT PATCH 2/4] fpga: Added CONFIG_FPGA_SPARTAN3 in the the respective defconfig

2018-02-16 Thread Vipul Kumar
This patch added CONFIG_FPGA_SPARTAN3 in the respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/apf27_defconfig | 1 + configs/astro_mcf5373l_defconfig | 1 + configs/mt_ventoux_defconfig | 1 + configs/x600_defconfig

[U-Boot] [UBOOT PATCH 4/4] arm: zynq: fpga: Added CONFIG_FPGA_ZYNQPL in the respective defconfig

2018-02-16 Thread Vipul Kumar
This patch added CONFIG_FPGA_ZYNQPL in the respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/syzygy_hub_defconfig | 1 + configs/topic_miami_defconfig | 1 + configs/topic_miamilite_defconfig | 1 + configs

[U-Boot] [UBOOT PATCH 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for FPGA_SPARTAN3. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/fpga/Kconfig | 5 + 1 file changed, 5 insertions(+) diff --git a/drivers/fpga/Kconfig b/drivers/fpga/Kconfig index 6b2c866..ac08bc1 100644 --- a/drivers

[U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig

2018-02-16 Thread Vipul Kumar
This series of patch moved fpga u-boot headers to the kconfig and enabled in respective defconfig. These are the configs: -CONFIG_FPGA_SPARTAN3 -CONFIG_FPGA_ZYNQPL Vipul Kumar (4): fpga: Added Kconfig support for FPGA_SPARTAN3 fpga: Added CONFIG_FPGA_SPARTAN3 in the the respective defconfig