* [PATCHv3 0/3] Add support for sam9x60_curiosity
@ 2022-04-04 5:53 Durai Manickam KR
2022-04-04 5:53 ` [PATCHv3 1/3] board: Add sam9x60_curiosity support Durai Manickam KR
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Durai Manickam KR @ 2022-04-04 5:53 UTC (permalink / raw)
To: u-boot; +Cc: durai.manickamkr
---
v2 -> v3:
- Few symbols defined in the board specific header file (i.e)
sam9x60_curiosity.h are no longer accepted by the u-boot mainline. So the
below changes has been done.
- NAND symbols are no longer accepted by the u-boot mainline. This shall be
migrated to device tree model. So, this patch series contains only SDMMC
support. NAND support will be added once device tree model is implemented.
- Removed sam9x60_curiosity_nand_hw_init function from the board specific C file.
- Removed the NAND config support in the SDMMC defconfig.
- Converted CONFIG_BOOTP_BOOTFILESIZE to Kconfig
---
v1 -> v2:
- This patch series adds support for sam9x60_curiosity.
- Converted CONFIG_ATMEL_LEGACY to Kconfig. Previosly sent patch series from
u-boot/master branch now sending the patch series on top of u-boot/next branch
as v2.
Durai Manickam KR (3):
board: Add sam9x60_curiosity support
ARM: dts: Add device tree files for sam9x60_curiosity
configs: Add sam9x60_curiosity_mmc_defconfig
arch/arm/dts/Makefile | 2 +
.../dts/at91-sam9x60_curiosity-u-boot.dtsi | 79 +++++++++++++++++++
arch/arm/dts/at91-sam9x60_curiosity.dts | 74 +++++++++++++++++
arch/arm/mach-at91/Kconfig | 7 ++
board/atmel/sam9x60_curiosity/Kconfig | 15 ++++
board/atmel/sam9x60_curiosity/MAINTAINERS | 7 ++
board/atmel/sam9x60_curiosity/Makefile | 7 ++
.../sam9x60_curiosity/sam9x60_curiosity.c | 75 ++++++++++++++++++
configs/sam9x60_curiosity_mmc_defconfig | 74 +++++++++++++++++
include/configs/sam9x60_curiosity.h | 31 ++++++++
10 files changed, 371 insertions(+)
create mode 100644 arch/arm/dts/at91-sam9x60_curiosity-u-boot.dtsi
create mode 100644 arch/arm/dts/at91-sam9x60_curiosity.dts
create mode 100644 board/atmel/sam9x60_curiosity/Kconfig
create mode 100644 board/atmel/sam9x60_curiosity/MAINTAINERS
create mode 100644 board/atmel/sam9x60_curiosity/Makefile
create mode 100644 board/atmel/sam9x60_curiosity/sam9x60_curiosity.c
create mode 100644 configs/sam9x60_curiosity_mmc_defconfig
create mode 100644 include/configs/sam9x60_curiosity.h
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCHv3 1/3] board: Add sam9x60_curiosity support
2022-04-04 5:53 [PATCHv3 0/3] Add support for sam9x60_curiosity Durai Manickam KR
@ 2022-04-04 5:53 ` Durai Manickam KR
2022-04-04 5:53 ` [PATCHv3 2/3] ARM: dts: Add device tree files for sam9x60_curiosity Durai Manickam KR
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Durai Manickam KR @ 2022-04-04 5:53 UTC (permalink / raw)
To: u-boot; +Cc: durai.manickamkr
Add board files, Kconfig, Makefile and MAINTAINERS.
Signed-off-by: Durai Manickam KR <durai.manickamkr@microchip.com>
---
arch/arm/mach-at91/Kconfig | 7 ++
board/atmel/sam9x60_curiosity/Kconfig | 15 ++++
board/atmel/sam9x60_curiosity/MAINTAINERS | 6 ++
board/atmel/sam9x60_curiosity/Makefile | 7 ++
.../sam9x60_curiosity/sam9x60_curiosity.c | 75 +++++++++++++++++++
include/configs/sam9x60_curiosity.h | 31 ++++++++
6 files changed, 141 insertions(+)
create mode 100644 board/atmel/sam9x60_curiosity/Kconfig
create mode 100644 board/atmel/sam9x60_curiosity/MAINTAINERS
create mode 100644 board/atmel/sam9x60_curiosity/Makefile
create mode 100644 board/atmel/sam9x60_curiosity/sam9x60_curiosity.c
create mode 100644 include/configs/sam9x60_curiosity.h
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
index 145c4b276b..7b2a62bf8a 100644
--- a/arch/arm/mach-at91/Kconfig
+++ b/arch/arm/mach-at91/Kconfig
@@ -164,6 +164,12 @@ config TARGET_SAM9X60EK
select BOARD_EARLY_INIT_F
select BOARD_LATE_INIT
+config TARGET_SAM9X60_CURIOSITY
+ bool "SAM9X60 CURIOSITY board"
+ select SAM9X60
+ select BOARD_EARLY_INIT_F
+ select BOARD_LATE_INIT
+
config TARGET_SAMA5D2_PTC_EK
bool "SAMA5D2 PTC EK board"
select BOARD_EARLY_INIT_F
@@ -335,6 +341,7 @@ source "board/atmel/at91sam9n12ek/Kconfig"
source "board/atmel/at91sam9rlek/Kconfig"
source "board/atmel/at91sam9x5ek/Kconfig"
source "board/atmel/sam9x60ek/Kconfig"
+source "board/atmel/sam9x60_curiosity/Kconfig"
source "board/atmel/sama7g5ek/Kconfig"
source "board/atmel/sama5d2_ptc_ek/Kconfig"
source "board/atmel/sama5d2_xplained/Kconfig"
diff --git a/board/atmel/sam9x60_curiosity/Kconfig b/board/atmel/sam9x60_curiosity/Kconfig
new file mode 100644
index 0000000000..ae84e0f32c
--- /dev/null
+++ b/board/atmel/sam9x60_curiosity/Kconfig
@@ -0,0 +1,15 @@
+if TARGET_SAM9X60_CURIOSITY
+
+config SYS_BOARD
+ default "sam9x60_curiosity"
+
+config SYS_VENDOR
+ default "atmel"
+
+config SYS_SOC
+ default "at91"
+
+config SYS_CONFIG_NAME
+ default "sam9x60_curiosity"
+
+endif
diff --git a/board/atmel/sam9x60_curiosity/MAINTAINERS b/board/atmel/sam9x60_curiosity/MAINTAINERS
new file mode 100644
index 0000000000..84a3a9f186
--- /dev/null
+++ b/board/atmel/sam9x60_curiosity/MAINTAINERS
@@ -0,0 +1,6 @@
+SAM9X60 CURIOSITY BOARD
+M: Durai Manickam KR <durai.manickamkr@microchip.com>
+M: Eugen Hristev <eugen.hristev@microchip.com>
+S: Maintained
+F: board/atmel/sam9x60_curiosity/
+F: include/configs/sam9x60_curiosity.h
diff --git a/board/atmel/sam9x60_curiosity/Makefile b/board/atmel/sam9x60_curiosity/Makefile
new file mode 100644
index 0000000000..c4d17e66d4
--- /dev/null
+++ b/board/atmel/sam9x60_curiosity/Makefile
@@ -0,0 +1,7 @@
+# SPDX-License-Identifier: GPL-2.0+
+#
+# Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries
+#
+# Author: Durai Manickam KR <durai.manickamkr@microchip.com>
+
+obj-y += sam9x60_curiosity.o
diff --git a/board/atmel/sam9x60_curiosity/sam9x60_curiosity.c b/board/atmel/sam9x60_curiosity/sam9x60_curiosity.c
new file mode 100644
index 0000000000..00de277812
--- /dev/null
+++ b/board/atmel/sam9x60_curiosity/sam9x60_curiosity.c
@@ -0,0 +1,75 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries
+ *
+ * Author: Durai Manickam KR <durai.manickamkr@microchip.com>
+ */
+
+#include <common.h>
+#include <debug_uart.h>
+#include <fdtdec.h>
+#include <init.h>
+#include <asm/arch/at91_common.h>
+#include <asm/arch/at91_rstc.h>
+#include <asm/arch/at91_sfr.h>
+#include <asm/arch/at91sam9_smc.h>
+#include <asm/arch/clk.h>
+#include <asm/arch/gpio.h>
+#include <asm/global_data.h>
+#include <asm/io.h>
+#include <asm/mach-types.h>
+
+DECLARE_GLOBAL_DATA_PTR;
+
+void at91_prepare_cpu_var(void);
+
+int board_late_init(void)
+{
+ at91_prepare_cpu_var();
+
+ return 0;
+}
+
+#ifdef CONFIG_DEBUG_UART_BOARD_INIT
+void board_debug_uart_init(void)
+{
+ at91_seriald_hw_init();
+}
+#endif
+
+int board_early_init_f(void)
+{
+#ifdef CONFIG_DEBUG_UART
+ debug_uart_init();
+#endif
+ return 0;
+}
+
+#define MAC24AA_MAC_OFFSET 0xfa
+
+#ifdef CONFIG_MISC_INIT_R
+int misc_init_r(void)
+{
+#ifdef CONFIG_I2C_EEPROM
+ at91_set_ethaddr(MAC24AA_MAC_OFFSET);
+#endif
+ return 0;
+}
+#endif
+
+int board_init(void)
+{
+ /* address of boot parameters */
+ gd->bd->bi_boot_params = gd->bd->bi_dram[0].start + 0x100;
+ return 0;
+}
+
+int dram_init_banksize(void)
+{
+ return fdtdec_setup_memory_banksize();
+}
+
+int dram_init(void)
+{
+ return fdtdec_setup_mem_size_base();
+}
diff --git a/include/configs/sam9x60_curiosity.h b/include/configs/sam9x60_curiosity.h
new file mode 100644
index 0000000000..2708711a4e
--- /dev/null
+++ b/include/configs/sam9x60_curiosity.h
@@ -0,0 +1,31 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Configuration settings for the SAM9X60 CURIOSITY board.
+ *
+ * Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries
+ *
+ * Author: Durai Manickam KR <durai.manickamkr@microchip.com>
+ */
+
+#ifndef __CONFIG_H__
+#define __CONFIG_H__
+
+#define CONFIG_SYS_AT91_SLOW_CLOCK 32768
+#define CONFIG_SYS_AT91_MAIN_CLOCK 24000000 /* 24 MHz crystal */
+
+#define CONFIG_USART_BASE ATMEL_BASE_DBGU
+#define CONFIG_USART_ID 0 /* ignored in arm */
+
+/* SDRAM */
+#define CONFIG_SYS_SDRAM_BASE 0x20000000
+#define CONFIG_SYS_SDRAM_SIZE 0x8000000 /* 128 MB */
+
+#ifdef CONFIG_SPL_BUILD
+#define CONFIG_SYS_INIT_SP_ADDR 0x218000
+#else
+#define CONFIG_SYS_INIT_SP_ADDR \
+ (CONFIG_SYS_SDRAM_BASE + 16 * 1024 + CONFIG_SYS_MALLOC_F_LEN - \
+ GENERATED_GBL_DATA_SIZE)
+#endif
+
+#endif
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCHv3 2/3] ARM: dts: Add device tree files for sam9x60_curiosity
2022-04-04 5:53 [PATCHv3 0/3] Add support for sam9x60_curiosity Durai Manickam KR
2022-04-04 5:53 ` [PATCHv3 1/3] board: Add sam9x60_curiosity support Durai Manickam KR
@ 2022-04-04 5:53 ` Durai Manickam KR
2022-04-04 5:53 ` [PATCHv3 3/3] configs: Add sam9x60_curiosity_mmc_defconfig Durai Manickam KR
2022-04-27 6:00 ` [PATCHv3 0/3] Add support for sam9x60_curiosity Eugen.Hristev
3 siblings, 0 replies; 5+ messages in thread
From: Durai Manickam KR @ 2022-04-04 5:53 UTC (permalink / raw)
To: u-boot; +Cc: durai.manickamkr
Add dts and dtsi files.
Signed-off-by: Durai Manickam KR <durai.manickamkr@microchip.com>
---
arch/arm/dts/Makefile | 2 +
.../dts/at91-sam9x60_curiosity-u-boot.dtsi | 79 +++++++++++++++++++
arch/arm/dts/at91-sam9x60_curiosity.dts | 74 +++++++++++++++++
3 files changed, 155 insertions(+)
create mode 100644 arch/arm/dts/at91-sam9x60_curiosity-u-boot.dtsi
create mode 100644 arch/arm/dts/at91-sam9x60_curiosity.dts
diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
index 99dc7bc777..2cebc533ac 100644
--- a/arch/arm/dts/Makefile
+++ b/arch/arm/dts/Makefile
@@ -1007,6 +1007,8 @@ dtb-$(CONFIG_TARGET_AT91SAM9X5EK) += \
dtb-$(CONFIG_TARGET_SAM9X60EK) += sam9x60ek.dtb
+dtb-$(CONFIG_TARGET_SAM9X60_CURIOSITY) += at91-sam9x60_curiosity.dtb
+
dtb-$(CONFIG_TARGET_AT91SAM9N12EK) += at91sam9n12ek.dtb
dtb-$(CONFIG_TARGET_GARDENA_SMART_GATEWAY_AT91SAM) += \
diff --git a/arch/arm/dts/at91-sam9x60_curiosity-u-boot.dtsi b/arch/arm/dts/at91-sam9x60_curiosity-u-boot.dtsi
new file mode 100644
index 0000000000..d176e20f28
--- /dev/null
+++ b/arch/arm/dts/at91-sam9x60_curiosity-u-boot.dtsi
@@ -0,0 +1,79 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+/*
+ * at91-sam9x60_curiosity-u-boot.dtsi - Device Tree Include file for SAM9X60
+ * CURIOSITY.
+ *
+ * Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries
+ *
+ * Author: Durai Manickam KR <durai.manickamkr@microchip.com>
+ */
+
+/ {
+ ahb {
+ u-boot,dm-pre-reloc;
+
+ apb {
+ u-boot,dm-pre-reloc;
+
+ pinctrl {
+ u-boot,dm-pre-reloc;
+ };
+ };
+ };
+
+ chosen {
+ u-boot,dm-pre-reloc;
+ };
+};
+
+&clk32 {
+ u-boot,dm-pre-reloc;
+};
+
+&dbgu {
+ u-boot,dm-pre-reloc;
+};
+
+&main_rc {
+ u-boot,dm-pre-reloc;
+};
+
+&main_xtal {
+ u-boot,dm-pre-reloc;
+};
+
+&pinctrl_dbgu {
+ u-boot,dm-pre-reloc;
+};
+
+&pinctrl_sdhci0 {
+ u-boot,dm-pre-reloc;
+};
+
+&pioA {
+ u-boot,dm-pre-reloc;
+};
+
+&pioB {
+ u-boot,dm-pre-reloc;
+};
+
+&pit64b0 {
+ u-boot,dm-pre-reloc;
+};
+
+&pmc {
+ u-boot,dm-pre-reloc;
+};
+
+&sdhci0 {
+ u-boot,dm-pre-reloc;
+};
+
+&slow_rc_osc {
+ u-boot,dm-pre-reloc;
+};
+
+&slow_xtal {
+ u-boot,dm-pre-reloc;
+};
diff --git a/arch/arm/dts/at91-sam9x60_curiosity.dts b/arch/arm/dts/at91-sam9x60_curiosity.dts
new file mode 100644
index 0000000000..2e7ccb0ffb
--- /dev/null
+++ b/arch/arm/dts/at91-sam9x60_curiosity.dts
@@ -0,0 +1,74 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+/*
+ * at91-sam9x60_curiosity.dts - Device Tree file for SAM9X60 CURIOSITY board
+ *
+ * Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries
+ *
+ * Author: Durai Manickam KR <durai.manickamkr@microchip.com>
+ */
+/dts-v1/;
+#include <dt-bindings/mfd/atmel-flexcom.h>
+#include "sam9x60.dtsi"
+
+/ {
+ model = "Microchip SAM9X60 CURIOSITY";
+ compatible = "microchip,sam9x60-curiosity", "microchip,sam9x60", "atmel,at91sam9";
+
+ ahb {
+ apb {
+ flx0: flexcom@f801c600 {
+ atmel,flexcom-mode = <ATMEL_FLEXCOM_MODE_TWI>;
+ status = "okay";
+
+ i2c@600 {
+ compatible = "atmel,sama5d2-i2c";
+ reg = <0x600 0x200>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&pinctrl_flx0>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+ clocks = <&pmc PMC_TYPE_PERIPHERAL 5>;
+ status = "okay";
+
+ eeprom@53 {
+ compatible = "atmel,24c32";
+ reg = <0x53>;
+ pagesize = <16>;
+ };
+ };
+ };
+
+ pinctrl {
+ pinctrl_flx0: flx0_default {
+ atmel,pins =
+ <AT91_PIOA 0 AT91_PERIPH_A AT91_PINCTRL_NONE
+ AT91_PIOA 1 AT91_PERIPH_A AT91_PINCTRL_NONE>;
+ };
+ };
+ };
+ };
+
+ chosen {
+ stdout-path = &dbgu;
+ i2c0 = &flx0;
+ };
+
+ clocks {
+ slow_xtal: slow_xtal {
+ clock-frequency = <32768>;
+ };
+
+ main_xtal: main_xtal {
+ clock-frequency = <24000000>;
+ };
+ };
+
+ memory {
+ reg = <0x20000000 0x8000000>;
+ };
+};
+
+&macb0 {
+ phy-mode = "rmii";
+ status = "okay";
+};
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCHv3 3/3] configs: Add sam9x60_curiosity_mmc_defconfig
2022-04-04 5:53 [PATCHv3 0/3] Add support for sam9x60_curiosity Durai Manickam KR
2022-04-04 5:53 ` [PATCHv3 1/3] board: Add sam9x60_curiosity support Durai Manickam KR
2022-04-04 5:53 ` [PATCHv3 2/3] ARM: dts: Add device tree files for sam9x60_curiosity Durai Manickam KR
@ 2022-04-04 5:53 ` Durai Manickam KR
2022-04-27 6:00 ` [PATCHv3 0/3] Add support for sam9x60_curiosity Eugen.Hristev
3 siblings, 0 replies; 5+ messages in thread
From: Durai Manickam KR @ 2022-04-04 5:53 UTC (permalink / raw)
To: u-boot; +Cc: durai.manickamkr
Add boot from SDMMC (sdcard) support for sam9x60_curiosity.
Signed-off-by: Durai Manickam KR <durai.manickamkr@microchip.com>
---
board/atmel/sam9x60_curiosity/MAINTAINERS | 1 +
configs/sam9x60_curiosity_mmc_defconfig | 74 +++++++++++++++++++++++
2 files changed, 75 insertions(+)
create mode 100644 configs/sam9x60_curiosity_mmc_defconfig
diff --git a/board/atmel/sam9x60_curiosity/MAINTAINERS b/board/atmel/sam9x60_curiosity/MAINTAINERS
index 84a3a9f186..3e1dce2980 100644
--- a/board/atmel/sam9x60_curiosity/MAINTAINERS
+++ b/board/atmel/sam9x60_curiosity/MAINTAINERS
@@ -4,3 +4,4 @@ M: Eugen Hristev <eugen.hristev@microchip.com>
S: Maintained
F: board/atmel/sam9x60_curiosity/
F: include/configs/sam9x60_curiosity.h
+F: configs/sam9x60_curiosity_mmc_defconfig
diff --git a/configs/sam9x60_curiosity_mmc_defconfig b/configs/sam9x60_curiosity_mmc_defconfig
new file mode 100644
index 0000000000..06db619270
--- /dev/null
+++ b/configs/sam9x60_curiosity_mmc_defconfig
@@ -0,0 +1,74 @@
+CONFIG_ARM=y
+CONFIG_SKIP_LOWLEVEL_INIT=y
+CONFIG_ARCH_AT91=y
+CONFIG_SYS_TEXT_BASE=0x23f00000
+CONFIG_SYS_MALLOC_LEN=0x81000
+CONFIG_SYS_MALLOC_F_LEN=0x8000
+CONFIG_TARGET_SAM9X60_CURIOSITY=y
+CONFIG_ATMEL_LEGACY=y
+CONFIG_NR_DRAM_BANKS=8
+CONFIG_ENV_SIZE=0x4000
+CONFIG_DM_GPIO=y
+CONFIG_DEFAULT_DEVICE_TREE="at91-sam9x60_curiosity"
+CONFIG_DEBUG_UART_BOARD_INIT=y
+CONFIG_DEBUG_UART_BASE=0xfffff200
+CONFIG_DEBUG_UART_CLOCK=200000000
+CONFIG_DEBUG_UART=y
+CONFIG_SYS_LOAD_ADDR=0x22000000
+CONFIG_FIT=y
+CONFIG_SD_BOOT=y
+CONFIG_BOOTDELAY=3
+CONFIG_USE_BOOTARGS=y
+CONFIG_BOOTARGS="mem=128M console=ttyS0,115200 root=/dev/mmcblk0p2 rw rootfstype=ext4 rootwait"
+CONFIG_USE_BOOTCOMMAND=y
+CONFIG_BOOTCOMMAND="fatload mmc 0:1 0x21000000 at91-sam9x60_curiosity.dtb; fatload mmc 0:1 0x22000000 zImage; bootz 0x22000000 - 0x21000000"
+CONFIG_SYS_CONSOLE_IS_IN_ENV=y
+# CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_MISC_INIT_R=y
+CONFIG_HUSH_PARSER=y
+CONFIG_SYS_PROMPT="U-Boot> "
+CONFIG_CMD_BOOTZ=y
+CONFIG_CMD_CLK=y
+CONFIG_CMD_DM=y
+# CONFIG_CMD_FLASH is not set
+CONFIG_CMD_GPIO=y
+CONFIG_CMD_I2C=y
+CONFIG_CMD_MMC=y
+# CONFIG_CMD_SETEXPR is not set
+CONFIG_CMD_DHCP=y
+CONFIG_BOOTP_BOOTFILESIZE=y
+CONFIG_CMD_MII=y
+CONFIG_CMD_PING=y
+CONFIG_CMD_HASH=y
+CONFIG_HASH_VERIFY=y
+CONFIG_CMD_FAT=y
+CONFIG_OF_CONTROL=y
+CONFIG_ENV_IS_IN_FAT=y
+CONFIG_ENV_FAT_DEVICE_AND_PART="0:1"
+CONFIG_SYS_RELOC_GD_ENV_ADDR=y
+CONFIG_DM=y
+CONFIG_CLK=y
+CONFIG_CLK_CCF=y
+CONFIG_CLK_AT91=y
+CONFIG_AT91_GENERIC_CLK=y
+CONFIG_AT91_SAM9X60_PLL=y
+CONFIG_CPU=y
+CONFIG_AT91_GPIO=y
+CONFIG_DM_I2C=y
+CONFIG_SYS_I2C_AT91=y
+CONFIG_I2C_EEPROM=y
+CONFIG_MICROCHIP_FLEXCOM=y
+CONFIG_DM_MMC=y
+CONFIG_MMC_SDHCI=y
+CONFIG_MMC_SDHCI_ATMEL=y
+CONFIG_PHY_MICREL=y
+CONFIG_DM_ETH=y
+CONFIG_MACB=y
+CONFIG_PINCTRL=y
+CONFIG_PINCTRL_AT91=y
+CONFIG_DM_SERIAL=y
+CONFIG_DEBUG_UART_ANNOUNCE=y
+CONFIG_ATMEL_USART=y
+CONFIG_TIMER=y
+CONFIG_MCHP_PIT64B_TIMER=y
+CONFIG_OF_LIBFDT_OVERLAY=y
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCHv3 0/3] Add support for sam9x60_curiosity
2022-04-04 5:53 [PATCHv3 0/3] Add support for sam9x60_curiosity Durai Manickam KR
` (2 preceding siblings ...)
2022-04-04 5:53 ` [PATCHv3 3/3] configs: Add sam9x60_curiosity_mmc_defconfig Durai Manickam KR
@ 2022-04-27 6:00 ` Eugen.Hristev
3 siblings, 0 replies; 5+ messages in thread
From: Eugen.Hristev @ 2022-04-27 6:00 UTC (permalink / raw)
To: Durai.ManickamKR, u-boot
On 4/4/22 8:53 AM, Durai Manickam KR wrote:
> ---
> v2 -> v3:
> - Few symbols defined in the board specific header file (i.e)
> sam9x60_curiosity.h are no longer accepted by the u-boot mainline. So the
> below changes has been done.
> - NAND symbols are no longer accepted by the u-boot mainline. This shall be
> migrated to device tree model. So, this patch series contains only SDMMC
> support. NAND support will be added once device tree model is implemented.
> - Removed sam9x60_curiosity_nand_hw_init function from the board specific C file.
> - Removed the NAND config support in the SDMMC defconfig.
> - Converted CONFIG_BOOTP_BOOTFILESIZE to Kconfig
>
> ---
> v1 -> v2:
> - This patch series adds support for sam9x60_curiosity.
> - Converted CONFIG_ATMEL_LEGACY to Kconfig. Previosly sent patch series from
> u-boot/master branch now sending the patch series on top of u-boot/next branch
> as v2.
>
> Durai Manickam KR (3):
> board: Add sam9x60_curiosity support
> ARM: dts: Add device tree files for sam9x60_curiosity
> configs: Add sam9x60_curiosity_mmc_defconfig
>
> arch/arm/dts/Makefile | 2 +
> .../dts/at91-sam9x60_curiosity-u-boot.dtsi | 79 +++++++++++++++++++
> arch/arm/dts/at91-sam9x60_curiosity.dts | 74 +++++++++++++++++
> arch/arm/mach-at91/Kconfig | 7 ++
> board/atmel/sam9x60_curiosity/Kconfig | 15 ++++
> board/atmel/sam9x60_curiosity/MAINTAINERS | 7 ++
> board/atmel/sam9x60_curiosity/Makefile | 7 ++
> .../sam9x60_curiosity/sam9x60_curiosity.c | 75 ++++++++++++++++++
> configs/sam9x60_curiosity_mmc_defconfig | 74 +++++++++++++++++
> include/configs/sam9x60_curiosity.h | 31 ++++++++
> 10 files changed, 371 insertions(+)
> create mode 100644 arch/arm/dts/at91-sam9x60_curiosity-u-boot.dtsi
> create mode 100644 arch/arm/dts/at91-sam9x60_curiosity.dts
> create mode 100644 board/atmel/sam9x60_curiosity/Kconfig
> create mode 100644 board/atmel/sam9x60_curiosity/MAINTAINERS
> create mode 100644 board/atmel/sam9x60_curiosity/Makefile
> create mode 100644 board/atmel/sam9x60_curiosity/sam9x60_curiosity.c
> create mode 100644 configs/sam9x60_curiosity_mmc_defconfig
> create mode 100644 include/configs/sam9x60_curiosity.h
>
> --
> 2.25.1
>
Applied to u-boot-at91/master , thanks !
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-04-27 6:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-04 5:53 [PATCHv3 0/3] Add support for sam9x60_curiosity Durai Manickam KR
2022-04-04 5:53 ` [PATCHv3 1/3] board: Add sam9x60_curiosity support Durai Manickam KR
2022-04-04 5:53 ` [PATCHv3 2/3] ARM: dts: Add device tree files for sam9x60_curiosity Durai Manickam KR
2022-04-04 5:53 ` [PATCHv3 3/3] configs: Add sam9x60_curiosity_mmc_defconfig Durai Manickam KR
2022-04-27 6:00 ` [PATCHv3 0/3] Add support for sam9x60_curiosity Eugen.Hristev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox