Home
last modified time | relevance | path

Searched +full:host +full:- +full:io +full:- +full:addr +full:- +full:mask (Results 1 – 12 of 12) sorted by relevance

/Zephyr-latest/dts/bindings/espi/
Dmicrochip,xec-espi-host-dev.yaml2 # SPDX-License-Identifier: Apache-2.0
4 description: Microchip XEC eSPI Host devices
6 compatible: "microchip,xec-espi-host-dev"
10 on-bus: espi
29 # optional properties application to different host facing devices
30 host-io:
33 Logical device Host I/O (x86) base. Refer to SoC documentation for the
37 host-io-addr-mask:
40 Host I/O address mask. This value is fixed for all HW and is only
44 host-mem:
[all …]
/Zephyr-latest/include/zephyr/net/
Dnet_ip.h10 * SPDX-License-Identifier: Apache-2.0
50 #define PF_LOCAL 6 /**< Inter-process communication */
51 #define PF_UNIX PF_LOCAL /**< Inter-process communication */
60 #define AF_LOCAL PF_LOCAL /**< Inter-process communication */
61 #define AF_UNIX PF_UNIX /**< Inter-process communication */
65 IPPROTO_IP = 0, /**< IP protocol (pseudo-val for setsockopt() */
94 /** @brief Convert 16-bit value from network to host byte order.
98 * @return Host byte order value.
102 /** @brief Convert 32-bit value from network to host byte order.
106 * @return Host byte order value.
[all …]
/Zephyr-latest/drivers/disk/nvme/
Dnvme.h3 * SPDX-License-Identifier: Apache-2.0
20 uint32_t intms; /* interrupt mask set */
21 uint32_t intmc; /* interrupt mask clear */
27 uint64_t asq; /* admin submission queue base addr */
28 uint64_t acq; /* admin completion queue base addr */
36 uint8_t reserved3[3492]; /* 5Ch - DFFh */
44 uint8_t reserved4[484]; /* E1Ch - FFFh */
56 /** Max Power Scale, Non-Operational State */
98 /* bytes 0-255: controller capabilities and features */
121 /** multi-interface capabilities */
[all …]
/Zephyr-latest/soc/nuvoton/npcx/common/
Dpower.c4 * SPDX-License-Identifier: Apache-2.0
17 * +--------------------------------------------------------------------------+
19 * |--------------------------------------------------------------------------|
24 * | Stand-By | Off | Off | Off | Off | Off | Off | On |
25 * +--------------------------------------------------------------------------+
27 * LFCLK - Low-Frequency Clock. Its frequency is fixed to 32kHz.
28 * HFCLK - High-Frequency (PLL) Clock. Its frequency is configured to OFMCLK.
32 * - A delay of 'Instant' wake-up from 'Deep Sleep' is 20 us.
33 * - A delay of 'Standard' wake-up from 'Deep Sleep' is 3.43 ms.
34 * - Max residency time in Deep Sleep for 'Instant' wake-up is 200 ms
[all …]
/Zephyr-latest/include/zephyr/sd/
Dsd_spec.h2 * Copyright 2022-2023 NXP
4 * SPDX-License-Identifier: Apache-2.0
69 * to inform the SD card the next command is an application-specific one.
87 /* Bits 0-2 reserved */
99 /* Bits 17-18 reserved */
184 #define SD_SPI_CMD_BODY_SIZE (SD_SPI_CMD_SIZE - 1)
271 /** VDD 2.7-2.8 */
273 /** VDD 2.8-2.9 */
275 /** VDD 2.9-3.0 */
277 /** VDD 3.0-3.1 */
[all …]
/Zephyr-latest/drivers/espi/
Despi_npcx.c4 * SPDX-License-Identifier: Apache-2.0
15 #include <zephyr/dt-bindings/espi/npcx_espi.h>
32 /* mapping table between eSPI reset signal and wake-up input */
77 ((struct espi_reg *)((const struct espi_npcx_config *)(dev)->config)->base)
135 /* eSPI Virtual Wire Input (Master-to-Slave) signals configuration structure */
139 uint8_t bitmask; /* VW signal bits-mask */
143 /* eSPI Virtual Wire Output (Slave-to-Master) signals configuration structure */
147 uint8_t bitmask; /* VW signal bits-mask */
152 * npcxn-espi-vws-map.dtsi device tree file for more detail.
240 /* VW signal which has no wake-up input source */ in espi_init_wui_callback()
[all …]
/Zephyr-latest/dts/arm/microchip/
Dmec172x_common.dtsi4 * SPDX-License-Identifier: Apache-2.0
11 compatible = "microchip,xec-pcr";
13 reg-names = "pcrr", "vbatr";
15 core-clock-div = <1>;
17 pll-32k-src = <MCHP_XEC_PLL_CLK32K_SRC_SIL_OSC>;
18 periph-32k-src = <MCHP_XEC_PERIPH_CLK32K_SRC_SO_SO>;
19 clk32kmon-period-min = <1435>;
20 clk32kmon-period-max = <1495>;
21 clk32kmon-duty-cycle-var-max = <132>;
22 clk32kmon-valid-min = <4>;
[all …]
/Zephyr-latest/dts/xtensa/espressif/esp32s3/
Desp32s3_common.dtsi4 * SPDX-License-Identifier: Apache-2.0
9 #include <zephyr/dt-bindings/adc/adc.h>
10 #include <zephyr/dt-bindings/gpio/gpio.h>
11 #include <zephyr/dt-bindings/i2c/i2c.h>
12 #include <zephyr/dt-bindings/clock/esp32s3_clock.h>
13 #include <zephyr/dt-bindings/interrupt-controller/esp32s3-xtensa-intmux.h>
14 #include <dt-bindings/pinctrl/esp32s3-pinctrl.h>
19 die-temp0 = &coretemp;
25 zephyr,flash-controller = &flash;
29 #address-cells = <1>;
[all …]
/Zephyr-latest/include/zephyr/drivers/
Dmspi.h4 * SPDX-License-Identifier: Apache-2.0
131 * @brief MSPI bus event callback mask
159 * @brief MSPI controller device specific configuration mask
241 /** @brief GPIO chip-select line numbers (optional) */
243 /** @brief Peripheral number from 0 to host controller peripheral limit. */
247 /** @brief Whether to re-initialize controller */
282 * addr and data in RX direction
286 * addr and data in TX direction
528 * re-initialize their controller hardware. Additional SoC platform specific
530 * binding(xxx,mspi-controller.yaml) so that one may derive the settings from
[all …]
/Zephyr-latest/doc/releases/
Drelease-notes-3.5.rst20 * Bluetooth: improvements to the Controller, Audio, Mesh, as well as the host stack in
38 * CVE-2023-3725 `Zephyr project bug tracker GHSA-2g3m-p6c7-8rr3
39 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-2g3m-p6c7-8rr3>`_
41 * CVE-2023-4257 `Zephyr project bug tracker GHSA-853q-q69w-gf5j
42 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-853q-q69w-gf5j>`_
44 * CVE-2023-4258 `Zephyr project bug tracker GHSA-m34c-cp63-rwh7
45 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-m34c-cp63-rwh7>`_
47 * CVE-2023-4259 `Zephyr project bug tracker GHSA-gghm-c696-f4j4
48 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-gghm-c696-f4j4>`_
50 * CVE-2023-4260 `Zephyr project bug tracker GHSA-gj27-862r-55wh
[all …]
Drelease-notes-2.5.rst27 * CVE-2021-3323: Under embargo until 2021-04-14
28 * CVE-2021-3321: Under embargo until 2021-04-14
29 * CVE-2021-3320: Under embargo until 2021-04-14
39 <https://github.com/zephyrproject-rtos/zephyr/issues?q=is%3Aissue+is%3Aopen+label%3Abug>`_.
56 * Changed vcnl4040 dts binding default for property 'proximity-trigger'.
63 * The :c:func:`mqtt_keepalive_time_left` function now returns -1 if keep alive
67 timeout usage must use the new-style k_timeout_t type and not the
75 combining both Bluetooth host and controller.
87 GPIO-only regulators a devicetree property ``supply-gpios`` is defined as a
101 * ARM Musca-A board and SoC support deprecated and planned to be removed in 2.6.0.
[all …]
Drelease-notes-3.3.rst14 * Introduced :ref:`USB-C <usbc_api>` device stack with PD (power delivery)
17 CMSIS-DSP as the default backend.
30 * CVE-2023-0359: Under embargo until 2023-04-20
32 * CVE-2023-0779: Under embargo until 2023-04-22
66 removed in favor of new :dtcompatible:`zephyr,flash-disk` devicetree binding.
71 * Starting from this release ``zephyr-`` prefixed tags won't be created
82 image states). Use of a truncated hash or non-sha256 hash will still work
88 registration function at boot-up. If applications register this then
93 application code, these will now automatically be registered at boot-up (this
129 This may cause out-of-tree scripts or commands to fail if they have relied
[all …]