blob: 9316b104ee313c35e8e3f9f1bbef028d46f79de5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 <[email protected]>
*
*/
#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
|