forked from OERV-BSP/u-boot
Add board specific functions for sama7d65_curiosity. Signed-off-by: Ryan Wanner <Ryan.Wanner@microchip.com>
21 lines
485 B
C
21 lines
485 B
C
/* 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 <ryan.wanner@microchip.com>
|
|
*
|
|
*/
|
|
|
|
#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
|