index.html 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  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</h1>
  17. <p>
  18. These are development notes, for future use. For old (obselete) notes, see <a href="old.html">old.html</a>.
  19. </p>
  20. <p>
  21. Or go <a href="../tasks.html">back to main task list</a>.
  22. </p>
  23. </div>
  24. <div class="section">
  25. <h1>Table of contents</h1>
  26. <ul>
  27. <li><a href="#standard_test">Standard test</a></li>
  28. <li><a href="#t60_cpu_microcode">T60 cpu microcode</a></li>
  29. <li><a href="#i945_vram_size">i945 VRAM size</a></li>
  30. <li><a href="#lcd_i945_incompatibility">LCD panels on i945 - fix incompatible panels</a></li>
  31. <li><a href="#i945_vbt">i945 X60/T60 VBT implementation (experimental: testing)</a></li>
  32. <li><a href="#intelvbttool_results">IntelVbtTool results</a></li>
  33. <li><a href="#fallback_patches">Fallback patches for i945</a></li>
  34. </ul>
  35. </div>
  36. <div class="section">
  37. <h1 id="standard_test">standard test</h1>
  38. <p>
  39. These logs are usually obtained when testing changes related to graphics on i945 (X60 and T60).
  40. </p>
  41. <ul>
  42. <li>
  43. Make a copy of these files:
  44. <ul>
  45. <li>/var/log/dmesg</li>
  46. <li>/var/log/kern.log</li>
  47. <li>/var/log/Xorg.0.log</li>
  48. <li>/proc/ioports</li>
  49. <li>/proc/iomem</li>
  50. <li>/sys/class/drm/card0/error</li>
  51. </ul>
  52. </li>
  53. <li>
  54. Record these outputs:
  55. <ul>
  56. <li>sudo intel_reg_dumper</li>
  57. <li>uname -r</li>
  58. <li>lspci -vvvvnnnnxxxx</li>
  59. <li>sudo modprobe msr</li>
  60. <li>sudo inteltool -a</li>
  61. <li>sudo cbmem -c</li>
  62. </ul>
  63. </li>
  64. <li>
  65. Try some 3D games with latest kernel.
  66. </li>
  67. </ul>
  68. <p><a href="#pagetop">Back to top of page.</a></p>
  69. </div>
  70. <div class="section">
  71. <h1 id="t60_cpu_microcode">T60 cpu microcode</h1>
  72. <p>
  73. TODO: T60: find (for rare buggy CPUs that are unstable without microcode updates) if there is a workaround (patched kernel, special parameter, etc) So far, only 1 processor has been found to have issues. See microcode errata sheets http://download.intel.com/design/mobile/SPECUPDT/31407918.pdf and http://download.intel.com/design/mobile/SPECUPDT/30922214.pdf and then look at the debugging results collected in <a href="../t7200q">t7200q</a> directory (q means quirk).
  74. </p>
  75. <p>
  76. Every other T7200 tested so far has worked without microcode updates.
  77. </p>
  78. <p><a href="#pagetop">Back to top of page.</a></p>
  79. </div>
  80. <div class="section">
  81. <h1 id="i945_vram_size">i945 VRAM size</h1>
  82. <p>
  83. Apparently, only 8MB VRAM is available on i945 GPUs (though it could do 64MB):<br/>
  84. phcoder: No. Hardware default is 8 MiB. When I wanted to make it configurable, I saw that docs mention only one other alternative: 1MiB. Later isn't event enough for 1024x768 at 24bpp without any acceleration or double buffering. It's possible that there are undocumented values. Which options do you have in vendor BIOS?
  85. How to find out how much vram you have:<br/>
  86. phcoder: TOM - BSM<br/>
  87. phcoder: check what vendor BIOS offers as options<br/>
  88. vimuser: I thought it could do 64MB usually<br/>
  89. phcoder: not accorging to doc.<br/>
  90. phcoder: see mobile-945-express-chipset-datasheet page 93<br/>
  91. phcoder: see also src/northbridge/intel/i945/{early_init,northbridge,gma}.c<br/>
  92. vimuser: "011 = DVMT (UMA) mode, 8 MB of memory pre-allocated for<br/>
  93. vimuser: frame buffer."<br/>
  94. vimuser: "Others - reserved"<br/>
  95. phcoder: the easiest way is a loop at this position which tries different values and reads (and prints) BSM with them<br/>
  96. stefanct: vimuser: they suggest that you change the value and look how BSM reacts to that<br/>
  97. stefanct: as they pointed out earlier vram size = TOM - BSM<br/>
  98. stefanct: different values of GMS<br/>
  99. stefanct: phcoder: hm... this could be a hint. look at the text description of TOLUD at page 103<br/>
  100. stefanct: it mentions 64 MB in the text about BSM as well<br/>
  101. stefanct: table 18...<br/>
  102. phcoder: stefanct: I have a guess which value make is 64 but I will not tell to avoid skewing test results<br/>
  103. stefanct: phcoder: sure... i assumed you were not sure if it supports it at all. testing it properly is of course a good idea :)<br/>
  104. stefanct: test the various possible (but reserved) values of GMS and see what the resulting VRAM size is<br/>
  105. vimuser: so, TOM - BSM
  106. </p>
  107. <p>
  108. <a href="#pagetop">Back to top of page.</a>
  109. </p>
  110. </div>
  111. <div class="section">
  112. <h1 id="lcd_i945_incompatibility">LCD panels on i945 - fix incompatible panels</h1>
  113. <p>
  114. Fix T60 issues (see incompatible panels listed at <a href="../hcl/index.html#supported_t60_list">../hcl/index.html#supported_t60_list</a>).
  115. </p>
  116. <p>
  117. Run that tool (resources/utilities/i945gpu/intel-regs.py) as root on systems with the offending panels in:
  118. </p>
  119. <ul>
  120. <li>Coreboot (or libreboot, whatever) with VBIOS (disable native graphics also)</li>
  121. <li>(Factory BIOS also?)</li>
  122. </ul>
  123. <p>
  124. This shows values in devicetree.cb and src/northbridge/intel/i945/gma.c, the idea is that you run it on factory bios or vbios
  125. and that it will (might) show different values: then you try those in the native graphics (in libreboot).
  126. </p>
  127. <p>
  128. Other values/registers might also need to be added to the script for these tests.
  129. </p>
  130. <p>
  131. check if intel_bios_reader from intel-gpu-tools reports the same value (BIOS has a hardcoded value) for PWM modulation frequency.
  132. This file can read the VBIOS (64K dump).
  133. </p>
  134. <p>
  135. Check other tools in intel-gpu-tools aswell, compare outputs. Possibly add more information to intel-regs.py output (submit changes to mtjm).
  136. Do oprom trace / replay (<a href="http://www.coreboot.org/User:GNUtoo#How_to_get_rid_of_the_vbios_of_the_x60_.5BNew_Version.5D">http://www.coreboot.org/User:GNUtoo#How_to_get_rid_of_the_vbios_of_the_x60_.5BNew_Version.5D</a>)
  137. </p>
  138. <p>
  139. Study how EDID works and how gma.c handles it.
  140. </p>
  141. <p>
  142. Original getregs.py script can be found at <a href="http://hg.mtjm.eu/scripts/file/tip/intel-regs.py">http://hg.mtjm.eu/scripts/file/tip/intel-regs.py</a>
  143. written by Michał Masłowski.
  144. </p>
  145. <p>
  146. About fixing remaining LCD panels on 5345:<br/>
  147. 'polarity' is mentioned in coreboot log (cbmem -c). compare output (with working and non-working panel). (and see the other notes in docs/future/index.html)
  148. </p>
  149. <p>
  150. There was a theory that working panels are
  151. 6bpc (bits per colour) and nonworking are
  152. 8bpc, but all EDIDs that we have here are
  153. for 6bpc panels.
  154. </p>
  155. <p>We should compare coreboot logs
  156. (from <code>cbmem -c</code> from systems with
  157. working and nonworking panels.</p>
  158. <p>How to dump EDID:</p>
  159. <p>
  160. # <b>apt-get install i2c-tools</b><br/>
  161. # <b>modprobe i2c-dev</b><br/>
  162. Find out the correct ID to use:<br/>
  163. # <b>i2cdetect -l</b><br/>
  164. Example:<br/>
  165. # <b>i2cdump -y 2 0x50</b>
  166. </p>
  167. <p>
  168. Working panel: EDID dump from LG-Philips LP150E05-A2K1:
  169. </p>
  170. <pre>
  171. No size specified (using byte-data access)
  172. 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef
  173. 00: XX ff ff ff ff ff ff 00 30 ae 43 40 00 00 00 00 X.......0?C@....
  174. 10: 00 0f 01 03 80 1e 17 78 ea af 00 99 58 53 8c 2a .??????x??.?XS?*
  175. 20: 25 50 54 21 08 00 81 80 01 01 01 01 01 01 01 01 %PT!?.??????????
  176. 30: 01 01 01 01 01 01 30 2a 78 20 51 1a 10 40 30 70 ??????0*x Q??@0p
  177. 40: 13 00 31 e4 10 00 00 18 28 23 78 20 51 1a 10 40 ?.1??..?(#x Q??@
  178. 50: 30 70 13 00 31 e4 10 00 00 18 00 00 00 0f 00 90 0p?.1??..?...?.?
  179. 60: 43 32 90 43 28 14 06 00 32 0c 00 00 00 00 00 fe C2?C(??.2?.....?
  180. 70: 00 4c 50 31 35 30 45 30 35 2d 41 32 0a 20 00 9b .LP150E05-A2? .?
  181. 80: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  182. 90: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  183. a0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  184. b0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  185. c0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  186. d0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  187. e0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  188. f0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  189. </pre>
  190. <p>
  191. Working panel: EDID dump from Boe-Hydis HT14P12-100 FRU: 13N7061 (Inverter FRU: 41W1010)
  192. </p>
  193. <pre>
  194. 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef
  195. 00: 00 ff ff ff ff ff ff 00 30 ae 22 40 00 00 00 00 ........0?"@....
  196. 10: 00 0f 01 03 80 1c 15 78 ea af 40 95 56 4a 8f 25 .??????x??@?VJ?%
  197. 20: 20 50 54 21 08 00 81 80 01 01 01 01 01 01 01 01 PT!?.??????????
  198. 30: 01 01 01 01 01 01 30 2a 78 20 51 1a 10 40 30 70 ??????0*x Q??@0p
  199. 40: 13 00 1d d6 10 00 00 19 25 23 78 20 51 1a 10 40 ?.???..?%#x Q??@
  200. 50: 30 70 13 00 1d d6 10 00 00 19 00 00 00 0f 00 90 0p?.???..?...?.?
  201. 60: 43 32 90 43 28 0f 01 00 09 e5 00 00 00 00 00 fe C2?C(??.??.....?
  202. 70: 00 48 54 31 34 50 31 32 2d 31 30 30 0a 20 00 3f .HT14P12-100? .?
  203. 80: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  204. 90: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  205. a0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  206. b0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  207. c0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  208. d0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  209. e0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  210. f0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  211. </pre>
  212. <p>LTN141XA-L01: revert to libreboot git commit c943281 to see this</p>
  213. <p>
  214. <b>Non-</b>working panel: EDID dump from Samsung LTN150XG-L08:
  215. </p>
  216. <pre>
  217. 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef
  218. 00: 00 ff ff ff ff ff ff 00 30 ae 40 40 00 00 00 00 ........0?@@....
  219. 10: 00 0f 01 03 80 1f 17 78 ea 2d 05 97 57 51 8a 27 .??????x?-??WQ?'
  220. 20: 23 50 54 21 08 00 01 01 01 01 01 01 01 01 01 01 #PT!?.??????????
  221. 30: 01 01 01 01 01 01 64 19 00 40 41 00 26 30 18 88 ??????d?.@A.&amp;0??
  222. 40: 36 00 30 e4 10 00 00 19 28 15 00 40 41 00 26 30 6.0??..?(?.@A.&amp;0
  223. 50: 18 88 36 00 30 e4 10 00 00 19 00 00 00 0f 00 61 ??6.0??..?...?.a
  224. 60: 43 32 61 43 28 14 01 00 4c a3 58 47 00 00 00 fe C2aC(??.L?XG...?
  225. 70: 00 4c 54 4e 31 35 30 58 47 2d 4c 30 38 0a 00 6d .LTN150XG-L08?.m
  226. 80: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  227. 90: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  228. a0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  229. b0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  230. c0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  231. d0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  232. e0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  233. f0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ................
  234. </pre>
  235. <p><a href="#pagetop">Back to top of page.</a></p>
  236. </div>
  237. <div class="section">
  238. <h1 id="i945_vbt">i945 gfx: X60/T60 VBT implementation (experimental: testing)</h1>
  239. <p>
  240. intel_bios_dumper in intel-gpu-tools seems interesting.
  241. </p>
  242. <p>
  243. <b>Use 'drm.debug=0x06' kernel parameter when booting in grub!</b>
  244. </p>
  245. <p>
  246. Before each test run, boot a live USB and delete the old logs in /var/log (kernel log, xorg log, dmesg and so on).
  247. </p>
  248. <p>
  249. Load (from the ROM) the runningvga.bin for each LCD panel on each system; do not execute it, only load it! (coreboot will have to be modified).
  250. Rename the ROM appropriately, based on the system name and the panel name. coreboot_nativegfx_5868_plusrunningvga_t60_14_LTD141ECMB.rom,
  251. for instance. Keep a copy for later use.
  252. </p>
  253. <p>You are supposed to:</p>
  254. <ul>
  255. <li>enable native graphics in menuconfig</li>
  256. <li>include the self-modified VGA ROM (load, but not execute) - for reverse engineering the correct VBT tables.</li>
  257. </ul>
  258. <p>
  259. With each boot, make notes about what you see and get logs using the <a href="#standard_test">standard test</a>.
  260. You will need the files from <a href="#intelvbttool_results">#intelvbttool_results</a> for each system.
  261. </p>
  262. Results (# means untested):
  263. <ul>
  264. <li>
  265. <b>X60/X60s:</b>
  266. <ul>
  267. <li>TMD-Toshiba LTD121ECHB: #</li>
  268. <li>CMO N121X5-L06: #</li>
  269. <li>Samsung LTN121XJ-L07: #</li>
  270. <li>BOE-Hydis HT121X01-101: #</li>
  271. </ul>
  272. </li>
  273. <li>
  274. <b>X60T XGA:</b>
  275. <ul>
  276. <li>BOE-Hydis HV121X03-100: #</li>
  277. </ul>
  278. </li>
  279. <li>
  280. <b>X60T SXGA+:</b>
  281. <ul>
  282. <li>BOE-Hydis HV121P01-100: #</li>
  283. </ul>
  284. </li>
  285. <li>
  286. <b>T60 14&quot; XGA:</b>
  287. <ul>
  288. <li>Samsung LTN141XA-L01: #</li>
  289. <li>CMO N141XC: #</li>
  290. <li>BOE-Hydis HT14X14: #</li>
  291. <li>TMD-Toshiba LTD141ECMB: #</li>
  292. </ul>
  293. </li>
  294. <li>
  295. <b>T60 14&quot; SXGA+</b>
  296. <ul>
  297. <li>TMD-Toshiba LTD141EN9B: #</li>
  298. <li>Samsung LTN141P4-L02: #</li>
  299. <li>Boe-Hydis HT14P12: #</li>
  300. </ul>
  301. </li>
  302. <li>
  303. <b>T60 15&quot; XGA</b>
  304. <ul>
  305. <li>Samsung LTN150XG-L08: #</li>
  306. <li>LG-Philips LP150X09: #</li>
  307. <li>13N7068 (IDtech): #</li>
  308. <li>13N7069 (CMO): #</li>
  309. </ul>
  310. </li>
  311. <li>
  312. <b>T60 15&quot; SXGA+</b>
  313. <ul>
  314. <li>LG-Philips LP150E05-A2K1: #</li>
  315. <li>BOE-Hydis HV150P01-100: #</li>
  316. </ul>
  317. </li>
  318. <li>
  319. <b>T60 15&quot; UXGA</b>
  320. <ul>
  321. <li>BOE-Hydis HV150UX1-100: #</li>
  322. <li>IDTech N150U3-L01: #</li>
  323. <li>BOE-Hydis HV150UX1-102: #</li>
  324. </ul>
  325. </li>
  326. <li>
  327. <b>T50 15&quot; QXGA</b>
  328. <ul>
  329. <li>IDtech IAQX10N: #</li>
  330. <li>IDtech IAQX10S: #</li>
  331. </ul>
  332. </li>
  333. </ul>
  334. <p><a href="#pagetop">Back to top of page</a></p>
  335. </div>
  336. <div class="section">
  337. <h1 id="intelvbttool_results">intelvbttool test results (VGA ROM dumps)</h1>
  338. <p>
  339. The VBIOS on i945 (intel gpu) platforms is self-modifying; that is,
  340. its contents change when you run it. intelvbttool takes a dump of
  341. the currently running vbios, and parses it.
  342. </p>
  343. <p>
  344. The idea is that we can extract the VBT tables using this knowledge, on the X60, X60 Tablet and T60 (Intel GPU).
  345. </p>
  346. <p>
  347. Here is an example of how VBT was implemented on the ThinkPad X230:
  348. <a href="http://review.coreboot.org/#/c/5396">http://review.coreboot.org/#/c/5396</a>.
  349. </p>
  350. <p>
  351. You'll need to build a T60 ROM with SeaBIOS and the VGA ROM (for Intel GPU). An X60 ROM is also needed (same configuration, using the VGA ROM for X60).
  352. </p>
  353. <p>
  354. T60 has DVI on its dock, make sure that the dock is attached when getting this output.
  355. </p>
  356. <p>
  357. Get intelvbttool here: <a href="http://review.coreboot.org/#/c/5842">http://review.coreboot.org/#/c/5842</a> (util/intelvbttool).
  358. </p>
  359. <p>
  360. Now dump a copy of the running VGA BIOS:
  361. <b>$ sudo dd if=/dev/mem bs=64k of=runningvga.bin skip=12 count=1</b><br/>
  362. Then do (and record the output):<br/>
  363. <b>$ ./intelvbttool runningvga.bin &gt; intelvbttool_out</b>
  364. </p>
  365. <p>
  366. Backup both files (runningvga.bin and intelvbttool_out), renaming them to match the system and LCD panel used.
  367. <a href="../misc/index.html#get_edid_panelname">../misc/index.html#get_edid_panelname</a> will show you how to get the name (model) of the LCD panel used.
  368. </p>
  369. <h2>Test results (# means untested and all had docks, unless noted).</h2>
  370. <ul>
  371. <li>
  372. <b>X60/X60s:</b>
  373. <ul>
  374. <li>TMD-Toshiba LTD121ECHB: #</li>
  375. <li>CMO N121X5-L06: #</li>
  376. <li>Samsung LTN121XJ-L07: #</li>
  377. <li>BOE-Hydis HT121X01-101: #</li>
  378. </ul>
  379. </li>
  380. <li>
  381. <b>X60T XGA (1024x768):</b>
  382. <ul>
  383. <li>BOE-Hydis HV121X03-100: #</li>
  384. </ul>
  385. </li>
  386. <li>
  387. <b>X60T SXGA+ (1400x1050):</b>
  388. <ul>
  389. <li>BOE-Hydis HV121P01-100: #</li>
  390. </ul>
  391. </li>
  392. <li>
  393. <b>T60 14&quot; XGA (1024x768):</b>
  394. <ul>
  395. <li>Samsung LTN141XA-L01: #</li>
  396. <li>CMO N141XC: #</li>
  397. <li>BOE-Hydis HT14X14: #</li>
  398. <li>TMD-Toshiba LTD141ECMB: #</li>
  399. </ul>
  400. </li>
  401. <li>
  402. <b>T60 14&quot; SXGA+ (1400x1050):</b>
  403. <ul>
  404. <li>TMD-Toshiba LTD141EN9B: #</li>
  405. <li>Samsung LTN141P4-L02: #</li>
  406. <li>Boe-Hydis HT14P12: #</li>
  407. </ul>
  408. </li>
  409. <li>
  410. <b>T60 15&quot; XGA (1024x768):</b>
  411. <ul>
  412. <li>Samsung LTN150XG-L08: #</li>
  413. <li>LG-Philips LP150X09: #</li>
  414. <li>13N7068 (IDtech): #</li>
  415. <li>13N7069 (CMO): #</li>
  416. </ul>
  417. </li>
  418. <li>
  419. <b>T60 15&quot; SXGA+ (1400x1050):</b>
  420. <ul>
  421. <li>LG-Philips LP150E05-A2K1: #</li>
  422. <li>BOE-Hydis HV150P01-100: #</li>
  423. </ul>
  424. </li>
  425. <li>
  426. <b>T60 15&quot; UXGA (1600x1200):</b>
  427. <ul>
  428. <li>BOE-Hydis HV150UX1-100: #</li>
  429. <li>IDTech N150U3-L01: #</li>
  430. <li>BOE-Hydis HV150UX1-102: #</li>
  431. </ul>
  432. </li>
  433. <li>
  434. <b>T60 15&quot; QXGA (2048x1536):</b>
  435. <ul>
  436. <li>IDtech IAQX10N: #</li>
  437. <li>IDtech IAQX10S: #</li>
  438. </ul>
  439. </li>
  440. </ul>
  441. <p><a href="#pagetop">Back to top of page.</a></p>
  442. </div>
  443. <div class="section">
  444. <h1 id="fallback_patches">Fallback patches</h1>
  445. <ul>
  446. <li>
  447. Todo: test gnutoo's fallback patches: <a href="http://www.coreboot.org/Fallback_mechanism">http://www.coreboot.org/Fallback_mechanism</a>
  448. (some parts use systemd. adapt for upstart, which is what trisquel uses)<br/>
  449. see <a href="gnutoo_fallback_patch">this IRC log</a> (warning, not cleaned up)
  450. </li>
  451. </ul>
  452. <p><a href="#pagetop">Back to top of page.</a></p>
  453. </div>
  454. <div class="section">
  455. <h1 id="other">Other - unlisted (low priority)</h1>
  456. <ul>
  457. <li>
  458. PTE errors still exist on i945 with 6718 (which is merged). <a href="http://review.coreboot.org/#/c/6718/">http://review.coreboot.org/#/c/6718/</a>
  459. <ul>
  460. <li><a href="future/dumps/pte_x60_6718/dmesg">dmesg</a></li>
  461. <li><a href="future/dumps/pte_x60_6718/kern.log">kern.log</a></li>
  462. <li>This doesn't seem to cause any issues for general use.</li>
  463. </ul>
  464. </li>
  465. <li>
  466. Implement INT 10H support in i945 native graphics. (this will be a lot of work. SeaBIOS has code for some geode boards, to get a general idea).
  467. </li>
  468. <li>
  469. T60 15&quot; QXGA (2048x1536): fixed issue where GRUB wouldn't show any graphics. (Not many people have this panel)
  470. <ul>
  471. <li>It might be the same issue I ran into with Paul on the X60 (not enough memory being allocated) since the same code works on T60 SXGA+ and UXGA, where GRUB actually display graphics.</li>
  472. </ul>
  473. </li>
  474. </ul>
  475. <p><a href="#pagetop">Back to top of page.</a></p>
  476. </div>
  477. <div class="section">
  478. <p>
  479. Copyright &copy; 2014, 2015 Leah Rowe &lt;info@minifree.org&gt;<br/>
  480. Permission is granted to copy, distribute and/or modify this document
  481. under the terms of the GNU Free Documentation License, Version 1.3
  482. or any later version published by the Free Software Foundation;
  483. with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
  484. A copy of the license can be found at <a href="../gfdl-1.3.txt">../gfdl-1.3.txt</a>
  485. </p>
  486. <p>
  487. Updated versions of the license (when available) can be found at
  488. <a href="https://www.gnu.org/licenses/licenses.html">https://www.gnu.org/licenses/licenses.html</a>
  489. </p>
  490. <p>
  491. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
  492. EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
  493. AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
  494. ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
  495. IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
  496. WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  497. PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
  498. ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
  499. KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
  500. ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
  501. </p>
  502. <p>
  503. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
  504. TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
  505. NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
  506. INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
  507. COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
  508. USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
  509. ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
  510. DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
  511. IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
  512. </p>
  513. <p>
  514. The disclaimer of warranties and limitation of liability provided
  515. above shall be interpreted in a manner that, to the extent
  516. possible, most closely approximates an absolute disclaimer and
  517. waiver of all liability.
  518. </p>
  519. </div>
  520. </body>
  521. </html>