BIOS guide

It should be technically possible, but we have a long list of stability/diagnostic updates we need to make on firmware before we can get into feature additions.

14 Likes

Great! better to be on the backlog than nowhere

4 Likes

Is there runit equivalent command for that systemd command to get into bios?

PS: I hate to have to reboot and repeatedly press, sometimes if missed you have wasted like 1-2 mins xd (donā€™t take PS seriously btw, funky language use though, but its quite annoying).

I did a fair bit of searching and didnā€™t come up with a good alternative.

What kills laptop batteries fast is having it sit at 100% SoC (~4.2v per cell) for long periods of time, and is exacerbated by higher temperatures (typical inside a laptop). ā€œDisconnectingā€ a battery will do nothing unless itā€™s at a lower SoC. I vote for a selectable charge threshold. If you set your SoC to 70-80% you can massively extend the life of the battery. Iā€™ve run 80% on my current Lenovo X1 (6th) and the battery has only experienced a few percent degradation.

11 Likes

Hmm, I wrote a script myself.

#!/bin/bash

# /usr/local/bin/reboot-firmware
if [[ $EUID -ne 0 ]]; then
  >&2 echo "This script must be run as root"
  exit 1
fi

OS_INDICATION_SUPPORTED_FILE='/sys/firmware/efi/efivars/OsIndicationsSupported-8be4df61-93ca-11d2-aa0d-00e098032b8c'
OS_INDICATION_FILE='/sys/firmware/efi/efivars/OsIndications-8be4df61-93ca-11d2-aa0d-00e098032b8c'
BUFFER_ATTR=7 # EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS

[ -f $OS_INDICATION_SUPPORTED_FILE ] && [ "$(( $(cat $OS_INDICATION_SUPPORTED_FILE | od -An -t u8 --read-bytes=8 --skip-bytes=4) & 1))" -eq 1 ] || {
  >&2 echo "OsIndications is not supported"
  exit 1
}

DATA="$([ -f $OS_INDICATION_FILE ] && cat $OS_INDICATION_FILE | od -An -t u8 --read-bytes=8 --skip-bytes=4 || echo '0')"
DATA=$(( $DATA | 1 ))  # EFI_OS_INDICATIONS_BOOT_TO_FW_UI

BUFFER="$(printf '%08x' $BUFFER_ATTR | sed -r -e 's/(..)(..)(..)(..)/\\x\4\\x\3\\x\2\\x\1/')$(printf '%016x' $DATA | sed -r -e 's/(..)(..)(..)(..)(..)(..)(..)(..)/\\x\8\\x\7\\x\6\\x\5\\x\4\\x\3\\x\2\\x\1/')"
printf "$BUFFER" > $OS_INDICATION_FILE
reboot

RUnit does actually do its own job, to be an init system but not a exit system :slight_smile:. It does follow the unix philosophy.

4 Likes

You can set thresholds using tlp which forwards the setting to EC of the laptop Battery Charge Thresholds ā€” TLP 1.3.1 documentation (linrunner.de)

START_CHARGE_THRESH_BAT0=75
STOP_CHARGE_THRESH_BAT0=80
10 Likes

@Animesh_Sahu Do you have those thresholds working on Framework? The docs seem to say they only work on certain Lenovos but maybe they are out of date?

1 Like

I did not got hands on framework till now, its neither in my country nor my parents (Iā€™m a student) can afford it until my current laptop goes out completely, but Iā€™m sure my next laptop is going to be 100% frameworkā€¦

The officials have confirmed that the EC is exposed, and Iā€™d guess it should work without any problem on framework.

As pointed out, it is based on chromium-ec which was probably used in old lenovo thinkpads as well (zephyr framework appeared in 2016), even if sources might be different it would be easy to integrate as can take inspiration from old tlp sources and adjust accordingly for framework.

Add a new forum page if it does not work, implementation should be quick, unfortunately canā€™t test it out from my side :^(

I tried to set battery thresholds and it does not work with the defaults settings anyway.

1 Like

Yeah, if we could get documentation, we could easily patch TLP for the Framework EC.

2 Likes

@RandomUser Iā€™m not sure itā€™s exposed to the software yet. The Framework team has already alluded to the fact that adding that configuration to the BIOS is on their roadmap, until then Windows canā€™t do anything about charging thresholds. There is freeware thatā€™ll alarm you when certain thresholds are met, but those are hacky and require you to unplug and replug manually anyways.
Iā€™m not sure what it will look like when the Framework team gets around to that, whether itā€™ll be setting charge percentages in BIOS like Iā€™ve seen on a recent-generation Dell laptop, or whether theyā€™ll give a utility to be able to control charge levels through a tool like Asus and Lenovo provide.

1 Like

Crediting John Lombardoā€™s post here since he posted another quite literally hacky solution, but one that seems much more functional than the normally available utilities.

According to framework, and assuming I didnā€™t misread, the EC is exposed! So it should be possible to use rweverything to set the charge limit, much like controlling a fan.

2 Likes

Have not heard of that utility, Iā€™ll have to try it out soon. If someone doesnā€™t beat me to it Iā€™ll post what my experience was

Re F2 to enter the BIOS and F12 to enter the one-time boot override, Iā€™ve only gotten it to work if I also press the Fn key:

Fn-F2
Fn-F12

Which might be obvious since thatā€™s how you get the function keys, but might be worth mentioning for those of us who donā€™t know :slight_smile:

4 Likes

Thatā€™s good to know as well!

1 Like

This may be a good thing to point out in the guide for 1st time use if it isnā€™t already. Folks are giddy & excited to get it going and may not realize that Fn key is part of the equation.

@nrp

4 Likes

3.03 Beta is now available: Public Beta Test: BIOS v3.03 + Driver Bundle 2021_08_31

3.03 Beta changelog (as of 2021-09-03): Framework Laptop BIOS and Driver Releases

New Features

  • Added Chassis Intrusion Detection Setup on BIOS setup advanced settings page.

Fixes

  • Solve issue where user cannot enter the BIOS menus after rebooting from Linux.
  • Increase switching frequency of side LEDs and keyboard backlight to reduce flicker.
  • Improve power button behavior to detect short press to power on.

Known Issues

  • System will not power on without battery present.
  • System cannot recognize Thunderbolt 3 devices after resuming from S4.

@ImaxinarDM the guide is a wiki so anyone can edit it, that said Iā€™ve already added a note about the function lock.

2 Likes

Anybody know how to send feedback about this community system? This thread has numerous references to ā€œECā€ but I have no idea what that refers to. I tried to search using Ctrl-F to use the browserā€™s search facility but they have trapped that key combination and launch their own search which wonā€™t let me search for ā€œecā€ ā€“ they say it is too short. They assume too much.
framework_search

1 Like