did someone run HDMI CEC on an ODroid XU4? I cant get this running.
boot.ini:
Code: Select all
ODROIDXU-UBOOT-CONFIG
# U-Boot Parameters
setenv initrd_high "0xffffffff"
setenv fdt_high "0xffffffff"
# Mac address configuration
setenv macaddr "00:1e:06:61:7a:72"
#------------------------------------------------------------------------------------------------------
# Basic Ubuntu Setup. Don't touch unless you know what you are doing.
# --------------------------------
setenv bootrootfs "console=tty1 console=ttySAC2,115200n8 root=UUID=3032ee2a-4efc-40b6-9c1f-2839a840144d rootwait ro fsck.repair=yes net.ifnames=0"
# --- Screen Configuration for HDMI --- #
setenv videoconfig "drm_kms_helper.edid_firmware=edid/1920x1080.bin"
# --- HDMI / DVI Mode Selection ---
# ------------------------------------------
# - HDMI Mode
setenv vout "hdmi"
# - DVI Mode (disables sound over HDMI as per DVI compat)
setenv vout "hdmi"
# --- CPU Governor Setup ---
# - DietPi will override this setting to user configured in dietpi-config > Performance Options > CPU gov.
setenv governor "performance"
#------------------------------------------------------------------------------
#
# HDMI Hot Plug detection
#
#------------------------------------------------------------------------------
#
# Forces the HDMI subsystem to ignore the check if the cable is connected or
# not.
# false : disable the detection and force it as connected.
# true : let cable, board and monitor decide the connection status.
#
# default: true
#
#------------------------------------------------------------------------------
setenv HPD "true"
# --- HDMI CEC Configuration ---
# ------------------------------------------
setenv cecenable "true" # false or true
# set to true to enable HDMI CEC
#------------------------------------------------------------------------------
#
# TMDS data amplitude control.
#
#------------------------------------------------------------------------------
#
# 1LSB corresponds to 20 mVdiff amplitude level.
# tx_amp_lvl : 0 = 760 mVdiff(Min), 31 = 1380 mVdiff(Max)
#
# Hardkernel default hdmi_tx_amp_lvl = 31(1380 mVdiff);
#------------------------------------------------------------------------------
setenv hdmi_tx_amp_lvl "31"
#------------------------------------------------------------------------------
#
# TMDS data amplitude fine control for each channel.
#
#------------------------------------------------------------------------------
#
# 1LSB corresponds to 20 mVdiff amplitude level.
# tx_lvl : 0 = 0 mVdiff(Min), 3 = 60 mVdiff(Max)
#
# Hardkernel default
# hdmi_tx_lvl_ch0 = 3, hdmi_tx_lvl_ch1 = 3, hdmi_tx_lvl_ch2 = 3,
#------------------------------------------------------------------------------
setenv hdmi_tx_lvl_ch0 "3"
setenv hdmi_tx_lvl_ch1 "3"
setenv hdmi_tx_lvl_ch2 "3"
#------------------------------------------------------------------------------
#
# TMDS data pre-emphasis level control.
#
#------------------------------------------------------------------------------
#
# 1LSB corresponds to -0.45dB emphasis level except for 1
# tx_emp_lvl : 0 = 0 db(Min), 1 = -0.25 db, 2 = 0.7 db, 15 = -7.45 db(Max)
#
# Hardkernel default hdmi_tx_emp_lvl = 6 (-2.50 db);
#------------------------------------------------------------------------------
setenv hdmi_tx_emp_lvl "6"
#------------------------------------------------------------------------------
#
# TMDS clock amplitude control.
#
#------------------------------------------------------------------------------
#
# 1LSB corresponds to 20 mVdiff amplitude level.
# clk_amp_lvl : 0 = 790 mVdiff(Min), 31 = 1410 mVdiff(Max)
#
# Hardkernel default hdmi_clk_amp_lvl = 31 (1410 mVdiff)
#------------------------------------------------------------------------------
setenv hdmi_clk_amp_lvl "31"
#------------------------------------------------------------------------------
#
# TMDS data source termination resistor control.
#
#------------------------------------------------------------------------------
#
# tx_res :
# 0 = Source Termination OFF(Min), 1 = 200 ohm, 2 = 300 ohm, 3 = 120 ohm(Max)
#
# Hardkernrel default hdmi_tx_res = 0 (Source Termination OFF)
#------------------------------------------------------------------------------
setenv hdmi_tx_res "0"
#------------------------------------------------------------------------------
setenv hdmi_phy_control "hdmi_tx_amp_lvl=${hdmi_tx_amp_lvl} hdmi_tx_lvl_ch0=${hdmi_tx_lvl_ch0} hdmi_tx_lvl_ch1=${hdmi_tx_lvl_ch1} hdmi_tx_lvl_ch2=${hdmi_tx_lvl_ch2} hdmi_tx_emp_lvl=${hdmi_tx_emp_lvl} hdmi_clk_amp_lvl=${hdmi_clk_amp_lvl} hdmi_tx_res=${hdmi_tx_res} HPD=${HPD} vout=${vout}"
# Load kernel, initrd and dtb in that sequence
fatload mmc 0:1 0x40008000 zImage
fatload mmc 0:1 0x42000000 uInitrd
if test "${board_name}" = "xu4"; then fatload mmc 0:1 0x44000000 exynos5422-odroidxu4.dtb; setenv fdtloaded "true"; fi
if test "${board_name}" = "xu3"; then fatload mmc 0:1 0x44000000 exynos5422-odroidxu3.dtb; setenv fdtloaded "true"; fi
if test "${board_name}" = "xu3l"; then fatload mmc 0:1 0x44000000 exynos5422-odroidxu3-lite.dtb; setenv fdtloaded "true"; fi
#failsafe
if test "x${board_name}" = "x"; then fatload mmc 0:1 0x44000000 exynos5422-odroidxu4.dtb; fi
# set FDT address
fdt addr 0x44000000
if test "${cecenable}" = "false"; then fdt rm /cec@101B0000; fi
if test "${disable_vu7}" = "false"; then setenv hid_quirks "usbhid.quirks=0x0eef:0x0005:0x0004"; fi
# final boot args
setenv bootargs "${bootrootfs} ${videoconfig} smsc95xx.macaddr=${macaddr} governor=${governor} ${hdmi_phy_control} ${hid_quirks}"
# drm.debug=0xff"
# Boot the board
bootz 0x40008000 0x42000000 0x44000000
Code: Select all
[ 0.000000] Booting Linux on physical CPU 0x100
[ 0.000000] Linux version 4.14.66+ (root@loki) (gcc version 4.9.2 (Debian 4.9.2-10+deb8u1)) #1 SMP PREEMPT Thu Aug 23 05:59:33 UTC 2018
[ 0.000000] CPU: ARMv7 Processor [410fc073] revision 3 (ARMv7), cr=10c5387d
[ 0.000000] CPU: div instructions available: patching division code
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] OF: fdt: Machine model: Hardkernel Odroid XU4
[ 0.000000] Memory policy: Data cache writealloc
[ 0.000000] cma: Reserved 128 MiB at 0xb6800000
[ 0.000000] Samsung CPU ID: 0xe5422001
[ 0.000000] On node 0 totalpages: 518656
[ 0.000000] free_area_init_node: node 0, pgdat c0d8e980, node_mem_map eee25000
[ 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: 322048 pages, LIFO batch:31
[ 0.000000] Running under secure firmware.
[ 0.000000] random: get_random_bytes called from start_kernel+0x8c/0x420 with crng_init=0
[ 0.000000] percpu: Embedded 17 pages/cpu @eed65000 s37568 r8192 d23872 u69632
[ 0.000000] pcpu-alloc: s37568 r8192 d23872 u69632 alloc=17*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 516928
[ 0.000000] Kernel command line: console=tty1 console=ttySAC2,115200n8 root=UUID=3032ee2a-4efc-40b6-9c1f-2839a840144d rootwait ro fsck.repair=yes net.ifnames=0 drm_kms_helper.edid_firmware=edid/1920x1080.bin smsc95xx.macaddr=00:1e:06:61:7a:72 governor=performance hdmi_tx_amp_lvl=31 hdmi_tx_lvl_ch0=3 hdmi_tx_lvl_ch1=3 hdmi_tx_lvl_ch2=3 hdmi_tx_emp_lvl=6 hdmi_clk_amp_lvl=31 hdmi_tx_res=0 HPD=true vout=hdmi s5p_mfc.mem=16M
[ 0.000000] hdmi: using HDMI mode
[ 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: 1904744K/2074624K available (8192K kernel code, 655K rwdata, 2352K rodata, 1024K init, 329K bss, 38808K reserved, 131072K cma-reserved, 1157120K 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 - 0xc0900000 (9184 kB)
.init : 0xc0c00000 - 0xc0d00000 (1024 kB)
.data : 0xc0d00000 - 0xc0da3f50 ( 656 kB)
.bss : 0xc0dab0b4 - 0xc0dfd5fc ( 330 kB)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] hperf_hmp: fast CPUs mask: 000000F0
[ 0.000000] hperf_hmp: slow CPUs mask: 0000000F
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] Tasks RCU enabled.
[ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[ 0.000000] GIC: Using split EOI/Deactivate mode
[ 0.000000] Switching to timer-based delay loop, resolution 41ns
[ 0.000000] clocksource: mct-frc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
[ 0.000007] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns
[ 0.000032] genirq: irq_chip COMBINER did not update eff. affinity mask of irq 49
[ 0.001614] Console: colour dummy device 80x30
[ 0.002353] console [tty1] enabled
[ 0.002395] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
[ 0.002437] pid_max: default: 32768 minimum: 301
[ 0.002639] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.002680] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.003539] CPU: Testing write buffer coherency: ok
[ 0.004452] CPU0: thread -1, cpu 0, socket 1, mpidr 80000100
[ 0.020048] Setting up static identity map for 0x40100000 - 0x40100060
[ 0.020673] ARM CCI driver probed
[ 0.020906] Exynos MCPM support installed
[ 0.027986] Hierarchical SRCU implementation.
[ 0.043985] smp: Bringing up secondary CPUs ...
[ 0.072402] CPU1: thread -1, cpu 1, socket 1, mpidr 80000101
[ 0.096363] CPU2: thread -1, cpu 2, socket 1, mpidr 80000102
[ 0.124357] CPU3: thread -1, cpu 3, socket 1, mpidr 80000103
[ 0.152280] CPU4: thread -1, cpu 0, socket 0, mpidr 80000000
[ 0.172262] CPU5: thread -1, cpu 1, socket 0, mpidr 80000001
[ 0.180607] CPU6: thread -1, cpu 2, socket 0, mpidr 80000002
[ 0.188597] CPU7: thread -1, cpu 3, socket 0, mpidr 80000003
[ 0.188749] smp: Brought up 1 node, 8 CPUs
[ 0.188897] SMP: Total of 8 processors activated (384.00 BogoMIPS).
[ 0.188920] CPU: All CPU(s) started in HYP mode.
[ 0.188939] CPU: Virtualization extensions available.
[ 0.190719] devtmpfs: initialized
[ 0.208094] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
[ 0.208293] hperf_hmp: registered cpufreq transition notifier
[ 0.208484] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.208522] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 0.210983] pinctrl core: initialized pinctrl subsystem
[ 0.213146] NET: Registered protocol family 16
[ 0.218339] DMA: preallocated 1024 KiB pool for atomic coherent allocations
[ 0.224345] cpuidle: using governor menu
[ 0.225294] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[ 0.225322] hw-breakpoint: maximum watchpoint size is 8 bytes.
[ 0.233765] exynos-audss-clk 3810000.audss-clock-controller: epll 180633609
[ 0.256647] EXYNOS5420 PMU initialized
[ 0.303129] usbcore: registered new interface driver usbfs
[ 0.303196] usbcore: registered new interface driver hub
[ 0.303351] usbcore: registered new device driver usb
[ 0.303791] i2c-gpio soc:i2c-hdmi: using pins 177 (SDA) and 178 (SCL)
[ 0.304379] s3c-i2c 12c70000.i2c: slave address 0x00
[ 0.304406] s3c-i2c 12c70000.i2c: bus frequency set to 378 KHz
[ 0.304633] s3c-i2c 12c70000.i2c: i2c-1: S3C I2C adapter
[ 0.305135] media: Linux media interface: v0.10
[ 0.305184] Linux video capture interface: v2.00
[ 0.305295] pps_core: LinuxPPS API ver. 1 registered
[ 0.305315] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.305574] s3c2410-wdt 101d0000.watchdog: watchdog inactive, reset disabled, irq disabled
[ 0.306428] Advanced Linux Sound Architecture Driver Initialized.
[ 0.307787] clocksource: Switched to clocksource mct-frc
[ 0.365954] VFS: Disk quotas dquot_6.6.0
[ 0.366045] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.379594] NET: Registered protocol family 2
[ 0.380235] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.380329] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.380497] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.380613] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.380664] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.380878] NET: Registered protocol family 1
[ 0.381554] RPC: Registered named UNIX socket transport module.
[ 0.381577] RPC: Registered udp transport module.
[ 0.381595] RPC: Registered tcp transport module.
[ 0.381613] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.381813] Trying to unpack rootfs image as initramfs...
[ 0.671800] random: fast init done
[ 0.719689] Freeing initrd memory: 5584K
[ 0.721300] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available
[ 0.722338] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
[ 0.725769] audit: initializing netlink subsys (disabled)
[ 0.725994] audit: type=2000 audit(0.720:1): state=initialized audit_enabled=0 res=1
[ 0.726573] Initialise system trusted keyrings
[ 0.726765] workingset: timestamp_bits=14 max_order=19 bucket_order=5
[ 0.733927] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.734786] NFS: Registering the id_resolver key type
[ 0.734826] Key type id_resolver registered
[ 0.734845] Key type id_legacy registered
[ 0.734873] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 0.734925] romfs: ROMFS MTD (C) 2007 Red Hat, Inc.
[ 0.739587] Key type asymmetric registered
[ 0.739611] Asymmetric key parser 'x509' registered
[ 0.739679] bounce: pool size: 64 pages
[ 0.739742] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[ 0.740001] io scheduler noop registered
[ 0.740024] io scheduler deadline registered
[ 0.740274] io scheduler cfq registered (default)
[ 0.740296] io scheduler mq-deadline registered
[ 0.740315] io scheduler kyber registered
[ 0.740558] io scheduler bfq registered
[ 0.742922] samsung-usb2-phy 12130000.phy: 12130000.phy supply vbus not found, using dummy regulator
[ 0.743935] exynos5_usb3drd_phy 12100000.phy: 12100000.phy supply vbus not found, using dummy regulator
[ 0.744028] exynos5_usb3drd_phy 12100000.phy: 12100000.phy supply vbus-boost not found, using dummy regulator
[ 0.744408] exynos5_usb3drd_phy 12500000.phy: 12500000.phy supply vbus not found, using dummy regulator
[ 0.744494] exynos5_usb3drd_phy 12500000.phy: 12500000.phy supply vbus-boost not found, using dummy regulator
[ 0.749281] dma-pl330 3880000.adma: Loaded driver for PL330 DMAC-241330
[ 0.749311] dma-pl330 3880000.adma: DBUFF-4x8bytes Num_Chans-6 Num_Peri-16 Num_Events-6
[ 0.751902] dma-pl330 121a0000.pdma: Loaded driver for PL330 DMAC-241330
[ 0.751929] dma-pl330 121a0000.pdma: DBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32
[ 0.754479] dma-pl330 121b0000.pdma: Loaded driver for PL330 DMAC-241330
[ 0.754507] dma-pl330 121b0000.pdma: DBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32
[ 0.755337] dma-pl330 10800000.mdma: Loaded driver for PL330 DMAC-241330
[ 0.755364] dma-pl330 10800000.mdma: DBUFF-64x8bytes Num_Chans-8 Num_Peri-1 Num_Events-32
[ 0.816414] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 0.818691] 12c00000.serial: ttySAC0 at MMIO 0x12c00000 (irq = 58, base_baud = 0) is a S3C6400/10
[ 0.819096] 12c10000.serial: ttySAC1 at MMIO 0x12c10000 (irq = 59, base_baud = 0) is a S3C6400/10
[ 0.819485] 12c20000.serial: ttySAC2 at MMIO 0x12c20000 (irq = 60, base_baud = 0) is a S3C6400/10
[ 1.730182] console [ttySAC2] enabled
[ 1.734171] 12c30000.serial: ttySAC3 at MMIO 0x12c30000 (irq = 61, base_baud = 0) is a S3C6400/10
[ 1.744831] exynos-mixer 14450000.mixer: Linked as a consumer to 14650000.sysmmu
[ 1.750846] iommu: Adding device 14450000.mixer to group 0
[ 1.757883] exynos-hdmi 14530000.hdmi: Failed to get supply 'vdd': -517
[ 1.763737] exynos-drm-g2d 10850000.g2d: Linked as a consumer to 10a60000.sysmmu
[ 1.770530] exynos-drm-g2d 10850000.g2d: Linked as a consumer to 10a70000.sysmmu
[ 1.777848] iommu: Adding device 10850000.g2d to group 1
[ 1.783450] exynos-drm-g2d 10850000.g2d: The Exynos G2D (ver 4.1) successfully probed.
[ 1.792061] exynos-rot 11c00000.rotator: Linked as a consumer to 11d40000.sysmmu
[ 1.798379] iommu: Adding device 11c00000.rotator to group 2
[ 1.804340] exynos-rot 11c00000.rotator: The exynos rotator is probed successfully
[ 1.812332] exynos-drm-ipp exynos-drm-ipp: drm ipp registered successfully.
[ 1.822755] mali 11800000.mali: Continuing without Mali regulator control
[ 1.828862] mali 11800000.mali: GPU identified as 0x0620 r0p1 status 0
[ 1.835101] mali 11800000.mali: Protected mode not available
[ 1.840659] devfreq devfreq0: Couldn't update frequency transition information.
[ 1.848264] mali 11800000.mali: Probed as mali0
[ 1.861704] brd: module loaded
[ 1.863942] libphy: Fixed MDIO Bus: probed
[ 1.867692] usbcore: registered new interface driver r8152
[ 1.872900] usbcore: registered new interface driver cdc_ether
[ 1.878710] usbcore: registered new interface driver cdc_subset
[ 1.886592] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.891708] ehci-exynos: EHCI EXYNOS driver
[ 1.896171] exynos-ehci 12110000.usb: EHCI Host Controller
[ 1.901321] exynos-ehci 12110000.usb: new USB bus registered, assigned bus number 1
[ 1.909212] exynos-ehci 12110000.usb: irq 80, io mem 0x12110000
[ 1.927842] exynos-ehci 12110000.usb: USB 2.0 started, EHCI 1.00
[ 1.932677] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.939175] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.946362] usb usb1: Product: EHCI Host Controller
[ 1.951208] usb usb1: Manufacturer: Linux 4.14.66+ ehci_hcd
[ 1.956785] usb usb1: SerialNumber: 12110000.usb
[ 1.961912] hub 1-0:1.0: USB hub found
[ 1.965114] hub 1-0:1.0: 3 ports detected
[ 1.969978] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.975225] ohci-exynos: OHCI EXYNOS driver
[ 1.979573] exynos-ohci 12120000.usb: USB Host Controller
[ 1.984768] exynos-ohci 12120000.usb: new USB bus registered, assigned bus number 2
[ 1.992479] exynos-ohci 12120000.usb: irq 80, io mem 0x12120000
[ 2.060073] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.065428] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.072791] usb usb2: Product: USB Host Controller
[ 2.077380] usb usb2: Manufacturer: Linux 4.14.66+ ohci_hcd
[ 2.082923] usb usb2: SerialNumber: 12120000.usb
[ 2.088110] hub 2-0:1.0: USB hub found
[ 2.091247] hub 2-0:1.0: 3 ports detected
[ 2.097496] mousedev: PS/2 mouse device common for all mice
[ 2.102968] i2c /dev entries driver
[ 2.120267] vdd_ldo9: Bringing 3300000uV into 3000000-3000000uV
[ 2.142958] vdd_sd: Bringing 3300000uV into 2800000-2800000uV
[ 2.165852] vdd_ldo30: Bringing 1800000uV into 3300000-3300000uV
[ 2.907851] usb 2-1: new full-speed USB device number 2 using exynos-ohci
[ 3.138928] usb 2-1: New USB device found, idVendor=04b3, idProduct=3016
[ 3.144214] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.151296] usb 2-1: Product: USB 1.1 2 port downstream low-power hub
[ 3.157706] usb 2-1: Manufacturer: Lite-On Tech
[ 3.163091] hub 2-1:1.0: USB hub found
[ 3.166926] hub 2-1:1.0: 4 ports detected
[ 3.237425] s5m-rtc s2mps14-rtc: rtc core: registered s5m-rtc as rtc0
[ 3.246297] s5p-jpeg 11f50000.jpeg: Linked as a consumer to 11f10000.sysmmu
[ 3.251881] iommu: Adding device 11f50000.jpeg to group 3
[ 3.257557] s5p-jpeg 11f50000.jpeg: encoder device registered as /dev/video30
[ 3.264468] s5p-jpeg 11f50000.jpeg: decoder device registered as /dev/video31
[ 3.271408] s5p-jpeg 11f50000.jpeg: Samsung S5P JPEG codec
[ 3.277066] s5p-jpeg 11f60000.jpeg: Linked as a consumer to 11f20000.sysmmu
[ 3.283844] iommu: Adding device 11f60000.jpeg to group 4
[ 3.289520] s5p-jpeg 11f60000.jpeg: encoder device registered as /dev/video32
[ 3.296438] s5p-jpeg 11f60000.jpeg: decoder device registered as /dev/video33
[ 3.303384] s5p-jpeg 11f60000.jpeg: Samsung S5P JPEG codec
[ 3.309925] s5p-mfc 11000000.codec: Linked as a consumer to 11200000.sysmmu
[ 3.315941] s5p-mfc 11000000.codec: Linked as a consumer to 11210000.sysmmu
[ 3.322760] iommu: Adding device 11000000.codec to group 5
[ 3.346022] s5p-mfc 11000000.codec: preallocated 16 MiB buffer for the firmware and context buffers
[ 3.354048] (NULL device *): Direct firmware load for s5p-mfc-v8.fw failed with error -2
[ 3.361705] s5p_mfc_load_firmware:73: Firmware is not present in the /lib/firmware directory nor compiled in kernel
[ 3.372273] s5p-mfc 11000000.codec: decoder registered as /dev/video10
[ 3.378751] s5p-mfc 11000000.codec: encoder registered as /dev/video11
[ 3.387453] exynos-gsc 13e00000.video-scaler: Linked as a consumer to 13e80000.sysmmu
[ 3.393952] iommu: Adding device 13e00000.video-scaler to group 6
[ 3.401172] exynos-gsc 13e10000.video-scaler: Linked as a consumer to 13e90000.sysmmu
[ 3.407761] iommu: Adding device 13e10000.video-scaler to group 7
[ 3.433646] thermal thermal_zone0: failed to read out thermal zone (-22)
[ 3.439844] thermal thermal_zone1: failed to read out thermal zone (-22)
[ 3.446498] thermal thermal_zone2: failed to read out thermal zone (-22)
[ 3.453207] thermal thermal_zone3: failed to read out thermal zone (-22)
[ 3.459922] thermal thermal_zone4: failed to read out thermal zone (-22)
[ 3.466398] device-mapper: uevent: version 1.0.3
[ 3.470517] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[ 3.475851] usb 2-1.3: new low-speed USB device number 3 using exynos-ohci
[ 3.499706] sdhci: Secure Digital Host Controller Interface driver
[ 3.504609] sdhci: Copyright(c) Pierre Ossman
[ 3.508963] Synopsys Designware Multimedia Card Interface Driver
[ 3.515330] dwmmc_exynos 12200000.mmc: IDMAC supports 32-bit address mode.
[ 3.521659] dwmmc_exynos 12200000.mmc: Using internal DMA controller.
[ 3.528002] dwmmc_exynos 12200000.mmc: Version ID is 250a
[ 3.533390] dwmmc_exynos 12200000.mmc: DW MMC controller at irq 83,64 bit host data width,64 deep fifo
[ 3.542788] dwmmc_exynos 12200000.mmc: allocated mmc-pwrseq
[ 3.568270] mmc_host mmc0: Bus speed (slot 0) = 50000000Hz (slot req 400000Hz, actual 396825HZ div = 63)
[ 3.596170] dwmmc_exynos 12220000.mmc: IDMAC supports 32-bit address mode.
[ 3.601631] dwmmc_exynos 12220000.mmc: Using internal DMA controller.
[ 3.605909] usb 2-1.3: New USB device found, idVendor=04b3, idProduct=3019
[ 3.605915] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.605919] usb 2-1.3: Product: IBM USB Travel Keyboard with UltraNav
[ 3.605923] usb 2-1.3: Manufacturer: Lite-On Tech
[ 3.633210] dwmmc_exynos 12220000.mmc: Version ID is 250a
[ 3.638601] dwmmc_exynos 12220000.mmc: DW MMC controller at irq 84,64 bit host data width,64 deep fifo
[ 3.668266] mmc_host mmc1: Bus speed (slot 0) = 50000000Hz (slot req 400000Hz, actual 396825HZ div = 63)
[ 3.691821] usb 2-1.4: new low-speed USB device number 4 using exynos-ohci
[ 3.697592] ledtrig-cpu: registered to indicate activity on CPUs
[ 3.706959] s5p-secss 10830000.sss: s5p-sss driver registered
[ 3.711831] hidraw: raw HID events driver (C) Jiri Kosina
[ 3.724733] exynos-nocp: new NoC Probe device registered: 10ca1000.nocp
[ 3.729994] exynos-nocp: new NoC Probe device registered: 10ca1400.nocp
[ 3.736595] exynos-nocp: new NoC Probe device registered: 10ca1800.nocp
[ 3.743317] exynos-nocp: new NoC Probe device registered: 10ca1c00.nocp
[ 3.753666] NET: Registered protocol family 17
[ 3.756948] NET: Registered protocol family 15
[ 3.761099] Key type dns_resolver registered
[ 3.765719] Registering SWP/SWPB emulation handler
[ 3.770440] registered taskstats version 1
[ 3.774187] Loading compiled-in X.509 certificates
[ 3.783621] Key type encrypted registered
[ 3.787806] NOHZ: local_softirq_pending 80
[ 3.804712] OF: graph: no port node found in /soc/hdmi@14530000
[ 3.810051] [drm] Exynos DRM: using 14450000.mixer device for DMA mapping operations
[ 3.817024] exynos-drm exynos-drm: bound 14450000.mixer (ops 0xc09664e0)
[ 3.823563] exynos-drm exynos-drm: bound 14530000.hdmi (ops 0xc0966b80)
[ 3.824911] usb 2-1.4: New USB device found, idVendor=06cb, idProduct=0009
[ 3.824917] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.824921] usb 2-1.4: Product: Composite TouchPad / TrackPoint
[ 3.824925] usb 2-1.4: Manufacturer: Synaptics Inc.
[ 3.841066] mmc_host mmc1: Bus speed (slot 0) = 50000000Hz (slot req 25000000Hz, actual 25000000HZ div = 1)
[ 3.841235] mmc1: new SDHC card at address e624
[ 3.842027] mmcblk1: mmc1:e624 SU08G 7.40 GiB
[ 3.854752] mmcblk1: p1 p2
[ 3.876410] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 3.882997] [drm] No driver support for vblank timestamp query.
[ 3.889004] [drm] Got built-in EDID base block and 0 extensions from "edid/1920x1080.bin" for connector "HDMI-A-1"
[ 3.906230] [drm] Got built-in EDID base block and 0 extensions from "edid/1920x1080.bin" for connector "HDMI-A-1"
[ 4.035035] Console: switching to colour frame buffer device 240x67
[ 4.056121] exynos-drm exynos-drm: fb0: frame buffer device
[ 4.062113] [drm] Initialized exynos 1.0.0 20110530 for exynos-drm on minor 0
[ 4.070722] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
[ 4.074801] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 3
[ 4.082656] xhci-hcd xhci-hcd.3.auto: hcc params 0x0220f04c hci version 0x100 quirks 0x02010010
[ 4.091136] xhci-hcd xhci-hcd.3.auto: irq 150, io mem 0x12000000
[ 4.097194] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 4.103823] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.111012] usb usb3: Product: xHCI Host Controller
[ 4.115854] usb usb3: Manufacturer: Linux 4.14.66+ xhci-hcd
[ 4.121401] usb usb3: SerialNumber: xhci-hcd.3.auto
[ 4.126552] hub 3-0:1.0: USB hub found
[ 4.129992] hub 3-0:1.0: 1 port detected
[ 4.134060] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
[ 4.139345] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 4
[ 4.146986] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
[ 4.153611] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 4.161719] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[ 4.168379] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.175571] usb usb4: Product: xHCI Host Controller
[ 4.180408] usb usb4: Manufacturer: Linux 4.14.66+ xhci-hcd
[ 4.185957] usb usb4: SerialNumber: xhci-hcd.3.auto
[ 4.191098] hub 4-0:1.0: USB hub found
[ 4.194546] hub 4-0:1.0: 1 port detected
[ 4.200467] xhci-hcd xhci-hcd.6.auto: xHCI Host Controller
[ 4.204539] xhci-hcd xhci-hcd.6.auto: new USB bus registered, assigned bus number 5
[ 4.212393] xhci-hcd xhci-hcd.6.auto: hcc params 0x0220f04c hci version 0x100 quirks 0x02010010
[ 4.220886] xhci-hcd xhci-hcd.6.auto: irq 151, io mem 0x12400000
[ 4.226922] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[ 4.233570] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.240763] usb usb5: Product: xHCI Host Controller
[ 4.245599] usb usb5: Manufacturer: Linux 4.14.66+ xhci-hcd
[ 4.253115] usb usb5: SerialNumber: xhci-hcd.6.auto
[ 4.258804] hub 5-0:1.0: USB hub found
[ 4.263103] hub 5-0:1.0: 1 port detected
[ 4.267729] xhci-hcd xhci-hcd.6.auto: xHCI Host Controller
[ 4.273753] xhci-hcd xhci-hcd.6.auto: new USB bus registered, assigned bus number 6
[ 4.281954] xhci-hcd xhci-hcd.6.auto: Host supports USB 3.0 SuperSpeed
[ 4.289156] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[ 4.297916] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003
[ 4.305280] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.313057] usb usb6: Product: xHCI Host Controller
[ 4.318475] usb usb6: Manufacturer: Linux 4.14.66+ xhci-hcd
[ 4.324575] usb usb6: SerialNumber: xhci-hcd.6.auto
[ 4.330281] hub 6-0:1.0: USB hub found
[ 4.334566] hub 6-0:1.0: 1 port detected
[ 4.339931] s3c-rtc 101e0000.rtc: rtc disabled, re-enabling
[ 4.346005] s3c-rtc 101e0000.rtc: warning: invalid RTC value so initializing it
[ 4.353832] rtc rtc1: invalid alarm value: 1900-1-1 0:0:0
[ 4.359824] s3c-rtc 101e0000.rtc: rtc core: registered s3c as rtc1
[ 4.367615] exynos-bus: new bus device registered: soc:bus_wcore ( 84000 KHz ~ 400000 KHz)
[ 4.376811] exynos-bus: new bus device registered: soc:bus_noc ( 67000 KHz ~ 100000 KHz)
[ 4.385685] exynos-bus: new bus device registered: soc:bus_fsys_apb (200000 KHz ~ 200000 KHz)
[ 4.394954] exynos-bus: new bus device registered: soc:bus_fsys (200000 KHz ~ 200000 KHz)
[ 4.404020] exynos-bus: new bus device registered: soc:bus_fsys2 ( 75000 KHz ~ 150000 KHz)
[ 4.413203] exynos-bus: new bus device registered: soc:bus_mfc ( 96000 KHz ~ 333000 KHz)
[ 4.422208] exynos-bus: new bus device registered: soc:bus_gen ( 89000 KHz ~ 267000 KHz)
[ 4.431021] exynos-bus: new bus device registered: soc:bus_peri ( 67000 KHz ~ 67000 KHz)
[ 4.440133] exynos-bus: new bus device registered: soc:bus_g2d ( 84000 KHz ~ 333000 KHz)
[ 4.448985] exynos-bus: new bus device registered: soc:bus_g2d_acp ( 67000 KHz ~ 267000 KHz)
[ 4.458173] exynos-bus: new bus device registered: soc:bus_jpeg ( 75000 KHz ~ 300000 KHz)
[ 4.467068] exynos-bus: new bus device registered: soc:bus_jpeg_apb ( 84000 KHz ~ 167000 KHz)
[ 4.476241] exynos-bus: new bus device registered: soc:bus_disp1_fimd (120000 KHz ~ 200000 KHz)
[ 4.485631] exynos-bus: new bus device registered: soc:bus_disp1 (120000 KHz ~ 300000 KHz)
[ 4.494560] exynos-bus: new bus device registered: soc:bus_gscl_scaler (150000 KHz ~ 300000 KHz)
[ 4.503671] usb 3-1: new high-speed USB device number 2 using xhci-hcd
[ 4.511026] exynos-bus: new bus device registered: soc:bus_mscl ( 84000 KHz ~ 400000 KHz)
[ 4.519898] samsung-i2s 3830000.i2s: ASoC: Failed to create component debugfs directory
[ 4.528263] samsung-i2s 3830000.i2s: ASoC: Failed to create component debugfs directory
[ 4.537133] odroid-audio sound: multicodec <-> 3830000.i2s mapping ok
[ 4.546917] s5m-rtc s2mps14-rtc: setting system clock to 2000-01-01 00:00:10 UTC (946684810)
[ 4.560278] ALSA device list:
[ 4.563555] #0: Odroid-XU4
[ 4.567811] Freeing unused kernel memory: 1024K
[ 4.598901] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 4.605770] random: udevadm: uninitialized urandom read (16 bytes read)
[ 4.609236] random: udevadm: uninitialized urandom read (16 bytes read)
[ 4.660318] usb 3-1: New USB device found, idVendor=05e3, idProduct=0610
[ 4.667694] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.675265] usb 3-1: Product: USB2.0 Hub
[ 4.679626] usb 3-1: Manufacturer: GenesysLogic
[ 4.698128] hub 3-1:1.0: USB hub found
[ 4.702881] hub 3-1:1.0: 2 ports detected
[ 4.784018] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd
[ 4.810636] usb 4-1: New USB device found, idVendor=05e3, idProduct=0616
[ 4.817804] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.825363] usb 4-1: Product: USB3.0 Hub
[ 4.829720] usb 4-1: Manufacturer: GenesysLogic
[ 4.842164] hub 4-1:1.0: USB hub found
[ 4.846674] hub 4-1:1.0: 2 ports detected
[ 4.931832] NOHZ: local_softirq_pending 80
[ 4.938600] NOHZ: local_softirq_pending 282
[ 4.945312] NOHZ: local_softirq_pending 282
[ 4.951972] NOHZ: local_softirq_pending 282
[ 4.959840] NOHZ: local_softirq_pending 80
[ 4.968190] input: Lite-On Tech IBM USB Travel Keyboard with UltraNav as /devices/platform/soc/12120000.usb/usb2/2-1/2-1.3/2-1.3:1.0/0003:04B3:3019.0001/input/input0
[ 4.977345] NOHZ: local_softirq_pending 40
[ 4.996019] NOHZ: local_softirq_pending 40
[ 5.052116] hid-generic 0003:04B3:3019.0001: input,hidraw0: USB HID v1.00 Keyboard [Lite-On Tech IBM USB Travel Keyboard with UltraNav] on usb-12120000.usb-1.3/input0
[ 5.077710] input: Lite-On Tech IBM USB Travel Keyboard with UltraNav as /devices/platform/soc/12120000.usb/usb2/2-1/2-1.3/2-1.3:1.1/0003:04B3:3019.0002/input/input1
[ 5.081600] NOHZ: local_softirq_pending 40
[ 5.087826] NOHZ: local_softirq_pending 80
[ 5.160004] hid-generic 0003:04B3:3019.0002: input,hidraw1: USB HID v1.00 Device [Lite-On Tech IBM USB Travel Keyboard with UltraNav] on usb-12120000.usb-1.3/input1
[ 5.175709] usbcore: registered new interface driver usbhid
[ 5.181983] usbhid: USB HID core driver
[ 5.539915] usb 6-1: new SuperSpeed USB device number 2 using xhci-hcd
[ 5.568697] usb 6-1: New USB device found, idVendor=0bda, idProduct=8153
[ 5.578707] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[ 5.589133] usb 6-1: Product: USB 10/100/1000 LAN
[ 5.597105] usb 6-1: Manufacturer: Realtek
[ 5.604421] usb 6-1: SerialNumber: 000001000000
[ 5.777252] usb 6-1: reset SuperSpeed USB device number 2 using xhci-hcd
[ 5.844882] r8152 6-1:1.0 eth0: v1.09.9
[ 7.174098] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null)
[ 7.776335] systemd[1]: System time before build time, advancing clock.
[ 7.923462] NET: Registered protocol family 10
[ 7.929272] Segment Routing with IPv6
[ 7.938482] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 7.962693] 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)
[ 7.981809] systemd[1]: Detected architecture arm.
[ 8.005152] systemd[1]: Set hostname to <DietPi>.
[ 8.349676] systemd[1]: getty-static.service: Cannot add dependency job, ignoring: Unit getty-static.service is masked.
[ 8.361426] systemd[1]: systemd-logind.service: Cannot add dependency job, ignoring: Unit systemd-logind.service is masked.
[ 8.375370] systemd[1]: Created slice System Slice.
[ 8.400053] systemd[1]: Created slice system-getty.slice.
[ 8.420187] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 8.443932] systemd[1]: Listening on udev Kernel Socket.
[ 8.464010] systemd[1]: Listening on Journal Audit Socket.
[ 8.797049] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null)
[ 9.223400] Adding 55284k swap on /var/swap. Priority:-2 extents:2 across:151544k SS
[ 9.506981] systemd-journald[221]: Received request to flush runtime journal from PID 1
[ 9.638434] gpiomem-exynos 13400000.gpiomem: Initialised: GPIO register area is 2
[ 9.649490] gpiomem-exynos 13400000.gpiomem: Initialised: Registers at 0x13400000
[ 9.650031] Driver for 1-wire Dallas network protocol.
[ 9.682835] gpiomem-exynos 13400000.gpiomem: Initialised: Registers at 0x14010000
[ 9.683579] input: gpio_keys as /devices/platform/gpio_keys/input/input2
[ 9.985204] input: Synaptics Inc. Composite TouchPad / TrackPoint as /devices/platform/soc/12120000.usb/usb2/2-1/2-1.4/2-1.4:1.0/input/input3
[ 10.006228] input: Synaptics Inc. Composite TouchPad / TrackPoint (Stick) as /devices/platform/soc/12120000.usb/usb2/2-1/2-1.4/2-1.4:1.1/input/input4
[ 10.025442] usbcore: registered new interface driver synaptics_usb
[ 10.299831] random: crng init done
[ 10.304386] random: 7 urandom warning(s) missed due to ratelimiting
[ 11.405033] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 11.581048] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 11.602281] r8152 6-1:1.0 eth0: carrier on
[ 11.611448] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 20.443179] [drm] Got built-in EDID base block and 0 extensions from "edid/1920x1080.bin" for connector "HDMI-A-1"
[ 20.443269] [drm] Got built-in EDID base block and 0 extensions from "edid/1920x1080.bin" for connector "HDMI-A-1"
[ 27.902394] [drm] Got built-in EDID base block and 0 extensions from "edid/1920x1080.bin" for connector "HDMI-A-1"
Code: Select all
libCEC version: 4.0.1, compiled on Linux-3.16.0-4-armmp-lpae ... , features: P8_USB, DRM, P8_detect, randr
Found devices: NONE
Code: Select all
cec-client /dev/cec0
No device type given. Using 'recording device'
CEC Parser created - libCEC version 4.0.1
opening a connection to the CEC adapter...
DEBUG: [ 0] Broadcast (F): osd name set to 'Broadcast'
ERROR: [ 3503] error opening serial port '/dev/cec0': Couldn't lock the serial port
ERROR: [ 3503] could not open a connection (try 1)
Thanks a lot and best regards,
drakesoft