1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Configuration file for the SAMA7D65 Curiosity Board. 4 * 5 * Copyright (C) 2024 Microchip Technology Inc. and its subsidiaries 6 * 7 * Author: Ryan Wanner <ryan.wanner@microchip.com> 8 * 9 */ 10 11 #ifndef __CONFIG_H 12 #define __CONFIG_H 13 14 #define CFG_SYS_AT91_SLOW_CLOCK 32768 15 #define CFG_SYS_AT91_MAIN_CLOCK 24000000 /* from 24 MHz crystal */ 16 /* SDRAM */ 17 #define CFG_SYS_SDRAM_BASE 0x60000000 18 #define CFG_SYS_SDRAM_SIZE 0x40000000 19 20 #endif 21