diff options
Diffstat (limited to 'docs/future')
-rw-r--r-- | docs/future/index.md | 19 | ||||
-rw-r--r-- | docs/future/old.md | 6 |
2 files changed, 15 insertions, 10 deletions
diff --git a/docs/future/index.md b/docs/future/index.md index 7b5d2659..aa5b0da9 100644 --- a/docs/future/index.md +++ b/docs/future/index.md @@ -15,6 +15,7 @@ Table of contents - [i945 VRAM size](#i945_vram_size) - [LCD panels on i945 - fix incompatible panels](#lcd_i945_incompatibility) + - [i945 X60/T60 VBT implementation (experimental: testing)](#i945_vbt) - [IntelVbtTool results](#intelvbttool_results) - [Fallback patches for i945](#fallback_patches) @@ -158,12 +159,13 @@ working and nonworking panels. How to dump EDID: -\# **apt-get install i2c-tools**\ -\# **modprobe i2c-dev**\ -Find out the correct ID to use:\ -\# **i2cdetect -l**\ -Example:\ -\# **i2cdump -y 2 0x50** + # apt-get install i2c-tools + # modprobe i2c-dev +Find out the correct ID to use: + # i2cdetect -l\ +Example: + + # i2cdump -y 2 0x50 Working panel: EDID dump from LG-Philips LP150E05-A2K1: @@ -324,8 +326,9 @@ Get intelvbttool here: <http://review.coreboot.org/#/c/5842> Now dump a copy of the running VGA BIOS: **\$ sudo dd if=/dev/mem bs=64k of=runningvga.bin skip=12 count=1**\ -Then do (and record the output):\ -**\$ ./intelvbttool runningvga.bin > intelvbttool\_out** +Then do (and record the output): + + $ ./intelvbttool runningvga.bin > intelvbttool\_out Backup both files (runningvga.bin and intelvbttool\_out), renaming them to match the system and LCD panel used. diff --git a/docs/future/old.md b/docs/future/old.md index 71107fba..c68c4385 100644 --- a/docs/future/old.md +++ b/docs/future/old.md @@ -12,6 +12,7 @@ Table of contents - [X60 native graphics initialization (backlight controls)](#x60_native_notes) + - [T60 native graphics initialization (backlight controls)](#t60_native_notes) - [i945: 3D fix (based on 5927) for kernel 3.12+ on @@ -43,8 +44,9 @@ That's all! **This has also been backported into libreboot 5th release (line 1233 in src/mainboard/lenovo/x60/i915io.c)**. GNUtoo (Denis Carikli) told me about the register **BLC\_PWM\_CTL** and that you could set it to control backlight. I read that address using devmem2 while -running the VBIOS:\ -**\# devmem2 0xe4361254 w** +running the VBIOS: + + # devmem2 0xe4361254 w The change is also included in libreboot 6. |