Add pinctrl driver for CC13XX/CC26XX family of SoCs to facilitate transition from pinmux to pinctrl. `IOCPortConfigureSet()` from TI hal driverlib used to implement the generic pinctrl driver. Signed-off-by: Vaishnav Achath <vaishnav@beagleboard.org>
11 lines
386 B
Text
11 lines
386 B
Text
# Copyright (c) 2022 Vaishnav Achath
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
DT_COMPAT_CC13XX_CC26XX_PINCTRL := ti,cc13xx-cc26xx-pinctrl
|
|
|
|
config PINCTRL_CC13XX_CC26XX
|
|
bool "TI SimpleLink CC13xx / CC26xx pinctrl driver"
|
|
depends on SOC_SERIES_CC13X2_CC26X2
|
|
default $(dt_compat_enabled,$(DT_COMPAT_CC13XX_CC26XX_PINCTRL))
|
|
help
|
|
Enable the TI SimpleLink CC13xx / CC26xx pinctrl driver
|