summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-09New LICENSE.md file, to apply to the entire repositoryHEADmasterJohn Hubbard
Adds a top-level LICENSE.md file, which provides an MIT copyright for the entire repository. Reviewed by: Maneet Singh
2019-07-30New dev_top and dev_fault ref manuals, dev_fifo updatesJohn Hubbard
1. Added an important chunk of comments to dev_fifo.ref.txt, thanks to work by Prateek Srivastaval, as requested by Ben Skeggs. 2. Two new manuals are now published: dev_top.ref.txt dev_fault.ref.txt 3. Minor updates to pri_mmu_hub.ref.txt Reviewed by: Maneet Singh
2019-07-15New MMU reference manuals, and updates to other manualsJohn Hubbard
1. Added 5 new MMU reference manuals: dev_mmu_fault.ref.txt pri_mmu_both.ref.txt pri_mmu_gpc.ref.txt pri_mmu_hshub.ref.txt pri_mmu_hub.ref.txt 2. Renamed dev_display.ref.txt --> dev_display_withoffset.ref.txt . 3. Updates and a few documentation additions and clarifications to these manuals: dev_bus.ref.txt dev_fifo.ref.txt dev_master.ref.txt dev_pbdma.ref.txt dev_ram.ref.txt dev_timer.ref.txt dev_usermode.ref.txt Reviewed by:
2019-06-18Move QMD files into classes/compute directoryJohn Hubbard
The QMD files really are just class files. Reviewed by: Maneet Singh
2019-06-14New class files directory, delete old locationsJohn Hubbard
As decided recently in an OpenSource-Approval discussion, we want the directory structure for GPU classes to have the following structure: classes/<category>/<files> This CL does that. It moves these directories: Compute-Class-Methods/* Display-Class-Methods/* to: classes/compute/ classes/display/ Regenerate index.html files to match (important for the "github pages" site, at https://nvidia.github.io/open-gpu-doc/ . Reviewed by: Maneet Singh
2019-06-13New ref manuals directory, delete old locationsJohn Hubbard
As decided in a recent OpenSource-Approval meeting, we want the directory structure for reference manuals here to be fairly close to the way they are organized internal to NVIDIA. This CL therefore does the following: Rename from: Host-Fifo/volta/gv100/* Display-Ref-Manuals/gv100/* to: manuals/volta/gv100/* Regenerate index.html files to match (important for the "github pages" site, at https://nvidia.github.io/open-gpu-doc/ . Reviewed by: Maneet Singh
2019-06-12open-gpu-doc: github pages is live, point to it via README.mdJohn Hubbard
The published site is here: https://github.com/NVIDIA/open-gpu-doc Now that the "github pages" view of that site is available, here: https://nvidia.github.io/open-gpu-doc/ , let's point to it via the README.md. Reviewed by: Maneet Singh
2019-06-12Set theme jekyll-theme-hackerStephen Warren
2019-06-12Set theme jekyll-theme-hackerStephen Warren
2019-06-10Add index.html to each directoryJohn Hubbard
This is in preparation for publishing the site, via github pages. The index.html files were generated by invoking: //sw/pvt/jhubbard/scripts/gen-index-htmls.sh#3 ...from the top-level directory. Reviewed by: aritger, rmorell
2019-04-24DCB updates: DCB 4.x specificationJohn Hubbard
This comes from: http://download.nvidia.com/open-gpu-doc/DCB/2/ Reviewed by: Andy Ritger
2019-04-24Display-Class-Methods, updated and augmentedJohn Hubbard
These come from: http://download.nvidia.com/open-gpu-doc/Display-Class-Methods/2/ Reviewed by: Andy Ritger
2019-04-24Open doc files, version 1 of everythingJohn Hubbard
This copies over files from: http://download.nvidia.com/open-gpu-doc/ with a few overrides from local, as-yet-to-be-published files (generally just a file suffix and licensing tweak). Here's the script that was used to create this commit: wget -r http://download.nvidia.com/open-gpu-doc/ mv download.nvidia.com/open-gpu-doc/* . rm -rf download.nvidia.com/ find . -name index.html | xargs rm -f find . -name Thumbs.db | xargs rm -f find . -type f | grep -v \.git | xargs file | grep CRLF | cut -f1 -d: | xargs dos2unix for f in `find . -name 1 | cut -f2 -d "/"`; do pushd $f; mv 1/* .; popd; done find . -name 1 | xargs rmdir rm -rf Host-Fifo/volta/gv100 mkdir -p Host-Fifo/volta/gv100 cp $sw/docs/Public_Devel_Docs/release/Host-Fifo/volta/gv100/* Host-Fifo/volta/gv100/ rm Display-Ref-Manuals/gv100/dev_display.ref cp $sw/docs/Public_Devel_Docs/release/Display-Ref-Manuals/1/gv100/dev_display.ref \ Display-Ref-Manuals/gv100/dev_display.ref.txt git add . git mv DCB/DCB-4.0-Specification.html DCB/DCB-4.x-Specification.html git reset HEAD Display-Class-Methods/2 git reset HEAD DCB/2 git commit Reviewed-by: Andy Ritger
2019-04-03Initial open-gpu-doc commit: README.mdJohn Hubbard