mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
779e7400b0
By using IOMUX instead of GPIO Matrix for UART, it is now possible on ESP32 boards to use the UART as a wake up source even if it is not used as a console. For other boards where this issue was not present, using IOMUX has the advantage to be faster than using GPIO matrix, so a highest baudrate can be used
64 lines
1.9 KiB
C
64 lines
1.9 KiB
C
// Copyright 2019 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#pragma once
|
|
|
|
#include "soc/soc_caps.h"
|
|
#include "soc/uart_reg.h"
|
|
#include "soc/uart_struct.h"
|
|
#include "soc/periph_defs.h"
|
|
#include "soc/gpio_sig_map.h"
|
|
#include "soc/io_mux_reg.h"
|
|
#include "soc/uart_pins.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define SOC_UART_TX_PIN_IDX (0)
|
|
#define SOC_UART_RX_PIN_IDX (1)
|
|
#define SOC_UART_RTS_PIN_IDX (2)
|
|
#define SOC_UART_CTS_PIN_IDX (3)
|
|
|
|
/**
|
|
* @brief Macro that can be used to retrieve the signal of a certain pin for a
|
|
* certain UART.
|
|
*/
|
|
#define UART_PERIPH_SIGNAL(IDX, PIN) (uart_periph_signal[(IDX)].pins[(PIN)].signal)
|
|
|
|
typedef struct {
|
|
/* Default GPIO number for this UART pin in the IOMUX.
|
|
* This value can be -1 if there is no default GPIO for a pin.
|
|
* For example, ESP32-C3 doesn't have any default GPIO for
|
|
* U0CTS and U0RTS. */
|
|
int32_t default_gpio : 15;
|
|
/* Func which should be assigned to the GPIO to be used as UART */
|
|
int32_t iomux_func : 4;
|
|
/* Marks if the current UART pin is input (or not) */
|
|
uint32_t input : 1;
|
|
/* Signal in the GPIO signal map. */
|
|
uint32_t signal : 12;
|
|
} uart_periph_sig_t;
|
|
|
|
typedef struct {
|
|
const uart_periph_sig_t pins[SOC_UART_PINS_COUNT];
|
|
const uint8_t irq;
|
|
const periph_module_t module;
|
|
} uart_signal_conn_t;
|
|
|
|
extern const uart_signal_conn_t uart_periph_signal[SOC_UART_NUM];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|