You are not logged in.

#1 2022-12-05 16:28:12

Cycle00
Member
Registered: 2022-12-05
Posts: 8

New Arch Linux install on Pixelbook Go, audio isn't working

I recently replaced my ChromeOS installation on my Pixelbook Go, and I've run into a multitude of issues. The one I haven't been able to solve is my broken audio. Originally, when running

aplay -l

, it outputted something like no audio devices detected or something. I've gotten to the point where it outputs:

**** List of PLAYBACK Hardware Devices ****
card 1: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: PCH [HDA Intel PCH], device 7: HDMI 1 [HDMI 1]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: PCH [HDA Intel PCH], device 8: HDMI 2 [HDMI 2]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: PCH [HDA Intel PCH], device 9: HDMI 3 [HDMI 3]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: PCH [HDA Intel PCH], device 10: HDMI 4 [HDMI 4]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

When I look into my audio devices GUI on KDE, I have 5 audio devices, each called: "Built-in Audio Pro" and "Built-in Audio Pro 7-10". I've tried a couple things from other posts but I haven't gotten anything to work. Any help would be appreciated.

Offline

#2 2022-12-05 18:15:57

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,659

Re: New Arch Linux install on Pixelbook Go, audio isn't working

Welcome to the boards,

How exactly did you "get it to that point" ? All of these are HDMI devices, none of them will be your internal speakers. If "getting to that point" includes a modprobe.d conf file to the likes of

options snd-hda-intel disable_dmic_detect=0 
options snd-intel-dspcfg dsp_driver=1

then remove that file again, install sof-firmware instead and reboot and recheck. If devices don'tshow up or things still don't work, post

sudo dmesg | grep -iE 'snd|hda|sof'

Offline

#3 2022-12-05 20:53:42

Cycle00
Member
Registered: 2022-12-05
Posts: 8

Re: New Arch Linux install on Pixelbook Go, audio isn't working

Thanks for the quick reply,

I spent a good couple of hours troubleshooting a couple days ago, I don't really know exactly what I did at this point.
The modprobe.d conf file contains the lines:

blacklist snd-intel8x0m

I've got an alsa.conf file that contains

options snd_hda_intel index=1 model=,alc283-chrome

and there's also an "inteldsp.conf" file that contains

options snd-intel-dspcfg dsp_driver=1

I already had sof-firmware installed, and removing the inteldsp.conf file removed all of those audio sources.

sudo dmesg | grep -iE 'snd|hda|sof'

gives me

[    0.067051] software IO TLB: area num 4.
[    0.302371] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.333396] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.333400] software IO TLB: mapped [mem 0x0000000072980000-0x0000000076980000] (64MB)
[    3.203851] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    3.802248] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    3.802966] snd_soc_skl 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    3.912869] HDMI HDA Codec ehdaudio0D2: Max dais supported: 3

Offline

#4 2022-12-05 21:10:54

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,659

Re: New Arch Linux install on Pixelbook Go, audio isn't working

I found the following earlier thread on a pixel book https://bbs.archlinux.org/viewtopic.php?id=276092 check the instructions in: https://github.com/jmontleon/pixelbook-fedora#Audio for copying some custom firmware files.

Offline

#5 2022-12-06 01:04:19

Cycle00
Member
Registered: 2022-12-05
Posts: 8

Re: New Arch Linux install on Pixelbook Go, audio isn't working

There were a couple problems: The my Pixelbook Go's board model is not eve, but atlas, so I downloaded the atlas build. The problem is that in the /mnt/lib/firmware folder there is no "9d71-GOOGLE-EVEMAX-0-tplg.bin" file or anything similar to that. Another problem are the two fedora packages. I was able to successfully port the pixelbook-alsa-ucm package to Arch, but the other one (pixelbook-acpi) I wasn't able to do. pixelbook-acpi is a script I found in the github files that gets turned into a service somehow by another package called pixelbook-scripts. So yeah 1. Missing bin file, 2. Missing package.

Edit: What I meant by "wasn't able to do" is that I don't know how I could port it over, not fluent enough in either Fedora or Arch.

Last edited by Cycle00 (2022-12-06 01:10:54)

Offline

#6 2022-12-06 04:54:06

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,132

Re: New Arch Linux install on Pixelbook Go, audio isn't working

FWIW, I don't think the pixelbook-acpi needs much porting. The service file (or what certainly looks like a service file) is https://github.com/jmontleon/pixelbook- … pi.service - it doesn't need to be created by a script.It refers to an executable which appears to be https://github.com/jmontleon/pixelbook- … lbook-acpi. But I don't think it is going to affect basic audio. It is for reacting to changes e.g. headphones being plugged in or whatever (and it is not all audio related).

However, I have no idea what an ansible playbook is, so ....


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#7 2022-12-06 19:23:26

Cycle00
Member
Registered: 2022-12-05
Posts: 8

Re: New Arch Linux install on Pixelbook Go, audio isn't working

I basically did everything the guide told me to do, line by line, including using the eve board image. Nothing changed as I expected.

Offline

#8 2022-12-06 21:27:22

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,659

Re: New Arch Linux install on Pixelbook Go, audio isn't working

Then you'll need to find firmware files that match your hardware. Right now by default nothing is remotely detected outside of the HDMI device. Do you have any way to access the previous Chrome OS install? On a googler I found https://github.com/yusefnapora/pixelboo … io-support which might help as well.

Last edited by V1del (2022-12-06 21:31:24)

Offline

#9 2022-12-06 23:46:40

Cycle00
Member
Registered: 2022-12-05
Posts: 8

Re: New Arch Linux install on Pixelbook Go, audio isn't working

Sorry if this seems kind of dumb, but I don't really know where to look or even what to look for. My old Chromeos install got wiped when I installed arch, although I could get a recovery image from the recovery tool. The link you sent is designed to run on Ubuntu, and I dont't know how to get it to run on arch. The script tells me that it needs a "packages-Archlinux.yml" file but I'm too new to linux to know how to make that. Unsurprisingly though, bluetooth works completely fine so for the time being I have connected a BT headset.

Offline

#10 2022-12-07 00:21:08

loqs
Member
Registered: 2014-03-06
Posts: 17,322

Re: New Arch Linux install on Pixelbook Go, audio isn't working

Cycle00 wrote:

There were a couple problems: The my Pixelbook Go's board model is not eve, but atlas, so I downloaded the atlas build. The problem is that in the /mnt/lib/firmware folder there is no "9d71-GOOGLE-EVEMAX-0-tplg.bin" file or anything similar to that.

Unzipping chromeos_15117.112.0_atlas_recovery_stable-channel_mp.bin.zip
On partition 3 In lib/firmware/intel/avs/

da7219-tplg.bin
dmic-tplg.bin
hda-8086280b-tplg.bin
max98373-tplg.bin

What files are in /usr/lib/firmware/intel/avs/ on your system?

Last edited by loqs (2022-12-07 13:20:28)

Offline

#11 2022-12-07 00:29:49

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,132

Re: New Arch Linux install on Pixelbook Go, audio isn't working

Cycle00 wrote:

The script tells me that it needs a "packages-Archlinux.yml" file but I'm too new to linux to know how to make that.

Honestly, if you are new to Linux this is not the project to begin with. I don't want to put you off if you are determined, but it is going to be a frustrating and probably quite lonely exercise because you are trying to get Linux to play nicely with hardware not designed to play nicely with Linux.

There are different cases. Is your current install working well enough for what you need, as opposed to what you want? That means either you don't *need* this machine at all or the existing situation is *good enough**. If that's the situation, you could choose to use the system as is and have a go at getting the 'want's working as and when you have the time and inclination. Just don't hold your breath.

If not, then it depends on whether you can find a Linux distro - any Linux distro - with support for something like your hardware. If so, I would install that at least until you understand the system a bit. If you can find that, you will likely also find there are at least some people interested in solving the same problems and, if they've got Linux working on similar hardware, they probably know something about doing that and may be willing to help.

If neither of those apply, I would wait until you have the opportunity to use Linux on more cooperative hardware.


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#12 2022-12-08 16:37:41

Cycle00
Member
Registered: 2022-12-05
Posts: 8

Re: New Arch Linux install on Pixelbook Go, audio isn't working

loqs wrote:

What files are in /usr/lib/firmware/intel/avs/ on your system?

I don't have a /lib/firmware/intel/avs folder. After making one and moving the files you mentioned from A to B and after a reload there was no change.

Offline

#13 2022-12-08 21:06:57

loqs
Member
Registered: 2014-03-06
Posts: 17,322

Re: New Arch Linux install on Pixelbook Go, audio isn't working

Try copying across from /lib/firmware/intel/

dsp_fw_578A29B8-0890-446F-A80A-2FE202AE0DBA.bin
dsp_fw_B489C2DE-0F96-42E1-8A2D-C25B5091EE49.bin
dsp_fw_C75061F3-F2B2-4DCC-8F9F-82ABB4131E66.bin

Then please post the full output of dmesg.

Last edited by loqs (2022-12-08 21:12:22)

Offline

#14 2022-12-09 06:17:49

Cycle00
Member
Registered: 2022-12-05
Posts: 8

Re: New Arch Linux install on Pixelbook Go, audio isn't working

I copied over the files and after a reboot this was my dmesg

[    0.000000] microcode: microcode updated early to revision 0xf0, date = 2021-11-12
[    0.000000] Linux version 6.0.10-arch2-1 (linux@archlinux) (gcc (GCC) 12.2.0, GNU ld (GNU Binutils) 2.39.0) #1 SMP PREEMPT_DYNAMIC Sat, 26 Nov 2022 16:51:18 +0000
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=099107e6-eed9-4629-841d-04a2ff4deb2a rw rootfstype=ext4 loglevel=3 quiet
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 2032
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007a7d4fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a7d5000-0x000000007a854fff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007a855000-0x000000007a918fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a919000-0x000000007a985fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a986000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000027effffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.60 by EDK II
[    0.000000] efi: ACPI 2.0=0x7aa98000 SMBIOS=0x7a986000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Google Atlas/Atlas, BIOS Google_Atlas.11827.198.0 08/24/2021
[    0.000000] tsc: Detected 1600.000 MHz processor
[    0.000000] tsc: Detected 1599.960 MHz TSC
[    0.000017] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000025] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000036] last_pfn = 0x27f000 max_arch_pfn = 0x400000000
[    0.000386] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001984] last_pfn = 0x7a986 max_arch_pfn = 0x400000000
[    0.023569] Using GB pages for direct mapping
[    0.024019] Secure boot disabled
[    0.024021] RAMDISK: [mem 0x36311000-0x3717ffff]
[    0.024032] ACPI: Early table checksum verification disabled
[    0.024038] ACPI: RSDP 0x000000007AA98000 000024 (v02 COREv4)
[    0.024047] ACPI: XSDT 0x000000007AA980E0 00006C (v01 COREv4 COREBOOT 00000000 CORE 00000000)
[    0.024059] ACPI: FACP 0x000000007AA9CA10 0000F4 (v04 COREv4 COREBOOT 00000000 CORE 00000000)
[    0.024072] ACPI: DSDT 0x000000007AA98280 004783 (v02 COREv4 COREBOOT 20110725 INTL 20190108)
[    0.024080] ACPI: FACS 0x000000007AA98240 000040
[    0.024086] ACPI: FACS 0x000000007AA98240 000040
[    0.024092] ACPI: SSDT 0x000000007AA9CB10 000F82 (v02 COREv4 COREBOOT 0000002A CORE 0000002A)
[    0.024101] ACPI: MCFG 0x000000007AA9DAA0 00003C (v01 COREv4 COREBOOT 00000000 CORE 00000000)
[    0.024108] ACPI: TPM2 0x000000007AA9DAE0 00004C (v04 COREv4 COREBOOT 00000000 CORE 00000000)
[    0.024115] ACPI: APIC 0x000000007AA9DB30 00006C (v02 COREv4 COREBOOT 00000000 CORE 00000000)
[    0.024122] ACPI: NHLT 0x000000007AA9DBA0 001BAC (v05 GOOGLE ATLASMAX 00000000 CORE 00000000)
[    0.024129] ACPI: DMAR 0x000000007AA9F750 000088 (v01 COREv4 COREBOOT 00000000 CORE 00000000)
[    0.024136] ACPI: DBG2 0x000000007AAA17E0 000061 (v00 COREv4 COREBOOT 00000000 CORE 00000000)
[    0.024143] ACPI: HPET 0x000000007AAA1850 000038 (v01 COREv4 COREBOOT 00000000 CORE 00000000)
[    0.024149] ACPI: Reserving FACP table memory at [mem 0x7aa9ca10-0x7aa9cb03]
[    0.024152] ACPI: Reserving DSDT table memory at [mem 0x7aa98280-0x7aa9ca02]
[    0.024155] ACPI: Reserving FACS table memory at [mem 0x7aa98240-0x7aa9827f]
[    0.024157] ACPI: Reserving FACS table memory at [mem 0x7aa98240-0x7aa9827f]
[    0.024159] ACPI: Reserving SSDT table memory at [mem 0x7aa9cb10-0x7aa9da91]
[    0.024162] ACPI: Reserving MCFG table memory at [mem 0x7aa9daa0-0x7aa9dadb]
[    0.024164] ACPI: Reserving TPM2 table memory at [mem 0x7aa9dae0-0x7aa9db2b]
[    0.024166] ACPI: Reserving APIC table memory at [mem 0x7aa9db30-0x7aa9db9b]
[    0.024168] ACPI: Reserving NHLT table memory at [mem 0x7aa9dba0-0x7aa9f74b]
[    0.024170] ACPI: Reserving DMAR table memory at [mem 0x7aa9f750-0x7aa9f7d7]
[    0.024172] ACPI: Reserving DBG2 table memory at [mem 0x7aaa17e0-0x7aaa1840]
[    0.024174] ACPI: Reserving HPET table memory at [mem 0x7aaa1850-0x7aaa1887]
[    0.024334] No NUMA configuration found
[    0.024336] Faking a node at [mem 0x0000000000000000-0x000000027effffff]
[    0.024343] NODE_DATA(0) allocated [mem 0x27effc000-0x27effffff]
[    0.024400] Zone ranges:
[    0.024402]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.024406]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.024411]   Normal   [mem 0x0000000100000000-0x000000027effffff]
[    0.024414]   Device   empty
[    0.024416] Movable zone start for each node
[    0.024418] Early memory node ranges
[    0.024419]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.024423]   node   0: [mem 0x0000000000100000-0x000000007a7d4fff]
[    0.024426]   node   0: [mem 0x000000007a919000-0x000000007a985fff]
[    0.024428]   node   0: [mem 0x0000000100000000-0x000000027effffff]
[    0.024432] Initmem setup node 0 [mem 0x0000000000001000-0x000000027effffff]
[    0.024441] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.024488] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.030299] On node 0, zone DMA32: 324 pages in unavailable ranges
[    0.048398] On node 0, zone Normal: 22138 pages in unavailable ranges
[    0.048487] On node 0, zone Normal: 4096 pages in unavailable ranges
[    0.048512] Reserving Intel graphics memory at [mem 0x7c000000-0x7fffffff]
[    0.048869] ACPI: PM-Timer IO Port: 0x1808
[    0.048915] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.048922] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.048926] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.048936] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.048938] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.048944] TSC deadline timer available
[    0.048946] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.048964] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.048968] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.048972] PM: hibernation: Registered nosave memory: [mem 0x7a7d5000-0x7a854fff]
[    0.048974] PM: hibernation: Registered nosave memory: [mem 0x7a855000-0x7a918fff]
[    0.048977] PM: hibernation: Registered nosave memory: [mem 0x7a986000-0x7fffffff]
[    0.048978] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xffffffff]
[    0.048982] [mem 0x80000000-0xffffffff] available for PCI devices
[    0.048985] Booting paravirtualized kernel on bare hardware
[    0.048989] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.062441] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:4 nr_node_ids:1
[    0.062751] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u524288
[    0.062762] pcpu-alloc: s221184 r8192 d28672 u524288 alloc=1*2097152
[    0.062767] pcpu-alloc: [0] 0 1 2 3 
[    0.062800] Fallback order for Node 0: 0 
[    0.062806] Built 1 zonelists, mobility grouping on.  Total pages: 2036944
[    0.062809] Policy zone: Normal
[    0.062811] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=099107e6-eed9-4629-841d-04a2ff4deb2a rw rootfstype=ext4 loglevel=3 quiet
[    0.062952] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-linux", will be passed to user space.
[    0.063824] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.064253] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.064593] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.064613] software IO TLB: area num 4.
[    0.115210] Memory: 7985592K/8281988K available (16391K kernel code, 2090K rwdata, 11376K rodata, 2124K init, 3480K bss, 296136K reserved, 0K cma-reserved)
[    0.117913] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.118009] Kernel/User page tables isolation: enabled
[    0.118040] ftrace: allocating 45971 entries in 180 pages
[    0.136626] ftrace: allocated 180 pages with 4 groups
[    0.136834] Dynamic Preempt: full
[    0.137046] rcu: Preemptible hierarchical RCU implementation.
[    0.137048] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
[    0.137050] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.137053] 	Trampoline variant of Tasks RCU enabled.
[    0.137054] 	Rude variant of Tasks RCU enabled.
[    0.137055] 	Tracing variant of Tasks RCU enabled.
[    0.137057] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.137059] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.150511] NR_IRQS: 20736, nr_irqs: 1024, preallocated irqs: 16
[    0.150811] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.151080] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.151172] random: crng init done
[    0.151232] Console: colour dummy device 80x25
[    0.151266] printk: console [tty0] enabled
[    0.151317] ACPI: Core revision 20220331
[    0.151448] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.151452] APIC: Switch to symmetric I/O mode setup
[    0.151456] DMAR: Host address width 39
[    0.151458] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.151473] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.151481] DMAR: RMRR base: 0x0000007b800000 end: 0x0000007fffffff
[    0.151485] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.151495] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.151502] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.151505] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.151508] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.153546] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.153553] x2apic enabled
[    0.153578] Switched APIC routing to cluster x2apic.
[    0.157533] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x170fff30cc4, max_idle_ns: 440795237869 ns
[    0.157546] Calibrating delay loop (skipped), value calculated using timer frequency.. 3201.25 BogoMIPS (lpj=5333200)
[    0.157553] pid_max: default: 32768 minimum: 301
[    0.159929] LSM: Security Framework initializing
[    0.159942] landlock: Up and running.
[    0.159946] Yama: becoming mindful.
[    0.159963] LSM support for eBPF active
[    0.160023] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.160052] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.160532] x86/cpu: SGX disabled by BIOS.
[    0.160546] CPU0: Thermal monitoring enabled (TM1)
[    0.160640] process: using mwait in idle threads
[    0.160645] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.160649] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.160660] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.160665] Spectre V2 : Mitigation: IBRS
[    0.160667] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.160669] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.160672] RETBleed: Mitigation: IBRS
[    0.160675] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.160680] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.160696] MDS: Mitigation: Clear CPU buffers
[    0.160698] MMIO Stale Data: Mitigation: Clear CPU buffers
[    0.160709] SRBDS: Mitigation: Microcode
[    0.160875] Freeing SMP alternatives memory: 36K
[    0.160875] smpboot: CPU0: Intel(R) Core(TM) m3-8100Y CPU @ 1.10GHz (family: 0x6, model: 0x8e, stepping: 0x9)
[    0.160875] cblist_init_generic: Setting adjustable number of callback queues.
[    0.160875] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.160875] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.160875] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.160875] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.160875] ... version:                4
[    0.160875] ... bit width:              48
[    0.160875] ... generic registers:      4
[    0.160875] ... value mask:             0000ffffffffffff
[    0.160875] ... max period:             00007fffffffffff
[    0.160875] ... fixed-purpose events:   3
[    0.160875] ... event mask:             000000070000000f
[    0.160875] Estimated ratio of average max frequency by base frequency (times 1024): 1728
[    0.160875] rcu: Hierarchical SRCU implementation.
[    0.160875] rcu: 	Max phase no-delay instances is 1000.
[    0.160875] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.160875] smp: Bringing up secondary CPUs ...
[    0.160875] x86: Booting SMP configuration:
[    0.160875] .... node  #0, CPUs:      #1
[    0.166372] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.166372] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
[    0.166372]  #2 #3
[    0.175509] smp: Brought up 1 node, 4 CPUs
[    0.175509] smpboot: Max logical packages: 1
[    0.175509] smpboot: Total of 4 processors activated (12804.00 BogoMIPS)
[    0.178163] devtmpfs: initialized
[    0.178163] x86/mm: Memory block size: 128MB
[    0.179252] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.179252] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.179252] pinctrl core: initialized pinctrl subsystem
[    0.179252] PM: RTC time: 06:07:47, date: 2022-12-09
[    0.181810] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.182246] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.182394] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.182537] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.182575] audit: initializing netlink subsys (disabled)
[    0.182599] audit: type=2000 audit(1670566067.023:1): state=initialized audit_enabled=0 res=1
[    0.182599] thermal_sys: Registered thermal governor 'fair_share'
[    0.182599] thermal_sys: Registered thermal governor 'bang_bang'
[    0.182599] thermal_sys: Registered thermal governor 'step_wise'
[    0.182599] thermal_sys: Registered thermal governor 'user_space'
[    0.182599] thermal_sys: Registered thermal governor 'power_allocator'
[    0.182599] cpuidle: using governor ladder
[    0.182599] cpuidle: using governor menu
[    0.182599] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.182599] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.182599] PCI: not using MMCONFIG
[    0.182599] PCI: Using configuration type 1 for base access
[    0.187869] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.187884] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.187884] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.187884] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.187884] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.187884] ACPI: Added _OSI(Module Device)
[    0.187884] ACPI: Added _OSI(Processor Device)
[    0.187884] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.187884] ACPI: Added _OSI(Processor Aggregator Device)
[    0.187884] ACPI: Added _OSI(Linux-Dell-Video)
[    0.187884] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.187884] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.202051] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    0.205762] ACPI: EC: EC started
[    0.205765] ACPI: EC: interrupt blocked
[    0.206031] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.206037] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[    0.206041] ACPI: Interpreter enabled
[    0.206083] ACPI: PM: (supports S0 S3 S4 S5)
[    0.206086] ACPI: Using IOAPIC for interrupt routing
[    0.206141] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.207543] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in ACPI motherboard resources
[    0.207543] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.207543] PCI: Using E820 reservations for host bridge windows
[    0.213594] ACPI: PM: Power Resource [PRIC]
[    0.264890] ACPI: PM: Power Resource [FCPR]
[    0.272712] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.272728] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.272831] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    0.272852] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.274488] PCI host bridge to bus 0000:00
[    0.274494] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.274500] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.274504] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.274509] pci_bus 0000:00: root bus resource [mem 0x80000001-0xdfffffff window]
[    0.274512] pci_bus 0000:00: root bus resource [mem 0x800000000-0xbffffffff window]
[    0.274516] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.274520] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.274524] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.274578] pci 0000:00:00.0: [8086:590c] type 00 class 0x060000
[    0.274818] pci 0000:00:02.0: [8086:591c] type 00 class 0x030000
[    0.274838] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd0ffffff 64bit]
[    0.274852] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.274862] pci 0000:00:02.0: reg 0x20: [io  0x1c00-0x1c3f]
[    0.274895] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.274902] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.275046] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[    0.275068] pci 0000:00:04.0: reg 0x10: [mem 0xd1530000-0xd1537fff 64bit]
[    0.275299] pci 0000:00:05.0: [8086:1919] type 00 class 0x048000
[    0.275330] pci 0000:00:05.0: reg 0x10: [mem 0xd1000000-0xd13fffff 64bit]
[    0.275545] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[    0.275568] pci 0000:00:08.0: reg 0x10: [mem 0xd1540000-0xd1540fff 64bit]
[    0.275778] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
[    0.275813] pci 0000:00:14.0: reg 0x10: [mem 0xd1500000-0xd150ffff 64bit]
[    0.275925] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.276152] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
[    0.276187] pci 0000:00:14.2: reg 0x10: [mem 0xd1541000-0xd1541fff 64bit]
[    0.276443] pci 0000:00:14.3: [8086:9d32] type 00 class 0x048000
[    0.276560] pci 0000:00:14.3: reg 0x10: [mem 0xd1510000-0xd151ffff 64bit]
[    0.277188] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000
[    0.277231] pci 0000:00:15.0: reg 0x10: [mem 0xd1542000-0xd1542fff 64bit]
[    0.277537] pci 0000:00:15.2: [8086:9d62] type 00 class 0x118000
[    0.277583] pci 0000:00:15.2: reg 0x10: [mem 0xd1543000-0xd1543fff 64bit]
[    0.277892] pci 0000:00:15.3: [8086:9d63] type 00 class 0x118000
[    0.277935] pci 0000:00:15.3: reg 0x10: [mem 0xd1544000-0xd1544fff 64bit]
[    0.278260] pci 0000:00:19.0: [8086:9d66] type 00 class 0x118000
[    0.278303] pci 0000:00:19.0: reg 0x10: [mem 0xfe034000-0xfe034fff 64bit]
[    0.278332] pci 0000:00:19.0: reg 0x18: [mem 0xd1546000-0xd1546fff 64bit]
[    0.278610] pci 0000:00:19.2: [8086:9d64] type 00 class 0x118000
[    0.278653] pci 0000:00:19.2: reg 0x10: [mem 0xd1547000-0xd1547fff 64bit]
[    0.278983] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400
[    0.279130] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.279389] pci 0000:00:1e.0: [8086:9d27] type 00 class 0x118000
[    0.279432] pci 0000:00:1e.0: reg 0x10: [mem 0xd1548000-0xd1548fff 64bit]
[    0.279462] pci 0000:00:1e.0: reg 0x18: [mem 0xd1549000-0xd1549fff 64bit]
[    0.279744] pci 0000:00:1e.2: [8086:9d29] type 00 class 0x118000
[    0.279786] pci 0000:00:1e.2: reg 0x10: [mem 0xd154a000-0xd154afff 64bit]
[    0.280095] pci 0000:00:1e.4: [8086:9d2b] type 00 class 0x080501
[    0.280136] pci 0000:00:1e.4: reg 0x10: [mem 0xd154b000-0xd154bfff 64bit]
[    0.280739] pci 0000:00:1f.0: [8086:9d4b] type 00 class 0x060100
[    0.281043] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
[    0.281073] pci 0000:00:1f.2: reg 0x10: [mem 0xd1538000-0xd153bfff]
[    0.281321] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040100
[    0.281362] pci 0000:00:1f.3: reg 0x10: [mem 0xd153c000-0xd153ffff 64bit]
[    0.281413] pci 0000:00:1f.3: reg 0x20: [mem 0xd1520000-0xd152ffff 64bit]
[    0.281495] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.281886] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
[    0.281957] pci 0000:00:1f.4: reg 0x10: [mem 0xd154d000-0xd154d0ff 64bit]
[    0.282037] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.282269] pci 0000:00:1f.5: [8086:9d24] type 00 class 0x000000
[    0.282300] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    0.282809] pci 0000:01:00.0: [8086:2526] type 00 class 0x028000
[    0.282963] pci 0000:01:00.0: reg 0x10: [mem 0xd1400000-0xd1403fff 64bit]
[    0.283364] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.284349] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.284371] pci 0000:00:1c.0:   bridge window [mem 0xd1400000-0xd14fffff]
[    0.287753] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    0.287963] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.288168] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.288372] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.288575] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[    0.288777] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
[    0.288951] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[    0.288951] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[    0.293430] ACPI: EC: interrupt unblocked
[    0.293433] ACPI: EC: event unblocked
[    0.293448] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.293451] ACPI: EC: GPE=0x6e
[    0.293455] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[    0.293459] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[    0.294257] iommu: Default domain type: Translated 
[    0.294257] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.294563] SCSI subsystem initialized
[    0.294575] libata version 3.00 loaded.
[    0.294575] ACPI: bus type USB registered
[    0.294575] usbcore: registered new interface driver usbfs
[    0.294575] usbcore: registered new interface driver hub
[    0.294575] usbcore: registered new device driver usb
[    0.294575] pps_core: LinuxPPS API ver. 1 registered
[    0.294575] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.294575] PTP clock support registered
[    0.294575] EDAC MC: Ver: 3.0.0
[    0.297601] Registered efivars operations
[    0.297919] NetLabel: Initializing
[    0.297922] NetLabel:  domain hash size = 128
[    0.297925] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.297960] NetLabel:  unlabeled traffic allowed by default
[    0.297969] mctp: management component transport protocol core
[    0.297971] NET: Registered PF_MCTP protocol family
[    0.297978] PCI: Using ACPI for IRQ routing
[    0.305372] PCI: pci_cache_line_size set to 64 bytes
[    0.305753] e820: reserve RAM buffer [mem 0x7a7d5000-0x7bffffff]
[    0.305757] e820: reserve RAM buffer [mem 0x7a986000-0x7bffffff]
[    0.305760] e820: reserve RAM buffer [mem 0x27f000000-0x27fffffff]
[    0.305789] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.305789] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.305789] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.305789] vgaarb: loaded
[    0.308707] clocksource: Switched to clocksource tsc-early
[    0.328818] VFS: Disk quotas dquot_6.6.0
[    0.328848] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.328968] pnp: PnP ACPI init
[    0.329486] system 00:00: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.329504] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.329509] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.329514] system 00:00: [mem 0xe0000000-0xe3ffffff] has been reserved
[    0.329519] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.329523] system 00:00: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.329528] system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.329533] system 00:00: [mem 0xff000000-0xffffffff] has been reserved
[    0.329538] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.329543] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.330141] system 00:01: [io  0x1800-0x18fe] has been reserved
[    0.330286] system 00:03: [io  0x0900-0x09fe] has been reserved
[    0.330391] system 00:04: [io  0x0200] has been reserved
[    0.330397] system 00:04: [io  0x0204] has been reserved
[    0.330401] system 00:04: [io  0x0800-0x087f] has been reserved
[    0.330405] system 00:04: [io  0x0880-0x08ff] has been reserved
[    0.332234] pnp: PnP ACPI: found 6 devices
[    0.339502] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.339651] NET: Registered PF_INET protocol family
[    0.339833] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.343680] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.343747] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.343814] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.344069] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.344258] TCP: Hash tables configured (established 65536 bind 65536)
[    0.344370] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.344452] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.344500] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.344586] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.344600] NET: Registered PF_XDP protocol family
[    0.344622] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.344646] pci 0000:00:1c.0:   bridge window [mem 0xd1400000-0xd14fffff]
[    0.344668] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.344673] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.344677] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.344681] pci_bus 0000:00: resource 7 [mem 0x80000001-0xdfffffff window]
[    0.344684] pci_bus 0000:00: resource 8 [mem 0x800000000-0xbffffffff window]
[    0.344688] pci_bus 0000:00: resource 9 [mem 0xfd000000-0xfe7fffff window]
[    0.344692] pci_bus 0000:00: resource 10 [mem 0xfed40000-0xfed44fff window]
[    0.344696] pci_bus 0000:01: resource 1 [mem 0xd1400000-0xd14fffff]
[    0.345652] PCI: CLS 64 bytes, default 64
[    0.345687] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.345689] software IO TLB: mapped [mem 0x0000000072980000-0x0000000076980000] (64MB)
[    0.345753] Trying to unpack rootfs image as initramfs...
[    0.347224] Initialise system trusted keyrings
[    0.347241] Key type blacklist registered
[    0.347356] workingset: timestamp_bits=41 max_order=21 bucket_order=0
[    0.350815] zbud: loaded
[    0.351312] integrity: Platform Keyring initialized
[    0.351318] integrity: Machine keyring initialized
[    0.372199] Key type asymmetric registered
[    0.372205] Asymmetric key parser 'x509' registered
[    0.472349] Freeing initrd memory: 14780K
[    0.479374] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[    0.479416] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    0.479488] io scheduler mq-deadline registered
[    0.479493] io scheduler kyber registered
[    0.479573] io scheduler bfq registered
[    0.480681] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
[    0.480820] pcieport 0000:00:1c.0: AER: enabled with IRQ 122
[    0.481069] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.481995] ACPI: AC: AC Adapter [AC] (off-line)
[    0.482112] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03/PNP0C09:00/PNP0C0D:00/input/input0
[    0.482213] ACPI: button: Lid Switch [LID0]
[    0.482296] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.482374] ACPI: button: Power Button [PWRF]
[    0.483518] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.484969] ACPI: battery: Slot [BAT0] (battery present)
[    0.487474] hpet_acpi_add: no address or irqs in _CRS
[    0.487573] Non-volatile memory driver v1.3
[    0.487576] Linux agpgart interface v0.103
[    0.487635] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[    0.487689] ACPI: bus type drm_connector registered
[    0.488767] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.488774] ehci-pci: EHCI PCI platform driver
[    0.488792] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.488796] ohci-pci: OHCI PCI platform driver
[    0.488812] uhci_hcd: USB Universal Host Controller Interface driver
[    0.488876] usbcore: registered new interface driver usbserial_generic
[    0.488885] usbserial: USB Serial support registered for generic
[    0.489090] rtc_cmos 00:02: RTC can wake from S4
[    0.489902] rtc_cmos 00:02: registered as rtc0
[    0.490035] rtc_cmos 00:02: setting system clock to 2022-12-09T06:07:48 UTC (1670566068)
[    0.490069] rtc_cmos 00:02: alarms up to one month, 242 bytes nvram
[    0.490299] intel_pstate: Intel P-state driver initializing
[    0.490557] intel_pstate: HWP enabled
[    0.490584] ledtrig-cpu: registered to indicate activity on CPUs
[    0.490668] efifb: probing for efifb
[    0.490678] efifb: No BGRT, not showing boot graphics
[    0.490679] efifb: framebuffer at 0xc0000000, using 8128k, total 8128k
[    0.490681] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    0.490682] efifb: scrolling: redraw
[    0.490683] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.490717] fbcon: Deferring console take-over
[    0.490718] fb0: EFI VGA frame buffer device
[    0.490731] hid: raw HID events driver (C) Jiri Kosina
[    0.490799] intel_pmc_core intel_pmc_core.0:  initialized
[    0.490853] drop_monitor: Initializing network drop monitor service
[    0.504512] Initializing XFRM netlink socket
[    0.504615] NET: Registered PF_INET6 protocol family
[    0.508364] Segment Routing with IPv6
[    0.508366] RPL Segment Routing with IPv6
[    0.508389] In-situ OAM (IOAM) with IPv6
[    0.508414] NET: Registered PF_PACKET protocol family
[    0.508791] microcode: sig=0x806e9, pf=0x10, revision=0xf0
[    0.508807] microcode: Microcode Update Driver: v2.2.
[    0.508813] IPI shorthand broadcast: enabled
[    0.508847] sched_clock: Marking stable (502021959, 6632874)->(568882090, -60227257)
[    0.509053] registered taskstats version 1
[    0.509129] Loading compiled-in X.509 certificates
[    0.512374] Loaded X.509 cert 'Build time autogenerated kernel key: a3f5251ce6c47362f47989b63983a0be359be80c'
[    0.512541] zswap: loaded using pool lz4/z3fold
[    0.512773] Key type .fscrypt registered
[    0.512775] Key type fscrypt-provisioning registered
[    0.513962] PM:   Magic number: 2:412:114
[    0.514110] RAS: Correctable Errors collector initialized.
[    0.515249] Freeing unused decrypted memory: 2036K
[    0.515624] Freeing unused kernel image (initmem) memory: 2124K
[    0.537852] Write protecting the kernel read-only data: 30720k
[    0.538607] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    0.538883] Freeing unused kernel image (rodata/data gap) memory: 912K
[    0.592556] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.592560] rodata_test: all tests were successful
[    0.592561] x86/mm: Checking user space page tables
[    0.636939] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.636953] Run /init as init process
[    0.636955]   with arguments:
[    0.636956]     /init
[    0.636957]   with environment:
[    0.636958]     HOME=/
[    0.636958]     TERM=linux
[    0.636959]     BOOT_IMAGE=/vmlinuz-linux
[    0.651190] fbcon: Taking over console
[    0.651254] Console: switching to colour frame buffer device 240x67
[    0.748327] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    0.748333] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    0.748922] i8042: Warning: Keylock active
[    0.749143] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.756435] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.756445] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.757613] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
[    0.757989] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.757994] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.757999] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    0.758066] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.00
[    0.758070] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.758073] usb usb1: Product: xHCI Host Controller
[    0.758075] usb usb1: Manufacturer: Linux 6.0.10-arch2-1 xhci-hcd
[    0.758077] usb usb1: SerialNumber: 0000:00:14.0
[    0.758259] hub 1-0:1.0: USB hub found
[    0.758290] hub 1-0:1.0: 12 ports detected
[    0.758787] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.00
[    0.758791] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.758794] usb usb2: Product: xHCI Host Controller
[    0.758796] usb usb2: Manufacturer: Linux 6.0.10-arch2-1 xhci-hcd
[    0.758798] usb usb2: SerialNumber: 0000:00:14.0
[    0.758902] hub 2-0:1.0: USB hub found
[    0.758925] hub 2-0:1.0: 6 ports detected
[    0.788383] sdhci: Secure Digital Host Controller Interface driver
[    0.788386] sdhci: Copyright(c) Pierre Ossman
[    0.798146] sdhci-pci 0000:00:1e.4: SDHCI controller found [8086:9d2b] (rev 21)
[    0.798625] mmc0: SDHCI controller on PCI [0000:00:1e.4] using ADMA 64-bit
[    0.799087] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    0.908301] mmc0: new HS400 MMC card at address 0001
[    0.923766] mmcblk0: mmc0:0001 hC8aP> 58.2 GiB 
[    0.927274]  mmcblk0: p1 p2
[    0.927836] mmcblk0boot0: mmc0:0001 hC8aP> 4.00 MiB 
[    0.928687] mmcblk0boot1: mmc0:0001 hC8aP> 4.00 MiB 
[    0.929375] mmcblk0rpmb: mmc0:0001 hC8aP> 16.0 MiB, chardev (239:0)
[    1.007731] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[    1.149133] usb 1-3: New USB device found, idVendor=8087, idProduct=0025, bcdDevice= 0.02
[    1.149148] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.262742] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Quota mode: none.
[    1.354250] tsc: Refined TSC clocksource calibration: 1608.002 MHz
[    1.354270] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x172dac31c1c, max_idle_ns: 440795261142 ns
[    1.354329] clocksource: Switched to clocksource tsc
[    1.455068] systemd[1]: systemd 252.2-2-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    1.455077] systemd[1]: Detected architecture x86-64.
[    1.574657] systemd-fstab-generator[209]: Mount point  is not a valid path, ignoring.
[    1.577034] systemd-fstab-generator[209]: Mount point  is not a valid path, ignoring.
[    1.592465] zram: Added device: zram0
[    1.684030] systemd[1]: Queued start job for default target Graphical Interface.
[    1.708332] systemd[1]: Created slice Slice /system/getty.
[    1.708745] systemd[1]: Created slice Slice /system/modprobe.
[    1.709046] systemd[1]: Created slice Slice /system/systemd-fsck.
[    1.709312] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[    1.709500] systemd[1]: Created slice User and Session Slice.
[    1.709585] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    1.709633] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    1.709788] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    1.709819] systemd[1]: Reached target Local Encrypted Volumes.
[    1.709833] systemd[1]: Reached target Login Prompts.
[    1.709843] systemd[1]: Reached target Local Integrity Protected Volumes.
[    1.709863] systemd[1]: Reached target Path Units.
[    1.709875] systemd[1]: Reached target Remote File Systems.
[    1.709883] systemd[1]: Reached target Slice Units.
[    1.709903] systemd[1]: Reached target Local Verity Protected Volumes.
[    1.709975] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    1.710611] systemd[1]: Listening on LVM2 poll daemon socket.
[    1.711703] systemd[1]: Listening on Process Core Dump Socket.
[    1.711864] systemd[1]: Listening on Journal Audit Socket.
[    1.711963] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.712070] systemd[1]: Listening on Journal Socket.
[    1.712184] systemd[1]: Listening on udev Control Socket.
[    1.712274] systemd[1]: Listening on udev Kernel Socket.
[    1.713039] systemd[1]: Mounting Huge Pages File System...
[    1.713903] systemd[1]: Mounting POSIX Message Queue File System...
[    1.715203] systemd[1]: Mounting Kernel Debug File System...
[    1.716287] systemd[1]: Mounting Kernel Trace File System...
[    1.717794] systemd[1]: Starting Create List of Static Device Nodes...
[    1.718868] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    1.720229] systemd[1]: Starting Load Kernel Module configfs...
[    1.721426] systemd[1]: Starting Load Kernel Module drm...
[    1.722896] systemd[1]: Starting Load Kernel Module fuse...
[    1.723035] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[    1.725254] systemd[1]: Starting Journal Service...
[    1.729040] systemd[1]: Starting Load Kernel Modules...
[    1.730153] systemd[1]: Starting Remount Root and Kernel File Systems...
[    1.730275] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[    1.731477] systemd[1]: Starting Coldplug All udev Devices...
[    1.733606] systemd[1]: Mounted Huge Pages File System.
[    1.733753] systemd[1]: Mounted POSIX Message Queue File System.
[    1.733872] systemd[1]: Mounted Kernel Debug File System.
[    1.733977] systemd[1]: Mounted Kernel Trace File System.
[    1.734389] systemd[1]: Finished Create List of Static Device Nodes.
[    1.734831] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    1.735007] systemd[1]: Finished Load Kernel Module configfs.
[    1.735355] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    1.735522] systemd[1]: Finished Load Kernel Module drm.
[    1.736880] systemd[1]: Mounting Kernel Configuration File System...
[    1.743858] fuse: init (API version 7.36)
[    1.745270] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    1.745484] systemd[1]: Finished Load Kernel Module fuse.
[    1.745738] systemd[1]: Mounted Kernel Configuration File System.
[    1.747135] systemd[1]: Mounting FUSE Control File System...
[    1.751368] EXT4-fs (mmcblk0p2): re-mounted. Quota mode: none.
[    1.752733] systemd[1]: Mounted FUSE Control File System.
[    1.753216] systemd[1]: Finished Remount Root and Kernel File Systems.
[    1.753291] audit: type=1130 audit(1670566069.757:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.753447] systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[    1.756914] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[    1.761718] systemd[1]: Starting Load/Save Random Seed...
[    1.761844] systemd[1]: Create System Users was skipped because no trigger condition checks were met.
[    1.763241] systemd[1]: Starting Create Static Device Nodes in /dev...
[    1.776050] device-mapper: uevent: version 1.0.3
[    1.776293] systemd[1]: Finished Load/Save Random Seed.
[    1.776358] audit: type=1130 audit(1670566069.780:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.776466] systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[    1.776540] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    1.790098] systemd[1]: Started Journal Service.
[    1.790902] audit: type=1130 audit(1670566069.794:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.797649] Asymmetric key parser 'pkcs8' registered
[    1.805042] audit: type=1130 audit(1670566069.810:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.813967] systemd-journald[229]: Received client request to flush runtime journal.
[    1.822735] audit: type=1130 audit(1670566069.827:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.823617] audit: type=1130 audit(1670566069.827:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.838454] audit: type=1130 audit(1670566069.844:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.839277] audit: type=1334 audit(1670566069.844:9): prog-id=9 op=LOAD
[    1.839370] audit: type=1334 audit(1670566069.844:10): prog-id=10 op=LOAD
[    2.149748] zram0: detected capacity change from 0 to 8032256
[    2.185223] chromeos ramoops using acpi device.
[    2.196027] Consider using thermal netlink events interface
[    2.241116] Adding 4016124k swap on /dev/zram0.  Priority:100 extents:1 across:4016124k SSDscFS
[    2.289148] cros-usbpd-notify-acpi GOOG0003:00: Couldn't get Chrome EC device pointer.
[    2.316415] mc: Linux media interface: v0.10
[    2.382171] cros_ec_lpcs GOOG0004:00: Chrome EC device registered
[    2.448874] videodev: Linux video capture interface: v2.00
[    2.509406] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    2.528448] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    2.536761] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    2.567666] at24 i2c-INT3499:00: supply vcc not found, using dummy regulator
[    2.591627] at24 i2c-INT3499:00: 2048 byte INT3499:00 EEPROM, read-only
[    2.596938] idma64 idma64.5: Found Intel integrated DMA 64-bit
[    2.598340] idma64 idma64.6: Found Intel integrated DMA 64-bit
[    2.602854] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    2.604873] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.605227] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.607119] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    2.607124] cfg80211: failed to load regulatory.db
[    2.629936] input: ACPI0C50:01 04F3:30C5 Mouse as /devices/pci0000:00/0000:00:15.2/i2c_designware.1/i2c-1/i2c-ACPI0C50:01/0018:04F3:30C5.0001/input/input4
[    2.629996] input: ACPI0C50:01 04F3:30C5 Touchpad as /devices/pci0000:00/0000:00:15.2/i2c_designware.1/i2c-1/i2c-ACPI0C50:01/0018:04F3:30C5.0001/input/input6
[    2.630047] hid-generic 0018:04F3:30C5.0001: input,hidraw0: I2C HID v1.00 Mouse [ACPI0C50:01 04F3:30C5] on i2c-ACPI0C50:01
[    2.630717] Bluetooth: Core ver 2.22
[    2.630734] NET: Registered PF_BLUETOOTH protocol family
[    2.630736] Bluetooth: HCI device and connection manager initialized
[    2.630741] Bluetooth: HCI socket layer initialized
[    2.630744] Bluetooth: L2CAP socket layer initialized
[    2.630749] Bluetooth: SCO socket layer initialized
[    2.683326] input: ACPI0C50:00 0483:1058 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ACPI0C50:00/0018:0483:1058.0002/input/input7
[    2.683481] hid-generic 0018:0483:1058.0002: input,hidraw1: I2C HID v1.00 Device [ACPI0C50:00 0483:1058] on i2c-ACPI0C50:00
[    2.793357] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    2.793400] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    2.793469] pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000
[    2.793541] pci 0000:00:1f.1: reg 0x10: [mem 0xfd000000-0xfdffffff 64bit]
[    2.809393] ipu3-cio2 0000:00:14.3: device 0x9d32 (rev: 0x1)
[    2.817016] intel_rapl_common: Found RAPL domain package
[    2.817035] intel_rapl_common: Found RAPL domain dram
[    2.819386] ipu3_imgu: module is from the staging directory, the quality is unknown, you have been warned.
[    2.829683] imx208 i2c-INT3478:00: Consider updating driver imx208 to match on endpoints
[    2.841731] i2c i2c-4: 2/2 memory slots populated (from DMI)
[    2.848651] ipu3-imgu 0000:00:05.0: device 0x1919 (rev: 0x1)
[    2.848684] ipu3-imgu 0000:00:05.0: physical base address 0x00000000d1000000, 4194304 bytes
[    2.868294] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[    2.868299] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    2.868301] RAPL PMU: hw unit of domain package 2^-14 Joules
[    2.868302] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    2.868304] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    2.868305] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    2.879846] cryptd: max_cpu_qlen set to 1000
[    2.905428] da7219 i2c-DLGS7219:00: Using default DAI clk names: da7219-dai-wclk, da7219-dai-bclk
[    2.913806] max98373 i2c-MX98373:00: MAX98373 revisionID: 0x43
[    2.914149] max98373 i2c-MX98373:01: MAX98373 revisionID: 0x43
[    2.936766] usbcore: registered new interface driver btusb
[    2.964645] Intel(R) Wireless WiFi driver for Linux
[    2.964864] AVX2 version of gcm_enc/dec engaged.
[    2.964928] AES CTR mode by8 optimization enabled
[    2.989196] intel_rapl_common: Found RAPL domain package
[    2.989203] intel_rapl_common: Found RAPL domain core
[    2.989205] intel_rapl_common: Found RAPL domain uncore
[    2.989207] intel_rapl_common: Found RAPL domain dram
[    2.989209] intel_rapl_common: Found RAPL domain psys
[    3.008898] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    3.029044] Bluetooth: hci0: Found device firmware: intel/ibt-18-16-1.sfi
[    3.029298] Bluetooth: hci0: Boot Address: 0x40800
[    3.029301] Bluetooth: hci0: Firmware Version: 214-6.22
[    3.029304] Bluetooth: hci0: Firmware already loaded
[    3.044229] i801_smbus 0000:00:1f.4: Transaction timeout
[    3.046271] i801_smbus 0000:00:1f.4: Failed terminating the transaction
[    3.046315] i801_smbus 0000:00:1f.4: SMBus is busy, can't use it!
[    3.084710] dw-apb-uart.3: ttyS4 at MMIO 0xfe034000 (irq = 32, base_baud = 115200) is a 16550A
[    3.085923] ipu3-imgu 0000:00:05.0: loaded firmware version irci_irci_ecr-master_20161208_0213_20170112_1500, 17 binaries, 1212984 bytes
[    3.132467] iwlwifi 0000:01:00.0: WRT: Overriding region id 0
[    3.132475] iwlwifi 0000:01:00.0: WRT: Overriding region id 1
[    3.132478] iwlwifi 0000:01:00.0: WRT: Overriding region id 2
[    3.132481] iwlwifi 0000:01:00.0: WRT: Overriding region id 3
[    3.132483] iwlwifi 0000:01:00.0: WRT: Overriding region id 4
[    3.132485] iwlwifi 0000:01:00.0: WRT: Overriding region id 6
[    3.132487] iwlwifi 0000:01:00.0: WRT: Overriding region id 8
[    3.132490] iwlwifi 0000:01:00.0: WRT: Overriding region id 9
[    3.132492] iwlwifi 0000:01:00.0: WRT: Overriding region id 10
[    3.132495] iwlwifi 0000:01:00.0: WRT: Overriding region id 11
[    3.132497] iwlwifi 0000:01:00.0: WRT: Overriding region id 15
[    3.132499] iwlwifi 0000:01:00.0: WRT: Overriding region id 16
[    3.132501] iwlwifi 0000:01:00.0: WRT: Overriding region id 18
[    3.132504] iwlwifi 0000:01:00.0: WRT: Overriding region id 19
[    3.132506] iwlwifi 0000:01:00.0: WRT: Overriding region id 20
[    3.132508] iwlwifi 0000:01:00.0: WRT: Overriding region id 21
[    3.132511] iwlwifi 0000:01:00.0: WRT: Overriding region id 28
[    3.133042] iwlwifi 0000:01:00.0: loaded firmware version 46.50fdb42f.0 9260-th-b0-jf-b0-46.ucode op_mode iwlmvm
[    3.152322] dw-apb-uart.5: ttyS5 at MMIO 0xd1548000 (irq = 20, base_baud = 7500000) is a 16550A
[    3.169856] input: ACPI0C50:01 04F3:30C5 Mouse as /devices/pci0000:00/0000:00:15.2/i2c_designware.1/i2c-1/i2c-ACPI0C50:01/0018:04F3:30C5.0001/input/input9
[    3.169953] input: ACPI0C50:01 04F3:30C5 Touchpad as /devices/pci0000:00/0000:00:15.2/i2c_designware.1/i2c-1/i2c-ACPI0C50:01/0018:04F3:30C5.0001/input/input11
[    3.194513] tpm_tis_spi spi-PRP0001:00: TPM ready IRQ confirmed on attempt 2
[    3.200585] hid-multitouch 0018:04F3:30C5.0001: input,hidraw0: I2C HID v1.00 Mouse [ACPI0C50:01 04F3:30C5] on i2c-ACPI0C50:01
[    3.206686] tpm_tis_spi spi-PRP0001:00: 2.0 TPM (device-id 0x28, rev-id 0)
[    3.260994] input: ACPI0C50:00 0483:1058 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ACPI0C50:00/0018:0483:1058.0002/input/input12
[    3.261296] hid-multitouch 0018:0483:1058.0002: input,hidraw1: I2C HID v1.00 Device [ACPI0C50:00 0483:1058] on i2c-ACPI0C50:00
[    3.293392] tpm_tis_spi spi-PRP0001:00: Cr50 firmware version: B2-C:0 RO_B:0.0.11/4d655eab RW_A:0.5.120/cr50_v2.94_mp.81-9de2b2
[    3.610670] iTCO_vendor_support: vendor-support=0
[    3.611776] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.611780] Bluetooth: BNEP filters: protocol multicast
[    3.611786] Bluetooth: BNEP socket layer initialized
[    3.615250] Bluetooth: MGMT ver 1.22
[    3.633494] NET: Registered PF_ALG protocol family
[    3.635118] Console: switching to colour dummy device 80x25
[    3.635162] i915 0000:00:02.0: vgaarb: deactivate vga console
[    3.635367] mousedev: PS/2 mouse device common for all mice
[    3.706506] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    3.709079] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[    3.752095] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[    3.752237] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    3.776897] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    3.779160] fbcon: i915drmfb (fb0) is primary device
[    3.790121] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    3.790545] Console: switching to colour frame buffer device 240x67
[    3.805858] iwlwifi 0000:01:00.0: Detected Intel(R) Wireless-AC 9260 160MHz, REV=0x321
[    3.805957] thermal thermal_zone7: failed to read out thermal zone (-61)
[    3.807172] snd_soc_skl 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    3.809046] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    3.861958] iwlwifi 0000:01:00.0: base HW address: 9c:fc:e8:9d:bd:09, OTP minor version: 0x4
[    3.929361] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    3.989712] HDMI HDA Codec ehdaudio0D2: Max dais supported: 3
[    4.029975] intel_tcc_cooling: Programmable TCC Offset detected
[    5.253085] kauditd_printk_skb: 30 callbacks suppressed
[    5.253092] audit: type=1100 audit(1670566073.257:41): pid=453 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[    5.253145] audit: type=1101 audit(1670566073.257:42): pid=453 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[    5.254101] audit: type=1103 audit(1670566073.257:43): pid=453 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[    5.308488] audit: type=1130 audit(1670566073.314:44): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@973 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.325121] audit: type=1101 audit(1670566073.330:45): pid=455 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.325155] audit: type=1103 audit(1670566073.330:46): pid=455 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[    5.325250] audit: type=1006 audit(1670566073.330:47): pid=455 uid=0 old-auid=4294967295 auid=973 tty=(none) old-ses=4294967295 ses=1 res=1
[    5.325257] audit: type=1300 audit(1670566073.330:47): arch=c000003e syscall=1 success=yes exit=3 a0=9 a1=7ffd269f0640 a2=3 a3=7ffd269f0355 items=0 ppid=1 pid=455 auid=973 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd" key=(null)
[    5.325262] audit: type=1327 audit(1670566073.330:47): proctitle="(systemd)"
[    5.327695] audit: type=1105 audit(1670566073.334:48): pid=455 uid=0 auid=973 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_systemd_home,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    7.822312] wlan0: authenticate with e0:63:da:a5:9a:e9
[    7.866170] wlan0: send auth to e0:63:da:a5:9a:e9 (try 1/3)
[    7.911700] wlan0: authenticated
[    7.947878] wlan0: associate with e0:63:da:a5:9a:e9 (try 1/3)
[    7.951597] wlan0: RX AssocResp from e0:63:da:a5:9a:e9 (capab=0x1511 status=0 aid=3)
[    7.955601] wlan0: associated
[    8.155113] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   12.696529] kauditd_printk_skb: 3 callbacks suppressed
[   12.696532] audit: type=1100 audit(1670566080.700:52): pid=494 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="dmitr" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   12.696946] audit: type=1101 audit(1670566080.700:53): pid=494 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="dmitr" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   12.697473] audit: type=1103 audit(1670566080.700:54): pid=494 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="dmitr" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   12.697638] audit: type=1006 audit(1670566080.704:55): pid=494 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[   12.697650] audit: type=1300 audit(1670566080.704:55): arch=c000003e syscall=1 success=yes exit=4 a0=8 a1=7ffe418650b0 a2=4 a3=7ffe41864dc4 items=0 ppid=379 pid=494 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=2 comm="sddm-helper" exe="/usr/lib/sddm/sddm-helper" key=(null)
[   12.697664] audit: type=1327 audit(1670566080.704:55): proctitle=2F7573722F6C69622F7364646D2F7364646D2D68656C706572002D2D736F636B6574002F746D702F7364646D2D6175746866626136326137632D633833612D343439352D623764392D666565646531386333376163002D2D69640031002D2D737461727400627370776D002D2D7573657200646D697472
[   12.746745] audit: type=1130 audit(1670566080.750:56): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.755363] audit: type=1101 audit(1670566080.760:57): pid=496 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="dmitr" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.755374] audit: type=1103 audit(1670566080.760:58): pid=496 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="dmitr" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[   12.755505] audit: type=1006 audit(1670566080.760:59): pid=496 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=3 res=1
[   13.620175] Bluetooth: RFCOMM TTY layer initialized
[   13.620185] Bluetooth: RFCOMM socket layer initialized
[   13.620189] Bluetooth: RFCOMM ver 1.11
[   22.967802] kauditd_printk_skb: 10 callbacks suppressed
[   22.967809] audit: type=1131 audit(1670566090.974:68): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@973 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   23.004350] audit: type=1131 audit(1670566091.010:69): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@973 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   33.802167] audit: type=1131 audit(1670566101.807:70): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   33.818568] systemd-journald[229]: Time jumped backwards, rotating.
[   33.880979] audit: type=1334 audit(1670566101.377:71): prog-id=0 op=UNLOAD
[   33.880989] audit: type=1334 audit(1670566101.377:72): prog-id=0 op=UNLOAD
[   33.880994] audit: type=1334 audit(1670566101.377:73): prog-id=0 op=UNLOAD
[   44.734850] audit: type=1100 audit(1670566112.231:74): pid=782 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="dmitr" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   44.734984] audit: type=1101 audit(1670566112.231:75): pid=782 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="dmitr" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   44.735954] audit: type=1110 audit(1670566112.231:76): pid=782 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   44.736100] audit: type=1105 audit(1670566112.231:77): pid=782 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'

Offline

#15 2022-12-09 06:27:23

Cycle00
Member
Registered: 2022-12-05
Posts: 8

Re: New Arch Linux install on Pixelbook Go, audio isn't working

cfr wrote:

it is going to be a frustrating and probably quite lonely exercise because you are trying to get Linux to play nicely with hardware not designed to play nicely with Linux.

Yeah I understand that, it's kind of what I signed up for. Given enough time, research, and trial and error I could probably figure it out eventually, but I do acknowledge that it will be extremely difficult. Arch works well enough with the chromebook, but it would be very nice to eventually squash whatever bugs I couldn't fix on my own.

Offline

Board footer

Powered by FluxBB