Home New Trending Search
About Privacy Terms
#
#framework16
Posts tagged #framework16 on Bluesky
Over the last time, I've pretty regularly had Screen Freezes that appeared out of nowhere (maybe together with faster screen movement/resource usage, but not in a reproducible way).

It had the following characteristics:

1. The screen froze out of nowhere
2. Although the screen didn't show anything anymore, all input still worked (so typing went on, the mouse could still click on stuff, and so on)
3. Among them, locking my screen via GNOME's <KB>Super-l</KB> still worked
4. As soon as the error appeared once, it tended to appear again and again until a restart
5. After a restart, it was good for a while
6. It only appeared on my internal laptop screen, not on an external display

This is what it looked like (yep, bad video, I know 😬):

<video controls="controls" preload="auto">
  <source src="amd-screen-errors.mp4" type="video/mp4"/>
</video>

All of the above mostly .. confused me.

- <ListMarker>2.</ListMarker> and <ListMarker>3.</ListMarker> strongly pointed into the direction of GNOME being the problem, and maybe my session crashing in a weird way
- <ListMarker>4.</ListMarker> and <ListMarker>5.</ListMarker> pointed into the direction of a resource exhaustion problem (but there wasn't higher resource usage at all), while
- <ListMarker>6.</ListMarker> pointed in the direction of it being a hardware/firmware problem, or at least towards it being hardware/firmware induced.

These findings left me relatively clueless, since they didn't really point towards anything specific (without also pointing away from it).

So I googled.

At first, I didn't really find anything, but then I came upon some other Framework users experiencing similar issues.

Among them was this post: https://www.reddit.com/r/framework/comments/1goh7hc/anyone_else_get_this_screen_flickering_issue/

Which pointed to an AMD power-saving technology that has pretty regular regression bugs.

So I tried that fix out (and first needed to learn how to enable Kernel Parameters on NixOS), and .. I didn't have any further screen freezes since then. (Well, only whole GNOME session crashes on Bluetooth Headphones / Unmute, but that's for another post)

This is the fix:

```nix title=hardware.nix
config.boot.kernelParams = [
  # https://www.reddit.com/r/framework/comments/1goh7hc/anyone_else_get_this_screen_flickering_issue/
  "amdgpu.dcdebugmask=0x410"
];
```


<References>
## Probably different
  <ReferenceLink href="https://community.frame.work/t/screen-keeps-flickering-on-lower-brightness/70138/5">Screen keeps flickering on lower brightness - Framework Laptop 13 / Linux - Framework Community</ReferenceLink>
  <ReferenceLink href="https://community.frame.work/t/flickering-when-using-firefox-under-kde-wayland-on-ryzen-ai-300/69599/3">Flickering when using Firefox under KDE Wayland on Ryzen AI 300 - #3 by trumee - Linux - Framework Community</ReferenceLink>
  <ReferenceLink href="https://community.frame.work/t/framework-13-amd-7040-some-screen-flicker-still/75766">Framework 13 AMD 7040: some screen flicker still - Linux - Framework Community</ReferenceLink>
  <ReferenceLink href="https://community.frame.work/t/responded-screen-issues-on-fedora/40772/7">[RESPONDED] Screen issues on Fedora - #7 by dimitris - Linux - Framework Community</ReferenceLink>

## Maybe related
  <ReferenceLink href="https://community.frame.work/t/screen-flickers-after-logging-in-and-at-random-times/39192">Screen flickers after logging in and at random times - Framework Laptop 13 - Framework Community</ReferenceLink>
  <ReferenceLink href="https://discourse.nixos.org/t/nixos-hard-locks-driving-my-crazy/72210/7">NixOS hard locks driving my crazy! - Help - NixOS Discourse</ReferenceLink>

## Resolved the issue
  <ReferenceLink href="https://www.reddit.com/r/NixOS/comments/1hjruq1/graphics_corruption_on_kernel_6125_and_up/">Graphics corruption on kernel 6.12.5 and up : r/NixOS</ReferenceLink>
  <ReferenceLink href="https://www.reddit.com/r/framework/comments/1goh7hc/anyone_else_get_this_screen_flickering_issue/">Anyone else get this screen flickering issue? : r/framework</ReferenceLink>
  <ReferenceLink href="https://jonathanmfung.com/setting-kernel-parameters-in-nixos">Setting Kernel Parameters in NixOS</ReferenceLink>
  <ReferenceLink href="https://gitlab.freedesktop.org/drm/amd/-/issues/3827">Making sure you're not a bot!</ReferenceLink>
  <ReferenceLink href="https://community.frame.work/t/solved-my-screen-flickers-sometimes/26270/2">[SOLVED] My screen flickers sometimes - #2 by Anachron - Linux - Framework Community</ReferenceLink>
</References>

Over the last time, I've pretty regularly had Screen Freezes that appeared out of nowhere (maybe together with faster screen movement/resource usage, but not in a reproducible way). It had the following characteristics: 1. The screen froze out of nowhere 2. Although the screen didn't show anything anymore, all input still worked (so typing went on, the mouse could still click on stuff, and so on) 3. Among them, locking my screen via GNOME's <KB>Super-l</KB> still worked 4. As soon as the error appeared once, it tended to appear again and again until a restart 5. After a restart, it was good for a while 6. It only appeared on my internal laptop screen, not on an external display This is what it looked like (yep, bad video, I know 😬): <video controls="controls" preload="auto"> <source src="amd-screen-errors.mp4" type="video/mp4"/> </video> All of the above mostly .. confused me. - <ListMarker>2.</ListMarker> and <ListMarker>3.</ListMarker> strongly pointed into the direction of GNOME being the problem, and maybe my session crashing in a weird way - <ListMarker>4.</ListMarker> and <ListMarker>5.</ListMarker> pointed into the direction of a resource exhaustion problem (but there wasn't higher resource usage at all), while - <ListMarker>6.</ListMarker> pointed in the direction of it being a hardware/firmware problem, or at least towards it being hardware/firmware induced. These findings left me relatively clueless, since they didn't really point towards anything specific (without also pointing away from it). So I googled. At first, I didn't really find anything, but then I came upon some other Framework users experiencing similar issues. Among them was this post: https://www.reddit.com/r/framework/comments/1goh7hc/anyone_else_get_this_screen_flickering_issue/ Which pointed to an AMD power-saving technology that has pretty regular regression bugs. So I tried that fix out (and first needed to learn how to enable Kernel Parameters on NixOS), and .. I didn't have any further screen freezes since then. (Well, only whole GNOME session crashes on Bluetooth Headphones / Unmute, but that's for another post) This is the fix: ```nix title=hardware.nix config.boot.kernelParams = [ # https://www.reddit.com/r/framework/comments/1goh7hc/anyone_else_get_this_screen_flickering_issue/ "amdgpu.dcdebugmask=0x410" ]; ``` <References> ## Probably different <ReferenceLink href="https://community.frame.work/t/screen-keeps-flickering-on-lower-brightness/70138/5">Screen keeps flickering on lower brightness - Framework Laptop 13 / Linux - Framework Community</ReferenceLink> <ReferenceLink href="https://community.frame.work/t/flickering-when-using-firefox-under-kde-wayland-on-ryzen-ai-300/69599/3">Flickering when using Firefox under KDE Wayland on Ryzen AI 300 - #3 by trumee - Linux - Framework Community</ReferenceLink> <ReferenceLink href="https://community.frame.work/t/framework-13-amd-7040-some-screen-flicker-still/75766">Framework 13 AMD 7040: some screen flicker still - Linux - Framework Community</ReferenceLink> <ReferenceLink href="https://community.frame.work/t/responded-screen-issues-on-fedora/40772/7">[RESPONDED] Screen issues on Fedora - #7 by dimitris - Linux - Framework Community</ReferenceLink> ## Maybe related <ReferenceLink href="https://community.frame.work/t/screen-flickers-after-logging-in-and-at-random-times/39192">Screen flickers after logging in and at random times - Framework Laptop 13 - Framework Community</ReferenceLink> <ReferenceLink href="https://discourse.nixos.org/t/nixos-hard-locks-driving-my-crazy/72210/7">NixOS hard locks driving my crazy! - Help - NixOS Discourse</ReferenceLink> ## Resolved the issue <ReferenceLink href="https://www.reddit.com/r/NixOS/comments/1hjruq1/graphics_corruption_on_kernel_6125_and_up/">Graphics corruption on kernel 6.12.5 and up : r/NixOS</ReferenceLink> <ReferenceLink href="https://www.reddit.com/r/framework/comments/1goh7hc/anyone_else_get_this_screen_flickering_issue/">Anyone else get this screen flickering issue? : r/framework</ReferenceLink> <ReferenceLink href="https://jonathanmfung.com/setting-kernel-parameters-in-nixos">Setting Kernel Parameters in NixOS</ReferenceLink> <ReferenceLink href="https://gitlab.freedesktop.org/drm/amd/-/issues/3827">Making sure you're not a bot!</ReferenceLink> <ReferenceLink href="https://community.frame.work/t/solved-my-screen-flickers-sometimes/26270/2">[SOLVED] My screen flickers sometimes - #2 by Anachron - Linux - Framework Community</ReferenceLink> </References>

Hey, I wrote a new piece about another bug that has plagued me for a while :)

#GNOME #Linux #AMD #Framework #Framework16 #NixOS #KernelParameters

1 0 1 0
Install screen for Bazzite, a Fedora-derived Linux-basad operating system for computers

Install screen for Bazzite, a Fedora-derived Linux-basad operating system for computers

Exorcizing the demonic plague of W11 from my Framework 16 with a new OS

No more OneDrive 🤤
#Framework16

0 0 0 0

Hey has anyone tried the framework 12's stylus? is it any good?

#framework16 #framework12 #frameworklaptop

0 0 0 0

Hey has anyone tried the framework 12's stylus? is it any good?

#framework16 #framework12 #frameworklaptop

0 0 0 0
Post image

Did the thing. It’s giving TRS-80 vibes.

#framework #framework16 #righttorepair

2 0 0 0

I really wanna buy a #Framework Laptop as my ol 2014 Asus is starting to be quite unreliable... but its just not in my budget to get a #Framework16 hfhgbgng.gngn.........

I could maybe go for a Tiny #Framework12 for now, but I definetly want something slightly gaming capable. Thoughs?

0 0 1 0
Video thumbnail

Framework 16 Announcements time!!!!

Headlines:

- New Ryzen AI 300 CPUs (already on the 13 earlier this year)
- New NVIDIA 5070 Graphics Module

Mega 🧵 #Framework #Framework16

4 0 1 0

Is there an active #Framework community in #Denmark ?
I'm looking for someone confident/experienced enough to change the Liquid Metal to PTM on my #Framework16.
I already reached out to my local #hackerspace , but no response so far.

0 0 0 0
Original post on fediscience.org

This is why I got a #FrameworkLaptop !
I spent maybe 10 minutes opening up and closing my #Framework16 to snap a picture of my mainboard for a potential warranty case.

It took me 10 minutes because I was hyper-paranoid about missing a step, but you can realistically do it in under 5 minutes.

I […]

0 0 0 0
Original post on fosstodon.org

@frameworkcomputer Any updates on Coreboot support? Heard it was "low on the priority list" but that was years ago if I recall correctly. Would love to get Libreboot (or just Coreboot) working on my fw16. Thank you!

#framework #FrameworkLaptop #framework16 #framework13 #framework12 #coreboot […]

0 0 0 0
Original post on infosec.exchange

If you are plugging a portable USB-C powered monitor into a Framework laptop and the monitor keeps rebooting ... it's not getting enough power.

You have to use a USB-C module that's plugged into one of two specific sockets -- the two "furthest back" on either side, kinda closest to where you […]

0 0 0 0

[73714.072490] i2c_designware AMDI0010:03: controller timed out

前幾天更新 (`pacman -Syu`) 後會讓這則系統錯誤訊息發生,同時觸控板就變成不能用了。

重開機可以解。

好像不是定時發生,而是有什麼特定手勢會讓這個狀況發生。

#archlinux
#framework16
#kde
#wayland

0 1 4 0

I was trying to get a new computer before the tariffs hecked in, but I ended up sending back my #Framework16 because of a defective touchpad. The irony of modular parts is they fight replacing defective ones.

0 0 0 0
Post image

Goodbye #Framework16 we hardly knew you.

0 0 0 0

After spending a week with the #Framework16 I don't think I'm cut out for this level of futzing and hardware debugging. It's been fun playing some games, but it will be going back if I can't get passed the touchpad and keyboard issues.

0 0 0 0

Touchpad on the #Framework16 is rough. It's zooming and right-clicking a when I'm trying to scroll. Really hobbling and otherwise amazing machine.

0 0 0 0

It's been about a year since I got my #Framework16 laptop. Here's how it's been using it day-to-day.

jacen.moe/blog/20250202-the-framew...

#Framework #FrameworkLaptop

0 0 0 0

Anyone here who uses the #Framework16 laptop? Do you recommend it as a work laptop? Are there any downsides?

#Framework #FrameworkLaptop #Framework13

0 0 0 0

https://www.youtube.com/shorts/5Mb5bGKUyQM

inputmodule-control led-matrix --breathing

呼吸效果。

#framework16

0 0 0 0
Preview
NEDELJSKI NASVET: Takšni so prvi vtisi druženja s prenosnikom Framework 16 - Tehnozvezdje Takoj, ko so objavili, da jih dostavljajo k nam, ga je naročil. Nehal se je ubadati, koga onkraj severne meje naj prosi, da ga sprejme, pa še tipkovnico s šumniki...

Res zanimiv "razsuti" prenosnik. Tokrat sestavljanje, kompleten test pa še sledi. #Framework16
tehnozvezdje.si/nedeljski-na...

2 0 0 0
Preview
NEDELJSKI NASVET: Takšni so prvi vtisi druženja s prenosnikom Framework 16 - Tehnozvezdje Takoj, ko so objavili, da jih dostavljajo k nam, ga je naročil. Nehal se je ubadati, koga onkraj severne meje naj prosi, da ga sprejme, pa še tipkovnico s šumniki...

Takoj, ko so objavili, da jih dostavljajo k nam, smo ga naročili. Takole je potekalo sestavljanje 16-palčnega prenosnika #Framework16!
tehnozvezdje.si/nedeljski-na...

3 1 2 0