public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 3/3] spi: zynqmp_qspi: Add qspi driver support for ZynqMP boards
Date: Thu, 26 May 2016 13:02:51 +0200	[thread overview]
Message-ID: <5746D7DB.8020805@xilinx.com> (raw)
In-Reply-To: <1464245901-3983-3-git-send-email-sivadur@xilinx.com>

On 26.5.2016 08:58, Siva Durga Prasad Paladugu wrote:
> Added the qspi driver support for respective ZynqMP boards
> ZCU102, ZCU102 RevB and DC1 boards.
> 
> Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
> ---
> Changes for v2:
> - None
> ---
>  configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig |    4 ++++
>  configs/xilinx_zynqmp_zcu102_defconfig           |    4 ++++
>  configs/xilinx_zynqmp_zcu102_revB_defconfig      |    4 ++++
>  3 files changed, 12 insertions(+), 0 deletions(-)
> 
> diff --git a/configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig b/configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig
> index cc08b03..164b156 100644
> --- a/configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig
> +++ b/configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig
> @@ -3,6 +3,9 @@ CONFIG_SYS_CONFIG_NAME="xilinx_zynqmp_zc1751_xm015_dc1"
>  CONFIG_ARCH_ZYNQMP=y
>  CONFIG_DM_I2C=y
>  CONFIG_DM_GPIO=y
> +CONFIG_DM_SPI=y
> +CONFIG_DM_SPI_FLASH=y
> +CONFIG_ZYNQMP_QSPI=y
>  CONFIG_ZYNQMP_USB=y
>  CONFIG_SYS_TEXT_BASE=0x8000000
>  CONFIG_DEFAULT_DEVICE_TREE="zynqmp-zc1751-xm015-dc1"
> @@ -28,6 +31,7 @@ CONFIG_CMD_EXT4=y
>  CONFIG_CMD_EXT4_WRITE=y
>  CONFIG_CMD_FAT=y
>  CONFIG_CMD_FS_GENERIC=y
> +CONFIG_CMD_SF=y
>  CONFIG_OF_EMBED=y
>  CONFIG_NET_RANDOM_ETHADDR=y
>  CONFIG_SYS_I2C_CADENCE=y
> diff --git a/configs/xilinx_zynqmp_zcu102_defconfig b/configs/xilinx_zynqmp_zcu102_defconfig
> index 6f1cff8..64c032d 100644
> --- a/configs/xilinx_zynqmp_zcu102_defconfig
> +++ b/configs/xilinx_zynqmp_zcu102_defconfig
> @@ -2,6 +2,9 @@ CONFIG_ARM=y
>  CONFIG_SYS_CONFIG_NAME="xilinx_zynqmp_zcu102"
>  CONFIG_ARCH_ZYNQMP=y
>  CONFIG_DM_GPIO=y
> +CONFIG_DM_SPI=y
> +CONFIG_DM_SPI_FLASH=y
> +CONFIG_ZYNQMP_QSPI=y
>  CONFIG_ZYNQMP_USB=y
>  CONFIG_SYS_TEXT_BASE=0x8000000
>  CONFIG_DEFAULT_DEVICE_TREE="zynqmp-zcu102"
> @@ -27,6 +30,7 @@ CONFIG_CMD_EXT4=y
>  CONFIG_CMD_EXT4_WRITE=y
>  CONFIG_CMD_FAT=y
>  CONFIG_CMD_FS_GENERIC=y
> +CONFIG_CMD_SF=y
>  CONFIG_OF_EMBED=y
>  CONFIG_NET_RANDOM_ETHADDR=y
>  CONFIG_DM_MMC=y
> diff --git a/configs/xilinx_zynqmp_zcu102_revB_defconfig b/configs/xilinx_zynqmp_zcu102_revB_defconfig
> index a8982a0..39e341c 100644
> --- a/configs/xilinx_zynqmp_zcu102_revB_defconfig
> +++ b/configs/xilinx_zynqmp_zcu102_revB_defconfig
> @@ -2,6 +2,9 @@ CONFIG_ARM=y
>  CONFIG_SYS_CONFIG_NAME="xilinx_zynqmp_zcu102"
>  CONFIG_ARCH_ZYNQMP=y
>  CONFIG_DM_GPIO=y
> +CONFIG_DM_SPI=y
> +CONFIG_DM_SPI_FLASH=y
> +CONFIG_ZYNQMP_QSPI=y
>  CONFIG_ZYNQMP_USB=y
>  CONFIG_SYS_TEXT_BASE=0x8000000
>  CONFIG_DEFAULT_DEVICE_TREE="zynqmp-zcu102-revB"
> @@ -27,6 +30,7 @@ CONFIG_CMD_EXT4=y
>  CONFIG_CMD_EXT4_WRITE=y
>  CONFIG_CMD_FAT=y
>  CONFIG_CMD_FS_GENERIC=y
> +CONFIG_CMD_SF=y
>  CONFIG_OF_EMBED=y
>  CONFIG_NET_RANDOM_ETHADDR=y
>  CONFIG_DM_MMC=y
> 


Acked-by: Michal Simek <michal.simek@xilinx.com>

Thanks,
Michal

  reply	other threads:[~2016-05-26 11:02 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-26  6:58 [U-Boot] [PATCH v2 1/3] spi: spi_flash: Dont set quad enable for micron in all cases Siva Durga Prasad Paladugu
2016-05-26  6:58 ` [U-Boot] [PATCH v2 2/3] spi: zynqmp_qspi: Add QSPI driver support for ZynqMP Siva Durga Prasad Paladugu
2016-05-26 11:02   ` Michal Simek
2016-05-26  6:58 ` [U-Boot] [PATCH v2 3/3] spi: zynqmp_qspi: Add qspi driver support for ZynqMP boards Siva Durga Prasad Paladugu
2016-05-26 11:02   ` Michal Simek [this message]
2016-05-26 11:02 ` [U-Boot] [PATCH v2 1/3] spi: spi_flash: Dont set quad enable for micron in all cases Michal Simek
2016-06-14  9:18 ` Siva Durga Prasad Paladugu
2016-06-21 11:52 ` Siva Durga Prasad Paladugu
2016-07-14  6:07   ` Jagan Teki

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5746D7DB.8020805@xilinx.com \
    --to=michal.simek@xilinx.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox