search for: 0x400

Displaying 20 results from an estimated 510 matches for "0x400".

Did you mean: 0x00
2014 Oct 30
2
[PATCH] nv50/disp: Fix modeset on G94
...*nv_crtc, bool update) } static int +nv50_crtc_set_raster_vblank_dmi(struct nouveau_crtc *nv_crtc, u32 usec) +{ + struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev); + u32 *push; + + push = evo_wait(mast, 8); + if (!push) + return -ENOMEM; + + evo_mthd(push, 0x0828 + (nv_crtc->index * 0x400), 1); + evo_data(push, usec); + evo_kick(push, mast); + + return 0; +} + +static int nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool update) { struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev); @@ -1104,14 +1121,14 @@ nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_d...
2014 Feb 20
1
Samba 4.1.4 on Solaris 10 fails linking 'default/examples/libsmbclient/teststatvfs'
...ivate' \ ./configure --prefix=/opt/local/samba make fails linking 'default/examples/libsmbclient/teststatvfs': [3505/3811] Linking default/examples/libsmbclient/teststatvfs ld: warning: symbol 'dyn_LIBDIR' has differing sizes: (file /usr/sfw/lib/libsmbclient.so value=0x400; file default/lib/util/libsamba-util.so value=0x4); /usr/sfw/lib/libsmbclient.so definition taken ld: warning: symbol 'dyn_SHLIBEXT' has differing sizes: (file /usr/sfw/lib/libsmbclient.so value=0x100; file default/lib/util/libsamba-util.so value=0x4); /usr/sfw...
2014 Oct 30
2
[PATCH] nv50/disp: Fix modeset on G94
...gt; + u32 *push; >> + >> + push = evo_wait(mast, 8); > > Just needs to be 2, no? Yes, doesn't matter too much though. > >> + if (!push) >> + return -ENOMEM; >> + >> + evo_mthd(push, 0x0828 + (nv_crtc->index * 0x400), 1); >> + evo_data(push, usec); >> + evo_kick(push, mast); >> + >> + return 0; >> +} >> + >> +static int >> nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool update) >> { >> struct nv50_mast *mast...
2004 Nov 21
1
incompatible with our capability 0x400.
I'm trying to connect * server from diax 0.9.8c client and * outputs this errors on CLI Nov 21 18:59:59 NOTICE[7316]: chan_iax2.c:5742 socket_read: Rejected connect attempt from 192.168.0.4, requested/capability 0x2/0x2 incompatible with our capability 0x400.
2020 Feb 12
0
[PATCH 2/4] drm/nouveau/kms/gv100-: Add support for interlaced modes
...struct nv50_head_atom *asyh) struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan; struct nv50_head_mode *m = &asyh->mode; u32 *push; - if ((push = evo_wait(core, 12))) { + if ((push = evo_wait(core, 13))) { evo_mthd(push, 0x2064 + (head->base.index * 0x400), 5); evo_data(push, (m->v.active << 16) | m->h.active ); evo_data(push, (m->v.synce << 16) | m->h.synce ); evo_data(push, (m->v.blanke << 16) | m->h.blanke ); evo_data(push, (m->v.blanks << 16) | m->h.blanks ); evo_data(push, (m-...
2014 Sep 05
1
[PATCH 1/8] nv50/display: Set VBLANK time in modeset script
...- mode->vdisplay - 2) * hactive; > + vblankus *= 1000; > + vblankus /= mode->clock; When you rebase, can you move this calculation into the common code please :) > + > evo_mthd(push, 0x0804 + (nv_crtc->index * 0x400), 2); > evo_data(push, 0x00800000 | mode->clock); > evo_data(push, (ilace == 2) ? 2 : 0); > - evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 6); > + evo_mthd(push, 0x0810 + (nv_crtc->...
2020 May 11
0
[PATCH v3 3/5] drm/nouveau/kms/gv100-: Add support for interlaced modes
...struct nv50_head_atom *asyh) struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan; struct nv50_head_mode *m = &asyh->mode; u32 *push; - if ((push = evo_wait(core, 12))) { + if ((push = evo_wait(core, 13))) { evo_mthd(push, 0x2064 + (head->base.index * 0x400), 5); evo_data(push, (m->v.active << 16) | m->h.active ); evo_data(push, (m->v.synce << 16) | m->h.synce ); evo_data(push, (m->v.blanke << 16) | m->h.blanke ); evo_data(push, (m->v.blanks << 16) | m->h.blanks ); evo_data(push, (m-...
2014 Oct 28
0
[PATCH] nv50/disp: Fix modeset on G94
...s/gpu/drm/nouveau/nv50_display.c index ae873d1..5beb352 100644 --- a/drivers/gpu/drm/nouveau/nv50_display.c +++ b/drivers/gpu/drm/nouveau/nv50_display.c @@ -1104,14 +1104,14 @@ nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode, evo_mthd(push, 0x0804 + (nv_crtc->index * 0x400), 2); evo_data(push, 0x00800000 | mode->clock); evo_data(push, (ilace == 2) ? 2 : 0); - evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 8); + evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 6); evo_data(push, 0x00000000); evo_data(push, (vactive << 16) | hacti...
2014 Oct 30
0
[PATCH] nv50/disp: Fix modeset on G94
...gt; +{ > + struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev); > + u32 *push; > + > + push = evo_wait(mast, 8); Just needs to be 2, no? > + if (!push) > + return -ENOMEM; > + > + evo_mthd(push, 0x0828 + (nv_crtc->index * 0x400), 1); > + evo_data(push, usec); > + evo_kick(push, mast); > + > + return 0; > +} > + > +static int > nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool update) > { > struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev); >...
2014 Oct 31
0
[PATCH] nv50/disp: Fix modeset on G94
...e might need to fix nv50_crtc_mode_set() too; it seems to assume the second parameter in evo_wait() is bytes, not words. > > > > >> + if (!push) > >> + return -ENOMEM; > >> + > >> + evo_mthd(push, 0x0828 + (nv_crtc->index * 0x400), 1); > > >> + evo_data(push, usec); > >> + evo_kick(push, mast); > >> + > >> + return 0; > >> +} > >> + > >> +static int > >> nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool > update)...
2014 Sep 04
0
[PATCH 1/8] nv50/display: Set VBLANK time in modeset script
...st, 64); if (push) { if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) { + /* XXX: Safe underestimate, even "0" works */ + vblankus = (vactive - mode->vdisplay - 2) * hactive; + vblankus *= 1000; + vblankus /= mode->clock; + evo_mthd(push, 0x0804 + (nv_crtc->index * 0x400), 2); evo_data(push, 0x00800000 | mode->clock); evo_data(push, (ilace == 2) ? 2 : 0); - evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 6); + evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 8); evo_data(push, 0x00000000); evo_data(push, (vactive << 16) | hacti...
2014 Sep 12
0
[PATCH 2/6] nv50/display: Set VBLANK time in modeset script
...if (mode->flags & DRM_MODE_FLAG_INTERLACE) { vblan2e = vactive + vsynce + vbackp; vblan2s = vblan2e + (mode->vdisplay * vscan / ilace); @@ -1099,14 +1104,14 @@ nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode, evo_mthd(push, 0x0804 + (nv_crtc->index * 0x400), 2); evo_data(push, 0x00800000 | mode->clock); evo_data(push, (ilace == 2) ? 2 : 0); - evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 6); + evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 8); evo_data(push, 0x00000000); evo_data(push, (vactive << 16) | hacti...
2009 May 17
1
X Windows has quit working
...00000 from 0xdfffffff to 0xcfffffff (II) Active PCI resource ranges: [0] -1 0 0xe0007000 - 0xe0007fff (0x1000) MX[B] [1] -1 0 0xe0005000 - 0xe0005fff (0x1000) MX[B] [2] -1 0 0xe0003000 - 0xe0003fff (0x1000) MX[B] [3] -1 0 0xe0001000 - 0xe0001fff (0x1000) MX[B] [4] -1 0 0xc0101000 - 0xc01013ff (0x400) MX[B] [5] -1 0 0xc0100000 - 0xc0100fff (0x1000) MX[B] [6] -1 0 0xc0080800 - 0xc00808ff (0x100) MX[B] [7] -1 0 0xc0080c00 - 0xc0080dff (0x200) MX[B] [8] -1 0 0x50000000 - 0x500003ff (0x400) MX[B] [9] -1 0 0xc0080000 - 0xc00803ff (0x400) MX[B] [10] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]O [1...
2007 Apr 18
2
[PATCH 4/21] i386 Broken bios common
...S code use a segment hack to simulate real mode selector 0x40 (which points to the BIOS data area at 0x00400 in real mode). Several broken BIOSen use selector 0x40 as if they were running in real mode, which we make work by faking up selector 0x40 in the GDT to point to physical memory starting at 0x400. We limit the access to the remainder of this physical page using a byte granular limit. Rather than have this tricky code in multiple places, it makes sense to define it in one place, and the GDT makes a very convenient place for it. Use GDT entry 4 as the BAD_BIOS_CACHE segment. Signed-off-by...
2007 Apr 18
2
[PATCH 4/21] i386 Broken bios common
...S code use a segment hack to simulate real mode selector 0x40 (which points to the BIOS data area at 0x00400 in real mode). Several broken BIOSen use selector 0x40 as if they were running in real mode, which we make work by faking up selector 0x40 in the GDT to point to physical memory starting at 0x400. We limit the access to the remainder of this physical page using a byte granular limit. Rather than have this tricky code in multiple places, it makes sense to define it in one place, and the GDT makes a very convenient place for it. Use GDT entry 4 as the BAD_BIOS_CACHE segment. Signed-off-by...
2001 Mar 12
2
Joining a W2K domain
Hi all Can anyone tell me how to set up the w2k PDC to accept a samba unix server to join the domain. What do I need to perform on the w2k box to enable me to join to its domain. Regards
2007 Jun 11
24
multiple routing tables for internal router programs
Maybe a strange request, I''ll try to explain this as clearer as I can (forgive my bad english, please :-) ). I''m setting a linux box as a router. My router uses multiple routing tables, so I can address the traffic from specific ip addresses of my lan to distinct ISPs providers (specifying a different default gateway fo r each table), marking packets with iptables
2013 Aug 27
0
[PATCH 6/9] drm/nouveau: Convert event handler list to RCU
...ossible circular locking dependency detected ] 3.10.0-0+tip-xeon+lockdep #0+tip Not tainted ------------------------------------------------------- swapper/7/0 is trying to acquire lock: (&(&dev->vblank_time_lock)->rlock){-.....}, at: [<ffffffffa0086269>] drm_handle_vblank+0x69/0x400 [drm] but task is already holding lock: (&(&event->lock)->rlock){-.....}, at: [<ffffffffa0101dbd>] nouveau_event_trigger+0x4d/0xd0 [nouveau] which lock already depends on the new lock. the existing dependency chain (in reverse order) is: -> #1 (&(&event->lock)...
2013 Sep 03
1
Asterisk crash issue
...is please reply,(Asterisk version :1.8.9) [Sep 2 15:59:53] WARNING[24418] channel.c: Codec mismatch on channel SIP/18202-0002d011 setting write format to ilbc from ulaw native formats 0x4 (ulaw) [Sep 2 15:59:53] WARNING[24418] channel.c: Unable to find a codec translation path from 0x4 (ulaw) to 0x400 (ilbc) [Sep 2 15:59:53] WARNING[24418] chan_sip.c: Asked to transmit frame type ilbc, while native formats is 0x4 (ulaw) read/write = 0x4 (ulaw)/0x4 (ulaw) [Sep 2 15:59:53] WARNING[24418] channel.c: Codec mismatch on channel SIP/18202-0002d011 setting write format to ilbc from ulaw native formats...
2018 Mar 18
0
WARNING: CPU: 5 PID: 74 at ../drivers/gpu/drm/nouveau/include/nvkm/subdev/i2c.h:170 nvkm_dp_enable+0xbe/0x140
...kernel: CR2: 0000000001895000 CR3: 000000033800a004 CR4: 00000000001626e0 Mar 16 18:28:59 olga kernel: Call Trace: Mar 16 18:28:59 olga kernel: nvkm_dp_hpd+0x113/0x120 [nouveau] Mar 16 18:28:59 olga kernel: nvkm_notify_work+0x1e/0x70 [nouveau] Mar 16 18:28:59 olga kernel: process_one_work+0x1d1/0x400 Mar 16 18:28:59 olga kernel: worker_thread+0x2b/0x3d0 Mar 16 18:28:59 olga kernel: ? process_one_work+0x400/0x400 Mar 16 18:28:59 olga kernel: kthread+0x113/0x130 Mar 16 18:28:59 olga kernel: ? kthread_create_worker_on_cpu+0x50/0x50 Mar 16 18:28:59 olga kernel: ret_from_fork+0x3a/0x50 Mar 16 1...