old.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>libreboot tutorials</title>
  6. <style type="text/css">
  7. @import url('../css/main.css');
  8. </style>
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <meta name="author" content="glugman">
  11. <meta name="description" content="tutorials for libreboot, the reboot library.">
  12. <meta name="robots" content="all">
  13. </head>
  14. <body>
  15. <div class="section">
  16. <h1 id="pagetop">Development notes (old/obsolete notes)</h1>
  17. <p>
  18. For current notes, see <a href="index.html">index.html</a>.
  19. </p>
  20. <p>
  21. These are old (obsolete) notes that mare kept because they might become useful again in the future.
  22. </p>
  23. </div>
  24. <div class="section">
  25. <h1>Table of contents</h1>
  26. <ul>
  27. <li><a href="#x60_native_notes">X60 native graphics initialization (backlight controls)</a></li>
  28. <li><a href="#t60_native_notes">T60 native graphics initialization (backlight controls)</a></li>
  29. <li><a href="#5320_kernel312fix">i945: 3D fix (based on 5927) for kernel 3.12+ on 5320</a></li>
  30. <li><a href="#x60_cb5927_testing">i945/x60: coreboot 5927 testing (3D fix for kernel 3.12+ on replay code)</a></li>
  31. </ul>
  32. </div>
  33. <div class="section">
  34. <h1 id="x60_native_notes">X60 native graphics initialization (with backlight controls)</h1>
  35. <p>
  36. <b>
  37. This is now obsolete. A better way was found (included in libreboot): <a href="http://review.coreboot.org/#/c/6731/">http://review.coreboot.org/#/c/6731/</a>
  38. </b>
  39. </p>
  40. <p>
  41. <b><i>Also check <a href="#5320_kernel312fix">#5320_kernel312fix</a> (to fix 3D on kernel 3.12/higher)</i></b>
  42. </p>
  43. <p>
  44. <b>The fix below was done on 5320/6 (from review.coreboot.org) but should work just fine on later versions of 5320.</b>
  45. </p>
  46. <p>
  47. Native gpu init + backlight controls! (Fn keys). Also confirmed on X60 Tablet (1024x768) and X60 Tablet (1400x1050)
  48. </p>
  49. <p>
  50. <b>Add backlight controls:</b> in <i>src/mainboard/lenovo/x60/devicetree.cb</i>, change <b>gpu_backlight</b> to <b>0x879F879E</b>
  51. </p>
  52. <p>
  53. That's all! <b>This has also been backported into libreboot 5th release (line 1233 in src/mainboard/lenovo/x60/i915io.c)</b>. GNUtoo (Denis Carikli)
  54. told me about the register <b>BLC_PWM_CTL</b> and that you could set it to control backlight. I read that address using devmem2 while running the VBIOS:<br/>
  55. <b># devmem2 0xe4361254 w</b>
  56. </p>
  57. <p>
  58. The change is also included in libreboot 6.
  59. </p>
  60. <p>
  61. When doing this, it gave back that value. The same trick was used to get backlight controls for T60 (see <a href="#t60_native_notes">#t60_native_notes</a>).
  62. </p>
  63. <h2>Further notes</h2>
  64. <p>
  65. Reading <b>0xe4361254</b> (address) in Lenovo BIOS always yields FFFFFFFF, even when writing to it (and writing to it doesn't affect brightness controls).
  66. 'mtjm' on IRC found that the buttons (Fn keys) control /sys/class/backlight/acpi_video0 which has no affect on 61254 (BLC_PWM_CTL). This person says
  67. intel_backlight has different values and uses the register. devmem2 works, needs checking <b>lspci -vv</b> for where the memory is mapped,
  68. which is different than on coreboot; mtjm found that it was 0xec061254 on his system (X60 Tablet), and the register value is different too.
  69. <b>This is relevant, because we still don't know how backlight controls are actually handled. We got it working by accident. We need to know more.</b>.
  70. </p>
  71. <p>
  72. Intel-gpu-tools may prove useful for further debugging: <a href="http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/">http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/</a>
  73. </p>
  74. <p>
  75. mtjm says 0xe4300000 is an MMIO region of the gpu (lspci -vv shows it), 0x61254 (BLC_PWM_CTL) is a documented register. Searching the kernel driver for backlight
  76. shows that in intel_panel.c this register is used (there is an XXX comment about finding the right value, where recent kernels get it from.
  77. </p>
  78. <p>
  79. What we want to do is calculate a good value, instead of setting it in devicetree.cb. mtjm says about backlight physics:
  80. it has a light source , uses pulse width modulation (PWM) to turn it on/off, dimming is done by spending less time on.
  81. <b>Note: this may not be correct; this person says that their understanding is based on how the Lenote yeeloong works</b>.
  82. </p>
  83. <p>
  84. mtjm goes on to say, that the register specifies the frequency used for PWM in its depending on the GPU core frequency, so it
  85. might be possible to calculate it without hardcoded laptop-specific values. Therefore, I am supposed to find out the 'display core frequency'
  86. (mtjm says there might be a register for it; also, it might be in 5320 or the replay code) and the PWM modulation frequency.
  87. https://en.wikipedia.org/wiki/Backlight#Flicker_due_to_backlight_dimming
  88. </p>
  89. <p>
  90. phcoder (Vladimir Serbinenko) who is author of 5320 (review.coreboot.org) talks about 'duty cycle limit' and 'flickering frequency'.
  91. </p>
  92. <p><a href="#pagetop">Back to top of page</a></p>
  93. </div>
  94. <div class="section">
  95. <h1 id="t60_native_notes">T60 native graphics initialization (with backlight controls)</h1>
  96. <p>
  97. <b>
  98. This is now obsolete. A better way was found (included in libreboot): <a href="http://review.coreboot.org/#/c/6731/">http://review.coreboot.org/#/c/6731/</a>
  99. </b>
  100. </p>
  101. <p>
  102. <b><i>Also check <a href="#5320_kernel312fix">#5320_kernel312fix</a> (to fix 3D on kernel 3.12/higher)</i></b>
  103. </p>
  104. <p>
  105. <b>The fix below was done on an earlier version of 5345 changeset (review.coreboot.org), but should work on the current version. it is included in libreboot 6</b>
  106. </p>
  107. <p>
  108. <b>Add backlight controls:</b> in <i>src/mainboard/lenovo/t60/devicetree.cb</i>, change <b>gpu_backlight</b> to <b>0x58BF58BE</b>
  109. </p>
  110. <p>
  111. Hold on! Check <a href="../misc/index.html#get_edid_panelname">../misc/index.html#get_edid_panelname</a> to know what LCD panel you have. This is important for the next step!
  112. </p>
  113. <h2>Supported panels</h2>
  114. <p>
  115. <a href="../hcl/index.html#supported_t60_list">../hcl/index.html#supported_t60_list</a>.
  116. </p>
  117. <p>
  118. See <a href="index.html#lcd_i945_incompatibility">index.html#lcd_i945_incompatibility</a>.
  119. </p>
  120. <p><a href="#pagetop">Back to top of page</a></p>
  121. </div>
  122. <div class="section">
  123. <h1 id="5320_kernel312fix">i945: 3D fix (based on 5927) for kernel 3.12+ on 5320</h1>
  124. <p>
  125. <b>
  126. This is now obsolete. Merged in coreboot: <a href="http://review.coreboot.org/#/c/5927/">http://review.coreboot.org/#/c/5927/</a>
  127. </b>
  128. </p>
  129. <p><b>This needs to be rewritten (or better organized, or deleted?)</b>. This is also now included in libreboot 6 (using the proper way, not the 7c0000 method which was a hack)</p>
  130. <p>
  131. <b>This was done on 5320/6 so far. The fix below is for 5320/6 which is now obsolete. This needs to be re-done for the latest version
  132. of 5320. The fix below is (in practise) only for reference, therefore.</b>
  133. </p>
  134. <p>
  135. See <a href="#x60_cb5927_testing">#x60_cb5927_testing</a> for the original (and current) fix, for the replay code. Now we want
  136. to implement that on top of <a href="http://review.coreboot.org/#/c/5320">http://review.coreboot.org/#/c/5320</a>
  137. which is the current code for native graphics initialization on i945.
  138. </p>
  139. <p>
  140. src/northbridge/intel/i945/gma.c (using the 7c0000 hack) on 5320: <a href="dumps/5320_7c0000_gma.c">5320_7c0000_gma.c</a> (rename it to gma.c,
  141. replacing the current one).
  142. </p>
  143. <p>
  144. The above is a hack (as is the original). A better (more correct) method is implemented in later versions of 5927, so
  145. that should also be adapted for 5320. For now, you can use the above fix.
  146. </p>
  147. <p>
  148. The correct way to do it is to set gtt address to (end of stolen memory - gtt size), which is what later versions of 5927 do (successfully).
  149. </p>
  150. <p>
  151. Here is some debugging output using intel_gpu_tools v1.2-1 (from trisquel repositories) using tool "intel_gtt":
  152. </p>
  153. <ul>
  154. <li>
  155. Trisquel 6. kernel 3.14.4:
  156. <ul>
  157. <li>with libreboot 5th release (using the 7c0000 gtt hack from 5927/3): <a href="http://paste.debian.net/104306">http://paste.debian.net/104306</a></li>
  158. <li>with coreboot+vgarom: <a href="http://paste.debian.net/104309">http://paste.debian.net/104309</a></li>
  159. </ul>
  160. </li>
  161. <li>
  162. Trisquel 6. kernel 3.2.0-60 (from Trisquel repositories):
  163. <ul>
  164. <li>with coreboot (no vbios or native init): <a href="http://paste.debian.net/104341">http://paste.debian.net/104341</a></li>
  165. </ul>
  166. </li>
  167. </ul>
  168. <p><a href="#pagetop">Back to top of page</a></p>
  169. </div>
  170. <div class="section">
  171. <h1 id="x60_cb5927_testing">i945/X60: Coreboot 5927 testing (3D fix for kernel 3.12+ on replay code)</h1>
  172. <p>
  173. <b>
  174. This is now obsolete. Merged in coreboot: <a href="http://review.coreboot.org/#/c/5927/">http://review.coreboot.org/#/c/5927/</a>
  175. </b>
  176. </p>
  177. <p><b>The latest version as-is (5927/11) has not been tested by me yet. Always boot with 'drm.debug=0x06' kernel parameter when testing this.</b></p>
  178. <p>
  179. This is the fix for 3D on kernel 3.12 and higher on i945 (ThinkPad X60 in this case). This is for the replay code.
  180. Libreboot 5th release has a version of this backported already (based on 5927/3 using the '7c0000' hack).
  181. </p>
  182. <p>
  183. <b>
  184. The replay code is obsolete (see 5320 changeset on review.coreboot.org for better version
  185. which supports more systems/screens, and then 5345 for T60). Information here for reference since that is where the fix was first applied.
  186. </b>
  187. </p>
  188. <p>
  189. Read the information on <a href="http://review.coreboot.org/#/c/5927/">http://review.coreboot.org/#/c/5927/</a>.
  190. </p>
  191. <p>
  192. For historical purposes, here is a collection of IRC logs that once existed on this page, related to the issue:
  193. <a href="dumps/kernel312_irc">kernel312_irc</a>.
  194. </p>
  195. <p>
  196. PGETBL_CTL differs between VBIOS (-) and native graphics init (+).<br/>
  197. - PGETBL_CTL: 0x3ffc0001<br/>
  198. + PGETBL_CTL: 0x3f800001
  199. </p>
  200. <p>GTT (graphics translation table) size is PGETBL_save, max 256 KiB. BSM (Base of Stolen Memory) is given by the bios.</p>
  201. <ul>
  202. <li>5927/7: <a href="dumps/5927_7.tar.gz">5927_7.tar.gz</a> (GRUB graphics are correct now, and 3D still works)</li>
  203. <li>5927/6: <a href="dumps/5927_6.tar.gz">5927_6.tar.gz</a> (GRUB graphics still corrupt, 3D/everything still works after GRUB)</li>
  204. <li>5927/5: <a href="dumps/5927_5.tar.gz">5927_5.tar.gz</a> (GRUB graphics corrupt, 3D/everything still works after GRUB)</li>
  205. <li>5927/3: <a href="dumps/5927_3.tar.gz">5927_3.tar.gz</a> (3D still works! kernel 3.14.4) - the '7c0000' hack</li>
  206. <li>5927/2: <a href="dumps/5927_2.tar.gz">5927_2.tar.gz</a> (3D works! kernel 3.14.4) - the '7c0000' hack</li>
  207. <li>
  208. 5927/1 (didn't fix the 3D issue):
  209. <ul>
  210. <li><a href="dumps/5927_cbmemc">cbmem -c</a></li>
  211. <li><a href="dumps/5927_crashdump">/sys/class/drm/card0/error</a></li>
  212. <li><a href="dumps/5927_config">.config</a></li>
  213. </ul>
  214. </li>
  215. </ul>
  216. <p><a href="#pagetop">Back to top of page</a></p>
  217. </div>
  218. <div class="section">
  219. <p>
  220. Copyright &copy; 2014, 2015 Leah Rowe &lt;info@minifree.org&gt;<br/>
  221. Permission is granted to copy, distribute and/or modify this document
  222. under the terms of the Creative Commons Attribution-ShareAlike 4.0 International license
  223. or any later version published by Creative Commons;
  224. A copy of the license can be found at <a href="../cc-by-sa-4.0.txt">../cc-by-sa-4.0.txt</a>
  225. </p>
  226. <p>
  227. Updated versions of the license (when available) can be found at
  228. <a href="https://creativecommons.org/licenses/by-sa/4.0/legalcode">https://creativecommons.org/licenses/by-sa/4.0/legalcode</a>
  229. </p>
  230. <p>
  231. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
  232. EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
  233. AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
  234. ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
  235. IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
  236. WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  237. PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
  238. ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
  239. KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
  240. ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
  241. </p>
  242. <p>
  243. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
  244. TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
  245. NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
  246. INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
  247. COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
  248. USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
  249. ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
  250. DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
  251. IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
  252. </p>
  253. <p>
  254. The disclaimer of warranties and limitation of liability provided
  255. above shall be interpreted in a manner that, to the extent
  256. possible, most closely approximates an absolute disclaimer and
  257. waiver of all liability.
  258. </p>
  259. </div>
  260. </body>
  261. </html>