42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2023 Antmicro <www.antmicro.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/** @file
|
|
* @brief Silabs EFM32GG12B MCU pin definitions.
|
|
*
|
|
* This file contains pin configuration data required by different MCU
|
|
* modules to correctly configure GPIO controller.
|
|
*/
|
|
|
|
#ifndef _SILABS_EFM32GG12B_SOC_PINMAP_H_
|
|
#define _SILABS_EFM32GG12B_SOC_PINMAP_H_
|
|
|
|
#include <zephyr/devicetree.h>
|
|
#include <soc.h>
|
|
#include <em_gpio.h>
|
|
|
|
#define GPIO_NODE DT_INST(0, silabs_gecko_gpio)
|
|
#if DT_NODE_HAS_PROP(GPIO_NODE, location_swo)
|
|
#define SWO_LOCATION DT_PROP(GPIO_NODE, location_swo)
|
|
#endif
|
|
|
|
#ifdef CONFIG_GPIO_GECKO
|
|
/* Serial Wire Output (SWO) */
|
|
#if (SWO_LOCATION == 0)
|
|
#define PIN_SWO {gpioPortF, 2, gpioModePushPull, 1}
|
|
#elif (SWO_LOCATION == 1)
|
|
#define PIN_SWO {gpioPortC, 15, gpioModePushPull, 1}
|
|
#elif (SWO_LOCATION == 2)
|
|
#define PIN_SWO {gpioPortD, 1, gpioModePushPull, 1}
|
|
#elif (SWO_LOCATION == 3)
|
|
#define PIN_SWO {gpioPortD, 2, gpioModePushPull, 1}
|
|
#elif (SWO_LOCATION >= 4)
|
|
#error ("Invalid SWO pin location")
|
|
#endif
|
|
#endif /* CONFIG_GPIO_GECKO */
|
|
|
|
#endif /* _SILABS_EFM32GG12B_SOC_PINMAP_H_ */
|