Zephyr API Documentation
4.2.0-rc3
A Scalable Open Source RTOS
4.2.0-rc3
Toggle main menu visibility
Main Page
Related Pages
Topics
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
u
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
Zephyr API Documentation
Introduction
Deprecated List
Topics
Data Structures
Files
File List
doc
kernel
lib
modules
subsys
zephyr
acpi
app_memory
arch
audio
bluetooth
canbus
console
crypto
data
debug
devicetree
dfu
display
drivers
adc
bluetooth
can
clock_control
comparator
console
dac
dma
edac
eeprom
ethernet
firmware
flash
gnss
gpio
haptics
i2c
i3c
ieee802154
interrupt_controller
led
led_strip
mfd
mic_privacy
mipi_dsi
misc
mm
modem
mspi
pcie
pinctrl
pinctrl_esp32_common.h
pinctrl_nxp_port_common.h
pinctrl_rcar_common.h
pinctrl_soc_bflb_common.h
pinctrl_soc_sam_common.h
pm_cpu_ops
power
psi5
pwm
regulator
retained_mem
rtc
sensor
sent
serial
sip_svc
spi
stepper
timer
uart
usb
usb_c
video
virtio
virtualization
adc.h
auxdisplay.h
bbram.h
bluetooth.h
cache.h
can.h
cellular.h
charger.h
clock_control.h
comparator.h
coredump.h
counter.h
dac.h
dai.h
disk.h
display.h
dma.h
edac.h
eeprom.h
emul.h
emul_bbram.h
emul_fuel_gauge.h
emul_sensor.h
emul_stub_device.h
entropy.h
espi.h
espi_emul.h
espi_saf.h
flash.h
fpga.h
fuel_gauge.h
gnss.h
gpio.h
haptics.h
hwinfo.h
hwspinlock.h
i2c.h
i2c_emul.h
i2s.h
i3c.h
ipm.h
led.h
led_strip.h
loopback_disk.h
lora.h
mbox.h
mdio.h
mipi_dbi.h
mipi_dsi.h
mspi.h
mspi_emul.h
peci.h
pinctrl.h
pm_cpu_ops.h
ps2.h
ptp_clock.h
pwm.h
regulator.h
reset.h
retained_mem.h
rtc.h
sdhc.h
sensor.h
sensor_attribute_types.h
sensor_clock.h
sensor_data_types.h
smbus.h
spi.h
spi_emul.h
stepper.h
swdp.h
syscon.h
tee.h
uart.h
uart_emul.h
uart_pipe.h
video-controls.h
video.h
virtio.h
w1.h
watchdog.h
dsp
dt-bindings
fs
input
internal
ipc
kernel
linker
llext
logging
lorawan
math
mem_mgmt
mgmt
misc
modbus
modem
multi_heap
net
platform
pm
pmci
portability
posix
psa
random
retention
rtio
sd
sensing
settings
shell
sip_svc
stats
storage
sys
task_wdt
timing
toolchain
tracing
usb
usb_c
xen
zbus
zvfs
bindesc.h
cache.h
device.h
devicetree.h
fatal.h
fatal_types.h
init.h
irq.h
irq_multilevel.h
irq_nextlevel.h
irq_offload.h
kernel.h
kernel_includes.h
kernel_structs.h
kernel_version.h
net_buf.h
service.h
shared_irq.h
smf.h
spinlock.h
sw_isr_table.h
sys_clock.h
syscall.h
toolchain.h
types.h
Globals
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
pinctrl_nxp_port_common.h
Go to the documentation of this file.
1
/*
2
* Copyright 2022, 2024 NXP
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
/*
8
* @file
9
* NXP PORT SOC specific helpers for pinctrl driver
10
*/
11
12
13
#ifndef ZEPHYR_INCLUDE_DRIVERS_PINCTRL_PINCTRL_NXP_PORT_COMMON_H_
14
#define ZEPHYR_INCLUDE_DRIVERS_PINCTRL_PINCTRL_NXP_PORT_COMMON_H_
15
17
18
#include <
zephyr/devicetree.h
>
19
#include <
zephyr/types.h
>
20
21
/* Include SOC headers, so we get definitions for PCR bitmasks */
22
#include <soc.h>
23
24
#ifdef __cplusplus
25
extern
"C"
{
26
#endif
27
28
/*
29
* Some PORT IP instantiations lack certain features, include input buffers,
30
* open drain, and slew rate. If masks aren't defined for these bitfields,
31
* define them to have no effect
32
*/
33
#ifndef PORT_PCR_IBE_MASK
/* Input buffer enable */
34
#define PORT_PCR_IBE_MASK 0x0
35
#define PORT_PCR_IBE(x) 0x0
36
#endif
37
38
#ifndef PORT_PCR_SRE_MASK
/* Slew rate */
39
#define PORT_PCR_SRE_MASK 0x0
40
#define PORT_PCR_SRE(x) 0x0
41
#endif
42
43
#ifndef PORT_PCR_ODE_MASK
/* Open drain */
44
#define PORT_PCR_ODE_MASK 0x0
45
#define PORT_PCR_ODE(x) 0x0
46
#endif
47
48
49
typedef
uint32_t
pinctrl_soc_pin_t
;
50
51
#define Z_PINCTRL_NXP_PORT_PINCFG(node_id) \
52
(PORT_PCR_DSE(DT_ENUM_IDX(node_id, drive_strength)) | \
53
PORT_PCR_PS(DT_PROP(node_id, bias_pull_up)) | \
54
PORT_PCR_PE(DT_PROP(node_id, bias_pull_up)) | \
55
PORT_PCR_PE(DT_PROP(node_id, bias_pull_down)) | \
56
PORT_PCR_ODE(DT_PROP(node_id, drive_open_drain)) | \
57
PORT_PCR_SRE(DT_ENUM_IDX(node_id, slew_rate)) | \
58
PORT_PCR_IBE(DT_PROP(node_id, input_enable)) | \
59
PORT_PCR_PFE(DT_PROP(node_id, nxp_passive_filter)))
60
61
#define Z_PINCTRL_NXP_PORT_PCR_MASK \
62
(PORT_PCR_MUX_MASK | PORT_PCR_DSE_MASK | PORT_PCR_ODE_MASK | PORT_PCR_PFE_MASK | \
63
PORT_PCR_IBE_MASK | PORT_PCR_SRE_MASK | PORT_PCR_PE_MASK | PORT_PCR_PS_MASK)
64
65
#define Z_PINCTRL_STATE_PIN_INIT(group, pin_prop, idx) \
66
DT_PROP_BY_IDX(group, pin_prop, idx) | Z_PINCTRL_NXP_PORT_PINCFG(group),
67
68
#define Z_PINCTRL_STATE_PINS_INIT(node_id, prop) \
69
{DT_FOREACH_CHILD_VARGS(DT_PHANDLE(node_id, prop), DT_FOREACH_PROP_ELEM, pinmux, \
70
Z_PINCTRL_STATE_PIN_INIT)};
71
72
#ifdef __cplusplus
73
}
74
#endif
75
77
78
#endif
/* ZEPHYR_INCLUDE_DRIVERS_PINCTRL_PINCTRL_NXP_PORT_COMMON_H_ */
devicetree.h
Devicetree main header.
types.h
pinctrl_soc_pin_t
struct pinctrl_soc_pin pinctrl_soc_pin_t
Type for R-Car pin.
uint32_t
__UINT32_TYPE__ uint32_t
Definition
stdint.h:90
zephyr
drivers
pinctrl
pinctrl_nxp_port_common.h
Generated on
for Zephyr API Documentation by
1.14.0