Lines Matching full:msi
12 #include <zephyr/drivers/pcie/msi.h>
42 { PCI_CAP_ID_MSIX, "MSI-X" },
96 uint32_t msi; in show_msi() local
99 msi = pcie_get_cap(bdf, PCI_CAP_ID_MSI); in show_msi()
101 if (msi) { in show_msi()
102 data = pcie_conf_read(bdf, msi + PCIE_MSI_MCR); in show_msi()
103 shell_fprintf(sh, SHELL_NORMAL, " MSI support%s%s\n", in show_msi()
109 msi = pcie_get_cap(bdf, PCI_CAP_ID_MSIX); in show_msi()
111 if (msi) { in show_msi()
115 data = pcie_conf_read(bdf, msi + PCIE_MSIX_MCR); in show_msi()
121 " MSI-X support%s table size %d\n", in show_msi()
126 offset = pcie_conf_read(bdf, msi + PCIE_MSIX_TR); in show_msi()
134 offset = pcie_conf_read(bdf, msi + PCIE_MSIX_PBA); in show_msi()