1 /*
2  * Copyright (c) 2016 Linaro Limited.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @file SoC Pin Out definition for the ARM LTD Beetle SoC.
9  *
10  */
11 #define PIN_UART_0_RX     0
12 #define PIN_UART_0_TX     1
13 #define PIN_SPI_0_CS      10
14 #define PIN_SPI_0_MOSI    11
15 #define PIN_SPI_0_MISO    12
16 #define PIN_SPI_0_SCLK    13
17 #define PIN_I2C_0_SCL     14
18 #define PIN_I2C_0_SDA     15
19 #define PIN_UART_1_RX     16
20 #define PIN_UART_1_TX     17
21 #define PIN_SPI_1_CS      18
22 #define PIN_SPI_1_MOSI    19
23 #define PIN_SPI_1_MISO    20
24 #define PIN_SPI_1_SCK     21
25 #define PIN_I2C_1_SDA     22
26 #define PIN_I2C_1_SCL     23
27 
28 /* CMSDK APB Universal Asynchronous Receiver-Transmitter (UART) */
29 #define CMSDK_APB_UART_FUN_SEL 1
30 #define CMSDK_APB_UART_0_RX PIN_UART_0_RX
31 #define CMSDK_APB_UART_0_TX PIN_UART_0_TX
32 #define CMSDK_APB_UART_1_RX PIN_UART_1_RX
33 #define CMSDK_APB_UART_1_TX PIN_UART_1_TX
34