| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Most of them don't apply, and they are merged upstream in librecore already.
Librecore is becoming Libreboot's main firmware upstream.
|
| |
|
| |
|
|
|
|
| |
Everything will be migrated over to the new build system after release.
|
| |
|
| |
|
|
|
|
|
|
|
| |
The ich7 datasheet "IntelĀ® I/O Controller Hub 7 (ICH7)
Family" has a reg called GEN_PMCON_1 in which
c3 can automatically be upgraded to c4.
This is already set in coreboot.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The sound card on the x60 is not configured in coreboot.
This causes the headphones not to be automatically
detected/used when inserted which it does on the vendor
bios. The internal microphone is also not set as default.
I found on the coreboot wiki how to get the config from vendor bios.
In GNU/linux run:
for x in /sys/class/sound/card0/hw*; do cat "$x/init_pin_configs" > pin_"$(basename "$x")"; done
for x in /proc/asound/card0/codec#*; do cat "$x" > "$(basename "$x")"; done
which gives the pin config of the vendor bios.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch sets msr bits to enable dynamic L2 cache
which is a requirement for C4E, which is also enabled
by this patch.
the bit for C2E is also set.
Those msr bits are taken from later cpus and seem to work fine.
C2 state performs particularly bad. Before this patch it consumed ~17-18W.
After this patch it dropped to 14W.
Idle power usage (C4) seems to remain very similar.
|
| |
|
| |
|
| |
|
|
|
|
| |
This time under her chosen name.
|
| |
|
|
This should fix the RTC century byte issue (fix merged upstream).
Some patches were removed, in those cases where they became merged upstream.
|