blob: 1293bdcbbe09db472ee23311d6dcc161079e88a5 [file] [log] [blame]
Jonny Svärdff265f92020-12-15 16:02:41 +01001#
2# Copyright (c) 2019-2020 Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6# Licensed under the Apache License, Version 2.0 (the License); you may
7# not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an AS IS BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18
19add_library(ethosu_uart_common INTERFACE)
20
21target_include_directories(ethosu_uart_common INTERFACE
22 include
23 ${CMAKE_CURRENT_BINARY_DIR})
24
25# UART configuration (can be overriden from user project)
26set(UART0_BASE "0xFFFFFFFF" CACHE STRING "UART base address")
27set(UART0_BAUDRATE "115200" CACHE STRING "UART baudrate")
28set(SYSTEM_CORE_CLOCK "25000000" CACHE STRING "System core clock (Hz)")
29
30# Generate UART configuration file
31configure_file("${CMAKE_CURRENT_SOURCE_DIR}/uart_config.h.in" "${CMAKE_CURRENT_BINARY_DIR}/uart_config.h")
32
33# Drivers
34add_library(ethosu_uart_cmsdk_apb STATIC src/uart_cmsdk_apb.c)
35target_link_libraries(ethosu_uart_cmsdk_apb PUBLIC ethosu_uart_common)
36
37add_library(ethosu_uart_pl011 STATIC src/uart_pl011.c)
38target_link_libraries(ethosu_uart_pl011 PUBLIC ethosu_uart_common)
39
40add_library(ethosu_uart_dummy STATIC src/uart_dummy.c)
41target_link_libraries(ethosu_uart_dummy PUBLIC ethosu_uart_common)