public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 00/13] Add Support for eMMC in AM65x-evm
@ 2019-02-12  8:58 Faiz Abbas
  2019-02-12  8:58 ` [U-Boot] [PATCH v3 01/13] arm64: dts: k3: Sync sdhci0 node from kernel Faiz Abbas
                   ` (12 more replies)
  0 siblings, 13 replies; 33+ messages in thread
From: Faiz Abbas @ 2019-02-12  8:58 UTC (permalink / raw)
  To: u-boot

Add Support for eMMC in TI's AM65x-evm. The series starts
by syncing the sdhci0 node from the kernel. Then it adds APIs and
changes to the driver required for handling the driver's integrated
phy. The current maximum supported speed is DDR52. Higher speeds and
tuning support will be added in a subsequent series.

Support for booting from eMMC will also be added in subsequent patches.

Tested on Lokesh's branch[1] as sysfw loading for AM65x is not yet
upstream.

[1] https://github.com/lokeshvutla/u-boot/tree/devel/am65x-evm-boot

Changes in v3:
Patch 9: Got rid of variable ret

Changes in v2:
Patch 9: Fixed return value
Patch 12: Fixed spacing

Faiz Abbas (13):
  arm64: dts: k3: Sync sdhci0 node from kernel
  mmc: am654_mmc: Change driver name
  mmc: am654_sdhci: Remove quirks
  regmap: Add API regmap_init_mem_index()
  regmap: Add support for polling on a register
  mmc: sdhci: Add support for sdhci-caps-mask
  mmc: sdhci: Make sdhci_set_clock() non static
  arm: dts: k3: Add phy specific properties to SD card node
  mmc: sdhci: Make set_ios_post() return int
  mmc: am654_sdhci: Add Support for PHY
  configs: am65x_evm: Enable CONFIG_REGMAP
  mmc: sdhci: Add support for HOST_CONTROL2 and setting UHS timings
  mmc: am654_sdhci: Add a platform specific set_control_reg() callback

 arch/arm/dts/k3-am65-main.dtsi               |  22 ++
 arch/arm/dts/k3-am654-base-board-u-boot.dtsi |  40 +--
 arch/arm/dts/k3-am654-base-board.dts         |  28 ++
 configs/am65x_evm_a53_defconfig              |   4 +-
 configs/am65x_evm_r5_defconfig               |   4 +-
 drivers/core/regmap.c                        |  42 +++
 drivers/mmc/Kconfig                          |   9 +-
 drivers/mmc/Makefile                         |   2 +-
 drivers/mmc/am654_sdhci.c                    | 340 +++++++++++++++++++
 drivers/mmc/k3_arsan_sdhci.c                 | 109 ------
 drivers/mmc/sdhci.c                          |  47 ++-
 drivers/mmc/xenon_sdhci.c                    |   4 +-
 drivers/mmc/zynq_sdhci.c                     |  31 +-
 include/regmap.h                             |  36 ++
 include/sdhci.h                              |  22 +-
 15 files changed, 549 insertions(+), 191 deletions(-)
 create mode 100644 drivers/mmc/am654_sdhci.c
 delete mode 100644 drivers/mmc/k3_arsan_sdhci.c

-- 
2.19.2

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

end of thread, other threads:[~2019-04-15  5:46 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-12  8:58 [U-Boot] [PATCH v3 00/13] Add Support for eMMC in AM65x-evm Faiz Abbas
2019-02-12  8:58 ` [U-Boot] [PATCH v3 01/13] arm64: dts: k3: Sync sdhci0 node from kernel Faiz Abbas
2019-02-19 11:30   ` Lokesh Vutla
2019-04-12 16:28   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 02/13] mmc: am654_mmc: Change driver name Faiz Abbas
2019-04-12 16:28   ` [U-Boot] [U-Boot,v3,02/13] " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 03/13] mmc: am654_sdhci: Remove quirks Faiz Abbas
2019-04-12 16:28   ` [U-Boot] [U-Boot,v3,03/13] " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 04/13] regmap: Add API regmap_init_mem_index() Faiz Abbas
2019-04-12 16:28   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 05/13] regmap: Add support for polling on a register Faiz Abbas
2019-02-13  7:55   ` Faiz Abbas
2019-04-15  5:46     ` Faiz Abbas
2019-04-12 16:28   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 06/13] mmc: sdhci: Add support for sdhci-caps-mask Faiz Abbas
2019-03-27 14:55   ` Andrew F. Davis
2019-04-12 16:28   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-04-12 16:28   ` Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 07/13] mmc: sdhci: Make sdhci_set_clock() non static Faiz Abbas
2019-04-12 16:28   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 08/13] arm: dts: k3: Add phy specific properties to SD card node Faiz Abbas
2019-04-12 16:29   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 09/13] mmc: sdhci: Make set_ios_post() return int Faiz Abbas
2019-02-13  0:56   ` Tom Rini
2019-04-12 16:29   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 10/13] mmc: am654_sdhci: Add Support for PHY Faiz Abbas
2019-04-12 16:29   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 11/13] configs: am65x_evm: Enable CONFIG_REGMAP Faiz Abbas
2019-04-12 16:29   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 12/13] mmc: sdhci: Add support for HOST_CONTROL2 and setting UHS timings Faiz Abbas
2019-04-12 16:29   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-02-12  8:58 ` [U-Boot] [PATCH v3 13/13] mmc: am654_sdhci: Add a platform specific set_control_reg() callback Faiz Abbas
2019-04-12 16:29   ` [U-Boot] [U-Boot, v3, " Tom Rini

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