How to change resolution in console mode for TX1 ?

I’m trying to use to change some resolution (640x480) in console mode using jetpack 2.3 for TX1
but, I can’t. However, 640x480 resolution is ok in X11.

The test was conducted as follows.

(1). xrandr --output HDMI-0 -mode 640x480 → It’s good !!

(2) fbset default → Kernel Error and unusally fb_match_mode()is returned null.
I got the ‘640x480-60’ value from (1). and saved to /etc/fb.modes using " fbset >> /etc/fb.modes ".

mode "640x480-60"
    # D: 25.200 MHz, H: 31.500 kHz, V: 60.001 Hz
    geometry 640 480 0 0 32
    timings 39721 48 16 33 10 96 2
    rgba 8/0,8/8,8/16,8/24
endmode
[   34.581242] ------------[ cut here ]------------
[   34.581253] WARNING: at /home3/tegra/v23/64_TX1/Linux_for_Tegra_64_tx1/sources/kernel_source/drivers/video/console/fbcon.c:923 var_to_display+0xbc/0xd0()
[   34.581266] Modules linked in: bnep soc_camera soc_mediabus videobuf_core bcmdhd cfg80211 bluedroid_pm
[   34.581272] CPU: 3 PID: 893 Comm: fbset Not tainted 3.10.96-tegra #143
[   34.581274] Call trace:
[   34.581279] [<ffffffc000089df4>] dump_backtrace+0x0/0xf0
[   34.581282] ---[ end trace 10720e92027503da ]---
[   34.581316] Unable to handle kernel NULL pointer dereference at virtual address 0000000c
[   34.581318] pgd = ffffffc0f4d46000
[   34.581321] [0000000c] *pgd=000000017dc7c003, *pmd=0000000000000000
[   34.581325] Internal error: Oops: 96000006 [#1] PREEMPT SMP
[   34.581328] Enter nvdumper_crash_setup_regs
[   34.581337] nvdumper: all registers are saved.
[   34.581341] tegra_dc_program_mode 432 in
[   34.581344] tegra_dc_program_mode 438 call modeset_notifier
[   34.581348] tegra_dc_hdmi_modeset_notifier 2349 (25175000)
[   34.581353]  tegra_dc_program_mode 454, call print_mode
[   34.581360] tegradc tegradc.1: tegra_dc_program_mode():MODE:640x480@59.939Hz pclk=25175000
[   34.581371] nvdumper: all registers are saved.
[   34.581375] nvdumper: all registers are saved.
[   34.581377] nvdumper: all registers are saved.
[   34.581382]  tegra_dc_program_mode 548, rate=241698047
[   34.581386] tegra_dc_program_mode 550, pclk=241698047
[   34.581389] tegra_dc_program_mode 552, div=0
[   34.581394] tegradc tegradc.1: nominal-pclk:25175000 parent:241698047 div:1.0 pclk:241698047 24923250~27440750
[   34.581396] Modules linked in: bnep soc_camera soc_mediabus videobuf_core bcmdhd cfg80211 bluedroid_pm
[   34.581398] tegradc tegradc.1: pclk out of range!
[   34.581401] CPU: 3 PID: 893 Comm: fbset Tainted: G        W    3.10.96-tegra #143
[   34.581403] tegra_dc_program_mode 563 out
[   34.581405] task: ffffffc0e71a3040 ti: ffffffc0f2644000 task.ti: ffffffc0f2644000
[   34.581410] PC is at fb_videomode_to_var+0x0/0x7c
[   34.581414] LR is at display_to_var+0x1c/0xb4
[   34.581417] pc : [<ffffffc000373e08>] lr : [<ffffffc00037798c>] pstate: 60000145
[   34.581418] sp : ffffffc0f26478f0
[   34.581422] x29: 0000007fcf33cbd0 x28: 0000000000000000 
[   34.581426] x27: 0000000000000280 x26: 0000000000000000 
[   34.581429] x25: ffffffc0fc50e100 x24: 00000000000000a0 
[   34.581432] x23: ffffffc0fcbfc000 x22: ffffffc00127f5c0 
[   34.581436] x21: ffffffc0fc43cc00 x20: ffffffc0f2647940 
[   34.581439] x19: ffffffc00127f5c0 x18: 0000000000000a03 
[   34.581442] x17: 0000000000418100 x16: 0000000000000000 
[   34.581445] x15: 0000000000000008 x14: 0000000000000001 
[   34.581449] x13: ffffffc0fddeeabf x12: ffffff800096c600 
[   34.581452] x11: 00000000ffffffff x10: 0000000000000008 
[   34.581455] x9 : 0000000000aaaaaa x8 : 0000000000000001 
[   34.581458] x7 : ffffffc000b16040 x6 : 0000000000000001 
[   34.581461] x5 : 0000000000000000 x4 : 0000000000000000 
[   34.581465] x3 : ffffffc00127f420 x2 : ffffffc00127f420 
[   34.581468] x1 : 0000000000000000 x0 : ffffffc0f2647940
  1. use ioctl (FBIOPUT_VSCREENINFO) fuction
struct fb_var_screeninfo vinfo.
     vinfo.xres = 640;
     vinfo.yres = 480;
     vinfo.pixclock = 39721;//  KHZ2PICOS(25200); 
     vinfo.left_margin = 48;
     vinfo.upper_margin = 33;
     vinfo.right_margin = 16;
     vinfo.lower_margin = 10;
     vinfo.hsync_len = 96;
     vinfo.vsync_len = 2;
     vinfo.vmode = 272629760;
     vinfo.sync = 3;
     ioctl(fb_fp, FBIOPUT_VSCREENINFO, &vinfo);

→ there’s error like with test (2).
→ tegradc tegradc.1: pclk out of range!

  1. use ioctl (FBIOPUT_VSCREENINFO) fuction
struct fb_var_screeninfo vinfo.
     vinfo.xres = 1680;
     vinfo.yres = 1050;
     ioctl(fb_fp, FBIOPUT_VSCREENINFO, &vinfo);

→ It’s good

I wonder could I fix the resolution at boot time?

Thanks.

I can verify this causes a kernel panic and leaves the system mostly unusable (some sysrq still works). I probably have a bit more debugging info on this kernel than stock, but otherwise it is the same (R24.2.1). In my case fbset is for “1680x1050-60”, which is the only mode seen by fbset (the monitor supports far more than this).

[  461.431622] ------------[ cut here ]------------
[  461.431745] WARNING: at /kernel_location/L4T/R24.2.1/src/kernel/kernel-24.2.1/drivers/video/console/fbcon.c:923 var_to_display+0xc0/0xd4()
[  461.431819] Modules linked in: bnep bcmdhd cfg80211 bluedroid_pm
[  461.431858] CPU: 1 PID: 2007 Comm: fbset Not tainted 3.10.96-debug1_crosstool-ng-4.8.2 #1
[  461.431878] Call trace:
[  461.431919] [<ffffffc000089df4>] dump_backtrace+0x0/0xf4
[  461.431942] [<ffffffc00008a0f4>] show_stack+0x14/0x1c
[  461.431970] [<ffffffc00032a59c>] dump_stack+0x20/0x28
[  461.432012] [<ffffffc0000a72e4>] warn_slowpath_common+0x78/0x9c
[  461.432039] [<ffffffc0000a73d0>] warn_slowpath_null+0x18/0x20
[  461.432059] [<ffffffc000395958>] var_to_display+0xc0/0xd4
[  461.432082] [<ffffffc000395b70>] fbcon_modechanged+0xa8/0x1a4
[  461.432103] [<ffffffc000399fa4>] fbcon_event_notify+0x80/0x168
[  461.432130] [<ffffffc0000d8350>] notifier_call_chain+0x44/0x84
[  461.432157] [<ffffffc0000d8674>] __blocking_notifier_call_chain+0x50/0x7c
[  461.432177] [<ffffffc0000d86b4>] blocking_notifier_call_chain+0x14/0x1c
[  461.432209] [<ffffffc00038afc0>] fb_notifier_call_chain+0x20/0x28
[  461.432236] [<ffffffc00038c424>] fb_set_var+0x270/0x300
[  461.432258] [<ffffffc00038ce44>] do_fb_ioctl+0x19c/0x724
[  461.432280] [<ffffffc00038d3f4>] fb_ioctl+0x28/0x3c
[  461.432318] [<ffffffc0001c1e38>] vfs_ioctl+0x1c/0x44
[  461.432343] [<ffffffc0001c2adc>] do_vfs_ioctl+0x220/0x22c
[  461.432366] [<ffffffc0001c2bc4>] SyS_ioctl+0xdc/0x18c
[  461.432381] ---[ end trace b4abbce650fa8f52 ]---
[  461.432515] Unable to handle kernel NULL pointer dereference at virtual address 0000000c
[  461.432527] pgd = ffffffc0d6621000
[  461.432551] [0000000c] *pgd=000000015801e003, *pmd=0000000000000000
[  461.432581] Internal error: Oops: 96000006 [#1] PREEMPT SMP
[  461.432602] Enter nvdumper_crash_setup_regs
[  461.432692] nvdumper: all registers are saved.
[  461.432704] nvdumper: all registers are saved.
[  461.432716] nvdumper: all registers are saved.
[  461.432728] nvdumper: all registers are saved.
[  461.432781] Modules linked in: bnep bcmdhd cfg80211 bluedroid_pm
[  461.432810] CPU: 1 PID: 2007 Comm: fbset Tainted: G        W    3.10.96-debug1_crosstool-ng-4.8.2 #1
[  461.432830] task: ffffffc0fc92e900 ti: ffffffc0f7804000 task.ti: ffffffc0f7804000
[  461.432852] PC is at fb_videomode_to_var+0x0/0x7c
[  461.432872] LR is at display_to_var+0x1c/0xb0
[  461.432888] pc : [<ffffffc0003925bc>] lr : [<ffffffc000396030>] pstate: 60000145
[  461.432898] sp : ffffffc0f7807930
[  461.432925] x29: ffffffc0f7807930 x28: ffffffc0f7804000 
[  461.432948] x27: ffffffc0011e8000 x26: 000000000000001d 
[  461.432971] x25: ffffffc0fc905060 x24: 00000000000000a0 
[  461.432992] x23: ffffffc0fc905000 x22: ffffffc001427b80 
[  461.433013] x21: ffffffc0fc957a00 x20: ffffffc0f7807990 
[  461.433034] x19: ffffffc001427b80 x18: 0000000000000a03 
[  461.433056] x17: 0000000000418100 x16: 0000000000000000 
[  461.433077] x15: 0000000000000008 x14: 0000000000000001 
[  461.433098] x13: ffffffc0fdfb07af x12: ffffff8000d34500 
[  461.433118] x11: 00000000ffffffff x10: 0000000000000008 
[  461.433139] x9 : 0000000000cdcdcd x8 : 0000000000000001 
[  461.433160] x7 : ffffffc000ba9250 x6 : 0000000000000001 
[  461.433179] x5 : 0000000000000001 x4 : 0000000000000000 
[  461.433200] x3 : ffffffc001427960 x2 : ffffffc001427960 
[  461.433220] x1 : 0000000000000000 x0 : ffffffc0f7807990 
[  461.433235] 
               PC: 0xffffffc00039253c:
[  461.433294] 253c  52994003 72a77343 1ac20863 52807d04 1b047c63 b9406c24 b9400022 0b020084
[  461.433348] 255c  b9407822 0b020084 b9406825 0b050084 b9407425 b9400422 0b0200a2 b9407c25
[  461.433400] 257c  0b050042 b9407025 0b050042 b9408421 12000026 53017c45 6b1f00df 1a8210a2
[  461.433452] 259c  121f0021 531f7845 6b1f003f 1a8210a2 1ac40863 1ac20862 b9000802 d65f03c0
[  461.433504] 25bc  b9400c22 b9000002 b9401022 b9000402 b9400c22 b9000802 b9401022 b9000c02
[  461.433555] 25dc  b900101f b900141f b9401422 b9006402 b9401822 b9006802 b9401c22 b9006c02
[  461.433607] 25fc  b9402022 b9007002 b9402422 b9007402 b9402822 b9007802 b9402c22 b9007c02
[  461.433658] 261c  b9403022 b9008002 b9403422 12bc0381 0a010041 b9008401 d65f03c0 aa0003e3
[  461.433668] 
               LR: 0xffffffc000395fb0:
[  461.433725] 5fb0  b9400443 6b03003f 5400012c d0008485 912a60a5 12800004 910080a2 3821c844
[  461.433776] 5fd0  11000421 6b03003f 54ffff8d 12800002 d00073e1 9114e021 b9003822 14000008
[  461.433827] 5ff0  52800021 f0008480 912e6000 b90fe801 52800000 14000002 12800240 a8c17bfd
[  461.433878] 6010  d65f03c0 a9be7bfd 910003fd a90153f3 aa0003f4 aa0103f3 f9403c21 97fff164
[  461.433929] 6030  b9402260 b9000a80 b9402660 b9000e80 b9403260 b9001a80 b9403660 b9001e80
[  461.433981] 6050  b9403a60 b9005280 b9403e60 b9006280 b9402a60 b9005a80 b9402e60 b9005e80
[  461.434032] 6070  f8444260 f9001280 b9404e60 b9002a80 f9402a60 f802c280 b9405a60 b9003680
[  461.434083] 6090  f845c260 f9001e80 b9406660 b9004280 f9403660 f8044280 b9407260 b9004e80
[  461.434092] 
               SP: 0xffffffc0f78078b0:
[  461.434144] 78b0  f7807990 ffffffc0 fc957a00 ffffffc0 01427b80 ffffffc0 fc905000 ffffffc0
[  461.434197] 78d0  000000a0 00000000 fc905060 ffffffc0 0000001d 00000000 011e8000 ffffffc0
[  461.434249] 78f0  f7804000 ffffffc0 f7807930 ffffffc0 00396030 ffffffc0 f7807930 ffffffc0
[  461.434300] 7910  003925bc ffffffc0 60000145 00000000 011e8000 ffffffc0 f7804000 ffffffc0
[  461.434352] 7930  f7807950 ffffffc0 00396f68 ffffffc0 f3fe4400 ffffffc0 fc905000 ffffffc0
[  461.434403] 7950  f7807a30 ffffffc0 0047ada4 ffffffc0 f3fe4400 ffffffc0 f3fe4400 ffffffc0
[  461.434455] 7970  00000000 00000000 00000001 00000000 01427b80 ffffffc0 0122e370 ffffffc0
[  461.434505] 7990  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.434517] 
               X0: 0xffffffc0f7807910:
[  461.434570] 7910  003925bc ffffffc0 60000145 00000000 011e8000 ffffffc0 f7804000 ffffffc0
[  461.434622] 7930  f7807950 ffffffc0 00396f68 ffffffc0 f3fe4400 ffffffc0 fc905000 ffffffc0
[  461.434673] 7950  f7807a30 ffffffc0 0047ada4 ffffffc0 f3fe4400 ffffffc0 f3fe4400 ffffffc0
[  461.434724] 7970  00000000 00000000 00000001 00000000 01427b80 ffffffc0 0122e370 ffffffc0
[  461.434774] 7990  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.434823] 79b0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.434872] 79d0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.434921] 79f0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.434936] 
               X2: 0xffffffc0014278e0:
[  461.434986] 78e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435035] 7900  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435085] 7920  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435134] 7940  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435184] 7960  00000008 00000000 00000001 00000000 011b8008 ffffffc0 fdc407c0 ffffffc0
[  461.435234] 7980  00000001 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435283] 79a0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435332] 79c0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435343] 
               X3: 0xffffffc0014278e0:
[  461.435393] 78e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435442] 7900  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435492] 7920  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435541] 7940  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435592] 7960  00000008 00000000 00000001 00000000 011b8008 ffffffc0 fdc407c0 ffffffc0
[  461.435641] 7980  00000001 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435691] 79a0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435737] 79c0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.435752] 
               X7: 0xffffffc000ba91d0:
[  461.435806] 91d0  00000000 00000000 00000000 00000000 05190200 08191919 0b191919 11191919
[  461.435858] 91f0  19191919 14191919 19191919 17191919 00000000 ff000000 00ff0000 ffff0000
[  461.435910] 9210  0000ff00 ff00ff00 00ffff00 ffffff00 000000ff ff0000ff 00ff00ff ffff00ff
[  461.435963] 9230  0000ffff ff00ffff 00ffffff ffffffff 00000000 ffff0000 0000ffff ffffffff
[  461.436015] 9250  00000000 ffffffff 05190200 08191919 0b191919 11191919 19191919 14191919
[  461.436066] 9270  19191919 17191919 00000000 ff000000 00ff0000 ffff0000 0000ff00 ff00ff00
[  461.436118] 9290  00ffff00 ffffff00 000000ff ff0000ff 00ff00ff ffff00ff 0000ffff ff00ffff
[  461.436169] 92b0  00ffffff ffffffff 00000000 ffff0000 0000ffff ffffffff 00000000 ffffffff
[  461.436191] 
               X13: 0xffffffc0fdfb072f:
[  461.436244] 072c  ffff0000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.436294] 074c  ffff0000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.436345] 076c  ffff0000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.436395] 078c  ffff0000 00000000 00000000 00000000 ffff0000 00000000 00000000 00000000
[  461.436445] 07ac  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.436495] 07cc  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.436544] 07ec  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.436593] 080c  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.436642] 082c  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.436663] 
               X19: 0xffffffc001427b00:
[  461.436715] 7b00  f3970010 ffffffc0 00000001 00000004 00000000 00000082 00000002 00000000
[  461.436766] 7b20  00000690 0000041a 00000000 00000000 00000020 00000000 00000000 00000000
[  461.436816] 7b40  00000000 00000000 00000008 00000000 00000008 00000008 00000000 00000010
[  461.436866] 7b60  00000008 00000000 00000018 00000008 00000000 00000000 fc9e5e50 ffffffc0
[  461.436917] 7b80  f3970010 ffffffc0 00000001 00000004 00000000 00000082 00000002 00000000
[  461.436968] 7ba0  00000690 00000834 00000000 00000000 00000020 00000000 00000000 00000001
[  461.437017] 7bc0  00000000 00000000 00000008 00000000 00000008 00000008 00000000 00000010
[  461.437066] 7be0  00000008 00000000 00000018 00000008 00000000 00000000 00000000 00000000
[  461.437077] 
               X20: 0xffffffc0f7807910:
[  461.437128] 7910  003925bc ffffffc0 60000145 00000000 011e8000 ffffffc0 f7804000 ffffffc0
[  461.437177] 7930  f7807950 ffffffc0 00396f68 ffffffc0 f3fe4400 ffffffc0 fc905000 ffffffc0
[  461.437229] 7950  f7807a30 ffffffc0 0047ada4 ffffffc0 f3fe4400 ffffffc0 f3fe4400 ffffffc0
[  461.437280] 7970  00000000 00000000 00000001 00000000 01427b80 ffffffc0 0122e370 ffffffc0
[  461.437330] 7990  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.437379] 79b0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.437429] 79d0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.437478] 79f0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.437489] 
               X21: 0xffffffc0fc957980:
[  461.437543] 7980  00bb5098 ffffffc0 fc957988 ffffffc0 fc957988 ffffffc0 00400043 00000001
[  461.437593] 79a0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.437642] 79c0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.437691] 79e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.437743] 7a00  0039a454 ffffffc0 0039a4b0 ffffffc0 0039ab70 ffffffc0 0039a5a4 ffffffc0
[  461.437795] 7a20  0039a6f4 ffffffc0 0039a6b4 ffffffc0 00000000 00000000 00000690 0000041a
[  461.437845] 7a40  00000690 00000834 00000000 00000000 00000020 00000000 00000000 00000008
[  461.437894] 7a60  00000000 00000008 00000008 00000000 00000010 00000008 00000000 00000018
[  461.437905] 
               X22: 0xffffffc001427b00:
[  461.437956] 7b00  f3970010 ffffffc0 00000001 00000004 00000000 00000082 00000002 00000000
[  461.438007] 7b20  00000690 0000041a 00000000 00000000 00000020 00000000 00000000 00000000
[  461.438056] 7b40  00000000 00000000 00000008 00000000 00000008 00000008 00000000 00000010
[  461.438107] 7b60  00000008 00000000 00000018 00000008 00000000 00000000 fc9e5e50 ffffffc0
[  461.438157] 7b80  f3970010 ffffffc0 00000001 00000004 00000000 00000082 00000002 00000000
[  461.438208] 7ba0  00000690 00000834 00000000 00000000 00000020 00000000 00000000 00000001
[  461.438257] 7bc0  00000000 00000000 00000008 00000000 00000008 00000008 00000000 00000010
[  461.438306] 7be0  00000008 00000000 00000018 00000008 00000000 00000000 00000000 00000000
[  461.438317] 
               X23: 0xffffffc0fc904f80:
[  461.438368] 4f80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.438418] 4fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.438467] 4fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.438516] 4fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.438566] 5000  00000003 00000000 00000000 00000000 00000000 00000000 fc905018 ffffffc0
[  461.438617] 5020  fc905018 ffffffc0 fc92e900 ffffffc0 00000000 00000000 00000001 00000000
[  461.438667] 5040  fc905040 ffffffc0 fc905040 ffffffc0 00000000 00000000 00000000 00000000
[  461.438718] 5060  00000690 0000041a 00000690 00000834 00000000 00000000 00000020 00000000
[  461.438730] 
               X25: 0xffffffc0fc904fe0:
[  461.438780] 4fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.438831] 5000  00000003 00000000 00000000 00000000 00000000 00000000 fc905018 ffffffc0
[  461.438881] 5020  fc905018 ffffffc0 fc92e900 ffffffc0 00000000 00000000 00000001 00000000
[  461.438930] 5040  fc905040 ffffffc0 fc905040 ffffffc0 00000000 00000000 00000000 00000000
[  461.438980] 5060  00000690 0000041a 00000690 00000834 00000000 00000000 00000020 00000000
[  461.439030] 5080  00000000 00000008 00000000 00000008 00000008 00000000 00000010 00000008
[  461.439079] 50a0  00000000 00000018 00000008 00000000 00000000 00000000 00000000 00000000
[  461.439129] 50c0  00000001 00001ab5 00000118 00000068 0000001e 00000003 000000b0 00000006
[  461.439142] 
               X27: 0xffffffc0011e7f80:
[  461.439194] 7f80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.439243] 7fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.439292] 7fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.439341] 7fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.439393] 8000  001fe984 ffffffc0 001febc8 ffffffc0 001fef48 ffffffc0 001ff090 ffffffc0
[  461.439445] 8020  001ff2c0 ffffffc0 001d5c88 ffffffc0 001d5e58 ffffffc0 001d6028 ffffffc0
[  461.439497] 8040  001d61cc ffffffc0 001d6370 ffffffc0 001d6514 ffffffc0 001d6694 ffffffc0
[  461.439548] 8060  001d6830 ffffffc0 001d69cc ffffffc0 001d6b3c ffffffc0 001d6ce4 ffffffc0
[  461.439559] 
               X28: 0xffffffc0f7803f80:
[  461.439610] 3f80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.439660] 3fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.439709] 3fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000005 00000000
[  461.439758] 3fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.439809] 4000  00000000 00000000 ffffffff ffffffff fc92e900 ffffffc0 000bea08 ffffffc0
[  461.439859] 4020  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.439909] 4040  00000000 00000000 00000002 00000001 00000100 00000000 57ac6e9d 00000000
[  461.439958] 4060  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.439968] 
               X29: 0xffffffc0f78078b0:
[  461.440020] 78b0  f7807990 ffffffc0 fc957a00 ffffffc0 01427b80 ffffffc0 fc905000 ffffffc0
[  461.440071] 78d0  000000a0 00000000 fc905060 ffffffc0 0000001d 00000000 011e8000 ffffffc0
[  461.440122] 78f0  f7804000 ffffffc0 f7807930 ffffffc0 00396030 ffffffc0 f7807930 ffffffc0
[  461.440173] 7910  003925bc ffffffc0 60000145 00000000 011e8000 ffffffc0 f7804000 ffffffc0
[  461.440225] 7930  f7807950 ffffffc0 00396f68 ffffffc0 f3fe4400 ffffffc0 fc905000 ffffffc0
[  461.440276] 7950  f7807a30 ffffffc0 0047ada4 ffffffc0 f3fe4400 ffffffc0 f3fe4400 ffffffc0
[  461.440328] 7970  00000000 00000000 00000001 00000000 01427b80 ffffffc0 0122e370 ffffffc0
[  461.440377] 7990  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000

[  461.440401] Process fbset (pid: 2007, stack limit = 0xffffffc0f7804058)
[  461.440419] Stack: (0xffffffc0f7807930 to 0xffffffc0f7808000)
[  461.440444] 7920:                                     f7807950 ffffffc0 00396f68 ffffffc0
[  461.440471] 7940: f3fe4400 ffffffc0 fc905000 ffffffc0 f7807a30 ffffffc0 0047ada4 ffffffc0
[  461.440496] 7960: f3fe4400 ffffffc0 f3fe4400 ffffffc0 00000000 00000000 00000001 00000000
[  461.440519] 7980: 01427b80 ffffffc0 0122e370 ffffffc0 00000000 00000000 00000000 00000000
[  461.440541] 79a0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.440562] 79c0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.440582] 79e0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.440603] 7a00: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.440626] 7a20: 00000000 00000000 00000000 00000000 f7807a60 ffffffc0 00395c20 ffffffc0
[  461.440649] 7a40: fc957a00 ffffffc0 f3fe4400 ffffffc0 fc905000 ffffffc0 f3fe4400 ffffffc0
[  461.440671] 7a60: f7807aa0 ffffffc0 00399fa4 ffffffc0 ffffffff 00000000 00000000 00000000
[  461.440693] 7a80: 00000000 00000000 00000001 00000000 f7807c80 ffffffc0 00000000 00000000
[  461.440717] 7aa0: f7807ab0 ffffffc0 000d8350 ffffffc0 f7807af0 ffffffc0 000d8674 ffffffc0
[  461.440740] 7ac0: 012132b0 ffffffc0 00000000 00000000 ffffffff 00000000 f7807c80 ffffffc0
[  461.440762] 7ae0: 00000001 00000000 00000000 00000000 f7807b30 ffffffc0 000d86b4 ffffffc0
[  461.440785] 7b00: fc905060 ffffffc0 fc905000 ffffffc0 00000000 00000000 00000000 00000000
[  461.440809] 7b20: 00010000 00000000 0038c3e4 ffffffc0 f7807b40 ffffffc0 0038afc0 ffffffc0
[  461.440832] 7b40: f7807b50 ffffffc0 0038c424 ffffffc0 f7807c90 ffffffc0 0038ce44 ffffffc0
[  461.440855] 7b60: fc905000 ffffffc0 de11d528 0000007f 00004601 00000000 de11d528 0000007f
[  461.440878] 7b80: 00004601 00000000 00000000 00000000 00000116 00000000 aee5d980 ffffffc0
[  461.440901] 7ba0: 00000690 0000041a 00000690 00000834 00000000 00000000 00000020 00000000
[  461.440921] 7bc0: 00000000 00000008 00000000 00000008 00000008 00000000 00000010 00000008
[  461.440942] 7be0: 00000000 00000018 00000008 00000000 00000000 00000000 00000000 00000000
[  461.440964] 7c00: 00000000 00001ab5 00000118 00000068 0000001e 00000003 000000b0 00000006
[  461.440986] 7c20: 00000002 10200000 00000000 00000000 00000000 00000000 00000000 00000000
[  461.441008] 7c40: 00000000 00000000 0000003b 00000690 0000041a 00001ab5 00000118 00000068
[  461.441031] 7c60: 0000001e 00000003 000000b0 00000006 00000002 00000200 00000020 ffffffc0
[  461.441054] 7c80: fc905000 ffffffc0 f7807c40 ffffffc0 f7807e20 ffffffc0 0038d3f4 ffffffc0
[  461.441076] 7ca0: de11d528 0000007f 00004601 00000000 00000003 00000000 011e9e58 ffffffc0
[  461.441098] 7cc0: 00000690 0000041a 00000690 00000834 00000000 00000000 00000020 00000000
[  461.441119] 7ce0: 00000000 00000000 00000000 00000008 00000008 00000000 00000010 00000008
[  461.441140] 7d00: 00000000 00000002 00000008 00000000 00000000 00000000 00000000 00000000
[  461.441162] 7d20: 00000001 00001ab5 00000118 00000068 0000001e 00000003 000000b0 00000006
[  461.441183] 7d40: 00000002 00000200 00000000 00000000 00000000 00000000 00000000 00000000
[  461.441207] 7d60: f7807d80 ffffffc0 0012cd60 ffffffc0 f7807db0 ffffffc0 0012cfb4 ffffffc0
[  461.441230] 7d80: f7807da0 ffffffc0 000db210 ffffffc0 f7807da0 ffffffc0 000db234 ffffffc0
[  461.441253] 7da0: f7807dc0 ffffffc0 001d0858 ffffffc0 f7ac5ec0 ffffffc0 001b05dc ffffffc0
[  461.441276] 7dc0: f7807df0 ffffffc0 001d09a8 ffffffc0 ae46b0c0 ffffffc0 00000010 00000000
[  461.441299] 7de0: aca26540 ffffffc0 f1618910 ffffffc0 f7807e00 ffffffc0 001b05e4 ffffffc0
[  461.441322] 7e00: f7807e50 ffffffc0 001b066c ffffffc0 fc92e900 ffffffc0 00000000 00000000
[  461.441345] 7e20: f7807e40 ffffffc0 001c1e38 ffffffc0 de11d528 0000007f fdcc6a90 ffffffc0
[  461.441368] 7e40: f7807e50 ffffffc0 001c2adc ffffffc0 f7807e80 ffffffc0 001c2bc4 ffffffc0
[  461.441391] 7e60: ae46b7c0 ffffffc0 00000000 00000000 f7807e80 ffffffc0 001c2ba8 ffffffc0
[  461.441414] 7e80: de11d430 0000007f 000853c8 ffffffc0 004183b0 00000000 004183b0 00000000
[  461.441437] 7ea0: ffffffff ffffffff a1ac50cc 0000007f 80000000 00000000 00000015 00000000
[  461.441458] 7ec0: 00000000 00000000 00000015 00000000 00000003 00000000 00004601 00000000
[  461.441480] 7ee0: de11d528 0000007f 00000008 00000000 00000010 00000000 00000008 00000000
[  461.441501] 7f00: 00000008 00000000 00000008 00000000 0000001d 00000000 00000000 00000000
[  461.441523] 7f20: 01010101 01010101 00000000 00000000 00000000 00000000 00000008 00000008
[  461.441546] 7f40: 00000000 00000000 a1b95cc0 0000007f a1ac50c0 0000007f 00418100 00000000
[  461.441569] 7f60: 00000a03 00000000 004183b0 00000000 004183b0 00000000 00000003 00000000
[  461.441591] 7f80: 00000002 00000000 00418000 00000000 00405d08 00000000 00405d18 00000000
[  461.441614] 7fa0: 0000001d 00000000 de11d770 0000007f 00000001 00000000 de11d430 0000007f
[  461.441637] 7fc0: 00402c3c 00000000 de11d430 0000007f a1ac50cc 0000007f 80000000 00000000
[  461.441659] 7fe0: 00000003 00000000 0000001d 00000000 00000000 00000000 00000000 00000000
[  461.441666] Call trace:
[  461.441690] [<ffffffc0003925bc>] fb_videomode_to_var+0x0/0x7c
[  461.441715] [<ffffffc000396f68>] fbcon_switch+0x184/0x488
[  461.441750] [<ffffffc00047ada4>] redraw_screen+0x114/0x204
[  461.441771] [<ffffffc000395c20>] fbcon_modechanged+0x158/0x1a4
[  461.441793] [<ffffffc000399fa4>] fbcon_event_notify+0x80/0x168
[  461.441814] [<ffffffc0000d8350>] notifier_call_chain+0x44/0x84
[  461.441835] [<ffffffc0000d8674>] __blocking_notifier_call_chain+0x50/0x7c
[  461.441855] [<ffffffc0000d86b4>] blocking_notifier_call_chain+0x14/0x1c
[  461.441877] [<ffffffc00038afc0>] fb_notifier_call_chain+0x20/0x28
[  461.441898] [<ffffffc00038c424>] fb_set_var+0x270/0x300
[  461.441918] [<ffffffc00038ce44>] do_fb_ioctl+0x19c/0x724
[  461.441940] [<ffffffc00038d3f4>] fb_ioctl+0x28/0x3c
[  461.441963] [<ffffffc0001c1e38>] vfs_ioctl+0x1c/0x44
[  461.441986] [<ffffffc0001c2adc>] do_vfs_ioctl+0x220/0x22c
[  461.442009] [<ffffffc0001c2bc4>] SyS_ioctl+0xdc/0x18c
[  461.442033] Code: 1ac40863 1ac20862 b9000802 d65f03c0 (b9400c22) 
[  461.442183] ---[ end trace b4abbce650fa8f53 ]---