search for: cap_size

Displaying 18 results from an estimated 18 matches for "cap_size".

Did you mean: map_size
2009 Jun 05
1
[PATCHv3 03/13] qemu: add routines to manage PCI capabilities
...PCIBus *bus; int devfn; @@ -194,6 +201,15 @@ void pci_register_io_region(PCIDevice *pci_dev, int region_num, uint32_t size, int type, PCIMapIORegionFunc *map_func); +int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + +void pci_del_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + +void pci_reserve_capability(PCIDevice *pci_dev, uint8_t offset, uint8_t size); + +uint8_t pci_find_capability(PCIDevice *pci_dev, uint8_t cap_id); + + uint32_t pci_default_read_config(PCIDevice *d,...
2009 Jun 05
1
[PATCHv3 03/13] qemu: add routines to manage PCI capabilities
...PCIBus *bus; int devfn; @@ -194,6 +201,15 @@ void pci_register_io_region(PCIDevice *pci_dev, int region_num, uint32_t size, int type, PCIMapIORegionFunc *map_func); +int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + +void pci_del_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + +void pci_reserve_capability(PCIDevice *pci_dev, uint8_t offset, uint8_t size); + +uint8_t pci_find_capability(PCIDevice *pci_dev, uint8_t cap_id); + + uint32_t pci_default_read_config(PCIDevice *d,...
2018 Jul 18
2
Syntax for FileCheck numeric variables and expressions
...ult so it needs to be repeated everywhere. I could probably use [[@EXPR:OUTVAR INVAR + 42]] but I haven't really had the need for that yet. > > We currently need the following two features: > > - Simple arithmetic with multiple operations. Example: > `cld $gp, $zero, [[@EXPR 2 * $CAP_SIZE - 8]]($c11)` > > - Conversion to hex (upper and lower case since not all tools are consistent here) and to decimal. > Example: // READOBJ-NEXT: 0x50 R_MIPS_64/R_MIPS_NONE/R_MIPS_NONE .data 0x[[@EXPR hex($CAP_SIZE * 2)]] > > Alex > > [1] For most test cases the simple -DVAR=valu...
2009 May 25
2
[PATCH 03/11] qemu: add routines to manage PCI capabilities
...PCIBus *bus; int devfn; @@ -194,6 +201,15 @@ void pci_register_io_region(PCIDevice *pci_dev, int region_num, uint32_t size, int type, PCIMapIORegionFunc *map_func); +int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + +void pci_del_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + +void pci_reserve_capability(PCIDevice *pci_dev, uint8_t offset, uint8_t size); + +uint8_t pci_find_capability(PCIDevice *pci_dev, uint8_t cap_id); + + uint32_t pci_default_read_config(PCIDevice *d,...
2009 May 25
2
[PATCH 03/11] qemu: add routines to manage PCI capabilities
...PCIBus *bus; int devfn; @@ -194,6 +201,15 @@ void pci_register_io_region(PCIDevice *pci_dev, int region_num, uint32_t size, int type, PCIMapIORegionFunc *map_func); +int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + +void pci_del_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + +void pci_reserve_capability(PCIDevice *pci_dev, uint8_t offset, uint8_t size); + +uint8_t pci_find_capability(PCIDevice *pci_dev, uint8_t cap_id); + + uint32_t pci_default_read_config(PCIDevice *d,...
2009 Jun 18
1
[PATCHv5 08/13] qemu: add support for resizing regions
..._bar(PCIDevice *pci_dev, int region_num, uint32_t size, int type, PCIMapIORegionFunc *map_func); +void pci_resize_bar(PCIDevice *pci_dev, int region_num, uint32_t size); + int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); void pci_del_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); -- 1.6.2.2
2009 Jun 18
1
[PATCHv5 08/13] qemu: add support for resizing regions
..._bar(PCIDevice *pci_dev, int region_num, uint32_t size, int type, PCIMapIORegionFunc *map_func); +void pci_resize_bar(PCIDevice *pci_dev, int region_num, uint32_t size); + int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); void pci_del_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); -- 1.6.2.2
2018 Jul 26
3
Syntax for FileCheck numeric variables and expressions
...could probably use [[@EXPR:OUTVAR INVAR + 42]] but I haven't really had the need for that yet. >> > >> > We currently need the following two features: >> > >> > - Simple arithmetic with multiple operations. Example: >> > `cld $gp, $zero, [[@EXPR 2 * $CAP_SIZE - 8]]($c11)` >> > >> > - Conversion to hex (upper and lower case since not all tools are consistent here) and to decimal. >> > Example: // READOBJ-NEXT: 0x50 R_MIPS_64/R_MIPS_NONE/R_MIPS_NONE .data 0x[[@EXPR hex($CAP_SIZE * 2)]] >> > >> > Alex >> &...
2018 Jul 17
2
Syntax for FileCheck numeric variables and expressions
To be clear, I do not intend to add support for hex specifier in the current patch, I just want to make sure the syntax we choose is going to allow it later. My immediate use case is decimal integer and I intend to write the code so that it's easy to extend to more type of numeric variables and expressions later. This way we'll only add specifier that are actually required by actual
2018 Jul 31
2
Syntax for FileCheck numeric variables and expressions
...] but I haven't really had the need for that yet. >> >> > >> >> > We currently need the following two features: >> >> > >> >> > - Simple arithmetic with multiple operations. Example: >> >> > `cld $gp, $zero, [[@EXPR 2 * $CAP_SIZE - 8]]($c11)` >> >> > >> >> > - Conversion to hex (upper and lower case since not all tools are consistent here) and to decimal. >> >> > Example: // READOBJ-NEXT: 0x50 R_MIPS_64/R_MIPS_NONE/R_MIPS_NONE .data 0x[[@EXPR hex($CAP_SIZE * 2)]] >> >&gt...
2018 Jul 31
2
Syntax for FileCheck numeric variables and expressions
...] but I haven't really had the need for that yet. >> >> > >> >> > We currently need the following two features: >> >> > >> >> > - Simple arithmetic with multiple operations. Example: >> >> > `cld $gp, $zero, [[@EXPR 2 * $CAP_SIZE - 8]]($c11)` >> >> > >> >> > - Conversion to hex (upper and lower case since not all tools are consistent here) and to decimal. >> >> > Example: // READOBJ-NEXT: 0x50 R_MIPS_64/R_MIPS_NONE/R_MIPS_NONE .data 0x[[@EXPR hex($CAP_SIZE * 2)]] >> >&gt...
2018 Aug 22
4
Syntax for FileCheck numeric variables and expressions
...hat yet. >> >> >> > >> >> >> > We currently need the following two features: >> >> >> > >> >> >> > - Simple arithmetic with multiple operations. Example: >> >> >> > `cld $gp, $zero, [[@EXPR 2 * $CAP_SIZE - 8]]($c11)` >> >> >> > >> >> >> > - Conversion to hex (upper and lower case since not all tools are >> consistent here) and to decimal. >> >> >> > Example: // READOBJ-NEXT: 0x50 R_MIPS_64/R_MIPS_NONE/R_MIPS_NONE >> .data 0x...
2013 Feb 07
41
Patch series for IGD passthrough
This series contains all the fixes required to produce a working IGD passthrough box. All the changes are previously seen in the dev list but not yet accepted. Some of them are out-dated and need some reshape. Detailed description can be found later in each patch. . [PATCH 1/3] qemu-xen-trad/pt_msi_disable: do not clear all MSI flags . [PATCH 2/3] qemu-xen-trad: Correctly expose PCH ISA bridge
2009 May 11
0
[PATCH 1/2] qemu-kvm: add MSI-X support
...PCIDevice *pci_dev, int region_num, uint32_t size, int type, PCIMapIORegionFunc *map_func); +/* Reserve space and add capability to the linked list in pci config space */ +void pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + int pci_enable_capability_support(PCIDevice *pci_dev, - uint32_t config_start, PCICapConfigReadFunc *config_read, PCICapConfigWriteFunc *config_write, PCICa...
2009 May 11
0
[PATCH 1/2] qemu-kvm: add MSI-X support
...PCIDevice *pci_dev, int region_num, uint32_t size, int type, PCIMapIORegionFunc *map_func); +/* Reserve space and add capability to the linked list in pci config space */ +void pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + int pci_enable_capability_support(PCIDevice *pci_dev, - uint32_t config_start, PCICapConfigReadFunc *config_read, PCICapConfigWriteFunc *config_write, PCICa...
2009 May 20
0
[PATCHv2-RFC 1/2] qemu-kvm: add MSI-X support
...PCIMapIORegionFunc *map_func); +void pci_resize_io_region(PCIDevice *pci_dev, int region_num, + uint32_t size); + +/* Reserve space and add capability to the linked list in pci config space */ +void pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + int pci_enable_capability_support(PCIDevice *pci_dev, - uint32_t config_start, PCICapConfigReadFunc *config_read, PCICapConfigWriteFunc *config_write, PCICa...
2009 May 20
0
[PATCHv2-RFC 1/2] qemu-kvm: add MSI-X support
...PCIMapIORegionFunc *map_func); +void pci_resize_io_region(PCIDevice *pci_dev, int region_num, + uint32_t size); + +/* Reserve space and add capability to the linked list in pci config space */ +void pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size); + int pci_enable_capability_support(PCIDevice *pci_dev, - uint32_t config_start, PCICapConfigReadFunc *config_read, PCICapConfigWriteFunc *config_write, PCICa...
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...t;, + Wx::AUI_DOCKART_PANE_BORDER_SIZE) + + @sash_size, s2 = make_metric_spin_ctrl( ID_SashSize, + "Sash Size:", + Wx::AUI_DOCKART_SASH_SIZE) + + @cap_size, s3 = make_metric_spin_ctrl( ID_CaptionSize, + "Caption Size:", + Wx::AUI_DOCKART_CAPTION_SIZE) + + # colour controls + @bckg_colour, s4 = make_colour_button( ID_BackgroundColour, +...