Yes, I opened a ticket with parallels support and got a working solution by adding xhci_hcd.quirks=0x40 in the bootloader option.
Before starting take a snapshot of the VM.
For GRUB:
1. Open Terminal, and execute the following command:
	Code:
	sudo nano /etc/default/grub
 2. Scroll down and locate the line:
	Code:
	GRUB_CMDLINE_LINUX_DEFAULT="quiet"
 3. Replace that line with the following line:
	Code:
	GRUB_CMDLINE_LINUX_DEFAULT="quiet xhci_hcd.quirks=0x40"
 4. Save the file ("Control+X" -> press "Y" -> press "Enter").
5. Next, execute the following command:
For SYSTEMD-BOOT:
1. Find your loader configuration file
	Code:
	sudo bootctl status | grep source
 Example:
	Code:
	arch$ sudo bootctl status | grep source                       
      source: /boot//loader/entries/archlinux-core-main.conf
 2. Edit the loader configuration file and append the xhci_hcd.quirks=0x40 command in the options field, comma separated
	Code:
	sudo nano /boot//loader/entries/archlinux-core-main.conf
 Example:
	Code:
	title    Arch Linux
linux    /Image
initrd   /amd-ucode.img
initrd   /initramfs-linux.img
options  root=PARTUUID=xxxxx-xxxx-xxxx-xxxx-xxxxxxxx rootfstype=btrfs rw rootflags=rw,noatime,compress=lzo,ssd,space_cache=v2,subvolid=256,subvol=/root,subvol=root cgroup_disable=memory add_efi_memmap, xhci_hcd.quirks=0x40