mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-11 07:22:58 +00:00
Added basic PSoC6 UART driver and added two UART nodes in the PSoC6 device tree to have output from CM0+ and CM4 cores. Signed-off-by: Nazar Chornenkyy <nazar.chornenkyy@cypress.com> Signed-off-by: Oleg Kapshii <oleg.kapshii@cypress.com>
26 lines
611 B
Plaintext
26 lines
611 B
Plaintext
# Kconfig - Cypress UART configuration
|
|
#
|
|
# Copyright (c) 2018 Cypress
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig UART_PSOC6
|
|
bool "PSoC6 MCU serial driver"
|
|
select SERIAL_HAS_DRIVER
|
|
depends on SOC_FAMILY_PSOC6
|
|
help
|
|
This option enables the UART driver for PSoC6 family of processors.
|
|
|
|
config UART_PSOC6_UART_5
|
|
bool "Enable PSOC6 SCB6 as UART_5 on Port 5"
|
|
depends on UART_PSOC6
|
|
help
|
|
Enable support for UART_5 on port 5 in the driver.
|
|
|
|
config UART_PSOC6_UART_6
|
|
bool "Enable PSOC6 SCB6 as UART_6 on Port 12"
|
|
depends on UART_PSOC6
|
|
help
|
|
Enable support for UART_6 on port 12 in the driver.
|