All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig
@ 2018-02-16 12:32 Vipul Kumar
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3 Vipul Kumar
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Vipul Kumar @ 2018-02-16 12:32 UTC (permalink / raw)
  To: u-boot

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
  arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL
  arm: zynq: fpga: Added CONFIG_FPGA_ZYNQPL in the respective defconfig

 configs/apf27_defconfig                |  1 +
 configs/astro_mcf5373l_defconfig       |  1 +
 configs/mt_ventoux_defconfig           |  1 +
 configs/syzygy_hub_defconfig           |  1 +
 configs/topic_miami_defconfig          |  1 +
 configs/topic_miamilite_defconfig      |  1 +
 configs/topic_miamiplus_defconfig      |  1 +
 configs/x600_defconfig                 |  1 +
 configs/zynq_cc108_defconfig           |  1 +
 configs/zynq_microzed_defconfig        |  1 +
 configs/zynq_picozed_defconfig         |  1 +
 configs/zynq_z_turn_defconfig          |  1 +
 configs/zynq_zc702_defconfig           |  1 +
 configs/zynq_zc706_defconfig           |  1 +
 configs/zynq_zc770_xm010_defconfig     |  1 +
 configs/zynq_zc770_xm011_defconfig     |  1 +
 configs/zynq_zc770_xm011_x16_defconfig |  1 +
 configs/zynq_zc770_xm012_defconfig     |  1 +
 configs/zynq_zc770_xm013_defconfig     |  1 +
 configs/zynq_zed_defconfig             |  1 +
 configs/zynq_zybo_defconfig            |  1 +
 drivers/fpga/Kconfig                   | 12 ++++++++++++
 include/configs/apf27.h                |  1 -
 include/configs/astro_mcf5373l.h       |  1 -
 include/configs/mt_ventoux.h           |  1 -
 include/configs/x600.h                 |  1 -
 include/configs/zynq-common.h          |  2 --
 27 files changed, 33 insertions(+), 6 deletions(-)

--
2.7.4

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 law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [UBOOT PATCH 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3
  2018-02-16 12:32 [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig Vipul Kumar
@ 2018-02-16 12:32 ` Vipul Kumar
  2018-02-28 20:24   ` [U-Boot] [U-Boot, " Tom Rini
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 2/4] fpga: Added CONFIG_FPGA_SPARTAN3 in the the respective defconfig Vipul Kumar
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Vipul Kumar @ 2018-02-16 12:32 UTC (permalink / raw)
  To: u-boot

This patch added Kconfig support for FPGA_SPARTAN3.

Signed-off-by: Vipul Kumar <vipulk@xilinx.com>
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
---
 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/fpga/Kconfig
+++ b/drivers/fpga/Kconfig
@@ -45,4 +45,9 @@ config FPGA_ZYNQMPPL
          Enable FPGA driver for loading bitstream in BIT and BIN format
          on Xilinx Zynq UltraScale+ (ZynqMP) device.

+config FPGA_SPARTAN3
+       bool "Enable Spartan3 FPGA driver"
+       help
+         Enable Spartan3 FPGA driver for loading in BIT format.
+
 endmenu
--
2.7.4

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 law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [UBOOT PATCH 2/4] fpga: Added CONFIG_FPGA_SPARTAN3 in the the respective defconfig
  2018-02-16 12:32 [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig Vipul Kumar
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3 Vipul Kumar
@ 2018-02-16 12:32 ` Vipul Kumar
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 3/4] arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL Vipul Kumar
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 11+ messages in thread
From: Vipul Kumar @ 2018-02-16 12:32 UTC (permalink / raw)
  To: u-boot

This patch added CONFIG_FPGA_SPARTAN3 in the
respective defconfig.

Signed-off-by: Vipul Kumar <vipulk@xilinx.com>
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
---
 configs/apf27_defconfig          | 1 +
 configs/astro_mcf5373l_defconfig | 1 +
 configs/mt_ventoux_defconfig     | 1 +
 configs/x600_defconfig           | 1 +
 include/configs/apf27.h          | 1 -
 include/configs/astro_mcf5373l.h | 1 -
 include/configs/mt_ventoux.h     | 1 -
 include/configs/x600.h           | 1 -
 8 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/configs/apf27_defconfig b/configs/apf27_defconfig
index 00aa7c3..d7437ed 100644
--- a/configs/apf27_defconfig
+++ b/configs/apf27_defconfig
@@ -34,6 +34,7 @@ CONFIG_MTDPARTS_DEFAULT="mtdparts=mxc_nand.0:1M(u-boot)ro,512K(env),512K(env2),5
 CONFIG_CMD_UBI=y
 CONFIG_ENV_IS_IN_NAND=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_SPARTAN3=y
 CONFIG_MXC_GPIO=y
 CONFIG_MMC_MXC=y
 CONFIG_NAND=y
diff --git a/configs/astro_mcf5373l_defconfig b/configs/astro_mcf5373l_defconfig
index 011dc36..71250af 100644
--- a/configs/astro_mcf5373l_defconfig
+++ b/configs/astro_mcf5373l_defconfig
@@ -19,4 +19,5 @@ CONFIG_CMD_JFFS2=y
 CONFIG_FPGA_ALTERA=y
 CONFIG_FPGA_CYCLON2=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_SPARTAN3=y
 CONFIG_MTD_NOR_FLASH=y
diff --git a/configs/mt_ventoux_defconfig b/configs/mt_ventoux_defconfig
index 49ddcc6..66dcc03 100644
--- a/configs/mt_ventoux_defconfig
+++ b/configs/mt_ventoux_defconfig
@@ -31,6 +31,7 @@ CONFIG_MTDPARTS_DEFAULT="mtdparts=omap2-nand.0:512k(MLO),1m(u-boot),256k(env1),2
 CONFIG_CMD_UBI=y
 CONFIG_ENV_IS_IN_NAND=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_SPARTAN3=y
 CONFIG_SYS_OMAP24_I2C_SPEED=400000
 CONFIG_MMC_OMAP_HS=y
 CONFIG_NAND=y
diff --git a/configs/x600_defconfig b/configs/x600_defconfig
index d1711e0..735c04c 100644
--- a/configs/x600_defconfig
+++ b/configs/x600_defconfig
@@ -39,6 +39,7 @@ CONFIG_CMD_UBI=y
 CONFIG_ENV_IS_IN_FLASH=y
 CONFIG_BOOTCOUNT_LIMIT=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_SPARTAN3=y
 CONFIG_SYS_I2C_DW=y
 # CONFIG_MMC is not set
 CONFIG_MTD_NOR_FLASH=y
diff --git a/include/configs/apf27.h b/include/configs/apf27.h
index d95da27..0bd280c 100644
--- a/include/configs/apf27.h
+++ b/include/configs/apf27.h
@@ -209,7 +209,6 @@
  * FPGA
  */
 #define CONFIG_FPGA_COUNT              1
-#define CONFIG_FPGA_SPARTAN3
 #define CONFIG_SYS_FPGA_WAIT           250 /* 250 ms */
 #define CONFIG_SYS_FPGA_PROG_FEEDBACK
 #define CONFIG_SYS_FPGA_CHECK_CTRLC
diff --git a/include/configs/astro_mcf5373l.h b/include/configs/astro_mcf5373l.h
index f3a8693..70aacda 100644
--- a/include/configs/astro_mcf5373l.h
+++ b/include/configs/astro_mcf5373l.h
@@ -175,7 +175,6 @@
 #define CONFIG_SYS_LONGHELP

 #define CONFIG_FPGA_COUNT      1
-#define        CONFIG_FPGA_SPARTAN3
 #define CONFIG_SYS_FPGA_PROG_FEEDBACK
 #define CONFIG_SYS_FPGA_WAIT           1000

diff --git a/include/configs/mt_ventoux.h b/include/configs/mt_ventoux.h
index bee8ddd..6cca902 100644
--- a/include/configs/mt_ventoux.h
+++ b/include/configs/mt_ventoux.h
@@ -33,7 +33,6 @@
 /*
  * FPGA
  */
-#define CONFIG_FPGA_SPARTAN3
 #define CONFIG_SYS_FPGA_PROG_FEEDBACK
 #define CONFIG_SYS_FPGA_WAIT   10000
 #define CONFIG_MAX_FPGA_DEVICES        1
diff --git a/include/configs/x600.h b/include/configs/x600.h
index 3f63761..9ada370 100644
--- a/include/configs/x600.h
+++ b/include/configs/x600.h
@@ -85,7 +85,6 @@
 #define CONFIG_SYS_I2C_RTC_ADDR        0x68

 /* FPGA config options */
-#define CONFIG_FPGA_SPARTAN3
 #define CONFIG_FPGA_COUNT      1

 /* USB EHCI options */
--
2.7.4

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 law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [UBOOT PATCH 3/4] arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL
  2018-02-16 12:32 [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig Vipul Kumar
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3 Vipul Kumar
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 2/4] fpga: Added CONFIG_FPGA_SPARTAN3 in the the respective defconfig Vipul Kumar
@ 2018-02-16 12:32 ` Vipul Kumar
  2018-02-28 20:24   ` [U-Boot] [U-Boot, " Tom Rini
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 4/4] arm: zynq: fpga: Added CONFIG_FPGA_ZYNQPL in the respective defconfig Vipul Kumar
  2018-02-26  9:41 ` [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig Michal Simek
  4 siblings, 1 reply; 11+ messages in thread
From: Vipul Kumar @ 2018-02-16 12:32 UTC (permalink / raw)
  To: u-boot

This patch added Kconfig support for CONFIG_FPGA_ZYNQPL.

Signed-off-by: Vipul Kumar <vipulk@xilinx.com>
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
---
 drivers/fpga/Kconfig | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/fpga/Kconfig b/drivers/fpga/Kconfig
index ac08bc1..50e9019 100644
--- a/drivers/fpga/Kconfig
+++ b/drivers/fpga/Kconfig
@@ -50,4 +50,11 @@ config FPGA_SPARTAN3
        help
          Enable Spartan3 FPGA driver for loading in BIT format.

+config FPGA_ZYNQPL
+       bool "Enable Xilinx FPGA for Zynq"
+       depends on ARCH_ZYNQ
+       help
+         Enable FPGA driver for loading bitstream in BIT and BIN format
+         on Xilinx Zynq devices.
+
 endmenu
--
2.7.4

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 law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [UBOOT PATCH 4/4] arm: zynq: fpga: Added CONFIG_FPGA_ZYNQPL in the respective defconfig
  2018-02-16 12:32 [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig Vipul Kumar
                   ` (2 preceding siblings ...)
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 3/4] arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL Vipul Kumar
@ 2018-02-16 12:32 ` Vipul Kumar
  2018-02-26  9:41 ` [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig Michal Simek
  4 siblings, 0 replies; 11+ messages in thread
From: Vipul Kumar @ 2018-02-16 12:32 UTC (permalink / raw)
  To: u-boot

This patch added CONFIG_FPGA_ZYNQPL in the respective defconfig.

Signed-off-by: Vipul Kumar <vipulk@xilinx.com>
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
---
 configs/syzygy_hub_defconfig           | 1 +
 configs/topic_miami_defconfig          | 1 +
 configs/topic_miamilite_defconfig      | 1 +
 configs/topic_miamiplus_defconfig      | 1 +
 configs/zynq_cc108_defconfig           | 1 +
 configs/zynq_microzed_defconfig        | 1 +
 configs/zynq_picozed_defconfig         | 1 +
 configs/zynq_z_turn_defconfig          | 1 +
 configs/zynq_zc702_defconfig           | 1 +
 configs/zynq_zc706_defconfig           | 1 +
 configs/zynq_zc770_xm010_defconfig     | 1 +
 configs/zynq_zc770_xm011_defconfig     | 1 +
 configs/zynq_zc770_xm011_x16_defconfig | 1 +
 configs/zynq_zc770_xm012_defconfig     | 1 +
 configs/zynq_zc770_xm013_defconfig     | 1 +
 configs/zynq_zed_defconfig             | 1 +
 configs/zynq_zybo_defconfig            | 1 +
 include/configs/zynq-common.h          | 2 --
 18 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/configs/syzygy_hub_defconfig b/configs/syzygy_hub_defconfig
index 996ecdb..8f06465 100644
--- a/configs/syzygy_hub_defconfig
+++ b/configs/syzygy_hub_defconfig
@@ -33,6 +33,7 @@ CONFIG_CMD_EXT4_WRITE=y
 CONFIG_OF_EMBED=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/topic_miami_defconfig b/configs/topic_miami_defconfig
index d5929a1..e8aaee9 100644
--- a/configs/topic_miami_defconfig
+++ b/configs/topic_miami_defconfig
@@ -30,6 +30,7 @@ CONFIG_OF_EMBED=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/topic_miamilite_defconfig b/configs/topic_miamilite_defconfig
index a318e50..3f8681f 100644
--- a/configs/topic_miamilite_defconfig
+++ b/configs/topic_miamilite_defconfig
@@ -30,6 +30,7 @@ CONFIG_OF_EMBED=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/topic_miamiplus_defconfig b/configs/topic_miamiplus_defconfig
index 7281f7b..496c43e 100644
--- a/configs/topic_miamiplus_defconfig
+++ b/configs/topic_miamiplus_defconfig
@@ -28,6 +28,7 @@ CONFIG_OF_EMBED=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/zynq_cc108_defconfig b/configs/zynq_cc108_defconfig
index 24e9cfe..3a4de92 100644
--- a/configs/zynq_cc108_defconfig
+++ b/configs/zynq_cc108_defconfig
@@ -26,6 +26,7 @@ CONFIG_CMD_EXT4_WRITE=y
 CONFIG_NET_RANDOM_ETHADDR=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/zynq_microzed_defconfig b/configs/zynq_microzed_defconfig
index b34520f..94a1a40 100644
--- a/configs/zynq_microzed_defconfig
+++ b/configs/zynq_microzed_defconfig
@@ -34,6 +34,7 @@ CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_MMC=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/zynq_picozed_defconfig b/configs/zynq_picozed_defconfig
index 2f90918..f9ee904 100644
--- a/configs/zynq_picozed_defconfig
+++ b/configs/zynq_picozed_defconfig
@@ -29,6 +29,7 @@ CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_MMC=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/zynq_z_turn_defconfig b/configs/zynq_z_turn_defconfig
index 68a2208..7a51b85 100644
--- a/configs/zynq_z_turn_defconfig
+++ b/configs/zynq_z_turn_defconfig
@@ -30,6 +30,7 @@ CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_MMC=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/zynq_zc702_defconfig b/configs/zynq_zc702_defconfig
index 878bc79..c6a7893 100644
--- a/configs/zynq_zc702_defconfig
+++ b/configs/zynq_zc702_defconfig
@@ -39,6 +39,7 @@ CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_MMC=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/zynq_zc706_defconfig b/configs/zynq_zc706_defconfig
index 7b2e072..665b4d3 100644
--- a/configs/zynq_zc706_defconfig
+++ b/configs/zynq_zc706_defconfig
@@ -39,6 +39,7 @@ CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_MMC=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/zynq_zc770_xm010_defconfig b/configs/zynq_zc770_xm010_defconfig
index 125f97d..f4279c6 100644
--- a/configs/zynq_zc770_xm010_defconfig
+++ b/configs/zynq_zc770_xm010_defconfig
@@ -31,6 +31,7 @@ CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_NET_RANDOM_ETHADDR=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/zynq_zc770_xm011_defconfig b/configs/zynq_zc770_xm011_defconfig
index de8fe3e..e0d91aa 100644
--- a/configs/zynq_zc770_xm011_defconfig
+++ b/configs/zynq_zc770_xm011_defconfig
@@ -32,6 +32,7 @@ CONFIG_CMD_CACHE=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_BLK=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 # CONFIG_MMC is not set
 CONFIG_NAND=y
diff --git a/configs/zynq_zc770_xm011_x16_defconfig b/configs/zynq_zc770_xm011_x16_defconfig
index 1e2c377..c65ac59 100644
--- a/configs/zynq_zc770_xm011_x16_defconfig
+++ b/configs/zynq_zc770_xm011_x16_defconfig
@@ -30,6 +30,7 @@ CONFIG_CMD_CACHE=y
 CONFIG_OF_EMBED=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 # CONFIG_MMC is not set
 CONFIG_DM_MMC=y
diff --git a/configs/zynq_zc770_xm012_defconfig b/configs/zynq_zc770_xm012_defconfig
index 09ae04b..782a359 100644
--- a/configs/zynq_zc770_xm012_defconfig
+++ b/configs/zynq_zc770_xm012_defconfig
@@ -34,6 +34,7 @@ CONFIG_NET_RANDOM_ETHADDR=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_BLK=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 # CONFIG_MMC is not set
 CONFIG_MTD_NOR_FLASH=y
diff --git a/configs/zynq_zc770_xm013_defconfig b/configs/zynq_zc770_xm013_defconfig
index 36922ff..69d875f 100644
--- a/configs/zynq_zc770_xm013_defconfig
+++ b/configs/zynq_zc770_xm013_defconfig
@@ -33,6 +33,7 @@ CONFIG_NET_RANDOM_ETHADDR=y
 CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_BLK=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 # CONFIG_MMC is not set
 CONFIG_SPI_FLASH=y
diff --git a/configs/zynq_zed_defconfig b/configs/zynq_zed_defconfig
index 4c1c18b..7ed0128 100644
--- a/configs/zynq_zed_defconfig
+++ b/configs/zynq_zed_defconfig
@@ -34,6 +34,7 @@ CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_MMC=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/configs/zynq_zybo_defconfig b/configs/zynq_zybo_defconfig
index 138b249..2a45cee 100644
--- a/configs/zynq_zybo_defconfig
+++ b/configs/zynq_zybo_defconfig
@@ -38,6 +38,7 @@ CONFIG_SPL_DM_SEQ_ALIAS=y
 CONFIG_DFU_MMC=y
 CONFIG_DFU_RAM=y
 CONFIG_FPGA_XILINX=y
+CONFIG_FPGA_ZYNQPL=y
 CONFIG_DM_GPIO=y
 CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_ZYNQ=y
diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h
index 2dfac6f..7f81f40 100644
--- a/include/configs/zynq-common.h
+++ b/include/configs/zynq-common.h
@@ -276,8 +276,6 @@
                                        CONFIG_SYS_INIT_RAM_SIZE - \
                                        GENERATED_GBL_DATA_SIZE)

-/* Enable the PL to be downloaded */
-#define CONFIG_FPGA_ZYNQPL

 /* FIT support */
 #define CONFIG_IMAGE_FORMAT_LEGACY /* enable also legacy image format */
--
2.7.4

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 law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig
  2018-02-16 12:32 [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig Vipul Kumar
                   ` (3 preceding siblings ...)
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 4/4] arm: zynq: fpga: Added CONFIG_FPGA_ZYNQPL in the respective defconfig Vipul Kumar
@ 2018-02-26  9:41 ` Michal Simek
  4 siblings, 0 replies; 11+ messages in thread
From: Michal Simek @ 2018-02-26  9:41 UTC (permalink / raw)
  To: u-boot

On 16.2.2018 13:32, Vipul Kumar wrote:
> 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
>   arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL
>   arm: zynq: fpga: Added CONFIG_FPGA_ZYNQPL in the respective defconfig
> 
>  configs/apf27_defconfig                |  1 +
>  configs/astro_mcf5373l_defconfig       |  1 +
>  configs/mt_ventoux_defconfig           |  1 +
>  configs/syzygy_hub_defconfig           |  1 +
>  configs/topic_miami_defconfig          |  1 +
>  configs/topic_miamilite_defconfig      |  1 +
>  configs/topic_miamiplus_defconfig      |  1 +
>  configs/x600_defconfig                 |  1 +
>  configs/zynq_cc108_defconfig           |  1 +
>  configs/zynq_microzed_defconfig        |  1 +
>  configs/zynq_picozed_defconfig         |  1 +
>  configs/zynq_z_turn_defconfig          |  1 +
>  configs/zynq_zc702_defconfig           |  1 +
>  configs/zynq_zc706_defconfig           |  1 +
>  configs/zynq_zc770_xm010_defconfig     |  1 +
>  configs/zynq_zc770_xm011_defconfig     |  1 +
>  configs/zynq_zc770_xm011_x16_defconfig |  1 +
>  configs/zynq_zc770_xm012_defconfig     |  1 +
>  configs/zynq_zc770_xm013_defconfig     |  1 +
>  configs/zynq_zed_defconfig             |  1 +
>  configs/zynq_zybo_defconfig            |  1 +
>  drivers/fpga/Kconfig                   | 12 ++++++++++++
>  include/configs/apf27.h                |  1 -
>  include/configs/astro_mcf5373l.h       |  1 -
>  include/configs/mt_ventoux.h           |  1 -
>  include/configs/x600.h                 |  1 -
>  include/configs/zynq-common.h          |  2 --
>  27 files changed, 33 insertions(+), 6 deletions(-)
> 

Applied.

Thanks,
Michal

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot, 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3 Vipul Kumar
@ 2018-02-28 20:24   ` Tom Rini
  2018-03-01  7:05     ` Michal Simek
  0 siblings, 1 reply; 11+ messages in thread
From: Tom Rini @ 2018-02-28 20:24 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 16, 2018 at 06:02:49PM +0530, Vipul Kumar wrote:

> This patch added Kconfig support for FPGA_SPARTAN3.
> 
> Signed-off-by: Vipul Kumar <vipulk@xilinx.com>
> Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>

After merging 2/4 into this (we should always update the defconfigs in
the patch, otherwise we may get build warnings later when bisecting),
applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180228/8ddc5997/attachment.sig>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot, 3/4] arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL
  2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 3/4] arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL Vipul Kumar
@ 2018-02-28 20:24   ` Tom Rini
  0 siblings, 0 replies; 11+ messages in thread
From: Tom Rini @ 2018-02-28 20:24 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 16, 2018 at 06:02:51PM +0530, Vipul Kumar wrote:

> This patch added Kconfig support for CONFIG_FPGA_ZYNQPL.
> 
> Signed-off-by: Vipul Kumar <vipulk@xilinx.com>
> Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>

After merging 4/4 into this (we should always update the defconfigs in
the patch, otherwise we may get build warnings later when bisecting),
applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180228/d39c90b1/attachment.sig>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot, 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3
  2018-02-28 20:24   ` [U-Boot] [U-Boot, " Tom Rini
@ 2018-03-01  7:05     ` Michal Simek
  2018-03-01 14:28       ` Tom Rini
  0 siblings, 1 reply; 11+ messages in thread
From: Michal Simek @ 2018-03-01  7:05 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On 28.2.2018 21:24, Tom Rini wrote:
> On Fri, Feb 16, 2018 at 06:02:49PM +0530, Vipul Kumar wrote:
> 
>> This patch added Kconfig support for FPGA_SPARTAN3.
>>
>> Signed-off-by: Vipul Kumar <vipulk@xilinx.com>
>> Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
> 
> After merging 2/4 into this (we should always update the defconfigs in
> the patch, otherwise we may get build warnings later when bisecting),
> applied to u-boot/master, thanks!
> 

I am collecting these Kconfig patches in this branch (I have rebased it now)
http://git.denx.de/?p=u-boot/u-boot-microblaze.git;a=shortlog;h=refs/heads/kconfig

Do you want to get these patches before 2018.03 tag?

Thanks,
Michal

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot, 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3
  2018-03-01  7:05     ` Michal Simek
@ 2018-03-01 14:28       ` Tom Rini
  2018-03-01 14:30         ` Michal Simek
  0 siblings, 1 reply; 11+ messages in thread
From: Tom Rini @ 2018-03-01 14:28 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 01, 2018 at 08:05:59AM +0100, Michal Simek wrote:
> Hi Tom,
> 
> On 28.2.2018 21:24, Tom Rini wrote:
> > On Fri, Feb 16, 2018 at 06:02:49PM +0530, Vipul Kumar wrote:
> > 
> >> This patch added Kconfig support for FPGA_SPARTAN3.
> >>
> >> Signed-off-by: Vipul Kumar <vipulk@xilinx.com>
> >> Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
> > 
> > After merging 2/4 into this (we should always update the defconfigs in
> > the patch, otherwise we may get build warnings later when bisecting),
> > applied to u-boot/master, thanks!
> > 
> 
> I am collecting these Kconfig patches in this branch (I have rebased it now)
> http://git.denx.de/?p=u-boot/u-boot-microblaze.git;a=shortlog;h=refs/heads/kconfig
> 
> Do you want to get these patches before 2018.03 tag?

If they're size-neutral (or understandably why), yes.  I can even give a
pull and build, if you don't have a machine you can do that on easily
(or don't want to setup a gcompute node or whatever).

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180301/425d2d26/attachment.sig>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot, 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3
  2018-03-01 14:28       ` Tom Rini
@ 2018-03-01 14:30         ` Michal Simek
  0 siblings, 0 replies; 11+ messages in thread
From: Michal Simek @ 2018-03-01 14:30 UTC (permalink / raw)
  To: u-boot

On 1.3.2018 15:28, Tom Rini wrote:
> On Thu, Mar 01, 2018 at 08:05:59AM +0100, Michal Simek wrote:
>> Hi Tom,
>>
>> On 28.2.2018 21:24, Tom Rini wrote:
>>> On Fri, Feb 16, 2018 at 06:02:49PM +0530, Vipul Kumar wrote:
>>>
>>>> This patch added Kconfig support for FPGA_SPARTAN3.
>>>>
>>>> Signed-off-by: Vipul Kumar <vipulk@xilinx.com>
>>>> Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
>>>
>>> After merging 2/4 into this (we should always update the defconfigs in
>>> the patch, otherwise we may get build warnings later when bisecting),
>>> applied to u-boot/master, thanks!
>>>
>>
>> I am collecting these Kconfig patches in this branch (I have rebased it now)
>> http://git.denx.de/?p=u-boot/u-boot-microblaze.git;a=shortlog;h=refs/heads/kconfig
>>
>> Do you want to get these patches before 2018.03 tag?
> 
> If they're size-neutral (or understandably why), yes.  I can even give a
> pull and build, if you don't have a machine you can do that on easily
> (or don't want to setup a gcompute node or whatever).
> 

Ok. They are supposed to be size neutral.
I will review that v2 which Vipul sent and will send you pull request
when I am done.

Thanks,
Michal

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2018-03-01 14:30 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-16 12:32 [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig Vipul Kumar
2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 1/4] fpga: Added Kconfig support for FPGA_SPARTAN3 Vipul Kumar
2018-02-28 20:24   ` [U-Boot] [U-Boot, " Tom Rini
2018-03-01  7:05     ` Michal Simek
2018-03-01 14:28       ` Tom Rini
2018-03-01 14:30         ` Michal Simek
2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 2/4] fpga: Added CONFIG_FPGA_SPARTAN3 in the the respective defconfig Vipul Kumar
2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 3/4] arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL Vipul Kumar
2018-02-28 20:24   ` [U-Boot] [U-Boot, " Tom Rini
2018-02-16 12:32 ` [U-Boot] [UBOOT PATCH 4/4] arm: zynq: fpga: Added CONFIG_FPGA_ZYNQPL in the respective defconfig Vipul Kumar
2018-02-26  9:41 ` [U-Boot] [UBOOT PATCH 0/4] fpga: Moved fpga u-boot headers to the Kconfig Michal Simek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.