From 9e40ad0f81597010610cc7b4353cd1f8301d7242 Mon Sep 17 00:00:00 2001 From: Ryan Wanner Date: Mon, 7 Jul 2025 17:06:50 +0530 Subject: board: sama7d65_curiosity: Add support for sama7d65_curiosity Add board specific functions for sama7d65_curiosity. Signed-off-by: Ryan Wanner --- include/configs/sama7d65_curiosity.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 include/configs/sama7d65_curiosity.h (limited to 'include') diff --git a/include/configs/sama7d65_curiosity.h b/include/configs/sama7d65_curiosity.h new file mode 100644 index 00000000000..9316b104ee3 --- /dev/null +++ b/include/configs/sama7d65_curiosity.h @@ -0,0 +1,20 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Configuration file for the SAMA7D65 Curiosity Board. + * + * Copyright (C) 2024 Microchip Technology Inc. and its subsidiaries + * + * Author: Ryan Wanner + * + */ + +#ifndef __CONFIG_H +#define __CONFIG_H + +#define CFG_SYS_AT91_SLOW_CLOCK 32768 +#define CFG_SYS_AT91_MAIN_CLOCK 24000000 /* from 24 MHz crystal */ +/* SDRAM */ +#define CFG_SYS_SDRAM_BASE 0x60000000 +#define CFG_SYS_SDRAM_SIZE 0x40000000 + +#endif -- cgit v1.3.1