Displaying 9 results from an estimated 9 matches for "pmask".
Did you mean:
  mask
  
2010 Jul 27
0
NV50 inifinite loop
...out>, pspix=0x2057530, pmpix=<value optimized out>, pdpix=0x21e4b20)
    at ../../src/nv50_exa.c:840
        pNv = 0x1c8c690
        chan = 0x1c95d80
        eng2d = 0x1c825d0
        tesla = 0x1c8bf10
#1  0x00007f681b209495 in exaTryDriverComposite (op=128 '\200', pSrc=0x2068830, pMask=0x0, pDst=0x2068a20, xSrc=<value optimized out>, ySrc=<value optimized out>, xMask=<value optimized out>, 
    yMask=<value optimized out>, xDst=268, yDst=0, width=<value optimized out>, height=<value optimized out>) at ../../exa/exa_render.c:759
        region =...
2012 Aug 10
18
[PATCH v2 0/5] ARM hypercall ABI: 64 bit ready
Hi all,
this patch series makes the necessary changes to make sure that the
current ARM hypercall ABI can be used as-is on 64 bit ARM platforms:
- it defines xen_ulong_t as uint64_t on ARM;
- it introduces a new macro to handle guest pointers, called
XEN_GUEST_HANDLE_PARAM (that has size 4 bytes on aarch and is going to
have size 8 bytes on aarch64);
- it replaces all the occurrences of
2013 Aug 07
1
[PATCH] drm/nouveau: mark last megabyte as usable
...ject *parent, struct nouveau_object *engine,
 	struct nouveau_bios *bios = nouveau_bios(pfb);
 	struct nouveau_ram *ram;
 	const u32 rsvd_head = ( 256 * 1024) >> 12; /* vga memory */
-	const u32 rsvd_tail = (1024 * 1024) >> 12; /* vbios etc */
 	u32 parts = nv_rd32(pfb, 0x022438);
 	u32 pmask = nv_rd32(pfb, 0x022554);
 	u32 bsize = nv_rd32(pfb, 0x10f20c);
@@ -156,7 +155,7 @@ nvc0_ram_create(struct nouveau_object *parent, struct nouveau_object *engine,
 	/* if all controllers have the same amount attached, there's no holes */
 	if (uniform) {
 		offset = rsvd_head;
-		length = (ram-&...
2008 Jul 24
2
[RFC] i386 highmem assist hypercalls
...rch/x86/mm.c
===================================================================
--- 2008-07-21.orig/xen/arch/x86/mm.c	2008-07-18 16:19:34.000000000 +0200
+++ 2008-07-21/xen/arch/x86/mm.c	2008-07-21 08:36:26.000000000 +0200
@@ -2218,6 +2218,29 @@ static inline cpumask_t vcpumask_to_pcpu
     return pmask;
 }
 
+#ifdef __i386__
+static inline void *fixmap_domain_page(unsigned long mfn)
+{
+    unsigned int cpu = smp_processor_id();
+    void *ptr = (void *)fix_to_virt(FIX_PAE_HIGHMEM_0 + cpu);
+
+    l1e_write(fix_pae_highmem_pl1e - cpu,
+              l1e_from_pfn(mfn, __PAGE_HYPERVISOR));
+    flu...
2009 Nov 04
1
[PATCH] nv10/exa: Spring-cleaning
...e)) {
-		return TRUE;
-	}
-	return FALSE;
+	/* We do no saturate, disjoint, conjoint, though we
+	 * could do e.g. DisjointClear which really is
+	 * Clear. */
+	return op < PictOpSaturate;
 }
 
 #if 0
-static void NV10EXAFallbackInfo(char *reason, int op, PicturePtr pSrcPicture,
-				PicturePtr pMaskPicture, PicturePtr pDstPicture)
+static void
+print_fallback_info(char *reason, int op, PicturePtr src, PicturePtr mask,
+		    PicturePtr dst)
 {
 	char out2[4096];
 	char *out = out2;
+
 	sprintf(out, "%s  ", reason);
-	out = out + strlen(out);
+	out += strlen(out);
+
 	switch (op) {...
2008 Mar 31
0
what''s the purpose of line page table (PML4 entry 258)
...*pl1e;
3005 <http://lxr.xensource.com/lxr/source/xen/arch/x86/mm.c?a=x86_64#L3005>
    unsigned long  vmask, bmap_ptr, gl1mfn;
3006 <http://lxr.xensource.com/lxr/source/xen/arch/x86/mm.c?a=x86_64#L3006>
    cpumask_t <http://lxr.xensource.com/lxr/ident?a=x86_64;i=cpumask_t>
     pmask;
3007 <http://lxr.xensource.com/lxr/source/xen/arch/x86/mm.c?a=x86_64#L3007>
    int            rc
<http://lxr.xensource.com/lxr/ident?a=x86_64;i=rc>  = 0;
3008 <http://lxr.xensource.com/lxr/source/xen/arch/x86/mm.c?a=x86_64#L3008>
3009 <http://lxr.xensource.com/lxr/source/xen/...
2008 Oct 17
6
[PATCH, RFC] i386: highmem access assistance hypercalls
...rch/x86/mm.c
===================================================================
--- 2008-09-19.orig/xen/arch/x86/mm.c	2008-09-17 09:26:41.000000000 +0200
+++ 2008-09-19/xen/arch/x86/mm.c	2008-09-19 14:00:01.000000000 +0200
@@ -2432,6 +2432,29 @@ static inline cpumask_t vcpumask_to_pcpu
     return pmask;
 }
 
+#ifdef __i386__
+static inline void *fixmap_domain_page(unsigned long mfn)
+{
+    unsigned int cpu = smp_processor_id();
+    void *ptr = (void *)fix_to_virt(FIX_PAE_HIGHMEM_0 + cpu);
+
+    l1e_write(fix_pae_highmem_pl1e - cpu,
+              l1e_from_pfn(mfn, __PAGE_HYPERVISOR));
+    flu...
2012 Aug 16
27
[PATCH v3 0/6] ARM hypercall ABI: 64 bit ready
Hi all,
this patch series makes the necessary changes to make sure that the
current ARM hypercall ABI can be used as-is on 64 bit ARM platforms:
- it defines xen_ulong_t as uint64_t on ARM;
- it introduces a new macro to handle guest pointers, called
XEN_GUEST_HANDLE_PARAM (that has size 4 bytes on aarch and is going to
have size 8 bytes on aarch64);
- it replaces all the occurrences of
2010 Mar 09
72
[Bug 26980] New: GT230M/nouveau: X server hangs spontaneously
http://bugs.freedesktop.org/show_bug.cgi?id=26980
           Summary: GT230M/nouveau: X server hangs spontaneously
           Product: xorg
           Version: 7.5
          Platform: x86-64 (AMD64)
        OS/Version: Linux (All)
            Status: NEW
          Severity: normal
          Priority: medium
         Component: Driver/nouveau
        AssignedTo: nouveau at lists.freedesktop.org