Cubietruck Mainline Kernel installation

This forum is for supported devices using an ARMv7 Allwinner SoC.

Cubietruck Mainline Kernel installation

Postby h4xx » Mon Jun 01, 2015 7:14 am

Hi there,

I´am new to the Cubietruck and had it working for a few days now.

The Cubietruck is currently running with a SD Card Image that i have installed
with Intructions from: http://archlinuxarm.org/platforms/armv7/allwinner/cubietruck

On this Page there is also a "guide" for installing the mainline kernel via $this->bbcode_second_pass_code('', 'pacman -Syu linux-armv7')

As a prerequisite installing an updated version of uboot (done this with pacman -Syu uboot-cubietruck) is required
for using the mainline kernel.

The System was running after installing the uboot-cubietruck package.

But after installing the linux-armv7 mainline Kernel package the system was unable to boot.

No blinking LED´s ect after that.

So anybody know what iam doing wrong?

I saw that i maybe have to update my boot.scr for using the Mainline Kernel but i did not found any running example for that.

Thanks in advance.
h4xx
 
Posts: 19
Joined: Wed Dec 25, 2013 12:34 pm

Re: Cubietruck Mainline Kernel installation

Postby Isgar » Mon Jun 01, 2015 8:45 am

I have exactly the same problem.

When connected to an HDMI display I see this: uboot seems to load the zImage kernel, but then nothing happens. It just displays two tux images on a blank screen. It does not find a initramfs_linux.img, should that exist?

And this is with a new SD card, with the old it throws a ext4_devread error. Even though reinstalling the legacy kernel works fine.
Isgar
 
Posts: 15
Joined: Thu Sep 04, 2014 10:45 pm

Re: Cubietruck Mainline Kernel installation

Postby krabat » Mon Jun 01, 2015 8:05 pm

On Linux mainline support of video output and everything related to multimedia like sound is still pretty poor. Can't tell much about HDMI but missing or faulty HDMI output doesn't necessarily mean the device didn't boot.
The latter applies to LEDs, too. These are switched on via the usual FEX files used on linux-sunxi kernel but not by the DTBs of mainline kernel (they can e. g. be handled by scripts on running systems).
Would be good to know what findings exactly make you believe the device didn't boot.

All in all setting up mainline kernel on Cubietruck without serial console isn't possible in a reasonable way right now, IMHO.

Regarding U-Boot installation of package uboot-cubietruck involves copying u-boot-sunxi-with-spl.bin to the beginning of the SD card. You may want to verify whether this has been working by running
$this->bbcode_second_pass_code('', '
$ dd bs=1 if=/dev/mmcblk0 skip=8192 count=352620 of=uboot_test
')and compare the checksums of u-boot-sunxi-with-spl.bin and uboot_test.
Also, you have to make sure boot.scr is suitable. You may want to compare the checksums of the one provided by package uboot-cubietruck and the one on your device. It's also possible to look at the content by running
$this->bbcode_second_pass_code('', '$ strings /path/to/boot.scr')Note that the boot.{txt,scr} shipping with package uboot-cubietruck expect the FHS on partition one of the SD card. So settings like mount partition one to /boot and place all the rest on different partitions aren't covered. Using initramfs-linux.img is optional, so booting shouldn't be prevented by lack of this file.
krabat
 
Posts: 57
Joined: Wed Jun 04, 2014 8:03 pm

Re: Cubietruck Mainline Kernel installation

Postby Abroxa » Tue Jun 02, 2015 3:54 pm

I have the same problem. Connecting to the serial console gives me

endless messages of that:
[4.293874] systemd[1]: Time has been changed
...
...

I also posted that here: viewtopic.php?f=33&t=8833 maybe this thread here is better suited.

Thanks for any help.
Abroxa
 
Posts: 5
Joined: Fri May 02, 2014 9:10 am

Re: Cubietruck Mainline Kernel installation

Postby Isgar » Tue Jun 02, 2015 3:59 pm

The uboot is correct. / is the only partition on the sd card. I am pretty sure it doesn't boot, as journalctl doesn't show the boot at all (after switching to legacy kernel).

That makes debugging particularly hard, as I don't have an UART (which is needed for serial console, right?)
Isgar
 
Posts: 15
Joined: Thu Sep 04, 2014 10:45 pm

Re: Cubietruck Mainline Kernel installation

Postby krabat » Tue Jun 02, 2015 5:36 pm

$this->bbcode_second_pass_quote('Isgar', '.').. as I don't have an UART (which is needed for serial console, right?)
If you mean a serial port on the host you want to connect to your Cubietruck then the answer is (fortunately) no. You may use an USB to serial adaptor as described e. g. on linux-sunxi.org/UART or linux-sunxi.org/Cubieboard/TTL. Things you badly have to care for are the voltage as adaptors providing more than 3,3V are available and harm your device and the wiring, in particular to avoid connecting an eventual VCC cable.
Personally I'm using this one which is featuring Prolific's PL2303 chipset and working well (not affiliated to the vendor in any way).

Aside from this it's one pretty weird issue. In particular as mainline kernel installed the very same way works well here.
That message regarding time change could be related to the fact that linux-sunxi and mainline kernel seem to use different ways to write to the RTC but actually shouldn't prevent booting.
If journald's failure is related it could help to temporarily set journald directive 'Storage' to 'volatile' or 'none', see man 5 journald.conf.
The message "Failed to run mainloop..." doesn't seem to be specific to Cubietruck: archlinuxarm.org/forum/viewtopic.php?f=58&t=8789.
krabat
 
Posts: 57
Joined: Wed Jun 04, 2014 8:03 pm

Re: Cubietruck Mainline Kernel installation

Postby h4xx » Wed Jun 03, 2015 1:47 pm

Today i compared my current uboot with the provided u-boot-sunxi-with-spl.bin.

They have both the same md5 checksum "df9aac7a2ffe8ab7bae51cc372295c0c".

/dev/mmcblk0p1

My boot.scr looks like this :

$this->bbcode_second_pass_code('', 'U-Boot boot script
part uuid ${devtype} ${devnum}:${bootpart} uuid
setenv bootargs console=${console} root=PARTUUID=${uuid} rw rootwait
if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/zImage; then
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/${fdtfile}; then
if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux.img; then
bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
else
bootz ${kernel_addr_r} - ${fdt_addr_r};
fi;
fi;
if load ${devtype} ${devnum}:${bootpart} 0x48000000 /boot/uImage; then
if load ${devtype} ${devnum}:${bootpart} 0x43000000 /boot/script.bin; then
setenv bootm_boot_mode sec;
bootm 0x48000000;
fi;
')

Still not having any idea how to solve this.

I played around using old boot.scr entries and generating a new one wit help from http://linux-sunxi.org/Manual_build_howto#boot.cmd with no success.
h4xx
 
Posts: 19
Joined: Wed Dec 25, 2013 12:34 pm

Re: Cubietruck Mainline Kernel installation

Postby h4xx » Thu Jun 04, 2015 10:48 am

Got my Cubietruck working now with the mainline kernel.

Changed my boot.scr to output to tty1 again.

$this->bbcode_second_pass_code('', 'part uuid ${devtype} ${devnum}:${bootpart} uuid
setenv bootargs console=tty1 root=PARTUUID=${uuid} rw rootwait

if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/zImage; then
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/${fdtfile}; then
if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux.img; then
bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
else
bootz ${kernel_addr_r} - ${fdt_addr_r};
fi;
fi;
fi

if load ${devtype} ${devnum}:${bootpart} 0x48000000 /boot/uImage; then
if load ${devtype} ${devnum}:${bootpart} 0x43000000 /boot/script.bin; then
setenv bootm_boot_mode sec;
bootm 0x48000000;
fi;
fi')

Changed my /etc/systemd/system.conf by adding

$this->bbcode_second_pass_code('', '
LogLevel=notice
')

To get rid of that $this->bbcode_second_pass_quote('', 's')ystemd[1]: Time has been changed
problem.

My boot process still was throwing out some errors and also takes a bit long.
But i think thats related to my system being messed up by me.

Please check if theese two steps are helping.
h4xx
 
Posts: 19
Joined: Wed Dec 25, 2013 12:34 pm

Re: Cubietruck Mainline Kernel installation

Postby Abroxa » Thu Jun 04, 2015 11:05 am

Thanks for the hints!

However, doesn't it just mute these "time has been changed" messages when you change systemd's severity level? I would like to know the cause of it. At least on my system they get pushed multiple times per second.

What does changing console output to tty1 actually do? I thought the default would be tty1 anyways.

Thanks for the help. I will try these settings asap.
Abroxa
 
Posts: 5
Joined: Fri May 02, 2014 9:10 am

Re: Cubietruck Mainline Kernel installation

Postby h4xx » Fri Jun 05, 2015 9:42 am

I also thought the default output is tty1.

And yes the "time has been changed" messages are just muted.

Also i found out that the system is not booting everytime.

The boot process still is very slow (up to 30min sometimes)

While logged in i also experienced a very slow behavior.

I don´t know what to do now.

Just will paste my dmesg output here so that someone else may find this helpful.

$this->bbcode_second_pass_code('', '[ 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.0.4-2-ARCH (builduser@leming) (gcc version 4.9.2 20150304 (prerelease) (GCC) ) #1 SMP Fri May 22 19:02:31 MDT 2015
[ 0.000000] CPU: ARMv7 Processor [410fc074] revision 4 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] Machine model: Cubietech Cubietruck
[ 0.000000] cma: Reserved 16 MiB at 0xbe800000
[ 0.000000] Memory policy: Data cache writealloc
[ 0.000000] On node 0 totalpages: 522240
[ 0.000000] free_area_init_node: node 0, pgdat c0fcb300, node_mem_map ee60b000
[ 0.000000] Normal zone: 1710 pages used for memmap
[ 0.000000] Normal zone: 0 pages reserved
[ 0.000000] Normal zone: 194560 pages, LIFO batch:31
[ 0.000000] HighMem zone: 327680 pages, LIFO batch:31
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: Using PSCI v0.1 Function IDs from DT
[ 0.000000] PERCPU: Embedded 12 pages/cpu @ee5d4000 s17024 r8192 d23936 u49152
[ 0.000000] pcpu-alloc: s17024 r8192 d23936 u49152 alloc=12*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 520530
[ 0.000000] Kernel command line: console=tty1 root=PARTUUID=58c523e2-01 rw rootwait
[ 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: 2036048K/2088960K available (10075K kernel code, 957K rwdata, 4116K rodata, 1040K init, 908K bss, 36528K reserved, 16384K cma-reserved, 1294336K highmem)
[ 0.000000] Virtual kernel memory layout:
vector : 0xffff0000 - 0xffff1000 ( 4 kB)
fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
vmalloc : 0xf0000000 - 0xff000000 ( 240 MB)
lowmem : 0xc0000000 - 0xef800000 ( 760 MB)
pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
.text : 0xc0008000 - 0xc0de3fc0 (14192 kB)
.init : 0xc0de4000 - 0xc0ee8000 (1040 kB)
.data : 0xc0ee8000 - 0xc0fd74f0 ( 958 kB)
.bss : 0xc0fd74f0 - 0xc10ba510 ( 909 kB)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.000000] NR_IRQS:16 nr_irqs:16 16
[ 0.000000] GIC physical location is 0x1c81000
[ 0.000000] Architected cp15 timer(s) running at 24.00MHz (phys).
[ 0.000008] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 2863311519744ns
[ 0.000022] Switching to timer-based delay loop, resolution 41ns
[ 0.001903] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956969942ns
[ 0.003082] Console: colour dummy device 80x30
[ 0.003924] console [tty1] enabled
[ 0.003972] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=120000)
[ 0.004025] pid_max: default: 32768 minimum: 301
[ 0.004169] Security Framework initialized
[ 0.004388] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.004425] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.005400] Initializing cgroup subsys blkio
[ 0.005457] Initializing cgroup subsys memory
[ 0.005518] Initializing cgroup subsys devices
[ 0.005553] Initializing cgroup subsys freezer
[ 0.005588] Initializing cgroup subsys net_cls
[ 0.005620] Initializing cgroup subsys perf_event
[ 0.005655] Initializing cgroup subsys net_prio
[ 0.005752] CPU: Testing write buffer coherency: ok
[ 0.005826] ftrace: allocating 36930 entries in 109 pages
[ 0.064644] /cpus/cpu@0 missing clock-frequency property
[ 0.064709] /cpus/cpu@1 missing clock-frequency property
[ 0.064740] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[ 0.064854] Setting up static identity map for 0x4090af88 - 0x4090b020
[ 0.068256] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[ 0.068374] Brought up 2 CPUs
[ 0.068435] SMP: Total of 2 processors activated (96.00 BogoMIPS).
[ 0.068458] CPU: All CPU(s) started in HYP mode.
[ 0.068477] CPU: Virtualization extensions available.
[ 0.069417] devtmpfs: initialized
[ 0.070698] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 4
[ 0.072403] xor: measuring software checksum speed
[ 0.119278] arm4regs : 1214.400 MB/sec
[ 0.169346] 8regs : 720.000 MB/sec
[ 0.219414] 32regs : 889.600 MB/sec
[ 0.269482] neon : 704.800 MB/sec
[ 0.269506] xor: using function: arm4regs (1214.400 MB/sec)
[ 0.269679] pinctrl core: initialized pinctrl subsystem
[ 0.278440] NET: Registered protocol family 16
[ 0.280437] DMA: preallocated 256 KiB pool for atomic coherent allocations
[ 0.291486] No ATAGs?
[ 0.291553] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[ 0.291605] hw-breakpoint: maximum watchpoint size is 8 bytes.
[ 0.293542] Serial: AMBA PL011 UART driver
[ 0.400166] raid6: int32x1 112 MB/s
[ 0.485283] raid6: int32x2 152 MB/s
[ 0.570437] raid6: int32x4 133 MB/s
[ 0.655521] raid6: int32x8 121 MB/s
[ 0.740577] raid6: neonx1 449 MB/s
[ 0.825675] raid6: neonx2 610 MB/s
[ 0.910895] raid6: neonx4 618 MB/s
[ 0.996130] raid6: neonx8 450 MB/s
[ 0.996154] raid6: using algorithm neonx4 (618 MB/s)
[ 0.996176] raid6: using intx1 recovery algorithm
[ 0.998734] reg-fixed-voltage ahci-5v: could not find pctldev for node /soc@01c00000/pinctrl@01c20800/ahci_pwr_pin@1, deferring probe
[ 0.998806] platform ahci-5v: Driver reg-fixed-voltage requests probe deferral
[ 0.998867] reg-fixed-voltage usb0-vbus: could not find pctldev for node /soc@01c00000/pinctrl@01c20800/usb0_vbus_pin@0, deferring probe
[ 0.998914] platform usb0-vbus: Driver reg-fixed-voltage requests probe deferral
[ 0.998967] reg-fixed-voltage usb1-vbus: could not find pctldev for node /soc@01c00000/pinctrl@01c20800/usb1_vbus_pin@0, deferring probe
[ 0.999012] platform usb1-vbus: Driver reg-fixed-voltage requests probe deferral
[ 0.999065] reg-fixed-voltage usb2-vbus: could not find pctldev for node /soc@01c00000/pinctrl@01c20800/usb2_vbus_pin@0, deferring probe
[ 0.999110] platform usb2-vbus: Driver reg-fixed-voltage requests probe deferral
[ 1.000000] reg-fixed-voltage vmmc3: could not find pctldev for node /soc@01c00000/pinctrl@01c20800/vmmc3_pin@0, deferring probe
[ 1.000056] platform vmmc3: Driver reg-fixed-voltage requests probe deferral
[ 1.003790] vgaarb: loaded
[ 1.005104] SCSI subsystem initialized
[ 1.005488] libata version 3.00 loaded.
[ 1.005866] usbcore: registered new interface driver usbfs
[ 1.005977] usbcore: registered new interface driver hub
[ 1.006080] usbcore: registered new device driver usb
[ 1.007582] media: Linux media interface: v0.10
[ 1.007673] Linux video capture interface: v2.00
[ 1.007803] pps_core: LinuxPPS API ver. 1 registered
[ 1.007830] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.007891] PTP clock support registered
[ 1.007989] EDAC MC: Ver: 3.0.0
[ 1.009412] Advanced Linux Sound Architecture Driver Initialized.
[ 1.010231] NetLabel: Initializing
[ 1.010262] NetLabel: domain hash size = 128
[ 1.010282] NetLabel: protocols = UNLABELED CIPSOv4
[ 1.010362] NetLabel: unlabeled traffic allowed by default
[ 1.010693] Switched to clocksource arch_sys_counter
[ 1.064205] simple-framebuffer bf800000.framebuffer: framebuffer at 0xbf800000, 0x300000 bytes, mapped to 0xf0400000
[ 1.064273] simple-framebuffer bf800000.framebuffer: format=x8r8g8b8, mode=1024x768x32, linelength=4096
[ 1.078543] Console: switching to colour frame buffer device 128x48
[ 1.091062] simple-framebuffer bf800000.framebuffer: fb0: simplefb registered!
[ 1.102912] NET: Registered protocol family 2
[ 1.104185] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 1.104497] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 1.104793] TCP: Hash tables configured (established 8192 bind 8192)
[ 1.105054] TCP: reno registered
[ 1.105166] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 1.105391] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 1.105971] NET: Registered protocol family 1
[ 1.106554] RPC: Registered named UNIX socket transport module.
[ 1.106741] RPC: Registered udp transport module.
[ 1.106877] RPC: Registered tcp transport module.
[ 1.107012] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 1.112449] PCI: CLS 0 bytes, default 64
[ 1.113500] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available
[ 1.121524] futex hash table entries: 512 (order: 3, 32768 bytes)
[ 1.135597] zpool: loaded
[ 1.140951] zbud: loaded
[ 1.146687] VFS: Disk quotas dquot_6.5.2
[ 1.151996] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 1.159121] NFS: Registering the id_resolver key type
[ 1.164207] Key type id_resolver registered
[ 1.169233] Key type id_legacy registered
[ 1.174177] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 1.182230] bounce: pool size: 64 pages
[ 1.187682] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[ 1.193179] io scheduler noop registered
[ 1.198450] io scheduler deadline registered
[ 1.203956] io scheduler cfq registered (default)
[ 1.210604] platform 1c13400.phy: Driver sun4i-usb-phy requests probe deferral
[ 1.221303] sun7i-a20-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver
[ 1.299169] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled
[ 1.328322] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a U6_16550A
[ 1.334455] Serial: AMBA driver
[ 1.341637] [drm] Initialized drm 1.1.0 20060810
[ 1.355466] loop: module loaded
[ 1.362744] Loading iSCSI transport class v2.0-870.
[ 1.368956] iscsi: registered transport (tcp)
[ 1.375560] platform 1c18000.sata: Driver ahci-sunxi requests probe deferral
[ 1.387671] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.393288] ehci-pci: EHCI PCI platform driver
[ 1.398781] ehci-platform: EHCI generic platform driver
[ 1.404401] platform 1c14000.usb: Driver ehci-platform requests probe deferral
[ 1.409947] platform 1c1c000.usb: Driver ehci-platform requests probe deferral
[ 1.415359] ehci-mxc: Freescale On-Chip EHCI Host driver
[ 1.420728] ehci-omap: OMAP-EHCI Host Controller driver
[ 1.426037] ehci-orion: EHCI orion driver
[ 1.431260] ehci-exynos: EHCI EXYNOS driver
[ 1.436467] tegra-ehci: Tegra EHCI driver
[ 1.441625] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.446732] ohci-pci: OHCI PCI platform driver
[ 1.451829] ohci-platform: OHCI generic platform driver
[ 1.457036] platform 1c14400.usb: Driver ohci-platform requests probe deferral
[ 1.462383] platform 1c1c400.usb: Driver ohci-platform requests probe deferral
[ 1.467558] ohci-exynos: OHCI EXYNOS driver
[ 1.472844] ohci-omap3: OHCI OMAP3 driver
[ 1.478151] usbcore: registered new interface driver uas
[ 1.483300] usbcore: registered new interface driver usb-storage
[ 1.488274] usbcore: registered new interface driver ums-cypress
[ 1.493151] usbcore: registered new interface driver ums_eneub6250
[ 1.498025] usbcore: registered new interface driver ums-freecom
[ 1.502855] usbcore: registered new interface driver ums-isd200
[ 1.507583] usbcore: registered new interface driver ums-usbat
[ 1.517770] sunxi-rtc 1c20d00.rtc: rtc core: registered rtc-sunxi as rtc0
[ 1.522528] sunxi-rtc 1c20d00.rtc: RTC enabled
[ 1.527653] i2c /dev entries driver
[ 1.533910] axp20x 0-0034: AXP20x variant AXP209 found
[ 1.547177] input: axp20x-pek as /devices/platform/soc@01c00000/1c2ac00.i2c/i2c-0/0-0034/axp20x-pek/input/input0
[ 1.555805] axp20x 0-0034: AXP20X driver loaded
[ 1.566981] sunxi-wdt 1c20c90.watchdog: Watchdog enabled (timeout=16 sec, nowayout=1)
[ 1.573304] Driver 'mmcblk' needs updating - please use bus_type methods
[ 1.578395] sdhci: Secure Digital Host Controller Interface driver
[ 1.583320] sdhci: Copyright(c) Pierre Ossman
[ 1.588789] Synopsys Designware Multimedia Card Interface Driver
[ 1.594789] sunxi-mmc 1c0f000.mmc: No vqmmc regulator found
[ 1.600325] sunxi-mmc 1c0f000.mmc: Got CD GPIO
[ 1.631016] sunxi-mmc 1c0f000.mmc: base:0xf00ae000 irq:26
[ 1.636346] platform 1c12000.mmc: Driver sunxi-mmc requests probe deferral
[ 1.641280] sdhci-pltfm: SDHCI platform and OF driver helper
[ 1.647860] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.653668] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.659085] usbcore: registered new interface driver usbhid
[ 1.663818] usbhid: USB HID core driver
[ 1.669119] ashmem: initialized
[ 1.673264] mmc0: host does not support reading read-only switch, assuming write-enable
[ 1.676065] mmc0: new high speed SDHC card at address 0002
[ 1.676893] mmcblk0: mmc0:0002 00000 7.32 GiB
[ 1.678253] mmcblk0: p1
[ 1.696969] oprofile: using timer interrupt.
[ 1.702035] TCP: cubic registered
[ 1.707477] NET: Registered protocol family 10
[ 1.713499] mip6: Mobile IPv6
[ 1.718240] NET: Registered protocol family 17
[ 1.723009] Key type dns_resolver registered
[ 1.729316] ThumbEE CPU extension supported.
[ 1.734002] Registering SWP/SWPB emulation handler
[ 1.739801] registered taskstats version 1
[ 1.747571] Btrfs loaded
[ 1.795774] ahci-sunxi 1c18000.sata: controller can't do PMP, turning off CAP_PMP
[ 1.800539] ahci-sunxi 1c18000.sata: SSS flag set, parallel bus scan disabled
[ 1.805314] ahci-sunxi 1c18000.sata: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl platform mode
[ 1.810207] ahci-sunxi 1c18000.sata: flags: ncq sntf stag pm led clo only pio slum part ccc
[ 1.816589] scsi host0: ahci-sunxi
[ 1.822018] ata1: SATA max UDMA/133 mmio [mem 0x01c18000-0x01c18fff] port 0x100 irq 30
[ 1.828613] ehci-platform 1c14000.usb: EHCI Host Controller
[ 1.834456] ehci-platform 1c14000.usb: new USB bus registered, assigned bus number 1
[ 1.840098] ehci-platform 1c14000.usb: irq 28, io mem 0x01c14000
[ 1.850746] ehci-platform 1c14000.usb: USB 2.0 started, EHCI 1.00
[ 1.856294] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.861647] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.866873] usb usb1: Product: EHCI Host Controller
[ 1.871958] usb usb1: Manufacturer: Linux 4.0.4-2-ARCH ehci_hcd
[ 1.876983] usb usb1: SerialNumber: 1c14000.usb
[ 1.882732] hub 1-0:1.0: USB hub found
[ 1.887724] hub 1-0:1.0: 1 port detected
[ 1.894090] ehci-platform 1c1c000.usb: EHCI Host Controller
[ 1.899367] ehci-platform 1c1c000.usb: new USB bus registered, assigned bus number 2
[ 1.904600] ehci-platform 1c1c000.usb: irq 31, io mem 0x01c1c000
[ 1.915735] ehci-platform 1c1c000.usb: USB 2.0 started, EHCI 1.00
[ 1.920898] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.925818] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.930661] usb usb2: Product: EHCI Host Controller
[ 1.935471] usb usb2: Manufacturer: Linux 4.0.4-2-ARCH ehci_hcd
[ 1.940279] usb usb2: SerialNumber: 1c1c000.usb
[ 1.945964] hub 2-0:1.0: USB hub found
[ 1.950782] hub 2-0:1.0: 1 port detected
[ 1.957064] ohci-platform 1c14400.usb: Generic Platform OHCI controller
[ 1.962280] ohci-platform 1c14400.usb: new USB bus registered, assigned bus number 3
[ 1.967315] ohci-platform 1c14400.usb: irq 29, io mem 0x01c14400
[ 2.029941] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.034758] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.039565] usb usb3: Product: Generic Platform OHCI controller
[ 2.044380] usb usb3: Manufacturer: Linux 4.0.4-2-ARCH ohci_hcd
[ 2.049219] usb usb3: SerialNumber: 1c14400.usb
[ 2.054892] hub 3-0:1.0: USB hub found
[ 2.060567] hub 3-0:1.0: 1 port detected
[ 2.066979] ohci-platform 1c1c400.usb: Generic Platform OHCI controller
[ 2.072342] ohci-platform 1c1c400.usb: new USB bus registered, assigned bus number 4
[ 2.077567] ohci-platform 1c1c400.usb: irq 32, io mem 0x01c1c400
[ 2.139931] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.144993] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.145741] ata1: SATA link down (SStatus 0 SControl 300)
[ 2.154927] usb usb4: Product: Generic Platform OHCI controller
[ 2.159875] usb usb4: Manufacturer: Linux 4.0.4-2-ARCH ohci_hcd
[ 2.164789] usb usb4: SerialNumber: 1c1c400.usb
[ 2.170909] hub 4-0:1.0: USB hub found
[ 2.175735] hub 4-0:1.0: 1 port detected
[ 2.182436] sunxi-mmc 1c12000.mmc: No vqmmc regulator found
[ 2.215748] sunxi-mmc 1c12000.mmc: base:0xf011e000 irq:27
[ 2.221681] sunxi-rtc 1c20d00.rtc: setting system clock to 2085-06-05 09:06:58 UTC (3642570418)
[ 2.226524] sr_init: No PMIC hook to init smartreflex
[ 2.230204] sunxi-mmc 1c12000.mmc: smc 1 err, cmd 8, RTO !!
[ 2.236184] sr_init: platform driver register failed for SR
[ 2.239728] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[ 2.241262] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[ 2.242789] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[ 2.245527] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[ 2.261581] mmc1: new high speed SDIO card at address 0001
[ 2.266433] Unable to find PPMU node
[ 2.271020] exynos5-bus-int: probe of exynos5-bus-int failed with error -2
[ 2.275727] PM: Hibernation image not present or could not be loaded.
[ 2.275758] usb0-vbus: disabling
[ 2.280618] ldo4: disabling
[ 2.285394] ldo3: disabling
[ 2.289978] vcc5v0: disabling
[ 2.295455] vcc3v0: disabling
[ 2.299923] ALSA device list:
[ 2.304140] No soundcards found.
[ 2.309706] EXT4-fs (mmcblk0p1): couldn't mount as ext3 due to feature incompatibilities
[ 2.315173] EXT4-fs (mmcblk0p1): couldn't mount as ext2 due to feature incompatibilities
[ 2.331435] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[ 2.335914] VFS: Mounted root (ext4 filesystem) on device 179:1.
[ 2.347085] devtmpfs: mounted
[ 2.353465] Freeing unused kernel memory: 1040K (c0de4000 - c0ee8000)
[ 2.435844] usb 3-1: new low-speed USB device number 2 using ohci-platform
[ 2.642822] usb 3-1: New USB device found, idVendor=046d, idProduct=c31c
[ 2.647405] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.651847] usb 3-1: Product: USB Keyboard
[ 2.656298] usb 3-1: Manufacturer: Logitech
[ 2.661048] random: systemd urandom read with 11 bits of entropy available
[ 2.674450] input: Logitech USB Keyboard as /devices/platform/soc@01c00000/1c14400.usb/usb3/3-1/3-1:1.0/0003:046D:C31C.0001/input/input1
[ 2.736178] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-1c14400.usb-1/input0
[ 2.761615] input: Logitech USB Keyboard as /devices/platform/soc@01c00000/1c14400.usb/usb3/3-1/3-1:1.1/0003:046D:C31C.0002/input/input2
[ 2.826480] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-1c14400.usb-1/input1
[ 3.365210] systemd[1]: Cannot add dependency job for unit org.freedesktop.resolve1.busname, ignoring: Unit org.freedesktop.resolve1.busname failed to load: No such file or directory.
[ 3.377308] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
[ 6.097949] systemd[1]: systemd-modules-load.service: main process exited, code=exited, status=1/FAILURE
[ 6.120158] systemd[1]: Failed to start Load Kernel Modules.
[ 6.129343] systemd-journald[99]: Failed to set file attributes: Inappropriate ioctl for device
[ 6.131470] systemd[1]: Unit systemd-modules-load.service entered failed state.
[ 6.131534] systemd[1]: systemd-modules-load.service failed.
[ 6.201628] systemd-journald[99]: Failed to set file attributes: Inappropriate ioctl for device
[ 6.749561] random: nonblocking pool is initialized
[ 12.144996] stmmaceth 1c50000.ethernet: no regulator found
[ 12.247637] stmmaceth 1c50000.ethernet: no reset control found
[ 12.293883] Ring mode enabled
[ 12.298886] No HW DMA feature register supported
[ 12.299042] Normal descriptors
[ 12.308651] TX Checksum insertion supported
[ 12.463595] cfg80211: Calling CRDA to update world regulatory domain
[ 12.507896] libphy: stmmac: probed
[ 12.512834] eth0: PHY ID 001cc915 at 0 IRQ POLL (stmmac-0:00) active
[ 12.512842] eth0: PHY ID 001cc915 at 1 IRQ POLL (stmmac-0:01)
[ 12.633589] usbcore: registered new interface driver brcmfmac
[ 12.672452] brcmfmac_sdio mmc1:0001:1: Direct firmware load for brcm/brcmfmac43362-sdio.txt failed with error -2
[ 13.685820] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 14.705878] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 15.936963] cfg80211: World regulatory domain updated:
[ 15.942427] cfg80211: DFS Master region: unset
[ 15.942582] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[ 15.953710] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 15.959513] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 15.965252] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[ 15.971031] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[ 15.976743] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[ 15.982325] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[ 15.987732] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[ 15.993123] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[ 52.887495] systemd-journald[99]: Received request to flush runtime journal from PID 1
[ 566.178377] RX IPC Checksum Offload disabled
[ 566.183692] No MAC Management Counters available
[ 568.176199] stmmaceth 1c50000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx')
h4xx
 
Posts: 19
Joined: Wed Dec 25, 2013 12:34 pm

Next

Return to Allwinner

Who is online

Users browsing this forum: No registered users and 12 guests

cron