Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crust Wakeup issue #204

Open
kmsgli opened this issue Mar 5, 2022 · 36 comments
Open

Crust Wakeup issue #204

kmsgli opened this issue Mar 5, 2022 · 36 comments

Comments

@kmsgli
Copy link

kmsgli commented Mar 5, 2022

Type of issue

Question:

I am not entirely sure if this is a crust issue but I can not seem to trouble shoot it so I figured asking here may point me in the correct direction;
I am using an original Pinephone and generally crust works fine to wake my phone for calls and text messages. I use my Pinephone as a daily driver so it suspends and wakes a lot throughout the day as any phone does. At least once but sometimes upwards of four or five times a day when I hit the power button while the phone is in suspend my phone will not wake. I know its still on because holding the power button does not turn it on. I have to hold the power button to turn it off then hold the power button again to turn it on again.

Ssh does not allow me in obviously because it is in the deep sleep state so I can not get into the OS to trouble shoot what the issue is. This has never happened on the charger as my phone is set to never sleep on the charger.

I posted in the Pine64 forums and found another person having the same issue with a PInePhone Pro which I assume has the same crust implementation, he has tested on multiple OS's as well so its not specific to a distribution.

Any help trouble shooting this would be greatly appreciated as this is the only thing that really makes daily driving my phone a pain, otherwise it works 100% as a regular phone.

@gamelaster
Copy link

PinePhone Pro have different SoC which is not supported by Crust, so the issue on forums is not related to your problem.

@kmsgli
Copy link
Author

kmsgli commented Mar 5, 2022

Well I will report that back to the guy who posted on the forums. Am I correct to assume my issue is related to crust as far as the standard pinephone?

@smaeul
Copy link
Member

smaeul commented Mar 5, 2022

Yes, it is possible that your issue is related to Crust.

What distro are you using? Some distros build Crust with a few debugging options already enabled. Otherwise, you will need to rebuild Crust with those options enabled. Then, after a failure to wake you will be able see what Crust was last doing and if it finished its part of the resume process with hexdump /sys/devices/platform/soc/1f00000.rtc/nvmem0/nvmem. You will also need to temporarily disable cpuidle (if your distro has it enabled) with cpuidle.off=1 on your kernel command line, or else that will overwrite the data stored in the RTC.

Please also provide a full dmesg taken after a successful resume.

With that information, I can suggest further troubleshooting steps.

@kmsgli
Copy link
Author

kmsgli commented Mar 5, 2022

I am using manjaro phosh is that built in or do i need to rebuild crust?

@smaeul
Copy link
Member

smaeul commented Mar 5, 2022

It does not have those options enabled. You can enable them by changing that block of lines and rebuilding the package:

  echo -e "\nBuilding CRUST for Pine64 PinePhone...\n"
  echo CONFIG_DEBUG_RECORD_STEPS=y >> configs/pinephone_defconfig
  echo CONFIG_DEBUG_VERIFY_DRAM=y >> configs/pinephone_defconfig
  make CROSS_COMPILE=or1k-elf- pinephone_defconfig
  make CROSS_COMPILE=or1k-elf- build/scp/scp.bin
  cp build/scp/scp.bin ../u-boot-${pkgver/rc/-rc}

You can verify that it's working if you see nonzero values in the nvmem file after a suspend/resume cycle.

@kmsgli
Copy link
Author

kmsgli commented Mar 5, 2022

Ok just so I am clear because I have only built AUR package I would do this;
git clone https://gitlab.manjaro.org/manjaro-arm/packages/core/uboot-pinephone.git
change the bit of code you listed above in the PKGBUILD file then;
makepkg -si

test with
hexdump /sys/devices/platform/soc/1f00000.rtc/nvmem0/nvmem

then report back?

@smaeul
Copy link
Member

smaeul commented Mar 5, 2022

Yes, that should work. It looks like installing the updated package will try to flash the new U-Boot binary.

@kmsgli
Copy link
Author

kmsgli commented Mar 5, 2022

Yes, that should work. It looks like installing the updated package will try to flash the new U-Boot binary.

Is that an issue? or should it be fine to flash the new U-Boot binary?

Also I am reluctant to do this now as I am out of town and if something gets trashed I wont have a phone so I will wait until monday to do this and report back.

@smaeul
Copy link
Member

smaeul commented Mar 5, 2022

Crust is inside the U-Boot binary, so you have to flash U-Boot to get the updated Crust.

There's no rush; install the debug firmware and try to collect the logs whenever is convenient for you.

@kmsgli
Copy link
Author

kmsgli commented Mar 7, 2022

I believe I have successfully installed U-Boot with the debug options.

Running hexdump /sys/devices/platform/soc/1f00000.rtc/nvmem0/nvmem after a wake from suspend I get:


0000000 0000 0000 0000 0000 0000 0000 0503 0000
0000010 0000 0000 0000 0000 0000 0000 0000 0000
*
0000040

At this point I should wait for a freeze then reboot the phone and runhexdump /sys/devices/platform/soc/1f00000.rtc/nvmem0/nvmemagain and report back?

@smaeul
Copy link
Member

smaeul commented Mar 8, 2022

Yes, that's the plan.

The NVMEM output you provided looks good (but see below). Examining the nonzero word, the first two digits confirm this is output from Crust v0.5. The last two digits come from this list of steps. 0x0503 means STEP_SUSPEND_CSS, so you caught Crust in the middle of turning off a CPU core. Because your kernel has cpuidle enabled, Linux tells Crust to power off the CPU cores 100+ times per second. This is normally good because it saves a bit of power, but it will unfortunately also overwrite the crash data before you have a chance to read it.

So you have two options:

  1. If you have a UART adapter available, you can grab the data from the U-Boot prompt with md.l 1f0010c 1. Since you would be running this command before Linux has a chance to overwrite the data, you would get good data from the crash.
  2. Otherwise, you will need to temporarily disable cpuidle by adding this kernel command line argument: cpuidle.off=1. You will also need to build a new version of Crust (sorry!) that contains commit e624ba0. (This commit keeps you from needing to disable other things to get good data.) You should be able to do this by setting _scpver=master in the PKGBUILD, and then fixing the URL to accept a branch instead of a tag:
"crust-${_scpver}.tar.gz::https://github.com/crust-firmware/crust/archive/refs/heads/${_scpver}.tar.gz"

@kmsgli
Copy link
Author

kmsgli commented Mar 8, 2022

I don't have UART adapter as an option so number 2 is it.
I am with you on rebuilding the software as its exactly what I did before by changing the initial echo lines I have already done and changing the two parameters at the very beginning of the PKGBUILD (that should be no problem).

I am a but fuzzy on turning cpuilde.off=1 how to do I make that happen?

Interesting piece of information. Since rebuilding crust (yesterday at midnight) I have yet to get hung up in suspend. This could very well be a coincidence however its very rare that I have gone a full day without a hang up in suspend. I am going to try to stay off the charger as much as I can today to see if this is maybe more then coincidence and there is simply something wrong with the crust build that comes on the latest Manjaro betas ( seems unlikely as arch did the same thing and I have tried flashing OS fresh a few times).

@kmsgli
Copy link
Author

kmsgli commented Mar 10, 2022

As of today I have not had a single hang up in suspend, could this problem have resolved itself with the recompile of crust? I tried fresh OS installs in the passed with no luck?

Does debug need to be on or was it simply manually rebuilding the package that fixed my issue?

@smaeul
Copy link
Member

smaeul commented Mar 10, 2022

I am a but fuzzy on turning cpuilde.off=1 how to do I make that happen?

From the Manjaro packaging, it looks like you would need to add the option to the setenv bootargs line in /boot/boot.txt and then run pp-uboot-mkscr as described in that file.

Does debug need to be on or was it simply manually rebuilding the package that fixed my issue?

That's very interesting. Either one is possible. It's also possible (though unlikely at this point) that the issue still exists, but it has happened not to be triggered. You could try reinstalling the official package, or building a new package without the debug options, to see if the crashes come back. If they do, then likely the tiny additional delay introduced by the debugging code is allowing suspend/resume to complete.

@kmsgli
Copy link
Author

kmsgli commented Mar 11, 2022

I just reinstalled using the git clone method without changing the debug options which in theory should be the same as the stock uboot setup when the OS is installed. I will report back in a day or two with if I have any suspend resume problems.

@kmsgli
Copy link
Author

kmsgli commented Mar 13, 2022

With debug off I had it stall twice in the last few days I am going to recompile with debug on and see what happens.

@kmsgli
Copy link
Author

kmsgli commented Mar 15, 2022

OK so it seems it was just dumb luck. With debug enabled I just had my first suspend hang so lets go back to plan A. As my pinephone is my daily driver I want you to look at this to make sure I am doing it correctly before I do it and botch my phone and loose my setup as I like the way the phone is setup right now.

First I will go nano into /boot/boot.txt and adjust the file to look like so;

#
# /boot/boot.txt
# After modifying, run "pp-uboot-mkscr" to re-generate the U-Boot boot script.
#

#
# This is the description of the GPIO lines used in this boot script:
#
# GPIO #98 is PD2, or A64 ball W19, which controls the vibrator motor
# GPIO #114 is PD18, or A64 ball AB13, which controls the red part of the multicolor LED
# GPIO #115 is PD19, or A64 ball AB12, which controls the green part of the multicolor LED
# GPIO #116 is PD20, or A64 ball AB11, which controls the blue part of the multicolor LED
#

gpio set 98
gpio set 114

# Set root partition to the second partition of boot device
part uuid ${devtype} ${devnum}:1 uuid_boot
part uuid ${devtype} ${devnum}:2 uuid_root

setenv bootargs loglevel=4 console=tty0 console=${console} earlycon=uart,mmio32,0x01c28000 consoleblank=0 boot=PARTUUID=${uuid_boot} root=PARTUUID=${uuid_root} rw rootwait quiet audit=0 bootsplash.bootfile=bootsplash-themes/manjaro/bootsplash cpuidle.off=1

if load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} /Image; then
  gpio clear 98
  if load ${devtype} ${devnum}:${distro_bootpart} ${fdt_addr_r} /dtbs/${fdtfile}; then
    if load ${devtype} ${devnum}:${distro_bootpart} ${ramdisk_addr_r} /initramfs-linux.img; then
      gpio set 115
      booti ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
    else
      gpio set 116
      booti ${kernel_addr_r} - ${fdt_addr_r};
    fi;
  fi;
fi

# EOF

Then I wll run;
pp-uboot-mksrc

Next I will follow the same process I did above for turning on debug mode as well as changing the _scpver=master and the url link leaving me with a PKGBUILD that looks like so:


# Maintainer: Philip Mueller <philm@manjaro.org>
# Contributor: Danct12 <danct12@disroot.org>
# Contributor: Furkan K. <furkan@fkardame.com>
# Contributor: Dragan Simic <dsimic@buserror.io>

pkgname=uboot-pinephone
pkgver=2022.04rc3
pkgrel=2
_tfaver=2.6
_scpver=master
_commit=589c659035a44a683b087fd75fe0b7667f7be7f5
pkgdesc="U-Boot for Pine64 PinePhone with CRUST support"
arch=('aarch64')
url='http://www.denx.de/wiki/U-Boot/WebHome'

license=('GPL')
depends=('uboot-tools')
makedepends=('bc' 'python' 'swig' 'dtc' 'arm-none-eabi-gcc' 'or1k-elf-gcc' 'or1k-elf-binutils' 'bison' 'flex' 'python-setuptools')
provides=('uboot')
conflicts=('uboot')
backup=('boot/boot.txt' 'etc/pinephone/uboot.conf')
install=${pkgname}.install

source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver/rc/-rc}.tar.bz2"
        "https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot/trusted-firmware-a-${_tfaver}.tar.gz"
        "crust-${_scpver}.tar.gz::https://github.com/crust-firmware/crust/archive/refs/heads/${_scpver}.tar.gz"
        "1000-upstream-${_commit}.patch::https://github.com/u-boot/u-boot/compare/v${pkgver/rc/-rc}...${_commit}.patch"
        '1001-pinephone-Add-volume_key-environment-variable.patch'
        '1002-Enable-led-on-boot-to-notify-user-of-boot-status.patch'
        '1003-mmc-sunxi-Add-support-for-DMA-transfers.patch'
        '1004-mmc-sunxi-DDR-DMA-support-for-SPL.patch'
        #'1005-spl-ARM-Enable-CPU-caches.patch'
        '1006-common-expose-DRAM-clock-speed.patch'
        '1007-Improve-Allwinner-A64-timer-workaround.patch'
        '2001-allwinner-Choose-PSCI-states-to-avoid-translation.patch'
        '2002-allwinner-Simplify-CPU_SUSPEND-power-state-encoding.patch'
        'boot.txt'
        'pp-uboot-mkscr'
        'pp-uboot-flash'
        'uboot.conf'
        'pp-prepare-fstab'
        'pp-prepare-fstab.service')
sha256sums=('4731da5228dc35827a9d9ebc8f541b01aa6af36c27be24e10aff06e596bee2de'
            '4e59f02ccb042d5d18c89c849701b96e6cf4b788709564405354b5d313d173f7'
            '8b23b2649bbd19dfb84ae00b2419539b8236c6ae9a380beff7dffafd3f41f31b'
            '527e061dba87b9a080517c27407bfaf883753cf2ddd2e302dbdaf6dca6888ecc'
            'c1f678d459eba55dae09619df28250b4acf15effe3159962cc7d566ee8fffc62'
            '5dddade3cc07f848e32c48bb14aa73c03ac3700b84cf34d785e07c30af9ef219'
            '3858618c09cca2cd9ba1a0eed573b701700c92beedab56db380808e4c50dca49'
            'a23ba08b39510862751602726350d658c1c78cdb9875047fea6678078f51dda1'
            '42caa29e6826f8c81605d69324492049d6e0688b05c97eb1a2dea2e8e677355f'
            'c9a8c10fa5d2ef837e029a6ca88e7ea3c4e8fbf84da5999577065aab1797a7ed'
            '0049ce7ad8405f21d186fa2bd5dc86efd87a27d0e66a8ec0d7d1ee8a4bf676f7'
            '500292218a07b37b7d11be3412a917c28ed1c79de7c9ca114bea22ddf782a1de'
            'a748162cee18a52a245c1ac1c56a0821ab8eb01f51d10835d56b86ad8e80507a'
            '38a181f51cb784ce258ee0bb90244ba72bb470ed769e252cc6b453c481fb052b'
            '1c7d9a5b91bed1919c1661f6e37cdfb0591851b4bae278438b4f1545279811c8'
            'fa13fc36498b29580449d1ad5d35d03e59cbf7ff845c0f7578463c35cb2de546'
            '8e65f03e5e3f2f5b108f73daa17d84f63bf242f039b8827139022cfe043b29be'
            '69c5c7dddf9fe138985a9fe83d04d02045631a6d3945a364b24b116f96cabf00')

prepare() {
  apply_patches() {
      local PATCH
      for PATCH in "${source[@]}"; do
          PATCH="${PATCH%%::*}"
          PATCH="${PATCH##*/}"
          [[ ${PATCH} = $1*.patch ]] || continue
          msg2 "Applying patch: ${PATCH}..."
          patch -N -p1 < "../${PATCH}"
      done
  }

  cd u-boot-${pkgver/rc/-rc}
  apply_patches 1

  cd ../trusted-firmware-a-${_tfaver}
  # two TF-A patches are needed to support additional idle states
  # in the device tree that are present in megi's kernel tree
  apply_patches 2
}

build() {
  # Avoid build warnings by editing a .config option in place instead of
  # appending an option to .config, if an option is already present
  update_config() {
    if ! grep -q "^$1=$2$" .config; then
      if grep -q "^# $1 is not set$" .config; then
        sed -i -e "s/^# $1 is not set$/$1=$2/g" .config
      elif grep -q "^$1=" .config; then
        sed -i -e "s/^$1=.*/$1=$2/g" .config
      else
        echo "$1=$2" >> .config
      fi
    fi
  }

  unset CFLAGS CXXFLAGS CPPFLAGS LDFLAGS

  cd crust-${_scpver}

  echo -e "\nBuilding CRUST for Pine64 PinePhone...\n"
  echo CONFIG_DEBUG_RECORD_STEPS=y >> configs/pinephone_defconfig
  echo CONFIG_DEBUG_VERIFY_DRAM=y >> configs/pinephone_defconfig
  make CROSS_COMPILE=or1k-elf- pinephone_defconfig
  make CROSS_COMPILE=or1k-elf- build/scp/scp.bin
  cp build/scp/scp.bin ../u-boot-${pkgver/rc/-rc}

  cd ../trusted-firmware-a-${_tfaver}

  echo -e "\nBuilding TF-A for Pine64 PinePhone...\n"
  # Allwinner provides no plat_get_stack_protector_canary() hook,
  # so explicitly disable stack protection checks in GCC
  make PLAT=sun50i_a64 ENABLE_STACK_PROTECTOR=none bl31
  cp build/sun50i_a64/release/bl31.bin ../u-boot-${pkgver/rc/-rc}

  cd ../u-boot-${pkgver/rc/-rc}

  echo -e "\nBuilding U-Boot for Pine64 PinePhone...\n"
  make pinephone_defconfig

  update_config 'CONFIG_IDENT_STRING' '" Manjaro Linux ARM"'
  update_config 'CONFIG_BOOTDELAY' '0'
  update_config 'CONFIG_SERIAL_PRESENT' 'y'
  update_config 'CONFIG_GZIP' 'y'
  update_config 'CONFIG_CMD_UNZIP' 'y'
  update_config 'CONFIG_CMD_EXT4' 'y'
  update_config 'CONFIG_SUPPORT_RAW_INITRD' 'y'
  update_config 'CONFIG_CMD_EXT4_WRITE' 'n'
  update_config 'CONFIG_EXT4_WRITE' 'n'
  update_config 'CONFIG_OF_LIBFDT_OVERLAY' 'y'

  # Build U-Boot images for different RAM speeds
  for RAM_MHZ in 492 528 552 592 624; do
    echo -e "\nBuilding U-Boot variant that runs RAM at ${RAM_MHZ} MHz...\n"
    update_config 'CONFIG_DRAM_CLK' "${RAM_MHZ}"
    make EXTRAVERSION=-${pkgrel}
    cp -a u-boot-sunxi-with-spl.bin "u-boot-sunxi-with-spl-pinephone-${RAM_MHZ}.bin"
  done
}   

package() {
  cd u-boot-${pkgver/rc/-rc}

  install -D -m 0644 u-boot-sunxi-with-spl-pinephone{-624,-592,-552,-528,-492}.bin -t "${pkgdir}/boot"
  install -D -m 0644 "${srcdir}/boot.txt" -t "${pkgdir}/boot"
  install -D -m 0755 "${srcdir}/pp-uboot-mkscr" -t "${pkgdir}/usr/bin"

  install -D -m 0755 "${srcdir}/pp-prepare-fstab" -t "${pkgdir}/usr/bin"
  install -D -m 0644 "${srcdir}/pp-prepare-fstab.service" -t "${pkgdir}/usr/lib/systemd/system"
  install -D -m 0755 "${srcdir}/pp-uboot-flash" -t "${pkgdir}/usr/bin"
  install -D -m 0644 "${srcdir}/uboot.conf" -t "${pkgdir}/etc/pinephone"
}

Finally I will run
makepkg -si

and reboot.

Then on the next freeze I reboot and run
hexdump /sys/devices/platform/soc/1f00000.rtc/nvmem0/nvmem

To get some use-able information to try and trouble shoot this?

Sorry for the long winded post I just dont want to botch the install as everything is just the way I want it.

Thanks so much for the help

@kmsgli
Copy link
Author

kmsgli commented Mar 16, 2022

Ok so I decided to take a dd image of my eemc as a safety net and followed the above instructions I laid out for myself. Initially crust-master had an integrity check issue, so I ran makepkg with the --skipinteg switch to get it build (i know that's bad form but I really want to fix this issue).

here is the output of:
hexdump /sys/devices/platform/soc/1f00000.rtc/nvmem0/nvmem

0000000 0000 0000 0000 0000 0000 0000 0503 0000
0000010 0000 0000 0000 0000 0000 0000 0000 0000
*
0000040

This was run after completing everything, rebooting, and then allowing the phone to suspend then wake again.

Am I ready to debug now?

@smaeul
Copy link
Member

smaeul commented Mar 16, 2022

Yes, all of that looks good. The integrity check failing is expected, since you did change which version of the crust source code got downloaded.

The purpose of adding the cpuidle.off=1 option is so that the contents of /sys/devices/platform/soc/1f00000.rtc/nvmem0/nvmem are all zeroes (the default) after a clean reboot but before suspending for the first time. If you like, you can verify that is the case. But I think you have everything set up correctly.

@kmsgli
Copy link
Author

kmsgli commented Mar 16, 2022

Here is the output after a reboot but before a suspend, I assume because before it was rebooted the suspend worked correctly so it is the same

0000000 0000 0000 0000 0000 0000 0000 0503 0000
0000010 0000 0000 0000 0000 0000 0000 0000 0000
*
0000040

@kmsgli
Copy link
Author

kmsgli commented Mar 22, 2022

Explain the cpuidle.off=1 setting a bit more. It seems I am not having the suspend hang at least not yet but I am noticing phosh restarting from time to time under heavy use-age which must be related to the cpuidle setting?

If this ends up being a fix can I just leave it that way?

@kmsgli
Copy link
Author

kmsgli commented Mar 26, 2022

OK, I finally had it get stuck in suspend, the blue indicator light was flashing which is new but I could not wake it from suspend so I had to hold power until off then power it back on. The output once booted back up was the same as above;

0000000 0000 0000 0000 0000 0000 0000 0503 0000
0000010 0000 0000 0000 0000 0000 0000 0000 0000
*
0000040

Maybe I don't have something done correctly?

@smaeul
Copy link
Member

smaeul commented Mar 28, 2022

Can you paste the full output from dmesg, and also the contents of /proc/cmdline? That will help me to understand what you are seeing.

I'll also try to answer your questions.

Explain the cpuidle.off=1 setting a bit more.

The purpose of cpuidle.off=1 (documentation) is to disable the cpuidle subsystem.

The cpuidle subsystem (documentation) opportunistically powers off CPU cores when the kernel thinks they will be unused for some period of time. The purpose is to save power; for the A64 SoC in the PinePhone, it reduces power consumption by up to 30 mW. That's not a lot, but it does mean a few extra minutes of battery. Every time Linux decides to power off a CPU, after doing its internal bookkeeping, it calls TF-A, which then calls Crust, to actually flip the power switch. Then, when a hardware interrupt occurs, Crust turns the core back on, so Linux can use it again. This happens hundreds of times per second.

When Crust flips the power switch, it records that 0503 value in the RTC. So the point of disabling cpuidle is to prevent Crust from overwriting the data from the crash with 0503.

It seems I am not having the suspend hang at least not yet but I am noticing phosh restarting from time to time under heavy use-age which must be related to the cpuidle setting?

Enabling/disabling cpuidle should have no noticeable effect on any application running on the PinePhone. cpuidle doesn't change any behavior visible from userspace; it only affects performance/power consumption.

If this ends up being a fix can I just leave it that way?

Yes, absolutely. However, if the Crust debug settings or cpuidle.off=1 or the combination of the two fixes suspend, then that points to where there may be a bug in Crust. So it is still valuable information.

OK, I finally had it get stuck in suspend, the blue indicator light was flashing which is new but I could not wake it from suspend so I had to hold power until off then power it back on.

A flashing LED suggests a kernel panic, not an issue with Crust. During the part of system suspend where Crust gets involved, the main CPU is completely powered off. So there is no software running that could flash the LED.

Maybe I don't have something done correctly?

This new issue seems unrelated to your original suspend issue. Manjaro would be the best place to ask about debugging the kernel panic.

As for the 0503, the output from dmesg and the contents of /proc/cmdline would confirm if cpuidle was successfully turned off.

@kmsgli
Copy link
Author

kmsgli commented Mar 28, 2022

Thanks so much for the detailed response!

Here is the output of dmesg;

[  379.151758] Bluetooth: hci0: Out-of-order packet arrived (0 != 7)
[  379.161046] Bluetooth: hci0: Out-of-order packet arrived (1 != 7)
[  379.169054] Bluetooth: hci0: Out-of-order packet arrived (2 != 7)
[  382.320622] PM: suspend entry (deep)
[  382.536322] Filesystems sync: 0.215 seconds
[  382.537124] Freezing user space processes ... (elapsed 0.006 seconds) done.
[  382.543555] OOM killer disabled.
[  382.543562] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  382.545458] printk: Suspending console(s) (use no_console_suspend to debug)
[  382.553726] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  382.846033] Disabling non-boot CPUs ...
[  382.860476] psci: CPU1 killed (polled 0 ms)
[  382.892820] psci: CPU2 killed (polled 0 ms)
[  382.923723] psci: CPU3 killed (polled 4 ms)
[  382.949137] Enabling non-boot CPUs ...
[  382.957410] Detected VIPT I-cache on CPU1
[  382.958791] arch_timer: CPU1: Trapping CNTVCT access
[  382.959268] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  382.975782] CPU1 is up
[  382.978735] Detected VIPT I-cache on CPU2
[  382.979447] arch_timer: CPU2: Trapping CNTVCT access
[  382.979713] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  382.991918] CPU2 is up
[  382.995196] Detected VIPT I-cache on CPU3
[  382.995825] arch_timer: CPU3: Trapping CNTVCT access
[  382.996109] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  383.009595] CPU3 is up
[  383.021618] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  383.238684] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  383.327614] OOM killer enabled.
[  383.328230] Restarting tasks ... done.
[  383.387673] PM: suspend exit
[  384.044530] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  384.049649] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  384.055142] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  384.055386] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  384.057050] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  384.083103] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  384.490741] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[  468.617790] PM: suspend entry (deep)
[  468.992982] Filesystems sync: 0.374 seconds
[  468.994935] Freezing user space processes ... (elapsed 0.011 seconds) done.
[  469.006942] OOM killer disabled.
[  469.006954] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[  469.009411] printk: Suspending console(s) (use no_console_suspend to debug)
[  469.017724] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  469.300408] Disabling non-boot CPUs ...
[  469.313308] psci: CPU1 killed (polled 4 ms)
[  469.354041] psci: CPU2 killed (polled 4 ms)
[  469.391591] psci: CPU3 killed (polled 0 ms)
[  469.421129] Enabling non-boot CPUs ...
[  469.429198] Detected VIPT I-cache on CPU1
[  469.430569] arch_timer: CPU1: Trapping CNTVCT access
[  469.431037] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  469.447748] CPU1 is up
[  469.450508] Detected VIPT I-cache on CPU2
[  469.451011] arch_timer: CPU2: Trapping CNTVCT access
[  469.451100] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  469.461862] CPU2 is up
[  469.465081] Detected VIPT I-cache on CPU3
[  469.465761] arch_timer: CPU3: Trapping CNTVCT access
[  469.465982] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  469.478402] CPU3 is up
[  469.486518] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  469.732257] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  469.822325] OOM killer enabled.
[  469.822420] Restarting tasks ... done.
[  469.860415] PM: suspend exit
[  470.498954] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  470.505107] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  470.509758] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  470.509916] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  470.510296] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  470.532620] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  470.953253] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[  473.481393] hrtimer: interrupt took 1028819 ns
[  531.503587] systemd-journald[1884]: Time jumped backwards, rotating.
[  532.508652] PM: suspend entry (deep)
[  532.640182] Filesystems sync: 0.131 seconds
[  532.649578] Freezing user space processes ... (elapsed 0.011 seconds) done.
[  532.661561] OOM killer disabled.
[  532.661568] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  532.663260] printk: Suspending console(s) (use no_console_suspend to debug)
[  532.670168] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  532.959556] Disabling non-boot CPUs ...
[  532.972512] psci: CPU1 killed (polled 0 ms)
[  533.011925] psci: CPU2 killed (polled 4 ms)
[  533.044201] psci: CPU3 killed (polled 0 ms)
[  533.068436] Enabling non-boot CPUs ...
[  533.077453] Detected VIPT I-cache on CPU1
[  533.079022] arch_timer: CPU1: Trapping CNTVCT access
[  533.079490] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  533.096100] CPU1 is up
[  533.098263] Detected VIPT I-cache on CPU2
[  533.098743] arch_timer: CPU2: Trapping CNTVCT access
[  533.098938] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  533.109954] CPU2 is up
[  533.112880] Detected VIPT I-cache on CPU3
[  533.113274] arch_timer: CPU3: Trapping CNTVCT access
[  533.113360] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  533.125246] CPU3 is up
[  533.131315] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  533.346722] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  533.439277] OOM killer enabled.
[  533.439362] Restarting tasks ... done.
[  533.470928] PM: suspend exit
[  534.107549] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  534.112759] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  534.117506] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  534.117658] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  534.119108] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  534.146845] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  534.571278] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[  602.814756] PM: suspend entry (deep)
[  603.064127] Filesystems sync: 0.249 seconds
[  603.066022] Freezing user space processes ... (elapsed 0.012 seconds) done.
[  603.078334] OOM killer disabled.
[  603.078348] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[  603.081349] printk: Suspending console(s) (use no_console_suspend to debug)
[  603.090324] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  603.382065] Disabling non-boot CPUs ...
[  603.395716] psci: CPU1 killed (polled 0 ms)
[  603.427864] psci: CPU2 killed (polled 4 ms)
[  603.462377] psci: CPU3 killed (polled 0 ms)
[  603.491299] Enabling non-boot CPUs ...
[  603.498884] Detected VIPT I-cache on CPU1
[  603.500168] arch_timer: CPU1: Trapping CNTVCT access
[  603.500645] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  603.518498] CPU1 is up
[  603.521347] Detected VIPT I-cache on CPU2
[  603.521796] arch_timer: CPU2: Trapping CNTVCT access
[  603.521977] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  603.532722] CPU2 is up
[  603.536053] Detected VIPT I-cache on CPU3
[  603.536696] arch_timer: CPU3: Trapping CNTVCT access
[  603.536903] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  603.549900] CPU3 is up
[  603.555611] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  603.807437] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  603.901760] OOM killer enabled.
[  603.901999] Restarting tasks ... done.
[  603.950806] PM: suspend exit
[  604.612246] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  604.617716] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  604.622377] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  604.622522] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  604.623050] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  604.647508] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  605.066629] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[  666.562432] PM: suspend entry (deep)
[  666.785766] Filesystems sync: 0.223 seconds
[  666.786684] Freezing user space processes ... (elapsed 0.007 seconds) done.
[  666.794496] OOM killer disabled.
[  666.794505] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[  666.796736] printk: Suspending console(s) (use no_console_suspend to debug)
[  666.806153] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  667.096687] Disabling non-boot CPUs ...
[  667.110823] psci: CPU1 killed (polled 0 ms)
[  667.143434] psci: CPU2 killed (polled 4 ms)
[  667.180562] psci: CPU3 killed (polled 4 ms)
[  667.219656] Enabling non-boot CPUs ...
[  667.249557] Detected VIPT I-cache on CPU1
[  667.250733] arch_timer: CPU1: Trapping CNTVCT access
[  667.251324] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  667.272356] CPU1 is up
[  667.277487] Detected VIPT I-cache on CPU2
[  667.278329] arch_timer: CPU2: Trapping CNTVCT access
[  667.278639] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  667.291621] CPU2 is up
[  667.294362] Detected VIPT I-cache on CPU3
[  667.295011] arch_timer: CPU3: Trapping CNTVCT access
[  667.295305] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  667.308090] CPU3 is up
[  667.314005] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  667.526979] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  667.620391] OOM killer enabled.
[  667.620480] Restarting tasks ... done.
[  667.653620] PM: suspend exit
[  668.303918] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  668.311960] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  668.317787] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  668.317953] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  668.319280] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  668.343126] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  668.730766] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[  730.652929] PM: suspend entry (deep)
[  730.932972] Filesystems sync: 0.279 seconds
[  730.935213] Freezing user space processes ... (elapsed 0.011 seconds) done.
[  730.947367] OOM killer disabled.
[  730.947381] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[  730.950462] printk: Suspending console(s) (use no_console_suspend to debug)
[  730.960475] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  731.257181] Disabling non-boot CPUs ...
[  731.270961] psci: CPU1 killed (polled 4 ms)
[  731.306157] psci: CPU2 killed (polled 4 ms)
[  731.336710] psci: CPU3 killed (polled 0 ms)
[  731.378644] Enabling non-boot CPUs ...
[  731.387605] Detected VIPT I-cache on CPU1
[  731.389023] arch_timer: CPU1: Trapping CNTVCT access
[  731.389494] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  731.407628] CPU1 is up
[  731.411059] Detected VIPT I-cache on CPU2
[  731.411556] arch_timer: CPU2: Trapping CNTVCT access
[  731.411798] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  731.423713] CPU2 is up
[  731.427055] Detected VIPT I-cache on CPU3
[  731.427659] arch_timer: CPU3: Trapping CNTVCT access
[  731.427908] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  731.441106] CPU3 is up
[  731.448840] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  731.705725] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  731.796752] OOM killer enabled.
[  731.796841] Restarting tasks ... done.
[  731.867480] PM: suspend exit
[  732.473926] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  732.481513] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  732.489406] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  732.489566] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  732.489881] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  732.514081] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  732.902978] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[  735.275888] systemd-journald[1884]: Time jumped backwards, rotating.
[  794.317135] PM: suspend entry (deep)
[  794.475331] Filesystems sync: 0.158 seconds
[  794.476045] Freezing user space processes ... (elapsed 0.005 seconds) done.
[  794.481903] OOM killer disabled.
[  794.481909] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  794.483795] printk: Suspending console(s) (use no_console_suspend to debug)
[  794.491311] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  794.785585] Disabling non-boot CPUs ...
[  794.798171] psci: CPU1 killed (polled 0 ms)
[  794.831653] psci: CPU2 killed (polled 0 ms)
[  794.865852] psci: CPU3 killed (polled 4 ms)
[  794.902272] Enabling non-boot CPUs ...
[  794.910089] Detected VIPT I-cache on CPU1
[  794.911508] arch_timer: CPU1: Trapping CNTVCT access
[  794.911970] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  794.929124] CPU1 is up
[  794.932062] Detected VIPT I-cache on CPU2
[  794.932407] arch_timer: CPU2: Trapping CNTVCT access
[  794.932678] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  794.944177] CPU2 is up
[  794.947091] Detected VIPT I-cache on CPU3
[  794.947635] arch_timer: CPU3: Trapping CNTVCT access
[  794.947850] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  794.960281] CPU3 is up
[  794.965681] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  795.176997] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  795.264976] OOM killer enabled.
[  795.265041] Restarting tasks ... done.
[  795.316580] PM: suspend exit
[  795.965386] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  795.975191] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  795.979770] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  795.979953] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  795.981311] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  796.005464] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  796.388460] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[  798.736692] systemd-journald[1884]: Time jumped backwards, rotating.
[  857.796904] PM: suspend entry (deep)
[  857.979871] Filesystems sync: 0.182 seconds
[  857.980692] Freezing user space processes ... (elapsed 0.005 seconds) done.
[  857.986598] OOM killer disabled.
[  857.986606] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  857.988499] printk: Suspending console(s) (use no_console_suspend to debug)
[  857.995407] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  858.285336] Disabling non-boot CPUs ...
[  858.298944] psci: CPU1 killed (polled 0 ms)
[  858.330938] psci: CPU2 killed (polled 0 ms)
[  858.362822] psci: CPU3 killed (polled 0 ms)
[  858.396150] Enabling non-boot CPUs ...
[  858.405079] Detected VIPT I-cache on CPU1
[  858.406498] arch_timer: CPU1: Trapping CNTVCT access
[  858.406967] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  858.423794] CPU1 is up
[  858.426190] Detected VIPT I-cache on CPU2
[  858.426554] arch_timer: CPU2: Trapping CNTVCT access
[  858.426793] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  858.437724] CPU2 is up
[  858.440634] Detected VIPT I-cache on CPU3
[  858.441153] arch_timer: CPU3: Trapping CNTVCT access
[  858.441343] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  858.453794] CPU3 is up
[  858.459297] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  858.703176] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  858.795825] OOM killer enabled.
[  858.795959] Restarting tasks ... done.
[  858.848487] PM: suspend exit
[  859.581884] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  859.587198] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  859.591741] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  859.591905] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  859.592178] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  859.617662] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  859.984230] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[  871.640559] systemd-journald[1884]: Time jumped backwards, rotating.
[  921.180122] PM: suspend entry (deep)
[  921.314965] Filesystems sync: 0.134 seconds
[  921.315815] Freezing user space processes ... (elapsed 0.005 seconds) done.
[  921.321456] OOM killer disabled.
[  921.321559] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  921.323473] printk: Suspending console(s) (use no_console_suspend to debug)
[  921.332204] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  921.616410] Disabling non-boot CPUs ...
[  921.629672] psci: CPU1 killed (polled 0 ms)
[  921.677746] psci: CPU2 killed (polled 0 ms)
[  921.708292] psci: CPU3 killed (polled 0 ms)
[  921.733249] Enabling non-boot CPUs ...
[  921.742503] Detected VIPT I-cache on CPU1
[  921.743646] arch_timer: CPU1: Trapping CNTVCT access
[  921.744141] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  921.761143] CPU1 is up
[  921.764102] Detected VIPT I-cache on CPU2
[  921.764707] arch_timer: CPU2: Trapping CNTVCT access
[  921.764932] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  921.775726] CPU2 is up
[  921.779395] Detected VIPT I-cache on CPU3
[  921.780066] arch_timer: CPU3: Trapping CNTVCT access
[  921.780280] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  921.792651] CPU3 is up
[  921.800019] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  922.013039] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  922.114421] OOM killer enabled.
[  922.114512] Restarting tasks ... done.
[  922.172182] PM: suspend exit
[  922.801017] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  922.808991] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  922.815204] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  922.815388] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  922.816485] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  922.841471] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  923.268033] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[  925.390152] systemd-journald[1884]: Time jumped backwards, rotating.
[  984.719388] PM: suspend entry (deep)
[  984.917568] Filesystems sync: 0.198 seconds
[  984.918885] Freezing user space processes ... (elapsed 0.006 seconds) done.
[  984.925167] OOM killer disabled.
[  984.925174] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  984.927076] printk: Suspending console(s) (use no_console_suspend to debug)
[  984.937090] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  985.229618] Disabling non-boot CPUs ...
[  985.242055] psci: CPU1 killed (polled 0 ms)
[  985.273556] psci: CPU2 killed (polled 0 ms)
[  985.302381] psci: CPU3 killed (polled 0 ms)
[  985.328746] Enabling non-boot CPUs ...
[  985.336379] Detected VIPT I-cache on CPU1
[  985.337650] arch_timer: CPU1: Trapping CNTVCT access
[  985.338109] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[  985.354755] CPU1 is up
[  985.357690] Detected VIPT I-cache on CPU2
[  985.358161] arch_timer: CPU2: Trapping CNTVCT access
[  985.358197] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[  985.369570] CPU2 is up
[  985.372727] Detected VIPT I-cache on CPU3
[  985.373428] arch_timer: CPU3: Trapping CNTVCT access
[  985.373669] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[  985.386281] CPU3 is up
[  985.392106] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[  985.603339] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[  985.694105] OOM killer enabled.
[  985.694175] Restarting tasks ... done.
[  985.733636] PM: suspend exit
[  986.420521] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[  986.431297] Bluetooth: hci0: RTL: chip_type status=0 type=5
[  986.435935] Bluetooth: hci0: RTL: rom_version status=0 version=1
[  986.436167] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[  986.436612] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[  986.460112] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[  986.925349] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1050.650630] systemd-journald[1884]: Time jumped backwards, rotating.
[ 1102.377764] PM: suspend entry (deep)
[ 1102.496392] Filesystems sync: 0.118 seconds
[ 1102.498362] Freezing user space processes ... (elapsed 0.011 seconds) done.
[ 1102.510075] OOM killer disabled.
[ 1102.513818] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1102.516682] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1102.525331] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1102.812460] Disabling non-boot CPUs ...
[ 1102.826733] psci: CPU1 killed (polled 0 ms)
[ 1102.858565] psci: CPU2 killed (polled 0 ms)
[ 1102.893506] psci: CPU3 killed (polled 4 ms)
[ 1102.918972] Enabling non-boot CPUs ...
[ 1102.926730] Detected VIPT I-cache on CPU1
[ 1102.927626] arch_timer: CPU1: Trapping CNTVCT access
[ 1102.927827] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1102.944125] CPU1 is up
[ 1102.947287] Detected VIPT I-cache on CPU2
[ 1102.947431] arch_timer: CPU2: Trapping CNTVCT access
[ 1102.947479] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1102.959041] CPU2 is up
[ 1102.962018] Detected VIPT I-cache on CPU3
[ 1102.962536] arch_timer: CPU3: Trapping CNTVCT access
[ 1102.962785] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1102.974982] CPU3 is up
[ 1102.981898] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1103.196258] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1103.288259] OOM killer enabled.
[ 1103.288335] Restarting tasks ... done.
[ 1103.349044] PM: suspend exit
[ 1103.978530] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1103.984519] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1103.989055] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1103.989185] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1103.990356] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1104.016793] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1104.445712] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1165.210263] systemd-journald[1884]: Time jumped backwards, rotating.
[ 1165.911294] PM: suspend entry (deep)
[ 1166.053230] Filesystems sync: 0.141 seconds
[ 1166.055043] Freezing user space processes ... (elapsed 0.006 seconds) done.
[ 1166.061689] OOM killer disabled.
[ 1166.061697] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[ 1166.063385] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1166.071160] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1166.360307] Disabling non-boot CPUs ...
[ 1166.374517] psci: CPU1 killed (polled 0 ms)
[ 1166.410135] psci: CPU2 killed (polled 0 ms)
[ 1166.460617] psci: CPU3 killed (polled 0 ms)
[ 1166.487135] Enabling non-boot CPUs ...
[ 1166.496854] Detected VIPT I-cache on CPU1
[ 1166.498371] arch_timer: CPU1: Trapping CNTVCT access
[ 1166.498848] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1166.515957] CPU1 is up
[ 1166.517942] Detected VIPT I-cache on CPU2
[ 1166.518498] arch_timer: CPU2: Trapping CNTVCT access
[ 1166.518706] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1166.529848] CPU2 is up
[ 1166.532715] Detected VIPT I-cache on CPU3
[ 1166.533125] arch_timer: CPU3: Trapping CNTVCT access
[ 1166.533314] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1166.545235] CPU3 is up
[ 1166.553208] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1166.770653] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1166.869615] OOM killer enabled.
[ 1166.869684] Restarting tasks ... done.
[ 1166.913537] PM: suspend exit
[ 1167.540108] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1167.545335] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1167.550332] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1167.550513] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1167.550832] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1167.575056] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1167.942547] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1229.675619] PM: suspend entry (deep)
[ 1229.867387] Filesystems sync: 0.191 seconds
[ 1229.869330] Freezing user space processes ... (elapsed 0.012 seconds) done.
[ 1229.881604] OOM killer disabled.
[ 1229.881619] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[ 1229.884714] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1229.894012] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1230.187157] Disabling non-boot CPUs ...
[ 1230.200867] psci: CPU1 killed (polled 0 ms)
[ 1230.233753] psci: CPU2 killed (polled 4 ms)
[ 1230.275269] psci: CPU3 killed (polled 0 ms)
[ 1230.301164] Enabling non-boot CPUs ...
[ 1230.308814] Detected VIPT I-cache on CPU1
[ 1230.310344] arch_timer: CPU1: Trapping CNTVCT access
[ 1230.310807] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1230.328483] CPU1 is up
[ 1230.331508] Detected VIPT I-cache on CPU2
[ 1230.331731] arch_timer: CPU2: Trapping CNTVCT access
[ 1230.331905] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1230.343510] CPU2 is up
[ 1230.348032] Detected VIPT I-cache on CPU3
[ 1230.348635] arch_timer: CPU3: Trapping CNTVCT access
[ 1230.348876] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1230.361889] CPU3 is up
[ 1230.367860] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1230.637159] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1230.733735] OOM killer enabled.
[ 1230.733813] Restarting tasks ... done.
[ 1230.816059] PM: suspend exit
[ 1231.442930] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1231.449748] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1231.455047] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1231.455400] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1231.458465] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1231.489377] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1231.912743] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1234.022874] Bluetooth: hci0: Invalid header checksum
[ 1234.027893] Bluetooth: hci0: Out-of-order packet arrived (4 != 3)
[ 1234.034040] Bluetooth: hci0: Out-of-order packet arrived (5 != 3)
[ 1234.040200] Bluetooth: hci0: Out-of-order packet arrived (6 != 3)
[ 1236.928735] Bluetooth: hci0: Invalid header checksum
[ 1236.933944] Bluetooth: hci0: Out-of-order packet arrived (6 != 5)
[ 1236.940156] Bluetooth: hci0: Out-of-order packet arrived (7 != 5)
[ 1320.351589] PM: suspend entry (deep)
[ 1320.637692] Filesystems sync: 0.285 seconds
[ 1320.638541] Freezing user space processes ... (elapsed 0.019 seconds) done.
[ 1320.658259] OOM killer disabled.
[ 1320.658265] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[ 1320.660225] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1320.670107] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1320.954538] Disabling non-boot CPUs ...
[ 1320.968664] psci: CPU1 killed (polled 0 ms)
[ 1321.002228] psci: CPU2 killed (polled 0 ms)
[ 1321.028945] psci: CPU3 killed (polled 0 ms)
[ 1321.067847] Enabling non-boot CPUs ...
[ 1321.076602] Detected VIPT I-cache on CPU1
[ 1321.077625] arch_timer: CPU1: Trapping CNTVCT access
[ 1321.078095] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1321.093139] CPU1 is up
[ 1321.096888] Detected VIPT I-cache on CPU2
[ 1321.097493] arch_timer: CPU2: Trapping CNTVCT access
[ 1321.097757] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1321.108952] CPU2 is up
[ 1321.111889] Detected VIPT I-cache on CPU3
[ 1321.112434] arch_timer: CPU3: Trapping CNTVCT access
[ 1321.112656] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1321.124954] CPU3 is up
[ 1321.133257] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1321.342283] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1321.433554] OOM killer enabled.
[ 1321.433608] Restarting tasks ... done.
[ 1321.501129] PM: suspend exit
[ 1322.099477] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1322.109212] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1322.117704] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1322.118020] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1322.118373] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1322.146877] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1322.535844] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1384.164851] PM: suspend entry (deep)
[ 1384.420983] Filesystems sync: 0.255 seconds
[ 1384.422722] Freezing user space processes ... (elapsed 0.011 seconds) done.
[ 1384.434824] OOM killer disabled.
[ 1384.434838] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1384.437866] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1384.448827] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1384.748104] Disabling non-boot CPUs ...
[ 1384.761918] psci: CPU1 killed (polled 0 ms)
[ 1384.795040] psci: CPU2 killed (polled 0 ms)
[ 1384.839934] psci: CPU3 killed (polled 0 ms)
[ 1384.867970] Enabling non-boot CPUs ...
[ 1384.875632] Detected VIPT I-cache on CPU1
[ 1384.877057] arch_timer: CPU1: Trapping CNTVCT access
[ 1384.877545] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1384.894699] CPU1 is up
[ 1384.898122] Detected VIPT I-cache on CPU2
[ 1384.898639] arch_timer: CPU2: Trapping CNTVCT access
[ 1384.898824] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1384.910331] CPU2 is up
[ 1384.913396] Detected VIPT I-cache on CPU3
[ 1384.914039] arch_timer: CPU3: Trapping CNTVCT access
[ 1384.914231] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1384.927372] CPU3 is up
[ 1384.934847] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1385.160429] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1385.254726] OOM killer enabled.
[ 1385.254806] Restarting tasks ... done.
[ 1385.290255] PM: suspend exit
[ 1385.961261] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1385.967381] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1385.976909] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1385.977095] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1385.978305] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1386.004747] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1386.422323] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1388.017153] Bluetooth: hci0: Invalid header checksum
[ 1388.022712] Bluetooth: hci0: Out-of-order packet arrived (1 != 0)
[ 1388.028840] Bluetooth: hci0: Out-of-order packet arrived (2 != 0)
[ 1388.056300] Bluetooth: hci0: Out-of-order packet arrived (3 != 0)
[ 1388.183792] Bluetooth: hci0: Too short H5 packet
[ 1388.188515] Bluetooth: hci0: Invalid header checksum
[ 1388.193612] Bluetooth: hci0: Out-of-order packet arrived (3 != 2)
[ 1388.199783] Bluetooth: hci0: Out-of-order packet arrived (5 != 2)
[ 1447.894800] PM: suspend entry (deep)
[ 1448.251022] Filesystems sync: 0.355 seconds
[ 1448.252029] Freezing user space processes ... (elapsed 0.006 seconds) done.
[ 1448.258977] OOM killer disabled.
[ 1448.258986] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1448.261174] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1448.269464] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1448.555842] Disabling non-boot CPUs ...
[ 1448.570812] psci: CPU1 killed (polled 0 ms)
[ 1448.603163] psci: CPU2 killed (polled 0 ms)
[ 1448.634081] psci: CPU3 killed (polled 0 ms)
[ 1448.672551] Enabling non-boot CPUs ...
[ 1448.680273] Detected VIPT I-cache on CPU1
[ 1448.681415] arch_timer: CPU1: Trapping CNTVCT access
[ 1448.681895] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1448.700750] CPU1 is up
[ 1448.703811] Detected VIPT I-cache on CPU2
[ 1448.704188] arch_timer: CPU2: Trapping CNTVCT access
[ 1448.704365] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1448.744426] CPU2 is up
[ 1448.750755] Detected VIPT I-cache on CPU3
[ 1448.751904] arch_timer: CPU3: Trapping CNTVCT access
[ 1448.752271] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1448.767225] CPU3 is up
[ 1448.773044] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1448.985040] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1449.073800] OOM killer enabled.
[ 1449.073877] Restarting tasks ... done.
[ 1449.121133] PM: suspend exit
[ 1449.765431] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1449.770427] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1449.778008] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1449.778186] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1449.778463] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1449.801688] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1450.183362] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1529.465286] PM: suspend entry (deep)
[ 1529.794737] Filesystems sync: 0.329 seconds
[ 1529.796834] Freezing user space processes ... (elapsed 0.011 seconds) done.
[ 1529.808457] OOM killer disabled.
[ 1529.808475] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1529.811459] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1529.819686] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1530.112419] Disabling non-boot CPUs ...
[ 1530.125432] psci: CPU1 killed (polled 0 ms)
[ 1530.158743] psci: CPU2 killed (polled 0 ms)
[ 1530.190100] psci: CPU3 killed (polled 0 ms)
[ 1530.234408] Enabling non-boot CPUs ...
[ 1530.242444] Detected VIPT I-cache on CPU1
[ 1530.243222] arch_timer: CPU1: Trapping CNTVCT access
[ 1530.243654] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1530.259771] CPU1 is up
[ 1530.262866] Detected VIPT I-cache on CPU2
[ 1530.263091] arch_timer: CPU2: Trapping CNTVCT access
[ 1530.263296] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1530.274039] CPU2 is up
[ 1530.277300] Detected VIPT I-cache on CPU3
[ 1530.278002] arch_timer: CPU3: Trapping CNTVCT access
[ 1530.278293] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1530.291068] CPU3 is up
[ 1530.296786] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1530.539938] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1530.631180] OOM killer enabled.
[ 1530.631257] Restarting tasks ... done.
[ 1530.699834] PM: suspend exit
[ 1531.408986] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1531.414218] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1531.422098] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1531.422255] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1531.423333] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1531.448332] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1531.854531] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1593.495166] PM: suspend entry (deep)
[ 1593.794396] Filesystems sync: 0.299 seconds
[ 1593.795445] Freezing user space processes ... (elapsed 0.007 seconds) done.
[ 1593.803179] OOM killer disabled.
[ 1593.803188] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1593.805368] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1593.813625] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1594.105794] Disabling non-boot CPUs ...
[ 1594.119406] psci: CPU1 killed (polled 4 ms)
[ 1594.162257] psci: CPU2 killed (polled 0 ms)
[ 1594.198096] psci: CPU3 killed (polled 0 ms)
[ 1594.241242] Enabling non-boot CPUs ...
[ 1594.250117] Detected VIPT I-cache on CPU1
[ 1594.251389] arch_timer: CPU1: Trapping CNTVCT access
[ 1594.251869] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1594.269981] CPU1 is up
[ 1594.272689] Detected VIPT I-cache on CPU2
[ 1594.273351] arch_timer: CPU2: Trapping CNTVCT access
[ 1594.273451] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1594.286180] CPU2 is up
[ 1594.289107] Detected VIPT I-cache on CPU3
[ 1594.289503] arch_timer: CPU3: Trapping CNTVCT access
[ 1594.289745] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1594.302289] CPU3 is up
[ 1594.308441] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1594.542619] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1594.644102] OOM killer enabled.
[ 1594.644181] Restarting tasks ... done.
[ 1594.699899] PM: suspend exit
[ 1595.327668] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1595.332778] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1595.337485] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1595.337850] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1595.338114] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1595.363016] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1595.767729] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1657.551884] PM: suspend entry (deep)
[ 1657.911425] Filesystems sync: 0.359 seconds
[ 1657.912835] Freezing user space processes ... (elapsed 0.007 seconds) done.
[ 1657.920223] OOM killer disabled.
[ 1657.920232] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1657.922332] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1657.930677] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1658.222543] Disabling non-boot CPUs ...
[ 1658.236451] psci: CPU1 killed (polled 0 ms)
[ 1658.270902] psci: CPU2 killed (polled 4 ms)
[ 1658.313937] psci: CPU3 killed (polled 0 ms)
[ 1658.349939] Enabling non-boot CPUs ...
[ 1658.357578] Detected VIPT I-cache on CPU1
[ 1658.358858] arch_timer: CPU1: Trapping CNTVCT access
[ 1658.359345] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1658.376889] CPU1 is up
[ 1658.381287] Detected VIPT I-cache on CPU2
[ 1658.382044] arch_timer: CPU2: Trapping CNTVCT access
[ 1658.382311] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1658.394898] CPU2 is up
[ 1658.397382] Detected VIPT I-cache on CPU3
[ 1658.398075] arch_timer: CPU3: Trapping CNTVCT access
[ 1658.398299] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1658.411169] CPU3 is up
[ 1658.417088] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1658.686694] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1658.782248] OOM killer enabled.
[ 1658.782338] Restarting tasks ... done.
[ 1658.881699] PM: suspend exit
[ 1659.454374] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1659.459605] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1659.466246] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1659.466429] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1659.467640] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1659.490396] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1659.865948] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1721.563068] PM: suspend entry (deep)
[ 1721.923230] Filesystems sync: 0.359 seconds
[ 1721.924359] Freezing user space processes ... (elapsed 0.006 seconds) done.
[ 1721.931083] OOM killer disabled.
[ 1721.931092] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1721.933187] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1721.941845] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1722.256266] Disabling non-boot CPUs ...
[ 1722.268371] psci: CPU1 killed (polled 0 ms)
[ 1722.310622] psci: CPU2 killed (polled 0 ms)
[ 1722.340807] psci: CPU3 killed (polled 4 ms)
[ 1722.368468] Enabling non-boot CPUs ...
[ 1722.376337] Detected VIPT I-cache on CPU1
[ 1722.377623] arch_timer: CPU1: Trapping CNTVCT access
[ 1722.378111] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1722.396016] CPU1 is up
[ 1722.398608] Detected VIPT I-cache on CPU2
[ 1722.399111] arch_timer: CPU2: Trapping CNTVCT access
[ 1722.399305] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1722.410302] CPU2 is up
[ 1722.413477] Detected VIPT I-cache on CPU3
[ 1722.413957] arch_timer: CPU3: Trapping CNTVCT access
[ 1722.414136] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1722.426668] CPU3 is up
[ 1722.432785] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1722.695549] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1722.791293] OOM killer enabled.
[ 1722.791407] Restarting tasks ... done.
[ 1722.849095] PM: suspend exit
[ 1723.454499] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1723.464159] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1723.468833] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1723.469056] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1723.469567] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1723.492392] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1723.948808] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1723.986875] Bluetooth: hci0: Too short H5 packet
[ 1784.660573] PM: suspend entry (deep)
[ 1784.957248] Filesystems sync: 0.296 seconds
[ 1784.958196] Freezing user space processes ... (elapsed 0.007 seconds) done.
[ 1784.965266] OOM killer disabled.
[ 1784.965275] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1784.967387] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1784.978085] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1785.277444] Disabling non-boot CPUs ...
[ 1785.291296] psci: CPU1 killed (polled 4 ms)
[ 1785.325815] psci: CPU2 killed (polled 0 ms)
[ 1785.359771] psci: CPU3 killed (polled 0 ms)
[ 1785.385645] Enabling non-boot CPUs ...
[ 1785.393632] Detected VIPT I-cache on CPU1
[ 1785.394971] arch_timer: CPU1: Trapping CNTVCT access
[ 1785.395433] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1785.413269] CPU1 is up
[ 1785.416729] Detected VIPT I-cache on CPU2
[ 1785.417442] arch_timer: CPU2: Trapping CNTVCT access
[ 1785.417711] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1785.429927] CPU2 is up
[ 1785.432591] Detected VIPT I-cache on CPU3
[ 1785.433034] arch_timer: CPU3: Trapping CNTVCT access
[ 1785.433296] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1785.446544] CPU3 is up
[ 1785.452717] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1785.697357] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1785.786349] OOM killer enabled.
[ 1785.786402] Restarting tasks ... done.
[ 1785.854350] PM: suspend exit
[ 1786.454652] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1786.460244] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1786.471737] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1786.471892] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1786.473116] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1786.496847] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1786.915952] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1788.697239] systemd-journald[1884]: Time jumped backwards, rotating.
[ 1847.979554] PM: suspend entry (deep)
[ 1848.138064] Filesystems sync: 0.158 seconds
[ 1848.150849] Freezing user space processes ... (elapsed 0.006 seconds) done.
[ 1848.157677] OOM killer disabled.
[ 1848.157684] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1848.159773] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1848.165109] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1848.447676] Disabling non-boot CPUs ...
[ 1848.461105] psci: CPU1 killed (polled 0 ms)
[ 1848.493752] psci: CPU2 killed (polled 0 ms)
[ 1848.521040] psci: CPU3 killed (polled 0 ms)
[ 1848.549644] Enabling non-boot CPUs ...
[ 1848.557741] Detected VIPT I-cache on CPU1
[ 1848.559010] arch_timer: CPU1: Trapping CNTVCT access
[ 1848.559313] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1848.576370] CPU1 is up
[ 1848.578157] Detected VIPT I-cache on CPU2
[ 1848.578592] arch_timer: CPU2: Trapping CNTVCT access
[ 1848.578761] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1848.590510] CPU2 is up
[ 1848.593790] Detected VIPT I-cache on CPU3
[ 1848.594331] arch_timer: CPU3: Trapping CNTVCT access
[ 1848.594577] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1848.607260] CPU3 is up
[ 1848.616497] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1848.834633] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1848.936558] OOM killer enabled.
[ 1848.936938] Restarting tasks ... done.
[ 1848.991465] PM: suspend exit
[ 1849.632702] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1849.637842] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1849.642437] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1849.642555] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1849.642982] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1849.666908] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1850.071852] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1851.764493] systemd-journald[1884]: Time jumped backwards, rotating.
[ 1913.640608] PM: suspend entry (deep)
[ 1913.858486] Filesystems sync: 0.217 seconds
[ 1913.859596] Freezing user space processes ... (elapsed 0.007 seconds) done.
[ 1913.867199] OOM killer disabled.
[ 1913.867208] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 1913.869321] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1913.878369] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1914.171620] Disabling non-boot CPUs ...
[ 1914.185827] psci: CPU1 killed (polled 0 ms)
[ 1914.230752] psci: CPU2 killed (polled 0 ms)
[ 1914.262700] psci: CPU3 killed (polled 0 ms)
[ 1914.288982] Enabling non-boot CPUs ...
[ 1914.296967] Detected VIPT I-cache on CPU1
[ 1914.298448] arch_timer: CPU1: Trapping CNTVCT access
[ 1914.298912] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1914.316505] CPU1 is up
[ 1914.320438] Detected VIPT I-cache on CPU2
[ 1914.320991] arch_timer: CPU2: Trapping CNTVCT access
[ 1914.321205] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1914.334153] CPU2 is up
[ 1914.337672] Detected VIPT I-cache on CPU3
[ 1914.338346] arch_timer: CPU3: Trapping CNTVCT access
[ 1914.338634] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1914.352311] CPU3 is up
[ 1914.360116] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1914.610241] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1914.707869] OOM killer enabled.
[ 1914.707971] Restarting tasks ... done.
[ 1914.762123] PM: suspend exit
[ 1915.381761] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1915.387069] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1915.391898] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1915.392083] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1915.393654] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1915.418054] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1915.847014] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1990.341139] PM: suspend entry (deep)
[ 1990.622932] Filesystems sync: 0.281 seconds
[ 1990.625128] Freezing user space processes ... (elapsed 0.012 seconds) done.
[ 1990.637810] OOM killer disabled.
[ 1990.637824] Freezing remaining freezable tasks ... (elapsed 0.006 seconds) done.
[ 1990.644586] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1990.654239] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1990.933193] Disabling non-boot CPUs ...
[ 1990.947188] psci: CPU1 killed (polled 0 ms)
[ 1990.997164] psci: CPU2 killed (polled 0 ms)
[ 1991.032013] psci: CPU3 killed (polled 0 ms)
[ 1991.084518] Enabling non-boot CPUs ...
[ 1991.092559] Detected VIPT I-cache on CPU1
[ 1991.093635] arch_timer: CPU1: Trapping CNTVCT access
[ 1991.094096] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 1991.110107] CPU1 is up
[ 1991.112164] Detected VIPT I-cache on CPU2
[ 1991.112436] arch_timer: CPU2: Trapping CNTVCT access
[ 1991.112522] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 1991.128824] CPU2 is up
[ 1991.134033] Detected VIPT I-cache on CPU3
[ 1991.134965] arch_timer: CPU3: Trapping CNTVCT access
[ 1991.135261] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 1991.148967] CPU3 is up
[ 1991.153681] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 1991.392545] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 1991.480888] OOM killer enabled.
[ 1991.480971] Restarting tasks ... done.
[ 1991.537790] PM: suspend exit
[ 1992.167782] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 1992.174749] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 1992.184398] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1992.184565] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 1992.184861] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 1992.208376] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 1992.625493] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 1994.089603] systemd-journald[1884]: Time jumped backwards, rotating.
[ 2223.154111] PM: suspend entry (deep)
[ 2223.355573] Filesystems sync: 0.201 seconds
[ 2223.357715] Freezing user space processes ... (elapsed 0.015 seconds) done.
[ 2223.373367] OOM killer disabled.
[ 2223.373381] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[ 2223.376570] printk: Suspending console(s) (use no_console_suspend to debug)
[ 2223.387074] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 2223.676916] Disabling non-boot CPUs ...
[ 2223.691723] psci: CPU1 killed (polled 0 ms)
[ 2223.724909] psci: CPU2 killed (polled 4 ms)
[ 2223.764375] psci: CPU3 killed (polled 4 ms)
[ 2223.795441] Enabling non-boot CPUs ...
[ 2223.803867] Detected VIPT I-cache on CPU1
[ 2223.804946] arch_timer: CPU1: Trapping CNTVCT access
[ 2223.805402] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 2223.822806] CPU1 is up
[ 2223.825683] Detected VIPT I-cache on CPU2
[ 2223.826230] arch_timer: CPU2: Trapping CNTVCT access
[ 2223.826271] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 2223.837415] CPU2 is up
[ 2223.840710] Detected VIPT I-cache on CPU3
[ 2223.841427] arch_timer: CPU3: Trapping CNTVCT access
[ 2223.841669] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 2223.855219] CPU3 is up
[ 2223.866281] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 2224.111169] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 2224.199785] OOM killer enabled.
[ 2224.199854] Restarting tasks ... done.
[ 2224.240786] PM: suspend exit
[ 2224.899204] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 2224.904431] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 2224.909140] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 2224.909337] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 2224.910842] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 2224.934845] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 2225.367128] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 2227.931242] systemd-journald[1884]: Time jumped backwards, rotating.
[ 2286.938116] PM: suspend entry (deep)
[ 2287.126939] Filesystems sync: 0.188 seconds
[ 2287.127939] Freezing user space processes ... (elapsed 0.006 seconds) done.
[ 2287.134567] OOM killer disabled.
[ 2287.134574] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[ 2287.136558] printk: Suspending console(s) (use no_console_suspend to debug)
[ 2287.143829] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 2287.436598] Disabling non-boot CPUs ...
[ 2287.449637] psci: CPU1 killed (polled 0 ms)
[ 2287.483649] psci: CPU2 killed (polled 4 ms)
[ 2287.513283] psci: CPU3 killed (polled 0 ms)
[ 2287.554877] Enabling non-boot CPUs ...
[ 2287.562826] Detected VIPT I-cache on CPU1
[ 2287.564087] arch_timer: CPU1: Trapping CNTVCT access
[ 2287.564564] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 2287.582224] CPU1 is up
[ 2287.585324] Detected VIPT I-cache on CPU2
[ 2287.585767] arch_timer: CPU2: Trapping CNTVCT access
[ 2287.585823] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 2287.596762] CPU2 is up
[ 2287.600011] Detected VIPT I-cache on CPU3
[ 2287.600710] arch_timer: CPU3: Trapping CNTVCT access
[ 2287.600909] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 2287.613632] CPU3 is up
[ 2287.619088] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 2287.867137] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 2287.954292] OOM killer enabled.
[ 2287.954362] Restarting tasks ... done.
[ 2287.994976] PM: suspend exit
[ 2288.714257] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 2288.719406] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 2288.724017] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 2288.724181] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 2288.724479] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 2288.750486] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 2289.125935] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 2291.241900] systemd-journald[1884]: Time jumped backwards, rotating.
[ 2380.295637] PM: suspend entry (deep)
[ 2380.452935] Filesystems sync: 0.157 seconds
[ 2380.454740] Freezing user space processes ... (elapsed 0.014 seconds) done.
[ 2380.469837] OOM killer disabled.
[ 2380.469851] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 2380.472791] printk: Suspending console(s) (use no_console_suspend to debug)
[ 2380.481279] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 2380.774526] Disabling non-boot CPUs ...
[ 2380.787929] psci: CPU1 killed (polled 0 ms)
[ 2380.820511] psci: CPU2 killed (polled 0 ms)
[ 2380.853847] psci: CPU3 killed (polled 4 ms)
[ 2380.879479] Enabling non-boot CPUs ...
[ 2380.887144] Detected VIPT I-cache on CPU1
[ 2380.888441] arch_timer: CPU1: Trapping CNTVCT access
[ 2380.888927] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 2380.905397] CPU1 is up
[ 2380.908051] Detected VIPT I-cache on CPU2
[ 2380.908159] arch_timer: CPU2: Trapping CNTVCT access
[ 2380.908205] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 2380.919754] CPU2 is up
[ 2380.923451] Detected VIPT I-cache on CPU3
[ 2380.924060] arch_timer: CPU3: Trapping CNTVCT access
[ 2380.924144] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 2380.937411] CPU3 is up
[ 2380.943670] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 2381.152929] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 2381.248312] OOM killer enabled.
[ 2381.248374] Restarting tasks ... done.
[ 2381.395658] PM: suspend exit
[ 2381.967194] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 2381.972645] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 2381.977523] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 2381.977660] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 2381.978708] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 2382.004911] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 2382.393604] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 2389.808049] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 2443.963802] PM: suspend entry (deep)
[ 2444.188638] Filesystems sync: 0.224 seconds
[ 2444.189807] Freezing user space processes ... (elapsed 0.008 seconds) done.
[ 2444.198056] OOM killer disabled.
[ 2444.198064] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 2444.200202] printk: Suspending console(s) (use no_console_suspend to debug)
[ 2444.209444] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 2444.506699] Disabling non-boot CPUs ...
[ 2444.520930] psci: CPU1 killed (polled 0 ms)
[ 2444.557196] psci: CPU2 killed (polled 4 ms)
[ 2444.603072] psci: CPU3 killed (polled 0 ms)
[ 2444.636166] Enabling non-boot CPUs ...
[ 2444.643957] Detected VIPT I-cache on CPU1
[ 2444.645449] arch_timer: CPU1: Trapping CNTVCT access
[ 2444.645929] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 2444.664000] CPU1 is up
[ 2444.666815] Detected VIPT I-cache on CPU2
[ 2444.667221] arch_timer: CPU2: Trapping CNTVCT access
[ 2444.667298] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 2444.680016] CPU2 is up
[ 2444.683549] Detected VIPT I-cache on CPU3
[ 2444.684218] arch_timer: CPU3: Trapping CNTVCT access
[ 2444.684428] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 2444.698323] CPU3 is up
[ 2444.704437] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 2444.944340] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 2445.034073] OOM killer enabled.
[ 2445.034151] Restarting tasks ... done.
[ 2445.071117] PM: suspend exit
[ 2445.715585] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 2445.722679] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 2445.727441] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 2445.727634] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 2445.727996] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 2445.756103] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 2446.120790] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 2451.551479] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 2557.326333] anx7688 0-0028: BC 1.2 result: SDP
[ 2577.001364] anx7688 0-0028: BC 1.2 result: SDP
[ 3390.735082] anx7688 0-0028: BC 1.2 result: SDP
[ 3420.901725] anx7688 0-0028: BC 1.2 result: SDP
[ 3479.743360] anx7688 0-0028: BC 1.2 result: SDP
[ 3516.057933] anx7688 0-0028: BC 1.2 result: SDP
[ 3889.859855] anx7688 0-0028: BC 1.2 result: SDP
[ 5042.683429] anx7688 0-0028: BC 1.2 result: SDP
[ 5074.565379] anx7688 0-0028: BC 1.2 result: SDP
[ 6012.800609] usb 2-1: USB disconnect, device number 2
[ 6012.803036] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[ 6012.803242] option 2-1:1.0: device disconnected
[ 6012.809046] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[ 6012.809453] option 2-1:1.1: device disconnected
[ 6012.814902] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[ 6012.817647] option 2-1:1.2: device disconnected
[ 6012.825853] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[ 6012.830090] option 2-1:1.3: device disconnected
[ 6012.854833] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[ 6013.232709] usb 2-1: new high-speed USB device number 3 using ehci-platform
[ 6013.405944] option 2-1:1.0: GSM modem (1-port) converter detected
[ 6013.409987] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[ 6013.420866] option 2-1:1.1: GSM modem (1-port) converter detected
[ 6013.425193] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[ 6013.427029] option 2-1:1.2: GSM modem (1-port) converter detected
[ 6013.435399] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[ 6013.451747] option 2-1:1.3: GSM modem (1-port) converter detected
[ 6013.455615] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[ 6013.468828] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[ 6013.478951] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[ 6016.616269] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[ 6016.617034] option 2-1:1.0: device disconnected
[ 6016.626147] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[ 6016.626802] option 2-1:1.1: device disconnected
[ 6016.642708] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[ 6016.643106] option 2-1:1.2: device disconnected
[ 6016.651120] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[ 6016.651499] option 2-1:1.3: device disconnected
[ 6016.659390] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[ 6016.850881] option 2-1:1.0: GSM modem (1-port) converter detected
[ 6016.909665] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[ 6016.933243] option 2-1:1.1: GSM modem (1-port) converter detected
[ 6016.943618] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[ 6016.965448] option 2-1:1.2: GSM modem (1-port) converter detected
[ 6016.967427] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[ 6016.977924] option 2-1:1.3: GSM modem (1-port) converter detected
[ 6016.983169] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[ 6017.018747] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[ 6017.035305] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[ 6035.843935] anx7688 0-0028: BC 1.2 result: SDP
[ 6254.987915] anx7688 0-0028: BC 1.2 result: SDP
[ 7318.878214] anx7688 0-0028: BC 1.2 result: SDP
[ 7382.587206] PM: suspend entry (deep)
[ 7382.926210] Filesystems sync: 0.338 seconds
[ 7382.932214] Freezing user space processes ... (elapsed 0.015 seconds) done.
[ 7382.948306] OOM killer disabled.
[ 7382.948319] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[ 7382.951691] printk: Suspending console(s) (use no_console_suspend to debug)
[ 7382.959966] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 7383.255489] Disabling non-boot CPUs ...
[ 7383.275277] psci: CPU1 killed (polled 0 ms)
[ 7383.320034] psci: CPU2 killed (polled 0 ms)
[ 7383.361902] psci: CPU3 killed (polled 4 ms)
[ 7383.388049] Enabling non-boot CPUs ...
[ 7383.396097] Detected VIPT I-cache on CPU1
[ 7383.397626] arch_timer: CPU1: Trapping CNTVCT access
[ 7383.398087] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 7383.412214] CPU1 is up
[ 7383.414886] Detected VIPT I-cache on CPU2
[ 7383.415035] arch_timer: CPU2: Trapping CNTVCT access
[ 7383.415108] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 7383.423528] CPU2 is up
[ 7383.426183] Detected VIPT I-cache on CPU3
[ 7383.426633] arch_timer: CPU3: Trapping CNTVCT access
[ 7383.426837] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 7383.436445] CPU3 is up
[ 7383.442173] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 7383.684503] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 7383.777138] OOM killer enabled.
[ 7383.777224] Restarting tasks ... done.
[ 7383.837243] PM: suspend exit
[ 7384.485428] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 7384.490744] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 7384.495822] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 7384.496015] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 7384.500769] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 7384.531972] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 7384.912116] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 7386.833967] usb usb2-port1: disabled by hub (EMI?), re-enabling...
[ 7386.866909] usb 2-1: USB disconnect, device number 3
[ 7386.893451] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[ 7386.904181] option 2-1:1.0: device disconnected
[ 7386.907470] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[ 7386.908342] option 2-1:1.1: device disconnected
[ 7386.917098] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[ 7386.917595] option 2-1:1.2: device disconnected
[ 7386.922179] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[ 7386.922757] option 2-1:1.3: device disconnected
[ 7386.926375] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[ 7388.003362] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 7416.096299] usb 2-1: new high-speed USB device number 4 using ehci-platform
[ 7416.266887] option 2-1:1.0: GSM modem (1-port) converter detected
[ 7416.268588] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[ 7416.270566] option 2-1:1.1: GSM modem (1-port) converter detected
[ 7416.273474] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[ 7416.275785] option 2-1:1.2: GSM modem (1-port) converter detected
[ 7416.280447] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[ 7416.291778] option 2-1:1.3: GSM modem (1-port) converter detected
[ 7416.293854] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[ 7416.301684] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[ 7416.309766] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[ 7974.254806] PM: suspend entry (deep)
[ 7974.568427] Filesystems sync: 0.313 seconds
[ 7974.570104] Freezing user space processes ... (elapsed 0.008 seconds) done.
[ 7974.578489] OOM killer disabled.
[ 7974.578498] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[ 7974.580772] printk: Suspending console(s) (use no_console_suspend to debug)
[ 7974.589312] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 7974.888464] Disabling non-boot CPUs ...
[ 7974.911877] psci: CPU1 killed (polled 0 ms)
[ 7974.951734] psci: CPU2 killed (polled 0 ms)
[ 7974.991191] psci: CPU3 killed (polled 0 ms)
[ 7975.034923] Enabling non-boot CPUs ...
[ 7975.042924] Detected VIPT I-cache on CPU1
[ 7975.044254] arch_timer: CPU1: Trapping CNTVCT access
[ 7975.044741] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 7975.060906] CPU1 is up
[ 7975.062896] Detected VIPT I-cache on CPU2
[ 7975.063351] arch_timer: CPU2: Trapping CNTVCT access
[ 7975.063579] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 7975.072873] CPU2 is up
[ 7975.075029] Detected VIPT I-cache on CPU3
[ 7975.075528] arch_timer: CPU3: Trapping CNTVCT access
[ 7975.075738] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 7975.085340] CPU3 is up
[ 7975.091674] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[ 7975.348095] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[ 7975.436900] OOM killer enabled.
[ 7975.436995] Restarting tasks ... done.
[ 7975.464544] PM: suspend exit
[ 7976.128320] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[ 7976.133521] Bluetooth: hci0: RTL: chip_type status=0 type=5
[ 7976.138298] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 7976.138480] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[ 7976.138961] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[ 7976.163465] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[ 7976.576070] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[ 7979.179753] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 7987.395715] anx7688 0-0028: BC 1.2 result: SDP
[ 9057.496898] anx7688 0-0028: BC 1.2 result: SDP
[ 9605.818320] anx7688 0-0028: BC 1.2 result: SDP
[10552.595588] anx7688 0-0028: BC 1.2 result: SDP
[10568.977661] anx7688 0-0028: BC 1.2 result: SDP
[13984.658607] anx7688 0-0028: BC 1.2 result: SDP
[14034.495637] anx7688 0-0028: BC 1.2 result: SDP
[14323.022723] anx7688 0-0028: BC 1.2 result: SDP
[14353.558267] anx7688 0-0028: BC 1.2 result: SDP
[16450.218332] anx7688 0-0028: BC 1.2 result: SDP
[16546.834106] PM: suspend entry (deep)
[16547.228437] Filesystems sync: 0.394 seconds
[16547.230446] Freezing user space processes ... (elapsed 0.012 seconds) done.
[16547.242611] OOM killer disabled.
[16547.242625] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[16547.245597] printk: Suspending console(s) (use no_console_suspend to debug)
[16547.262645] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[16547.555037] Disabling non-boot CPUs ...
[16547.571588] psci: CPU1 killed (polled 0 ms)
[16547.612226] psci: CPU2 killed (polled 0 ms)
[16547.673511] psci: CPU3 killed (polled 0 ms)
[16547.710759] Enabling non-boot CPUs ...
[16547.718813] Detected VIPT I-cache on CPU1
[16547.720202] arch_timer: CPU1: Trapping CNTVCT access
[16547.720690] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[16547.736493] CPU1 is up
[16547.739348] Detected VIPT I-cache on CPU2
[16547.739784] arch_timer: CPU2: Trapping CNTVCT access
[16547.739906] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[16547.748138] CPU2 is up
[16547.750717] Detected VIPT I-cache on CPU3
[16547.751164] arch_timer: CPU3: Trapping CNTVCT access
[16547.751356] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[16547.760228] CPU3 is up
[16547.768475] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[16547.997081] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[16548.093706] OOM killer enabled.
[16548.093789] Restarting tasks ... done.
[16548.177259] PM: suspend exit
[16548.773928] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[16548.779262] Bluetooth: hci0: RTL: chip_type status=0 type=5
[16548.783821] Bluetooth: hci0: RTL: rom_version status=0 version=1
[16548.784081] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[16548.785378] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[16548.812824] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[16549.199564] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[16555.223685] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[16610.968815] PM: suspend entry (deep)
[16611.387880] Filesystems sync: 0.418 seconds
[16611.390133] Freezing user space processes ... (elapsed 0.013 seconds) done.
[16611.403292] OOM killer disabled.
[16611.403307] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[16611.406383] printk: Suspending console(s) (use no_console_suspend to debug)
[16611.415921] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[16611.713853] Disabling non-boot CPUs ...
[16611.732667] psci: CPU1 killed (polled 0 ms)
[16611.769380] psci: CPU2 killed (polled 0 ms)
[16611.800205] psci: CPU3 killed (polled 0 ms)
[16611.834411] Enabling non-boot CPUs ...
[16611.843426] Detected VIPT I-cache on CPU1
[16611.844820] arch_timer: CPU1: Trapping CNTVCT access
[16611.845313] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[16611.862996] CPU1 is up
[16611.865028] Detected VIPT I-cache on CPU2
[16611.865576] arch_timer: CPU2: Trapping CNTVCT access
[16611.865798] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[16611.876043] CPU2 is up
[16611.879466] Detected VIPT I-cache on CPU3
[16611.880035] arch_timer: CPU3: Trapping CNTVCT access
[16611.880300] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[16611.892119] CPU3 is up
[16611.898442] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[16612.122010] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[16612.218317] OOM killer enabled.
[16612.218422] Restarting tasks ... done.
[16612.247222] PM: suspend exit
[16612.910849] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[16612.915784] Bluetooth: hci0: RTL: chip_type status=0 type=5
[16612.920384] Bluetooth: hci0: RTL: rom_version status=0 version=1
[16612.920538] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[16612.921027] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[16612.946084] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[16613.335294] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[16616.209077] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[16994.872448] PM: suspend entry (deep)
[16995.291779] Filesystems sync: 0.419 seconds
[16995.293405] Freezing user space processes ... (elapsed 0.007 seconds) done.
[16995.301128] OOM killer disabled.
[16995.301136] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[16995.303332] printk: Suspending console(s) (use no_console_suspend to debug)
[16995.313160] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[16995.611539] Disabling non-boot CPUs ...
[16995.629667] psci: CPU1 killed (polled 4 ms)
[16995.675339] psci: CPU2 killed (polled 0 ms)
[16995.730097] psci: CPU3 killed (polled 0 ms)
[16995.772616] Enabling non-boot CPUs ...
[16995.780943] Detected VIPT I-cache on CPU1
[16995.782493] arch_timer: CPU1: Trapping CNTVCT access
[16995.782973] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[16995.799501] CPU1 is up
[16995.802502] Detected VIPT I-cache on CPU2
[16995.802896] arch_timer: CPU2: Trapping CNTVCT access
[16995.803063] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[16995.811762] CPU2 is up
[16995.814383] Detected VIPT I-cache on CPU3
[16995.814761] arch_timer: CPU3: Trapping CNTVCT access
[16995.814856] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[16995.823647] CPU3 is up
[16995.829768] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[16996.044027] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[16996.132538] OOM killer enabled.
[16996.132615] Restarting tasks ... done.
[16996.203302] PM: suspend exit
[16996.872011] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[16996.894033] Bluetooth: hci0: RTL: chip_type status=0 type=5
[16996.899158] Bluetooth: hci0: RTL: rom_version status=0 version=1
[16996.899327] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[16996.900446] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[16996.923665] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[16997.304842] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[16999.663018] systemd-journald[1884]: Time jumped backwards, rotating.
[17001.642639] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[17119.502212] PM: suspend entry (deep)
[17119.764663] Filesystems sync: 0.262 seconds
[17119.765578] Freezing user space processes ... (elapsed 0.006 seconds) done.
[17119.771876] OOM killer disabled.
[17119.771882] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[17119.773952] printk: Suspending console(s) (use no_console_suspend to debug)
[17119.781035] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[17120.072643] Disabling non-boot CPUs ...
[17120.089854] psci: CPU1 killed (polled 4 ms)
[17120.121079] psci: CPU2 killed (polled 0 ms)
[17120.156419] psci: CPU3 killed (polled 0 ms)
[17120.183312] Enabling non-boot CPUs ...
[17120.190845] Detected VIPT I-cache on CPU1
[17120.192137] arch_timer: CPU1: Trapping CNTVCT access
[17120.192448] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[17120.207828] CPU1 is up
[17120.211027] Detected VIPT I-cache on CPU2
[17120.211586] arch_timer: CPU2: Trapping CNTVCT access
[17120.211782] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[17120.221611] CPU2 is up
[17120.224145] Detected VIPT I-cache on CPU3
[17120.224329] arch_timer: CPU3: Trapping CNTVCT access
[17120.224551] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[17120.235281] CPU3 is up
[17120.240434] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[17120.457213] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[17120.548536] OOM killer enabled.
[17120.548759] Restarting tasks ... done.
[17120.582606] PM: suspend exit
[17121.233450] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[17121.238735] Bluetooth: hci0: RTL: chip_type status=0 type=5
[17121.243877] Bluetooth: hci0: RTL: rom_version status=0 version=1
[17121.244087] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[17121.244446] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[17121.272872] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[17121.694608] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[17123.769105] systemd-journald[1884]: Time jumped backwards, rotating.
[17124.183524] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[17204.026137] PM: suspend entry (deep)
[17204.256230] Filesystems sync: 0.230 seconds
[17204.258345] Freezing user space processes ... (elapsed 0.008 seconds) done.
[17204.267079] OOM killer disabled.
[17204.267085] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[17204.269232] printk: Suspending console(s) (use no_console_suspend to debug)
[17204.274698] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[17204.684650] Disabling non-boot CPUs ...
[17204.699471] psci: CPU1 killed (polled 0 ms)
[17204.732888] psci: CPU2 killed (polled 4 ms)
[17204.764826] psci: CPU3 killed (polled 4 ms)
[17204.788241] Enabling non-boot CPUs ...
[17204.796416] Detected VIPT I-cache on CPU1
[17204.797937] arch_timer: CPU1: Trapping CNTVCT access
[17204.798405] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[17204.813588] CPU1 is up
[17204.816047] Detected VIPT I-cache on CPU2
[17204.816597] arch_timer: CPU2: Trapping CNTVCT access
[17204.816804] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[17204.826352] CPU2 is up
[17204.828748] Detected VIPT I-cache on CPU3
[17204.829263] arch_timer: CPU3: Trapping CNTVCT access
[17204.829435] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[17204.838887] CPU3 is up
[17204.843737] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[17205.255819] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[17205.343983] OOM killer enabled.
[17205.344172] Restarting tasks ... done.
[17205.405797] PM: suspend exit
[17206.044934] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[17206.052052] Bluetooth: hci0: RTL: chip_type status=0 type=5
[17206.065660] Bluetooth: hci0: RTL: rom_version status=0 version=1
[17206.065866] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[17206.067487] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[17206.091722] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[17206.466818] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[17210.043434] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[17436.849612] PM: suspend entry (deep)
[17437.135083] Filesystems sync: 0.285 seconds
[17437.137321] Freezing user space processes ... (elapsed 0.019 seconds) done.
[17437.156980] OOM killer disabled.
[17437.156993] Freezing remaining freezable tasks ... (elapsed 0.005 seconds) done.
[17437.162750] printk: Suspending console(s) (use no_console_suspend to debug)
[17437.171718] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[17437.458556] Disabling non-boot CPUs ...
[17437.477685] psci: CPU1 killed (polled 0 ms)
[17437.512291] psci: CPU2 killed (polled 0 ms)
[17437.556814] psci: CPU3 killed (polled 0 ms)
[17437.585521] Enabling non-boot CPUs ...
[17437.593942] Detected VIPT I-cache on CPU1
[17437.595440] arch_timer: CPU1: Trapping CNTVCT access
[17437.595908] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[17437.613210] CPU1 is up
[17437.616668] Detected VIPT I-cache on CPU2
[17437.617220] arch_timer: CPU2: Trapping CNTVCT access
[17437.617411] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[17437.627392] CPU2 is up
[17437.629539] Detected VIPT I-cache on CPU3
[17437.630098] arch_timer: CPU3: Trapping CNTVCT access
[17437.630310] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[17437.641516] CPU3 is up
[17437.646733] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[17437.865557] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[17437.957913] OOM killer enabled.
[17437.958658] Restarting tasks ... done.
[17438.050910] PM: suspend exit
[17438.735442] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[17438.741005] Bluetooth: hci0: RTL: chip_type status=0 type=5
[17438.746377] Bluetooth: hci0: RTL: rom_version status=0 version=1
[17438.746566] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[17438.747014] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[17438.773153] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[17439.166375] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[17445.724737] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[17535.780367] PM: suspend entry (deep)
[17536.103452] Filesystems sync: 0.323 seconds
[17536.104355] Freezing user space processes ... (elapsed 0.008 seconds) done.
[17536.112985] OOM killer disabled.
[17536.112993] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[17536.115352] printk: Suspending console(s) (use no_console_suspend to debug)
[17536.124389] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[17536.423351] Disabling non-boot CPUs ...
[17536.438460] psci: CPU1 killed (polled 0 ms)
[17536.504409] psci: CPU2 killed (polled 0 ms)
[17536.566015] psci: CPU3 killed (polled 0 ms)
[17536.593964] Enabling non-boot CPUs ...
[17536.602502] Detected VIPT I-cache on CPU1
[17536.603993] arch_timer: CPU1: Trapping CNTVCT access
[17536.604490] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[17536.622533] CPU1 is up
[17536.624978] Detected VIPT I-cache on CPU2
[17536.625149] arch_timer: CPU2: Trapping CNTVCT access
[17536.625291] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[17536.635178] CPU2 is up
[17536.637261] Detected VIPT I-cache on CPU3
[17536.637465] arch_timer: CPU3: Trapping CNTVCT access
[17536.637576] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[17536.648800] CPU3 is up
[17536.655687] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[17536.913903] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[17537.003474] OOM killer enabled.
[17537.003557] Restarting tasks ... done.
[17537.066995] PM: suspend exit
[17537.721319] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[17537.726675] Bluetooth: hci0: RTL: chip_type status=0 type=5
[17537.732340] Bluetooth: hci0: RTL: rom_version status=0 version=1
[17537.732835] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[17537.733983] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[17537.758616] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[17538.180524] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[17540.873197] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[19264.586565] PM: suspend entry (deep)
[19265.057682] Filesystems sync: 0.471 seconds
[19265.058785] Freezing user space processes ... (elapsed 0.008 seconds) done.
[19265.067696] OOM killer disabled.
[19265.067705] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[19265.069980] printk: Suspending console(s) (use no_console_suspend to debug)
[19265.078869] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[19265.367301] Disabling non-boot CPUs ...
[19265.382291] psci: CPU1 killed (polled 4 ms)
[19265.420913] psci: CPU2 killed (polled 0 ms)
[19265.482140] psci: CPU3 killed (polled 4 ms)
[19265.512880] Enabling non-boot CPUs ...
[19265.521178] Detected VIPT I-cache on CPU1
[19265.522375] arch_timer: CPU1: Trapping CNTVCT access
[19265.522862] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[19265.538556] CPU1 is up
[19265.542494] Detected VIPT I-cache on CPU2
[19265.543113] arch_timer: CPU2: Trapping CNTVCT access
[19265.543356] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[19265.552894] CPU2 is up
[19265.555986] Detected VIPT I-cache on CPU3
[19265.556161] arch_timer: CPU3: Trapping CNTVCT access
[19265.556265] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[19265.564926] CPU3 is up
[19265.569813] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[19265.781370] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[19265.878503] OOM killer enabled.
[19265.878589] Restarting tasks ... done.
[19265.943583] PM: suspend exit
[19266.581969] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[19266.586998] Bluetooth: hci0: RTL: chip_type status=0 type=5
[19266.591477] Bluetooth: hci0: RTL: rom_version status=0 version=1
[19266.591652] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[19266.592231] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[19266.616940] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[19267.029675] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[19268.892789] systemd-journald[1884]: Time jumped backwards, rotating.
[19270.602424] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[19553.332262] PM: suspend entry (deep)
[19553.599730] Filesystems sync: 0.267 seconds
[19553.600781] Freezing user space processes ... (elapsed 0.008 seconds) done.
[19553.609634] OOM killer disabled.
[19553.609644] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[19553.611900] printk: Suspending console(s) (use no_console_suspend to debug)
[19553.620455] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[19553.920405] Disabling non-boot CPUs ...
[19553.935897] psci: CPU1 killed (polled 0 ms)
[19553.998326] psci: CPU2 killed (polled 0 ms)
[19554.035182] psci: CPU3 killed (polled 0 ms)
[19554.098897] Enabling non-boot CPUs ...
[19554.106502] Detected VIPT I-cache on CPU1
[19554.107921] arch_timer: CPU1: Trapping CNTVCT access
[19554.108409] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[19554.125418] CPU1 is up
[19554.129554] Detected VIPT I-cache on CPU2
[19554.130091] arch_timer: CPU2: Trapping CNTVCT access
[19554.130291] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[19554.140637] CPU2 is up
[19554.143472] Detected VIPT I-cache on CPU3
[19554.144072] arch_timer: CPU3: Trapping CNTVCT access
[19554.144263] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[19554.154362] CPU3 is up
[19554.162794] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[19554.378796] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[19554.468087] OOM killer enabled.
[19554.468187] Restarting tasks ... done.
[19554.528821] PM: suspend exit
[19555.152215] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[19555.158043] Bluetooth: hci0: RTL: chip_type status=0 type=5
[19555.162908] Bluetooth: hci0: RTL: rom_version status=0 version=1
[19555.163032] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[19555.164216] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[19555.186704] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[19555.552806] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[19558.780844] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[19723.280778] PM: suspend entry (deep)
[19723.649852] Filesystems sync: 0.369 seconds
[19723.653623] Freezing user space processes ... (elapsed 0.013 seconds) done.
[19723.667109] OOM killer disabled.
[19723.667120] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[19723.670327] printk: Suspending console(s) (use no_console_suspend to debug)
[19723.678675] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[19723.971757] Disabling non-boot CPUs ...
[19723.986672] psci: CPU1 killed (polled 0 ms)
[19724.052997] psci: CPU2 killed (polled 0 ms)
[19724.095782] psci: CPU3 killed (polled 4 ms)
[19724.134761] Enabling non-boot CPUs ...
[19724.144218] Detected VIPT I-cache on CPU1
[19724.145791] arch_timer: CPU1: Trapping CNTVCT access
[19724.146292] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[19724.160736] CPU1 is up
[19724.164850] Detected VIPT I-cache on CPU2
[19724.165518] arch_timer: CPU2: Trapping CNTVCT access
[19724.165626] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[19724.176945] CPU2 is up
[19724.179615] Detected VIPT I-cache on CPU3
[19724.180188] arch_timer: CPU3: Trapping CNTVCT access
[19724.180386] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[19724.191256] CPU3 is up
[19724.196471] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[19724.434686] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[19724.523602] OOM killer enabled.
[19724.523683] Restarting tasks ... done.
[19724.602040] PM: suspend exit
[19725.330420] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[19725.335513] Bluetooth: hci0: RTL: chip_type status=0 type=5
[19725.340168] Bluetooth: hci0: RTL: rom_version status=0 version=1
[19725.340333] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[19725.340616] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[19725.366045] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[19725.755021] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[19728.731023] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[19804.032510] PM: suspend entry (deep)
[19804.486230] Filesystems sync: 0.453 seconds
[19804.489419] Freezing user space processes ... (elapsed 0.032 seconds) done.
[19804.522231] OOM killer disabled.
[19804.522244] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[19804.525351] printk: Suspending console(s) (use no_console_suspend to debug)
[19804.537193] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[19804.820855] Disabling non-boot CPUs ...
[19804.835135] psci: CPU1 killed (polled 4 ms)
[19804.890295] psci: CPU2 killed (polled 0 ms)
[19804.922738] psci: CPU3 killed (polled 0 ms)
[19804.951370] Enabling non-boot CPUs ...
[19804.959214] Detected VIPT I-cache on CPU1
[19804.960766] arch_timer: CPU1: Trapping CNTVCT access
[19804.961234] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[19804.976755] CPU1 is up
[19804.979753] Detected VIPT I-cache on CPU2
[19804.980280] arch_timer: CPU2: Trapping CNTVCT access
[19804.980462] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[19804.990582] CPU2 is up
[19804.993236] Detected VIPT I-cache on CPU3
[19804.993416] arch_timer: CPU3: Trapping CNTVCT access
[19804.993475] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[19805.004604] CPU3 is up
[19805.009529] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[19805.282572] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[19805.377406] OOM killer enabled.
[19805.377596] Restarting tasks ... done.
[19805.403641] PM: suspend exit
[19806.070678] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[19806.076029] Bluetooth: hci0: RTL: chip_type status=0 type=5
[19806.080729] Bluetooth: hci0: RTL: rom_version status=0 version=1
[19806.081087] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[19806.082258] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[19806.105685] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[19806.472649] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[19812.893022] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[20045.351401] PM: suspend entry (deep)
[20045.702013] Filesystems sync: 0.350 seconds
[20045.703413] Freezing user space processes ... (elapsed 0.007 seconds) done.
[20045.710618] OOM killer disabled.
[20045.710628] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[20045.712799] printk: Suspending console(s) (use no_console_suspend to debug)
[20045.721770] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[20046.011002] Disabling non-boot CPUs ...
[20046.025007] psci: CPU1 killed (polled 0 ms)
[20046.081434] psci: CPU2 killed (polled 0 ms)
[20046.113230] psci: CPU3 killed (polled 0 ms)
[20046.145354] Enabling non-boot CPUs ...
[20046.152995] Detected VIPT I-cache on CPU1
[20046.154364] arch_timer: CPU1: Trapping CNTVCT access
[20046.154852] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[20046.173010] CPU1 is up
[20046.176046] Detected VIPT I-cache on CPU2
[20046.176711] arch_timer: CPU2: Trapping CNTVCT access
[20046.176911] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[20046.187157] CPU2 is up
[20046.190169] Detected VIPT I-cache on CPU3
[20046.190748] arch_timer: CPU3: Trapping CNTVCT access
[20046.190978] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[20046.202798] CPU3 is up
[20046.208666] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[20046.456988] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[20046.545701] OOM killer enabled.
[20046.545799] Restarting tasks ... done.
[20046.605547] PM: suspend exit
[20047.213060] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[20047.219151] Bluetooth: hci0: RTL: chip_type status=0 type=5
[20047.223840] Bluetooth: hci0: RTL: rom_version status=0 version=1
[20047.224044] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[20047.224373] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[20047.248497] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[20047.636721] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[20050.712904] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[20109.417602] PM: suspend entry (deep)
[20109.928421] Filesystems sync: 0.510 seconds
[20109.930532] Freezing user space processes ... (elapsed 0.012 seconds) done.
[20109.943611] OOM killer disabled.
[20109.943626] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[20109.946617] printk: Suspending console(s) (use no_console_suspend to debug)
[20109.954210] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[20110.241291] Disabling non-boot CPUs ...
[20110.254440] psci: CPU1 killed (polled 0 ms)
[20110.288559] psci: CPU2 killed (polled 4 ms)
[20110.341997] psci: CPU3 killed (polled 0 ms)
[20110.374183] Enabling non-boot CPUs ...
[20110.381754] Detected VIPT I-cache on CPU1
[20110.382699] arch_timer: CPU1: Trapping CNTVCT access
[20110.383185] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[20110.398814] CPU1 is up
[20110.401611] Detected VIPT I-cache on CPU2
[20110.401723] arch_timer: CPU2: Trapping CNTVCT access
[20110.401773] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[20110.412007] CPU2 is up
[20110.415036] Detected VIPT I-cache on CPU3
[20110.415782] arch_timer: CPU3: Trapping CNTVCT access
[20110.416012] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[20110.428255] CPU3 is up
[20110.434402] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[20110.686767] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[20110.779467] OOM killer enabled.
[20110.779559] Restarting tasks ... done.
[20110.843337] PM: suspend exit
[20111.466542] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[20111.472033] Bluetooth: hci0: RTL: chip_type status=0 type=5
[20111.476908] Bluetooth: hci0: RTL: rom_version status=0 version=1
[20111.477142] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[20111.478866] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[20111.502499] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[20111.945366] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[20114.859693] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[20234.976313] PM: suspend entry (deep)
[20235.407555] Filesystems sync: 0.431 seconds
[20235.410681] Freezing user space processes ... (elapsed 0.012 seconds) done.
[20235.423702] OOM killer disabled.
[20235.423715] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[20235.426939] printk: Suspending console(s) (use no_console_suspend to debug)
[20235.438603] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[20235.730024] Disabling non-boot CPUs ...
[20235.745113] psci: CPU1 killed (polled 0 ms)
[20235.795878] psci: CPU2 killed (polled 0 ms)
[20235.853657] psci: CPU3 killed (polled 0 ms)
[20235.892960] Enabling non-boot CPUs ...
[20235.900492] Detected VIPT I-cache on CPU1
[20235.901903] arch_timer: CPU1: Trapping CNTVCT access
[20235.902382] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[20235.920254] CPU1 is up
[20235.924175] Detected VIPT I-cache on CPU2
[20235.924645] arch_timer: CPU2: Trapping CNTVCT access
[20235.924840] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[20235.935552] CPU2 is up
[20235.938451] Detected VIPT I-cache on CPU3
[20235.938988] arch_timer: CPU3: Trapping CNTVCT access
[20235.939225] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[20235.950531] CPU3 is up
[20235.958842] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[20236.177907] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[20236.268238] OOM killer enabled.
[20236.268418] Restarting tasks ... done.
[20236.359813] PM: suspend exit
[20236.989950] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[20236.995689] Bluetooth: hci0: RTL: chip_type status=0 type=5
[20237.001010] Bluetooth: hci0: RTL: rom_version status=0 version=1
[20237.001177] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[20237.001435] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[20237.030208] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[20237.419869] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[20241.328746] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[21891.022500] usb 2-1: USB disconnect, device number 4
[21891.023927] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[21891.024265] option 2-1:1.0: device disconnected
[21891.027503] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[21891.028377] option 2-1:1.1: device disconnected
[21891.031448] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[21891.032675] option 2-1:1.2: device disconnected
[21891.037565] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[21891.038592] option 2-1:1.3: device disconnected
[21891.040536] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[21891.498077] usb 2-1: new high-speed USB device number 5 using ehci-platform
[21891.667414] option 2-1:1.0: GSM modem (1-port) converter detected
[21891.668278] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[21891.669418] option 2-1:1.1: GSM modem (1-port) converter detected
[21891.670395] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[21891.671630] option 2-1:1.2: GSM modem (1-port) converter detected
[21891.672505] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[21891.674112] option 2-1:1.3: GSM modem (1-port) converter detected
[21891.675046] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[21891.678145] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[21891.680821] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[21894.956865] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[21894.957038] option 2-1:1.0: device disconnected
[21894.958132] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[21894.958281] option 2-1:1.1: device disconnected
[21894.971429] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[21894.971595] option 2-1:1.2: device disconnected
[21894.975844] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[21894.975985] option 2-1:1.3: device disconnected
[21894.981235] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[21895.069922] option 2-1:1.0: GSM modem (1-port) converter detected
[21895.071006] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[21895.075476] option 2-1:1.1: GSM modem (1-port) converter detected
[21895.081137] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[21895.088041] option 2-1:1.2: GSM modem (1-port) converter detected
[21895.102472] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[21895.120776] option 2-1:1.3: GSM modem (1-port) converter detected
[21895.121459] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[21895.135563] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[21895.137865] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[22052.543849] PM: suspend entry (deep)
[22053.008461] Filesystems sync: 0.464 seconds
[22053.009309] Freezing user space processes ... (elapsed 0.005 seconds) done.
[22053.015124] OOM killer disabled.
[22053.015132] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[22053.017004] printk: Suspending console(s) (use no_console_suspend to debug)
[22053.024478] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[22053.307034] Disabling non-boot CPUs ...
[22053.322267] psci: CPU1 killed (polled 0 ms)
[22053.358455] psci: CPU2 killed (polled 0 ms)
[22053.390726] psci: CPU3 killed (polled 4 ms)
[22053.417554] Enabling non-boot CPUs ...
[22053.426274] Detected VIPT I-cache on CPU1
[22053.427862] arch_timer: CPU1: Trapping CNTVCT access
[22053.428331] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[22053.443776] CPU1 is up
[22053.446138] Detected VIPT I-cache on CPU2
[22053.446670] arch_timer: CPU2: Trapping CNTVCT access
[22053.446851] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[22053.455725] CPU2 is up
[22053.458483] Detected VIPT I-cache on CPU3
[22053.459024] arch_timer: CPU3: Trapping CNTVCT access
[22053.459211] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[22053.468065] CPU3 is up
[22053.473890] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[22053.741770] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[22053.839619] OOM killer enabled.
[22053.839933] Restarting tasks ... done.
[22053.863779] PM: suspend exit
[22054.587232] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[22054.594773] Bluetooth: hci0: RTL: chip_type status=0 type=5
[22054.599724] Bluetooth: hci0: RTL: rom_version status=0 version=1
[22054.599982] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[22054.602061] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[22054.628369] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[22055.037925] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[22057.677419] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[22338.798196] PM: suspend entry (deep)
[22339.348962] Filesystems sync: 0.550 seconds
[22339.351932] Freezing user space processes ... (elapsed 0.021 seconds) done.
[22339.373693] OOM killer disabled.
[22339.373708] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[22339.376783] printk: Suspending console(s) (use no_console_suspend to debug)
[22339.385337] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[22339.668982] Disabling non-boot CPUs ...
[22339.682623] psci: CPU1 killed (polled 4 ms)
[22339.718375] psci: CPU2 killed (polled 4 ms)
[22339.748885] psci: CPU3 killed (polled 0 ms)
[22339.782569] Enabling non-boot CPUs ...
[22339.789829] Detected VIPT I-cache on CPU1
[22339.791368] arch_timer: CPU1: Trapping CNTVCT access
[22339.791837] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[22339.806789] CPU1 is up
[22339.808978] Detected VIPT I-cache on CPU2
[22339.809490] arch_timer: CPU2: Trapping CNTVCT access
[22339.809716] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[22339.821142] CPU2 is up
[22339.824651] Detected VIPT I-cache on CPU3
[22339.825233] arch_timer: CPU3: Trapping CNTVCT access
[22339.825446] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[22339.836259] CPU3 is up
[22339.841425] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[22340.057754] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[22340.148455] OOM killer enabled.
[22340.148525] Restarting tasks ... done.
[22340.185393] PM: suspend exit
[22340.858770] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[22340.863959] Bluetooth: hci0: RTL: chip_type status=0 type=5
[22340.868920] Bluetooth: hci0: RTL: rom_version status=0 version=1
[22340.869093] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[22340.869443] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[22340.893510] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[22341.285985] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[22343.545182] systemd-journald[1884]: Time jumped backwards, rotating.
[22345.216485] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[22615.753148] anx7688 0-0028: plug irq (cd=1)
[22615.771539] anx7688 0-0028: cable inserted
[22615.811542] anx7688 0-0028: power enabled
[22615.883982] anx7688 0-0028: eeprom0 = 0x03
[22615.884054] anx7688 0-0028: fw loaded after 40 ms
[22615.884353] anx7688 0-0028: OCM firmware loaded (version 0x2410)
[22615.885740] anx7688 0-0028: send pd packet cmd=0x00 05 00 32 90 01 26 12
[22615.938947] anx7688 0-0028: send pd packet cmd=0x01 05 01 2c 91 01 26 16
[22615.949180] anx7688 0-0028: send pd packet cmd=0x02 11 02 00 00 00 ec 00 00 00 00 00 00 00 00 39 00 00 51 77
[22615.958720] anx7688 0-0028: send pd packet cmd=0x03 05 03 00 00 01 ff f8
[22615.959291] anx7688 0-0028: OCM configuration completed
[22615.984200] anx7688 0-0028: status changed to 0x00
[22615.984288] anx7688 0-0028: cc_status changed to CC1 = SRC.Open CC2 = SRC.Open
[22615.984304] anx7688 0-0028: DP state changed to 0x0000
[22615.984317] anx7688 0-0028: VCONN role change to SINK
[22615.984373] anx7688 0-0028: DATA role change requested to UFP
[22616.317126] anx7688 0-0028: BC 1.2 result: DCP or CDP
[22616.375237] anx7688 0-0028: cc_status changed to CC1 = SNK.Default CC2 = SRC.Open
[22616.828393] anx7688 0-0028: recv ocm message cmd=0xf2 01 f2 0d
[22616.828437] anx7688 0-0028: received HARD_RST, idiot firmware is bored
[22619.632041] anx7688 0-0028: updating power mode to USB, current limit 0mA (0 => BC1.2)
[22619.632183] anx7688 0-0028: enabling vbus_in power path
[22621.845890] anx7688 0-0028: recv ocm message cmd=0xf2 01 f2 0d
[22621.845935] anx7688 0-0028: received HARD_RST, idiot firmware is bored
[22626.862710] anx7688 0-0028: recv ocm message cmd=0xf2 01 f2 0d
[22626.862756] anx7688 0-0028: received HARD_RST, idiot firmware is bored
[22971.482589] anx7688 0-0028: BC 1.2 result: SDP
[22971.507004] anx7688 0-0028: plug irq (cd=0)
[22971.523615] anx7688 0-0028: cable removed
[22971.542761] anx7688 0-0028: power disabled
[22971.543750] anx7688 0-0028: setting vbus_in current limit to 500000 mA
[22971.544082] anx7688 0-0028: disabling vbus_in power path
[22971.544453] anx7688 0-0028: enabling USB BC 1.2 detection
[23288.156110] anx7688 0-0028: plug irq (cd=1)
[23288.175636] anx7688 0-0028: cable inserted
[23288.215603] anx7688 0-0028: power enabled
[23288.279771] anx7688 0-0028: eeprom0 = 0x03
[23288.279848] anx7688 0-0028: fw loaded after 40 ms
[23288.280030] anx7688 0-0028: OCM firmware loaded (version 0x2410)
[23288.281017] anx7688 0-0028: send pd packet cmd=0x00 05 00 32 90 01 26 12
[23288.330074] anx7688 0-0028: send pd packet cmd=0x01 05 01 2c 91 01 26 16
[23288.330655] anx7688 0-0028: send pd packet cmd=0x02 11 02 00 00 00 ec 00 00 00 00 00 00 00 00 39 00 00 51 77
[23288.331463] anx7688 0-0028: send pd packet cmd=0x03 05 03 00 00 01 ff f8
[23288.332233] anx7688 0-0028: OCM configuration completed
[23288.335816] anx7688 0-0028: status changed to 0x00
[23288.335898] anx7688 0-0028: cc_status changed to CC1 = SRC.Open CC2 = SRC.Open
[23288.335909] anx7688 0-0028: DP state changed to 0x0000
[23288.335920] anx7688 0-0028: VCONN role change to SINK
[23288.335967] anx7688 0-0028: DATA role change requested to UFP
[23288.786483] anx7688 0-0028: cc_status changed to CC1 = SNK.Default CC2 = SRC.Open
[23289.242280] anx7688 0-0028: recv ocm message cmd=0xf2 01 f2 0d
[23289.242370] anx7688 0-0028: received HARD_RST, idiot firmware is bored
[23291.362208] anx7688 0-0028: updating power mode to USB, current limit 0mA (0 => BC1.2)
[23291.362453] anx7688 0-0028: enabling vbus_in power path
[23291.923348] anx7688 0-0028: BC 1.2 result: DCP or CDP
[23294.250151] anx7688 0-0028: recv ocm message cmd=0xf2 01 f2 0d
[23294.250243] anx7688 0-0028: received HARD_RST, idiot firmware is bored
[23299.266822] anx7688 0-0028: recv ocm message cmd=0xf2 01 f2 0d
[23299.266903] anx7688 0-0028: received HARD_RST, idiot firmware is bored
[23737.150584] anx7688 0-0028: BC 1.2 result: SDP
[23737.175082] anx7688 0-0028: plug irq (cd=0)
[23737.190949] anx7688 0-0028: cable removed
[23737.206911] anx7688 0-0028: power disabled
[23737.207620] anx7688 0-0028: setting vbus_in current limit to 500000 mA
[23737.208184] anx7688 0-0028: disabling vbus_in power path
[23737.209042] anx7688 0-0028: enabling USB BC 1.2 detection
[23857.981132] anx7688 0-0028: plug irq (cd=1)
[23857.993511] anx7688 0-0028: cable inserted
[23858.033673] anx7688 0-0028: power enabled
[23858.097816] anx7688 0-0028: eeprom0 = 0x03
[23858.097888] anx7688 0-0028: fw loaded after 40 ms
[23858.098066] anx7688 0-0028: OCM firmware loaded (version 0x2410)
[23858.099053] anx7688 0-0028: send pd packet cmd=0x00 05 00 32 90 01 26 12
[23858.148138] anx7688 0-0028: send pd packet cmd=0x01 05 01 2c 91 01 26 16
[23858.148725] anx7688 0-0028: send pd packet cmd=0x02 11 02 00 00 00 ec 00 00 00 00 00 00 00 00 39 00 00 51 77
[23858.149591] anx7688 0-0028: send pd packet cmd=0x03 05 03 00 00 01 ff f8
[23858.150424] anx7688 0-0028: OCM configuration completed
[23858.152023] anx7688 0-0028: status changed to 0x00
[23858.152107] anx7688 0-0028: cc_status changed to CC1 = SRC.Open CC2 = SRC.Open
[23858.152126] anx7688 0-0028: DP state changed to 0x0000
[23858.152138] anx7688 0-0028: VCONN role change to SINK
[23858.152202] anx7688 0-0028: DATA role change requested to UFP
[23858.597148] anx7688 0-0028: cc_status changed to CC1 = SNK.Default CC2 = SRC.Open
[23859.055078] anx7688 0-0028: recv ocm message cmd=0xf2 01 f2 0d
[23859.055150] anx7688 0-0028: received HARD_RST, idiot firmware is bored
[23861.734682] anx7688 0-0028: updating power mode to USB, current limit 0mA (0 => BC1.2)
[23861.734869] anx7688 0-0028: enabling vbus_in power path
[23862.334841] anx7688 0-0028: BC 1.2 result: DCP or CDP
[23864.067575] anx7688 0-0028: recv ocm message cmd=0xf2 01 f2 0d
[23864.067618] anx7688 0-0028: received HARD_RST, idiot firmware is bored
[23869.085414] anx7688 0-0028: recv ocm message cmd=0xf2 01 f2 0d
[23869.085464] anx7688 0-0028: received HARD_RST, idiot firmware is bored
[24173.258739] usb 2-1: USB disconnect, device number 5
[24173.261125] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[24173.261537] option 2-1:1.0: device disconnected
[24173.270013] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[24173.271251] option 2-1:1.1: device disconnected
[24173.281449] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[24173.283594] option 2-1:1.2: device disconnected
[24173.300501] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[24173.301853] option 2-1:1.3: device disconnected
[24173.318858] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[24173.738320] usb 2-1: new high-speed USB device number 6 using ehci-platform
[24173.909379] option 2-1:1.0: GSM modem (1-port) converter detected
[24173.913035] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[24173.913864] option 2-1:1.1: GSM modem (1-port) converter detected
[24173.917316] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[24173.918768] option 2-1:1.2: GSM modem (1-port) converter detected
[24173.922502] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[24173.923148] option 2-1:1.3: GSM modem (1-port) converter detected
[24173.924127] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[24173.931846] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[24173.938911] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[24176.939698] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[24176.939872] option 2-1:1.0: device disconnected
[24176.948203] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[24176.948343] option 2-1:1.1: device disconnected
[24176.973537] option1 ttyUSB2: usb_wwan_write: submit urb 0 failed: -2
[24176.981079] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[24176.981187] option 2-1:1.2: device disconnected
[24176.992725] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[24176.992856] option 2-1:1.3: device disconnected
[24176.994949] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[24177.050931] option 2-1:1.0: GSM modem (1-port) converter detected
[24177.051951] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[24177.052463] option 2-1:1.1: GSM modem (1-port) converter detected
[24177.053126] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[24177.053829] option 2-1:1.2: GSM modem (1-port) converter detected
[24177.054634] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[24177.055268] option 2-1:1.3: GSM modem (1-port) converter detected
[24177.066840] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[24177.069324] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[24177.103303] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[24189.294070] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[24954.198389] anx7688 0-0028: BC 1.2 result: SDP
[24954.222717] anx7688 0-0028: plug irq (cd=0)
[24954.238728] anx7688 0-0028: cable removed
[24954.253199] anx7688 0-0028: power disabled
[24954.253703] anx7688 0-0028: setting vbus_in current limit to 500000 mA
[24954.264278] anx7688 0-0028: disabling vbus_in power path
[24954.264410] anx7688 0-0028: enabling USB BC 1.2 detection
[25027.222745] PM: suspend entry (deep)
[25027.407364] Filesystems sync: 0.184 seconds
[25027.409676] Freezing user space processes ... (elapsed 0.011 seconds) done.
[25027.421690] OOM killer disabled.
[25027.421704] Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
[25027.424573] printk: Suspending console(s) (use no_console_suspend to debug)
[25027.433054] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[25027.719644] Disabling non-boot CPUs ...
[25027.737035] psci: CPU1 killed (polled 4 ms)
[25027.788517] psci: CPU2 killed (polled 4 ms)
[25027.832267] psci: CPU3 killed (polled 0 ms)
[25027.863690] Enabling non-boot CPUs ...
[25027.871408] Detected VIPT I-cache on CPU1
[25027.872666] arch_timer: CPU1: Trapping CNTVCT access
[25027.873136] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[25027.887898] CPU1 is up
[25027.890695] Detected VIPT I-cache on CPU2
[25027.890955] arch_timer: CPU2: Trapping CNTVCT access
[25027.891169] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[25027.900068] CPU2 is up
[25027.902698] Detected VIPT I-cache on CPU3
[25027.902845] arch_timer: CPU3: Trapping CNTVCT access
[25027.902959] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[25027.912355] CPU3 is up
[25027.917775] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[25028.175549] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[25028.264427] OOM killer enabled.
[25028.264564] Restarting tasks ... done.
[25028.326993] PM: suspend exit
[25029.063060] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[25029.068479] Bluetooth: hci0: RTL: chip_type status=0 type=5
[25029.073465] Bluetooth: hci0: RTL: rom_version status=0 version=1
[25029.073727] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[25029.075930] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[25029.099793] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[25029.484191] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[25033.912164] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[25374.768548] PM: suspend entry (deep)
[25375.078713] Filesystems sync: 0.310 seconds
[25375.081967] Freezing user space processes ... (elapsed 0.013 seconds) done.
[25375.095431] OOM killer disabled.
[25375.095445] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[25375.098588] printk: Suspending console(s) (use no_console_suspend to debug)
[25375.107517] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[25375.394217] Disabling non-boot CPUs ...
[25375.410125] psci: CPU1 killed (polled 0 ms)
[25375.443749] psci: CPU2 killed (polled 0 ms)
[25375.480476] psci: CPU3 killed (polled 4 ms)
[25375.507441] Enabling non-boot CPUs ...
[25375.514899] Detected VIPT I-cache on CPU1
[25375.516032] arch_timer: CPU1: Trapping CNTVCT access
[25375.516509] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[25375.530272] CPU1 is up
[25375.533568] Detected VIPT I-cache on CPU2
[25375.534150] arch_timer: CPU2: Trapping CNTVCT access
[25375.534338] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[25375.543330] CPU2 is up
[25375.546165] Detected VIPT I-cache on CPU3
[25375.546541] arch_timer: CPU3: Trapping CNTVCT access
[25375.546582] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[25375.555696] CPU3 is up
[25375.561244] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[25375.771540] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[25375.860406] OOM killer enabled.
[25375.860478] Restarting tasks ... done.
[25375.896879] PM: suspend exit
[25376.629006] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[25376.634740] Bluetooth: hci0: RTL: chip_type status=0 type=5
[25376.639457] Bluetooth: hci0: RTL: rom_version status=0 version=1
[25376.639685] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[25376.640192] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[25376.663622] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[25377.058178] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[25381.041891] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[25703.584628] PM: suspend entry (deep)
[25703.955604] Filesystems sync: 0.370 seconds
[25703.961162] Freezing user space processes ... (elapsed 0.008 seconds) done.
[25703.969499] OOM killer disabled.
[25703.969505] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[25703.971485] printk: Suspending console(s) (use no_console_suspend to debug)
[25703.978994] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[25704.259535] Disabling non-boot CPUs ...
[25704.273398] psci: CPU1 killed (polled 0 ms)
[25704.313996] psci: CPU2 killed (polled 4 ms)
[25704.344480] psci: CPU3 killed (polled 0 ms)
[25704.372520] Enabling non-boot CPUs ...
[25704.379742] Detected VIPT I-cache on CPU1
[25704.381238] arch_timer: CPU1: Trapping CNTVCT access
[25704.381715] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[25704.396515] CPU1 is up
[25704.399325] Detected VIPT I-cache on CPU2
[25704.399821] arch_timer: CPU2: Trapping CNTVCT access
[25704.400016] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[25704.408981] CPU2 is up
[25704.411287] Detected VIPT I-cache on CPU3
[25704.411687] arch_timer: CPU3: Trapping CNTVCT access
[25704.411914] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[25704.422473] CPU3 is up
[25704.428766] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[25704.672666] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[25704.764838] OOM killer enabled.
[25704.764909] Restarting tasks ... done.
[25704.860637] PM: suspend exit
[25705.438896] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[25705.445533] Bluetooth: hci0: RTL: chip_type status=0 type=5
[25705.450534] Bluetooth: hci0: RTL: rom_version status=0 version=1
[25705.450762] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[25705.457591] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[25705.489647] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[25705.897851] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[25710.900308] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[25768.699028] PM: suspend entry (deep)
[25769.125650] Filesystems sync: 0.426 seconds
[25769.127952] Freezing user space processes ... (elapsed 0.012 seconds) done.
[25769.140249] OOM killer disabled.
[25769.140261] Freezing remaining freezable tasks ... (elapsed 0.003 seconds) done.
[25769.143659] printk: Suspending console(s) (use no_console_suspend to debug)
[25769.153057] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[25769.446991] Disabling non-boot CPUs ...
[25769.462727] psci: CPU1 killed (polled 4 ms)
[25769.501620] psci: CPU2 killed (polled 4 ms)
[25769.535986] psci: CPU3 killed (polled 0 ms)
[25769.564181] Enabling non-boot CPUs ...
[25769.574639] Detected VIPT I-cache on CPU1
[25769.575596] arch_timer: CPU1: Trapping CNTVCT access
[25769.576072] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[25769.591075] CPU1 is up
[25769.594310] Detected VIPT I-cache on CPU2
[25769.594859] arch_timer: CPU2: Trapping CNTVCT access
[25769.595065] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[25769.604759] CPU2 is up
[25769.607566] Detected VIPT I-cache on CPU3
[25769.608006] arch_timer: CPU3: Trapping CNTVCT access
[25769.608065] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[25769.618852] CPU3 is up
[25769.625341] sunxi-rsb 1f03400.rsb: RSB running at 4000000 Hz
[25769.857112] musb-sunxi 1c19000.usb: sunxi-musb does not have ULPI bus control register
[25769.953056] OOM killer enabled.
[25769.953125] Restarting tasks ... done.
[25769.973675] PM: suspend exit
[25770.634381] Bluetooth: hci0: RTL: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8703
[25770.640324] Bluetooth: hci0: RTL: chip_type status=0 type=5
[25770.647470] Bluetooth: hci0: RTL: rom_version status=0 version=1
[25770.647669] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_fw.bin
[25770.648054] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723cs_xx_config.bin
[25770.673560] Bluetooth: hci0: RTL: cfg_sz 63, total sz 19427
[25771.062103] Bluetooth: hci0: RTL: fw version 0xaa5ca4dc
[25775.652820] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[25808.063820] anx7688 0-0028: BC 1.2 result: SDP
[26199.351639] usb 2-1: USB disconnect, device number 6
[26199.353572] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[26199.353909] option 2-1:1.0: device disconnected
[26199.357590] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[26199.358625] option 2-1:1.1: device disconnected
[26199.363037] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[26199.365609] option 2-1:1.2: device disconnected
[26199.390266] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[26199.391593] option 2-1:1.3: device disconnected
[26199.403021] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[26199.967663] usb 2-1: new high-speed USB device number 7 using ehci-platform
[26200.140591] option 2-1:1.0: GSM modem (1-port) converter detected
[26200.142801] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[26200.144514] option 2-1:1.1: GSM modem (1-port) converter detected
[26200.163948] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[26200.176258] option 2-1:1.2: GSM modem (1-port) converter detected
[26200.179346] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[26200.180882] option 2-1:1.3: GSM modem (1-port) converter detected
[26200.184107] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[26200.197838] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[26200.204308] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[26203.497396] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[26203.497752] option 2-1:1.0: device disconnected
[26203.501216] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[26203.501633] option 2-1:1.1: device disconnected
[26203.527469] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[26203.527790] option 2-1:1.2: device disconnected
[26203.563420] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[26203.564649] option 2-1:1.3: device disconnected
[26203.568612] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[26203.670974] option 2-1:1.0: GSM modem (1-port) converter detected
[26203.677351] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[26203.737459] option 2-1:1.1: GSM modem (1-port) converter detected
[26203.777644] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[26203.779223] option 2-1:1.2: GSM modem (1-port) converter detected
[26203.785078] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[26203.787033] option 2-1:1.3: GSM modem (1-port) converter detected
[26203.792890] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[26203.806874] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[26203.852056] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[26385.055837] anx7688 0-0028: BC 1.2 result: SDP
[26422.681576] anx7688 0-0028: BC 1.2 result: SDP
[33232.325155] usb 2-1: USB disconnect, device number 7
[33232.326357] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[33232.326604] option 2-1:1.0: device disconnected
[33232.328326] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[33232.328533] option 2-1:1.1: device disconnected
[33232.330601] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[33232.330782] option 2-1:1.2: device disconnected
[33232.332755] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[33232.332985] option 2-1:1.3: device disconnected
[33232.335055] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[33232.760076] usb 2-1: new high-speed USB device number 8 using ehci-platform
[33232.930673] option 2-1:1.0: GSM modem (1-port) converter detected
[33232.934978] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[33232.936035] option 2-1:1.1: GSM modem (1-port) converter detected
[33232.942233] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[33232.944469] option 2-1:1.2: GSM modem (1-port) converter detected
[33232.950707] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[33232.953116] option 2-1:1.3: GSM modem (1-port) converter detected
[33232.957534] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[33232.969264] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[33232.971535] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[33236.248754] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[33236.248895] option 2-1:1.0: device disconnected
[33236.250012] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[33236.250170] option 2-1:1.1: device disconnected
[33236.268470] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[33236.268614] option 2-1:1.2: device disconnected
[33236.289733] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[33236.289864] option 2-1:1.3: device disconnected
[33236.293371] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[33236.356854] option 2-1:1.0: GSM modem (1-port) converter detected
[33236.359467] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[33236.375599] option 2-1:1.1: GSM modem (1-port) converter detected
[33236.376823] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[33236.377787] option 2-1:1.2: GSM modem (1-port) converter detected
[33236.378588] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[33236.379414] option 2-1:1.3: GSM modem (1-port) converter detected
[33236.380078] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[33236.390664] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[33236.392096] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[49985.323115] usb 2-1: USB disconnect, device number 8
[49985.325118] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[49985.325472] option 2-1:1.0: device disconnected
[49985.331880] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[49985.332266] option 2-1:1.1: device disconnected
[49985.335106] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[49985.335523] option 2-1:1.2: device disconnected
[49985.346744] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[49985.347067] option 2-1:1.3: device disconnected
[49985.351595] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[49985.730590] usb 2-1: new high-speed USB device number 9 using ehci-platform
[49985.905044] option 2-1:1.0: GSM modem (1-port) converter detected
[49985.911709] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[49985.915057] option 2-1:1.1: GSM modem (1-port) converter detected
[49985.928660] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[49985.931651] option 2-1:1.2: GSM modem (1-port) converter detected
[49985.947628] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[49985.964368] option 2-1:1.3: GSM modem (1-port) converter detected
[49985.968381] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[49985.979088] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[49986.003337] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[49989.230210] option1 ttyUSB0: GSM modem (1-port) converter now disconnected from ttyUSB0
[49989.231108] option 2-1:1.0: device disconnected
[49989.245692] option1 ttyUSB1: GSM modem (1-port) converter now disconnected from ttyUSB1
[49989.246103] option 2-1:1.1: device disconnected
[49989.261881] option1 ttyUSB2: GSM modem (1-port) converter now disconnected from ttyUSB2
[49989.262888] option 2-1:1.2: device disconnected
[49989.317732] option1 ttyUSB3: GSM modem (1-port) converter now disconnected from ttyUSB3
[49989.318151] option 2-1:1.3: device disconnected
[49989.336246] qmi_wwan 2-1:1.4 wwan0: unregister 'qmi_wwan' usb-1c1b000.usb-1, WWAN/QMI device
[49989.468218] option 2-1:1.0: GSM modem (1-port) converter detected
[49989.499981] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[49989.501348] option 2-1:1.1: GSM modem (1-port) converter detected
[49989.504175] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
[49989.507132] option 2-1:1.2: GSM modem (1-port) converter detected
[49989.512367] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2
[49989.521475] option 2-1:1.3: GSM modem (1-port) converter detected
[49989.609548] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3
[49989.633023] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device
[49989.641236] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-1c1b000.usb-1, WWAN/QMI device, 56:36:4f:ef:ad:ba
[51822.281606] anx7688 0-0028: BC 1.2 result: SDP
[52128.689366] anx7688 0-0028: BC 1.2 result: SDP

Here is the contents of /proc/cmdline;
loglevel=4 console=tty0 console=ttyS0,115200 earlycon=uart,mmio32,0x01c28000 consoleblank=0 boot=PARTUUID=ed58b28e-01 root=PARTUUID=ed58b28e-02 rw rootwait quiet audit=0 bootsplash.bootfile=bootsplash-themes/manjaro/bootsplash cpuilde.off=1

So just to add to the information. I just took a rather large update to manjaro which overwrote crust and a bunch of other programs (turning debug off but did not seem to turn cpuidle off). I decided to let it ride for a bit and within an hour suspend was jammed up but with debug off so obviously no use-able crash data. Once I recmompiled crust like described above, no more suspend issue except the one i described that sounds like it was not a crust issue. The other interseting piece of information is I actually forgot a step when I recompiled so I did the master branch changes but forgot the debug changes and that sent me back into suspend lock out intially.

It seems debug is the key to this, So your original estimation of an extra bit of time to write to the log preventing this issue from happeneing is the most likely answer.

Let me know what you think.

Thanks again for all the help.

@smaeul
Copy link
Member

smaeul commented Mar 29, 2022

cpuilde.off=1

The typo here explains why you were still seeing 0503 after a reboot.

It seems debug is the key to this, So your original estimation of an extra bit of time to write to the log preventing this issue from happening is the most likely answer.

Let me know what you think.

I will try to figure out where adding delay makes a difference. I don't know how long this will take.

@kmsgli
Copy link
Author

kmsgli commented Mar 29, 2022

Well that is embarrassing.

After re-running the /boot/boot.txt bit without the typo and restarting, then letting the phone suspend and wake I get this;

0000000 0000 0000 0000 0000 0000 0000 0519 0000
0000010 0000 0000 0000 0000 0000 0000 0000 0000
*
0000040

Seems my typo slowed down this progress. Sorry about that.

@kmsgli
Copy link
Author

kmsgli commented Apr 2, 2022

Finally had a suspend lockup here was the output after reboot;

0000000 0000 0000 0000 0000 0000 0000 0519 0000
0000010 0000 0000 0000 0000 0000 0000 0000 0000
*
0000040

Same as above? Maybe I still have something wrong?

@kmsgli kmsgli closed this as completed Apr 2, 2022
@smaeul
Copy link
Member

smaeul commented Apr 2, 2022

You probably have everything correct. That code means Crust completed all of its resume steps and turned the ARM CPU back on. So Crust itself is not hanging. But if there is a bug in how Crust restores the hardware state, that could prevent Linux from running correctly after the resume.

I think you've given me all of the data that you can at this point, so thank you. Like I said, I will have to do some more digging in to what is going wrong.

@smaeul smaeul reopened this Apr 2, 2022
@kmsgli kmsgli closed this as completed Apr 3, 2022
@kmsgli
Copy link
Author

kmsgli commented Apr 3, 2022

Thanks for all the help, it is certainly better with debug on as it only happens once or twice a week now as opposed to upwards of a few times a day. Let me know if you need any other testing done.

@kmsgli kmsgli reopened this Apr 3, 2022
@XaviDCR92
Copy link

As mentioned here, I am having the same issue as described above, also a few times a day.

The phone crashes when entering suspend and thus is unable to wake up, even if the power button is pressed. Thanks to this script, typically the phone would sleep for a specific amount of time and then wake up, as shown below:

Apr 08 15:42:26 danctnix sleepwalk[2955]: Sleeping for 90s
Apr 08 15:42:26 danctnix kernel: PM: suspend entry (deep)
Apr 08 15:43:57 danctnix kernel: Filesystems sync: 0.054 seconds
Apr 08 15:43:57 danctnix kernel: Freezing user space processes ... (elapsed 0.018 seconds) done.

However, sometimes it cannot wake up and thus must be force-restarted. For example, as shown below, the phone crashed at Apr 08 14:48:37 and did not report anything else on journalctl until rebooted.

Apr 08 14:48:37 danctnix sleepwalk[2977]: Sleeping for 90s
Apr 08 14:48:37 danctnix kernel: PM: suspend entry (deep)
-- Boot 8657034898c54b2d83e3c0b14e715531 --
Apr 08 15:37:09 danctnix kernel: Booting Linux on physical CPU 0x0000000000 [0x410fd034]

@kmsgli
Copy link
Author

kmsgli commented Apr 10, 2022

Have you tried recompiling crust using the debug flag as I posted above? That has cut down the amount this happens to nearly nothing.

@XaviDCR92
Copy link

I have tried to clone the repository and run makepkg -si on it, although pacman is unable to find the following packages:

error: target not found: or1k-elf-gcc
error: target not found: or1k-elf-binutils

I can see a x86_64 version of such packages, though. Am I then supposed to build crust on a x86_64 computer? Or from a PinePhone?

@kmsgli
Copy link
Author

kmsgli commented Apr 15, 2022

@XaviDCR92
I think that issue is because you do not have the devel package installed, I could be wrong but try running this first;

sudo pacman -S base-devel

That gives you those tools that are required to run makepkg

@kmsgli
Copy link
Author

kmsgli commented Apr 17, 2022

So this problem has come back up. I just took a large update and uboot was updated. I followed these instructions and rebuilt the package as with the update suspend is hanging frequently again. Is this because the github package has updated and these instructions need adjustment?

How can I get back to how it was before the update?

I tried downgrading to this version in my cache;
uboot-pinephone-2022.04rc4-1

but I am still seeing this as the hexdump output:

0000000 0000 0000 0000 0000 0000 0000 0519 0000
0000010 0000 0000 0000 0000 0000 0000 0000 0000
*
0000040


Maybe some other package that was updated is causing this? It is freezing every third suspend. Making the phone nearly unusable with suspend at this point.

Thanks

@XaviDCR92
Copy link

@XaviDCR92 I think that issue is because you do not have the devel package installed, I could be wrong but try running this first;

sudo pacman -S base-devel

That gives you those tools that are required to run makepkg

base-devel was already installed on the system, so it should not be related to this.

$ makepkg -si                                                                         
==> Making package: uboot-pinephone 2022.04-1 (Mon 18 Apr 2022 10:54:51 AM CEST)
==> Checking runtime dependencies...         
==> Checking buildtime dependencies...                  
==> Installing missing dependencies...         
[sudo] password for alarm:
error: target not found: or1k-elf-gcc
error: target not found: or1k-elf-binutils
==> ERROR: 'pacman' failed to install missing dependencies.
==> Missing dependencies:
  -> swig
  -> dtc
  -> arm-none-eabi-gcc
  -> or1k-elf-gcc
  -> or1k-elf-binutils
==> ERROR: Could not resolve all dependencies.

As I stated above, it looks like there are some missing packages. Whereas the packages below are in fact available:

$ pacman -Ss swig
extra/swig 4.0.2-5
    Generate scripting interfaces to C/C++ code
$ pacman -Ss dtc
community/dtc 1.6.1-4
    Device Tree Compiler
$ pacman -Ss arm-none-eabi-gcc
danctnix/arm-none-eabi-gcc 11.2.0-1
    The GNU Compiler Collection - cross compiler for ARM EABI (bare-metal) target

All of the commands below return nothing:

$ pacman -Ss or1k-elf-gcc
$ pacman -Ss or1k-elf-binutils
$ pacman -Ss or1k-elf

It looks like an aarch64 version of the or1k-elf-* packages is not available.

@kmsgli
Copy link
Author

kmsgli commented Apr 18, 2022

@XaviDCR92 my apologies I thought maybe you did not have the devel packages installed, I was mistaken.

Those packages you are missing are not installed on my system and my u-boot works so something else must be going on.

I just resolved my new suspend issues from updating by restoring to a old dd image of my system from just before i built u-boot from the PKGBUILD described in this thread.

uboot-pinephone 2022.04-1 which is what you are trying to install gave me massive issues. I can not tell if it was because of uboot-pinephone 2022.04-1 or because of other packages that updated around it.

my current version that was built but not installed just prior to taking my dd image when this thread started is uboot-pinephone 2022.04rc3-2, Installing that on the old dd iimage without updating my system has returned my phone to how it was which is nearly working perfect. Maybe try building that package and do not update the system if you have not already done sp.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants