public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* Pull request v2: u-boot-spi/master
@ 2020-04-28 12:28 Jagan Teki
  2020-04-28 19:21 ` Tom Rini
  0 siblings, 1 reply; 5+ messages in thread
From: Jagan Teki @ 2020-04-28 12:28 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull this PR.

Travis-ci:
https://travis-ci.org/github/openedev/u-boot-amarula/builds/680186752

Changes for v2:
- included SiFive SPI fixes
- fixes for SF distro on rockchip

thanks,
Jagan.

The following changes since commit 8d5d3bcf3c53d798bd7f3fe7092e994593bcc41c:

  Merge branch '2020-04-16-master-imports' (2020-04-17 11:17:29 -0400)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-spi master

for you to fetch changes up to 96955bbb077256db9f56c06b4983810237d700a4:

  sifive: fu540: Enable spi-nor flash support (2020-04-28 15:32:00 +0530)

----------------------------------------------------------------
Bacem Daassi (1):
      mtd: spi-nor: Enable dual and quad read for s25fl256s0

Jagan Teki (12):
      environment: distro: Add SF distro command
      rk3399: Add boot flash script offset, size
      rockchip: Enable SF distro bootcmd
      spi: sifive: Tidy up dm_spi_slave_platdata variable
      mtd: spi-nor: Enable QE bit for ISSI flash
      mtd: spi-nor-ids: Enable 4B_OPCODES for is25wp256
      watchdog: kconfig: Enable designware for rk3399
      spi: sifive: Add spi-mem exec op
      spi: sifive: Fix format register proto field
      spi: sifive: Fix QPP transfer
      riscv: dts: hifive-unleashed-a00: Add -u-boot.dtsi
      sifive: fu540: Enable spi-nor flash support

Kuldeep Singh (3):
      spi: Transform the FSL QuadSPI driver to use the SPI MEM API
      mtd: spi-nor-ids: Enable SPI_NOR_OCTAL_READ flag for mt35xu*
      mtd: spi-nor-ids: Add Spansion s25fs512s flash entry

Pratyush Yadav (1):
      spi: cadence-qspi: Move ref clock calculation to probe

Rasmus Villemoes (1):
      spi: use is_power_of_2 instead of hweight32 in spi_nor_write()

Robert Marko (2):
      mtd: spi-nand: Import Toshiba SPI-NAND support
      mtd: nand: spi: add support for Toshiba TC58CVG2S0HRAIJ

Tudor Ambarus (1):
      spi: spi-mem: Add SPI_MEM_NO_DATA to the spi_mem_data_dir enum

 arch/riscv/dts/hifive-unleashed-a00-u-boot.dtsi |   11 +
 board/sifive/fu540/Kconfig                      |    3 +
 drivers/mtd/nand/spi/Makefile                   |    2 +-
 drivers/mtd/nand/spi/core.c                     |    1 +
 drivers/mtd/nand/spi/toshiba.c                  |  201 +++
 drivers/mtd/spi/spi-nor-core.c                  |    6 +-
 drivers/mtd/spi/spi-nor-ids.c                   |   12 +-
 drivers/spi/cadence_qspi.c                      |   33 +-
 drivers/spi/fsl_qspi.c                          | 1577 +++++++++--------------
 drivers/spi/fsl_qspi.h                          |  145 ---
 drivers/spi/spi-mem.c                           |    2 +-
 drivers/spi/spi-sifive.c                        |  178 ++-
 drivers/watchdog/Kconfig                        |    1 +
 include/configs/rk3399_common.h                 |    3 +
 include/configs/rockchip-common.h               |   15 +
 include/environment/distro/sf.h                 |   41 +
 include/linux/mtd/spi-nor.h                     |    1 +
 include/linux/mtd/spinand.h                     |    1 +
 include/spi-mem.h                               |    2 +
 19 files changed, 1059 insertions(+), 1176 deletions(-)
 create mode 100644 arch/riscv/dts/hifive-unleashed-a00-u-boot.dtsi
 create mode 100644 drivers/mtd/nand/spi/toshiba.c
 delete mode 100644 drivers/spi/fsl_qspi.h
 create mode 100644 include/environment/distro/sf.h

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

* Pull request v2: u-boot-spi/master
  2020-04-28 12:28 Pull request v2: u-boot-spi/master Jagan Teki
@ 2020-04-28 19:21 ` Tom Rini
  2020-04-28 19:32   ` Jagan Teki
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Rini @ 2020-04-28 19:21 UTC (permalink / raw)
  To: u-boot

On Tue, Apr 28, 2020 at 05:58:00PM +0530, Jagan Teki wrote:

> Hi Tom,
> 
> Please pull this PR.
> 
> Travis-ci:
> https://travis-ci.org/github/openedev/u-boot-amarula/builds/680186752
> 
> Changes for v2:
> - included SiFive SPI fixes
> - fixes for SF distro on rockchip
> 
> thanks,
> Jagan.
> 
> The following changes since commit 8d5d3bcf3c53d798bd7f3fe7092e994593bcc41c:
> 
>   Merge branch '2020-04-16-master-imports' (2020-04-17 11:17:29 -0400)
> 
> are available in the Git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-spi master
> 
> for you to fetch changes up to 96955bbb077256db9f56c06b4983810237d700a4:
> 
>   sifive: fu540: Enable spi-nor flash support (2020-04-28 15:32:00 +0530)
> 

This still fails to build a lot of platforms as:
https://travis-ci.org/github/trini/u-boot/jobs/680641434

Which is like before, but I see you have passing travis jobs.  I also
see that it's not for 96955bbb077256db9f56c06b4983810237d700a4 which is
what I get on fetching the spi repo.  Please figure out where the good
revision went :)  Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200428/5c9f2d53/attachment.sig>

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

* Pull request v2: u-boot-spi/master
  2020-04-28 19:21 ` Tom Rini
@ 2020-04-28 19:32   ` Jagan Teki
  0 siblings, 0 replies; 5+ messages in thread
From: Jagan Teki @ 2020-04-28 19:32 UTC (permalink / raw)
  To: u-boot

On Wed, Apr 29, 2020 at 12:51 AM Tom Rini <trini@konsulko.com> wrote:
>
> On Tue, Apr 28, 2020 at 05:58:00PM +0530, Jagan Teki wrote:
>
> > Hi Tom,
> >
> > Please pull this PR.
> >
> > Travis-ci:
> > https://travis-ci.org/github/openedev/u-boot-amarula/builds/680186752
> >
> > Changes for v2:
> > - included SiFive SPI fixes
> > - fixes for SF distro on rockchip
> >
> > thanks,
> > Jagan.
> >
> > The following changes since commit 8d5d3bcf3c53d798bd7f3fe7092e994593bcc41c:
> >
> >   Merge branch '2020-04-16-master-imports' (2020-04-17 11:17:29 -0400)
> >
> > are available in the Git repository at:
> >
> >   https://gitlab.denx.de/u-boot/custodians/u-boot-spi master
> >
> > for you to fetch changes up to 96955bbb077256db9f56c06b4983810237d700a4:
> >
> >   sifive: fu540: Enable spi-nor flash support (2020-04-28 15:32:00 +0530)
> >
>
> This still fails to build a lot of platforms as:
> https://travis-ci.org/github/trini/u-boot/jobs/680641434
>
> Which is like before, but I see you have passing travis jobs.  I also
> see that it's not for 96955bbb077256db9f56c06b4983810237d700a4 which is
> what I get on fetching the spi repo.  Please figure out where the good
> revision went :)  Thanks!

Looks strange, I did the travis on the same repo. will update it anyway, thanks!

Jagan.

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

* Pull request v2: u-boot-spi/master
@ 2020-05-10 20:07 Jagan Teki
  2020-05-11 13:46 ` Tom Rini
  0 siblings, 1 reply; 5+ messages in thread
From: Jagan Teki @ 2020-05-10 20:07 UTC (permalink / raw)
  To: u-boot

Hi Tom, 

Summary:
- zap lpc32xx_ssp driver (Jagan)
- rename of phy nodev call (Jagan)
- iopoll with sleep_us (Jagan)
- MX25R6435F flash (Ye Li)

Changes for v2:
- rebase to master

thanks,
Jagan.

The following changes since commit c5c657644bc35fd6b3d6e5517698721e90646b8d:

  Merge branch '2020-05-08-assorted-fixes' (2020-05-08 18:58:19 -0400)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-spi master

for you to fetch changes up to 8af1caa23728ef689d095eec1ec4e6f1d46f50e4:

  sf: Add Macronix MX25R6435F SPI NOR flash to flash parameters array (2020-05-11 01:30:49 +0530)

----------------------------------------------------------------
Dario Binacchi (1):
      spi: fix dev parameter in dev_* calls

Jagan Teki (7):
      spi: Zap lpc32xx_ssp driver-related code
      phy: Fix node description of phy_get_by_node
      phy: Use _nodev naming convention if non-device clients
      clk: Fix clk func names in comments
      iopoll: Add read_poll_timeout common API
      iopoll: Add dealy to read poll
      iopoll: Add readl_poll_sleep_timeout

Kuldeep Singh (1):
      spi: nxp-fspi: Use new readl_poll_sleep_timeout API

Ye Li (1):
      sf: Add Macronix MX25R6435F SPI NOR flash to flash parameters array

 arch/arm/mach-meson/board-gx.c |   3 +-
 drivers/mtd/spi/spi-nor-core.c |  19 +++---
 drivers/mtd/spi/spi-nor-ids.c  |   1 +
 drivers/phy/phy-uclass.c       |   4 +-
 drivers/spi/Kconfig            |   6 --
 drivers/spi/Makefile           |   1 -
 drivers/spi/lpc32xx_ssp.c      | 134 -----------------------------------------
 drivers/spi/nxp_fspi.c         |  10 +--
 include/clk.h                  |  12 ++--
 include/configs/devkit3250.h   |   5 --
 include/configs/work_92105.h   |   5 --
 include/generic-phy.h          |   9 ++-
 include/linux/iopoll.h         |  16 ++++-
 scripts/config_whitelist.txt   |   1 -
 14 files changed, 47 insertions(+), 179 deletions(-)
 delete mode 100644 drivers/spi/lpc32xx_ssp.c

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

* Pull request v2: u-boot-spi/master
  2020-05-10 20:07 Jagan Teki
@ 2020-05-11 13:46 ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2020-05-11 13:46 UTC (permalink / raw)
  To: u-boot

On Mon, May 11, 2020 at 01:37:21AM +0530, Jagan Teki wrote:

> Hi Tom, 
> 
> Summary:
> - zap lpc32xx_ssp driver (Jagan)
> - rename of phy nodev call (Jagan)
> - iopoll with sleep_us (Jagan)
> - MX25R6435F flash (Ye Li)
> 
> Changes for v2:
> - rebase to master
> 
> thanks,
> Jagan.
> 
> The following changes since commit c5c657644bc35fd6b3d6e5517698721e90646b8d:
> 
>   Merge branch '2020-05-08-assorted-fixes' (2020-05-08 18:58:19 -0400)
> 
> are available in the Git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-spi master
> 
> for you to fetch changes up to 8af1caa23728ef689d095eec1ec4e6f1d46f50e4:
> 
>   sf: Add Macronix MX25R6435F SPI NOR flash to flash parameters array (2020-05-11 01:30:49 +0530)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200511/328e08b8/attachment.sig>

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

end of thread, other threads:[~2020-05-11 13:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-28 12:28 Pull request v2: u-boot-spi/master Jagan Teki
2020-04-28 19:21 ` Tom Rini
2020-04-28 19:32   ` Jagan Teki
  -- strict thread matches above, loose matches on Subject: below --
2020-05-10 20:07 Jagan Teki
2020-05-11 13:46 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox