2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-03-30 06:51:19 +00:00
|
|
|
/*
|
|
|
|
* Common part of configuration settings for the AT91 SAMA5 board.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Atmel Corporation
|
|
|
|
* Josh Wu <josh.wu@atmel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __AT91_SAMA5_COMMON_H
|
|
|
|
#define __AT91_SAMA5_COMMON_H
|
|
|
|
|
2019-12-07 04:41:35 +00:00
|
|
|
#include <linux/kconfig.h>
|
|
|
|
|
2015-03-30 06:51:19 +00:00
|
|
|
/* ARM asynchronous clock */
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_AT91_SLOW_CLOCK 32768
|
|
|
|
#define CFG_SYS_AT91_MAIN_CLOCK 12000000 /* from 12 MHz crystal */
|
2015-03-30 06:51:19 +00:00
|
|
|
|
|
|
|
#endif
|