1# Texas Instruments SimpleLink CC13x2 / CC26x2
2
3# Copyright (c) 2019 Brett Witherspoon
4# SPDX-License-Identifier: Apache-2.0
5
6if SOC_SERIES_CC13X2_CC26X2
7
8source "soc/arm/ti_simplelink/cc13x2_cc26x2/Kconfig.defconfig.cc*"
9
10config SOC_SERIES
11	default "cc13x2_cc26x2"
12
13config SYS_CLOCK_HW_CYCLES_PER_SEC
14	default 32768
15
16# Note that when using the RTC as system clock, this needs to be 32768
17# to reduce truncation errors from accumulating due to conversion to/from
18# time, ticks, and HW cycles
19config SYS_CLOCK_TICKS_PER_SEC
20	default 32768
21
22config NUM_IRQS
23	default 38
24
25if IEEE802154
26
27config IEEE802154_CC13XX_CC26XX
28	# required for linking with PowerCC26X2_config in
29	# soc/arm/ti_simplelink/cc13x2_cc26x2/power.c
30	select PM
31
32config IEEE802154_CC13XX_CC26XX_SUB_GHZ
33	# required for linking with PowerCC26X2_config in
34	# soc/arm/ti_simplelink/cc13x2_cc26x2/power.c
35	select PM
36
37endif # IEEE802154
38
39if BT
40
41config BLE_CC13XX_CC26XX
42	bool
43	default y
44
45endif # BT
46
47endif # SOC_SERIES_CC13X2_CC26X2
48