Searched +full:supports +full:- +full:setaasa (Results 1 – 5 of 5) sorted by relevance
/Zephyr-latest/dts/bindings/i3c/ |
D | i3c-device.yaml | 2 # SPDX-License-Identifier: Apache-2.0 8 on-bus: i3c 23 ID left-shifted by 1, where the manufacturer ID is 24 the bits 33-47 (zero-based) of the 48-bit Provisioned ID. 26 the part ID (bits 16-31 of the Provisioned ID) left-shifted 27 by 16, and the instance ID (bits 12-15 of the Provisioned ID) 28 left-shifted by 12. Basically, this is the lower 32 bits 33 where the PID part is expanded to be a 64-bit integer. 37 1. 7-bit address of the I2C device. (Note that 10-bit 58 are both expanded to 32-bit integers. [all …]
|
/Zephyr-latest/doc/releases/ |
D | release-notes-4.0.rst | 15 is now the standard way to provide device-specific protection to data at rest. (:github:`76222`) 18 :ref:`ZMS <zms_api>` is a new key-value storage subsystem compatible with all non-volatile storage 24 added, complete with shell support. It supports initial configuration through Devicetree and 25 runtime configuration through vendor specific APIs. Initially the :dtcompatible:`nordic,nrf-comp`, 26 :dtcompatible:`nordic,nrf-lpcomp` and :dtcompatible:`nxp,kinetis-acmp` are supported. 31 Initially implemented drivers include a simple :dtcompatible:`zephyr,gpio-steppers` and a complex 32 sensor-less stall-detection capable with integrated ramp-controller :dtcompatible:`adi,tmc5041`. 50 directory for :zephyr:code-sample-category:`code samples <samples>`. 70 * :cve:`2024-8798`: Under embargo until 2024-11-22 71 * :cve:`2024-10395`: Under embargo until 2025-01-23 [all …]
|
/Zephyr-latest/drivers/i3c/ |
D | i3c_common.c | 4 * SPDX-License-Identifier: Apache-2.0 23 LOG_DBG("I3C msg: %s, addr=%x", name, target->dynamic_addr); in i3c_dump_msgs() 28 msg->flags & I3C_MSG_READ ? 'R' : 'W', msg->len); in i3c_dump_msgs() 29 if (!(msg->flags & I3C_MSG_READ)) { in i3c_dump_msgs() 30 LOG_HEXDUMP_DBG(msg->buf, msg->len, "contents:"); in i3c_dump_msgs() 53 slots->slots[idx] &= ~((unsigned long)I3C_ADDR_SLOT_STATUS_MASK << bitpos); in i3c_addr_slots_set() 54 slots->slots[idx] |= status << bitpos; in i3c_addr_slots_set() 79 status = slots->slots[idx] >> bitpos; in i3c_addr_slots_status() 89 (struct i3c_driver_data *)dev->data; in i3c_addr_slots_init() 91 (const struct i3c_driver_config *)dev->config; in i3c_addr_slots_init() [all …]
|
/Zephyr-latest/include/zephyr/drivers/ |
D | i3c.h | 5 * SPDX-License-Identifier: Apache-2.0 42 * - BCR[7:6]: Device Role 43 * - 0: I3C Target 44 * - 1: I3C Controller capable 45 * - 2: Reserved 46 * - 3: Reserved 48 * - BCR[5]: Advanced Capabilities 49 * - 0: Does not support optional advanced capabilities. 50 * - 1: Supports optional advanced capabilities which 53 * - BCR[4]: Virtual Target Support [all …]
|
/Zephyr-latest/include/zephyr/drivers/i3c/ |
D | ccc.h | 5 * SPDX-License-Identifier: Apache-2.0 117 /** Enter HDR Mode (HDR-DDR) (Broadcast) */ 120 /** Enter HDR Mode 0 (HDR-DDR) (Broadcast) */ 123 /** Enter HDR Mode 1 (HDR-TSP) (Broadcast) */ 126 /** Enter HDR Mode 2 (HDR-TSL) (Broadcast) */ 129 /** Enter HDR Mode 3 (HDR-BT) (Broadcast) */ 171 /** Multi-Lane Data Transfer Control (Broadcast) */ 243 * - For Write CCC, pointer to the byte array of data 244 * to be sent, which may contain the Sub-Command Byte 246 * - For Read CCC, pointer to the byte buffer for data [all …]
|