@tobiac
There are various ways to make the FW16 AMD laptop only wake up on the power button, using udev or scripts.
The following disables: Keyboard, Touchpad and lid opening from waking up the laptop.
I use a script on Ubuntu:
#!/bin/sh
# This file should be placed in directory: /usr/lib/systemd/system-sleep
PATH=/sbin:/usr/sbin:/bin:/usr/bin
case "$1" in
pre) echo disabled > /sys/devices/pci0000:00/0000:00:08.1/0000:c1:00.3/usb1/1-4/1-4.3/power/wakeup
echo disabled > /sys/devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/power/wakeup
echo disabled >/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:4b/PNP0C09:00/PNP0C0D:00/power/wakeup
exit 0
;;
post) exit 0
;;
*) exit 1
;;
esac