Lines Matching +full:address +full:- +full:aligned
16 - NVMe controller: :zephyr_file:`drivers/disk/nvme/nvme_controller.c`
17 - NVMe commands: :zephyr_file:`drivers/disk/nvme/nvme_cmd.c`
18 - NVMe namespace: :zephyr_file:`drivers/disk/nvme/nvme_namespace.c`
26 …more than 1 namespace (disk), it will be possible to raise the amount of built-in namespace support
42 .. code-block:: devicetree
44 #include <zephyr/dt-bindings/pcie/pcie.h>
48 compatible = "nvme-controller";
49 vendor-id = <VENDOR_ID>;
50 device-id = <DEVICE_ID>;
63 Note that NVME requires the target to support PCIe multi-vector MSI-X in order to function.
70 NVMe specifications mandate the data buffer to be placed in a dword (4 bytes) aligned address.
75 At this stage then, it is up to the user to make sure the buffer address being provided to
76 :c:func:`disk_access_read` and :c:func:`disk_access_write` are dword aligned.