mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-21 22:35:21 +00:00
Add basic port for QuickLogic EOS S3 SoC. Signed-off-by: Jan Kowalewski <jkowalewski@antmicro.com>
32 lines
416 B
Plaintext
32 lines
416 B
Plaintext
# Copyright (c) 2020 Antmicro <www.antmicro.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_EOS_S3
|
|
|
|
config SOC
|
|
default "quicklogic_eos_s3"
|
|
|
|
config NUM_IRQS
|
|
default 52
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
default 61440000
|
|
|
|
if SERIAL
|
|
|
|
config UART_PL011
|
|
default y
|
|
|
|
config UART_INTERRUPT_DRIVEN
|
|
default y
|
|
|
|
config UART_PL011_PORT0
|
|
default y
|
|
|
|
config UART_PL011_PORT1
|
|
default n
|
|
|
|
endif # SERIAL
|
|
|
|
endif # SOC_EOS_S3
|