public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Pull request: u-boot-spi/next
@ 2017-05-08 16:16 Jagan Teki
  2017-05-09  0:12 ` Tom Rini
  0 siblings, 1 reply; 23+ messages in thread
From: Jagan Teki @ 2017-05-08 16:16 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please take this PR.

thanks!
Jagan.

The following changes since commit ac6991fb5fc1a694b29f4ebd5e07baebf818d7cc:

  zynq: spi: Honour the activation / deactivation delay (2017-05-03 11:03:04 +0530)

are available in the git repository at:

  git://git.denx.de/u-boot-spi.git next

for you to fetch changes up to 0b2e5bbe6a4f3d25522675198b8beb0093a2e750:

  env_sf: use DIV_ROUND_UP to calculate number of sectors to erase (2017-05-03 11:18:20 +0530)

----------------------------------------------------------------
Andreas Fenkart (4):
      env_sf: factor out prepare_flash_device
      enf_sf: reuse setup_flash_device instead of open coding it
      env_sf: re-order error handling in single-buffer env_relocate_spec
      env_sf: use DIV_ROUND_UP to calculate number of sectors to erase

 common/env_sf.c | 92 ++++++++++++++++++++++-----------------------------------
 1 file changed, 36 insertions(+), 56 deletions(-)

^ permalink raw reply	[flat|nested] 23+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
@ 2015-12-30 10:31 Jagan Teki
  2015-12-30 10:34 ` Jagan Teki
  0 siblings, 1 reply; 23+ messages in thread
From: Jagan Teki @ 2015-12-30 10:31 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull this PR.

thanks!
Jagan.

The following changes since commit 312db9f75f50b339310474d72c8524cef2bd7931:

  armv7: omap-common: Rework SPL board_mmc_init() (2015-12-14 13:42:54 -0500)

are available in the git repository at:

  git://git.denx.de/u-boot-spi.git master

for you to fetch changes up to 25aade812e40f2e869575199c64e35ebcdf5554b:

  defconfig: am437x_sk_evm: enable spi driver model (2015-12-29 13:27:46 +0530)

----------------------------------------------------------------
Jagan Teki (24):
      sf: Get spi locally from spi_flash
      spi: make mode visible to both dm and non-dm
      spi: Use mode instead of op_mode_tx
      spi: Rename SPI_TX_BP|QPP to SPI_TX_BYTE|QUAD
      sf: Move spi_read_cmds_array locally
      sf: Rename spi_flash_set_* functions
      sf: Rename bank_end to bar_end in read_bar
      sf: Remove spi_flash_remove
      sf: Minor cleanup
      sf: Use BIT macro
      sf: Fix quad bit set for micron devices
      sf: Read back and check once spansion quad bit set
      sf: Read back and check once macronix quad bit set
      sf: Write quad bit along with read status
      spi: Remove SPI_OPM_RX_EXTN
      spi: Remove SPI_OPM_RX_DIO|QIOF
      spi: Rename SPI_OPM_RX_* to SPI_RX_*
      spi: Rename op_mode_rx to mode_rx
      spi: Move flags macro's to spi_slave{} members
      spi: Fix bit assignment with flags
      spi: Use BIT macro
      spi: Minor cleanup
      sf: Make IO modes at last in read modes
      spi: Add SPI_TX_DUAL mode

Mugunthan V N (17):
      drivers: spi: ti_qspi: do not hard code chip select for memory map configuration
      drivers: spi:ti_qspi: change ti_qspi_slave to ti_qspi_priv for driver model conversion
      drivers: spi: ti_qspi: prepare driver for DM conversion
      dm: core: Add a new api to get indexed device address
      spi: Add support for dual and quad mode
      dra7xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl
      dts: dra7: add spi alias for qspi
      drivers: spi: ti_qspi: convert driver to adopt device driver model
      arm: dts: dra7: add qspi register maps for memory map and control module
      arm: dts: am437x-gp-evm: add spi-flash comaptible for flash
      arm: dts: dra7-evm: add spi-flash comaptible for flash
      arm: dts: dra72-evm: add spi-flash comaptible for flash
      defconfig: dra72_evm: enable spi driver model
      defconfig: dra74_evm: enable spi driver model
      am43xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl
      arm: dts: am4372: add qspi register maps for memory map
      defconfig: am437x_sk_evm: enable spi driver model

 arch/arm/dts/am4372.dtsi        |   5 +-
 arch/arm/dts/am437x-sk-evm.dts  |   2 +-
 arch/arm/dts/dra7-evm.dts       |   2 +-
 arch/arm/dts/dra7.dtsi          |   8 +-
 arch/arm/dts/dra72-evm.dts      |   2 +-
 configs/am437x_sk_evm_defconfig |   3 +
 configs/dra72_evm_defconfig     |   2 +
 configs/dra74_evm_defconfig     |   2 +
 drivers/core/device.c           |  31 ++-
 drivers/mtd/spi/sf-uclass.c     |   7 +-
 drivers/mtd/spi/sf_internal.h   |  55 +++--
 drivers/mtd/spi/sf_probe.c      |   2 +-
 drivers/mtd/spi/spi_flash.c     | 185 +++++++++-----
 drivers/spi/ich.c               |   4 +-
 drivers/spi/spi-uclass.c        |  38 ++-
 drivers/spi/ti_qspi.c           | 524 ++++++++++++++++++++++++++++------------
 include/configs/am43xx_evm.h    |   2 +
 include/configs/dra7xx_evm.h    |   5 +
 include/dm/device.h             |  11 +
 include/spi.h                   |  75 +++---
 include/spi_flash.h             |   2 -
 21 files changed, 667 insertions(+), 300 deletions(-)

^ permalink raw reply	[flat|nested] 23+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
@ 2015-11-03 18:09 Jagan Teki
  2015-11-04  1:47 ` Tom Rini
  0 siblings, 1 reply; 23+ messages in thread
From: Jagan Teki @ 2015-11-03 18:09 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull this series.

thanks!
Jagan.

The following changes since commit 96d59e9d6aa74e35c63dc74da10e41f8ba0f6de4:

  mpc85xx/t2081: enable parsing DDR ratio for T2081 rev1.1 (2015-11-02 08:51:50 -0800)

are available in the git repository at:

  git://git.denx.de/u-boot-spi.git next

for you to fetch changes up to e39e68f155b4fcd47f62ab2cf0e199d04f38446d:

  sf: Add SPI NOR protection mechanism (2015-11-03 21:51:37 +0530)

----------------------------------------------------------------
Fabio Estevam (16):
      include: Add log2 header from the kernel
      include: Add generic bitops headers
      ARM: bitops: Use the generic bitops headers
      x86: bitops: Use the generic bitops headers
      m68k: bitops: Use the generic bitops headers
      blackfin: bitops: Use the generic bitops headers
      sh: bitops: Use the generic bitops headers
      sandbox: Use the generic bitops headers
      sparc: Use the generic bitops headers
      openrisc: Use the generic bitops headers
      nds32: Use the generic bitops headers
      nios2: Use the generic bitops headers
      compat: Remove is_power_of_2() definition
      powerpc: Remove __ilog2_u64 and ffs4 from bitops
      sf: Add SPI protection mechanism from the kernel
      sf: Add SPI NOR protection mechanism

 arch/arm/include/asm/bitops.h        |   5 +
 arch/arm/mach-mvebu/mbus.c           |   2 +-
 arch/blackfin/include/asm/bitops.h   |   4 +
 arch/m68k/include/asm/bitops.h       |   4 +
 arch/microblaze/include/asm/bitops.h |   4 +
 arch/nds32/include/asm/bitops.h      |   4 +
 arch/nios2/include/asm/bitops.h      |   5 +
 arch/openrisc/include/asm/bitops.h   |   4 +
 arch/powerpc/cpu/mpc83xx/law.c       |   5 +-
 arch/powerpc/cpu/mpc85xx/tlb.c       |   2 +
 arch/powerpc/cpu/mpc8xxx/law.c       |   5 +-
 arch/powerpc/include/asm/bitops.h    |  11 +-
 arch/powerpc/include/asm/fsl_law.h   |   1 +
 arch/powerpc/include/asm/fsl_srio.h  |   2 +
 arch/sandbox/include/asm/bitops.h    |   4 +
 arch/sh/include/asm/bitops.h         |   5 +
 arch/sparc/include/asm/bitops.h      |   5 +
 arch/x86/include/asm/bitops.h        |  21 +++-
 common/cmd_sf.c                      |  35 ++++++
 drivers/mtd/mtdcore.c                |   2 +-
 drivers/mtd/spi/sf_internal.h        |  12 ++
 drivers/mtd/spi/sf_ops.c             | 180 ++++++++++++++++++++++++++++++
 drivers/mtd/spi/sf_probe.c           |  13 +++
 drivers/mtd/ubi/build.c              |   2 +-
 fs/ubifs/super.c                     |   2 +-
 include/asm-generic/bitops/__ffs.h   |  43 ++++++++
 include/asm-generic/bitops/__fls.h   |  43 ++++++++
 include/asm-generic/bitops/fls.h     |  41 +++++++
 include/asm-generic/bitops/fls64.h   |  36 ++++++
 include/linux/bitops.h               |  27 +++++
 include/linux/compat.h               |   6 -
 include/linux/log2.h                 | 205 +++++++++++++++++++++++++++++++++++
 include/spi_flash.h                  |  19 ++++
 33 files changed, 734 insertions(+), 25 deletions(-)
 create mode 100644 include/asm-generic/bitops/__ffs.h
 create mode 100644 include/asm-generic/bitops/__fls.h
 create mode 100644 include/asm-generic/bitops/fls.h
 create mode 100644 include/asm-generic/bitops/fls64.h
 create mode 100644 include/linux/log2.h

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

end of thread, other threads:[~2017-05-09  0:12 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-08 16:16 [U-Boot] Pull request: u-boot-spi/next Jagan Teki
2017-05-09  0:12 ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2015-12-30 10:31 Jagan Teki
2015-12-30 10:34 ` Jagan Teki
2015-12-31 17:54   ` Jagan Teki
2016-01-02 17:04   ` Tom Rini
2016-01-03  3:56     ` Jagan Teki
2016-01-03 14:44       ` Tom Rini
2016-01-03 15:40         ` Jagan Teki
2016-01-03 15:56           ` Tom Rini
2016-01-06  9:24             ` Jagan Teki
2015-11-03 18:09 Jagan Teki
2015-11-04  1:47 ` Tom Rini
2015-11-04  2:01   ` Bin Meng
2015-11-04  3:45   ` Fabio Estevam
2015-11-04 10:46     ` Fabio Estevam
2015-11-04 10:47       ` Fabio Estevam
2015-11-04 11:08         ` Fabio Estevam
2015-11-04 11:17           ` Jagan Teki
2015-11-04 11:21             ` Fabio Estevam
2015-11-04 11:30               ` Jagan Teki
2015-11-04 11:35                 ` Fabio Estevam
2015-11-04 14:01                   ` Fabio Estevam

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