I played a bit around… I assume that the keyboard is controlled by the i8042 controller.
dmesg| grep i8042 shows me the following
[ 0.552101] i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
[ 0.552107] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[ 0.553236] serio: i8042 KBD port at 0x60,0x64 irq 1
After i put i8042.nopnp in GRUB_CMDLINE_LINUX_DEFAULT the output of dmesg| grep i8042 changed to
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.1-x86_64 root=UUID=80345748-e340-433f-b7ee-a4a4ea3e44ba rw i8042.nopnp quiet splash apparmor=1 security=apparmor resume=UUID=4f242560-8060-4515-845e-636bb58105e4 udev.log_priority=3
[ 0.021494] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.1-x86_64 root=UUID=80345748-e340-433f-b7ee-a4a4ea3e44ba rw i8042.nopnp quiet splash apparmor=1 security=apparmor resume=UUID=4f242560-8060-4515-845e-636bb58105e4 udev.log_priority=3
[ 0.616789] i8042: PNP detection disabled
[ 0.889057] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.302432] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
But still no keyboard/touchpad. Is there someway to push the hardware detection?