public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v2 00/34] Sama7g5 Evaluation Kit support
@ 2020-12-05 10:02 Eugen Hristev
  2020-12-05 10:02 ` [PATCH v2 01/34] ARM: dts: sama7g5: add initial DT for sama7g5 SoC Eugen Hristev
                   ` (34 more replies)
  0 siblings, 35 replies; 37+ messages in thread
From: Eugen Hristev @ 2020-12-05 10:02 UTC (permalink / raw)
  To: u-boot

Hello,

This series adds support for sama7g5 SoC DT and the sama7g5ek board.
I kept the original incremental development for this board, with each
commit's author and designated change, for traceability and for easier
reviewing.

The series starts from a basic devicetree and ends with a fully functional
board including SD-Card/MMC, i2c eeproms, ethernet.

Thanks,
Eugen

Changes in v2:
- fixed compatible for i2c eeprom, mac was not read correctly in latest u-boot version
- fixed some checkpatch warnings and some spacing

Claudiu Beznea (20):
  board: atmel: sama7g5ek: add SYS_MALLOC_F_LEN to SYS_INIT_SP_ADDR
  configs: sama7g5ek: set malloc pool to 68K
  configs: sama7g5ek: enable pll driver
  ARM: dts: sama7g5: move clock frequencies for xtals in board file
  ARM: dts: sama7g5: add slow rc and main rc oscillators
  ARM: dts: sama7g5: add u-boot,dm-pre-reloc bindings for xtals
  ARM: dts: sama7g5: add slow clock bindings
  ARM: dts: sama7g5: add PMC bindings
  ARM: dts: sama7g5: switch to PMC bindings
  configs: sama7g5: enable CONFIG_CPU
  ARM: dts: sama7g5: add CPU bindings
  configs: sama7g5: use PIT64B
  ARM: dts: sama7g5: enable autoboot
  ARM: dts: sama7g5: add pit64b support
  configs: sama7g5ek: enable mii command
  ARM: dts: sama7g5: add GMAC0
  ARM: dts: sama7g5: add GMAC1
  board: atmel: sama7g5ek: increase arp timeout and retry count
  configs: sama7g5ek: enable support for KSZ9131
  configs: sama7g5ek: enable CCF

Eugen Hristev (13):
  ARM: dts: sama7g5: add initial DT for sama7g5 SoC
  board: atmel: sama7g5ek: add initial support for sama7g5ek
  ARM: dts: at91: sama7g5: add pinctrl node
  ARM: dts: at91: sama7g5ek: add pinctrl for sdmmc1 and flx3
  ARM: dts: at91: sama7g5: add assigned clocks for sdmmc1
  ARM: dts: at91: sama7g5: add node for sdmmc0
  ARM: dts: at91: sama7g5ek: enable sdmmc0 with pinctrl
  board: atmel: sama7g5ek: clean-up header bootcommand
  configs: sama7g5: add mmc config for sdmmc0
  ARM: dts: at91: sama7g5: add flexcom1 and i2c subnode
  ARM: dts: sama7g5ek: add i2c1 bus and eeproms
  board: atmel: sama7g5ek: add support for MAC address retreival
  configs: sama7g5ek: add i2c and eeprom

Nicolas Ferre (1):
  ARM: dts: sama7g5ek: fix TXC pin configuration

 arch/arm/dts/Makefile              |   3 +
 arch/arm/dts/sama7g5.dtsi          | 170 ++++++++++++++++++++++++
 arch/arm/dts/sama7g5ek-u-boot.dtsi |  65 ++++++++++
 arch/arm/dts/sama7g5ek.dts         | 202 +++++++++++++++++++++++++++++
 arch/arm/mach-at91/Kconfig         |   8 ++
 board/atmel/sama7g5ek/Kconfig      |  15 +++
 board/atmel/sama7g5ek/MAINTAINERS  |   8 ++
 board/atmel/sama7g5ek/Makefile     |   7 +
 board/atmel/sama7g5ek/sama7g5ek.c  |  76 +++++++++++
 configs/sama7g5ek_mmc1_defconfig   |  70 ++++++++++
 configs/sama7g5ek_mmc_defconfig    |  70 ++++++++++
 include/configs/sama7g5ek.h        |  45 +++++++
 12 files changed, 739 insertions(+)
 create mode 100644 arch/arm/dts/sama7g5.dtsi
 create mode 100644 arch/arm/dts/sama7g5ek-u-boot.dtsi
 create mode 100644 arch/arm/dts/sama7g5ek.dts
 create mode 100644 board/atmel/sama7g5ek/Kconfig
 create mode 100644 board/atmel/sama7g5ek/MAINTAINERS
 create mode 100644 board/atmel/sama7g5ek/Makefile
 create mode 100644 board/atmel/sama7g5ek/sama7g5ek.c
 create mode 100644 configs/sama7g5ek_mmc1_defconfig
 create mode 100644 configs/sama7g5ek_mmc_defconfig
 create mode 100644 include/configs/sama7g5ek.h

-- 
2.25.1

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

end of thread, other threads:[~2021-01-07  7:47 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-05 10:02 [PATCH v2 00/34] Sama7g5 Evaluation Kit support Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 01/34] ARM: dts: sama7g5: add initial DT for sama7g5 SoC Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 02/34] board: atmel: sama7g5ek: add initial support for sama7g5ek Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 03/34] board: atmel: sama7g5ek: add SYS_MALLOC_F_LEN to SYS_INIT_SP_ADDR Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 04/34] configs: sama7g5ek: set malloc pool to 68K Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 05/34] configs: sama7g5ek: enable pll driver Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 06/34] ARM: dts: sama7g5: move clock frequencies for xtals in board file Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 07/34] ARM: dts: sama7g5: add slow rc and main rc oscillators Eugen Hristev
2020-12-07 17:28   ` [PATCH v3 " Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 08/34] ARM: dts: sama7g5: add u-boot, dm-pre-reloc bindings for xtals Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 09/34] ARM: dts: sama7g5: add slow clock bindings Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 10/34] ARM: dts: sama7g5: add PMC bindings Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 11/34] ARM: dts: sama7g5: switch to " Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 12/34] configs: sama7g5: enable CONFIG_CPU Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 13/34] ARM: dts: sama7g5: add CPU bindings Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 14/34] configs: sama7g5: use PIT64B Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 15/34] ARM: dts: sama7g5: enable autoboot Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 16/34] ARM: dts: sama7g5: add pit64b support Eugen Hristev
2020-12-05 10:02 ` [PATCH v2 17/34] ARM: dts: at91: sama7g5: add pinctrl node Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 18/34] ARM: dts: at91: sama7g5ek: add pinctrl for sdmmc1 and flx3 Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 19/34] configs: sama7g5ek: enable mii command Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 20/34] ARM: dts: sama7g5: add GMAC0 Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 21/34] ARM: dts: sama7g5: add GMAC1 Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 22/34] board: atmel: sama7g5ek: increase arp timeout and retry count Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 23/34] configs: sama7g5ek: enable support for KSZ9131 Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 24/34] configs: sama7g5ek: enable CCF Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 25/34] ARM: dts: at91: sama7g5: add assigned clocks for sdmmc1 Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 26/34] ARM: dts: at91: sama7g5: add node for sdmmc0 Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 27/34] ARM: dts: at91: sama7g5ek: enable sdmmc0 with pinctrl Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 28/34] board: atmel: sama7g5ek: clean-up header bootcommand Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 29/34] configs: sama7g5: add mmc config for sdmmc0 Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 30/34] ARM: dts: at91: sama7g5: add flexcom1 and i2c subnode Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 31/34] ARM: dts: sama7g5ek: add i2c1 bus and eeproms Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 32/34] board: atmel: sama7g5ek: add support for MAC address retreival Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 33/34] configs: sama7g5ek: add i2c and eeprom Eugen Hristev
2020-12-05 10:03 ` [PATCH v2 34/34] ARM: dts: sama7g5ek: fix TXC pin configuration Eugen Hristev
2021-01-07  7:47 ` [PATCH v2 00/34] Sama7g5 Evaluation Kit support Eugen.Hristev at microchip.com

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