public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Mugunthan V N <mugunthanvnm@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 05/16] spi: Add support for dual and quad mode
Date: Thu, 17 Dec 2015 12:00:13 +0530	[thread overview]
Message-ID: <56725675.5020004@ti.com> (raw)
In-Reply-To: <CAD6G_RSO2wwrsAAAq40hwqu12JjFiB=wFzyzsfN0v5d3hUqLSw@mail.gmail.com>

On Tuesday 15 December 2015 01:43 PM, Jagan Teki wrote:
> On 15 December 2015 at 13:22, Mugunthan V N <mugunthanvnm@ti.com> wrote:
>> spi bus can support dual and quad wire data transfers for tx and
>> rx. So defining dual and quad modes for both tx and rx. Also add
>> support to parse bus width used for spi tx and rx transfers.
>>
>> Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
>> Reviewed-by: Simon Glass <sjg@chromium.org>
>> Reviewed-by: Tom Rini <trini@konsulko.com>
>> ---
>>
>> Changes from v3->v4
>> * used op_mode_{t/r}x to hold flash tx/rx modes.
>>
>> This has been tested on am437x-sk evm logs [1] and pushed a
>> branch for others to test [2]
>>
>> [1] - http://pastebin.ubuntu.com/14024895/
>> [2] - git://git.ti.com/~mugunthanvnm/ti-u-boot/mugunth-ti-u-boot.git dm-qspi-v4
>>
>> ---
> 
> Please rebase it on master, there is some changes regarding SPI_TX_*
> and also please send the whole series with next version, it easy for
> me to quantify all at once and pick.
> 

Okay, will send v4 as a separate series. The branch which I pushed is
based on u-boot/master only.

Regards
Mugunthan V N

  reply	other threads:[~2015-12-17  6:30 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-19  7:05 [U-Boot] [PATCH v3 00/16] device model bring-up of ti-qspi on dra72, dra74 and am437x-sk evm Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 01/16] drivers: spi: ti_qspi: do not hard code chip select for memory map configuration Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 02/16] drivers: spi:ti_qspi: change ti_qspi_slave to ti_qspi_priv for driver model conversion Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 03/16] drivers: spi: ti_qspi: prepare driver for DM conversion Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 04/16] dm: core: Add a new api to get indexed device address Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 05/16] spi: Add support for dual and quad mode Mugunthan V N
2015-12-03 16:07   ` Jagan Teki
2015-12-06  6:03     ` Mugunthan V N
2015-12-06 14:43       ` Jagan Teki
2015-12-08 15:05         ` Mugunthan V N
2015-12-08 15:48           ` Jagan Teki
2015-12-15  7:52   ` [U-Boot] [PATCH v4 " Mugunthan V N
2015-12-15  8:13     ` Jagan Teki
2015-12-17  6:30       ` Mugunthan V N [this message]
2015-12-17  6:49         ` Jagan Teki
2015-12-17 16:40           ` Jagan Teki
2015-12-20  3:24             ` Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 06/16] dra7xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 07/16] dts: dra7: add spi alias for qspi Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 08/16] drivers: spi: ti_qspi: convert driver to adopt device driver model Mugunthan V N
2015-12-15  7:52   ` [U-Boot] [PATCH v4 " Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 09/16] arm: dts: dra7: add qspi register maps for memory map and control module Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 10/16] drivers: mtd: spi: sf_probe: add compatible for spansion spi flash Mugunthan V N
2015-11-19 10:10   ` Jagan Teki
2015-11-20  6:01     ` Mugunthan V N
2015-11-20 12:27       ` Jagan Teki
2015-11-23 11:29         ` Mugunthan V N
2015-11-23 13:12           ` Jagan Teki
2015-12-03 16:02             ` Jagan Teki
2015-12-06  6:57               ` Mugunthan V N
2015-11-23 15:24           ` Tom Rini
2015-11-19  7:05 ` [U-Boot] [PATCH v3 11/16] drivers: mtd: spi: sf_probe: add compatible for Macronix " Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 12/16] defconfig: dra72_evm: enable spi driver model Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 13/16] defconfig: dra74_evm: " Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 14/16] am43xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl Mugunthan V N
2015-11-21  1:20   ` Tom Rini
2015-11-19  7:05 ` [U-Boot] [PATCH v3 15/16] arm: dts: am4372: add qspi register maps for memory map Mugunthan V N
2015-11-19  7:05 ` [U-Boot] [PATCH v3 16/16] defconfig: am437x_sk_evm: enable spi driver model Mugunthan V N
2015-12-01  6:31 ` [U-Boot] [PATCH v3 00/16] device model bring-up of ti-qspi on dra72, dra74 and am437x-sk evm Mugunthan V N

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=56725675.5020004@ti.com \
    --to=mugunthanvnm@ti.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