mbox series

[v2,0/4] Add initial support for Microchip SAMA7G54 Curiosity board

Message ID 20240227134403.10686-1-mihai.sain@microchip.com
Headers show
Series Add initial support for Microchip SAMA7G54 Curiosity board | expand

Message

Mihai Sain Feb. 27, 2024, 1:43 p.m. UTC
This patch series adds initial support for Microchip SAMA7G54 Curiosity board.

Changes in v2:
--------------

* Update flexcom 10 node in order to match previous flexcom definitions.
* Sort in alphabetical order all nodes and pinctrl.
* Remove status okay from leds, nand, eeprom, flash.
* Add CONFIG_ENV_SIZE=0x4000 in mmc defconfig.
* Set CONFIG_ENV_SECT_SIZE=0x10000 in qspiflash defconfig.

Mihai Sain (4):
  ARM: dts: at91: sama7g5: Add flexcom 10 node
  ARM: dts: at91: sama7g54_curiosity: Add initial device tree of the board
  board: at91: sama7g54_curiosity: Add initial board support
  configs: at91: sama7g54_curiosity: Add initial default configs

 arch/arm/dts/Makefile                         |   3 +
 .../dts/at91-sama7g54_curiosity-u-boot.dtsi   |  59 +++++
 arch/arm/dts/at91-sama7g54_curiosity.dts      | 242 ++++++++++++++++++
 arch/arm/dts/sama7g5.dtsi                     |  24 ++
 arch/arm/mach-at91/Kconfig                    |  10 +
 board/atmel/sama7g54_curiosity/Kconfig        |  15 ++
 board/atmel/sama7g54_curiosity/MAINTAINERS    |   9 +
 board/atmel/sama7g54_curiosity/Makefile       |   7 +
 .../sama7g54_curiosity/sama7g54_curiosity.c   |  36 +++
 configs/sama7g54_curiosity_mmc_defconfig      | 123 +++++++++
 .../sama7g54_curiosity_nandflash_defconfig    | 122 +++++++++
 .../sama7g54_curiosity_qspiflash_defconfig    | 122 +++++++++
 include/configs/sama7g54_curiosity.h          |  17 ++
 13 files changed, 789 insertions(+)
 create mode 100644 arch/arm/dts/at91-sama7g54_curiosity-u-boot.dtsi
 create mode 100644 arch/arm/dts/at91-sama7g54_curiosity.dts
 create mode 100644 board/atmel/sama7g54_curiosity/Kconfig
 create mode 100644 board/atmel/sama7g54_curiosity/MAINTAINERS
 create mode 100644 board/atmel/sama7g54_curiosity/Makefile
 create mode 100644 board/atmel/sama7g54_curiosity/sama7g54_curiosity.c
 create mode 100644 configs/sama7g54_curiosity_mmc_defconfig
 create mode 100644 configs/sama7g54_curiosity_nandflash_defconfig
 create mode 100644 configs/sama7g54_curiosity_qspiflash_defconfig
 create mode 100644 include/configs/sama7g54_curiosity.h

Comments

Eugen Hristev March 14, 2024, 8:47 a.m. UTC | #1
On 2/27/24 15:43, Mihai Sain wrote:
> This patch series adds initial support for Microchip SAMA7G54 Curiosity board.
> 
> Changes in v2:
> --------------
> 
> * Update flexcom 10 node in order to match previous flexcom definitions.
> * Sort in alphabetical order all nodes and pinctrl.
> * Remove status okay from leds, nand, eeprom, flash.
> * Add CONFIG_ENV_SIZE=0x4000 in mmc defconfig.
> * Set CONFIG_ENV_SECT_SIZE=0x10000 in qspiflash defconfig.
> 
> Mihai Sain (4):
>   ARM: dts: at91: sama7g5: Add flexcom 10 node
>   ARM: dts: at91: sama7g54_curiosity: Add initial device tree of the board
>   board: at91: sama7g54_curiosity: Add initial board support
>   configs: at91: sama7g54_curiosity: Add initial default configs
> 
>  arch/arm/dts/Makefile                         |   3 +
>  .../dts/at91-sama7g54_curiosity-u-boot.dtsi   |  59 +++++
>  arch/arm/dts/at91-sama7g54_curiosity.dts      | 242 ++++++++++++++++++
>  arch/arm/dts/sama7g5.dtsi                     |  24 ++
>  arch/arm/mach-at91/Kconfig                    |  10 +
>  board/atmel/sama7g54_curiosity/Kconfig        |  15 ++
>  board/atmel/sama7g54_curiosity/MAINTAINERS    |   9 +
>  board/atmel/sama7g54_curiosity/Makefile       |   7 +
>  .../sama7g54_curiosity/sama7g54_curiosity.c   |  36 +++
>  configs/sama7g54_curiosity_mmc_defconfig      | 123 +++++++++
>  .../sama7g54_curiosity_nandflash_defconfig    | 122 +++++++++
>  .../sama7g54_curiosity_qspiflash_defconfig    | 122 +++++++++
>  include/configs/sama7g54_curiosity.h          |  17 ++
>  13 files changed, 789 insertions(+)
>  create mode 100644 arch/arm/dts/at91-sama7g54_curiosity-u-boot.dtsi
>  create mode 100644 arch/arm/dts/at91-sama7g54_curiosity.dts
>  create mode 100644 board/atmel/sama7g54_curiosity/Kconfig
>  create mode 100644 board/atmel/sama7g54_curiosity/MAINTAINERS
>  create mode 100644 board/atmel/sama7g54_curiosity/Makefile
>  create mode 100644 board/atmel/sama7g54_curiosity/sama7g54_curiosity.c
>  create mode 100644 configs/sama7g54_curiosity_mmc_defconfig
>  create mode 100644 configs/sama7g54_curiosity_nandflash_defconfig
>  create mode 100644 configs/sama7g54_curiosity_qspiflash_defconfig
>  create mode 100644 include/configs/sama7g54_curiosity.h
> 


Applied to u-boot-at91/next , thanks !