search for: tpid

Displaying 7 results from an estimated 7 matches for "tpid".

Did you mean: pid
2014 Jan 17
0
[PATCH] drm/nv50/graph: update list of mp errors, make it a bitfield
..., "STACK_MISMATCH" }, + { 0x04, "QUADON_ACTIVE" }, + { 0x08, "TIMEOUT" }, + { 0x10, "INVALID_OPCODE" }, + { 0x20, "PM_OVERFLOW" }, + { 0x40, "BREAKPOINT" }, {} }; @@ -474,8 +476,8 @@ nv50_priv_mp_trap(struct nv50_graph_priv *priv, int tpid, int display) oplow = nv_rd32(priv, addr + 0x70); ophigh = nv_rd32(priv, addr + 0x74); nv_error(priv, "TRAP_MP_EXEC - " - "TP %d MP %d: ", tpid, i); - nouveau_enum_print(nv50_mp_exec_error_names, status); + "TP %d MP %d:", tpid, i); + nouveau_bi...
2000 Aug 21
0
Rewritten script /etc/init.d/tinc
...orking configuration. . /etc/sysconfig/network # Check that networking is up. [ "x${NETWORKING}" = "xno" ] && exit 0 ############################################################################# # configuration & sanity checks TINCD=/usr/sbin/tincd TCONF=/etc/tinc TPIDS=/var/run #DEBUG=-dddd NETSFILE=$TCONF/nets.boot # Check the daemon if [ ! -x $TINCD ]; then echo "**tinc: $TINCD does not exist or is not executable!" >&2 exit fi ############## # Gotta go? ############## # Check if ifconfig is installed if [ ! -f /sbin/ifconfig ]; then...
2010 Mar 01
0
[PATCH 2/2 V2] drm/nv50: Improve PGRAPH interrupt handling.
...nouveau_enum_names nv50_mp_exec_error_names[] = +{ + { 3, "STACK_UNDERFLOW" }, + { 4, "QUADON_ACTIVE" }, + { 8, "TIMEOUT" }, + { 0x10, "INVALID_OPCODE" }, + { 0x40, "BREAKPOINT" }, +}; + +static void +nv50_pgraph_mp_trap(struct drm_device *dev, int tpid, int display) +{ + struct drm_nouveau_private *dev_priv = dev->dev_private; + uint32_t units = nv_rd32(dev, 0x1540); + uint32_t addr, mp10, status, pc, oplow, ophigh; + int i; + int mps = 0; + for (i = 0; i < 4; i++) { + if (!(units & 1 << (i+24))) + continue; + if (dev_priv-&gt...
2010 Feb 28
1
[PATCH 1/2] drm/nv50: Make ctxprog wait until interrupt handler is done.
This will fix races between generated ctxprogs and interrupt handler. Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net> --- drivers/gpu/drm/nouveau/nv50_grctx.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nv50_grctx.c b/drivers/gpu/drm/nouveau/nv50_grctx.c index d105fcd..9f909ab 100644 ---
2014 Jan 16
2
[PATCH] drm/nv50/graph: add more trap names to print on error
....name, e14, e10); + ustatus &= ~nv50_graph_trap_prop[i].mask; + } + nv_error(priv, "TRAP_PROP - TP %d - e0c: %08x, e18: %08x, e1c: %08x, e20: %08x, e24: %08x\n", + tp, e0c, e18, e1c, e20, e24); + return ustatus; +} + static void nv50_priv_mp_trap(struct nv50_graph_priv *priv, int tpid, int display) { @@ -469,58 +526,10 @@ nv50_priv_tp_trap(struct nv50_graph_priv *priv, int type, u32 ustatus_old, ustatus &= ~0x04030000; } break; - case 8: /* TPDMA error */ - { - u32 e0c = nv_rd32(priv, ustatus_addr + 4); - u32 e10 = nv_rd32(priv, ustatus_addr + 8); - u3...
2003 Dec 22
0
(no subject)
compiling ssh on HPUX get the following. any help or pointers please $ make (cd openbsd-compat && make) /usr/local/bin/ar rv libopenbsd-compat.a bsd-arc4random.o bsd-cray.o bsd -cygwin_util.o bsd-getpeereid.o bsd-misc.o bsd-nextstep.o bsd-snprintf.o bsd-wai tpid.o fake-rfc2553.o xmmap.o xcrypt.o base64.o basename.o bindresvport.o daemon .o dirname.o getcwd.o getgrouplist.o getopt.o getrrsetbyname.o glob.o inet_aton. o inet_ntoa.o inet_ntop.o mktemp.o readpassphrase.o realpath.o rresvport.o seten v.o setproctitle.o sigact.o strlcat.o strlcpy.o strmode.o...
2014 Jan 16
0
[PATCH] drm/nv50/graph: add more trap names to print on error
...+ } > + nv_error(priv, "TRAP_PROP - TP %d - e0c: %08x, e18: %08x, e1c: %08x, e20: %08x, e24: %08x\n", > + tp, e0c, e18, e1c, e20, e24); > + return ustatus; > +} > + > static void > nv50_priv_mp_trap(struct nv50_graph_priv *priv, int tpid, int display) > { > @@ -469,58 +526,10 @@ nv50_priv_tp_trap(struct nv50_graph_priv *priv, int type, u32 ustatus_old, > ustatus &= ~0x04030000; > } > break; > - case 8: /* TPDMA error...