BeagleBone Enhanced Powered USB Hub Intermittently Works

104 views
Skip to first unread message

Matthew Mummert

unread,
Dec 11, 2017, 6:24:44 PM12/11/17
to BeagleBoard
root@beaglebone:~# uname -r
4.4.91-ti-r133

I've recently migrated to Debian 9.2 kernel 4.4 from Debian 8.2 kernel 4.1.

*This was absolutely not an issue with kernel 4.1*

So, we have a custom, cascade *powered* USB hub with four 4-port USB hub chips combining into a single 4-port USB hub chip. About 1/5 of the time on boot, some of our USB devices are not recognized. Below is the dmesg output. One interesting part of the dmesg output is the following line.

[    9.582601] usb 1-1.1.1-port2: Cannot enable. Maybe the USB cable is bad?

This has to be a software bug, because loading the same BeagleBone enhanced with the old Debian 8.2 image with kernel 4.1 does not have this problem at all. It is possible to fix this problem by "resetting" the USB hub associated with the unrecognized device by running the following small C program on the USB bus that Linux assigned that USB hub chip. However, is there a way to fix the problem with the USB devices not being recognized in the first place? Is there something we're doing wrong? Manually searching for the unrecognized USB devices on every boot, and running that program on the associated USB hub chip is not going to work long-term. Any help would be appreciated.

/* usbreset -- send a USB port reset to a USB device */

#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/ioctl.h>

#include <linux/usbdevice_fs.h>


int main(int argc, char **argv)
{
    char filename[128];
    int fd, rc;

    if (argc != 2) {
        fprintf(stderr, "Usage: usbreset device-filename\n");
        return 1;
    }
    snprintf(filename, 127, "/dev/bus/usb/001/%s", argv[1]);

    fd = open(filename, O_WRONLY);
    if (fd < 0) {
        perror("Error opening output file");
        return 1;
    }
    printf("Resetting USB device %s\n", filename);
    rc = ioctl(fd, USBDEVFS_RESET, 0);
    if (rc < 0) {
        perror("Error in ioctl");
        return 1;
    }
    printf("Reset successful\n");

    close(fd);
    return 0;
}


dmesg output:

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.91-ti-r133 (root@b7-am57xx-beagle-x15-2gb) (gcc version 6.3.0 20170516 (Debian 6.3.0-18) ) #1 SMP Tue Oct 10 05:18:08 UTC 2017
[    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine model: SanCloud BeagleBone Enhanced
[    0.000000] cma: Reserved 48 MiB at 0xbc800000
[    0.000000] Memory policy: Data cache writeback
[    0.000000] On node 0 totalpages: 261632
[    0.000000] free_area_init_node: node 0, pgdat c10d8f80, node_mem_map ef6f9000
[    0.000000]   Normal zone: 1728 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 196608 pages, LIFO batch:31
[    0.000000]   HighMem zone: 65024 pages, LIFO batch:15
[    0.000000] CPU: All CPU(s) started in SVC mode.
[    0.000000] AM335X ES2.1 (sgx neon )
[    0.000000] PERCPU: Embedded 13 pages/cpu @ef6c1000 s24268 r8192 d20788 u53248
[    0.000000] pcpu-alloc: s24268 r8192 d20788 u53248 alloc=13*4096
[    0.000000] pcpu-alloc: [0] 0
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 259904
[    0.000000] Kernel command line: console=ttyO0,115200n8 bone_capemgr.enable_partno=cape-universala root=/dev/mmcblk1p1 ro rootfstype=ext4 rootwait coherent_pool=1M quiet
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Memory: 962692K/1046528K available (11720K kernel code, 948K rwdata, 3904K rodata, 756K init, 854K bss, 34684K reserved, 49152K cma-reserved, 210944K highmem)
[    0.000000] Virtual kernel memory layout:
                   vector  : 0xffff0000 - 0xffff1000   (   4 kB)
                   fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
                   vmalloc : 0xf0800000 - 0xff800000   ( 240 MB)
                   lowmem  : 0xc0000000 - 0xf0000000   ( 768 MB)
                   pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
                   modules : 0xbf000000 - 0xbfe00000   (  14 MB)
                     .text : 0xc0008000 - 0xc0f4a584   (15626 kB)
                     .init : 0xc0f4b000 - 0xc1008000   ( 756 kB)
                     .data : 0xc1008000 - 0xc10f5108   ( 949 kB)
                      .bss : 0xc10f8000 - 0xc11cd820   ( 855 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 32.
[    0.000000]  RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=32, nr_cpu_ids=1
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
[    0.000000] OMAP clockevent source: timer2 at 24000000 Hz
[    0.000016] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns
[    0.000039] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
[    0.000053] OMAP clocksource: timer1 at 24000000 Hz
[    0.000873] clocksource_probe: no matching clocksources found
[    0.001084] Console: colour dummy device 80x30
[    0.001113] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
[    0.001121] This ensures that you still see kernel messages. Please
[    0.001128] update your kernel commandline.
[    0.001150] Calibrating delay loop... 995.32 BogoMIPS (lpj=1990656)
[    0.046777] pid_max: default: 32768 minimum: 301
[    0.046926] Security Framework initialized
[    0.046941] Yama: becoming mindful.
[    0.046979] AppArmor: AppArmor disabled by boot time parameter
[    0.047152] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.047167] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.048040] Initializing cgroup subsys io
[    0.048072] Initializing cgroup subsys memory
[    0.048118] Initializing cgroup subsys devices
[    0.048138] Initializing cgroup subsys freezer
[    0.048154] Initializing cgroup subsys net_cls
[    0.048168] Initializing cgroup subsys perf_event
[    0.048183] Initializing cgroup subsys net_prio
[    0.048210] Initializing cgroup subsys pids
[    0.048265] CPU: Testing write buffer coherency: ok
[    0.048324] ftrace: allocating 35977 entries in 106 pages
[    0.150444] CPU0: thread -1, cpu 0, socket -1, mpidr 0
[    0.150579] Setting up static identity map for 0x80008280 - 0x800082e0
[    0.155047] Brought up 1 CPUs
[    0.155075] SMP: Total of 1 processors activated (995.32 BogoMIPS).
[    0.155083] CPU: All CPU(s) started in SVC mode.
[    0.156656] devtmpfs: initialized
[    0.174683] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
[    0.194803] omap_hwmod: debugss: _wait_target_disable failed
[    0.236178] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.236212] futex hash table entries: 256 (order: 2, 16384 bytes)
[    0.240330] xor: measuring software checksum speed
[    0.278779]    arm4regs  :  1219.000 MB/sec
[    0.318780]    8regs     :  1092.000 MB/sec
[    0.358771]    32regs    :  1089.000 MB/sec
[    0.398771]    neon      :  1747.000 MB/sec
[    0.398780] xor: using function: neon (1747.000 MB/sec)
[    0.398913] pinctrl core: initialized pinctrl subsystem
[    0.400450] NET: Registered protocol family 16
[    0.404190] DMA: preallocated 1024 KiB pool for atomic coherent allocations
[    0.405117] cpuidle: using governor ladder
[    0.405137] cpuidle: using governor menu
[    0.411441] OMAP GPIO hardware version 0.1
[    0.423637] No ATAGs?
[    0.423675] hw-breakpoint: debug architecture 0x4 unsupported.
[    0.424206] omap4_sram_init:Unable to allocate sram needed to handle errata I688
[    0.424221] omap4_sram_init:Unable to get sram pool needed to handle errata I688
[    0.502911] raid6: int32x1  gen()   258 MB/s
[    0.570820] raid6: int32x1  xor()   227 MB/s
[    0.638933] raid6: int32x2  gen()   323 MB/s
[    0.706780] raid6: int32x2  xor()   283 MB/s
[    0.774904] raid6: int32x4  gen()   329 MB/s
[    0.842840] raid6: int32x4  xor()   267 MB/s
[    0.910873] raid6: int32x8  gen()   300 MB/s
[    0.978900] raid6: int32x8  xor()   234 MB/s
[    1.046793] raid6: neonx1   gen()  1456 MB/s
[    1.114790] raid6: neonx1   xor()   845 MB/s
[    1.182800] raid6: neonx2   gen()  1923 MB/s
[    1.250771] raid6: neonx2   xor()  1203 MB/s
[    1.318785] raid6: neonx4   gen()  1085 MB/s
[    1.386776] raid6: neonx4   xor()   792 MB/s
[    1.454783] raid6: neonx8   gen()  1036 MB/s
[    1.522779] raid6: neonx8   xor()   756 MB/s
[    1.522788] raid6: using algorithm neonx2 gen() 1923 MB/s
[    1.522796] raid6: .... xor() 1203 MB/s, rmw enabled
[    1.522803] raid6: using intx1 recovery algorithm
[    1.532220] edma 49000000.edma: TI EDMA DMA engine driver
[    1.535357] vgaarb: loaded
[    1.535997] SCSI subsystem initialized
[    1.536388] libata version 3.00 loaded.
[    1.536755] usbcore: registered new interface driver usbfs
[    1.536833] usbcore: registered new interface driver hub
[    1.536943] usbcore: registered new device driver usb
[    1.537574] omap_i2c 44e0b000.i2c: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_i2c0_pins, deferring probe
[    1.537627] omap_i2c 4819c000.i2c: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_i2c2_pins, deferring probe
[    1.537745] media: Linux media interface: v0.10
[    1.537811] Linux video capture interface: v2.00
[    1.537930] pps_core: LinuxPPS API ver. 1 registered
[    1.537939] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giom...@linux.it>
[    1.537975] PTP clock support registered
[    1.538992] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400
[    1.540515] NetLabel: Initializing
[    1.540531] NetLabel:  domain hash size = 128
[    1.540537] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.540600] NetLabel:  unlabeled traffic allowed by default
[    1.540992] clocksource: Switched to clocksource timer1
[    1.653852] NET: Registered protocol family 2
[    1.654737] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    1.654818] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    1.654927] TCP: Hash tables configured (established 8192 bind 8192)
[    1.655027] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    1.655059] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    1.655436] NET: Registered protocol family 1
[    1.656042] RPC: Registered named UNIX socket transport module.
[    1.656059] RPC: Registered udp transport module.
[    1.656066] RPC: Registered tcp transport module.
[    1.656072] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.656110] PCI: CLS 0 bytes, default 64
[    1.656755] Unpacking initramfs...
[    2.067982] Freeing initrd memory: 5716K
[    2.068640] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available
[    2.071585] audit: initializing netlink subsys (disabled)
[    2.071689] audit: type=2000 audit(2.004:1): initialized
[    2.082125] zbud: loaded
[    2.082877] VFS: Disk quotas dquot_6.6.0
[    2.083136] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    2.085918] NFS: Registering the id_resolver key type
[    2.086001] Key type id_resolver registered
[    2.086010] Key type id_legacy registered
[    2.086045] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    2.086441] fuse init (API version 7.23)
[    2.087092] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[    2.096113] bounce: pool size: 64 pages
[    2.096244] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    2.096497] io scheduler noop registered
[    2.096516] io scheduler deadline registered
[    2.096581] io scheduler cfq registered (default)
[    2.098225] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568
[    2.100493] wkup_m3_ipc 44e11324.wkup_m3_ipc: could not get rproc handle
[    2.102059] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled
[    2.105513] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 158, base_baud = 3000000) is a 8250
[    2.118914] console [ttyS0] enabled
[    2.121384] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20
[    2.121664] [drm] Initialized drm 1.1.0 20060810
[    2.126660] CAN device driver interface
[    2.177014] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6
[    2.177037] davinci_mdio 4a101000.mdio: detected phy mask fffffffe
[    2.188322] libphy: 4a101000.mdio: probed
[    2.188359] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver Atheros 8035 ethernet
[    2.189448] cpsw 4a100000.ethernet: Detected MACID = 60:64:05:26:12:f1
[    2.189594] cpsw 4a100000.ethernet: cpts: overflow check period 2125
[    2.191665] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.191738] ehci-pci: EHCI PCI platform driver
[    2.191813] ehci-platform: EHCI generic platform driver
[    2.192021] ehci-omap: OMAP-EHCI Host Controller driver
[    2.192514] usbcore: registered new interface driver usb-storage
[    2.194898] 47401300.usb-phy supply vcc not found, using dummy regulator
[    2.197720] musb-hdrc: ConfigData=0xde (UTMI-8, dyn FIFOs, bulk combine, bulk split, HB-ISO Rx, HB-ISO Tx, SoftConn)
[    2.197743] musb-hdrc: MHDRC RTL version 2.0
[    2.197752] musb-hdrc: setup fifo_mode 4
[    2.197773] musb-hdrc: 28/31 max ep, 16384/16384 memory
[    2.199425] 47401b00.usb-phy supply vcc not found, using dummy regulator
[    2.201895] musb-hdrc: ConfigData=0xde (UTMI-8, dyn FIFOs, bulk combine, bulk split, HB-ISO Rx, HB-ISO Tx, SoftConn)
[    2.201915] musb-hdrc: MHDRC RTL version 2.0
[    2.201924] musb-hdrc: setup fifo_mode 4
[    2.201940] musb-hdrc: 28/31 max ep, 16384/16384 memory
[    2.202093] musb-hdrc musb-hdrc.1.auto: MUSB HDRC host driver
[    2.202130] musb-hdrc musb-hdrc.1.auto: new USB bus registered, assigned bus number 1
[    2.202424] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.202440] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.202450] usb usb1: Product: MUSB HDRC host driver
[    2.202459] usb usb1: Manufacturer: Linux 4.4.91-ti-r133 musb-hcd
[    2.202468] usb usb1: SerialNumber: musb-hdrc.1.auto
[    2.203357] hub 1-0:1.0: USB hub found
[    2.203413] hub 1-0:1.0: 1 port detected
[    2.213484] mousedev: PS/2 mouse device common for all mice
[    2.217220] omap_rtc 44e3e000.rtc: already running
[    2.217794] omap_rtc 44e3e000.rtc: rtc core: registered 44e3e000.rtc as rtc0
[    2.219263] i2c /dev entries driver
[    2.221128] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
[    2.221604] cpuidle: enable-method property 'ti,am3352' found operations
[    2.222373] omap_hsmmc 48060000.mmc: Got CD GPIO
[    2.286790] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2
[    2.288636] omap-sham 53100000.sham: hw accel on OMAP rev 4.3
[    2.290329] hidraw: raw HID events driver (C) Jiri Kosina
[    2.291058] usbcore: registered new interface driver usbhid
[    2.291071] usbhid: USB HID core driver
[    2.291839]  remoteproc0: wkup_m3 is available
[    2.291855]  remoteproc0: Note: remoteproc is still under development and considered experimental.
[    2.291863]  remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
[    2.293979] ti_am3359-tscadc 44e0d000.tscadc: chan 0 step_avg truncating to 16
[    2.294000] ti_am3359-tscadc 44e0d000.tscadc: chan 1 step_avg truncating to 16
[    2.294011] ti_am3359-tscadc 44e0d000.tscadc: chan 2 step_avg truncating to 16
[    2.294020] ti_am3359-tscadc 44e0d000.tscadc: chan 3 step_avg truncating to 16
[    2.294030] ti_am3359-tscadc 44e0d000.tscadc: chan 4 step_avg truncating to 16
[    2.294040] ti_am3359-tscadc 44e0d000.tscadc: chan 5 step_avg truncating to 16
[    2.294050] ti_am3359-tscadc 44e0d000.tscadc: chan 6 step_avg truncating to 16
[    2.296509] NET: Registered protocol family 10
[    2.298389] mip6: Mobile IPv6
[    2.298424] NET: Registered protocol family 17
[    2.298454] can: controller area network core (rev 20120528 abi 9)
[    2.298529] NET: Registered protocol family 29
[    2.298657] Key type dns_resolver registered
[    2.298674] mpls_gso: MPLS GSO support
[    2.298949] omap_voltage_late_init: Voltage driver support not added
[    2.307068] PM: Cannot get wkup_m3_ipc handle
[    2.311866] ThumbEE CPU extension supported.
[    2.311907] Registering SWP/SWPB emulation handler
[    2.313369] registered taskstats version 1
[    2.313613] zswap: loaded using pool lzo/zbud
[    2.318177] Btrfs loaded
[    2.322672] mmc0: host does not support reading read-only switch, assuming write-enable
[    2.325604] mmc0: new high speed SDXC card at address aaaa
[    2.329286] mmcblk0: mmc0:aaaa SL128 119 GiB
[    2.331996]  mmcblk0: p1
[    2.360004] Key type encrypted registered
[    2.363571] input: tps65217_pwr_but as /devices/platform/ocp/44e0b000.i2c/i2c-0/0-0024/input/input0
[    2.379229] mmc1: MAN_BKOPS_EN bit is not set
[    2.383155] mmc1: new high speed MMC card at address 0001
[    2.384239] mmcblk1: mmc1:0001 MMC08G 7.31 GiB
[    2.385355] mmcblk1boot0: mmc1:0001 MMC08G partition 1 2.00 MiB
[    2.386174] mmcblk1boot1: mmc1:0001 MMC08G partition 2 2.00 MiB
[    2.389596] tps65217 0-0024: TPS65217 ID 0xe version 1.2
[    2.390230] at24 0-0050: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    2.390490]  mmcblk1: p1
[    2.392956] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz
[    2.395403] at24 2-0054: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    2.395826] at24 2-0055: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    2.396199] at24 2-0056: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    2.396585] at24 2-0057: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    2.396651] omap_i2c 4819c000.i2c: bus 2 rev0.11 at 100 kHz
[    2.398168]  remoteproc0: powering up wkup_m3
[    2.398238]  remoteproc0: Booting fw image am335x-pm-firmware.elf, size 217148
[    2.398497]  remoteproc0: remote processor wkup_m3 is now up
[    2.398524] wkup_m3_ipc 44e11324.wkup_m3_ipc: CM3 Firmware Version = 0x192
[    2.404237] bone_capemgr bone_capemgr: Baseboard: 'A335BNLT,SE0A,3917BBE2612F'
[    2.404269] bone_capemgr bone_capemgr: compatible-baseboard=ti,beaglebone-black - #slots=4
[    2.441005] bone_capemgr bone_capemgr: slot #0: No cape found
[    2.481014] bone_capemgr bone_capemgr: slot #1: No cape found
[    2.520999] bone_capemgr bone_capemgr: slot #2: No cape found
[    2.560999] bone_capemgr bone_capemgr: slot #3: No cape found
[    2.561050] bone_capemgr bone_capemgr: enabled_partno PARTNO 'cape-universala' VER 'N/A' PR '0'
[    2.561063] bone_capemgr bone_capemgr: slot #4: override
[    2.561078] bone_capemgr bone_capemgr: Using override eeprom data at slot 4
[    2.561093] bone_capemgr bone_capemgr: slot #4: 'Override Board Name,00A0,Override Manuf,cape-universala'
[    2.561451] bone_capemgr bone_capemgr: initialized OK.
[    2.563671] PM: bootloader does not support rtc-only!
[    2.564660] omap_rtc 44e3e000.rtc: setting system clock to 2017-12-11 23:06:39 UTC (1513033599)
[    2.564692] of_cfs_init
[    2.564823] of_cfs_init: OK
[    2.576292] PM: Hibernation image not present or could not be loaded.
[    2.577896] Freeing unused kernel memory: 756K
[    2.595972] usb 1-1: new high-speed USB device number 2 using musb-hdrc
[    2.721529] usb 1-1: New USB device found, idVendor=0424, idProduct=2514
[    2.721555] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.722537] hub 1-1:1.0: USB hub found
[    2.722623] hub 1-1:1.0: 4 ports detected
[    2.811319] device-tree: Duplicate name in ocp, renamed to "pruss@4a300000#1"
[    2.820323] pinctrl-single 44e10800.pinmux: pin 44e10818.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_03_pinmux
[    2.832042] pinctrl-single 44e10800.pinmux: pin-6 (ocp:P8_03_pinmux) status -22
[    2.839423] pinctrl-single 44e10800.pinmux: could not request pin 6 (44e10818.0) from group pinmux_P8_03_default_pin  on device pinctrl-single
[    2.852281] bone-pinmux-helper ocp:P8_03_pinmux: Error applying setting, reverse things back
[    2.895891] random: systemd-udevd: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    2.896582] random: systemd-udevd: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    2.896703] random: systemd-udevd: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    2.911345] pinctrl-single 44e10800.pinmux: pin 44e10818.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_03_pinmux
[    2.923035] pinctrl-single 44e10800.pinmux: pin-6 (ocp:P8_03_pinmux) status -22
[    2.930407] pinctrl-single 44e10800.pinmux: could not request pin 6 (44e10818.0) from group pinmux_P8_03_default_pin  on device pinctrl-single
[    2.943263] bone-pinmux-helper ocp:P8_03_pinmux: Error applying setting, reverse things back
[    2.951757] bone-pinmux-helper ocp:P8_03_pinmux: Failed to select default state
[    2.964891] random: udevadm: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    2.965545] random: udevadm: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    2.965737] random: udevadm: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    2.966475] random: udevadm: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    2.967045] random: udevadm: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    2.967518] random: udevadm: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    2.968060] random: udevadm: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
[    3.009230] ------------[ cut here ]------------
[    3.009285] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    3.009294] Modules linked in: at803x
[    3.009319] CPU: 0 PID: 103 Comm: capemgr-loader- Not tainted 4.4.91-ti-r133 #1
[    3.009327] Hardware name: Generic AM33XX (Flattened Device Tree)
[    3.009373] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    3.009398] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    3.009418] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    3.009433] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    3.009448] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    3.009466] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    3.009482] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    3.009507] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    3.009522] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    3.009538] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    3.009553] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    3.009568] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    3.009582] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    3.009596] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    3.009622] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    3.009640] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    3.009656] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    3.009683] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    3.009701] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    3.009714] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    3.009729] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    3.009743] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    3.009762] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    3.009777] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    3.009791] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    3.009805] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    3.009819] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    3.009840] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    3.009850] ---[ end trace 92a8e786922ee994 ]---
[    3.009889] bone-pinmux-helper: probe of ocp:P8_03_pinmux failed with error -22
[    3.016874] pinctrl-single 44e10800.pinmux: pin 44e1081c.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_04_pinmux
[    3.028575] pinctrl-single 44e10800.pinmux: pin-7 (ocp:P8_04_pinmux) status -22
[    3.035964] pinctrl-single 44e10800.pinmux: could not request pin 7 (44e1081c.0) from group pinmux_P8_04_default_pin  on device pinctrl-single
[    3.048823] bone-pinmux-helper ocp:P8_04_pinmux: Error applying setting, reverse things back
[    3.057466] usb 1-1.1: new high-speed USB device number 3 using musb-hdrc
[    3.101449] pinctrl-single 44e10800.pinmux: pin 44e1081c.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_04_pinmux
[    3.113087] pinctrl-single 44e10800.pinmux: pin-7 (ocp:P8_04_pinmux) status -22
[    3.120457] pinctrl-single 44e10800.pinmux: could not request pin 7 (44e1081c.0) from group pinmux_P8_04_default_pin  on device pinctrl-single
[    3.133324] bone-pinmux-helper ocp:P8_04_pinmux: Error applying setting, reverse things back
[    3.141819] bone-pinmux-helper ocp:P8_04_pinmux: Failed to select default state
[    3.166737] usb 1-1.1: New USB device found, idVendor=04b4, idProduct=6572
[    3.166763] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.166774] usb 1-1.1: Product: USB2.0 Hub
[    3.169624] hub 1-1.1:1.0: USB hub found
[    3.171498] hub 1-1.1:1.0: 4 ports detected
[    3.221222] ------------[ cut here ]------------
[    3.221277] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    3.221286] Modules linked in: at803x
[    3.221313] CPU: 0 PID: 103 Comm: capemgr-loader- Tainted: G        W       4.4.91-ti-r133 #1
[    3.221321] Hardware name: Generic AM33XX (Flattened Device Tree)
[    3.221364] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    3.221389] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    3.221409] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    3.221424] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    3.221437] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    3.221456] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    3.221471] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    3.221496] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    3.221512] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    3.221528] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    3.221544] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    3.221559] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    3.221573] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    3.221587] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    3.221615] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    3.221633] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    3.221649] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    3.221677] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    3.221693] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    3.221707] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    3.221722] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    3.221736] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    3.221756] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    3.221771] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    3.221785] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    3.221798] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    3.221813] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    3.221834] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    3.221844] ---[ end trace 92a8e786922ee995 ]---
[    3.221887] bone-pinmux-helper: probe of ocp:P8_04_pinmux failed with error -22
[    3.228511] pinctrl-single 44e10800.pinmux: pin 44e10808.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_05_pinmux
[    3.240208] pinctrl-single 44e10800.pinmux: pin-2 (ocp:P8_05_pinmux) status -22
[    3.247584] pinctrl-single 44e10800.pinmux: could not request pin 2 (44e10808.0) from group pinmux_P8_05_default_pin  on device pinctrl-single
[    3.260440] bone-pinmux-helper ocp:P8_05_pinmux: Error applying setting, reverse things back
[    3.269110] usb 1-1.4: new high-speed USB device number 4 using musb-hdrc
[    3.313486] pinctrl-single 44e10800.pinmux: pin 44e10808.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_05_pinmux
[    3.325126] pinctrl-single 44e10800.pinmux: pin-2 (ocp:P8_05_pinmux) status -22
[    3.332496] pinctrl-single 44e10800.pinmux: could not request pin 2 (44e10808.0) from group pinmux_P8_05_default_pin  on device pinctrl-single
[    3.345363] bone-pinmux-helper ocp:P8_05_pinmux: Error applying setting, reverse things back
[    3.353858] bone-pinmux-helper ocp:P8_05_pinmux: Failed to select default state
[    3.377975] usb 1-1.4: New USB device found, idVendor=0bda, idProduct=b720
[    3.378000] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.378012] usb 1-1.4: Product: 802.11n WLAN Adapter
[    3.378021] usb 1-1.4: Manufacturer: Realtek
[    3.378031] usb 1-1.4: SerialNumber: 00e04c000001
[    3.449281] usb 1-1.1.1: new high-speed USB device number 5 using musb-hdrc
[    3.449713] ------------[ cut here ]------------
[    3.449754] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    3.449763] Modules linked in: at803x
[    3.449788] CPU: 0 PID: 103 Comm: capemgr-loader- Tainted: G        W       4.4.91-ti-r133 #1
[    3.449797] Hardware name: Generic AM33XX (Flattened Device Tree)
[    3.449838] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    3.449862] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    3.449883] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    3.449898] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    3.449910] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    3.449930] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    3.449945] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    3.449969] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    3.449986] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    3.450002] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    3.450017] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    3.450031] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    3.450045] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    3.450060] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    3.450087] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    3.450104] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    3.450121] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    3.450147] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    3.450164] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    3.450177] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    3.450191] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    3.450206] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    3.450225] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    3.450240] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    3.450254] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    3.450267] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    3.450282] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    3.450303] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    3.450360] ---[ end trace 92a8e786922ee996 ]---
[    3.453256] bone-pinmux-helper: probe of ocp:P8_05_pinmux failed with error -22
[    3.454317] pinctrl-single 44e10800.pinmux: pin 44e1080c.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_06_pinmux
[    3.466000] pinctrl-single 44e10800.pinmux: pin-3 (ocp:P8_06_pinmux) status -22
[    3.473376] pinctrl-single 44e10800.pinmux: could not request pin 3 (44e1080c.0) from group pinmux_P8_06_default_pin  on device pinctrl-single
[    3.486233] bone-pinmux-helper ocp:P8_06_pinmux: Error applying setting, reverse things back
[    3.566809] usb 1-1.1.1: New USB device found, idVendor=04b4, idProduct=6572
[    3.566835] usb 1-1.1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.566846] usb 1-1.1.1: Product: USB2.0 Hub
[    3.568106] hub 1-1.1.1:1.0: USB hub found
[    3.568486] hub 1-1.1.1:1.0: 4 ports detected
[    3.573301] pinctrl-single 44e10800.pinmux: pin 44e1080c.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_06_pinmux
[    3.584918] pinctrl-single 44e10800.pinmux: pin-3 (ocp:P8_06_pinmux) status -22
[    3.592294] pinctrl-single 44e10800.pinmux: could not request pin 3 (44e1080c.0) from group pinmux_P8_06_default_pin  on device pinctrl-single
[    3.605153] bone-pinmux-helper ocp:P8_06_pinmux: Error applying setting, reverse things back
[    3.613646] bone-pinmux-helper ocp:P8_06_pinmux: Failed to select default state
[    3.669979] ------------[ cut here ]------------
[    3.670035] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    3.670044] Modules linked in: at803x
[    3.670070] CPU: 0 PID: 103 Comm: capemgr-loader- Tainted: G        W       4.4.91-ti-r133 #1
[    3.670077] Hardware name: Generic AM33XX (Flattened Device Tree)
[    3.670119] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    3.670144] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    3.670164] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    3.670179] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    3.670192] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    3.670211] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    3.670226] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    3.670250] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    3.670266] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    3.670282] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    3.670297] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    3.670311] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    3.670326] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    3.670340] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    3.670367] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    3.670385] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    3.670401] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    3.670428] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    3.670444] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    3.670457] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    3.670472] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    3.670486] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    3.670505] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    3.670519] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    3.670534] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    3.670547] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    3.670562] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    3.670583] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    3.670610] ---[ end trace 92a8e786922ee997 ]---
[    3.671661] bone-pinmux-helper: probe of ocp:P8_06_pinmux failed with error -22
[    3.677272] usb 1-1.1.2: new high-speed USB device number 6 using musb-hdrc
[    3.702452] pinctrl-single 44e10800.pinmux: pin 44e10884.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_20_pinmux
[    3.714128] pinctrl-single 44e10800.pinmux: pin-33 (ocp:P8_20_pinmux) status -22
[    3.721586] pinctrl-single 44e10800.pinmux: could not request pin 33 (44e10884.0) from group pinmux_P8_20_default_pin  on device pinctrl-single
[    3.734529] bone-pinmux-helper ocp:P8_20_pinmux: Error applying setting, reverse things back
[    3.766776] usb 1-1.1.2: New USB device found, idVendor=04b4, idProduct=6572
[    3.766802] usb 1-1.1.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.766811] usb 1-1.1.2: Product: USB2.0 Hub
[    3.768153] hub 1-1.1.2:1.0: USB hub found
[    3.768527] hub 1-1.1.2:1.0: 4 ports detected
[    3.789853] pinctrl-single 44e10800.pinmux: pin 44e10884.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_20_pinmux
[    3.801504] pinctrl-single 44e10800.pinmux: pin-33 (ocp:P8_20_pinmux) status -22
[    3.808961] pinctrl-single 44e10800.pinmux: could not request pin 33 (44e10884.0) from group pinmux_P8_20_default_pin  on device pinctrl-single
[    3.821918] bone-pinmux-helper ocp:P8_20_pinmux: Error applying setting, reverse things back
[    3.830412] bone-pinmux-helper ocp:P8_20_pinmux: Failed to select default state
[    3.841229] usb 1-1.1.1.1: new full-speed USB device number 7 using musb-hdrc
[    3.889337] ------------[ cut here ]------------
[    3.889396] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    3.889404] Modules linked in: at803x
[    3.889430] CPU: 0 PID: 103 Comm: capemgr-loader- Tainted: G        W       4.4.91-ti-r133 #1
[    3.889438] Hardware name: Generic AM33XX (Flattened Device Tree)
[    3.889479] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    3.889504] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    3.889524] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    3.889539] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    3.889552] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    3.889571] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    3.889587] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    3.889610] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    3.889626] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    3.889642] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    3.889657] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    3.889672] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    3.889686] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    3.889700] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    3.889727] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    3.889745] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    3.889761] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    3.889788] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    3.889804] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    3.889817] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    3.889832] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    3.889846] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    3.889865] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    3.889880] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    3.889894] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    3.889908] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    3.889922] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    3.889944] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    3.889954] ---[ end trace 92a8e786922ee998 ]---
[    3.889997] bone-pinmux-helper: probe of ocp:P8_20_pinmux failed with error -22
[    3.891456] pinctrl-single 44e10800.pinmux: pin 44e10880.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_21_pinmux
[    3.903151] pinctrl-single 44e10800.pinmux: pin-32 (ocp:P8_21_pinmux) status -22
[    3.910617] pinctrl-single 44e10800.pinmux: could not request pin 32 (44e10880.0) from group pinmux_P8_21_default_pin  on device pinctrl-single
[    3.923576] bone-pinmux-helper ocp:P8_21_pinmux: Error applying setting, reverse things back
[    3.977717] pinctrl-single 44e10800.pinmux: pin 44e10880.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_21_pinmux
[    3.989357] pinctrl-single 44e10800.pinmux: pin-32 (ocp:P8_21_pinmux) status -22
[    3.996812] pinctrl-single 44e10800.pinmux: could not request pin 32 (44e10880.0) from group pinmux_P8_21_default_pin  on device pinctrl-single
[    4.009768] bone-pinmux-helper ocp:P8_21_pinmux: Error applying setting, reverse things back
[    4.018265] bone-pinmux-helper ocp:P8_21_pinmux: Failed to select default state
[    4.025778] usb 1-1.1.1.1: new high-speed USB device number 9 using musb-hdrc
[    4.077304] ------------[ cut here ]------------
[    4.077361] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    4.077370] Modules linked in: at803x
[    4.077396] CPU: 0 PID: 103 Comm: capemgr-loader- Tainted: G        W       4.4.91-ti-r133 #1
[    4.077403] Hardware name: Generic AM33XX (Flattened Device Tree)
[    4.077444] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    4.077469] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    4.077489] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    4.077504] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    4.077518] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    4.077537] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    4.077552] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    4.077577] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    4.077592] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    4.077609] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    4.077624] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    4.077638] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    4.077653] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    4.077667] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    4.077694] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    4.077712] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    4.077728] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    4.077754] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    4.077770] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    4.077784] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    4.077798] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    4.077813] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    4.077831] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    4.077846] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    4.077860] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    4.077874] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    4.077889] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    4.077911] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    4.077920] ---[ end trace 92a8e786922ee999 ]---
[    4.077961] bone-pinmux-helper: probe of ocp:P8_21_pinmux failed with error -22
[    4.079268] pinctrl-single 44e10800.pinmux: pin 44e10814.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_22_pinmux
[    4.090960] pinctrl-single 44e10800.pinmux: pin-5 (ocp:P8_22_pinmux) status -22
[    4.098349] pinctrl-single 44e10800.pinmux: could not request pin 5 (44e10814.0) from group pinmux_P8_22_default_pin  on device pinctrl-single
[    4.111207] bone-pinmux-helper ocp:P8_22_pinmux: Error applying setting, reverse things back
[    4.145247] usb 1-1.1.1.1: New USB device found, idVendor=148f, idProduct=7601
[    4.145275] usb 1-1.1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.145286] usb 1-1.1.1.1: Product: 802.11 n WLAN
[    4.145296] usb 1-1.1.1.1: Manufacturer: MediaTek
[    4.145305] usb 1-1.1.1.1: SerialNumber: 1.0
[    4.165775] pinctrl-single 44e10800.pinmux: pin 44e10814.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_22_pinmux
[    4.177422] pinctrl-single 44e10800.pinmux: pin-5 (ocp:P8_22_pinmux) status -22
[    4.184792] pinctrl-single 44e10800.pinmux: could not request pin 5 (44e10814.0) from group pinmux_P8_22_default_pin  on device pinctrl-single
[    4.197650] bone-pinmux-helper ocp:P8_22_pinmux: Error applying setting, reverse things back
[    4.206154] bone-pinmux-helper ocp:P8_22_pinmux: Failed to select default state
[    4.213626] usb 1-1.1.3: new high-speed USB device number 8 using musb-hdrc
[    4.264575] ------------[ cut here ]------------
[    4.264632] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    4.264640] Modules linked in: at803x
[    4.264666] CPU: 0 PID: 103 Comm: capemgr-loader- Tainted: G        W       4.4.91-ti-r133 #1
[    4.264674] Hardware name: Generic AM33XX (Flattened Device Tree)
[    4.264716] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    4.264740] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    4.264760] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    4.264775] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    4.264789] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    4.264808] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    4.264823] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    4.264848] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    4.264864] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    4.264880] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    4.264895] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    4.264910] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    4.264924] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    4.264938] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    4.264965] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    4.264983] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    4.264999] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    4.265026] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    4.265043] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    4.265057] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    4.265072] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    4.265086] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    4.265105] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    4.265120] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    4.265134] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    4.265148] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    4.265163] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    4.265184] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    4.265374] ---[ end trace 92a8e786922ee99a ]---
[    4.265876] bone-pinmux-helper: probe of ocp:P8_22_pinmux failed with error -22
[    4.267238] pinctrl-single 44e10800.pinmux: pin 44e10810.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_23_pinmux
[    4.278938] pinctrl-single 44e10800.pinmux: pin-4 (ocp:P8_23_pinmux) status -22
[    4.286324] pinctrl-single 44e10800.pinmux: could not request pin 4 (44e10810.0) from group pinmux_P8_23_default_pin  on device pinctrl-single
[    4.299192] bone-pinmux-helper ocp:P8_23_pinmux: Error applying setting, reverse things back
[    4.323337] usb 1-1.1.3: New USB device found, idVendor=04b4, idProduct=6572
[    4.323362] usb 1-1.1.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    4.323372] usb 1-1.1.3: Product: USB2.0 Hub
[    4.325294] hub 1-1.1.3:1.0: USB hub found
[    4.325709] hub 1-1.1.3:1.0: 4 ports detected
[    4.363840] pinctrl-single 44e10800.pinmux: pin 44e10810.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_23_pinmux
[    4.375580] pinctrl-single 44e10800.pinmux: pin-4 (ocp:P8_23_pinmux) status -22
[    4.382990] pinctrl-single 44e10800.pinmux: could not request pin 4 (44e10810.0) from group pinmux_P8_23_default_pin  on device pinctrl-single
[    4.395864] bone-pinmux-helper ocp:P8_23_pinmux: Error applying setting, reverse things back
[    4.404358] bone-pinmux-helper ocp:P8_23_pinmux: Failed to select default state
[    4.412098] usb 1-1.1.2.1: new full-speed USB device number 10 using musb-hdrc
[    4.466998] ------------[ cut here ]------------
[    4.467055] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    4.467064] Modules linked in: at803x
[    4.467090] CPU: 0 PID: 103 Comm: capemgr-loader- Tainted: G        W       4.4.91-ti-r133 #1
[    4.467097] Hardware name: Generic AM33XX (Flattened Device Tree)
[    4.467138] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    4.467162] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    4.467182] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    4.467197] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    4.467210] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    4.467230] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    4.467246] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    4.467270] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    4.467286] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    4.467302] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    4.467317] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    4.467332] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    4.467347] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    4.467361] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    4.467388] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    4.467406] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    4.467422] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    4.467448] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    4.467465] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    4.467479] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    4.467493] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    4.467507] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    4.467526] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    4.467541] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    4.467555] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    4.467568] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    4.467583] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    4.467604] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    4.467614] ---[ end trace 92a8e786922ee99b ]---
[    4.467655] bone-pinmux-helper: probe of ocp:P8_23_pinmux failed with error -22
[    4.473273] pinctrl-single 44e10800.pinmux: pin 44e10804.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_24_pinmux
[    4.484897] pinctrl-single 44e10800.pinmux: pin-1 (ocp:P8_24_pinmux) status -22
[    4.492268] pinctrl-single 44e10800.pinmux: could not request pin 1 (44e10804.0) from group pinmux_P8_24_default_pin  on device pinctrl-single
[    4.505125] bone-pinmux-helper ocp:P8_24_pinmux: Error applying setting, reverse things back
[    4.558442] pinctrl-single 44e10800.pinmux: pin 44e10804.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_24_pinmux
[    4.570133] pinctrl-single 44e10800.pinmux: pin-1 (ocp:P8_24_pinmux) status -22
[    4.577526] pinctrl-single 44e10800.pinmux: could not request pin 1 (44e10804.0) from group pinmux_P8_24_default_pin  on device pinctrl-single
[    4.590385] bone-pinmux-helper ocp:P8_24_pinmux: Error applying setting, reverse things back
[    4.598879] bone-pinmux-helper ocp:P8_24_pinmux: Failed to select default state
[    4.663501] ------------[ cut here ]------------
[    4.663561] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    4.663570] Modules linked in: at803x
[    4.663596] CPU: 0 PID: 103 Comm: capemgr-loader- Tainted: G        W       4.4.91-ti-r133 #1
[    4.663604] Hardware name: Generic AM33XX (Flattened Device Tree)
[    4.663647] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    4.663672] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    4.663692] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    4.663707] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    4.663720] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    4.663739] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    4.663754] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    4.663778] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    4.663794] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    4.663810] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    4.663826] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    4.663841] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    4.663854] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    4.663869] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    4.663896] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    4.663914] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    4.663930] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    4.663958] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    4.663975] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    4.663988] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    4.664003] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    4.664017] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    4.664037] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    4.664052] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    4.664066] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    4.664080] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    4.664095] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    4.664116] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    4.664126] ---[ end trace 92a8e786922ee99c ]---
[    4.664171] bone-pinmux-helper: probe of ocp:P8_24_pinmux failed with error -22
[    4.668032] pinctrl-single 44e10800.pinmux: pin 44e10800.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_25_pinmux
[    4.679762] pinctrl-single 44e10800.pinmux: pin-0 (ocp:P8_25_pinmux) status -22
[    4.687180] pinctrl-single 44e10800.pinmux: could not request pin 0 (44e10800.0) from group pinmux_P8_25_default_pin  on device pinctrl-single
[    4.700041] bone-pinmux-helper ocp:P8_25_pinmux: Error applying setting, reverse things back
[    4.757890] pinctrl-single 44e10800.pinmux: pin 44e10800.0 already requested by 481d8000.mmc; cannot claim for ocp:P8_25_pinmux
[    4.769548] pinctrl-single 44e10800.pinmux: pin-0 (ocp:P8_25_pinmux) status -22
[    4.776921] pinctrl-single 44e10800.pinmux: could not request pin 0 (44e10800.0) from group pinmux_P8_25_default_pin  on device pinctrl-single
[    4.789779] bone-pinmux-helper ocp:P8_25_pinmux: Error applying setting, reverse things back
[    4.798271] bone-pinmux-helper ocp:P8_25_pinmux: Failed to select default state
[    4.856389] ------------[ cut here ]------------
[    4.856443] WARNING: CPU: 0 PID: 103 at drivers/base/devres.c:888 devm_kfree+0x4c/0x50()
[    4.856451] Modules linked in: at803x
[    4.856477] CPU: 0 PID: 103 Comm: capemgr-loader- Tainted: G        W       4.4.91-ti-r133 #1
[    4.856485] Hardware name: Generic AM33XX (Flattened Device Tree)
[    4.856527] [<c001bed0>] (unwind_backtrace) from [<c0015978>] (show_stack+0x20/0x24)
[    4.856551] [<c0015978>] (show_stack) from [<c05c1674>] (dump_stack+0x8c/0xa0)
[    4.856571] [<c05c1674>] (dump_stack) from [<c004435c>] (warn_slowpath_common+0x94/0xc4)
[    4.856586] [<c004435c>] (warn_slowpath_common) from [<c0044490>] (warn_slowpath_null+0x2c/0x34)
[    4.856599] [<c0044490>] (warn_slowpath_null) from [<c0718418>] (devm_kfree+0x4c/0x50)
[    4.856618] [<c0718418>] (devm_kfree) from [<c073bea8>] (bone_pinmux_helper_probe+0x1c4/0x260)
[    4.856633] [<c073bea8>] (bone_pinmux_helper_probe) from [<c0716368>] (platform_drv_probe+0x60/0xc0)
[    4.856657] [<c0716368>] (platform_drv_probe) from [<c0713fcc>] (driver_probe_device+0x234/0x470)
[    4.856672] [<c0713fcc>] (driver_probe_device) from [<c071433c>] (__device_attach_driver+0x94/0xbc)
[    4.856688] [<c071433c>] (__device_attach_driver) from [<c0711b74>] (bus_for_each_drv+0x84/0xc8)
[    4.856703] [<c0711b74>] (bus_for_each_drv) from [<c0713c80>] (__device_attach+0xe0/0x174)
[    4.856718] [<c0713c80>] (__device_attach) from [<c07143c0>] (device_initial_probe+0x1c/0x20)
[    4.856732] [<c07143c0>] (device_initial_probe) from [<c0712eec>] (bus_probe_device+0x94/0x9c)
[    4.856746] [<c0712eec>] (bus_probe_device) from [<c0710970>] (device_add+0x340/0x5e0)
[    4.856773] [<c0710970>] (device_add) from [<c090e8f8>] (of_device_add+0x44/0x4c)
[    4.856792] [<c090e8f8>] (of_device_add) from [<c090f018>] (of_platform_device_create_pdata+0x94/0xcc)
[    4.856807] [<c090f018>] (of_platform_device_create_pdata) from [<c090f184>] (of_platform_notify+0x110/0x158)
[    4.856834] [<c090f184>] (of_platform_notify) from [<c0067658>] (notifier_call_chain+0x54/0x94)
[    4.856850] [<c0067658>] (notifier_call_chain) from [<c0067ab4>] (__blocking_notifier_call_chain+0x58/0x70)
[    4.856864] [<c0067ab4>] (__blocking_notifier_call_chain) from [<c0067af4>] (blocking_notifier_call_chain+0x28/0x30)
[    4.856878] [<c0067af4>] (blocking_notifier_call_chain) from [<c0910428>] (__of_changeset_entry_notify+0xb4/0x108)
[    4.856892] [<c0910428>] (__of_changeset_entry_notify) from [<c0910de4>] (__of_changeset_apply+0x98/0x170)
[    4.856911] [<c0910de4>] (__of_changeset_apply) from [<c091772c>] (__of_overlay_create+0x448/0x654)
[    4.856926] [<c091772c>] (__of_overlay_create) from [<c0917958>] (of_overlay_create+0x20/0x24)
[    4.856940] [<c0917958>] (of_overlay_create) from [<c073c5d4>] (capemgr_load_slot+0x3f0/0x5ec)
[    4.856953] [<c073c5d4>] (capemgr_load_slot) from [<c073c8b8>] (capemgr_loader+0xe8/0x490)
[    4.856968] [<c073c8b8>] (capemgr_loader) from [<c0066724>] (kthread+0x118/0x130)
[    4.856989] [<c0066724>] (kthread) from [<c0010e00>] (ret_from_fork+0x14/0x34)
[    4.857123] ---[ end trace 92a8e786922ee99d ]---
[    4.860552] bone-pinmux-helper: probe of ocp:P8_25_pinmux failed with error -22
[    5.070419] gpio-of-helper ocp:cape-universal: Allocated GPIO id=0
[    5.070609] gpio-of-helper ocp:cape-universal: Allocated GPIO id=1
[    5.070765] gpio-of-helper ocp:cape-universal: Allocated GPIO id=2
[    5.070926] gpio-of-helper ocp:cape-universal: Allocated GPIO id=3
[    5.071083] gpio-of-helper ocp:cape-universal: Allocated GPIO id=4
[    5.071244] gpio-of-helper ocp:cape-universal: Allocated GPIO id=5
[    5.071404] gpio-of-helper ocp:cape-universal: Allocated GPIO id=6
[    5.071556] gpio-of-helper ocp:cape-universal: Allocated GPIO id=7
[    5.071719] gpio-of-helper ocp:cape-universal: Allocated GPIO id=8
[    5.071872] gpio-of-helper ocp:cape-universal: Allocated GPIO id=9
[    5.072028] gpio-of-helper ocp:cape-universal: Allocated GPIO id=10
[    5.072190] gpio-of-helper ocp:cape-universal: Allocated GPIO id=11
[    5.072354] gpio-of-helper ocp:cape-universal: Allocated GPIO id=12
[    5.072510] gpio-of-helper ocp:cape-universal: Allocated GPIO id=13
[    5.072671] gpio-of-helper ocp:cape-universal: Allocated GPIO id=14
[    5.072827] gpio-of-helper ocp:cape-universal: Allocated GPIO id=15
[    5.079401] gpio-of-helper ocp:cape-universal: Allocated GPIO id=16
[    5.079674] gpio-of-helper ocp:cape-universal: Allocated GPIO id=17
[    5.079841] gpio-of-helper ocp:cape-universal: Allocated GPIO id=18
[    5.080008] gpio-of-helper ocp:cape-universal: Allocated GPIO id=19
[    5.080172] gpio-of-helper ocp:cape-universal: Allocated GPIO id=20
[    5.080334] gpio-of-helper ocp:cape-universal: Allocated GPIO id=21
[    5.080497] gpio-of-helper ocp:cape-universal: Allocated GPIO id=22
[    5.080740] gpio-of-helper ocp:cape-universal: Allocated GPIO id=23
[    5.080928] gpio-of-helper ocp:cape-universal: Allocated GPIO id=24
[    5.083871] gpio-of-helper ocp:cape-universal: Allocated GPIO id=25
[    5.084117] gpio-of-helper ocp:cape-universal: Allocated GPIO id=26
[    5.084297] gpio-of-helper ocp:cape-universal: Allocated GPIO id=27
[    5.084442] gpio-of-helper ocp:cape-universal: Allocated GPIO id=28
[    5.084587] gpio-of-helper ocp:cape-universal: Allocated GPIO id=29
[    5.084742] gpio-of-helper ocp:cape-universal: Allocated GPIO id=30
[    5.084889] gpio-of-helper ocp:cape-universal: Allocated GPIO id=31
[    5.085298] gpio-of-helper ocp:cape-universal: Allocated GPIO id=32
[    5.085465] gpio-of-helper ocp:cape-universal: Allocated GPIO id=33
[    5.085628] gpio-of-helper ocp:cape-universal: Allocated GPIO id=34
[    5.085825] gpio-of-helper ocp:cape-universal: Allocated GPIO id=35
[    5.085976] gpio-of-helper ocp:cape-universal: Allocated GPIO id=36
[    5.086132] gpio-of-helper ocp:cape-universal: Allocated GPIO id=37
[    5.086288] gpio-of-helper ocp:cape-universal: Allocated GPIO id=38
[    5.086437] gpio-of-helper ocp:cape-universal: Allocated GPIO id=39
[    5.086587] gpio-of-helper ocp:cape-universal: Allocated GPIO id=40
[    5.086740] gpio-of-helper ocp:cape-universal: Allocated GPIO id=41
[    5.090393] gpio-of-helper ocp:cape-universal: Allocated GPIO id=42
[    5.090610] gpio-of-helper ocp:cape-universal: Allocated GPIO id=43
[    5.090770] gpio-of-helper ocp:cape-universal: Allocated GPIO id=44
[    5.090923] gpio-of-helper ocp:cape-universal: Allocated GPIO id=45
[    5.091086] gpio-of-helper ocp:cape-universal: Allocated GPIO id=46
[    5.091239] gpio-of-helper ocp:cape-universal: Allocated GPIO id=47
[    5.091394] gpio-of-helper ocp:cape-universal: Allocated GPIO id=48
[    5.091549] gpio-of-helper ocp:cape-universal: Allocated GPIO id=49
[    5.091709] gpio-of-helper ocp:cape-universal: Allocated GPIO id=50
[    5.091871] gpio-of-helper ocp:cape-universal: Allocated GPIO id=51
[    5.092023] gpio-of-helper ocp:cape-universal: Allocated GPIO id=52
[    5.092175] gpio-of-helper ocp:cape-universal: Allocated GPIO id=53
[    5.092337] gpio-of-helper ocp:cape-universal: Allocated GPIO id=54
[    5.092492] gpio-of-helper ocp:cape-universal: Allocated GPIO id=55
[    5.092643] gpio-of-helper ocp:cape-universal: Allocated GPIO id=56
[    5.092800] gpio-of-helper ocp:cape-universal: Allocated GPIO id=57
[    5.092953] gpio-of-helper ocp:cape-universal: Allocated GPIO id=58
[    5.097552] gpio-of-helper ocp:cape-universal: Allocated GPIO id=59
[    5.097749] gpio-of-helper ocp:cape-universal: Allocated GPIO id=60
[    5.097907] gpio-of-helper ocp:cape-universal: Allocated GPIO id=61
[    5.098073] gpio-of-helper ocp:cape-universal: Allocated GPIO id=62
[    5.098241] gpio-of-helper ocp:cape-universal: Allocated GPIO id=63
[    5.098394] gpio-of-helper ocp:cape-universal: Allocated GPIO id=64
[    5.098557] gpio-of-helper ocp:cape-universal: Allocated GPIO id=65
[    5.098711] gpio-of-helper ocp:cape-universal: Allocated GPIO id=66
[    5.098722] gpio-of-helper ocp:cape-universal: ready
[    5.105552] 48022000.serial: ttyS1 at MMIO 0x48022000 (irq = 188, base_baud = 3000000) is a 8250
[    5.107663] 48024000.serial: ttyS2 at MMIO 0x48024000 (irq = 189, base_baud = 3000000) is a 8250
[    5.113820] 481a8000.serial: ttyS4 at MMIO 0x481a8000 (irq = 190, base_baud = 3000000) is a 8250
[    5.115830] 481aa000.serial: ttyS5 at MMIO 0x481aa000 (irq = 191, base_baud = 3000000) is a 8250
[    5.146087] omap_i2c 4802a000.i2c: bus 1 rev0.11 at 100 kHz
[    5.148863] omap2_mcspi 48030000.spi: chipselect 0 already in use
[    5.155132] spi_master spi1: spi_device register error /ocp/spi@48030000/spi0channel@0
[    5.177227] of_spi_notify: failed to create for '/ocp/spi@48030000/spi0channel@0'
[    5.184830] __of_changeset_entry_notify: notifier error @/ocp/spi@48030000/spi0channel@0
[    5.209304] omap2_mcspi 48030000.spi: chipselect 1 already in use
[    5.215514] spi_master spi1: spi_device register error /ocp/spi@48030000/spi0channel@1
[    5.239239] of_spi_notify: failed to create for '/ocp/spi@48030000/spi0channel@1'
[    5.246913] __of_changeset_entry_notify: notifier error @/ocp/spi@48030000/spi0channel@1
[    5.278308] omap2_mcspi 481a0000.spi: chipselect 0 already in use
[    5.284541] spi_master spi2: spi_device register error /ocp/spi@481a0000/spi1channel@0
[    5.304511] ti-pruss 4a300000.pruss: creating PRU cores and other child platform devices
[    5.304720] irq: no irq domain found for /ocp/pruss@4a300000/intc@4a320000 !
[    5.305286] of_spi_notify: failed to create for '/ocp/spi@481a0000/spi1channel@0'
[    5.312877] __of_changeset_entry_notify: notifier error @/ocp/spi@481a0000/spi1channel@0
[    5.329921] irq: no irq domain found for /ocp/pruss@4a300000/intc@4a320000 !
[    5.337239] omap2_mcspi 481a0000.spi: chipselect 1 already in use
[    5.343447] spi_master spi2: spi_device register error /ocp/spi@481a0000/spi1channel@1
[    5.373184] of_spi_notify: failed to create for '/ocp/spi@481a0000/spi1channel@1'
[    5.380789] __of_changeset_entry_notify: notifier error @/ocp/spi@481a0000/spi1channel@1
[    5.403174] c_can_platform 481cc000.can: c_can_platform device registered (regs=fa1cc000, irq=208)
[    5.407959] c_can_platform 481d0000.can: c_can_platform device registered (regs=fa1d0000, irq=209)
[    5.413539] bone_capemgr bone_capemgr: slot #4: dtbo 'cape-universala-00A0.dtbo' loaded; overlay id #0
[    5.457858]  remoteproc1: 4a338000.pru1 is available
[    5.457886]  remoteproc1: Note: remoteproc is still under development and considered experimental.
[    5.457895]  remoteproc1: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
[    5.463616] pru-rproc 4a338000.pru1: booting the PRU core manually
[    5.463645]  remoteproc1: powering up 4a338000.pru1
[    5.463945]  remoteproc1: Booting fw image am335x-pru1-fw, size 35392
[    5.464019]  remoteproc1: remote processor 4a338000.pru1 is now up
[    5.464054] pru-rproc 4a338000.pru1: PRU rproc node /ocp/pruss@4a300000/pru1@4a338000 probed successfully
[    5.472620]  remoteproc2: 4a334000.pru0 is available
[    5.472646]  remoteproc2: Note: remoteproc is still under development and considered experimental.
[    5.472655]  remoteproc2: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
[    5.473476] pru-rproc 4a334000.pru0: booting the PRU core manually
[    5.473502]  remoteproc2: powering up 4a334000.pru0
[    5.473721]  remoteproc2: Booting fw image am335x-pru0-fw, size 36296
[    5.473785]  remoteproc2: remote processor 4a334000.pru0 is now up
[    5.473812] pru-rproc 4a334000.pru0: PRU rproc node /ocp/pruss@4a300000/pru0@4a334000 probed successfully
[    5.529263] usb 1-1.1.1-port2: cannot reset (err = -110)
[    6.541156] usb 1-1.1.1-port2: cannot reset (err = -110)
[    7.553143] usb 1-1.1.1-port2: cannot reset (err = -110)
[    8.565269] usb 1-1.1.1-port2: cannot reset (err = -110)
[    9.577186] usb 1-1.1.1-port2: cannot reset (err = -110)
[    9.582601] usb 1-1.1.1-port2: Cannot enable. Maybe the USB cable is bad?
[   10.601163] usb 1-1.1.1-port2: cannot disable (err = -110)
[   11.605167] usb 1-1.1-port4: cannot reset (err = -110)
[   12.613315] usb 1-1.1-port4: cannot reset (err = -110)
[   13.621188] usb 1-1.1-port4: cannot reset (err = -110)
[   14.529383] usb 1-1.1.2.1: unable to read config index 0 descriptor/start: -110
[   14.536804] usb 1-1.1.2.1: can't read configurations, error -110
[   14.629338] usb 1-1.1-port4: cannot reset (err = -110)
[   15.557184] usb 1-1.1.2-port1: cannot disable (err = -110)
[   15.637162] usb 1-1.1-port4: cannot reset (err = -110)
[   15.642396] usb 1-1.1-port4: Cannot enable. Maybe the USB cable is bad?
[   15.733177] usb 1-1.1.4: new high-speed USB device number 16 using musb-hdrc
[   15.823193] usb 1-1.1.4: New USB device found, idVendor=04b4, idProduct=6572
[   15.823218] usb 1-1.1.4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[   15.823229] usb 1-1.1.4: Product: USB2.0 Hub
[   15.824908] hub 1-1.1.4:1.0: USB hub found
[   15.825395] hub 1-1.1.4:1.0: 4 ports detected
[   15.893157] usb 1-1.1.3.1: new full-speed USB device number 13 using musb-hdrc
[   15.987813] usb 1-1.1.3.1: New USB device found, idVendor=0403, idProduct=6001
[   15.987841] usb 1-1.1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   15.987852] usb 1-1.1.3.1: Product: FT232R USB UART
[   15.987861] usb 1-1.1.3.1: Manufacturer: FTDI
[   15.987871] usb 1-1.1.3.1: SerialNumber: A505OW8U
[   16.053249] usb 1-1.1.1.2: new full-speed USB device number 14 using musb-hdrc
[   16.197182] usb 1-1.1.1.2: new high-speed USB device number 19 using musb-hdrc
[   16.215520] usb 1-1.1.1.2: New USB device found, idVendor=19d2, idProduct=0117
[   16.215546] usb 1-1.1.1.2: New USB device strings: Mfr=3, Product=2, SerialNumber=4
[   16.215557] usb 1-1.1.1.2: Product: ZTE WCDMA Technologies MSM
[   16.215567] usb 1-1.1.1.2: Manufacturer: ZTE,Incorporated
[   16.215577] usb 1-1.1.1.2: SerialNumber: MF1900ZTED010000
[   16.220251] usb-storage 1-1.1.1.2:1.3: USB Mass Storage device detected
[   16.229298] scsi host0: usb-storage 1-1.1.1.2:1.3
[   16.285158] usb 1-1.1.2.1: new full-speed USB device number 15 using musb-hdrc
[   16.380507] usb 1-1.1.2.1: New USB device found, idVendor=0403, idProduct=6015
[   16.380533] usb 1-1.1.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   16.380543] usb 1-1.1.2.1: Product: FT230X Basic UART
[   16.380553] usb 1-1.1.2.1: Manufacturer: FTDI
[   16.380563] usb 1-1.1.2.1: SerialNumber: DN01WUZW
[   16.445163] usb 1-1.1.3.3: new full-speed USB device number 17 using musb-hdrc
[   16.589266] usb 1-1.1.3.3: new high-speed USB device number 22 using musb-hdrc
[   16.688140] usb 1-1.1.3.3: New USB device found, idVendor=148f, idProduct=7601
[   16.688166] usb 1-1.1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   16.688177] usb 1-1.1.3.3: Product: 802.11 n WLAN
[   16.688187] usb 1-1.1.3.3: Manufacturer: MediaTek
[   16.688196] usb 1-1.1.3.3: SerialNumber: 1.0
[   16.749253] usb 1-1.1.4.2: new full-speed USB device number 18 using musb-hdrc
[   16.844817] usb 1-1.1.4.2: New USB device found, idVendor=0403, idProduct=6015
[   16.844844] usb 1-1.1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   16.844855] usb 1-1.1.4.2: Product: FT230X Basic UART
[   16.844864] usb 1-1.1.4.2: Manufacturer: FTDI
[   16.844873] usb 1-1.1.4.2: SerialNumber: DN01WV00
[   16.909197] usb 1-1.1.1.4: new full-speed USB device number 20 using musb-hdrc
[   17.004534] usb 1-1.1.1.4: New USB device found, idVendor=0403, idProduct=6015
[   17.004561] usb 1-1.1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   17.004573] usb 1-1.1.1.4: Product: FT230X Basic UART
[   17.004583] usb 1-1.1.1.4: Manufacturer: FTDI
[   17.004593] usb 1-1.1.1.4: SerialNumber: DN01WUZV
[   17.069168] usb 1-1.1.2.2: new full-speed USB device number 21 using musb-hdrc
[   18.157214] usb 1-1.1.3-port4: cannot reset (err = -110)
[   19.165234] usb 1-1.1.3-port4: cannot reset (err = -110)
[   19.615216] usbcore: registered new interface driver uas
[   20.177268] usb 1-1.1.3-port4: cannot reset (err = -110)
[   21.181251] usb 1-1.1.3-port4: cannot reset (err = -110)
[   22.185269] usb 1-1.1.3-port4: cannot reset (err = -110)
[   22.190661] usb 1-1.1.3-port4: Cannot enable. Maybe the USB cable is bad?
[   23.197268] usb 1-1.1.3-port4: cannot disable (err = -110)
[   24.201270] usb 1-1.1.4-port3: cannot reset (err = -110)
[   25.205269] usb 1-1.1.4-port3: cannot reset (err = -110)
[   26.209270] usb 1-1.1.4-port3: cannot reset (err = -110)
[   27.157268] usb 1-1.1.2.2: unable to read config index 0 descriptor/start: -110
[   27.164669] usb 1-1.1.2.2: can't read configurations, error -110
[   27.213271] usb 1-1.1.4-port3: cannot reset (err = -110)
[   27.230856] scsi 0:0:0:0: CD-ROM            ZTE      USB SCSI CD-ROM  2.31 PQ: 0 ANSI: 2
[   28.169264] usb 1-1.1.2-port2: cannot disable (err = -110)
[   28.217273] usb 1-1.1.4-port3: cannot reset (err = -110)
[   28.222665] usb 1-1.1.4-port3: Cannot enable. Maybe the USB cable is bad?
[   29.229262] usb 1-1.1.4-port3: cannot disable (err = -110)
[   30.233271] usb 1-1.1.3-port4: cannot reset (err = -110)
[   31.237271] usb 1-1.1.3-port4: cannot reset (err = -110)
[   31.501246] usb 1-1.1.3.4: new full-speed USB device number 25 using musb-hdrc
[   31.573241] usb 1-1.1.3.4: device descriptor read/64, error -32
[   31.753239] usb 1-1.1.3.4: device descriptor read/64, error -32
[   31.933309] usb 1-1.1.2.2: new full-speed USB device number 26 using musb-hdrc
[   32.031747] usb 1-1.1.2.2: New USB device found, idVendor=0403, idProduct=6015
[   32.031773] usb 1-1.1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   32.031784] usb 1-1.1.2.2: Product: FT230X Basic UART
[   32.031794] usb 1-1.1.2.2: Manufacturer: FTDI
[   32.031803] usb 1-1.1.2.2: SerialNumber: DN01WUZZ
[   32.093263] usb 1-1.1.4.3: new full-speed USB device number 27 using musb-hdrc
[   32.188570] usb 1-1.1.4.3: New USB device found, idVendor=0403, idProduct=6015
[   32.188596] usb 1-1.1.4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   32.188606] usb 1-1.1.4.3: Product: FT230X Basic UART
[   32.188616] usb 1-1.1.4.3: Manufacturer: FTDI
[   32.188625] usb 1-1.1.4.3: SerialNumber: DN01WUZX
[   32.253308] usb 1-1.1.1.2: reset high-speed USB device number 19 using musb-hdrc
[   32.354820] sr 0:0:0:0: [sr0] scsi-1 drive
[   32.354854] cdrom: Uniform CD-ROM driver Revision: 3.20
[   32.356126] sr 0:0:0:0: Attached scsi CD-ROM sr0
[   32.413351] usb 1-1.1.3.4: new full-speed USB device number 28 using musb-hdrc
[   32.821237] usb 1-1.1.3.4: device not accepting address 28, error -32
[   32.897245] usb 1-1.1.2.3: new full-speed USB device number 29 using musb-hdrc
[   32.995296] usb 1-1.1.2.3: New USB device found, idVendor=0403, idProduct=6001
[   32.995323] usb 1-1.1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   32.995333] usb 1-1.1.2.3: Product: FT232R USB UART
[   32.995343] usb 1-1.1.2.3: Manufacturer: FTDI
[   32.995352] usb 1-1.1.2.3: SerialNumber: A5061M1P
[   33.057245] usb 1-1.1.4.4: new full-speed USB device number 30 using musb-hdrc
[   34.009164] random: nonblocking pool is initialized
[   34.145275] usb 1-1.1.3-port4: cannot reset (err = -110)
[   35.149255] usb 1-1.1.3-port4: cannot reset (err = -110)
[   36.153268] usb 1-1.1.3-port4: cannot reset (err = -110)
[   37.157285] usb 1-1.1.3-port4: cannot reset (err = -110)
[   38.161271] usb 1-1.1.3-port4: cannot reset (err = -110)
[   38.166664] usb 1-1.1.3-port4: Cannot enable. Maybe the USB cable is bad?
[   39.173275] usb 1-1.1.3-port4: cannot disable (err = -110)
[   39.178939] usb 1-1.1.3-port4: unable to enumerate USB device
[   40.177277] usb 1-1.1.2-port4: cannot reset (err = -110)
[   40.182706] usb 1-1.1.3-port4: cannot disable (err = -110)
[   41.185276] usb 1-1.1.2-port4: cannot reset (err = -110)
[   42.189271] usb 1-1.1.2-port4: cannot reset (err = -110)
[   43.145278] usb 1-1.1.4.4: unable to read config index 0 descriptor/start: -110
[   43.152682] usb 1-1.1.4.4: can't read configurations, error -110
[   43.193278] usb 1-1.1.2-port4: cannot reset (err = -110)
[   44.161251] usb 1-1.1.4-port4: cannot disable (err = -110)
[   44.197276] usb 1-1.1.2-port4: cannot reset (err = -110)
[   44.202684] usb 1-1.1.2-port4: Cannot enable. Maybe the USB cable is bad?
[   44.281244] usb 1-1.1.4.4: new full-speed USB device number 33 using musb-hdrc
[   45.369266] usb 1-1.1.2-port4: cannot reset (err = -110)
[   46.373265] usb 1-1.1.2-port4: cannot reset (err = -110)
[   47.377265] usb 1-1.1.2-port4: cannot reset (err = -110)
[   48.381264] usb 1-1.1.2-port4: cannot reset (err = -110)
[   49.385262] usb 1-1.1.2-port4: cannot reset (err = -110)
[   49.390654] usb 1-1.1.2-port4: Cannot enable. Maybe the USB cable is bad?
[   50.397261] usb 1-1.1.2-port4: cannot disable (err = -110)
[   51.401275] usb 1-1.1.2-port4: cannot reset (err = -110)
[   52.405275] usb 1-1.1.2-port4: cannot reset (err = -110)
[   53.409272] usb 1-1.1.2-port4: cannot reset (err = -110)
[   54.369268] usb 1-1.1.4.4: unable to read config index 0 descriptor/start: -110
[   54.376671] usb 1-1.1.4.4: can't read configurations, error -110
[   54.413271] usb 1-1.1.2-port4: cannot reset (err = -110)
[   55.381261] usb 1-1.1.4-port4: cannot disable (err = -110)
[   55.417270] usb 1-1.1.2-port4: cannot reset (err = -110)
[   55.422662] usb 1-1.1.2-port4: Cannot enable. Maybe the USB cable is bad?
[   55.501245] usb 1-1.1.4.4: new full-speed USB device number 36 using musb-hdrc
[   56.517264] usb 1-1.1.2-port4: cannot reset (err = -110)
[   57.521264] usb 1-1.1.2-port4: cannot reset (err = -110)
[   58.525277] usb 1-1.1.2-port4: cannot reset (err = -110)
[   59.529276] usb 1-1.1.2-port4: cannot reset (err = -110)
[   60.533270] usb 1-1.1.2-port4: cannot reset (err = -110)
[   60.538663] usb 1-1.1.2-port4: Cannot enable. Maybe the USB cable is bad?
[   61.545261] usb 1-1.1.2-port4: cannot disable (err = -110)
[   61.550848] usb 1-1.1.2-port4: unable to enumerate USB device
[   62.553271] usb 1-1.1.2-port4: cannot disable (err = -110)
[   65.517273] usb 1-1.1.4.4: unable to read config index 0 descriptor/start: -110
[   65.524676] usb 1-1.1.4.4: can't read configurations, error -110
[   66.529263] usb 1-1.1.4-port4: cannot disable (err = -110)
[   67.533264] usb 1-1.1.4-port4: cannot reset (err = -110)
[   67.565266] hub 1-1.1.2:1.0: hub_port_status failed (err = -110)
[   68.537264] usb 1-1.1.4-port4: cannot reset (err = -110)
[   68.801245] usb 1-1.1.4.4: new full-speed USB device number 38 using musb-hdrc
[   68.826213] usb 1-1.1.4.4: New USB device found, idVendor=0403, idProduct=6015
[   68.826239] usb 1-1.1.4.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   68.826250] usb 1-1.1.4.4: Product: FT230X Basic UART
[   68.826259] usb 1-1.1.4.4: Manufacturer: FTDI
[   68.826269] usb 1-1.1.4.4: SerialNumber: DN01WV01
[   69.132852] EXT4-fs (mmcblk1p1): mounted filesystem with ordered data mode. Opts: (null)
[   69.720930] ip_tables: (C) 2000-2006 Netfilter Core Team
[   69.765428] systemd[1]: systemd 232 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[   69.766088] systemd[1]: Detected architecture arm.
[   69.767633] systemd[1]: Set hostname to <beaglebone>.
[   70.463047] systemd[1]: [/lib/systemd/system/redis-server.service:14] Unknown lvalue 'RunTimeDirectory' in section 'Service'
[   70.506369] systemd[1]: connman.service: Cannot add dependency job, ignoring: Unit connman.service is masked.
[   70.514563] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   70.515252] systemd[1]: Listening on fsck to fsckd communication Socket.
[   70.515967] systemd[1]: Listening on Journal Audit Socket.
[   70.516366] systemd[1]: Listening on Syslog Socket.
[   70.516699] systemd[1]: Listening on Journal Socket (/dev/log).
[   70.517420] systemd[1]: Listening on Journal Socket.
[   70.518037] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   70.519411] systemd[1]: Created slice User and Session Slice.
[   70.519919] systemd[1]: Listening on udev Control Socket.
[   70.520077] systemd[1]: Reached target Swap.
[   70.520435] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[   70.521260] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   70.521468] systemd[1]: Reached target Paths.
[   70.521594] systemd[1]: Reached target Remote File Systems.
[   70.521926] systemd[1]: Listening on udev Kernel Socket.
[   70.523011] systemd[1]: Created slice System Slice.
[   70.523245] systemd[1]: Reached target Slices.
[   70.531613] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[   70.547286] systemd[1]: Starting Load Kernel Modules...
[   70.548957] systemd[1]: Created slice system-serial\x2dgetty.slice.
[   70.588482] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[   70.661965] systemd[1]: Mounting POSIX Message Queue File System...
[   70.722150] systemd[1]: Starting Journal Service...
[   70.764097] eqep 48300180.eqep: ver. 1.0
[   70.785623] eqep 48302180.eqep: ver. 1.0
[   70.786184] eqep 48304180.eqep: ver. 1.0
[   70.810186] systemd[1]: Starting Remount Root and Kernel File Systems...
[   70.810457] systemd[1]: Reached target Encrypted Volumes.
[   70.812060] systemd[1]: Created slice system-getty.slice.
[   70.965462] systemd[1]: Mounting /sys/kernel/debug...
[   71.092682] systemd[1]: Mounted POSIX Message Queue File System.
[   71.095011] EXT4-fs (mmcblk1p1): re-mounted. Opts: errors=remount-ro
[   71.132711] systemd[1]: Mounted /sys/kernel/debug.
[   71.152062] systemd[1]: Started Create list of required static device nodes for the current kernel.
[   71.175542] systemd[1]: Started Load Kernel Modules.
[   71.195021] systemd[1]: Started Remount Root and Kernel File Systems.
[   71.248856] systemd[1]: Starting udev Coldplug all Devices...
[   71.279438] systemd[1]: Starting Load/Save Random Seed...
[   71.381494] systemd[1]: Starting Apply Kernel Variables...
[   71.469601] systemd[1]: Mounting FUSE Control File System...
[   71.570360] systemd[1]: Mounting Configuration File System...
[   71.710213] systemd[1]: Starting Create Static Device Nodes in /dev...
[   71.866827] systemd[1]: Mounted Configuration File System.
[   71.867183] systemd[1]: Mounted FUSE Control File System.
[   71.911356] systemd[1]: Started Load/Save Random Seed.
[   71.930267] systemd[1]: Started Apply Kernel Variables.
[   71.976762] systemd[1]: Started Create Static Device Nodes in /dev.
[   72.046111] systemd[1]: Starting udev Kernel Device Manager...
[   72.046358] systemd[1]: Reached target Local File Systems (Pre).
[   72.387044] systemd[1]: Started udev Kernel Device Manager.
[   73.473367] systemd[1]: Started Journal Service.
[   73.649954] systemd-journald[805]: Received request to flush runtime journal from PID 1
[   78.003664] iio iio:device1: unsupported IRQ trigger specified (0), enforce rising edge
[   78.105312] iio iio:device1: registered pressure sensor lps331ap
[   78.212147] inv-mpu6050-i2c 0-0068: mounting matrix not found: using identity...
[   78.347654] i2c i2c-0: Added multiplexed i2c bus 3
[   78.411771] pinctrl-single 44e10800.pinmux: pin 44e108a0.0 already requested by ocp:P8_45_pinmux; cannot claim for 0-0070
[   78.422974] pinctrl-single 44e10800.pinmux: pin-40 (0-0070) status -22
[   78.429597] pinctrl-single 44e10800.pinmux: could not request pin 40 (44e108a0.0) from group nxp_hdmi_bonelt_pins  on device pinctrl-single
[   78.442201] tda998x 0-0070: Error applying setting, reverse things back
[   79.876008] pinctrl-single 44e10800.pinmux: pin 44e109ac.0 already requested by ocp:P9_25_pinmux; cannot claim for 48038000.mcasp
[   79.887947] pinctrl-single 44e10800.pinmux: pin-107 (48038000.mcasp) status -22
[   79.895357] pinctrl-single 44e10800.pinmux: could not request pin 107 (44e109ac.0) from group mcasp0_pins  on device pinctrl-single
[   79.907267] davinci-mcasp 48038000.mcasp: Error applying setting, reverse things back
[   80.664940] usbcore: registered new interface driver usbserial
[   80.709864] usbcore: registered new interface driver usbserial_generic
[   80.709970] usbserial: USB Serial support registered for generic
[   80.821770] usbcore: registered new interface driver option
[   80.821889] usbserial: USB Serial support registered for GSM modem (1-port)
[   80.823178] option 1-1.1.1.2:1.0: GSM modem (1-port) converter detected
[   80.841390] usb 1-1.1.1.2: GSM modem (1-port) converter now attached to ttyUSB0
[   80.843379] option 1-1.1.1.2:1.1: GSM modem (1-port) converter detected
[   80.885370] usb 1-1.1.1.2: GSM modem (1-port) converter now attached to ttyUSB1
[   80.886020] option 1-1.1.1.2:1.2: GSM modem (1-port) converter detected
[   80.886780] usb 1-1.1.1.2: GSM modem (1-port) converter now attached to ttyUSB2
[   81.445326] sr 0:0:0:0: Attached scsi generic sg0 type 5
[   81.731578] sr 0:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[   81.731615] sr 0:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
[   81.731637] sr 0:0:0:0: [sr0] tag#0 Add. Sense: Logical block address out of range
[   81.731657] sr 0:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 4f 64 00 00 02 00
[   81.731672] blk_update_request: critical target error, dev sr0, sector 81296
[   81.749147] sr 0:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[   81.749182] sr 0:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
[   81.749203] sr 0:0:0:0: [sr0] tag#0 Add. Sense: Logical block address out of range
[   81.749224] sr 0:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 4f 64 00 00 01 00
[   81.749238] blk_update_request: critical target error, dev sr0, sector 81296
[   81.756373] Buffer I/O error on dev sr0, logical block 20324, async page read
[   81.765092] sr 0:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[   81.765122] sr 0:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
[   81.765140] sr 0:0:0:0: [sr0] tag#0 Add. Sense: Logical block address out of range
[   81.765159] sr 0:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 4f 65 00 00 01 00
[   81.765172] blk_update_request: critical target error, dev sr0, sector 81300
[   81.772301] Buffer I/O error on dev sr0, logical block 20325, async page read
[   81.914172] sr 0:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[   81.914209] sr 0:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
[   81.914230] sr 0:0:0:0: [sr0] tag#0 Add. Sense: Logical block address out of range
[   81.914251] sr 0:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 4f 62 00 00 02 00
[   81.914265] blk_update_request: critical target error, dev sr0, sector 81288
[   81.929154] sr 0:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[   81.929188] sr 0:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
[   81.929208] sr 0:0:0:0: [sr0] tag#0 Add. Sense: Logical block address out of range
[   81.929229] sr 0:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 4f 62 00 00 01 00
[   81.929242] blk_update_request: critical target error, dev sr0, sector 81288
[   81.936376] Buffer I/O error on dev sr0, logical block 20322, async page read
[   81.945172] sr 0:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[   81.945201] sr 0:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
[   81.945219] sr 0:0:0:0: [sr0] tag#0 Add. Sense: Logical block address out of range
[   81.945236] sr 0:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 4f 63 00 00 01 00
[   81.945248] blk_update_request: critical target error, dev sr0, sector 81292
[   81.952379] Buffer I/O error on dev sr0, logical block 20323, async page read
[   82.152844] usbcore: registered new interface driver ftdi_sio
[   82.153134] usbserial: USB Serial support registered for FTDI USB Serial Device
[   82.177557] ftdi_sio 1-1.1.3.1:1.0: FTDI USB Serial Device converter detected
[   82.177945] usb 1-1.1.3.1: Detected FT232RL
[   82.210211] usb 1-1.1.3.1: FTDI USB Serial Device converter now attached to ttyUSB3
[   82.215499] ftdi_sio 1-1.1.2.1:1.0: FTDI USB Serial Device converter detected
[   82.215884] usb 1-1.1.2.1: Detected FT-X
[   82.221628] usb 1-1.1.2.1: FTDI USB Serial Device converter now attached to ttyUSB4
[   82.222181] ftdi_sio 1-1.1.4.2:1.0: FTDI USB Serial Device converter detected
[   82.222510] usb 1-1.1.4.2: Detected FT-X
[   82.243632] usb 1-1.1.4.2: FTDI USB Serial Device converter now attached to ttyUSB5
[   82.244118] ftdi_sio 1-1.1.1.4:1.0: FTDI USB Serial Device converter detected
[   82.244470] usb 1-1.1.1.4: Detected FT-X
[   82.261320] usb 1-1.1.1.4: FTDI USB Serial Device converter now attached to ttyUSB6
[   82.267724] ftdi_sio 1-1.1.2.2:1.0: FTDI USB Serial Device converter detected
[   82.268137] usb 1-1.1.2.2: Detected FT-X
[   82.285685] usb 1-1.1.2.2: FTDI USB Serial Device converter now attached to ttyUSB7
[   82.286142] ftdi_sio 1-1.1.4.3:1.0: FTDI USB Serial Device converter detected
[   82.286473] usb 1-1.1.4.3: Detected FT-X
[   82.302479] usb 1-1.1.4.3: FTDI USB Serial Device converter now attached to ttyUSB8
[   82.302941] ftdi_sio 1-1.1.2.3:1.0: FTDI USB Serial Device converter detected
[   82.303284] usb 1-1.1.2.3: Detected FT232RL
[   82.318535] usb 1-1.1.2.3: FTDI USB Serial Device converter now attached to ttyUSB9
[   82.318996] ftdi_sio 1-1.1.4.4:1.0: FTDI USB Serial Device converter detected
[   82.319346] usb 1-1.1.4.4: Detected FT-X
[   82.329620] usb 1-1.1.4.4: FTDI USB Serial Device converter now attached to ttyUSB10
[   82.821518] usb 1-1.1.1.1: reset high-speed USB device number 9 using musb-hdrc
[   82.911836] mt7601u 1-1.1.1.1:1.0: ASIC revision: 76010001 MAC revision: 76010500
[   82.987956] mt7601u 1-1.1.1.1:1.0: Warning: unsupported EEPROM version 0d
[   82.987986] mt7601u 1-1.1.1.1:1.0: EEPROM ver:0d fae:00
[   83.198688] Bluetooth: Core ver 2.21
[   83.198840] NET: Registered protocol family 31
[   83.198851] Bluetooth: HCI device and connection manager initialized
[   83.198881] Bluetooth: HCI socket layer initialized
[   83.198900] Bluetooth: L2CAP socket layer initialized
[   83.198947] Bluetooth: SCO socket layer initialized
[   83.294510] Bluetooth: hci0: rtl: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[   83.294541] Bluetooth: hci0: rtl: loading rtl_bt/rtl8723b_fw.bin
[   83.298865] usbcore: registered new interface driver btusb
[   83.304548] Bluetooth: hci0: rom_version status=0 version=1
[   83.463516] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   83.541270] usb 1-1.1.3.3: reset high-speed USB device number 22 using musb-hdrc
[   83.631940] mt7601u 1-1.1.3.3:1.0: ASIC revision: 76010001 MAC revision: 76010500
[   83.724138] mt7601u 1-1.1.3.3:1.0: Warning: unsupported EEPROM version 0d
[   83.724168] mt7601u 1-1.1.3.3:1.0: EEPROM ver:0d fae:00
[   84.097353] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
[   84.125443] usbcore: registered new interface driver mt7601u
[   86.627971] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[   88.001319] cgroup: new mount options do not match the existing superblock, will be ignored
[   91.743909] using random self ethernet address
[   91.743941] using random host ethernet address
[   91.795909] using random self ethernet address
[   91.795942] using random host ethernet address
[   91.923151] Mass Storage Function, version: 2009/09/11
[   91.923185] LUN: removable file: (no medium)
[   92.033455] usb0: HOST MAC 60:64:05:26:12:f2
[   92.033645] usb0: MAC 60:64:05:26:12:f3
[   92.040048] usb1: HOST MAC 60:64:05:26:12:f5
[   92.040160] usb1: MAC 60:64:05:26:12:f6
[   92.370820] configfs-gadget gadget: high-speed config #1: c
[   92.584755] IPv6: ADDRCONF(NETDEV_UP): usb1: link is not ready
[   94.298028] RTL871X: module init start
[   94.298064] RTL871X: rtl8723bu v4.3.6.11_12942.20141204_BTCOEX20140507-4E40
[   94.298072] RTL871X: rtl8723bu BT-Coex version = BTCOEX20140507-4E40
[   95.667895] RTL871X: rtw_ndev_init(wlan2)
[   95.761490] RTL871X: rtw_ndev_init(wlan3)
[   95.793400] usbcore: registered new interface driver rtl8723bu
[   95.793429] RTL871X: module init ret=0
[  101.793925] Error: Driver 'ecap' is already registered, aborting...
[  102.052841] Error: Driver 'ecap' is already registered, aborting...
[  102.096509] tda998x 0-0070: found TDA19988
[  102.101426] tilcdc 4830e000.lcdc: bound 0-0070 (ops tda998x_ops [tda998x])
[  102.101461] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[  102.101469] [drm] No driver support for vblank timestamp query.
[  102.101964] tilcdc 4830e000.lcdc: No connectors reported connected with modes
[  102.101993] [drm] Cannot find any crtc or sizes - going 1024x768
[  102.165553] Console: switching to colour frame buffer device 128x48
[  102.205570] tilcdc 4830e000.lcdc: fb0:  frame buffer device
[  102.205773] [drm] Initialized tilcdc 1.0.0 20121205 on minor 0
[  105.917829] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[  105.917855] Bluetooth: BNEP filters: protocol multicast
[  105.917886] Bluetooth: BNEP socket layer initialized
[  106.114319] mt7601u 1-1.1.1.1:1.0 wlx70886b80142d: renamed from wlan0
[  106.230612] mt7601u 1-1.1.3.3:1.0 wlx70886b8011cb: renamed from wlan1
[  106.646389] rtl8723bu 1-1.4:1.2 wlx54c9df66d27f: renamed from wlan2
[  106.817855] asoc-simple-card sound: i2s-hifi <-> 48038000.mcasp mapping ok
[  107.915528] net eth0: initializing cpsw version 1.12 (0)
[  107.915635] net eth0: initialized cpsw ale version 1.4
[  107.915645] net eth0: ALE Table size 1024
[  107.981984] net eth0: phy found : id is : 0x4dd072
[  107.998256] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[  110.862048] rtc-ds1307 2-0068: rtc core: registered ds1307 as rtc1
[  110.862095] rtc-ds1307 2-0068: 56 bytes nvram
[  110.873461] i2c i2c-2: new_device: Instantiated device ds1307 at 0x68
[  110.982281] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control off
[  110.982405] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready

Reply all
Reply to author
Forward
0 new messages