Broadwater/Bearlake graphics PRM

This commit is contained in:
Andres Gomez 2015-11-10 23:50:18 +02:00
commit f50f2e8062
6 changed files with 12251 additions and 0 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
SHELL=/bin/bash
default:text
text:
for i in `find . -name \*.pdf`; do pdftotext $${i}; done
clean:
for i in `find . -name \*.txt`; do rm $${i}; done
mrproper: clean
for i in `find . -name \*.txt`; do rm $${i}; done

34
README.md Normal file
View File

@ -0,0 +1,34 @@
INTEL© OPEN SOURCE GRAPHICS PROGRAMMER'S REFERENCE MANUAL (PRM)
=========================================================================
These are the
[CC-BY-ND](http://creativecommons.org/licenses/by-nd/3.0/us/) PRMs for
Intel's GPUs downloaded from:
<https://01.org/linuxgraphics/documentation/hardware-specification-prms>
![CC-BY-ND](https://licensebuttons.net/l/by-nd/3.0/us/88x31.png)
Structure
---------
The documents are divided in directories by
[chipsets](https://en.wikipedia.org/wiki/List_of_Intel_graphics_processing_units):
* **gen4**
* [INTEL&copy; 965 EXPRESS CHIPSET FAMILY AND INTEL&copy; G35 EXPRESS CHIPSET GRAPHICS CONTROLLER](./000_g35) (BROADWATER/BEARLAKE GRAPHICS)
Plain Text
----------
As these documents are distributed with a _non derivative_ license, we
only provide a script that can be used to transform the PDFs into
plain TXT.
`$ make text
`
Observations
------------
_pdfgrep_ is also a great way of looking for specific strings into
this massive amount of documentation.