PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB`/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * VFIO Region definitions for ZPCI devices * * Copyright IBM Corp. 2020 * * Author(s): Pierre Morel * Matthew Rosato */ #ifndef _VFIO_ZDEV_H_ #define _VFIO_ZDEV_H_ #include #include /** * VFIO_DEVICE_INFO_CAP_ZPCI_BASE - Base PCI Function information * * This capability provides a set of descriptive information about the * associated PCI function. */ struct vfio_device_info_cap_zpci_base { struct vfio_info_cap_header header; __u64 start_dma; /* Start of available DMA addresses */ __u64 end_dma; /* End of available DMA addresses */ __u16 pchid; /* Physical Channel ID */ __u16 vfn; /* Virtual function number */ __u16 fmb_length; /* Measurement Block Length (in bytes) */ __u8 pft; /* PCI Function Type */ __u8 gid; /* PCI function group ID */ /* End of version 1 */ __u32 fh; /* PCI function handle */ /* End of version 2 */ }; /** * VFIO_DEVICE_INFO_CAP_ZPCI_GROUP - Base PCI Function Group information * * This capability provides a set of descriptive information about the group of * PCI functions that the associated device belongs to. */ struct vfio_device_info_cap_zpci_group { struct vfio_info_cap_header header; __u64 dasm; /* DMA Address space mask */ __u64 msi_addr; /* MSI address */ __u64 flags; #define VFIO_DEVICE_INFO_ZPCI_FLAG_REFRESH 1 /* Program-specified TLB refresh */ __u16 mui; /* Measurement Block Update Interval */ __u16 noi; /* Maximum number of MSIs */ __u16 maxstbl; /* Maximum Store Block Length */ __u8 version; /* Supported PCI Version */ /* End of version 1 */ __u8 reserved; __u16 imaxstbl; /* Maximum Interpreted Store Block Length */ /* End of version 2 */ }; /** * VFIO_DEVICE_INFO_CAP_ZPCI_UTIL - Utility String * * This capability provides the utility string for the associated device, which * is a device identifier string made up of EBCDID characters. 'size' specifies * the length of 'util_str'. */ struct vfio_device_info_cap_zpci_util { struct vfio_info_cap_header header; __u32 size; __u8 util_str[]; }; /** * VFIO_DEVICE_INFO_CAP_ZPCI_PFIP - PCI Function Path * * This capability provides the PCI function path string, which is an identifier * that describes the internal hardware path of the device. 'size' specifies * the length of 'pfip'. */ struct vfio_device_info_cap_zpci_pfip { struct vfio_info_cap_header header; __u32 size; __u8 pfip[]; }; #endif