Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Wu, Josh | b2d387b | 2015-03-30 14:51:19 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Common part of configuration settings for the AT91 SAMA5 board. |
| 4 | * |
| 5 | * Copyright (C) 2015 Atmel Corporation |
| 6 | * Josh Wu <josh.wu@atmel.com> |
Wu, Josh | b2d387b | 2015-03-30 14:51:19 +0800 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __AT91_SAMA5_COMMON_H |
| 10 | #define __AT91_SAMA5_COMMON_H |
| 11 | |
Simon Glass | bcee8d6 | 2019-12-06 21:41:35 -0700 | [diff] [blame] | 12 | #include <linux/kconfig.h> |
| 13 | |
Wu, Josh | b2d387b | 2015-03-30 14:51:19 +0800 | [diff] [blame] | 14 | /* ARM asynchronous clock */ |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 15 | #define CFG_SYS_AT91_SLOW_CLOCK 32768 |
| 16 | #define CFG_SYS_AT91_MAIN_CLOCK 12000000 /* from 12 MHz crystal */ |
Wu, Josh | b2d387b | 2015-03-30 14:51:19 +0800 | [diff] [blame] | 17 | |
Wu, Josh | b2d387b | 2015-03-30 14:51:19 +0800 | [diff] [blame] | 18 | #endif |