1# Atmel SAM MCU family default configuration options
2
3# Copyright (c) 2016 Piotr Mienkowski
4# SPDX-License-Identifier: Apache-2.0
5
6source "soc/arm/atmel_sam/*/Kconfig.defconfig.series"
7
8if SOC_FAMILY_SAM
9
10config SYS_CLOCK_HW_CYCLES_PER_SEC
11	default $(dt_node_int_prop_int,/cpus/cpu@0,clock-frequency)
12
13config CLOCK_CONTROL
14	default y
15
16config PINCTRL
17	default y
18
19config WATCHDOG
20	default y
21
22endif # SOC_FAMILY_SAM
23