public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/11] ARM: ti: dra71: Add support for dra71-evm
@ 2016-11-23  7:55 Lokesh Vutla
  2016-11-23  7:55 ` [U-Boot] [PATCH 01/11] board: ti: dra71x-evm: Add epprom support Lokesh Vutla
                   ` (10 more replies)
  0 siblings, 11 replies; 34+ messages in thread
From: Lokesh Vutla @ 2016-11-23  7:55 UTC (permalink / raw)
  To: u-boot

This series adds support for dra71-evm. This is dependent on the OPP kconfig
support series posted recently[1].

Testing:
dra71-evm: http://pastebin.ubuntu.com/23521081/
dra72-evm-revc: http://pastebin.ubuntu.com/23521117/ 
dra7-evm: http://pastebin.ubuntu.com/23521091/ 

[1] https://www.mail-archive.com/u-boot at lists.denx.de/msg231685.html

Keerthy (2):
  board: ti: dra71x-evm: Add PMIC support
  configs: dra7xx: Enable lp873x options

Lokesh Vutla (7):
  board: ti: dra71x-evm: Add epprom support
  board: ti: dra71x-evm: Add mux settings
  ARM: OMAP4+: Add support for getting pbias info from board
  ARM: dts: dra7xx: sync DT with latest Linux
  ARM: dts: dra71x-evm: Add DT support
  configs: dra7xx: hs: Enable DM_ETH
  configs: dra7xx: Enable pmic/regulator options

Nishanth Menon (2):
  board: ti: dra72: Introduce optimization for rgmii timing for rev C
  configs: ti_omap5_common: Select dtb name for dra71x

 arch/arm/dts/Makefile                   |   2 +-
 arch/arm/dts/dra7-dspeve-thermal.dtsi   |  27 ++
 arch/arm/dts/dra7-evm.dts               | 507 ++++++++++++++++------
 arch/arm/dts/dra7-iva-thermal.dtsi      |  27 ++
 arch/arm/dts/dra7.dtsi                  | 717 ++++++++++++++++++++++++++------
 arch/arm/dts/dra71-evm.dts              | 230 ++++++++++
 arch/arm/dts/dra72-evm-common.dtsi      | 353 +++++++++-------
 arch/arm/dts/dra72-evm-revc.dts         |  30 +-
 arch/arm/dts/dra72-evm-tps65917.dtsi    | 134 ++++++
 arch/arm/dts/dra72-evm.dts              |  37 +-
 arch/arm/dts/dra7xx-clocks.dtsi         | 425 ++++++++++---------
 arch/arm/include/asm/arch-omap5/clock.h |   8 +
 arch/arm/include/asm/omap_common.h      |   1 +
 arch/arm/include/asm/omap_mmc.h         |   2 +-
 arch/arm/mach-omap2/omap4/hwinit.c      |  13 +
 arch/arm/mach-omap2/omap5/hw_data.c     |  16 +
 arch/arm/mach-omap2/omap5/hwinit.c      |  34 ++
 board/ti/dra7xx/evm.c                   |  69 ++-
 board/ti/dra7xx/mux_data.h              | 275 ++++++++++--
 configs/dra7xx_evm_defconfig            |   6 +-
 configs/dra7xx_hs_evm_defconfig         |  10 +-
 drivers/mmc/omap_hsmmc.c                |  33 +-
 drivers/power/palmas.c                  |  21 +-
 include/configs/ti_omap5_common.h       |   2 +
 include/dt-bindings/clk/ti-dra7-atl.h   |  40 ++
 include/dt-bindings/pinctrl/dra.h       |  26 ++
 include/palmas.h                        |  13 +-
 27 files changed, 2354 insertions(+), 704 deletions(-)
 create mode 100644 arch/arm/dts/dra7-dspeve-thermal.dtsi
 create mode 100644 arch/arm/dts/dra7-iva-thermal.dtsi
 create mode 100644 arch/arm/dts/dra71-evm.dts
 create mode 100644 arch/arm/dts/dra72-evm-tps65917.dtsi
 create mode 100644 include/dt-bindings/clk/ti-dra7-atl.h

-- 
2.10.1

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

end of thread, other threads:[~2016-12-04 23:26 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-23  7:55 [U-Boot] [PATCH 00/11] ARM: ti: dra71: Add support for dra71-evm Lokesh Vutla
2016-11-23  7:55 ` [U-Boot] [PATCH 01/11] board: ti: dra71x-evm: Add epprom support Lokesh Vutla
2016-11-26 16:17   ` Tom Rini
2016-12-04 23:20   ` [U-Boot] [U-Boot, " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 02/11] board: ti: dra71x-evm: Add mux settings Lokesh Vutla
2016-11-26 16:18   ` Tom Rini
2016-12-04 23:20   ` [U-Boot] [U-Boot, " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 03/11] board: ti: dra72: Introduce optimization for rgmii timing for rev C Lokesh Vutla
2016-11-26 16:19   ` Tom Rini
2016-12-04 23:20   ` [U-Boot] [U-Boot, " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 04/11] board: ti: dra71x-evm: Add PMIC support Lokesh Vutla
2016-11-26 16:19   ` Tom Rini
2016-12-04 23:21   ` [U-Boot] [U-Boot, " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 05/11] ARM: OMAP4+: Add support for getting pbias info from board Lokesh Vutla
2016-11-26 16:23   ` Tom Rini
2016-12-04 23:22   ` [U-Boot] [U-Boot, " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 06/11] ARM: dts: dra7xx: sync DT with latest Linux Lokesh Vutla
2016-11-26 16:23   ` Tom Rini
2016-12-04 23:22   ` [U-Boot] [U-Boot, " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 07/11] ARM: dts: dra71x-evm: Add DT support Lokesh Vutla
2016-11-26 16:27   ` Tom Rini
2016-12-04 23:23   ` [U-Boot] [U-Boot,07/11] " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 08/11] configs: ti_omap5_common: Select dtb name for dra71x Lokesh Vutla
2016-11-26 16:28   ` Tom Rini
2016-12-04 23:25   ` [U-Boot] [U-Boot, " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 09/11] configs: dra7xx: hs: Enable DM_ETH Lokesh Vutla
2016-11-26 16:29   ` Tom Rini
2016-12-04 23:25   ` [U-Boot] [U-Boot,09/11] " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 10/11] configs: dra7xx: Enable pmic/regulator options Lokesh Vutla
2016-11-26 16:29   ` Tom Rini
2016-12-04 23:25   ` [U-Boot] [U-Boot, " Tom Rini
2016-11-23  7:55 ` [U-Boot] [PATCH 11/11] configs: dra7xx: Enable lp873x options Lokesh Vutla
2016-11-26 16:30   ` Tom Rini
2016-12-04 23:26   ` [U-Boot] [U-Boot,11/11] " Tom Rini

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