Server IP : 172.67.216.182 / Your IP : 172.70.189.32 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-5.15.0-142-generic/arch/x86/include/asm/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_X86_MSI_H #define _ASM_X86_MSI_H #include <asm/hw_irq.h> #include <asm/irqdomain.h> typedef struct irq_alloc_info msi_alloc_info_t; int pci_msi_prepare(struct irq_domain *domain, struct device *dev, int nvec, msi_alloc_info_t *arg); /* Structs and defines for the X86 specific MSI message format */ typedef struct x86_msi_data { union { struct { u32 vector : 8, delivery_mode : 3, dest_mode_logical : 1, reserved : 2, active_low : 1, is_level : 1; }; u32 dmar_subhandle; }; } __attribute__ ((packed)) arch_msi_msg_data_t; #define arch_msi_msg_data x86_msi_data typedef struct x86_msi_addr_lo { union { struct { u32 reserved_0 : 2, dest_mode_logical : 1, redirect_hint : 1, reserved_1 : 1, virt_destid_8_14 : 7, destid_0_7 : 8, base_address : 12; }; struct { u32 dmar_reserved_0 : 2, dmar_index_15 : 1, dmar_subhandle_valid : 1, dmar_format : 1, dmar_index_0_14 : 15, dmar_base_address : 12; }; }; } __attribute__ ((packed)) arch_msi_msg_addr_lo_t; #define arch_msi_msg_addr_lo x86_msi_addr_lo #define X86_MSI_BASE_ADDRESS_LOW (0xfee00000 >> 20) typedef struct x86_msi_addr_hi { u32 reserved : 8, destid_8_31 : 24; } __attribute__ ((packed)) arch_msi_msg_addr_hi_t; #define arch_msi_msg_addr_hi x86_msi_addr_hi #define X86_MSI_BASE_ADDRESS_HIGH (0) struct msi_msg; u32 x86_msi_msg_get_destid(struct msi_msg *msg, bool extid); #endif /* _ASM_X86_MSI_H */