Editing PS3 GPU Driver
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
[[Category: | [[Category:Linux]] | ||
=Introduction= | =Introduction= | ||
Line 46: | Line 46: | ||
* It shows you how to use RSX FIFO and send commands. | * It shows you how to use RSX FIFO and send commands. | ||
* It shows you how to use RSX DMA engine for memory copying (used e.g. in X11 driver all the time). | * It shows you how to use RSX DMA engine for memory copying (used e.g. in X11 driver all the time). | ||
* http://gitorious.ps3dev.net/ps3freebsd/ps3gpu_test | * http://gitorious.ps3dev.net/ps3freebsd/ps3gpu_test | ||
Line 56: | Line 54: | ||
make | make | ||
sudo ./ | sudo ./ps3gpu_test | ||
context id 0 | context id 0 | ||
control handle 0x10000000000 size 4096 | control handle 0x10000000000 size 4096 | ||
Line 71: | Line 69: | ||
vidcontrol < /dev/ttyv0 80x25 | vidcontrol < /dev/ttyv0 80x25 | ||
</pre> | </pre> | ||
==Screenshots== | ==Screenshots== | ||
Line 83: | Line 76: | ||
* The square on the right was copied from the source by RSX DMA using negative pitches, from bottom to top. | * The square on the right was copied from the source by RSX DMA using negative pitches, from bottom to top. | ||
* Unfortunately it's not possible to make a screenshot of hardware cursor by dumping video ram content because hardware cursor is overlayed. | * Unfortunately it's not possible to make a screenshot of hardware cursor by dumping video ram content because hardware cursor is overlayed. | ||
[[Image:Freebsd_ps3gpu_test.jpg|300px|Image: 300 pixels]] | [[Image:Freebsd_ps3gpu_test.jpg|300px|Image: 300 pixels]] | ||
[[Image:Freebsd_ps3gpu_test_triangle.jpg|300px|Image: 300 pixels]] | [[Image:Freebsd_ps3gpu_test_triangle.jpg|300px|Image: 300 pixels]] | ||
=X11 Driver= | =X11 Driver= | ||
Line 250: | Line 231: | ||
* http://www.freebsd.org/cgi/cvsweb.cgi | * http://www.freebsd.org/cgi/cvsweb.cgi | ||
* http://www.virtuousgeek.org/exa-driver.txt | * http://www.virtuousgeek.org/exa-driver.txt | ||