diff options
| author | Ryan Wanner <[email protected]> | 2025-07-07 17:06:50 +0530 |
|---|---|---|
| committer | Eugen Hristev <[email protected]> | 2025-07-25 11:54:43 +0300 |
| commit | 9e40ad0f81597010610cc7b4353cd1f8301d7242 (patch) | |
| tree | d50fda8bdc9dea1ac717a019091cf332bdfa07d5 /include | |
| parent | 0c29ddfe0c7afb472578508551ed479df4e6ca97 (diff) | |
board: sama7d65_curiosity: Add support for sama7d65_curiosity
Add board specific functions for sama7d65_curiosity.
Signed-off-by: Ryan Wanner <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/sama7d65_curiosity.h | 20 |
1 files changed, 20 insertions, 0 deletions
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 <[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 |
