Zephyr API Documentation
3.5.0
A Scalable Open Source RTOS
3.5.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
Files
File List
Globals
All
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
x
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Macros
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
gecko-pinctrl-s1.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2023 Silicon Labs
3
* SPDX-License-Identifier: Apache-2.0
4
*/
5
6
#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_PINCTRL_GECKO_PINCTRL_H_
7
#define ZEPHYR_INCLUDE_DT_BINDINGS_PINCTRL_GECKO_PINCTRL_H_
8
9
/*
10
* The whole GECKO_pin configuration information is encoded in a 32-bit bitfield
11
* organized as follows:
12
*
13
* - 31..24: Pin function.
14
* - 23..16: Reserved.
15
* - 15..8: Port for UART_RX/UART_TX functions.
16
* - 7..0: Pin number for UART_RX/UART_TX functions.
17
* - 15..8: Reserved for UART_LOC function.
18
* - 7..0: Loc for UART_LOC function.
19
*/
20
27
#define GECKO_FUN_POS 24U
29
#define GECKO_FUN_MSK 0xFFFU
30
32
#define GECKO_PIN_POS 0U
34
#define GECKO_PIN_MSK 0xFFU
35
37
#define GECKO_PORT_POS 8U
39
#define GECKO_PORT_MSK 0xFFU
40
42
#define GECKO_LOC_POS 0U
44
#define GECKO_LOC_MSK 0xFFU
45
54
#define GECKO_FUN_UART_TX 0U
56
#define GECKO_FUN_UART_RX 1U
58
#define GECKO_FUN_UART_RTS 2U
60
#define GECKO_FUN_UART_CTS 3U
62
#define GECKO_FUN_UART_RX_LOC 4U
64
#define GECKO_FUN_UART_TX_LOC 5U
66
#define GECKO_FUN_UART_RTS_LOC 6U
68
#define GECKO_FUN_UART_CTS_LOC 7U
69
70
#define GECKO_FUN_SPIM_MISO 8U
71
#define GECKO_FUN_SPIM_MOSI 9U
72
#define GECKO_FUN_SPIM_CS 10U
73
#define GECKO_FUN_SPIM_SCK 11U
74
75
#define GECKO_FUN_LEUART_RX_LOC 12U
76
#define GECKO_FUN_LEUART_TX_LOC 13U
77
78
#define GECKO_FUN_SPIS_MISO 14U
79
#define GECKO_FUN_SPIS_MOSI 15U
80
#define GECKO_FUN_SPIS_CS 16U
81
#define GECKO_FUN_SPIS_SCK 17U
82
83
#define GECKO_FUN_SPI_MISO_LOC 18U
84
#define GECKO_FUN_SPI_MOSI_LOC 19U
85
#define GECKO_FUN_SPI_CS_LOC 20U
86
#define GECKO_FUN_SPI_SCK_LOC 21U
87
88
98
#define GECKO_PSEL(fun, port, pin) \
99
(((GECKO_PORT_##port & GECKO_PORT_MSK) << GECKO_PORT_POS) | \
100
((GECKO_PIN(##pin##) & GECKO_PIN_MSK) << GECKO_PIN_POS) | \
101
((GECKO_FUN_##fun & GECKO_FUN_MSK) << GECKO_FUN_POS))
102
109
#define GECKO_LOC(fun, loc) \
110
(((GECKO_LOCATION(##loc##) & GECKO_LOC_MSK) << GECKO_LOC_POS) | \
111
((GECKO_FUN_##fun##_LOC & GECKO_FUN_MSK) << GECKO_FUN_POS))
112
113
#endif
/* ZEPHYR_INCLUDE_DT_BINDINGS_PINCTRL_GECKO_PINCTRL_H_ */
zephyr
dt-bindings
pinctrl
gecko-pinctrl-s1.h
Generated on Fri Oct 20 2023 10:27:12 for Zephyr API Documentation by
1.9.6