Browse Source
NXP PORT IP instantiations often have different features absent, IE input buffer, open drain, or slew rate support. Check if the relevant PCR register bitmasks are defined in the common pin control file, and define the bitmasks to 0x0 (no effect) if they are not. This allows us to further consolidate the pinctrl_soc.h headers for SOCs using the PORT IP. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>pull/79821/head
8 changed files with 34 additions and 157 deletions
@ -1,48 +1,7 @@
@@ -1,48 +1,7 @@
|
||||
/*
|
||||
* Copyright 2023 NXP |
||||
* Copyright 2023-2024 NXP |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
|
||||
/*
|
||||
* @file |
||||
* NXP S32K1 SOC specific helpers for pinctrl driver |
||||
*/ |
||||
|
||||
#ifndef ZEPHYR_SOC_ARM_NXP_S32_S32K1_PINCTRL_SOC_H_ |
||||
#define ZEPHYR_SOC_ARM_NXP_S32_S32K1_PINCTRL_SOC_H_ |
||||
|
||||
#include <zephyr/devicetree.h> |
||||
#include <zephyr/types.h> |
||||
|
||||
#ifdef __cplusplus |
||||
extern "C" { |
||||
#endif |
||||
|
||||
/** @cond INTERNAL_HIDDEN */ |
||||
|
||||
typedef uint32_t pinctrl_soc_pin_t; |
||||
|
||||
#define Z_PINCTRL_KINETIS_PINCFG(node_id) \ |
||||
(PORT_PCR_DSE(DT_ENUM_IDX(node_id, drive_strength)) | \ |
||||
PORT_PCR_PS(DT_PROP(node_id, bias_pull_up)) | \ |
||||
PORT_PCR_PE(DT_PROP(node_id, bias_pull_up)) | \ |
||||
PORT_PCR_PE(DT_PROP(node_id, bias_pull_down)) | \ |
||||
PORT_PCR_PFE(DT_PROP(node_id, nxp_passive_filter))) |
||||
|
||||
#define Z_PINCTRL_KINETIS_PCR_MASK \ |
||||
(PORT_PCR_MUX_MASK | PORT_PCR_DSE_MASK | PORT_PCR_PFE_MASK | \ |
||||
PORT_PCR_PE_MASK | PORT_PCR_PS_MASK) |
||||
|
||||
#define Z_PINCTRL_STATE_PIN_INIT(group, pin_prop, idx) \ |
||||
DT_PROP_BY_IDX(group, pin_prop, idx) | Z_PINCTRL_KINETIS_PINCFG(group), |
||||
|
||||
#define Z_PINCTRL_STATE_PINS_INIT(node_id, prop) \ |
||||
{DT_FOREACH_CHILD_VARGS(DT_PHANDLE(node_id, prop), \ |
||||
DT_FOREACH_PROP_ELEM, pinmux, Z_PINCTRL_STATE_PIN_INIT)}; |
||||
|
||||
#ifdef __cplusplus |
||||
} |
||||
#endif |
||||
|
||||
#endif /* ZEPHYR_SOC_ARM_NXP_S32_S32K1_PINCTRL_SOC_H_ */ |
||||
#include <zephyr/drivers/pinctrl/pinctrl_nxp_port_common.h> |
||||
|
Loading…
Reference in new issue