search for: 0xfff0

Displaying 20 results from an estimated 23 matches for "0xfff0".

Did you mean: 0xffff
2007 Oct 20
1
[PATCH] G72 doesn't need ExaCopy workaround
...ertions(+), 1 deletions(-) diff --git a/src/nv_exa.c b/src/nv_exa.c index d88d85a..b403072 100644 --- a/src/nv_exa.c +++ b/src/nv_exa.c @@ -283,7 +283,6 @@ static void NVExaCopy(PixmapPtr pDstPixmap, if ( ((abs(srcY - dstY)< 16)||(abs(srcX-dstX)<16)) && ((((pNv->Chipset & 0xfff0) == CHIPSET_G70) || ((pNv->Chipset & 0xfff0) == CHIPSET_G71) || - ((pNv->Chipset & 0xfff0) == CHIPSET_G72) || ((pNv->Chipset & 0xfff0) == CHIPSET_G73) || ((pNv->Chipset & 0xfff0) == CHIPSET_C512))) ) { -- 1.5.3.3 --ZPt4rx8FFjLCG7dd--
2007 Jul 20
1
reboot from com32
Q: Is there a way to do a reboot (either warm or cold) from a com32 program? I have a com32 program that sometimes (based upon conditions) needs to reboot the system. I would prefer to do a warm reboot (40:72 = 0x1234), but at this point cold would be OK too. grepping through syslinux-3.51 I only found one reference, in iso/pxelinux.asm at the tail end of 'kaboom' ... but presumably
2014 Aug 25
1
[PATCH envytools] Don't try to use bios->pars if NULL (parse_pcir function has probably failed).
...bios->pars is NULL, parse_pcir function has probably failed)\n"); parts > + break; > + } > /* yeah, ain't this one hilarious... */ > if ((bios->parts[0].pcir_device & 0xfff0) == 0x7e0) { > bios->chipset = 0x63; > -- > 1.9.1 > > _______________________________________________ > Nouveau mailing list > Nouveau at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/nouveau
2008 Oct 08
8
[PATCH] dom0 linux: Reassign memory resources to device for pci passthrough.
...return; + } + + if (!res->flags) + return; + + switch (resno) { + case 8 : /* MMIO Base/Limit */ + pcibios_resource_to_bus(dev, &region, res); + if (res->flags & IORESOURCE_MEM && + !(res->flags & IORESOURCE_PREFETCH)) { + l = (region.start >> 16) & 0xfff0; + l |= region.end & 0xfff00000; + } else { + l = 0x0000fff0; + } + pci_write_config_dword(dev, PCI_MEMORY_BASE, l); + + break; + + case 9 : /* Prefetchable MMIO Base/Limit */ + /* Clear out the upper 32 bits of PREF limit. + * If PCI_PREF_BASE_UPPER32 was non-zero, this temporarily...
2007 Sep 18
1
I''m having an issue with u32 masking
..., I have come to the conclusion that TC is ONLY matching on the original port that a gave it. It does not in fact match on any port within the given range of ports that I provide in the masks. Just as a case of verifying my method, I also tried (in my C app) the following: 6656-6675 masked by 0xfff0 (65520) - matches on ports 6656 and 6672 6656-6675 masked by 0x1a07 (6663) - matches on ports 6656-6663 I even went the extra step of verifying (most of) the bit masks by hand (grid paper is wonderful). So, in short, I know that my bit mask is working just fine. Is this how tc is supposed to...
2010 Nov 26
1
[PATCH] new *br: Show handoff data
...quot; =$PnP\0" scn_pnp: call crlf /* $PnP Scan */ movw $0xf000, %dx pushw %dx popw %es movw $0, %si movw $0x1000, %cx /* 0x506E5024 */ movw $0x5024, %dx movw $0x506E, %bx ch_pnp: es lodsw cmpw %dx, %ax jne ch_pnp_l es lodsw cmpw %bx, %ax je pr_pnp ch_pnp_l: addw $14, %si andw $0xFFF0, %si loopw ch_pnp jmp end pr_pnp: pushw %si call wrstr .ascii "$PnP-\0" movw %es, %dx call wrhexw movb $':, %al call wrchr popw %dx andw $0xFFF0, %dx call wrhexw #endif /* DEBUG_PNP */ call crlf end: jmp bootfail ASCII_MARKER1 "wc" wrchr: movb $0x0e, %ah...
2004 Oct 21
2
how to read the stats
Hi I have setup iproute2 and need a bit of help reading the stats from it ===== output qdisc htb 1: r2q 10 default 20 direct_packets_stat 0 ver 3.17 Sent 547326809 bytes 1342627 pkts (dropped 9303, overlimits 2817572 requeues 0) backlog 46p qdisc sfq 10: limit 128p quantum 1514b flows 128/1024 perturb 10sec Sent 41874343 bytes 730889 pkts (dropped 0, overlimits 0 requeues 0) qdisc sfq
2003 May 18
0
Compile of boot blocks fails, please help.
...LE so that it can boot using a serial console. To this effect I am trying to compile new boot blocks, but I get this error: casa# cd /usr/src/sys/i386/boot/biosboot && make cc -O2 -malign-functions=0 -malign-jumps=0 -malign-loops=0 -DBOOTWAIT=5000 -DTIMEOUT= -DBOOTSEG=0x1000 -DBOOTSTACK=0xFFF0 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -DCOMCONSOLE=0x3F8 -DCONSPEED=115200 -mpreferred-stack-boundary=2 -aout -nostdinc -I/usr/src/sys/i386/boot/biosboot/../../../../include -I/usr/src/sys/i...
2007 Sep 18
0
Re: LARTC Digest, Vol 31, Issue 25
...> at 22 (dest port 6656 ONLY), u16 0x1a0b 0x1a0f at 22 (dest port 6667 ONLY) >> > >> > If so, how can you match a range of ports (in my example, or a range of >> > anything for that matter) in tc? >> > >> > > Try: > > match u16 0x1a00 0xfff0 > > Mask is first applied to the value in the packet, then it''s tested > against your (0x1a00) value Can you please explain this further? You are saying that its ORed with the value? Or is it ANDed? Or maybe XORed? What operation are they applying to the value? Working from wha...
2014 Aug 25
0
[PATCH envytools] Don't try to use bios->pars if NULL (parse_pcir function has probably failed).
...;G72"; break; case 0x0573: + if (!bios->parts) { + ENVY_BIOS_ERR("Failed to detect board (bios->pars is NULL, parse_pcir function has probably failed)\n"); + break; + } /* yeah, ain't this one hilarious... */ if ((bios->parts[0].pcir_device & 0xfff0) == 0x7e0) { bios->chipset = 0x63; -- 1.9.1
2010 Mar 03
0
Error Trying to run Genexus 9.0
...) Windows Debugger Version 6.6.0007.5 Copyright (c) Microsoft Corporation. All rights reserved. Loading Dump File [C:\Program Files\ARTech\GeneXus\GeneXus90\Info8.dmp] User Mini Dump File: Only registers, stack and portions of memory are available WARNING: Minidump contains unknown stream type 0xfff0 Windows XP Version 2600 (Service Pack 3) UP Free x86 compatible Product: WinNt, suite: TerminalServer Debug session time: Tue Mar 2 14:34:32.000 2010 (GMT-5) System Uptime: not available Process Uptime: not available Symbol search path is: *** Invalid *** ***********************************...
2013 Dec 04
0
Boot iPXE from syslinux/isolinux
...; !syslinux_memmap_highest(mmap, SMT_TERMINAL, &start, - cmdline_size, 0xa0000, 16)) { - syslinux_free_memmap(mmap); - return start - base; - } + if (hdr->version >= 0x0202 && (hdr->loadflags & LOAD_HIGH)) + max_offset = 0x10000; + else + max_offset = 0xfff0 - cmdline_size; + + if (!syslinux_memmap_highest(mmap, SMT_FREE, &start, + cmdline_size, 0xa0000, 16) || + !syslinux_memmap_highest(mmap, SMT_TERMINAL, &start, + cmdline_size, 0xa0000, 16)) { + - syslinux_free_memmap(mmap); - dprintf("Unable to find lowmem for cmdline\n&q...
2002 Aug 06
0
Getting a GUI to work with Vorbis code
...//////////////////////////////////////////// / // CGUIDlg message handlers BOOL CGUIDlg::OnInitDialog() { CDialog::OnInitDialog(); // Add "About..." menu item to system menu. // IDM_ABOUTBOX must be in the system command range. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); ASSERT(IDM_ABOUTBOX < 0xF000); CMenu* pSysMenu = GetSystemMenu(FALSE); if (pSysMenu != NULL) { CString strAboutMenu; strAboutMenu.LoadString(IDS_ABOUTBOX); if (!strAboutMenu.IsEmpty())...
2014 Aug 27
2
[PATCH envytools] nva: Clean up nva tools doc
- Sort commands by name for easier update - Make more readable - Remove no more existing commands --- nva/README | 81 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 43 insertions(+), 38 deletions(-) diff --git a/nva/README b/nva/README index 625ea7c..cbe6ae3 100644 --- a/nva/README +++ b/nva/README @@ -13,43 +13,48 @@ by the nvalist program. The programs are:
2018 May 25
1
MSP430: interrupt vector number out of bounds error in v6/trunk (with patch)
...symbols, because odd and even vector numbers generate the same symbol. Neither the check for even and under 30, nor the division by 2 is necessary when compiling and assembling with the TI MSP GCC, whose msp430*.h headers define vector number macros, like. #define EUSCI_A0_VECTOR (48) /* 0xFFF0 */ My guess is that the current LLVM code from above has been left over from very old and deprecated community project MSPGCC, which is very different from TI MSP GCC and is no longer supported. To make interrupts work, I had to apply attached patch and then in the app code, define the symbol man...
2009 Nov 23
2
[PATCH 1/3] drm/nouveau: Update the CRTC arbitration parameters on FB depth switch.
Signed-off-by: Francisco Jerez <currojerez at riseup.net> --- drivers/gpu/drm/nouveau/nv04_crtc.c | 37 +++++++++++++++++++++------------- 1 files changed, 23 insertions(+), 14 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nv04_crtc.c b/drivers/gpu/drm/nouveau/nv04_crtc.c index 2ab9f30..0a5cfc1 100644 --- a/drivers/gpu/drm/nouveau/nv04_crtc.c +++ b/drivers/gpu/drm/nouveau/nv04_crtc.c
2013 Dec 04
2
Boot iPXE from syslinux/isolinux
"H. Peter Anvin" <hpa at zytor.com> on Tue, 2013/12/03 20:26: > On 10/24/2013 01:09 AM, Christian Hesse wrote: > >>> > >>> version 6.02-pre5 works, 6.02-pre6 does not. > >> > >> Struggled with git bisect, but finally succeeded: > >> > >> 8f470e7bfe75f6401f6c5432988c620b863ad274 is the first bad commit > >>
2007 Jul 24
0
fedora7 can not boot in hvm domain of xen3.1
...0: 00000000000E0000 - 0000000000100000 (Reserved) (XEN) HVM10: 0000000000100000 - 000000001FFFAC00 (RAM) (XEN) HVM10: 000000001FFFAC00 - 0000000020000000 (Reserved) (XEN) HVM10: (XEN) HVM10: Start BIOS ... (XEN) HVM10: Starting emulated 16-bit real-mode: ip=F000:FFF0 (XEN) HVM10: 0x000FFFF0: 0xF000:0xFFF0 (0) <VM86_REAL> (XEN) HVM10: rombios.c,v 1.138 2005/05/07 15:55:26 vruppert Exp $ (XEN) HVM10: 0x000FE260: 0xF000:0xE260 (0) opc 0xB0 (XEN) HVM10: Remapping master: ICW2 0x8 -> 0x20 (XEN) HVM10: 0x000FE264: 0xF000:0xE264 (0) opc 0xB0 (XEN) HVM10: Remapping slave: ICW2 0x70 -> 0x28 (XEN...
2014 Aug 25
12
[PATCH envytools] demmio: Add decoding of some MEM_TIMINGS registers for NVC0.
--- rnndb/memory/nvc0_pbfb.xml | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/rnndb/memory/nvc0_pbfb.xml b/rnndb/memory/nvc0_pbfb.xml index 500cea9..e006dbe 100644 --- a/rnndb/memory/nvc0_pbfb.xml +++ b/rnndb/memory/nvc0_pbfb.xml @@ -49,23 +49,54 @@ Most bitfields are unknown. </doc> <bitfield high="7"
2007 Apr 18
0
[Bridge] BCP code ported to pppd 2.4.2
...(code) { + case CI_BRIDGE_IDENTIFICATION: + if (olen == CILEN_BRIDGELINEID) { + p += 2; + GETSHORT(cishort, p); + printer(arg, "Bridge-ID LAN=0x%03x Bridge=0x%X", + (cishort & 0xFFF0) >> 4, + cishort & 0x000F); + } + break; + + case CI_LINE_IDENTIFICATION: + if (olen == CILEN_BRIDGELINEID) { + p += 2; + GETSHORT(cishort, p); + pri...