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 v4 00/16] spi: zynq qspi support
Date: Tue, 1 Sep 2015 10:23:27 +0200	[thread overview]
Message-ID: <55E5607F.9000002@xilinx.com> (raw)
In-Reply-To: <CAD6G_RRSwauJ6M4TPjJfLP+O2whc8YXSjL3v9Q=-gvH=VKu0Og@mail.gmail.com>

On 09/01/2015 08:14 AM, Jagan Teki wrote:
> Hi Michal/Siva,
> 
> On 1 September 2015 at 11:41, Jagan Teki <jteki@openedev.com> wrote:
>> These are the previous version patches-
>> https://patchwork.ozlabs.org/patch/302945/
>> https://patchwork.ozlabs.org/patch/264440/
>>
>> This series adds zynq qspi controller driver in driver model and
>> enabled support on relevent zynq boards and tested the same.
>>
>> Branch to verify:
>> $ git clone git://git.denx.de/u-boot-spi.git
>> $ cd u-boot-spi
>> $ git checkout -b master-next origin/master-next
> 
> Please let me know for any comments, and also test the same.
> 
>>
>> Changes for v4:
>>         - Rebase to master
>>
>> Changes for v3:
>>         - Added driver-model to zynq-qspi driver
>>         - devicetree support on zynq-qspi
>>         - Enabled qspi nodes on relevent board dts files
>>         - Enabled qspi driver on relevent board config files
>>
>> Changes for v3:
>>         - Fixes with macro's addition
>>
>> Jagan Teki (16):
>>   spi: Add zynq qspi controller driver
>>   dts: zynq: Add zynq qspi controller nodes
>>   doc: device-tree-bindings: spi: Add zynq qspi info
>>   dts: microzed: Enable zynq qspi controller node
>>   dts: zc702: Enable zynq qspi controller node
>>   dts: zc706: Enable zynq qspi controller node
>>   dts: zc770-xm010: Enable zynq qspi controller node
>>   dts: zed: Enable zynq qspi controller node
>>   configs: Enable legacy SPI flash interface support
>>   zynq-common: Enable zynq qspi controller support
>>   zynq-common: Enable Bank/Extended address register support
>>   configs: zynq: Enable zynq qspi controller
>>   spi: Kconfig: Add Zynq QSPI controller entry
>>   spi: zynq_spi: Add config reg shift named macros
>>   spi: zynq_spi: Rename baudrate divisor mask name
>>   spi: zynq_spi: Store cs value into private data
>>
>>  arch/arm/dts/zynq-7000.dtsi                    |  12 +
>>  arch/arm/dts/zynq-microzed.dts                 |   5 +
>>  arch/arm/dts/zynq-zc702.dts                    |   5 +
>>  arch/arm/dts/zynq-zc706.dts                    |   5 +
>>  arch/arm/dts/zynq-zc770-xm010.dts              |   5 +
>>  arch/arm/dts/zynq-zed.dts                      |   5 +
>>  configs/zynq_microzed_defconfig                |   2 +
>>  configs/zynq_zc702_defconfig                   |   2 +
>>  configs/zynq_zc706_defconfig                   |   2 +
>>  configs/zynq_zc70x_defconfig                   |   2 +
>>  configs/zynq_zc770_xm010_defconfig             |   1 +
>>  configs/zynq_zed_defconfig                     |   2 +
>>  doc/device-tree-bindings/spi/spi-zynq-qspi.txt |  26 ++

All these DTS patches are fine and here is my
Acked-by: Michal Simek <michal.simek@xilinx.com>

The rest will be checked by Siva.

Thanks,
Michal

  reply	other threads:[~2015-09-01  8:23 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-01  6:11 [U-Boot] [PATCH v4 00/16] spi: zynq qspi support Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 01/16] spi: Add zynq qspi controller driver Jagan Teki
2015-09-03  7:26   ` Siva Durga Prasad Paladugu
2015-09-03  8:07     ` Jagan Teki
2015-09-03  8:38       ` Siva Durga Prasad Paladugu
2015-09-03  9:47         ` Jagan Teki
2015-09-04 11:38       ` Siva Durga Prasad Paladugu
2015-10-13 12:22   ` Hannes Schmelzer
2015-10-15  8:39   ` Hannes Schmelzer
2015-11-05  7:33     ` Hannes Schmelzer
2015-11-05  7:56       ` Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 02/16] dts: zynq: Add zynq qspi controller nodes Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 03/16] doc: device-tree-bindings: spi: Add zynq qspi info Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 04/16] dts: microzed: Enable zynq qspi controller node Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 05/16] dts: zc702: " Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 06/16] dts: zc706: " Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 07/16] dts: zc770-xm010: " Jagan Teki
2015-09-01  8:22   ` Michal Simek
2015-09-01  8:43     ` Jagan Teki
2015-09-01  9:00       ` Michal Simek
2015-09-01  6:11 ` [U-Boot] [PATCH v4 08/16] dts: zed: " Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 09/16] configs: Enable legacy SPI flash interface support Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 10/16] zynq-common: Enable zynq qspi controller support Jagan Teki
2015-09-01  8:19   ` Michal Simek
2015-09-01  6:11 ` [U-Boot] [PATCH v4 11/16] zynq-common: Enable Bank/Extended address register support Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 12/16] configs: zynq: Enable zynq qspi controller Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 13/16] spi: Kconfig: Add Zynq QSPI controller entry Jagan Teki
2015-09-01  8:18   ` Michal Simek
2015-09-01  6:11 ` [U-Boot] [PATCH v4 14/16] spi: zynq_spi: Add config reg shift named macros Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 15/16] spi: zynq_spi: Rename baudrate divisor mask name Jagan Teki
2015-09-01  6:11 ` [U-Boot] [PATCH v4 16/16] spi: zynq_spi: Store cs value into private data Jagan Teki
2015-09-01  6:14 ` [U-Boot] [PATCH v4 00/16] spi: zynq qspi support Jagan Teki
2015-09-01  8:23   ` Michal Simek [this message]
2015-09-04 12:33     ` 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=55E5607F.9000002@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