Home
last modified time | relevance | path

Searched +full:write +full:- +full:watermark (Results 1 – 5 of 5) sorted by relevance

/Zephyr-Core-3.6.0/dts/bindings/sdhc/
Dnxp,imx-usdhc.yaml2 # SPDX-License-Identifier: Apache-2.0
6 compatible: "nxp,imx-usdhc"
8 include: [sdhc.yaml, pinctrl-device.yaml]
14 data-timeout:
20 read-watermark:
24 Number of words used as read watermark level in FIFO queue for USDHC
26 write-watermark:
30 Number of words used as write watermark level in FIFO queue for USDHC
41 pwr-gpios:
42 type: phandle-array
[all …]
/Zephyr-Core-3.6.0/drivers/sensor/icm42688/
Dicm42688_common.c6 * SPDX-License-Identifier: Apache-2.0
24 const struct icm42688_dev_cfg *dev_cfg = dev->config; in icm42688_reset()
26 /* start up time for register read/write after POR is 1ms and supply ramp time is 3ms */ in icm42688_reset()
29 /* perform a soft reset to ensure a clean slate, reset bit will auto-clear */ in icm42688_reset()
30 res = icm42688_spi_single_write(&dev_cfg->spi, REG_DEVICE_CONFIG, BIT_SOFT_RESET); in icm42688_reset()
33 LOG_ERR("write REG_SIGNAL_PATH_RESET failed"); in icm42688_reset()
41 res = icm42688_spi_read(&dev_cfg->spi, REG_INT_STATUS, &value, 1); in icm42688_reset()
49 return -EINVAL; in icm42688_reset()
52 res = icm42688_spi_read(&dev_cfg->spi, REG_WHO_AM_I, &value, 1); in icm42688_reset()
59 return -EINVAL; in icm42688_reset()
[all …]
/Zephyr-Core-3.6.0/drivers/dai/nxp/sai/
Dsai.c4 * SPDX-License-Identifier: Apache-2.0
51 cfg = dev->config; in sai_mclk_config()
52 data = dev->data; in sai_mclk_config()
54 mclk_config.mclkOutputEnable = cfg->mclk_is_output; in sai_mclk_config()
63 ret = get_mclk_rate(&cfg->clk_data, bclk_source, &mclk_rate); in sai_mclk_config()
71 LOG_DBG("target MCLK is %u", bespoke->mclk_rate); in sai_mclk_config()
77 mclk_config.mclkHz = bespoke->mclk_rate; in sai_mclk_config()
80 SAI_SetMasterClockConfig(UINT_TO_I2S(data->regmap), &mclk_config); in sai_mclk_config()
82 set_msel(data->regmap, msel); in sai_mclk_config()
94 data = dev->data; in sai_isr()
[all …]
/Zephyr-Core-3.6.0/drivers/ieee802154/
Dieee802154_kw41z.c1 /* ieee802154_kw41z.c - NXP KW41Z driver */
6 * SPDX-License-Identifier: Apache-2.0
35 * For non-invasive tracing of IRQ events. Sometimes the print logs
65 ZLL->EVENT_TMR >> ZLL_EVENT_TMR_EVENT_TMR_SHIFT; \
92 #define KW41Z_OUTPUT_POWER_MIN (-31)
127 1, /* -31.1 dBm: -31 */
128 2, 2, 2, 2, 2, 2, 2, /* -25.0 dBm: -30, -29, -28, -27, -26, -25 */
129 4, 4, 4, 4, 4, /* -19.0 dBm: -24, -23, -22, -21, -20, -19 */
130 6, 6, 6, /* -15.6 dBm: -18, -17, -16 */
131 8, 8, /* -13.1 dBm: -15, -14 */
[all …]
/Zephyr-Core-3.6.0/include/zephyr/net/
Dsocket.h9 * Copyright (c) 2017-2018 Linaro Limited
12 * SPDX-License-Identifier: Apache-2.0
81 /** zsock_recv/zsock_send: Override operation to non-blocking */
91 /* Well-known values, e.g. from Linux man 2 shutdown:
122 /** Write-only socket option to set hostname. It accepts a string containing
133 /** Read-only socket option to read a ciphersuite chosen during TLS handshake.
138 /** Write-only socket option to set peer verification level for TLS connection.
141 * - 0 - none
142 * - 1 - optional
143 * - 2 - required
[all …]