Durai Manickam KR | b07a022 | 2022-04-04 11:23:18 +0530 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Configuration settings for the SAM9X60 CURIOSITY board. |
| 4 | * |
| 5 | * Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries |
| 6 | * |
| 7 | * Author: Durai Manickam KR <durai.manickamkr@microchip.com> |
| 8 | */ |
| 9 | |
| 10 | #ifndef __CONFIG_H__ |
| 11 | #define __CONFIG_H__ |
| 12 | |
| 13 | #define CONFIG_SYS_AT91_SLOW_CLOCK 32768 |
| 14 | #define CONFIG_SYS_AT91_MAIN_CLOCK 24000000 /* 24 MHz crystal */ |
| 15 | |
| 16 | #define CONFIG_USART_BASE ATMEL_BASE_DBGU |
| 17 | #define CONFIG_USART_ID 0 /* ignored in arm */ |
| 18 | |
| 19 | /* SDRAM */ |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame^] | 20 | #define CFG_SYS_SDRAM_BASE 0x20000000 |
| 21 | #define CFG_SYS_SDRAM_SIZE 0x8000000 /* 128 MB */ |
Durai Manickam KR | b07a022 | 2022-04-04 11:23:18 +0530 | [diff] [blame] | 22 | |
Durai Manickam KR | b07a022 | 2022-04-04 11:23:18 +0530 | [diff] [blame] | 23 | #endif |