[alsa-devel] writing an alsa driver

Marco Bodega bo.the.lynx at gmail.com
Wed Jul 22 22:05:36 CEST 2015


Hi all,

I own an Asus x205ta too and I really want to help to make this audio
card works.
I'm using linux next with Michele Curti's patch (as of 23 june)


Here kernel .config:

CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
CONFIG_SND_SOC_INTEL_BYTCR_RT5645_MACH=m
# CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH is no
CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH=m
# CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH is not set
# CONFIG_SND_SOC_INTEL_BROADWELL_MACH is not set
CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
CONFIG_SND_SOC_INTEL_BYTCR_RT5645_MACH=m


bo at X205TA:~$ uname -a
Linux X205TA 4.2.0-rc2-next-20150717+ #3 SMP Wed Jul 22 15:31:59 CEST
2015 x86_64 x86_64 x86_64 GNU/Linux


Output of lsmod:

snd_soc_sst_bytcr_rt5645    16384  0
snd_intel_sst_acpi     16384  1
snd_intel_sst_core     73728  1 snd_intel_sst_acpi
snd_soc_rt5645        139264  1
snd_soc_sst_mfld_platform    90112  3 snd_intel_sst_core
snd_pcm               102400  4
snd_soc_rt5645,snd_soc_core,snd_soc_sst_mfld_platform,snd_soc_sst_bytcr_rt5645




bo at X205TA:~$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: baytrailcraudio [baytrailcraudio], device 0: Baytrail Audio
(*) []
  Subdevices: 1/1
  Subdevice #0: subdevice #0


bo@@X205TA:~$ aplay -D hw:0 -c 2 -r 48000 -f S16_LE
/dev/urandomPlaying
raw data '/dev/urandom' : Signed 16 bit Little Endian, Rate 48000 Hz,
Stereo
aplay: set_params:1297: Unable to install hw params:
ACCESS:  RW_INTERLEAVED
FORMAT:  S16_LE
SUBFORMAT:  STD
SAMPLE_BITS: 16
FRAME_BITS: 32
CHANNELS: 2
RATE: 48000
PERIOD_TIME: 125000
PERIOD_SIZE: 6000
PERIOD_BYTES: 24000
PERIODS: 4
BUFFER_TIME: 500000
BUFFER_SIZE: 24000
BUFFER_BYTES: 96000
TICK_TIME: 0


bo at X205TA:~$ cat /proc/interrupts | grep sst
   6:          0          0          0          0   IO-APIC
28-fasteoi   intel_sst_driver


bo at X205TA:~$ ll /lib/firmware/intel/fw*
-rw-r--r-- 1 root root 647078 lug 22 17:56 /lib/firmware/intel/fw_sst_0f28.bin
-rw-r--r-- 1 root root 265684 lug 22 17:56
/lib/firmware/intel/fw_sst_0f28.bin-48kHz_i2s_master
-rw-r--r-- 1 root root 701614 lug 22 17:56 /lib/firmware/intel/fw_sst_22a8.bin


I read that the firmware used by bytx205_rt5645 is
intel/fw_sst_0f28.bin:

in fact in sst_acpi i have:

{"10EC5648", "X205", "bytx205_rt5645", NULL, "intel/fw_sst_0f28.bin",
                                                &byt_rvp_platform_data
},

but it's bounded to sst1 as i see from disassembling acpi data:
cat dsdt.dsl:
[...]
 Device (SSP1)
 {
                Name (_ADR, Zero)  // _ADR: Address
                Name (_HID, "SSPX0000" /* Intel SSP Device */)  //
_HID: Hardware ID
                Name (_CID, "SSPX0000" /* Intel SSP Device */)  //
_CID: Compatible ID
[...]
                Interrupt (ResourceConsumer, Level, ActiveLow,
Exclusive, ,, )
                {
                    0x0000001D,
                }
                Interrupt (ResourceConsumer, Level, ActiveLow,
Exclusive, ,, )
                {
                    0x00000018,
                }
                Interrupt (ResourceConsumer, Level, ActiveLow,
Exclusive, ,, )
                {
                    0x00000019,
                }
                Interrupt (ResourceConsumer, Level, ActiveLow,
Exclusive, ,, )
                {
                    0x0000001A,
                }
                Interrupt (ResourceConsumer, Level, ActiveLow,
Exclusive, ,, )
                {
                    0x0000001B,
                }
                Interrupt (ResourceConsumer, Level, ActiveLow,
Exclusive, ,, )
                {
                    0x0000001C,
                }
[...]



however the fw is tied to work with SSP0.
What can i do?



I tried to connect parts in routing:

#DSP routing
amixer -c0 sset 'codec_out0 mix 0 pcm0_in' on
amixer -c0 sset 'media0_out mix 0 media1_in' on
amixer -c0 sset 'media1_in Gain 0' 80%
amixer -c0 sset 'media1_in Gain 0 Ramp Delay' 50
amixer -c0 sset 'media1_in Gain 0' off
amixer -c0 sset 'pcm0_in Gain 0' 80%
amixer -c0 sset 'pcm0_in Gain 0 Ramp Delay' 50
amixer -c0 sset 'pcm0_in Gain 0' off
amixer -c0 sset 'codec_out0 Gain 0' 80%
amixer -c0 sset 'codec_out0 Gain 0 Ramp Delay' 50
amixer -c0 sset 'codec_out0 Gain 0' off

#Codec routin, if you have different one please modfiy
amixer -c0 sset "DAC MIXL INF1" on
amixer -c0 sset "DAC MIXR INF1" on
amixer -c0 sset "Stereo DAC MIXL DAC L1" on
amixer -c0 sset "Stereo DAC MIXR DAC R1" on
amixer -c0 sset "SPK MIXL DAC L1" on
amixer -c0 sset "SPK MIXR DAC R1" on
amixer -c0 sset "SPOL MIX SPKVOL L" on
amixer -c0 sset "SPOR MIX SPKVOL R" on
amixer -c0 sset "SPOL MIX DAC L1" on
amixer -c0 sset "SPOR MIX DAC R1" on
amixer -c0 sset "Speaker L" on
amixer -c0 sset "Speaker R" on
amixer -c0 sset "Headphone" off
amixer -c0 sset "Ext Spk" on



and the attached dmesg log appeared

I get no sound but at least no heat :)


Is everything that I've done correct?
I see in these output logs many of the errors and bugs that the other
users found.


Thanks for the time spent

Marco





Output of dmesg:
-------------- next part --------------
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.2.0-rc2-next-20150717+ (bo at X205TA) (gcc version 4.9.2 (Ubuntu 4.9.2-10ubuntu13) ) #3 SMP Wed Jul 22 15:31:59 CEST 2015
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-next root=UUID=76d1fc2c-db6c-4fbe-8900-f1690226fbaf ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'lazy' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000007bf13fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007bf14000-0x000000007bf43fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007bf44000-0x000000007bf77fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007bf78000-0x000000007c040fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007c041000-0x000000007c928fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007c929000-0x000000007c984fff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007c985000-0x000000007cbfffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by American Megatrends
[    0.000000] efi:  ACPI=0x7bf77000  ACPI 2.0=0x7bf77014  ESRT=0x7bf43000  SMBIOS=0x7c928190 
[    0.000000] efi: requested map not found.
[    0.000000] esrt: ESRT header is not in the memory map.
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. X205TA/X205TA, BIOS X205TA.208 12/18/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x7cc00 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07E000000 mask FFE000000 uncachable
[    0.000000]   2 base 07D000000 mask FFF000000 uncachable
[    0.000000]   3 base 07CE00000 mask FFFE00000 uncachable
[    0.000000]   4 base 07CE00000 mask FFFE00000 uncachable
[    0.000000]   5 base 07CD00000 mask FFFF00000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] original variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2016MB, range: 32MB, type UC
[    0.000000] reg 2, base: 2000MB, range: 16MB, type UC
[    0.000000] reg 3, base: 1998MB, range: 2MB, type UC
[    0.000000] reg 4, base: 1998MB, range: 2MB, type UC
[    0.000000] reg 5, base: 1997MB, range: 1MB, type UC
[    0.000000] total RAM covered: 1997M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 64M 	num_reg: 5  	lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 1997MB, range: 1MB, type UC
[    0.000000] reg 2, base: 1998MB, range: 2MB, type UC
[    0.000000] reg 3, base: 2000MB, range: 16MB, type UC
[    0.000000] reg 4, base: 2016MB, range: 32MB, type UC
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000081000] 81000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x02ffa000, 0x02ffafff] PGTABLE
[    0.000000] BRK [0x02ffb000, 0x02ffbfff] PGTABLE
[    0.000000] BRK [0x02ffc000, 0x02ffcfff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x7ba00000-0x7bbfffff]
[    0.000000]  [mem 0x7ba00000-0x7bbfffff] page 2M
[    0.000000] BRK [0x02ffd000, 0x02ffdfff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x60000000-0x7b9fffff]
[    0.000000]  [mem 0x60000000-0x7b9fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x40000000-0x5fffffff]
[    0.000000]  [mem 0x40000000-0x5fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x1fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
[    0.000000]  [mem 0x20200000-0x3fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x7bc00000-0x7bf13fff]
[    0.000000]  [mem 0x7bc00000-0x7bdfffff] page 2M
[    0.000000]  [mem 0x7be00000-0x7bf13fff] page 4k
[    0.000000] BRK [0x02ffe000, 0x02ffefff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x7c985000-0x7cbfffff]
[    0.000000]  [mem 0x7c985000-0x7c9fffff] page 4k
[    0.000000]  [mem 0x7ca00000-0x7cbfffff] page 2M
[    0.000000] BRK [0x02fff000, 0x02ffffff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35317000-0x36982fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000007BF77014 000024 (v02 _ASUS_)
[    0.000000] ACPI: XSDT 0x000000007BF760F8 0000D4 (v01 _ASUS_ Notebook 00000003 MSFT 0100000D)
[    0.000000] ACPI: FACP 0x000000007BF72000 00010C (v05 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: DSDT 0x000000007BF5B000 0126D1 (v02 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: TCPA 0x000000007BF75000 000032 (v02                 00000000      00000000)
[    0.000000] ACPI: UEFI 0x000000007BFF4000 000042 (v01 _ASUS_ Notebook 00000000      00000000)
[    0.000000] ACPI: OEM0 0x000000007BF74000 000084 (v05 _ASUS_ BATTERY  00000003 AMI  0100000D)
[    0.000000] ACPI: DBG2 0x000000007BF73000 000072 (v00 _ASUS_ INTLDBG2 00000003 AMI  0100000D)
[    0.000000] ACPI: HPET 0x000000007BF71000 000038 (v01 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: LPIT 0x000000007BF70000 000104 (v01 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: APIC 0x000000007BF6F000 00006C (v03 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: MCFG 0x000000007BF6E000 00003C (v01 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007BF5A000 000603 (v01 _ASUS_ CpuDptf  00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007BF58000 001BE2 (v01 _ASUS_ DptfTab  00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007BF57000 000058 (v01 _ASUS_ LowPwrM  00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007BF56000 0000FF (v01 _ASUS_ SoCDptf  00000003 AMI  0100000D)
[    0.000000] ACPI: FPDT 0x000000007BF55000 000044 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x000000007BF54000 000763 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x000000007BF53000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x000000007BF52000 00017A (v01 PmRef  ApTst    00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x000000007BF51000 000427 (v01 Intel_ Tpm2Tabl 00001000 INTL 20061109)
[    0.000000] ACPI: TPM2 0x000000007BF50000 000034 (v03                 00000000      00000000)
[    0.000000] ACPI: BGRT 0x000000007BF4F000 000038 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: CSRT 0x000000007BF4E000 00014C (v00 _ASUS_ Notebook 00000005 INTL 20120624)
[    0.000000] ACPI: MSDM 0x000000007BF42F90 000055 (v03 _ASUS_ Notebook 00000000 ASUS 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000007cbfffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x7bd18000-0x7bd1cfff]
[    0.000000]  [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff880076c00000-ffff880078bfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x000000007cbfffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020200000-0x000000007bf13fff]
[    0.000000]   node   0: [mem 0x000000007c985000-0x000000007cbfffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007cbfffff]
[    0.000000] On node 0 totalpages: 507691
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 43 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7920 pages used for memmap
[    0.000000]   DMA32 zone: 503695 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0x7cf00000-0x7eefffff
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-86
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bf14000-0x7bf43fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bf44000-0x7bf77fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bf78000-0x7c040fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7c041000-0x7c928fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7c929000-0x7c984fff]
[    0.000000] e820: [mem 0x7ef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 33 pages/cpu @ffff88007ba00000 s97112 r8192 d29864 u524288
[    0.000000] pcpu-alloc: s97112 r8192 d29864 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 499664
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-next root=UUID=76d1fc2c-db6c-4fbe-8900-f1690226fbaf ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 1916016K/2030764K available (7694K kernel code, 1283K rwdata, 3656K rodata, 1448K init, 1300K bss, 114748K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:16640 nr_irqs:1024 0
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0x10
[    0.000000] Resolved frequency ID: 0, frequency: 83200 KHz
[    0.000000] TSC runs at 1331200 KHz
[    0.000000] lapic_timer_frequency = 332800
[    0.000000] tsc: Detected 1331.200 MHz processor
[    0.000058] Calibrating delay loop (skipped), value calculated using timer frequency.. 2662.40 BogoMIPS (lpj=5324800)
[    0.000066] pid_max: default: 32768 minimum: 301
[    0.000079] ACPI: Core revision 20150619
[    0.058840] ACPI: All ACPI Tables successfully acquired
[    0.060758] Security Framework initialized
[    0.060773] AppArmor: AppArmor initialized
[    0.060777] Yama: becoming mindful.
[    0.061212] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.062610] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.063249] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.063263] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.063751] Initializing cgroup subsys blkio
[    0.063763] Initializing cgroup subsys memory
[    0.063786] Initializing cgroup subsys devices
[    0.063795] Initializing cgroup subsys freezer
[    0.063803] Initializing cgroup subsys net_cls
[    0.063811] Initializing cgroup subsys perf_event
[    0.063819] Initializing cgroup subsys net_prio
[    0.063827] Initializing cgroup subsys hugetlb
[    0.063867] CPU: Physical Processor ID: 0
[    0.063871] CPU: Processor Core ID: 0
[    0.063879] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.063882] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.068787] mce: CPU supports 6 MCE banks
[    0.068801] CPU0: Thermal monitoring enabled (TM1)
[    0.068807] process: using mwait in idle threads
[    0.068815] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.068819] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.069053] Freeing SMP alternatives memory: 28K (ffffffff81eac000 - ffffffff81eb3000)
[    0.071719] Ignoring BGRT: invalid status 0 (expected 1)
[    0.076221] ftrace: allocating 30034 entries in 118 pages
[    0.100955] TSC deadline timer enabled
[    0.100965] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3735F @ 1.33GHz (fam: 06, model: 37, stepping: 08)
[    0.101018] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.101039] ... version:                3
[    0.101043] ... bit width:              40
[    0.101046] ... generic registers:      2
[    0.101049] ... value mask:             000000ffffffffff
[    0.101052] ... max period:             000000ffffffffff
[    0.101055] ... fixed-purpose events:   3
[    0.101058] ... event mask:             0000000700000003
[    0.102926] x86: Booting SMP configuration:
[    0.102933] .... node  #0, CPUs:      #1
[    0.111148] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111447]  #2 #3
[    0.127747] x86: Booted up 1 node, 4 CPUs
[    0.127754] smpboot: Total of 4 processors activated (10649.60 BogoMIPS)
[    0.129028] devtmpfs: initialized
[    0.138579] evm: security.selinux
[    0.138584] evm: security.SMACK64
[    0.138588] evm: security.SMACK64EXEC
[    0.138591] evm: security.SMACK64TRANSMUTE
[    0.138594] evm: security.SMACK64MMAP
[    0.138597] evm: security.ima
[    0.138600] evm: security.capability
[    0.138764] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.138770] PM: Registering ACPI NVS region [mem 0x7bf78000-0x7c040fff] (823296 bytes)
[    0.139018] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.139231] pinctrl core: initialized pinctrl subsystem
[    0.139501] RTC time: 19:44:17, date: 07/22/15
[    0.139812] NET: Registered protocol family 16
[    0.151770] cpuidle: using governor ladder
[    0.163789] cpuidle: using governor menu
[    0.164038] ACPI: bus type PCI registered
[    0.164045] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.164237] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.164244] PCI: not using MMCONFIG
[    0.164248] PCI: Using configuration type 1 for base access
[    0.180112] ACPI: Added _OSI(Module Device)
[    0.180119] ACPI: Added _OSI(Processor Device)
[    0.180123] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.180127] ACPI: Added _OSI(Processor Aggregator Device)
[    0.212561] ACPI: Dynamic OEM Table Load:
[    0.212587] ACPI: SSDT 0xFFFF880076B4A000 000501 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.214822] ACPI: Dynamic OEM Table Load:
[    0.214844] ACPI: SSDT 0xFFFF880076B4A800 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.217695] ACPI: Dynamic OEM Table Load:
[    0.217716] ACPI: SSDT 0xFFFF880076B94A00 00015F (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.219912] ACPI: Dynamic OEM Table Load:
[    0.219933] ACPI: SSDT 0xFFFF880076B22D80 00008D (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.224214] ACPI: Interpreter enabled
[    0.224235] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150619/hwxface-580)
[    0.224250] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150619/hwxface-580)
[    0.224262] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150619/hwxface-580)
[    0.224275] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20150619/hwxface-580)
[    0.224296] ACPI: (supports S0 S5)
[    0.224300] ACPI: Using IOAPIC for interrupt routing
[    0.224363] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.235369] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in ACPI motherboard resources
[    0.235376] PCI: not using MMCONFIG
[    0.235416] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.240254] ACPI: Power Resource [USBC] (on)
[    0.248111] ACPI: Power Resource [PLPE] (on)
[    0.259777] ACPI: Power Resource [CLK0] (on)
[    0.259913] ACPI: Power Resource [CLK1] (on)
[    0.260623] ACPI: Power Resource [P28T] (off)
[    0.260753] ACPI: Power Resource [P18T] (off)
[    0.266416] ACPI: Power Resource [P28X] (off)
[    0.266550] ACPI: Power Resource [P18X] (off)
[    0.266675] ACPI: Power Resource [P28P] (off)
[    0.266810] ACPI: Power Resource [P18P] (off)
[    0.266954] ACPI: Power Resource [P1XT] (off)
[    0.268476] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.276776] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.276792] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.276920] \_SB_.PCI0:_OSC invalid UUID
[    0.276925] _OSC request data:1 1e 0 
[    0.276937] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.277346] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.277887] PCI host bridge to bus 0000:00
[    0.277897] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.277904] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.277910] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.277916] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.277923] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.277933] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.277939] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.277945] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.277951] pci_bus 0000:00: root bus resource [mem 0x90c00000-0x90ffffff window]
[    0.277957] pci_bus 0000:00: root bus resource [mem 0x7cf00001-0x7ef00000 window]
[    0.277963] pci_bus 0000:00: root bus resource [mem 0x80000000-0x908ffffe window]
[    0.277969] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.277986] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.278241] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.278270] pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x903fffff]
[    0.278287] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff pref]
[    0.278304] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.278561] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.278598] pci 0000:00:14.0: reg 0x10: [mem 0x90800000-0x9080ffff 64bit]
[    0.278664] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.278894] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.278934] pci 0000:00:1a.0: reg 0x10: [mem 0x90700000-0x907fffff]
[    0.278951] pci 0000:00:1a.0: reg 0x14: [mem 0x90600000-0x906fffff]
[    0.279034] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.279258] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.280371] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.280561] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.280746] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.280932] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.281122] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.281317] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.281503] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.281688] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.295072] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.295080] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.295086] vgaarb: loaded
[    0.295089] vgaarb: bridge control possible 0000:00:02.0
[    0.295745] SCSI subsystem initialized
[    0.295878] libata version 3.00 loaded.
[    0.295955] ACPI: bus type USB registered
[    0.296044] usbcore: registered new interface driver usbfs
[    0.296075] usbcore: registered new interface driver hub
[    0.296136] usbcore: registered new device driver usb
[    0.296712] PCI: Using ACPI for IRQ routing
[    0.296719] PCI: pci_cache_line_size set to 64 bytes
[    0.296746] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.296753] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.296758] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.296762] e820: reserve RAM buffer [mem 0x7bf14000-0x7bffffff]
[    0.296767] e820: reserve RAM buffer [mem 0x7cc00000-0x7fffffff]
[    0.297077] NetLabel: Initializing
[    0.297082] NetLabel:  domain hash size = 128
[    0.297085] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.297114] NetLabel:  unlabeled traffic allowed by default
[    0.297354] clocksource: Switched to clocksource refined-jiffies
[    0.313673] AppArmor: AppArmor Filesystem Enabled
[    0.313874] pnp: PnP ACPI init
[    0.314028] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.314535] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.314544] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.314550] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.314557] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.314563] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.314574] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.314846] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.316442] system 00:03: [io  0x0240-0x0259] has been reserved
[    0.316453] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.318358] pnp: PnP ACPI: found 4 devices
[    0.324208] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.324217] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.324223] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.324229] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.324235] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.324241] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.324247] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.324253] pci_bus 0000:00: resource 11 [mem 0x90c00000-0x90ffffff window]
[    0.324259] pci_bus 0000:00: resource 12 [mem 0x7cf00001-0x7ef00000 window]
[    0.324265] pci_bus 0000:00: resource 13 [mem 0x80000000-0x908ffffe window]
[    0.324271] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.324354] NET: Registered protocol family 2
[    0.324685] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    0.324801] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[    0.324920] TCP: Hash tables configured (established 16384 bind 16384)
[    0.324983] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    0.325016] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    0.325147] NET: Registered protocol family 1
[    0.325188] pci 0000:00:02.0: Video device with shadowed ROM
[    0.325563] PCI: CLS 0 bytes, default 64
[    0.325696] Trying to unpack rootfs image as initramfs...
[    1.245815] Freeing initrd memory: 22960K (ffff880035317000 - ffff880036983000)
[    1.246178] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x829
[    1.246196] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x829
[    1.246215] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x829
[    1.246233] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x829
[    1.246366] microcode: Microcode Update Driver: v2.00 <tigran at aivazian.fsnet.co.uk>, Peter Oruba
[    1.246483] Scanning for low memory corruption every 60 seconds
[    1.247454] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.247489] Initialise system trusted keyring
[    1.247546] audit: initializing netlink subsys (disabled)
[    1.247586] audit: type=2000 audit(1437594258.148:1): initialized
[    1.248328] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.253055] zpool: loaded
[    1.253063] zbud: loaded
[    1.253571] VFS: Disk quotas dquot_6.6.0
[    1.253680] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.255212] fuse init (API version 7.23)
[    1.255617] Key type big_key registered
[    1.256344] Key type asymmetric registered
[    1.256353] Asymmetric key parser 'x509' registered
[    1.256401] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.256492] io scheduler noop registered
[    1.256501] io scheduler deadline registered (default)
[    1.256609] io scheduler cfq registered
[    1.256857] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.256885] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.257000] efifb: probing for efifb
[    1.257036] efifb: framebuffer at 0x80000000, mapped to 0xffffc90000800000, using 4160k, total 4160k
[    1.257041] efifb: mode is 1366x768x32, linelength=5504, pages=1
[    1.257044] efifb: scrolling: redraw
[    1.257049] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.267317] Console: switching to colour frame buffer device 170x48
[    1.277261] fb0: EFI VGA frame buffer device
[    1.277291] intel_idle: MWAIT substates: 0x33000020
[    1.277295] intel_idle: v0.4 model 0x37
[    1.277299] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.278024] ACPI: AC Adapter [ADP1] (on-line)
[    1.278214] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.278254] ACPI: Lid Switch [LID]
[    1.278373] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.278383] ACPI: Power Button [PWRB]
[    1.278502] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    1.278511] ACPI: Sleep Button [SLPB]
[    1.283090] [Firmware Bug]: No valid trip found
[    1.283231] GHES: HEST is not enabled!
[    1.283508] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.303674] 00:02: ttyS0 at I/O 0x3f8 (irq = 200, base_baud = 115200) is a 16550A
[    1.308025] hpet: number irqs doesn't agree with number of timers
[    1.308191] Linux agpgart interface v0.103
[    1.315273] brd: module loaded
[    1.318109] loop: module loaded
[    1.318747] libphy: Fixed MDIO Bus: probed
[    1.318757] tun: Universal TUN/TAP device driver, 1.6
[    1.318761] tun: (C) 1999-2004 Max Krasnyansky <maxk at qualcomm.com>
[    1.318885] PPP generic driver version 2.4.2
[    1.319323] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.319340] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.319751] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    1.319763] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.319946] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.319954] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.319959] usb usb1: Product: xHCI Host Controller
[    1.319964] usb usb1: Manufacturer: Linux 4.2.0-rc2-next-20150717+ xhci-hcd
[    1.319969] usb usb1: SerialNumber: 0000:00:14.0
[    1.320322] hub 1-0:1.0: USB hub found
[    1.320349] hub 1-0:1.0: 6 ports detected
[    1.321547] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.321559] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.321673] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.321680] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.321685] usb usb2: Product: xHCI Host Controller
[    1.321690] usb usb2: Manufacturer: Linux 4.2.0-rc2-next-20150717+ xhci-hcd
[    1.321696] usb usb2: SerialNumber: 0000:00:14.0
[    1.322009] hub 2-0:1.0: USB hub found
[    1.322033] hub 2-0:1.0: 1 port detected
[    1.322390] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.322406] ehci-pci: EHCI PCI platform driver
[    1.322441] ehci-platform: EHCI generic platform driver
[    1.322491] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.322504] ohci-pci: OHCI PCI platform driver
[    1.322535] ohci-platform: OHCI generic platform driver
[    1.322568] uhci_hcd: USB Universal Host Controller Interface driver
[    1.322710] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.100980] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    2.221259] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x13303f810e3, max_idle_ns: 440795235405 ns
[    2.357013] i8042: No controller found
[    2.357106] clocksource: Switched to clocksource tsc
[    2.357377] mousedev: PS/2 mouse device common for all mice
[    2.358552] ACPI Warning: Could not enable fixed event - RealTimeClock (4) (20150619/evxface-654)
[    2.358857] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.358900] rtc_cmos 00:00: alarms up to one day, 242 bytes nvram
[    2.358927] i2c /dev entries driver
[    2.359173] device-mapper: uevent: version 1.0.3
[    2.359407] device-mapper: ioctl: 4.32.0-ioctl (2015-6-26) initialised: dm-devel at redhat.com
[    2.359445] Intel P-state driver initializing.
[    2.359952] ledtrig-cpu: registered to indicate activity on CPUs
[    2.359980] EFI Variables Facility v0.08 2004-May-17
[    2.370156] PCCT header not found.
[    2.370602] NET: Registered protocol family 10
[    2.371195] NET: Registered protocol family 17
[    2.371229] Key type dns_resolver registered
[    2.372797] Loading compiled-in X.509 certificates
[    2.374982] Loaded X.509 cert 'Build time autogenerated kernel key: 9b818eea07120708595647892e327797c5fec80b'
[    2.375010] registered taskstats version 1
[    2.375042] zswap: loading zswap
[    2.375046] zswap: using zbud pool
[    2.375057] zswap: using lzo compressor
[    2.383376] Key type trusted registered
[    2.399031] Key type encrypted registered
[    2.399048] AppArmor: AppArmor sha1 policy hashing enabled
[    2.399055] ima: No TPM chip found, activating TPM-bypass!
[    2.399100] evm: HMAC attrs: 0x1
[    2.400212]   Magic number: 7:360:749
[    2.400255] tty ttyS0: hash matches
[    2.401004] rtc_cmos 00:00: setting system clock to 2015-07-22 19:44:19 UTC (1437594259)
[    2.401471] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.401474] EDD information not available.
[    2.401712] PM: Hibernation image not present or could not be loaded.
[    2.403711] Freeing unused kernel memory: 1448K (ffffffff81d42000 - ffffffff81eac000)
[    2.403717] Write protecting the kernel read-only data: 12288k
[    2.405817] Freeing unused kernel memory: 488K (ffff880002786000 - ffff880002800000)
[    2.406349] Freeing unused kernel memory: 440K (ffff880002b92000 - ffff880002c00000)
[    2.417561] usb 1-1: New USB device found, idVendor=04f2, idProduct=b483
[    2.417569] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.417573] usb 1-1: Product: USB2.0 VGA UVC WebCam
[    2.457135] random: systemd-udevd urandom read with 2 bits of entropy available
[    2.498330] sdhci: Secure Digital Host Controller Interface driver
[    2.498337] sdhci: Copyright(c) Pierre Ossman
[    2.507583] sdhci-acpi 80860F14:00: No vmmc regulator found
[    2.507590] sdhci-acpi 80860F14:00: No vqmmc regulator found
[    2.511171] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.512374] sdhci-acpi INT33BB:00: No vmmc regulator found
[    2.512380] sdhci-acpi INT33BB:00: No vqmmc regulator found
[    2.515590] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    2.516794] sdhci-acpi PNP0FFF:00: No vmmc regulator found
[    2.516800] sdhci-acpi PNP0FFF:00: No vqmmc regulator found
[    2.520026] mmc2: SDHCI controller on ACPI [PNP0FFF:00] using ADMA
[    2.667306] mmc0: MAN_BKOPS_EN bit is not set
[    2.676340] mmc0: new HS200 MMC card at address 0001
[    2.693477] mmcblk0: mmc0:0001 MBG4GC 29.1 GiB 
[    2.693678] mmcblk0boot0: mmc0:0001 MBG4GC partition 1 4.00 MiB
[    2.693876] mmcblk0boot1: mmc0:0001 MBG4GC partition 2 4.00 MiB
[    2.694085] mmcblk0rpmb: mmc0:0001 MBG4GC partition 3 4.00 MiB
[    2.696573] [drm] Initialized drm 1.1.0 20060810
[    2.696842]  mmcblk0: p1 p2 p3 p4 p5
[    2.761088] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    2.762625] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    2.764170] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    2.766939] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    2.826353] mmc1: queuing unknown CIS tuple 0x91 (3 bytes)
[    2.826388] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.097070] usb 1-2: new high-speed USB device number 3 using xhci_hcd
[    3.225118] [drm] Memory usable by graphics device = 2048M
[    3.225129] checking generic (80000000 410000) vs hw (80000000 10000000)
[    3.225134] fb: switching to inteldrmfb from EFI VGA
[    3.225189] Console: switching to colour dummy device 80x25
[    3.225629] [drm] Replacing VGA console driver
[    3.230007] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.230015] [drm] Driver supports precise vblank timestamp query.
[    3.240978] usb 1-2: New USB device found, idVendor=05e3, idProduct=0610
[    3.240988] usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.240994] usb 1-2: Product: USB2.0 Hub
[    3.243269] hub 1-2:1.0: USB hub found
[    3.243922] hub 1-2:1.0: 4 ports detected
[    3.246033] usb: failed to peer 1-2-port1 and usb2-port1 by location (1-2-port1:none) (usb2-port1:usb1-port1)
[    3.246041] usb 1-2-port1: failed to peer to usb2-port1 (-16)
[    3.246045] usb: port power management may be unreliable
[    3.246205] usb: failed to peer 1-2-port2 and usb2-port1 by location (1-2-port2:none) (usb2-port1:usb1-port1)
[    3.246212] usb 1-2-port2: failed to peer to usb2-port1 (-16)
[    3.246370] usb: failed to peer 1-2-port3 and usb2-port1 by location (1-2-port3:none) (usb2-port1:usb1-port1)
[    3.246377] usb 1-2-port3: failed to peer to usb2-port1 (-16)
[    3.246532] usb: failed to peer 1-2-port4 and usb2-port1 by location (1-2-port4:none) (usb2-port1:usb1-port1)
[    3.246539] usb 1-2-port4: failed to peer to usb2-port1 (-16)
[    3.249383] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    3.260758] [drm:drm_calc_timestamping_constants [drm]] *ERROR* crtc 21: Can't calculate constants, dotclock = 0!
[    3.289727] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    3.290319] fbcon: inteldrmfb (fb0) is primary device
[    3.290448] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
[    3.290745] [drm] Initialized i915 1.6.0 20150703 for 0000:00:02.0 on minor 0
[    3.529449] usb 1-2.1: new high-speed USB device number 4 using xhci_hcd
[    3.633555] usb 1-2.1: config 1 interface 0 altsetting 0 has 7 endpoint descriptors, different from the interface descriptor's value: 5
[    3.642755] usb 1-2.1: New USB device found, idVendor=148f, idProduct=5370
[    3.642766] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.642775] usb 1-2.1: Product: 802.11 n WLAN
[    3.642782] usb 1-2.1: Manufacturer: Ralink
[    3.642790] usb 1-2.1: SerialNumber: 1.0
[    3.717166] usb 1-2.2: new full-speed USB device number 5 using xhci_hcd
[    3.813168] usb 1-2.2: New USB device found, idVendor=03f0, idProduct=a407
[    3.813180] usb 1-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.813188] usb 1-2.2: Product: HP Link-5 micro dongle
[    3.813196] usb 1-2.2: Manufacturer: HP
[    3.813723] usb 1-2.2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[    3.839793] hidraw: raw HID events driver (C) Jiri Kosina
[    3.867502] usbcore: registered new interface driver usbhid
[    3.867503] usbhid: USB HID core driver
[    3.874954] input: HP HP Link-5 micro dongle as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.0/0003:03F0:A407.0001/input/input4
[    3.931240] hid-generic 0003:03F0:A407.0001: input,hidraw0: USB HID v1.11 Keyboard [HP HP Link-5 micro dongle] on usb-0000:00:14.0-2.2/input0
[    3.931905] input: HP HP Link-5 micro dongle as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:03F0:A407.0002/input/input5
[    3.987803] hid-generic 0003:03F0:A407.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [HP HP Link-5 micro dongle] on usb-0000:00:14.0-2.2/input1
[    4.471367] Console: switching to colour frame buffer device 170x48
[    4.479909] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    4.958811] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null)
[    5.128792] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    5.185948] systemd[1]: Inserted module 'autofs4'
[    5.207044] systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[    5.207423] systemd[1]: Detected architecture x86-64.
[    5.208714] systemd[1]: Set hostname to <X205TA>.
[    5.388979] systemd[1]: Reached target Encrypted Volumes.
[    5.389008] systemd[1]: Starting Encrypted Volumes.
[    5.389100] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    5.389123] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[    5.389275] systemd[1]: Created slice Root Slice.
[    5.389299] systemd[1]: Starting Root Slice.
[    5.389400] systemd[1]: Reached target Remote File Systems (Pre).
[    5.389422] systemd[1]: Starting Remote File Systems (Pre).
[    5.389570] systemd[1]: Listening on fsck to fsckd communication Socket.
[    5.389592] systemd[1]: Starting fsck to fsckd communication Socket.
[    5.389769] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    5.389793] systemd[1]: Starting Device-mapper event daemon FIFOs.
[    5.389959] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    5.389982] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[    5.390134] systemd[1]: Listening on udev Control Socket.
[    5.390157] systemd[1]: Starting udev Control Socket.
[    5.390205] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    5.390481] systemd[1]: Listening on Journal Audit Socket.
[    5.390505] systemd[1]: Starting Journal Audit Socket.
[    5.390809] systemd[1]: Created slice System Slice.
[    5.390845] systemd[1]: Starting System Slice.
[    5.391160] systemd[1]: Created slice system-getty.slice.
[    5.391183] systemd[1]: Starting system-getty.slice.
[    5.392908] systemd[1]: Starting Increase datagram queue length...
[    5.393526] systemd[1]: Listening on Delayed Shutdown Socket.
[    5.393577] systemd[1]: Starting Delayed Shutdown Socket.
[    5.394065] systemd[1]: Listening on udev Kernel Socket.
[    5.394124] systemd[1]: Starting udev Kernel Socket.
[    5.394565] systemd[1]: Listening on LVM2 metadata daemon socket.
[    5.394599] systemd[1]: Starting LVM2 metadata daemon socket.
[    5.395008] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.395037] systemd[1]: Starting Journal Socket (/dev/log).
[    5.395393] systemd[1]: Created slice User and Session Slice.
[    5.395435] systemd[1]: Starting User and Session Slice.
[    5.395562] systemd[1]: Reached target Slices.
[    5.395588] systemd[1]: Starting Slices.
[    5.395814] systemd[1]: Listening on Journal Socket.
[    5.395877] systemd[1]: Starting Journal Socket.
[    5.397671] systemd[1]: Mounting Debug File System...
[    5.400022] systemd[1]: Starting Setup Virtual Console...
[    5.402388] systemd[1]: Mounting Huge Pages File System...
[    5.404703] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    5.408147] systemd[1]: Starting udev Coldplug all Devices...
[    5.416981] systemd[1]: Starting Load Kernel Modules...
[    5.420664] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    5.423442] systemd[1]: Starting Uncomplicated firewall...
[    5.427397] systemd[1]: Started Braille Device Support.
[    5.429195] systemd[1]: Starting Braille Device Support...
[    5.432756] systemd[1]: Starting Nameserver information manager...
[    5.435584] systemd[1]: Mounting POSIX Message Queue File System...
[    5.449085] systemd[1]: Started Set Up Additional Binary Formats.
[    5.463115] systemd[1]: Started Read required files in advance.
[    5.463554] systemd[1]: Starting Read required files in advance...
[    5.466676] systemd[1]: Mounted POSIX Message Queue File System.
[    5.466956] systemd[1]: Mounted Debug File System.
[    5.467196] systemd[1]: Mounted Huge Pages File System.
[    5.468258] systemd[1]: Started Increase datagram queue length.
[    5.469316] systemd[1]: Started Setup Virtual Console.
[    5.470357] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    5.482607] systemd[1]: Started Uncomplicated firewall.
[    5.483434] lp: driver loaded but no devices found
[    5.499253] ppdev: user-space parallel port driver
[    5.505081] systemd[1]: Started Nameserver information manager.
[    5.520645] systemd[1]: Started udev Coldplug all Devices.
[    5.523351] systemd[1]: Started Load Kernel Modules.
[    5.529000] systemd[1]: ureadahead.service: main process exited, code=exited, status=5/NOTINSSTALLED
[    5.530032] systemd[1]: Unit ureadahead.service entered failed state.
[    5.530108] systemd[1]: ureadahead.service failed.
[    5.582518] systemd[1]: Starting Apply Kernel Variables...
[    5.584992] systemd[1]: Mounting FUSE Control File System...
[    5.585326] systemd[1]: Mounted Configuration File System.
[    5.591424] systemd[1]: Starting udev Wait for Complete Device Initialization...
[    5.594408] systemd[1]: Starting Create Static Device Nodes in /dev...
[    5.594775] systemd[1]: Listening on Syslog Socket.
[    5.594854] systemd[1]: Starting Syslog Socket.
[    5.598512] systemd[1]: Starting Journal Service...
[    5.606168] systemd[1]: Mounted FUSE Control File System.
[    5.607050] systemd[1]: Started Apply Kernel Variables.
[    5.631575] systemd[1]: Started Create Static Device Nodes in /dev.
[    5.633900] systemd[1]: Starting udev Kernel Device Manager...
[    5.663068] systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[    5.672502] systemd[1]: Started Journal Service.
[    5.818693] 80860F0A:00: ttyS4 at MMIO 0x90941000 (irq = 191, base_baud = 2764800) is a 16550A
[    5.820150] 80860F0A:01: ttyS5 at MMIO 0x90947000 (irq = 193, base_baud = 2764800) is a 16550A
[    5.854934] sst-acpi 80860F28:00: No matching ASoC machine driver found
[    5.976529] ACPI: Battery Slot [BATC] (battery present)
[    5.993515] [Firmware Bug]: No valid trip found
[    6.032489] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    6.033244] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    6.078930] wmi: Mapper loaded
[    6.134268] i2c_hid i2c-PDEC3393:00: error in i2c_hid_init_report size:7 / ret_size:4
[    6.144150] i2c_hid i2c-PDEC3393:00: error in i2c_hid_init_report size:19 / ret_size:4
[    6.144439] input: PDEC3393:00 0B05:8585 as /devices/platform/80860F41:00/i2c-8/i2c-PDEC3393:00/0018:0B05:8585.0003/input/input6
[    6.144952] hid-generic 0018:0B05:8585.0003: input,hidraw2: <UNKNOWN> HID v1.00 Keyboard [PDEC3393:00 0B05:8585] on 
[    6.187404] mei_txe 0000:00:1a.0: can't derive routing for PCI INT A
[    6.187414] mei_txe 0000:00:1a.0: PCI INT A: no GSI
[    6.303367] media: Linux media interface: v0.10
[    6.323819] i2c_hid i2c-ELAN0100:00: error in i2c_hid_init_report size:633 / ret_size:7
[    6.335835] i2c_hid i2c-ELAN0100:00: error in i2c_hid_init_report size:131 / ret_size:7
[    6.336012] input: ELAN0100:00 04F3:0401 as /devices/platform/80860F41:03/i2c-11/i2c-ELAN0100:00/0018:04F3:0401.0004/input/input7
[    6.336326] hid-generic 0018:04F3:0401.0004: input,hidraw3: <UNKNOWN> HID v1.00 Mouse [ELAN0100:00 04F3:0401] on 
[    6.398265] intel_sst_acpi 80860F28:00: LPE base: 0x90a00000 size:0x200000
[    6.398272] intel_sst_acpi 80860F28:00: IRAM base: 0x90ac0000
[    6.398307] intel_sst_acpi 80860F28:00: DRAM base: 0x90b00000
[    6.398319] intel_sst_acpi 80860F28:00: SHIM base: 0x90b40000
[    6.398330] intel_sst_acpi 80860F28:00: Mailbox base: 0x90b44000
[    6.398341] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    6.398447] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    6.446579] Linux video capture interface: v2.00
[    6.583515] Bluetooth: Core ver 2.20
[    6.583551] NET: Registered protocol family 31
[    6.583555] Bluetooth: HCI device and connection manager initialized
[    6.583564] Bluetooth: HCI socket layer initialized
[    6.583570] Bluetooth: L2CAP socket layer initialized
[    6.583585] Bluetooth: SCO socket layer initialized
[    6.595207] SSE version of gcm_enc/dec engaged.
[    6.614316] uvcvideo: Found UVC 1.00 device USB2.0 VGA UVC WebCam (04f2:b483)
[    6.625548] input: USB2.0 VGA UVC WebCam as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/input/input8
[    6.625725] usbcore: registered new interface driver uvcvideo
[    6.625730] USB Video Class driver (1.1.1)
[    6.632121] Bluetooth: Generic Bluetooth SDIO driver ver 0.1
[    6.646603] Adding 976892k swap on /dev/mmcblk0p5.  Priority:-1 extents:1 across:976892k SSFS
[    6.717657] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.719210] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.720873] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.724840] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.773640] genirq: Flags mismatch irq 8. 00000083 (volume_down) vs. 00000000 (rtc0)
[    6.773652] gpio-keys gpio-keys.0.auto: Unable to claim irq 8; error -16
[    6.773694] gpio-keys: probe of gpio-keys.0.auto failed with error -16
[    6.773893] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input10
[    6.925170] asus_wmi: ASUS WMI generic driver loaded
[    6.935817] bytx205_rt5645 bytx205_rt5645: snd-soc-dummy-dai <-> media-cpu-dai mapping ok
[    6.935863] compress asoc: snd-soc-dummy-dai <-> compress-cpu-dai mapping ok
[    6.935909] bytx205_rt5645 bytx205_rt5645: rt5645-aif1 <-> ssp1-port mapping ok
[    6.996604] random: nonblocking pool is initialized
[    7.034303] asus_wmi: Initialization: 0x1
[    7.034652] asus_wmi: BIOS WMI version: 7.9
[    7.034892] asus_wmi: SFUN value: 0x37
[    7.039010] intel_rapl: Found RAPL domain package
[    7.039019] intel_rapl: Found RAPL domain core
[    7.047852] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input11
[    7.057214] asus_wmi: Number of fans: 1
[    7.145429] sst-mfld-platform sst-mfld-platform: Slot control: codec_out tx interleaver slot 0 doesn't have DAPM widget!!!
[    7.145461] sst-mfld-platform sst-mfld-platform: Slot control: codec_out tx interleaver slot 1 doesn't have DAPM widget!!!
[    7.145488] sst-mfld-platform sst-mfld-platform: Slot control: codec_out tx interleaver slot 2 doesn't have DAPM widget!!!
[    7.145517] sst-mfld-platform sst-mfld-platform: Slot control: codec_out tx interleaver slot 3 doesn't have DAPM widget!!!
[    7.145540] sst-mfld-platform sst-mfld-platform: Slot control: codec_in rx deinterleaver codec_in0_0 doesn't have DAPM widget!!!
[    7.145565] sst-mfld-platform sst-mfld-platform: Slot control: codec_in rx deinterleaver codec_in0_1 doesn't have DAPM widget!!!
[    7.145592] sst-mfld-platform sst-mfld-platform: Slot control: codec_in rx deinterleaver codec_in1_0 doesn't have DAPM widget!!!
[    7.145621] sst-mfld-platform sst-mfld-platform: Slot control: codec_in rx deinterleaver codec_in1_1 doesn't have DAPM widget!!!
[    7.585080] cfg80211: Calling CRDA to update world regulatory domain
[    7.624583] cfg80211: World regulatory domain updated:
[    7.624593] cfg80211:  DFS Master region: unset
[    7.624597] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[    7.624603] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[    7.624608] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[    7.624613] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[    7.624617] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[    7.624621] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[    7.784538] WARNING! power/level is deprecated; use power/control instead
[    8.347357] usb 1-2.1: reset high-speed USB device number 4 using xhci_hcd
[    8.447005] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 5390, rev 0502 detected
[    8.460385] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 5370 detected
[    8.481014] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    8.481648] usbcore: registered new interface driver rt2800usb
[    8.488996] rt2800usb 1-2.1:1.0 wlan1: renamed from wlan0
[    8.565286] EXT4-fs (mmcblk0p4): re-mounted. Opts: errors=remount-ro,commit=120
[    8.582825] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: data=ordered
[    8.666726] systemd-journald[287]: Received request to flush runtime journal from PID 1
[    8.878211] audit: type=1400 audit(1437587065.972:2): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session" pid=514 comm="apparmor_parser"
[    8.878229] audit: type=1400 audit(1437587065.972:3): apparmor="STATUS" operation="profile_load" name="chromium" pid=514 comm="apparmor_parser"
[    8.886173] audit: type=1400 audit(1437587065.980:4): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=514 comm="apparmor_parser"
[    8.886192] audit: type=1400 audit(1437587065.980:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=514 comm="apparmor_parser"
[    8.886205] audit: type=1400 audit(1437587065.980:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=514 comm="apparmor_parser"
[    8.886216] audit: type=1400 audit(1437587065.980:7): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=514 comm="apparmor_parser"
[    8.925333] audit: type=1400 audit(1437587066.020:8): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=514 comm="apparmor_parser"
[    8.925354] audit: type=1400 audit(1437587066.020:9): apparmor="STATUS" operation="profile_load" name="sanitized_helper" pid=514 comm="apparmor_parser"
[    8.925367] audit: type=1400 audit(1437587066.020:10): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=514 comm="apparmor_parser"
[    8.925379] audit: type=1400 audit(1437587066.020:11): apparmor="STATUS" operation="profile_load" name="sanitized_helper" pid=514 comm="apparmor_parser"
[    9.530104] cgroup: new mount options do not match the existing superblock, will be ignored
[    9.546652] sst-mfld-platform sst-mfld-platform: Slot control: codec_out tx interleaver slot 0 doesn't have DAPM widget!!!
[    9.546687] sst-mfld-platform sst-mfld-platform: Slot control: codec_out tx interleaver slot 1 doesn't have DAPM widget!!!
[    9.546716] sst-mfld-platform sst-mfld-platform: Slot control: codec_out tx interleaver slot 2 doesn't have DAPM widget!!!
[    9.546745] sst-mfld-platform sst-mfld-platform: Slot control: codec_out tx interleaver slot 3 doesn't have DAPM widget!!!
[    9.546769] sst-mfld-platform sst-mfld-platform: Slot control: codec_in rx deinterleaver codec_in0_0 doesn't have DAPM widget!!!
[    9.546796] sst-mfld-platform sst-mfld-platform: Slot control: codec_in rx deinterleaver codec_in0_1 doesn't have DAPM widget!!!
[    9.546863] sst-mfld-platform sst-mfld-platform: Slot control: codec_in rx deinterleaver codec_in1_0 doesn't have DAPM widget!!!
[    9.546899] sst-mfld-platform sst-mfld-platform: Slot control: codec_in rx deinterleaver codec_in1_1 doesn't have DAPM widget!!!
[    9.695714] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    9.695722] Bluetooth: BNEP filters: protocol multicast
[    9.695732] Bluetooth: BNEP socket layer initialized
[   10.337664] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2870.bin'
[   10.343062] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.29
[   11.777345] wlan1: authenticate with c8:be:19:70:cb:ec
[   11.796448] wlan1: send auth to c8:be:19:70:cb:ec (try 1/3)
[   11.797884] wlan1: authenticated
[   11.802189] wlan1: associate with c8:be:19:70:cb:ec (try 1/3)
[   11.807994] wlan1: RX AssocResp from c8:be:19:70:cb:ec (capab=0x411 status=0 aid=6)
[   11.813000] wlan1: associated
[   12.925877] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x0 fw_state 0x1
[   12.925888] intel_sst_acpi 80860F28:00: fw download failed -16
[   12.925901] intel_sst_acpi 80860F28:00: FW download fail -16
[   12.926273]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.926682]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.926939]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.927966]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.928345]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.928597]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.931843]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.932403]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.932875]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.935190]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.935757]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.936141]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.941094]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.941531]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.941787]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.943102]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.943488]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.943744]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.944996]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.945544]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.946379]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.948026]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.948606]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   12.949013]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   13.950727] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   13.950753] intel_sst_acpi 80860F28:00: fw returned err -16
[   15.013210] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x0 fw_state 0x1
[   15.013221] intel_sst_acpi 80860F28:00: fw download failed -16
[   15.013234] intel_sst_acpi 80860F28:00: FW download fail -16
[   15.013434] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[   16.015424] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   16.015450] intel_sst_acpi 80860F28:00: fw returned err -16
[   17.014935] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   17.014962] intel_sst_acpi 80860F28:00: fw returned err -16
[   18.015192] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   18.015218] intel_sst_acpi 80860F28:00: fw returned err -16
[   18.015457] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[   19.014277] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   19.014290] intel_sst_acpi 80860F28:00: fw returned err -16
[   20.014130] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   20.014143] intel_sst_acpi 80860F28:00: fw returned err -16
[   21.014393] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   21.014406] intel_sst_acpi 80860F28:00: fw returned err -16
[   21.014703] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[   22.013324] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   22.013337] intel_sst_acpi 80860F28:00: fw returned err -16
[   23.012977] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   23.013003] intel_sst_acpi 80860F28:00: fw returned err -16
[   24.013582] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   24.013610] intel_sst_acpi 80860F28:00: fw returned err -16
[   24.014358] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[   25.012314] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   25.012340] intel_sst_acpi 80860F28:00: fw returned err -16
[   26.012011] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   26.012037] intel_sst_acpi 80860F28:00: fw returned err -16
[   27.011848] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   27.011875] intel_sst_acpi 80860F28:00: fw returned err -16
[   27.068974] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[   28.067651] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   28.067682] intel_sst_acpi 80860F28:00: fw returned err -16
[   28.164574] intel_sst_acpi 80860F28:00: Alloc for str 1 pipe 0x90
[   29.163072] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   29.163102] intel_sst_acpi 80860F28:00: FW alloc failed ret -16
[   29.163119] intel_sst_acpi 80860F28:00: sst_get_stream returned err -5
[   29.163146] sst-mfld-platform sst-mfld-platform: ASoC: cpu DAI prepare error: -5
[   29.163153]  Baytrail Audio Port: ASoC: prepare FE Baytrail Audio Port failed
[   29.163435] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[   30.162768] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   30.162795] intel_sst_acpi 80860F28:00: fw returned err -16
[   31.163083] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   31.163115] intel_sst_acpi 80860F28:00: fw returned err -16
[   32.162274] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   32.162287] intel_sst_acpi 80860F28:00: fw returned err -16
[   33.162413] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   33.162556] intel_sst_acpi 80860F28:00: fw returned err -16
[   34.161677] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   34.161828] intel_sst_acpi 80860F28:00: fw returned err -16
[   35.161383] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   35.161396] intel_sst_acpi 80860F28:00: fw returned err -16
[   36.161119] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   36.161131] intel_sst_acpi 80860F28:00: fw returned err -16
[   37.160780] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   37.160793] intel_sst_acpi 80860F28:00: fw returned err -16
[   38.160476] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   38.160495] intel_sst_acpi 80860F28:00: fw returned err -16
[   39.160074] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   39.160101] intel_sst_acpi 80860F28:00: fw returned err -16
[   39.211878] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[   40.212188] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   40.212214] intel_sst_acpi 80860F28:00: fw returned err -16
[   41.214405] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   41.214431] intel_sst_acpi 80860F28:00: fw returned err -16
[   42.216335] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   42.216361] intel_sst_acpi 80860F28:00: fw returned err -16
[   42.216392] intel_sst_acpi 80860F28:00: free stream returned err -19
[   43.238307] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   43.238319] intel_sst_acpi 80860F28:00: fw returned err -16
[   44.240093] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   44.240106] intel_sst_acpi 80860F28:00: fw returned err -16
[   45.242560] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   45.242586] intel_sst_acpi 80860F28:00: fw returned err -16
[   46.243419] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   46.243431] intel_sst_acpi 80860F28:00: fw returned err -16
[   46.323996]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.324405]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.324624]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.325684]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.326071]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.326240]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.327438]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.327910]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.328197]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.329989]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.330473]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   46.330767]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[   47.340599] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   47.340612] intel_sst_acpi 80860F28:00: fw returned err -16
[   47.341020] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[   48.341869] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   48.341882] intel_sst_acpi 80860F28:00: fw returned err -16
[   48.433987] intel_sst_acpi 80860F28:00: Alloc for str 1 pipe 0x90
[   49.435110] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   49.435138] intel_sst_acpi 80860F28:00: FW alloc failed ret -16
[   49.435144] intel_sst_acpi 80860F28:00: sst_get_stream returned err -5
[   49.435152] sst-mfld-platform sst-mfld-platform: ASoC: cpu DAI prepare error: -5
[   49.435158]  Baytrail Audio Port: ASoC: prepare FE Baytrail Audio Port failed
[   49.435462] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[   50.436137] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   50.436149] intel_sst_acpi 80860F28:00: fw returned err -16
[   51.437287] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   51.437314] intel_sst_acpi 80860F28:00: fw returned err -16
[   52.437933] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   52.437960] intel_sst_acpi 80860F28:00: fw returned err -16
[   53.439666] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   53.439692] intel_sst_acpi 80860F28:00: fw returned err -16
[   54.439578] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   54.439605] intel_sst_acpi 80860F28:00: fw returned err -16
[   55.440886] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   55.440912] intel_sst_acpi 80860F28:00: fw returned err -16
[   56.440843] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   56.440855] intel_sst_acpi 80860F28:00: fw returned err -16
[   57.441404] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   57.441416] intel_sst_acpi 80860F28:00: fw returned err -16
[   58.442009] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   58.442021] intel_sst_acpi 80860F28:00: fw returned err -16
[   59.442259] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   59.442285] intel_sst_acpi 80860F28:00: fw returned err -16
[   59.496788]  Baytrail Audio Port: sst: error code = -22
[   59.496798] snd_pcm_update_hw_ptr0: 48 callbacks suppressed
[   59.496806] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.498217]  Baytrail Audio Port: sst: error code = -22
[   59.498231] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.498245]  Baytrail Audio Port: sst: error code = -22
[   59.498250] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.545798]  Baytrail Audio Port: sst: error code = -22
[   59.545814] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.545844]  Baytrail Audio Port: sst: error code = -22
[   59.545852] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.546047]  Baytrail Audio Port: sst: error code = -22
[   59.546055] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.546073]  Baytrail Audio Port: sst: error code = -22
[   59.546080] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.546766]  Baytrail Audio Port: sst: error code = -22
[   59.546779] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.546804]  Baytrail Audio Port: sst: error code = -22
[   59.546811] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.546850]  Baytrail Audio Port: sst: error code = -22
[   59.546858] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   59.546881]  Baytrail Audio Port: sst: error code = -22
[   59.553706]  Baytrail Audio Port: sst: error code = -22
[   59.553737]  Baytrail Audio Port: sst: error code = -22
[   59.553756]  Baytrail Audio Port: sst: error code = -22
[   59.553792]  Baytrail Audio Port: sst: error code = -22
[   59.553939]  Baytrail Audio Port: sst: error code = -22
[   59.553949]  Baytrail Audio Port: sst: error code = -22
[   59.570950]  Baytrail Audio Port: sst: error code = -22
[   59.571210]  Baytrail Audio Port: sst: error code = -22
[   59.571227]  Baytrail Audio Port: sst: error code = -22
[   59.571266]  Baytrail Audio Port: sst: error code = -22
[   59.571291]  Baytrail Audio Port: sst: error code = -22
[   59.572891]  Baytrail Audio Port: sst: error code = -22
[   59.572929]  Baytrail Audio Port: sst: error code = -22
[   59.573012]  Baytrail Audio Port: sst: error code = -22
[   59.573036]  Baytrail Audio Port: sst: error code = -22
[   59.579628]  Baytrail Audio Port: sst: error code = -22
[   59.579679]  Baytrail Audio Port: sst: error code = -22
[   59.579694]  Baytrail Audio Port: sst: error code = -22
[   59.579707]  Baytrail Audio Port: sst: error code = -22
[   59.579714]  Baytrail Audio Port: sst: error code = -22
[   59.579731]  Baytrail Audio Port: sst: error code = -22
[   59.590940]  Baytrail Audio Port: sst: error code = -22
[   59.590963]  Baytrail Audio Port: sst: error code = -22
[   64.802993]  Baytrail Audio Port: sst: error code = -22
[   64.803005] snd_pcm_update_hw_ptr0: 24 callbacks suppressed
[   64.803015] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   64.803150]  Baytrail Audio Port: sst: error code = -22
[   64.803158] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   64.803166]  Baytrail Audio Port: sst: error code = -22
[   64.803172] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   64.803190]  Baytrail Audio Port: sst: error code = -22
[   64.803197] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   64.803719]  Baytrail Audio Port: sst: error code = -22
[   64.803738] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   64.803758]  Baytrail Audio Port: sst: error code = -22
[   64.803764] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   64.803862]  Baytrail Audio Port: sst: error code = -22
[   64.803873] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   64.872682]  Baytrail Audio Port: sst: error code = -22
[   64.872699] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[   64.872838] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[   65.870109] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   65.870120] intel_sst_acpi 80860F28:00: fw returned err -16
[   66.872889] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   66.872901] intel_sst_acpi 80860F28:00: fw returned err -16
[   67.872586] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[   67.872598] intel_sst_acpi 80860F28:00: fw returned err -16
[   67.872612] intel_sst_acpi 80860F28:00: free stream returned err -19
[   68.896712] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   68.896725] intel_sst_acpi 80860F28:00: fw returned err -16
[   69.896144] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   69.896171] intel_sst_acpi 80860F28:00: fw returned err -16
[   70.896249] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   70.896266] intel_sst_acpi 80860F28:00: fw returned err -16
[   71.896288] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[   71.896315] intel_sst_acpi 80860F28:00: fw returned err -16
[  130.407513]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.408029]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.408328]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.409540]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.409945]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.410164]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.413403]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.413997]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.414360]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.417077]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.417554]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.417861]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.420594]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.420930]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.421098]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.422118]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.422459]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.422620]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.423917]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.424410]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.424690]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.426161]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.426645]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  130.426938]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  131.426840] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  131.426867] intel_sst_acpi 80860F28:00: fw returned err -16
[  131.427187] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[  132.428134] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  132.428163] intel_sst_acpi 80860F28:00: fw returned err -16
[  133.429797] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  133.429824] intel_sst_acpi 80860F28:00: fw returned err -16
[  134.429817] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  134.429843] intel_sst_acpi 80860F28:00: fw returned err -16
[  134.430313] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[  135.430995] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  135.431021] intel_sst_acpi 80860F28:00: fw returned err -16
[  136.432109] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  136.432135] intel_sst_acpi 80860F28:00: fw returned err -16
[  137.434265] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  137.434283] intel_sst_acpi 80860F28:00: fw returned err -16
[  137.434691] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[  138.434285] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  138.434303] intel_sst_acpi 80860F28:00: fw returned err -16
[  139.435959] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  139.435978] intel_sst_acpi 80860F28:00: fw returned err -16
[  140.437014] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  140.437040] intel_sst_acpi 80860F28:00: fw returned err -16
[  140.438159] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[  141.438079] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  141.438096] intel_sst_acpi 80860F28:00: fw returned err -16
[  142.439357] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  142.439381] intel_sst_acpi 80860F28:00: fw returned err -16
[  143.438369] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  143.438395] intel_sst_acpi 80860F28:00: fw returned err -16
[  143.439332] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[  144.439124] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  144.439150] intel_sst_acpi 80860F28:00: fw returned err -16
[  144.519451] intel_sst_acpi 80860F28:00: Alloc for str 1 pipe 0x90
[  145.519858] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  145.519888] intel_sst_acpi 80860F28:00: FW alloc failed ret -16
[  145.519904] intel_sst_acpi 80860F28:00: sst_get_stream returned err -5
[  145.519922] sst-mfld-platform sst-mfld-platform: ASoC: cpu DAI prepare error: -5
[  145.519937]  Baytrail Audio Port: ASoC: prepare FE Baytrail Audio Port failed
[  145.520596] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[  146.520558] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  146.520584] intel_sst_acpi 80860F28:00: fw returned err -16
[  147.522093] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  147.522119] intel_sst_acpi 80860F28:00: fw returned err -16
[  148.521236] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  148.521250] intel_sst_acpi 80860F28:00: fw returned err -16
[  149.522537] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  149.522554] intel_sst_acpi 80860F28:00: fw returned err -16
[  150.526731] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  150.526744] intel_sst_acpi 80860F28:00: fw returned err -16
[  151.524312] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  151.524338] intel_sst_acpi 80860F28:00: fw returned err -16
[  152.525073] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  152.525100] intel_sst_acpi 80860F28:00: fw returned err -16
[  153.525586] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  153.525612] intel_sst_acpi 80860F28:00: fw returned err -16
[  154.524989] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  154.525015] intel_sst_acpi 80860F28:00: fw returned err -16
[  155.525467] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  155.525493] intel_sst_acpi 80860F28:00: fw returned err -16
[  155.575967] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[  156.574763] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  156.574788] intel_sst_acpi 80860F28:00: fw returned err -16
[  157.575193] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  157.575220] intel_sst_acpi 80860F28:00: fw returned err -16
[  158.575847] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  158.575873] intel_sst_acpi 80860F28:00: fw returned err -16
[  158.575903] intel_sst_acpi 80860F28:00: free stream returned err -19
[  159.595191] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  159.595217] intel_sst_acpi 80860F28:00: fw returned err -16
[  160.595587] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  160.595613] intel_sst_acpi 80860F28:00: fw returned err -16
[  161.595952] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  161.595978] intel_sst_acpi 80860F28:00: fw returned err -16
[  162.596429] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  162.596456] intel_sst_acpi 80860F28:00: fw returned err -16
[  162.665663]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.666145]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.666394]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.667661]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.668173]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.668408]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.669987]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.670546]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.670886]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.673152]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.674228]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  162.674699]  Baytrail Audio Port: ASoC: no backend DAIs enabled for Baytrail Audio Port
[  163.686332] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  163.686358] intel_sst_acpi 80860F28:00: fw returned err -16
[  163.686818] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[  164.685119] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  164.685136] intel_sst_acpi 80860F28:00: fw returned err -16
[  164.789313] intel_sst_acpi 80860F28:00: Alloc for str 1 pipe 0x90
[  165.794344] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  165.794358] intel_sst_acpi 80860F28:00: FW alloc failed ret -16
[  165.794365] intel_sst_acpi 80860F28:00: sst_get_stream returned err -5
[  165.794372] sst-mfld-platform sst-mfld-platform: ASoC: cpu DAI prepare error: -5
[  165.794379]  Baytrail Audio Port: ASoC: prepare FE Baytrail Audio Port failed
[  165.794688] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[  166.794642] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  166.794669] intel_sst_acpi 80860F28:00: fw returned err -16
[  167.796117] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  167.796129] intel_sst_acpi 80860F28:00: fw returned err -16
[  168.797987] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  168.798014] intel_sst_acpi 80860F28:00: fw returned err -16
[  169.802906] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  169.802932] intel_sst_acpi 80860F28:00: fw returned err -16
[  170.806534] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  170.806560] intel_sst_acpi 80860F28:00: fw returned err -16
[  171.810438] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  171.810465] intel_sst_acpi 80860F28:00: fw returned err -16
[  172.812952] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  172.812961] intel_sst_acpi 80860F28:00: fw returned err -16
[  173.817607] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  173.817635] intel_sst_acpi 80860F28:00: fw returned err -16
[  174.820863] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  174.820889] intel_sst_acpi 80860F28:00: fw returned err -16
[  175.822940] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  175.822967] intel_sst_acpi 80860F28:00: fw returned err -16
[  175.892065]  Baytrail Audio Port: sst: error code = -22
[  175.892081] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  175.892418]  Baytrail Audio Port: sst: error code = -22
[  175.892427] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  175.892439]  Baytrail Audio Port: sst: error code = -22
[  175.892445] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  180.926965]  Baytrail Audio Port: sst: error code = -22
[  180.927002] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  180.927477] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[  181.930151] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  181.930179] intel_sst_acpi 80860F28:00: fw returned err -16
[  182.932936] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  182.932962] intel_sst_acpi 80860F28:00: fw returned err -16
[  183.935432] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  183.935459] intel_sst_acpi 80860F28:00: fw returned err -16
[  183.935484] intel_sst_acpi 80860F28:00: free stream returned err -19
[  184.956648] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  184.956674] intel_sst_acpi 80860F28:00: fw returned err -16
[  185.958363] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  185.958390] intel_sst_acpi 80860F28:00: fw returned err -16
[  186.960054] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  186.960081] intel_sst_acpi 80860F28:00: fw returned err -16
[  187.961346] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  187.961373] intel_sst_acpi 80860F28:00: fw returned err -16
[  368.335758] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  368.335768] intel_sst_acpi 80860F28:00: fw returned err -16
[  368.335969] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[  369.339594] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  369.339604] intel_sst_acpi 80860F28:00: fw returned err -16
[  369.422501] intel_sst_acpi 80860F28:00: Alloc for str 1 pipe 0x90
[  370.425123] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  370.425153] intel_sst_acpi 80860F28:00: FW alloc failed ret -16
[  370.425170] intel_sst_acpi 80860F28:00: sst_get_stream returned err -5
[  370.425188] sst-mfld-platform sst-mfld-platform: ASoC: cpu DAI prepare error: -5
[  370.425209]  Baytrail Audio Port: ASoC: prepare FE Baytrail Audio Port failed
[  370.425394] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[  371.429421] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  371.429454] intel_sst_acpi 80860F28:00: fw returned err -16
[  372.430784] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  372.430793] intel_sst_acpi 80860F28:00: fw returned err -16
[  373.435531] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  373.435551] intel_sst_acpi 80860F28:00: fw returned err -16
[  374.438268] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  374.438295] intel_sst_acpi 80860F28:00: fw returned err -16
[  375.444229] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  375.444238] intel_sst_acpi 80860F28:00: fw returned err -16
[  376.450572] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  376.450583] intel_sst_acpi 80860F28:00: fw returned err -16
[  377.453088] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  377.453099] intel_sst_acpi 80860F28:00: fw returned err -16
[  378.460059] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  378.460071] intel_sst_acpi 80860F28:00: fw returned err -16
[  379.465836] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  379.465848] intel_sst_acpi 80860F28:00: fw returned err -16
[  380.468331] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  380.468345] intel_sst_acpi 80860F28:00: fw returned err -16
[  380.469922]  Baytrail Audio Port: sst: error code = -22
[  380.469938] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  380.469975]  Baytrail Audio Port: sst: error code = -22
[  380.469986] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  380.471322]  Baytrail Audio Port: sst: error code = -22
[  380.471343] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  380.471379]  Baytrail Audio Port: sst: error code = -22
[  380.471390] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  380.471662]  Baytrail Audio Port: sst: error code = -22
[  380.471677] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  380.471701]  Baytrail Audio Port: sst: error code = -22
[  380.471713] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  380.471948]  Baytrail Audio Port: sst: error code = -22
[  380.471961] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  380.472196]  Baytrail Audio Port: sst: error code = -22
[  380.472207] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  380.477659]  Baytrail Audio Port: sst: error code = -22
[  380.477675] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  380.477734]  Baytrail Audio Port: sst: error code = -22
[  380.477759]  Baytrail Audio Port: sst: error code = -22
[  380.477927]  Baytrail Audio Port: sst: error code = -22
[  380.477944]  Baytrail Audio Port: sst: error code = -22
[  380.477976]  Baytrail Audio Port: sst: error code = -22
[  380.477998]  Baytrail Audio Port: sst: error code = -22
[  380.478115]  Baytrail Audio Port: sst: error code = -22
[  380.478131]  Baytrail Audio Port: sst: error code = -22
[  380.478165]  Baytrail Audio Port: sst: error code = -22
[  380.478187]  Baytrail Audio Port: sst: error code = -22
[  380.478300]  Baytrail Audio Port: sst: error code = -22
[  380.478316]  Baytrail Audio Port: sst: error code = -22
[  380.478326]  Baytrail Audio Port: sst: error code = -22
[  380.478348]  Baytrail Audio Port: sst: error code = -22
[  380.478431]  Baytrail Audio Port: sst: error code = -22
[  380.478447]  Baytrail Audio Port: sst: error code = -22
[  380.478579]  Baytrail Audio Port: sst: error code = -22
[  380.478607]  Baytrail Audio Port: sst: error code = -22
[  380.478688]  Baytrail Audio Port: sst: error code = -22
[  380.478705]  Baytrail Audio Port: sst: error code = -22
[  380.478723]  Baytrail Audio Port: sst: error code = -22
[  380.478749]  Baytrail Audio Port: sst: error code = -22
[  380.478828]  Baytrail Audio Port: sst: error code = -22
[  380.478845]  Baytrail Audio Port: sst: error code = -22
[  380.478877]  Baytrail Audio Port: sst: error code = -22
[  380.478903]  Baytrail Audio Port: sst: error code = -22
[  380.478984]  Baytrail Audio Port: sst: error code = -22
[  380.479000]  Baytrail Audio Port: sst: error code = -22
[  380.479032]  Baytrail Audio Port: sst: error code = -22
[  380.479058]  Baytrail Audio Port: sst: error code = -22
[  380.479137]  Baytrail Audio Port: sst: error code = -22
[  380.479153]  Baytrail Audio Port: sst: error code = -22
[  380.479185]  Baytrail Audio Port: sst: error code = -22
[  380.479210]  Baytrail Audio Port: sst: error code = -22
[  380.479291]  Baytrail Audio Port: sst: error code = -22
[  380.479306]  Baytrail Audio Port: sst: error code = -22
[  380.479338]  Baytrail Audio Port: sst: error code = -22
[  380.479364]  Baytrail Audio Port: sst: error code = -22
[  380.479446]  Baytrail Audio Port: sst: error code = -22
[  380.479463]  Baytrail Audio Port: sst: error code = -22
[  380.479481]  Baytrail Audio Port: sst: error code = -22
[  380.479506]  Baytrail Audio Port: sst: error code = -22
[  380.479587]  Baytrail Audio Port: sst: error code = -22
[  380.479603]  Baytrail Audio Port: sst: error code = -22
[  380.479635]  Baytrail Audio Port: sst: error code = -22
[  380.479661]  Baytrail Audio Port: sst: error code = -22
[  380.479740]  Baytrail Audio Port: sst: error code = -22
[  380.479756]  Baytrail Audio Port: sst: error code = -22
[  380.479788]  Baytrail Audio Port: sst: error code = -22
[  380.479839]  Baytrail Audio Port: sst: error code = -22
[  380.483383]  Baytrail Audio Port: sst: error code = -22
[  380.483414]  Baytrail Audio Port: sst: error code = -22
[  380.483441]  Baytrail Audio Port: sst: error code = -22
[  380.483604]  Baytrail Audio Port: sst: error code = -22
[  380.483620]  Baytrail Audio Port: sst: error code = -22
[  380.483636]  Baytrail Audio Port: sst: error code = -22
[  380.483659]  Baytrail Audio Port: sst: error code = -22
[  380.483786]  Baytrail Audio Port: sst: error code = -22
[  380.483802]  Baytrail Audio Port: sst: error code = -22
[  380.483852]  Baytrail Audio Port: sst: error code = -22
[  380.483868]  Baytrail Audio Port: sst: error code = -22
[  380.484610]  Baytrail Audio Port: sst: error code = -22
[  380.484636]  Baytrail Audio Port: sst: error code = -22
[  380.484659]  Baytrail Audio Port: sst: error code = -22
[  380.484843]  Baytrail Audio Port: sst: error code = -22
[  380.484859]  Baytrail Audio Port: sst: error code = -22
[  380.484878]  Baytrail Audio Port: sst: error code = -22
[  380.484900]  Baytrail Audio Port: sst: error code = -22
[  380.484981]  Baytrail Audio Port: sst: error code = -22
[  380.484997]  Baytrail Audio Port: sst: error code = -22
[  380.485015]  Baytrail Audio Port: sst: error code = -22
[  380.485036]  Baytrail Audio Port: sst: error code = -22
[  380.485116]  Baytrail Audio Port: sst: error code = -22
[  380.485132]  Baytrail Audio Port: sst: error code = -22
[  380.485164]  Baytrail Audio Port: sst: error code = -22
[  380.485186]  Baytrail Audio Port: sst: error code = -22
[  380.485270]  Baytrail Audio Port: sst: error code = -22
[  380.485286]  Baytrail Audio Port: sst: error code = -22
[  380.485308]  Baytrail Audio Port: sst: error code = -22
[  380.485395]  Baytrail Audio Port: sst: error code = -22
[  380.485411]  Baytrail Audio Port: sst: error code = -22
[  380.485429]  Baytrail Audio Port: sst: error code = -22
[  380.485450]  Baytrail Audio Port: sst: error code = -22
[  380.485541]  Baytrail Audio Port: sst: error code = -22
[  380.485557]  Baytrail Audio Port: sst: error code = -22
[  380.485585]  Baytrail Audio Port: sst: error code = -22
[  380.485607]  Baytrail Audio Port: sst: error code = -22
[  380.485695]  Baytrail Audio Port: sst: error code = -22
[  380.485711]  Baytrail Audio Port: sst: error code = -22
[  380.485727]  Baytrail Audio Port: sst: error code = -22
[  380.485748]  Baytrail Audio Port: sst: error code = -22
[  380.485834]  Baytrail Audio Port: sst: error code = -22
[  380.485850]  Baytrail Audio Port: sst: error code = -22
[  380.485868]  Baytrail Audio Port: sst: error code = -22
[  380.485889]  Baytrail Audio Port: sst: error code = -22
[  380.485976]  Baytrail Audio Port: sst: error code = -22
[  380.485991]  Baytrail Audio Port: sst: error code = -22
[  380.486008]  Baytrail Audio Port: sst: error code = -22
[  380.486028]  Baytrail Audio Port: sst: error code = -22
[  380.486114]  Baytrail Audio Port: sst: error code = -22
[  380.486130]  Baytrail Audio Port: sst: error code = -22
[  380.486158]  Baytrail Audio Port: sst: error code = -22
[  380.486180]  Baytrail Audio Port: sst: error code = -22
[  380.486265]  Baytrail Audio Port: sst: error code = -22
[  380.486281]  Baytrail Audio Port: sst: error code = -22
[  380.486299]  Baytrail Audio Port: sst: error code = -22
[  380.486320]  Baytrail Audio Port: sst: error code = -22
[  380.486405]  Baytrail Audio Port: sst: error code = -22
[  380.486421]  Baytrail Audio Port: sst: error code = -22
[  380.486451]  Baytrail Audio Port: sst: error code = -22
[  380.486473]  Baytrail Audio Port: sst: error code = -22
[  380.486558]  Baytrail Audio Port: sst: error code = -22
[  380.486574]  Baytrail Audio Port: sst: error code = -22
[  380.486604]  Baytrail Audio Port: sst: error code = -22
[  380.486626]  Baytrail Audio Port: sst: error code = -22
[  380.486711]  Baytrail Audio Port: sst: error code = -22
[  380.486728]  Baytrail Audio Port: sst: error code = -22
[  380.486745]  Baytrail Audio Port: sst: error code = -22
[  380.486766]  Baytrail Audio Port: sst: error code = -22
[  380.486854]  Baytrail Audio Port: sst: error code = -22
[  380.486870]  Baytrail Audio Port: sst: error code = -22
[  380.486887]  Baytrail Audio Port: sst: error code = -22
[  380.486908]  Baytrail Audio Port: sst: error code = -22
[  380.486993]  Baytrail Audio Port: sst: error code = -22
[  380.487009]  Baytrail Audio Port: sst: error code = -22
[  380.487039]  Baytrail Audio Port: sst: error code = -22
[  380.487054]  Baytrail Audio Port: sst: error code = -22
[  380.487084]  Baytrail Audio Port: sst: error code = -22
[  380.487099]  Baytrail Audio Port: sst: error code = -22
[  380.487131]  Baytrail Audio Port: sst: error code = -22
[  380.487146]  Baytrail Audio Port: sst: error code = -22
[  380.487178]  Baytrail Audio Port: sst: error code = -22
[  380.487193]  Baytrail Audio Port: sst: error code = -22
[  380.487224]  Baytrail Audio Port: sst: error code = -22
[  380.487238]  Baytrail Audio Port: sst: error code = -22
[  380.487270]  Baytrail Audio Port: sst: error code = -22
[  380.487285]  Baytrail Audio Port: sst: error code = -22
[  380.487316]  Baytrail Audio Port: sst: error code = -22
[  380.487332]  Baytrail Audio Port: sst: error code = -22
[  380.487362]  Baytrail Audio Port: sst: error code = -22
[  380.487378]  Baytrail Audio Port: sst: error code = -22
[  380.487408]  Baytrail Audio Port: sst: error code = -22
[  380.487424]  Baytrail Audio Port: sst: error code = -22
[  380.487456]  Baytrail Audio Port: sst: error code = -22
[  380.487471]  Baytrail Audio Port: sst: error code = -22
[  380.487503]  Baytrail Audio Port: sst: error code = -22
[  380.487518]  Baytrail Audio Port: sst: error code = -22
[  380.487550]  Baytrail Audio Port: sst: error code = -22
[  380.487566]  Baytrail Audio Port: sst: error code = -22
[  380.487596]  Baytrail Audio Port: sst: error code = -22
[  380.487612]  Baytrail Audio Port: sst: error code = -22
[  380.487642]  Baytrail Audio Port: sst: error code = -22
[  380.487657]  Baytrail Audio Port: sst: error code = -22
[  380.487688]  Baytrail Audio Port: sst: error code = -22
[  380.487703]  Baytrail Audio Port: sst: error code = -22
[  380.487734]  Baytrail Audio Port: sst: error code = -22
[  380.487750]  Baytrail Audio Port: sst: error code = -22
[  380.487782]  Baytrail Audio Port: sst: error code = -22
[  380.487797]  Baytrail Audio Port: sst: error code = -22
[  380.487863]  Baytrail Audio Port: sst: error code = -22
[  380.487878]  Baytrail Audio Port: sst: error code = -22
[  380.492209]  Baytrail Audio Port: sst: error code = -22
[  380.492233]  Baytrail Audio Port: sst: error code = -22
[  380.492247]  Baytrail Audio Port: sst: error code = -22
[  380.492285]  Baytrail Audio Port: sst: error code = -22
[  380.492301]  Baytrail Audio Port: sst: error code = -22
[  380.492331]  Baytrail Audio Port: sst: error code = -22
[  380.492347]  Baytrail Audio Port: sst: error code = -22
[  380.492376]  Baytrail Audio Port: sst: error code = -22
[  380.492392]  Baytrail Audio Port: sst: error code = -22
[  380.492419]  Baytrail Audio Port: sst: error code = -22
[  380.492434]  Baytrail Audio Port: sst: error code = -22
[  380.492464]  Baytrail Audio Port: sst: error code = -22
[  380.492479]  Baytrail Audio Port: sst: error code = -22
[  380.492508]  Baytrail Audio Port: sst: error code = -22
[  380.492524]  Baytrail Audio Port: sst: error code = -22
[  380.492552]  Baytrail Audio Port: sst: error code = -22
[  380.492570]  Baytrail Audio Port: sst: error code = -22
[  380.492600]  Baytrail Audio Port: sst: error code = -22
[  380.492615]  Baytrail Audio Port: sst: error code = -22
[  380.492644]  Baytrail Audio Port: sst: error code = -22
[  380.492660]  Baytrail Audio Port: sst: error code = -22
[  380.492688]  Baytrail Audio Port: sst: error code = -22
[  380.492703]  Baytrail Audio Port: sst: error code = -22
[  380.492732]  Baytrail Audio Port: sst: error code = -22
[  380.492748]  Baytrail Audio Port: sst: error code = -22
[  380.492781]  Baytrail Audio Port: sst: error code = -22
[  380.492797]  Baytrail Audio Port: sst: error code = -22
[  380.492826]  Baytrail Audio Port: sst: error code = -22
[  380.492842]  Baytrail Audio Port: sst: error code = -22
[  380.492871]  Baytrail Audio Port: sst: error code = -22
[  380.492887]  Baytrail Audio Port: sst: error code = -22
[  380.492916]  Baytrail Audio Port: sst: error code = -22
[  380.492932]  Baytrail Audio Port: sst: error code = -22
[  380.492960]  Baytrail Audio Port: sst: error code = -22
[  380.492977]  Baytrail Audio Port: sst: error code = -22
[  380.493006]  Baytrail Audio Port: sst: error code = -22
[  380.493023]  Baytrail Audio Port: sst: error code = -22
[  380.493052]  Baytrail Audio Port: sst: error code = -22
[  380.493068]  Baytrail Audio Port: sst: error code = -22
[  380.493097]  Baytrail Audio Port: sst: error code = -22
[  380.493114]  Baytrail Audio Port: sst: error code = -22
[  380.493143]  Baytrail Audio Port: sst: error code = -22
[  380.493159]  Baytrail Audio Port: sst: error code = -22
[  380.493189]  Baytrail Audio Port: sst: error code = -22
[  380.493205]  Baytrail Audio Port: sst: error code = -22
[  380.493234]  Baytrail Audio Port: sst: error code = -22
[  380.493250]  Baytrail Audio Port: sst: error code = -22
[  380.493276]  Baytrail Audio Port: sst: error code = -22
[  380.493292]  Baytrail Audio Port: sst: error code = -22
[  380.493325]  Baytrail Audio Port: sst: error code = -22
[  380.493341]  Baytrail Audio Port: sst: error code = -22
[  380.493370]  Baytrail Audio Port: sst: error code = -22
[  380.493385]  Baytrail Audio Port: sst: error code = -22
[  380.493414]  Baytrail Audio Port: sst: error code = -22
[  380.493430]  Baytrail Audio Port: sst: error code = -22
[  380.493459]  Baytrail Audio Port: sst: error code = -22
[  380.493474]  Baytrail Audio Port: sst: error code = -22
[  380.493504]  Baytrail Audio Port: sst: error code = -22
[  380.493519]  Baytrail Audio Port: sst: error code = -22
[  380.493548]  Baytrail Audio Port: sst: error code = -22
[  380.493564]  Baytrail Audio Port: sst: error code = -22
[  380.493592]  Baytrail Audio Port: sst: error code = -22
[  380.493608]  Baytrail Audio Port: sst: error code = -22
[  380.493636]  Baytrail Audio Port: sst: error code = -22
[  380.493652]  Baytrail Audio Port: sst: error code = -22
[  380.493681]  Baytrail Audio Port: sst: error code = -22
[  380.493696]  Baytrail Audio Port: sst: error code = -22
[  380.493725]  Baytrail Audio Port: sst: error code = -22
[  380.493741]  Baytrail Audio Port: sst: error code = -22
[  380.493770]  Baytrail Audio Port: sst: error code = -22
[  380.493788]  Baytrail Audio Port: sst: error code = -22
[  380.493817]  Baytrail Audio Port: sst: error code = -22
[  380.493836]  Baytrail Audio Port: sst: error code = -22
[  380.493853]  Baytrail Audio Port: sst: error code = -22
[  380.493868]  Baytrail Audio Port: sst: error code = -22
[  380.493905]  Baytrail Audio Port: sst: error code = -22
[  380.493921]  Baytrail Audio Port: sst: error code = -22
[  380.493950]  Baytrail Audio Port: sst: error code = -22
[  380.493966]  Baytrail Audio Port: sst: error code = -22
[  380.493995]  Baytrail Audio Port: sst: error code = -22
[  380.494012]  Baytrail Audio Port: sst: error code = -22
[  380.494041]  Baytrail Audio Port: sst: error code = -22
[  380.494057]  Baytrail Audio Port: sst: error code = -22
[  380.494086]  Baytrail Audio Port: sst: error code = -22
[  380.494103]  Baytrail Audio Port: sst: error code = -22
[  380.494132]  Baytrail Audio Port: sst: error code = -22
[  380.494149]  Baytrail Audio Port: sst: error code = -22
[  380.494178]  Baytrail Audio Port: sst: error code = -22
[  380.494195]  Baytrail Audio Port: sst: error code = -22
[  380.494224]  Baytrail Audio Port: sst: error code = -22
[  380.494241]  Baytrail Audio Port: sst: error code = -22
[  380.494270]  Baytrail Audio Port: sst: error code = -22
[  380.494287]  Baytrail Audio Port: sst: error code = -22
[  380.494316]  Baytrail Audio Port: sst: error code = -22
[  380.494334]  Baytrail Audio Port: sst: error code = -22
[  380.494363]  Baytrail Audio Port: sst: error code = -22
[  380.494379]  Baytrail Audio Port: sst: error code = -22
[  380.494407]  Baytrail Audio Port: sst: error code = -22
[  380.494423]  Baytrail Audio Port: sst: error code = -22
[  380.494452]  Baytrail Audio Port: sst: error code = -22
[  380.494468]  Baytrail Audio Port: sst: error code = -22
[  380.494497]  Baytrail Audio Port: sst: error code = -22
[  380.494512]  Baytrail Audio Port: sst: error code = -22
[  380.494542]  Baytrail Audio Port: sst: error code = -22
[  380.494557]  Baytrail Audio Port: sst: error code = -22
[  380.494586]  Baytrail Audio Port: sst: error code = -22
[  380.494602]  Baytrail Audio Port: sst: error code = -22
[  380.494631]  Baytrail Audio Port: sst: error code = -22
[  380.494646]  Baytrail Audio Port: sst: error code = -22
[  380.494675]  Baytrail Audio Port: sst: error code = -22
[  380.494691]  Baytrail Audio Port: sst: error code = -22
[  380.494730]  Baytrail Audio Port: sst: error code = -22
[  380.494746]  Baytrail Audio Port: sst: error code = -22
[  380.494775]  Baytrail Audio Port: sst: error code = -22
[  380.494791]  Baytrail Audio Port: sst: error code = -22
[  380.494820]  Baytrail Audio Port: sst: error code = -22
[  380.494836]  Baytrail Audio Port: sst: error code = -22
[  380.494869]  Baytrail Audio Port: sst: error code = -22
[  380.494885]  Baytrail Audio Port: sst: error code = -22
[  380.494917]  Baytrail Audio Port: sst: error code = -22
[  380.494933]  Baytrail Audio Port: sst: error code = -22
[  380.494965]  Baytrail Audio Port: sst: error code = -22
[  380.494980]  Baytrail Audio Port: sst: error code = -22
[  380.495012]  Baytrail Audio Port: sst: error code = -22
[  380.495038]  Baytrail Audio Port: sst: error code = -22
[  380.495053]  Baytrail Audio Port: sst: error code = -22
[  380.495097]  Baytrail Audio Port: sst: error code = -22
[  380.495112]  Baytrail Audio Port: sst: error code = -22
[  380.495141]  Baytrail Audio Port: sst: error code = -22
[  380.495157]  Baytrail Audio Port: sst: error code = -22
[  380.495186]  Baytrail Audio Port: sst: error code = -22
[  380.495202]  Baytrail Audio Port: sst: error code = -22
[  380.495232]  Baytrail Audio Port: sst: error code = -22
[  380.495248]  Baytrail Audio Port: sst: error code = -22
[  380.495279]  Baytrail Audio Port: sst: error code = -22
[  380.495295]  Baytrail Audio Port: sst: error code = -22
[  380.495323]  Baytrail Audio Port: sst: error code = -22
[  380.495342]  Baytrail Audio Port: sst: error code = -22
[  380.495370]  Baytrail Audio Port: sst: error code = -22
[  380.495389]  Baytrail Audio Port: sst: error code = -22
[  380.495407]  Baytrail Audio Port: sst: error code = -22
[  380.495421]  Baytrail Audio Port: sst: error code = -22
[  380.495456]  Baytrail Audio Port: sst: error code = -22
[  380.495472]  Baytrail Audio Port: sst: error code = -22
[  380.495500]  Baytrail Audio Port: sst: error code = -22
[  380.495516]  Baytrail Audio Port: sst: error code = -22
[  380.495544]  Baytrail Audio Port: sst: error code = -22
[  380.495560]  Baytrail Audio Port: sst: error code = -22
[  380.495588]  Baytrail Audio Port: sst: error code = -22
[  380.495604]  Baytrail Audio Port: sst: error code = -22
[  380.495633]  Baytrail Audio Port: sst: error code = -22
[  380.495649]  Baytrail Audio Port: sst: error code = -22
[  380.495727]  Baytrail Audio Port: sst: error code = -22
[  380.495743]  Baytrail Audio Port: sst: error code = -22
[  380.495798]  Baytrail Audio Port: sst: error code = -22
[  380.495817]  Baytrail Audio Port: sst: error code = -22
[  380.496106]  Baytrail Audio Port: sst: error code = -22
[  380.496125]  Baytrail Audio Port: sst: error code = -22
[  380.496138]  Baytrail Audio Port: sst: error code = -22
[  380.496150]  Baytrail Audio Port: sst: error code = -22
[  380.496163]  Baytrail Audio Port: sst: error code = -22
[  380.496175]  Baytrail Audio Port: sst: error code = -22
[  380.496240]  Baytrail Audio Port: sst: error code = -22
[  380.496257]  Baytrail Audio Port: sst: error code = -22
[  380.496309]  Baytrail Audio Port: sst: error code = -22
[  380.496326]  Baytrail Audio Port: sst: error code = -22
[  380.496378]  Baytrail Audio Port: sst: error code = -22
[  380.496395]  Baytrail Audio Port: sst: error code = -22
[  380.496450]  Baytrail Audio Port: sst: error code = -22
[  380.496468]  Baytrail Audio Port: sst: error code = -22
[  380.496523]  Baytrail Audio Port: sst: error code = -22
[  380.496540]  Baytrail Audio Port: sst: error code = -22
[  380.496598]  Baytrail Audio Port: sst: error code = -22
[  380.496615]  Baytrail Audio Port: sst: error code = -22
[  380.496668]  Baytrail Audio Port: sst: error code = -22
[  380.496685]  Baytrail Audio Port: sst: error code = -22
[  380.496741]  Baytrail Audio Port: sst: error code = -22
[  380.496758]  Baytrail Audio Port: sst: error code = -22
[  380.496812]  Baytrail Audio Port: sst: error code = -22
[  380.496829]  Baytrail Audio Port: sst: error code = -22
[  380.496890]  Baytrail Audio Port: sst: error code = -22
[  380.496907]  Baytrail Audio Port: sst: error code = -22
[  380.496963]  Baytrail Audio Port: sst: error code = -22
[  380.496983]  Baytrail Audio Port: sst: error code = -22
[  380.497039]  Baytrail Audio Port: sst: error code = -22
[  380.497056]  Baytrail Audio Port: sst: error code = -22
[  380.497117]  Baytrail Audio Port: sst: error code = -22
[  380.497134]  Baytrail Audio Port: sst: error code = -22
[  380.497192]  Baytrail Audio Port: sst: error code = -22
[  380.497209]  Baytrail Audio Port: sst: error code = -22
[  380.497266]  Baytrail Audio Port: sst: error code = -22
[  380.497283]  Baytrail Audio Port: sst: error code = -22
[  380.497429]  Baytrail Audio Port: sst: error code = -22
[  380.497449]  Baytrail Audio Port: sst: error code = -22
[  380.497462]  Baytrail Audio Port: sst: error code = -22
[  380.497474]  Baytrail Audio Port: sst: error code = -22
[  380.497540]  Baytrail Audio Port: sst: error code = -22
[  380.497557]  Baytrail Audio Port: sst: error code = -22
[  380.497612]  Baytrail Audio Port: sst: error code = -22
[  380.497630]  Baytrail Audio Port: sst: error code = -22
[  380.497684]  Baytrail Audio Port: sst: error code = -22
[  380.497701]  Baytrail Audio Port: sst: error code = -22
[  380.497758]  Baytrail Audio Port: sst: error code = -22
[  380.497775]  Baytrail Audio Port: sst: error code = -22
[  380.497829]  Baytrail Audio Port: sst: error code = -22
[  380.497845]  Baytrail Audio Port: sst: error code = -22
[  380.497900]  Baytrail Audio Port: sst: error code = -22
[  380.497916]  Baytrail Audio Port: sst: error code = -22
[  380.497993]  Baytrail Audio Port: sst: error code = -22
[  380.498010]  Baytrail Audio Port: sst: error code = -22
[  380.498043]  Baytrail Audio Port: sst: error code = -22
[  380.498060]  Baytrail Audio Port: sst: error code = -22
[  380.498114]  Baytrail Audio Port: sst: error code = -22
[  380.498131]  Baytrail Audio Port: sst: error code = -22
[  380.498198]  Baytrail Audio Port: sst: error code = -22
[  380.498215]  Baytrail Audio Port: sst: error code = -22
[  380.498256]  Baytrail Audio Port: sst: error code = -22
[  380.498273]  Baytrail Audio Port: sst: error code = -22
[  380.498327]  Baytrail Audio Port: sst: error code = -22
[  380.498344]  Baytrail Audio Port: sst: error code = -22
[  380.498398]  Baytrail Audio Port: sst: error code = -22
[  380.498415]  Baytrail Audio Port: sst: error code = -22
[  380.498478]  Baytrail Audio Port: sst: error code = -22
[  380.498496]  Baytrail Audio Port: sst: error code = -22
[  380.498552]  Baytrail Audio Port: sst: error code = -22
[  380.498568]  Baytrail Audio Port: sst: error code = -22
[  380.498631]  Baytrail Audio Port: sst: error code = -22
[  380.498647]  Baytrail Audio Port: sst: error code = -22
[  380.498708]  Baytrail Audio Port: sst: error code = -22
[  380.498728]  Baytrail Audio Port: sst: error code = -22
[  380.498783]  Baytrail Audio Port: sst: error code = -22
[  380.498799]  Baytrail Audio Port: sst: error code = -22
[  380.498855]  Baytrail Audio Port: sst: error code = -22
[  380.498874]  Baytrail Audio Port: sst: error code = -22
[  380.498932]  Baytrail Audio Port: sst: error code = -22
[  380.498949]  Baytrail Audio Port: sst: error code = -22
[  380.499002]  Baytrail Audio Port: sst: error code = -22
[  380.499019]  Baytrail Audio Port: sst: error code = -22
[  380.499072]  Baytrail Audio Port: sst: error code = -22
[  380.499089]  Baytrail Audio Port: sst: error code = -22
[  380.499144]  Baytrail Audio Port: sst: error code = -22
[  380.499161]  Baytrail Audio Port: sst: error code = -22
[  380.499214]  Baytrail Audio Port: sst: error code = -22
[  380.499231]  Baytrail Audio Port: sst: error code = -22
[  380.499288]  Baytrail Audio Port: sst: error code = -22
[  380.499314]  Baytrail Audio Port: sst: error code = -22
[  380.499360]  Baytrail Audio Port: sst: error code = -22
[  380.499377]  Baytrail Audio Port: sst: error code = -22
[  380.499433]  Baytrail Audio Port: sst: error code = -22
[  380.499453]  Baytrail Audio Port: sst: error code = -22
[  380.499504]  Baytrail Audio Port: sst: error code = -22
[  380.499521]  Baytrail Audio Port: sst: error code = -22
[  380.499576]  Baytrail Audio Port: sst: error code = -22
[  380.499596]  Baytrail Audio Port: sst: error code = -22
[  380.499650]  Baytrail Audio Port: sst: error code = -22
[  380.499667]  Baytrail Audio Port: sst: error code = -22
[  380.499719]  Baytrail Audio Port: sst: error code = -22
[  380.499741]  Baytrail Audio Port: sst: error code = -22
[  380.499759]  Baytrail Audio Port: sst: error code = -22
[  380.499786]  Baytrail Audio Port: sst: error code = -22
[  380.499962]  Baytrail Audio Port: sst: error code = -22
[  380.499992]  Baytrail Audio Port: sst: error code = -22
[  380.500001]  Baytrail Audio Port: sst: error code = -22
[  380.500018]  Baytrail Audio Port: sst: error code = -22
[  380.556887]  Baytrail Audio Port: sst: error code = -22
[  380.556904]  Baytrail Audio Port: sst: error code = -22
[  380.556940]  Baytrail Audio Port: sst: error code = -22
[  380.557226]  Baytrail Audio Port: sst: error code = -22
[  380.557249]  Baytrail Audio Port: sst: error code = -22
[  380.557343]  Baytrail Audio Port: sst: error code = -22
[  380.557361]  Baytrail Audio Port: sst: error code = -22
[  380.557454]  Baytrail Audio Port: sst: error code = -22
[  380.557472]  Baytrail Audio Port: sst: error code = -22
[  380.557772]  Baytrail Audio Port: sst: error code = -22
[  380.557793]  Baytrail Audio Port: sst: error code = -22
[  380.557972]  Baytrail Audio Port: sst: error code = -22
[  380.558303]  Baytrail Audio Port: sst: error code = -22
[  380.558815]  Baytrail Audio Port: sst: error code = -22
[  380.558842]  Baytrail Audio Port: sst: error code = -22
[  380.559023]  Baytrail Audio Port: sst: error code = -22
[  380.559041]  Baytrail Audio Port: sst: error code = -22
[  380.561448]  Baytrail Audio Port: sst: error code = -22
[  380.561479]  Baytrail Audio Port: sst: error code = -22
[  380.561502]  Baytrail Audio Port: sst: error code = -22
[  380.561586]  Baytrail Audio Port: sst: error code = -22
[  380.561600]  Baytrail Audio Port: sst: error code = -22
[  380.561636]  Baytrail Audio Port: sst: error code = -22
[  380.561703]  Baytrail Audio Port: sst: error code = -22
[  380.561716]  Baytrail Audio Port: sst: error code = -22
[  380.561739]  Baytrail Audio Port: sst: error code = -22
[  380.561809]  Baytrail Audio Port: sst: error code = -22
[  380.561822]  Baytrail Audio Port: sst: error code = -22
[  380.561845]  Baytrail Audio Port: sst: error code = -22
[  380.561927]  Baytrail Audio Port: sst: error code = -22
[  380.561942]  Baytrail Audio Port: sst: error code = -22
[  380.561952]  Baytrail Audio Port: sst: error code = -22
[  380.561974]  Baytrail Audio Port: sst: error code = -22
[  380.562057]  Baytrail Audio Port: sst: error code = -22
[  380.562072]  Baytrail Audio Port: sst: error code = -22
[  380.562098]  Baytrail Audio Port: sst: error code = -22
[  380.562177]  Baytrail Audio Port: sst: error code = -22
[  380.562192]  Baytrail Audio Port: sst: error code = -22
[  380.562219]  Baytrail Audio Port: sst: error code = -22
[  380.562301]  Baytrail Audio Port: sst: error code = -22
[  380.562317]  Baytrail Audio Port: sst: error code = -22
[  380.562341]  Baytrail Audio Port: sst: error code = -22
[  380.562420]  Baytrail Audio Port: sst: error code = -22
[  380.562435]  Baytrail Audio Port: sst: error code = -22
[  380.562446]  Baytrail Audio Port: sst: error code = -22
[  380.562468]  Baytrail Audio Port: sst: error code = -22
[  380.562548]  Baytrail Audio Port: sst: error code = -22
[  380.562563]  Baytrail Audio Port: sst: error code = -22
[  380.562589]  Baytrail Audio Port: sst: error code = -22
[  380.562666]  Baytrail Audio Port: sst: error code = -22
[  380.562681]  Baytrail Audio Port: sst: error code = -22
[  380.562708]  Baytrail Audio Port: sst: error code = -22
[  380.562787]  Baytrail Audio Port: sst: error code = -22
[  380.562802]  Baytrail Audio Port: sst: error code = -22
[  380.562826]  Baytrail Audio Port: sst: error code = -22
[  380.562904]  Baytrail Audio Port: sst: error code = -22
[  380.562919]  Baytrail Audio Port: sst: error code = -22
[  380.562946]  Baytrail Audio Port: sst: error code = -22
[  380.563026]  Baytrail Audio Port: sst: error code = -22
[  380.563041]  Baytrail Audio Port: sst: error code = -22
[  380.563065]  Baytrail Audio Port: sst: error code = -22
[  380.563142]  Baytrail Audio Port: sst: error code = -22
[  380.563157]  Baytrail Audio Port: sst: error code = -22
[  380.563167]  Baytrail Audio Port: sst: error code = -22
[  380.563190]  Baytrail Audio Port: sst: error code = -22
[  380.563270]  Baytrail Audio Port: sst: error code = -22
[  380.563285]  Baytrail Audio Port: sst: error code = -22
[  380.563310]  Baytrail Audio Port: sst: error code = -22
[  380.563387]  Baytrail Audio Port: sst: error code = -22
[  380.563403]  Baytrail Audio Port: sst: error code = -22
[  380.563413]  Baytrail Audio Port: sst: error code = -22
[  380.563439]  Baytrail Audio Port: sst: error code = -22
[  380.563517]  Baytrail Audio Port: sst: error code = -22
[  380.563532]  Baytrail Audio Port: sst: error code = -22
[  380.563548]  Baytrail Audio Port: sst: error code = -22
[  380.563571]  Baytrail Audio Port: sst: error code = -22
[  380.563649]  Baytrail Audio Port: sst: error code = -22
[  380.563668]  Baytrail Audio Port: sst: error code = -22
[  380.563692]  Baytrail Audio Port: sst: error code = -22
[  380.563770]  Baytrail Audio Port: sst: error code = -22
[  380.563785]  Baytrail Audio Port: sst: error code = -22
[  380.563812]  Baytrail Audio Port: sst: error code = -22
[  380.563890]  Baytrail Audio Port: sst: error code = -22
[  380.563906]  Baytrail Audio Port: sst: error code = -22
[  380.563932]  Baytrail Audio Port: sst: error code = -22
[  380.564271]  Baytrail Audio Port: sst: error code = -22
[  380.564288]  Baytrail Audio Port: sst: error code = -22
[  380.564314]  Baytrail Audio Port: sst: error code = -22
[  380.564394]  Baytrail Audio Port: sst: error code = -22
[  380.564410]  Baytrail Audio Port: sst: error code = -22
[  380.564437]  Baytrail Audio Port: sst: error code = -22
[  380.564518]  Baytrail Audio Port: sst: error code = -22
[  380.564534]  Baytrail Audio Port: sst: error code = -22
[  380.564560]  Baytrail Audio Port: sst: error code = -22
[  380.564640]  Baytrail Audio Port: sst: error code = -22
[  380.564656]  Baytrail Audio Port: sst: error code = -22
[  380.564683]  Baytrail Audio Port: sst: error code = -22
[  380.564762]  Baytrail Audio Port: sst: error code = -22
[  380.564777]  Baytrail Audio Port: sst: error code = -22
[  380.564787]  Baytrail Audio Port: sst: error code = -22
[  380.564810]  Baytrail Audio Port: sst: error code = -22
[  380.564889]  Baytrail Audio Port: sst: error code = -22
[  380.564904]  Baytrail Audio Port: sst: error code = -22
[  380.564937]  Baytrail Audio Port: sst: error code = -22
[  380.564951]  Baytrail Audio Port: sst: error code = -22
[  380.564985]  Baytrail Audio Port: sst: error code = -22
[  380.564999]  Baytrail Audio Port: sst: error code = -22
[  380.565030]  Baytrail Audio Port: sst: error code = -22
[  380.565045]  Baytrail Audio Port: sst: error code = -22
[  380.565134]  Baytrail Audio Port: sst: error code = -22
[  380.565149]  Baytrail Audio Port: sst: error code = -22
[  380.565167]  Baytrail Audio Port: sst: error code = -22
[  380.565180]  Baytrail Audio Port: sst: error code = -22
[  380.565217]  Baytrail Audio Port: sst: error code = -22
[  380.565232]  Baytrail Audio Port: sst: error code = -22
[  380.565245]  Baytrail Audio Port: sst: error code = -22
[  380.565293]  Baytrail Audio Port: sst: error code = -22
[  380.565307]  Baytrail Audio Port: sst: error code = -22
[  380.565320]  Baytrail Audio Port: sst: error code = -22
[  380.565366]  Baytrail Audio Port: sst: error code = -22
[  380.565382]  Baytrail Audio Port: sst: error code = -22
[  380.565395]  Baytrail Audio Port: sst: error code = -22
[  380.565444]  Baytrail Audio Port: sst: error code = -22
[  380.565459]  Baytrail Audio Port: sst: error code = -22
[  380.565476]  Baytrail Audio Port: sst: error code = -22
[  380.565524]  Baytrail Audio Port: sst: error code = -22
[  380.565539]  Baytrail Audio Port: sst: error code = -22
[  380.565556]  Baytrail Audio Port: sst: error code = -22
[  380.565598]  Baytrail Audio Port: sst: error code = -22
[  380.565613]  Baytrail Audio Port: sst: error code = -22
[  380.565630]  Baytrail Audio Port: sst: error code = -22
[  380.565643]  Baytrail Audio Port: sst: error code = -22
[  380.565676]  Baytrail Audio Port: sst: error code = -22
[  380.565690]  Baytrail Audio Port: sst: error code = -22
[  380.565707]  Baytrail Audio Port: sst: error code = -22
[  380.565720]  Baytrail Audio Port: sst: error code = -22
[  380.565752]  Baytrail Audio Port: sst: error code = -22
[  380.565767]  Baytrail Audio Port: sst: error code = -22
[  380.565798]  Baytrail Audio Port: sst: error code = -22
[  380.565813]  Baytrail Audio Port: sst: error code = -22
[  380.565831]  Baytrail Audio Port: sst: error code = -22
[  380.565844]  Baytrail Audio Port: sst: error code = -22
[  380.565878]  Baytrail Audio Port: sst: error code = -22
[  380.565893]  Baytrail Audio Port: sst: error code = -22
[  380.565909]  Baytrail Audio Port: sst: error code = -22
[  380.565922]  Baytrail Audio Port: sst: error code = -22
[  380.565955]  Baytrail Audio Port: sst: error code = -22
[  380.565969]  Baytrail Audio Port: sst: error code = -22
[  380.565987]  Baytrail Audio Port: sst: error code = -22
[  380.566000]  Baytrail Audio Port: sst: error code = -22
[  380.566033]  Baytrail Audio Port: sst: error code = -22
[  380.566047]  Baytrail Audio Port: sst: error code = -22
[  380.566064]  Baytrail Audio Port: sst: error code = -22
[  380.566078]  Baytrail Audio Port: sst: error code = -22
[  380.566115]  Baytrail Audio Port: sst: error code = -22
[  380.566129]  Baytrail Audio Port: sst: error code = -22
[  380.566141]  Baytrail Audio Port: sst: error code = -22
[  380.566187]  Baytrail Audio Port: sst: error code = -22
[  380.566202]  Baytrail Audio Port: sst: error code = -22
[  380.566217]  Baytrail Audio Port: sst: error code = -22
[  380.566230]  Baytrail Audio Port: sst: error code = -22
[  380.566265]  Baytrail Audio Port: sst: error code = -22
[  380.566279]  Baytrail Audio Port: sst: error code = -22
[  380.566289]  Baytrail Audio Port: sst: error code = -22
[  380.566300]  Baytrail Audio Port: sst: error code = -22
[  380.566340]  Baytrail Audio Port: sst: error code = -22
[  380.566359]  Baytrail Audio Port: sst: error code = -22
[  380.566372]  Baytrail Audio Port: sst: error code = -22
[  380.566416]  Baytrail Audio Port: sst: error code = -22
[  380.566431]  Baytrail Audio Port: sst: error code = -22
[  380.566448]  Baytrail Audio Port: sst: error code = -22
[  380.566492]  Baytrail Audio Port: sst: error code = -22
[  380.566507]  Baytrail Audio Port: sst: error code = -22
[  380.566525]  Baytrail Audio Port: sst: error code = -22
[  380.566537]  Baytrail Audio Port: sst: error code = -22
[  380.566570]  Baytrail Audio Port: sst: error code = -22
[  380.566585]  Baytrail Audio Port: sst: error code = -22
[  380.566602]  Baytrail Audio Port: sst: error code = -22
[  380.566615]  Baytrail Audio Port: sst: error code = -22
[  380.566654]  Baytrail Audio Port: sst: error code = -22
[  380.566670]  Baytrail Audio Port: sst: error code = -22
[  380.566687]  Baytrail Audio Port: sst: error code = -22
[  380.566700]  Baytrail Audio Port: sst: error code = -22
[  380.566737]  Baytrail Audio Port: sst: error code = -22
[  380.566751]  Baytrail Audio Port: sst: error code = -22
[  380.566772]  Baytrail Audio Port: sst: error code = -22
[  380.566785]  Baytrail Audio Port: sst: error code = -22
[  380.566823]  Baytrail Audio Port: sst: error code = -22
[  380.566839]  Baytrail Audio Port: sst: error code = -22
[  380.566870]  Baytrail Audio Port: sst: error code = -22
[  380.566885]  Baytrail Audio Port: sst: error code = -22
[  380.566917]  Baytrail Audio Port: sst: error code = -22
[  380.566931]  Baytrail Audio Port: sst: error code = -22
[  380.566962]  Baytrail Audio Port: sst: error code = -22
[  380.566977]  Baytrail Audio Port: sst: error code = -22
[  380.567010]  Baytrail Audio Port: sst: error code = -22
[  380.567025]  Baytrail Audio Port: sst: error code = -22
[  380.567060]  Baytrail Audio Port: sst: error code = -22
[  380.567074]  Baytrail Audio Port: sst: error code = -22
[  380.567106]  Baytrail Audio Port: sst: error code = -22
[  380.567120]  Baytrail Audio Port: sst: error code = -22
[  380.567152]  Baytrail Audio Port: sst: error code = -22
[  380.567170]  Baytrail Audio Port: sst: error code = -22
[  380.567201]  Baytrail Audio Port: sst: error code = -22
[  380.567216]  Baytrail Audio Port: sst: error code = -22
[  380.567248]  Baytrail Audio Port: sst: error code = -22
[  380.567262]  Baytrail Audio Port: sst: error code = -22
[  380.567298]  Baytrail Audio Port: sst: error code = -22
[  380.567313]  Baytrail Audio Port: sst: error code = -22
[  380.567323]  Baytrail Audio Port: sst: error code = -22
[  380.567338]  Baytrail Audio Port: sst: error code = -22
[  380.567381]  Baytrail Audio Port: sst: error code = -22
[  380.567396]  Baytrail Audio Port: sst: error code = -22
[  380.567414]  Baytrail Audio Port: sst: error code = -22
[  380.567427]  Baytrail Audio Port: sst: error code = -22
[  380.567464]  Baytrail Audio Port: sst: error code = -22
[  380.567479]  Baytrail Audio Port: sst: error code = -22
[  380.567511]  Baytrail Audio Port: sst: error code = -22
[  380.567526]  Baytrail Audio Port: sst: error code = -22
[  380.567560]  Baytrail Audio Port: sst: error code = -22
[  380.567574]  Baytrail Audio Port: sst: error code = -22
[  380.567606]  Baytrail Audio Port: sst: error code = -22
[  380.567621]  Baytrail Audio Port: sst: error code = -22
[  380.567652]  Baytrail Audio Port: sst: error code = -22
[  380.567667]  Baytrail Audio Port: sst: error code = -22
[  380.567766]  Baytrail Audio Port: sst: error code = -22
[  380.567781]  Baytrail Audio Port: sst: error code = -22
[  380.567799]  Baytrail Audio Port: sst: error code = -22
[  380.567812]  Baytrail Audio Port: sst: error code = -22
[  380.567851]  Baytrail Audio Port: sst: error code = -22
[  380.567866]  Baytrail Audio Port: sst: error code = -22
[  380.567931]  Baytrail Audio Port: sst: error code = -22
[  380.567946]  Baytrail Audio Port: sst: error code = -22
[  380.568027]  Baytrail Audio Port: sst: error code = -22
[  380.568043]  Baytrail Audio Port: sst: error code = -22
[  380.568092]  Baytrail Audio Port: sst: error code = -22
[  380.568107]  Baytrail Audio Port: sst: error code = -22
[  380.568163]  Baytrail Audio Port: sst: error code = -22
[  380.568188]  Baytrail Audio Port: sst: error code = -22
[  380.568231]  Baytrail Audio Port: sst: error code = -22
[  380.568251]  Baytrail Audio Port: sst: error code = -22
[  380.568299]  Baytrail Audio Port: sst: error code = -22
[  380.568323]  Baytrail Audio Port: sst: error code = -22
[  380.568375]  Baytrail Audio Port: sst: error code = -22
[  380.568395]  Baytrail Audio Port: sst: error code = -22
[  380.568440]  Baytrail Audio Port: sst: error code = -22
[  380.568456]  Baytrail Audio Port: sst: error code = -22
[  380.568507]  Baytrail Audio Port: sst: error code = -22
[  380.568523]  Baytrail Audio Port: sst: error code = -22
[  380.568575]  Baytrail Audio Port: sst: error code = -22
[  380.568590]  Baytrail Audio Port: sst: error code = -22
[  380.568646]  Baytrail Audio Port: sst: error code = -22
[  380.568661]  Baytrail Audio Port: sst: error code = -22
[  380.568714]  Baytrail Audio Port: sst: error code = -22
[  380.568736]  Baytrail Audio Port: sst: error code = -22
[  380.568779]  Baytrail Audio Port: sst: error code = -22
[  380.568800]  Baytrail Audio Port: sst: error code = -22
[  380.568849]  Baytrail Audio Port: sst: error code = -22
[  380.568864]  Baytrail Audio Port: sst: error code = -22
[  380.568917]  Baytrail Audio Port: sst: error code = -22
[  380.568932]  Baytrail Audio Port: sst: error code = -22
[  380.568987]  Baytrail Audio Port: sst: error code = -22
[  380.569002]  Baytrail Audio Port: sst: error code = -22
[  380.569053]  Baytrail Audio Port: sst: error code = -22
[  380.569069]  Baytrail Audio Port: sst: error code = -22
[  380.569122]  Baytrail Audio Port: sst: error code = -22
[  380.569137]  Baytrail Audio Port: sst: error code = -22
[  380.569186]  Baytrail Audio Port: sst: error code = -22
[  380.569201]  Baytrail Audio Port: sst: error code = -22
[  380.569255]  Baytrail Audio Port: sst: error code = -22
[  380.569272]  Baytrail Audio Port: sst: error code = -22
[  380.569329]  Baytrail Audio Port: sst: error code = -22
[  380.569343]  Baytrail Audio Port: sst: error code = -22
[  380.569395]  Baytrail Audio Port: sst: error code = -22
[  380.569411]  Baytrail Audio Port: sst: error code = -22
[  380.569466]  Baytrail Audio Port: sst: error code = -22
[  380.569481]  Baytrail Audio Port: sst: error code = -22
[  380.569536]  Baytrail Audio Port: sst: error code = -22
[  380.569551]  Baytrail Audio Port: sst: error code = -22
[  380.569601]  Baytrail Audio Port: sst: error code = -22
[  380.569616]  Baytrail Audio Port: sst: error code = -22
[  380.569670]  Baytrail Audio Port: sst: error code = -22
[  380.569685]  Baytrail Audio Port: sst: error code = -22
[  380.569737]  Baytrail Audio Port: sst: error code = -22
[  380.569752]  Baytrail Audio Port: sst: error code = -22
[  380.569809]  Baytrail Audio Port: sst: error code = -22
[  380.569824]  Baytrail Audio Port: sst: error code = -22
[  380.569883]  Baytrail Audio Port: sst: error code = -22
[  380.569898]  Baytrail Audio Port: sst: error code = -22
[  380.569946]  Baytrail Audio Port: sst: error code = -22
[  380.569961]  Baytrail Audio Port: sst: error code = -22
[  380.570014]  Baytrail Audio Port: sst: error code = -22
[  380.570029]  Baytrail Audio Port: sst: error code = -22
[  380.570083]  Baytrail Audio Port: sst: error code = -22
[  380.570098]  Baytrail Audio Port: sst: error code = -22
[  380.570149]  Baytrail Audio Port: sst: error code = -22
[  380.570167]  Baytrail Audio Port: sst: error code = -22
[  380.570215]  Baytrail Audio Port: sst: error code = -22
[  380.570230]  Baytrail Audio Port: sst: error code = -22
[  380.570289]  Baytrail Audio Port: sst: error code = -22
[  380.570304]  Baytrail Audio Port: sst: error code = -22
[  380.570356]  Baytrail Audio Port: sst: error code = -22
[  380.570371]  Baytrail Audio Port: sst: error code = -22
[  380.570422]  Baytrail Audio Port: sst: error code = -22
[  380.570437]  Baytrail Audio Port: sst: error code = -22
[  380.570492]  Baytrail Audio Port: sst: error code = -22
[  380.570507]  Baytrail Audio Port: sst: error code = -22
[  380.570557]  Baytrail Audio Port: sst: error code = -22
[  380.570577]  Baytrail Audio Port: sst: error code = -22
[  380.570627]  Baytrail Audio Port: sst: error code = -22
[  380.570642]  Baytrail Audio Port: sst: error code = -22
[  380.570694]  Baytrail Audio Port: sst: error code = -22
[  380.570709]  Baytrail Audio Port: sst: error code = -22
[  380.570763]  Baytrail Audio Port: sst: error code = -22
[  380.570778]  Baytrail Audio Port: sst: error code = -22
[  380.570831]  Baytrail Audio Port: sst: error code = -22
[  380.570846]  Baytrail Audio Port: sst: error code = -22
[  380.570897]  Baytrail Audio Port: sst: error code = -22
[  380.570912]  Baytrail Audio Port: sst: error code = -22
[  380.570964]  Baytrail Audio Port: sst: error code = -22
[  380.570979]  Baytrail Audio Port: sst: error code = -22
[  380.571030]  Baytrail Audio Port: sst: error code = -22
[  380.571045]  Baytrail Audio Port: sst: error code = -22
[  380.571096]  Baytrail Audio Port: sst: error code = -22
[  380.571111]  Baytrail Audio Port: sst: error code = -22
[  380.571163]  Baytrail Audio Port: sst: error code = -22
[  380.571178]  Baytrail Audio Port: sst: error code = -22
[  380.571233]  Baytrail Audio Port: sst: error code = -22
[  380.571248]  Baytrail Audio Port: sst: error code = -22
[  380.571298]  Baytrail Audio Port: sst: error code = -22
[  380.571314]  Baytrail Audio Port: sst: error code = -22
[  380.571365]  Baytrail Audio Port: sst: error code = -22
[  380.571384]  Baytrail Audio Port: sst: error code = -22
[  380.571433]  Baytrail Audio Port: sst: error code = -22
[  380.571450]  Baytrail Audio Port: sst: error code = -22
[  380.571498]  Baytrail Audio Port: sst: error code = -22
[  380.571513]  Baytrail Audio Port: sst: error code = -22
[  380.571570]  Baytrail Audio Port: sst: error code = -22
[  380.571584]  Baytrail Audio Port: sst: error code = -22
[  380.571638]  Baytrail Audio Port: sst: error code = -22
[  380.571653]  Baytrail Audio Port: sst: error code = -22
[  380.571710]  Baytrail Audio Port: sst: error code = -22
[  380.571724]  Baytrail Audio Port: sst: error code = -22
[  380.571756]  Baytrail Audio Port: sst: error code = -22
[  380.571770]  Baytrail Audio Port: sst: error code = -22
[  380.571802]  Baytrail Audio Port: sst: error code = -22
[  380.571817]  Baytrail Audio Port: sst: error code = -22
[  380.571848]  Baytrail Audio Port: sst: error code = -22
[  380.571863]  Baytrail Audio Port: sst: error code = -22
[  380.571881]  Baytrail Audio Port: sst: error code = -22
[  380.571894]  Baytrail Audio Port: sst: error code = -22
[  380.571931]  Baytrail Audio Port: sst: error code = -22
[  380.571946]  Baytrail Audio Port: sst: error code = -22
[  380.571958]  Baytrail Audio Port: sst: error code = -22
[  380.572039]  Baytrail Audio Port: sst: error code = -22
[  380.572056]  Baytrail Audio Port: sst: error code = -22
[  380.572068]  Baytrail Audio Port: sst: error code = -22
[  380.572112]  Baytrail Audio Port: sst: error code = -22
[  380.572126]  Baytrail Audio Port: sst: error code = -22
[  380.572157]  Baytrail Audio Port: sst: error code = -22
[  380.572173]  Baytrail Audio Port: sst: error code = -22
[  380.572195]  Baytrail Audio Port: sst: error code = -22
[  380.572240]  Baytrail Audio Port: sst: error code = -22
[  380.572264]  Baytrail Audio Port: sst: error code = -22
[  380.572284]  Baytrail Audio Port: sst: error code = -22
[  380.572309]  Baytrail Audio Port: sst: error code = -22
[  380.572330]  Baytrail Audio Port: sst: error code = -22
[  380.572350]  Baytrail Audio Port: sst: error code = -22
[  380.572391]  Baytrail Audio Port: sst: error code = -22
[  380.572412]  Baytrail Audio Port: sst: error code = -22
[  380.572432]  Baytrail Audio Port: sst: error code = -22
[  380.572467]  Baytrail Audio Port: sst: error code = -22
[  380.572482]  Baytrail Audio Port: sst: error code = -22
[  380.572512]  Baytrail Audio Port: sst: error code = -22
[  380.572526]  Baytrail Audio Port: sst: error code = -22
[  380.572556]  Baytrail Audio Port: sst: error code = -22
[  380.572571]  Baytrail Audio Port: sst: error code = -22
[  380.572634]  Baytrail Audio Port: sst: error code = -22
[  380.572649]  Baytrail Audio Port: sst: error code = -22
[  380.572703]  Baytrail Audio Port: sst: error code = -22
[  380.572719]  Baytrail Audio Port: sst: error code = -22
[  380.572770]  Baytrail Audio Port: sst: error code = -22
[  380.572785]  Baytrail Audio Port: sst: error code = -22
[  380.572837]  Baytrail Audio Port: sst: error code = -22
[  380.572854]  Baytrail Audio Port: sst: error code = -22
[  380.572904]  Baytrail Audio Port: sst: error code = -22
[  380.572918]  Baytrail Audio Port: sst: error code = -22
[  380.572971]  Baytrail Audio Port: sst: error code = -22
[  380.572986]  Baytrail Audio Port: sst: error code = -22
[  380.573041]  Baytrail Audio Port: sst: error code = -22
[  380.573056]  Baytrail Audio Port: sst: error code = -22
[  380.573109]  Baytrail Audio Port: sst: error code = -22
[  380.573124]  Baytrail Audio Port: sst: error code = -22
[  380.573174]  Baytrail Audio Port: sst: error code = -22
[  380.573191]  Baytrail Audio Port: sst: error code = -22
[  380.573241]  Baytrail Audio Port: sst: error code = -22
[  380.573256]  Baytrail Audio Port: sst: error code = -22
[  380.573311]  Baytrail Audio Port: sst: error code = -22
[  380.573326]  Baytrail Audio Port: sst: error code = -22
[  380.573378]  Baytrail Audio Port: sst: error code = -22
[  380.573393]  Baytrail Audio Port: sst: error code = -22
[  380.573427]  Baytrail Audio Port: sst: error code = -22
[  380.573455]  Baytrail Audio Port: sst: error code = -22
[  380.573580]  Baytrail Audio Port: sst: error code = -22
[  380.573605]  Baytrail Audio Port: sst: error code = -22
[  380.573614]  Baytrail Audio Port: sst: error code = -22
[  380.573749]  Baytrail Audio Port: sst: error code = -22
[  380.574023]  Baytrail Audio Port: sst: error code = -22
[  380.574040]  Baytrail Audio Port: sst: error code = -22
[  380.574079]  Baytrail Audio Port: sst: error code = -22
[  380.574397]  Baytrail Audio Port: sst: error code = -22
[  380.574429]  Baytrail Audio Port: sst: error code = -22
[  380.575819]  Baytrail Audio Port: sst: error code = -22
[  380.575841]  Baytrail Audio Port: sst: error code = -22
[  380.575866]  Baytrail Audio Port: sst: error code = -22
[  380.588822]  Baytrail Audio Port: sst: error code = -22
[  380.588875]  Baytrail Audio Port: sst: error code = -22
[  380.611381]  Baytrail Audio Port: sst: error code = -22
[  380.611435]  Baytrail Audio Port: sst: error code = -22
[  380.653458]  Baytrail Audio Port: sst: error code = -22
[  380.653525]  Baytrail Audio Port: sst: error code = -22
[  380.736679]  Baytrail Audio Port: sst: error code = -22
[  380.736711]  Baytrail Audio Port: sst: error code = -22
[  380.897871]  Baytrail Audio Port: sst: error code = -22
[  380.897914]  Baytrail Audio Port: sst: error code = -22
[  381.222323]  Baytrail Audio Port: sst: error code = -22
[  381.222364]  Baytrail Audio Port: sst: error code = -22
[  381.867454]  Baytrail Audio Port: sst: error code = -22
[  381.867502]  Baytrail Audio Port: sst: error code = -22
[  383.154548]  Baytrail Audio Port: sst: error code = -22
[  383.154604]  Baytrail Audio Port: sst: error code = -22
[  384.661194]  Baytrail Audio Port: sst: error code = -22
[  384.661255]  Baytrail Audio Port: sst: error code = -22
[  385.586195]  Baytrail Audio Port: sst: error code = -22
[  385.586209] snd_pcm_update_hw_ptr0: 858 callbacks suppressed
[  385.586220] bytx205_rt5645 bytx205_rt5645: BUG: , pos = -22, buffer size = 203830, period size = 1199
[  385.586411] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[  386.586753] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  386.586778] intel_sst_acpi 80860F28:00: fw returned err -16
[  387.588354] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  387.588379] intel_sst_acpi 80860F28:00: fw returned err -16
[  388.589114] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x2 fw_state 0x3
[  388.589123] intel_sst_acpi 80860F28:00: fw returned err -16
[  388.589135] intel_sst_acpi 80860F28:00: free stream returned err -19
[  389.614994] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  389.615020] intel_sst_acpi 80860F28:00: fw returned err -16
[  390.616173] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  390.616199] intel_sst_acpi 80860F28:00: fw returned err -16
[  391.617277] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  391.617303] intel_sst_acpi 80860F28:00: fw returned err -16
[  392.618079] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[  392.618090] intel_sst_acpi 80860F28:00: fw returned err -16
[ 3114.681201] perf interrupt took too long (2532 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
[ 3860.772867] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[ 3860.772893] intel_sst_acpi 80860F28:00: fw returned err -16
[ 3860.773723] sst-mfld-platform sst-mfld-platform: Enter: enable=1 port_name=ssp1-port
[ 3861.774078] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[ 3861.774104] intel_sst_acpi 80860F28:00: fw returned err -16
[ 3861.859471] intel_sst_acpi 80860F28:00: Alloc for str 1 pipe 0x90
[ 3862.859367] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[ 3862.859399] intel_sst_acpi 80860F28:00: FW alloc failed ret -16
[ 3862.859409] intel_sst_acpi 80860F28:00: sst_get_stream returned err -5
[ 3862.859420] sst-mfld-platform sst-mfld-platform: ASoC: cpu DAI prepare error: -5
[ 3862.859430]  Baytrail Audio Port: ASoC: prepare FE Baytrail Audio Port failed
[ 3862.861048] sst-mfld-platform sst-mfld-platform: Enter: enable=0 port_name=ssp1-port
[ 3863.861376] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[ 3863.861402] intel_sst_acpi 80860F28:00: fw returned err -16
[ 3864.862246] intel_sst_acpi 80860F28:00: Wait timed-out condition:0x0, msg_id:0x1 fw_state 0x3
[ 3864.862272] intel_sst_acpi 80860F28:00: fw returned err -16
[ 3864.862319] intel_sst_acpi 80860F28:00: free stream returned err -19


More information about the Alsa-devel mailing list