Menu

Tree [c8d927] master /
 History

HTTPS access


File Date Author Commit
 easm 2013-03-14 Marcin Kościelnicki Marcin Kościelnicki [0ab218] Fix license text everywhere.
 envydis 2013-07-16 Marcin Kościelnicki Marcin Kościelnicki [6c3489] Merge branch 'master' of ssh://git.code.sf.net/...
 hwdocs 2013-07-16 Marcin Kościelnicki Marcin Kościelnicki [6c3489] Merge branch 'master' of ssh://git.code.sf.net/...
 hwtest 2013-07-16 Marcin Kościelnicki Marcin Kościelnicki [6c3489] Merge branch 'master' of ssh://git.code.sf.net/...
 include 2013-07-16 Marcin Kościelnicki Marcin Kościelnicki [6c3489] Merge branch 'master' of ssh://git.code.sf.net/...
 nva 2013-07-16 Marcin Kościelnicki Marcin Kościelnicki [6c3489] Merge branch 'master' of ssh://git.code.sf.net/...
 nvbios 2013-03-14 Marcin Kościelnicki Marcin Kościelnicki [0ab218] Fix license text everywhere.
 nvhw 2013-03-14 Marcin Kościelnicki Marcin Kościelnicki [0ab218] Fix license text everywhere.
 ptxgen 2012-10-16 Witold Waligora Witold Waligora [42d618] GK110: shfl, prefetch, prmt, membar, bar arrive
 rnn 2013-07-16 Marcin Kościelnicki Marcin Kościelnicki [6c3489] Merge branch 'master' of ssh://git.code.sf.net/...
 rnndb 2013-07-23 Marcin Kościelnicki Marcin Kościelnicki [c8d927] Merge branch 'master' of ssh://git.code.sf.net/...
 util 2013-03-14 Marcin Kościelnicki Marcin Kościelnicki [0ab218] Fix license text everywhere.
 vdpow 2013-01-16 Maarten Lankhorst Maarten Lankhorst [ab4b04] Merge branch 'patch-1' of https://github.com/To...
 vstream 2013-03-14 Marcin Kościelnicki Marcin Kościelnicki [0ab218] Fix license text everywhere.
 .gitignore 2012-07-29 Marcin Kościelnicki Marcin Kościelnicki [7a9b9c] Evilly merge branch 'master' of ../envytools in...
 CMakeLists.txt 2012-10-08 Marcin Kościelnicki Marcin Kościelnicki [7ce711] hwtest/nv*_tile: Merge nv10 and nv20 versions, ...
 README 2013-07-23 Marcin Kościelnicki Marcin Kościelnicki [c8d927] Merge branch 'master' of ssh://git.code.sf.net/...
 bftool 2012-10-12 Witold Waligora Witold Waligora [99d606] GK110: WIP atom-related decoding bug, bftool: a...

Read Me

envytools - Tools for people envious of nvidia's blob driver.

The canonical repo is at: http://github.com/envytools/envytools/. Pushing anywhere else
will result in a de-facto fork!

= Contents =

Subdirectories:

 - hwdocs: plain-text documentation of the GPUs
 - envydis: Disassembler and assembler for various ISAs found on nvidia GPUs
 - rnn: Tools and libraries for the rules-ng-ng XML register database format
 - rnndb: rnn database of nvidia MMIO registers, FIFO methods, and memory
   structures.
 - nvbios: Tools to decode the card description structures found in nvidia
   VBIOS
 - nva: Tools to directly access the GPU registers
 - vstream: Tools to decode and encode raw video bitstreams
 - vdpow: A tool aiding in VP3 reverse engineering
 - easm: Utility code dealing with assembly language parsing & printing.
 - util: Misc utility code shared between envytools modules


= Building, installing =

Dependencies: cmake, libxml2, flex, bison, pkg-config
Optional dependencies needed by nva: libpciaccess
Optional dependencies needed by vdpow: vdpau, libx11

If your distribution has -dev or -devel packages, you'll also need ones
corresponding to the dependencies above.

On ubuntu it can be done like this:

apt-get install cmake flex libpciaccess-dev bison libx11-dev libxext-dev libxml2-dev libvdpau-dev

To build, use

 $ cmake .
 $ make

To install [which is optional], use

 $ make install

If you want to install to a non-default directory, you'll also need to pass
it as an option to cmake before building, eg.:

 $ cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr/local .