diff options
author | Mihai Sain | 2023-07-24 14:35:10 +0300 |
---|---|---|
committer | Eugen Hristev | 2023-08-07 11:42:16 +0300 |
commit | 87d1cac49d265ead979ff75bda36c45fa9025193 (patch) | |
tree | 17ab1627a7febbcee57cbdb535e1fe5b7c32dfac /include/configs/sama5d29_curiosity.h | |
parent | 4d7a5593f6b3bdd182e8c14162d769cc11879ac3 (diff) |
board: at91: sama5d29_curiosity: add initial support for sama5d29_curiosity
Add initial support for sama5d29_curiosity board.
Hardware:
SoC: SAMA5D29 500 MHz
DRAM: LPDDR2 512 MiB
PMIC: MCP16502
Debug: UART0
Flash: QSPI NOR 8 MiB
RGB LCD connector
Mikrobus connectors x 2
SD-Card connectors x 2
USB 2.0 x 2
Signed-off-by: Mihai Sain <mihai.sain@microchip.com>
Diffstat (limited to 'include/configs/sama5d29_curiosity.h')
-rw-r--r-- | include/configs/sama5d29_curiosity.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/configs/sama5d29_curiosity.h b/include/configs/sama5d29_curiosity.h new file mode 100644 index 00000000000..ef09b8b25bc --- /dev/null +++ b/include/configs/sama5d29_curiosity.h @@ -0,0 +1,17 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Configuration file for the SAMA5D29 CURIOSITY board. + * + * Copyright (C) 2023 Microchip Technology Inc. and its subsidiaries + * + * Author: Mihai Sain <mihai.sain@microchip.com> + * + */ + +#ifndef __CONFIG_H +#define __CONFIG_H + +#define CFG_SYS_AT91_SLOW_CLOCK 32768 +#define CFG_SYS_AT91_MAIN_CLOCK 24000000 + +#endif |