RE: [PATCH v1] PCI: enable ASPM configuration in PCIE POWERSAVE mode

From: Vidya Sagar
Date: Tue Jul 08 2014 - 01:08:22 EST


> -----Original Message-----
> From: Bjorn Helgaas [mailto:bhelgaas@xxxxxxxxxx]
> Sent: Tuesday, July 08, 2014 2:43 AM
> To: Vidya Sagar
> Cc: nagananda.chumbalkar@xxxxxx; thierry.reding@xxxxxxxxx; Stephen
> Warren; Krishna Thota; linux-pci@xxxxxxxxxxxxxxx; linux-
> kernel@xxxxxxxxxxxxxxx; Matthew Garrett; Rafael J. Wysocki;
> tianyu.lan@xxxxxxxxx
> Subject: Re: [PATCH v1] PCI: enable ASPM configuration in PCIE POWERSAVE
> mode
>
> On Mon, Jul 7, 2014 at 12:00 PM, Vidya Sagar <vidyas@xxxxxxxxxx> wrote:
> >> -----Original Message-----
> >> From: Bjorn Helgaas [mailto:bhelgaas@xxxxxxxxxx]
> >> Sent: Sunday, July 06, 2014 12:32 AM
> >> To: Vidya Sagar
> >> Cc: nagananda.chumbalkar@xxxxxx; thierry.reding@xxxxxxxxx; Stephen
> >> Warren; Krishna Thota; linux-pci@xxxxxxxxxxxxxxx; linux-
> >> kernel@xxxxxxxxxxxxxxx; Matthew Garrett; Rafael J. Wysocki
> >> Subject: Re: [PATCH v1] PCI: enable ASPM configuration in PCIE
> >> POWERSAVE mode
> >>
> >> [+cc Rafael]
> >>
> >> On Sat, Jul 05, 2014 at 12:57:36PM -0600, Bjorn Helgaas wrote:
> >> > [+cc Matthew]
> >> >
> >> > On Tue, Jul 01, 2014 at 12:46:18PM +0530, Vidya Sagar wrote:
> >> > > commit 1a680b7c moved pcie_aspm_powersave_config_link() out of
> >> > > pci_raw_set_power_state() to pci_set_power_state() which would
> >> > > enable ASPM. But, with commit db288c9c, which re-introduced the
> >> > > following check
> >> > > ./drivers/pci/pci.c: pci_set_power_state()
> >> > > + /* Check if we're already there */
> >> > > + if (dev->current_state == state)
> >> > > + return 0;
> >> > > in pci_set_power_state(), call to
> >> > > pcie_aspm_powersave_config_link() is never made leaving ASPM
> broken.
> >> > > Fix it by not returning from when the above condition is true,
> >> > > rather, jump to ASPM configuration code and exit from there
> eventually.
> >> >
> >> > Rafael, Matthew, any comments? We have vacillated on this before
> >> > and the web is already pretty tangled.
> >> >
> >> > Vidya, can you give more details about the bug fixed by this change?
> >> > What's the scenario? Are we resuming and the device is powered up
> >> > but ASPM isn't enabled? Maybe you could collect more details in a
> >> > http://bugzilla.kernel.org report?
> >
> > I've raised a bugzilla bug
> https://bugzilla.kernel.org/show_bug.cgi?id=79621 for the same.
> > Scenario here is, when the driver of a particular PCIe device is loaded and
> when CONFIG_PCIEASPM_POWERSAVE=y, ASPM is expected to get
> configured by the sub system which is not happening as of today.
> > The reason for this behavior is the 'if' condition that checks for the device's
> power state and returns if it is already in D0. Ideally, it shouldn't return from
> there, rather proceed to configure ASPM.
>
> Thanks, Vidya. I'm not really looking for analysis of the code flow, since I can
> work that out myself. What I *would* like is a complete dmesg log and "lspci
> -vv" output, because I'd like to know what's special about this particular
> device. We boot with devices powered on (in D0) all the time, and most of
> the time, ASPM is configured correctly. So I want to know what is different
> about this case.
>
> Bjorn
>

Please find the attached files (before_aspm_patch.txt & after_aspm_patch.txt) with 'dmesg' and 'lspci -vvv' info.
BTW, my understanding is that this issue (enabling ASPM while booting) exists for all the devices which are in D0 state.
Please correct my understanding if it's wrong.
Of course, enabling aspm through writing 'powersave' to '/sys/module/pcie_aspm/parameters' is working fine always.


> >> > > Signed-off-by: Vidya Sagar <vidyas@xxxxxxxxxx>
> >> > > ---
> >> > > drivers/pci/pci.c | 6 ++++--
> >> > > 1 file changed, 4 insertions(+), 2 deletions(-)
> >> > >
> >> > > diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index
> >> > > 1c8592b..ded24c4 100644
> >> > > --- a/drivers/pci/pci.c
> >> > > +++ b/drivers/pci/pci.c
> >> > > @@ -804,7 +804,7 @@
> >> EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
> >> > > */
> >> > > int pci_set_power_state(struct pci_dev *dev, pci_power_t state)
> >> > > {
> >> > > - int error;
> >> > > + int error = 0;
> >> > >
> >> > > /* bound the state we're entering */
> >> > > if (state > PCI_D3cold)
> >> > > @@ -821,7 +821,7 @@ int pci_set_power_state(struct pci_dev *dev,
> >> > > pci_power_t state)
> >> > >
> >> > > /* Check if we're already there */
> >> > > if (dev->current_state == state)
> >> > > - return 0;
> >> > > + goto config_aspm;
> >> > >
> >> > > __pci_start_power_transition(dev, state);
> >> > >
> >> > > @@ -839,6 +839,8 @@ int pci_set_power_state(struct pci_dev *dev,
> >> > > pci_power_t state)
> >> > >
> >> > > if (!__pci_complete_power_transition(dev, state))
> >> > > error = 0;
> >> > > +
> >> > > +config_aspm:
> >> > > /*
> >> > > * When aspm_policy is "powersave" this call ensures
> >> > > * that ASPM is configured.
> >> > > --
> >> > > 1.8.1.5
> >> > >

ubuntu@tegra-ubuntu:~$ dmesg
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.10.33-g71c61a3-dirty (vidyas@vidyas-desktop) (gcc version 4.5.3 (crosstool-NG hg_unknown@xxxxxxxxxxxxxxx) ) #134 SMP PREEMPT Tue Jul 8 10:20:46 IST 2014
[ 0.000000] CPU: ARMv7 Processor [413fc0f3] revision 3 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
[ 0.000000] Machine: laguna, model: NVIDIA Tegra124 Laguna, serial: 0
[ 0.000000] Truncating memory at 0x80000000 to fit in 32-bit physical address space
[ 0.000000] Found vpr, start=0xf6900000 size=9700000
[ 0.000000] Found tsec, start=0xf4900000 size=2000000<6>[ 0.000000] Found tegra_fbmem: 01f60000@ad012000
[ 0.000000] Tegra reserved memory:
[ 0.000000] LP0: f46ff000 - f46ff80f
[ 0.000000] Bootloader framebuffer: ad012000 - aef71fff
[ 0.000000] Bootloader framebuffer2: 00000000 - 00000000
[ 0.000000] Framebuffer: eec00000 - efdfffff
[ 0.000000] 2nd Framebuffer: efe00000 - f45fffff
[ 0.000000] Carveout: 00000000 - 00000000
[ 0.000000] Vpr: f6900000 - ffffffff
[ 0.000000] Tsec: f4900000 - f68fffff
[ 0.000000] cma: CMA: reserved 16 MiB at ac000000
[ 0.000000] Memory policy: ECC disabled, Data cache writealloc
[ 0.000000] On node 0 totalpages: 453632
[ 0.000000] free_area_init_node: node 0, pgdat c0cbc940, node_mem_map c0e09000
[ 0.000000] Normal zone: 1520 pages used for memmap
[ 0.000000] Normal zone: 0 pages reserved
[ 0.000000] Normal zone: 194560 pages, LIFO batch:31
[ 0.000000] HighMem zone: 2204 pages used for memmap
[ 0.000000] HighMem zone: 259072 pages, LIFO batch:31
[ 0.000000] failed to read /chosen/proc-board/id
[ 0.000000] failed to read /chosen/pmu-board/id
[ 0.000000] DTS File Name: /home/vidyas/x/l4t-dev-kernel/kernel/arch/arm/boot/dts/tegra124-laguna.dts
[ 0.000000] Tegra12: CPU Speedo value 2425, Soc Speedo value 2367, Gpu Speedo value 2194
[ 0.000000] Tegra12: CPU Speedo ID 0, Soc Speedo ID 0, Gpu Speedo ID 0
[ 0.000000] Tegra12: CPU Process ID 0,Soc Process ID 1,Gpu Process ID 0
[ 0.000000] Tegra Revision: A01 SKU: 0x0 CPU Process: 0 Core Process: 1
[ 0.000000] tegra: PLLP fixed rate: 408000000
[ 0.000000] tegra_clk_shared_bus_user_init: c2bus client se left ON
[ 0.000000] tegra_clk_shared_bus_user_init: c3bus client tsec left ON
[ 0.000000] Lowering cpu_lp maximum rate from 1350000000 to 1044000000
[ 0.000000] Lowering sbus maximum rate from 420000000 to 372000000
[ 0.000000] Lowering vic03 maximum rate from 900000000 to 756000000
[ 0.000000] Lowering tsec maximum rate from 900000000 to 756000000
[ 0.000000] Lowering msenc maximum rate from 600000000 to 480000000
[ 0.000000] Lowering se maximum rate from 600000000 to 480000000
[ 0.000000] Lowering vde maximum rate from 600000000 to 480000000
[ 0.000000] Lowering host1x maximum rate from 500000000 to 408000000
[ 0.000000] Lowering vi maximum rate from 700000000 to 600000000
[ 0.000000] Lowering isp maximum rate from 700000000 to 600000000
[ 0.000000] Lowering c4bus maximum rate from 700000000 to 600000000
[ 0.000000] Lowering pll_c maximum rate from 1400000000 to 1066000000
[ 0.000000] Lowering pll_c2 maximum rate from 1200000000 to 1066000000
[ 0.000000] Lowering pll_c3 maximum rate from 1200000000 to 1066000000
[ 0.000000] Lowering hdmi maximum rate from 594000000 to 297000000
[ 0.000000] Lowering sdmmc1 maximum rate from 208000000 to 204000000
[ 0.000000] Lowering sdmmc3 maximum rate from 208000000 to 204000000
[ 0.000000] Lowering gbus maximum rate from 1032000000 to 648000000
[ 0.000000] Lowering cpu_g maximum rate from 3000000000 to 2014500000
[ 0.000000] tegra dvfs: VDD_CPU nominal 1220mV, scaling enabled
[ 0.000000] tegra dvfs: VDD_CORE nominal 1150mV, scaling enabled
[ 0.000000] tegra dvfs: VDD_GPU nominal 1200mV, scaling enabled
[ 0.000000] Switching to timer-based delay loop
[ 0.000000] tegra_powergate_init: DONE
[ 0.000000] PERCPU: Embedded 9 pages/cpu @c1cc2000 s14976 r8192 d13696 u36864
[ 0.000000] pcpu-alloc: s14976 r8192 d13696 u36864 alloc=9*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 452112
[ 0.000000] Kernel command line: tegraid=40.1.1.0.0 mem=1862M@2048M memtype=0 vpr=151M@3945M tsec=32M@3913M otf_key=930b4d084d819132a17ee733230d919f ddr_die=2048M@2048M section=256M commchip_id=0 usb_port_owner_info=0 lane_owner_info=4 emc_max_dvfs=0 touch_id=0@0 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debug_uartport=lsport,3 console=tty1 sku_override=0 usbcore.old_scheme_first=1 lp0_vec=2064@0xf46ff000 tegra_fbmem=32899072@0xad012000 core_edp_mv=1150 core_edp_ma=4000 pmuboard=0x0167:0x0000:0x02:0x43:0x00 power_supply=Adapter audio_codec=rt5640 board_info=0x0167:0x0000:0x02:0x43:0x00 root=/dev/mmcblk0p1 rw rootwait tegraboot=sdmmc gpt gpt_sector=94207 modem_id=0 watchdog=disable android.kerneltype=normal
[ 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: 1772MB = 1772MB total
[ 0.000000] Memory: 1735468k/1735468k available, 171220k reserved, 1036288K highmem
[ 0.000000] Virtual kernel memory layout:
[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
[ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
[ 0.000000] vmalloc : 0xf0000000 - 0xff000000 ( 240 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xef800000 ( 760 MB)
[ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
[ 0.000000] modules : 0xbe800000 - 0xbfe00000 ( 22 MB)
[ 0.000000] .text : 0xc0008000 - 0xc0b04848 (11251 kB)
[ 0.000000] .init : 0xc0b05000 - 0xc0b83a80 ( 507 kB)
[ 0.000000] .data : 0xc0b84000 - 0xc0cd4500 (1346 kB)
[ 0.000000] .bss : 0xc0cd4500 - 0xc0d5d884 ( 549 kB)
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] NR_IRQS:960
[ 0.000000] the number of interrupt controllers found is 5
[ 0.000000] Architected local timer running at 12.00MHz (phys).
[ 0.000000] sched_clock: 56 bits at 12MHz, resolution 83ns, wraps every 2863311536128ns
[ 0.000000] Ignoring duplicate/late registration of read_current_timer delay
[ 0.000000] Console: colour dummy device 80x30
[ 0.000000] console [tty1] enabled
[ 0.003865] Calibrating delay loop (skipped), value calculated using timer frequency.. lpj=12000
[ 0.003935] pid_max: default: 32768 minimum: 301
[ 0.004254] Mount-cache hash table entries: 512
[ 0.026304] Initializing cgroup subsys debug
[ 0.026349] Initializing cgroup subsys freezer
[ 0.026435] CPU: Testing write buffer coherency: ok
[ 0.026531] ftrace: allocating 32372 entries in 64 pages
[ 0.068423] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[ 0.068467] Setting up static identity map for 0xc07f4460 - 0xc07f44f4
[ 0.072449] ftrace: Allocated trace_printk buffers
[ 0.080160] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[ 0.083169] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
[ 0.086219] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
[ 0.086414] Brought up 4 CPUs
[ 0.086478] SMP: Total of 4 processors activated.
[ 0.086494] CPU: All CPU(s) started in SVC mode.
[ 0.087366] devtmpfs: initialized
[ 0.096642] pinctrl core: initialized pinctrl subsystem
[ 0.096965] regulator-dummy: no parameters
[ 0.097692] NET: Registered protocol family 16
[ 0.100169] DMA: preallocated 256 KiB pool for atomic coherent allocations
[ 0.100578] cpuidle: using governor ladder
[ 0.100599] cpuidle: using governor menu
[ 0.101909] tegra_smmu tegra_smmu: Loaded Tegra IOMMU driver
[ 0.103720] failed to read /chosen/display-board/id
[ 0.105875] ardbeg_camera_auxdata: update camera lookup table.
[ 0.112884] tegra124-pinctrl 70000868.pinmux: invalid group "spdif_in_pk6" for function "rsvd1"
[ 0.115230] tegra124-pinctrl 70000868.pinmux: Probed Tegra pinctrl driver
[ 0.115955] GPIO chip tegra-gpio: created GPIO range 0->250 ==> 70000868.pinmux PIN 0->250
[ 0.116006] tegra-gpio 6000d000.gpio: Initialising GPIO state 0: name default
[ 0.116667] gpiochip_add: registered GPIOs 0 to 255 on device: tegra-gpio
[ 0.124019] Wake16 for irq=34
[ 0.130800] board_info: id:sku:fab:major:minor = 0x0167:0x0000:0x02:0x43:0x00
[ 0.130871] disp1 pclk=154700000
[ 0.130882] disp2 pclk=297000000
[ 0.130893] Selecting UARTD as the debug console
[ 0.130940] The debug console clock name is uartd
[ 0.131352] ardbeg_modem_init: modem_id = 0
[ 0.133551] Clear bootloader IO dpd settings
[ 0.133745] Loading PM359 EMC tables.
[ 0.133998] tegra: pll_m is selected as scalable EMC clock source
[ 0.134022] tegra: selected pll_m scaling option but no backup source:
[ 0.134042] removed not supported entries from the table:
[ 0.134065] Lowering emc maximum rate from 1200000000 to 792000000
[ 0.134093] tegra: validated EMC DFS table
[ 0.134192] laguna_edp_init: CPU regulator 15000 mA
[ 0.375651] laguna_edp_init: GPU regulator 8000 mA
[ 0.375688] swapper/0 isomgr_init(): iso emc max clk=792000KHz
[ 0.375707] swapper/0 isomgr_init(): max_iso_bw=6336000KB<6>[ 0.376028] ardbeg_touch_init init raydium touch
[ 0.376170] Raydium - touch platform_id : 8
[ 0.459944] platform tegradc.0: IOVA linear map 0xeec00000(1200000)
[ 0.464172] platform tegradc.0: IOVA linear map 0xefe00000(4800000)
[ 0.471798] platform tegradc.0: IOVA linear map 0xad012000(1f60000)
[ 0.475074] platform tegradc.0: IOVA linear map 0xf6900000(9700000)
[ 0.477310] platform tegradc.1: IOVA linear map 0xeec00000(1200000)
[ 0.481534] platform tegradc.1: IOVA linear map 0xefe00000(4800000)
[ 0.489186] platform tegradc.1: IOVA linear map 0xad012000(1f60000)
[ 0.492481] platform tegradc.1: IOVA linear map 0xf6900000(9700000)
[ 0.492723] soctherm THERMTRIP not supported on PMU (BOARD_P359)
[ 0.492988] tegra11_soctherm_oc_int_init(): OC interrupts are not enabled
[ 0.493217] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[ 0.493245] hw-breakpoint: maximum watchpoint size is 8 bytes.
[ 0.493546] MC mapped MMIO address: 0xfde19000
[ 0.493852] mc-err: Started MC error interface!
[ 0.504376] bio: create slab <bio-0> at 0
[ 0.506219] reg-fixed-voltage 0.regulator: Consumer c1 does not have device name
[ 0.506252] reg-fixed-voltage 0.regulator: Consumer c2 does not have device name
[ 0.506281] of_get_named_gpio_flags: can't parse gpios property
[ 0.506383] vdd-ac-bat: 8400 mV
[ 0.506523] reg-fixed-voltage 1.regulator: Consumer c1 does not have device name
[ 0.506554] reg-fixed-voltage 1.regulator: Consumer c2 does not have device name
[ 0.506579] of_get_named_gpio_flags: can't parse gpios property
[ 0.506675] vdd-3v3-aon: 3300 mV
[ 0.506835] reg-fixed-voltage 8.regulator: Consumer c1 does not have device name
[ 0.506865] reg-fixed-voltage 8.regulator: Consumer c2 does not have device name
[ 0.506893] reg-fixed-voltage 8.regulator: Consumer c3 does not have device name
[ 0.506946] reg-fixed-voltage 8.regulator: Consumer c6 does not have device name
[ 0.506976] reg-fixed-voltage 8.regulator: Consumer c7 does not have device name
[ 0.507003] reg-fixed-voltage 8.regulator: Consumer c8 does not have device name
[ 0.507031] reg-fixed-voltage 8.regulator: Consumer c9 does not have device name
[ 0.507059] reg-fixed-voltage 8.regulator: Consumer c10 does not have device name
[ 0.507087] reg-fixed-voltage 8.regulator: Consumer c11 does not have device name
[ 0.507115] reg-fixed-voltage 8.regulator: Consumer c12 does not have device name
[ 0.507157] of_get_named_gpio_flags: can't parse gpios property
[ 0.507257] reg-3v3-supply: 3300 mV
[ 0.508887] vgaarb: loaded
[ 0.509543] SCSI subsystem initialized
[ 0.509726] libata version 3.00 loaded.
[ 0.509913] usbcore: registered new interface driver usbfs
[ 0.509998] usbcore: registered new interface driver hub
[ 0.510113] usbcore: registered new device driver usb
[ 0.510394] of_get_named_gpio_flags exited with status 20
[ 0.510412] of_get_named_gpio_flags exited with status 21
[ 0.511746] gpiochip_find_base: found new base at 1008
[ 0.511843] gpiochip_add: registered GPIOs 1008 to 1023 on device: tca6416
[ 0.512282] of_get_named_gpio_flags exited with status 157
[ 0.512300] of_get_named_gpio_flags exited with status 158
[ 0.512815] of_get_named_gpio_flags exited with status 217
[ 0.512831] of_get_named_gpio_flags exited with status 218
[ 0.513138] of_get_named_gpio_flags exited with status 172
[ 0.513155] of_get_named_gpio_flags exited with status 173
[ 0.513434] of_get_named_gpio_flags exited with status 206
[ 0.513450] of_get_named_gpio_flags exited with status 207
[ 0.514784] as3722 4-0040: AS3722 ID: ID1:ID2:ID3 = 0x0c:0x01:0x05
[ 0.514811] as3722 4-0040: Device version 1V1 and platform version 1V2
[ 0.514833] as3722 4-0040: Final OTP version 1V2
[ 0.519039] gpiochip_find_base: found new base at 1000
[ 0.519157] gpiochip_add: registered GPIOs 1000 to 1007 on device: as3722-gpio
[ 0.519188] GPIO chip as3722-gpio: created GPIO range 0->7 ==> as3722-pinctrl PIN 0->7
[ 0.519379] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.519435] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.519486] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.519515] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.519543] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.519572] as3722-regulator as3722-regulator.0: Consumer c4 does not have device name
[ 0.519627] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.519656] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.519685] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.519714] as3722-regulator as3722-regulator.0: Consumer c5 does not have device name
[ 0.519742] as3722-regulator as3722-regulator.0: Consumer c6 does not have device name
[ 0.519771] as3722-regulator as3722-regulator.0: Consumer c7 does not have device name
[ 0.519827] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.519856] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.519884] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.519918] as3722-regulator as3722-regulator.0: Consumer c9 does not have device name
[ 0.519947] as3722-regulator as3722-regulator.0: Consumer c11 does not have device name
[ 0.519975] as3722-regulator as3722-regulator.0: Consumer c13 does not have device name
[ 0.520004] as3722-regulator as3722-regulator.0: Consumer c15 does not have device name
[ 0.520055] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.520102] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.520154] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.520183] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.520211] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.520239] as3722-regulator as3722-regulator.0: Consumer c4 does not have device name
[ 0.520267] as3722-regulator as3722-regulator.0: Consumer c5 does not have device name
[ 0.520294] as3722-regulator as3722-regulator.0: Consumer c6 does not have device name
[ 0.520322] as3722-regulator as3722-regulator.0: Consumer c7 does not have device name
[ 0.520350] as3722-regulator as3722-regulator.0: Consumer c8 does not have device name
[ 0.520379] as3722-regulator as3722-regulator.0: Consumer c9 does not have device name
[ 0.520431] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.520508] as3722-regulator as3722-regulator.0: Consumer c9 does not have device name
[ 0.520537] as3722-regulator as3722-regulator.0: Consumer c10 does not have device name
[ 0.520587] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.520635] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.520664] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.520715] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.520785] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.520814] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.520888] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.520918] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.520946] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.521875] vdd-cpu: 650 <--> 1300 mV at 1000 mV at 3500 mA
[ 0.523180] vdd-core: 700 <--> 1350 mV at 1150 mV at 3500 mA
[ 0.524180] vddio-ddr: at 1350 mV
[ 0.524543] as3722-sd3: no parameters
[ 0.524865] avdd-pll-pex: 1050 mV
[ 0.525870] vdd-1v8: at 1800 mV
[ 0.526232] vdd-gpu: applied init 1000000uV constraint
[ 0.527072] vdd-gpu: 650 <--> 1200 mV at 1000 mV at 3500 mA
[ 0.527466] avdd-pll: at 1050 mV at 300 mA
[ 0.528729] vdd-cam: 1800 mV at 150 mA
[ 0.529252] avdd-dsi-csi: at 1200 mV at 150 mA
[ 0.530166] vdd-rtc: 800 mV at 150 mA
[ 0.530711] avdd-cam: 2700 mV at 150 mA
[ 0.531255] vdd-1v2-cam: 1200 mV at 150 mA
[ 0.531639] vddio-sdmmc-2: 1800 <--> 3300 mV at 150 mA
[ 0.532174] vdd-1v1-cam: 1050 mV at 150 mA
[ 0.533087] avdd-spi: 3300 mV at 150 mA
[ 0.533634] vdd-2v7-cam: 2700 mV at 150 mA
[ 0.534197] vpp-fuse: 1800 mV at 150 mA
[ 0.534876] of_get_named_gpio_flags: can't parse gpios property
[ 0.534888] of_get_named_gpio_flags: can't parse gpios property
[ 0.535413] Linux video capture interface: v2.00
[ 0.536563] Advanced Linux Sound Architecture Driver Initialized.
[ 0.537330] of_get_named_gpio_flags exited with status 108
[ 0.537460] usb0-vbus: 5000 mV
[ 0.537649] of_get_named_gpio_flags exited with status 109
[ 0.537769] usb1-usb2-vbus: 5000 mV
[ 0.537941] of_get_named_gpio_flags exited with status 86
[ 0.538066] vdd-hdmi: 5000 mV
[ 0.538221] of_get_named_gpio_flags exited with status 63
[ 0.538349] avdd-hdmi-pll: 3300 mV
[ 0.538404] avdd-hdmi-pll: supplied by avdd-pll-pex
[ 0.538585] reg-fixed-sync-voltage 6.regulator: Consumer c1 does not have device name
[ 0.538626] of_get_named_gpio_flags exited with status 122
[ 0.538730] vdd-lcd-bl: 3300 mV
[ 0.538878] reg-fixed-sync-voltage 7.regulator: Consumer c1 does not have device name
[ 0.538919] of_get_named_gpio_flags exited with status 58
[ 0.539030] vdd-lcd-bl-en: 5000 mV
[ 0.539191] reg-fixed-sync-voltage 9.regulator: Consumer c3 does not have device name
[ 0.539219] of_get_named_gpio_flags: can't parse gpios property
[ 0.539348] reg-5v0-supply: 5000 mV
[ 0.539519] reg-fixed-sync-voltage a.regulator: Consumer c1 does not have device name
[ 0.539551] reg-fixed-sync-voltage a.regulator: Consumer c2 does not have device name
[ 0.539579] reg-fixed-sync-voltage a.regulator: Consumer c3 does not have device name
[ 0.539625] reg-fixed-sync-voltage a.regulator: Consumer c10 does not have device name
[ 0.539654] reg-fixed-sync-voltage a.regulator: Consumer c11 does not have device name
[ 0.539682] reg-fixed-sync-voltage a.regulator: Consumer c12 does not have device name
[ 0.539710] reg-fixed-sync-voltage a.regulator: Consumer c13 does not have device name
[ 0.539738] reg-fixed-sync-voltage a.regulator: Consumer c14 does not have device name
[ 0.539766] reg-fixed-sync-voltage a.regulator: Consumer c15 does not have device name
[ 0.539820] of_get_named_gpio_flags: can't parse gpios property
[ 0.539911] reg-1v8-supply: 1800 mV
[ 0.540203] reg-fixed-sync-voltage b.regulator: Consumer c1 does not have device name
[ 0.540246] of_get_named_gpio_flags exited with status 1008
[ 0.540752] reg-dcdc-1v2: 1200 mV
[ 0.540929] reg-fixed-sync-voltage c.regulator: Consumer c8 does not have device name
[ 0.540973] of_get_named_gpio_flags exited with status 1002
[ 0.541508] as3722-gpio2-supply: 3300 mV
[ 0.541713] reg-fixed-sync-voltage d.regulator: Consumer c1 does not have device name
[ 0.541756] of_get_named_gpio_flags exited with status 1004
[ 0.542472] as3722-gpio4-supply: 3300 mV
[ 0.542648] of_get_named_gpio_flags exited with status 136
[ 0.542765] sdmmc-en-supply: 3300 mV
[ 0.542936] of_get_named_gpio_flags exited with status 1010
[ 0.543426] vdd-cdc-1v2-aud: 1200 mV
[ 0.543588] reg-fixed-sync-voltage 10.regulator: Consumer c1 does not have device name
[ 0.543620] reg-fixed-sync-voltage 10.regulator: Consumer c2 does not have device name
[ 0.543649] reg-fixed-sync-voltage 10.regulator: Consumer c3 does not have device name
[ 0.543675] of_get_named_gpio_flags: can't parse gpios property
[ 0.543769] reg-aon-1v8: 1800 mV
[ 0.543937] reg-fixed-sync-voltage 11.regulator: Consumer c1 does not have device name
[ 0.543965] of_get_named_gpio_flags: can't parse gpios property
[ 0.544060] reg-aon-1v2: 1200 mV
[ 0.547376] as3722-adc-extcon as3722-adc-extcon.2: USB-Host is disconnected
[ 0.550915] tegra-pwr-detect power-detect.2: started io power detection dynamic control
[ 0.550948] tegra-pwr-detect power-detect.2: NO_IO_POWER setting 0x0 package mask 0x1
[ 0.551080] Switching to clocksource arch_sys_counter
[ 0.572953] nvmap_heap_init: nvmap_heap_init: created heap block cache
[ 0.573237] nvmap_page_pool_init: Total MB RAM: 1710
[ 0.573260] nvmap_page_pool_init: nvmap page pool size: 54720 pages (213 MB)
[ 0.573641] nvmap_background_zero_allocator: PP alloc thread starting.
[ 0.573817] iram: dma coherent mem declare 0x40001000,258048
[ 0.574806] misc nvmap: created heap iram base 0x40001000 size (252KiB)
[ 0.574917] vpr: dma coherent mem declare 0xf6900000,158334976
[ 0.578624] misc nvmap: created heap vpr base 0xf6900000 size (154624KiB)
[ 0.578788] nvmap:inner cache maint threshold=2097152
[ 0.589616] Wake39 for irq=52
[ 0.589727] tegra-otg tegra-otg: otg transceiver registered
[ 0.590181] NET: Registered protocol family 2
[ 0.590942] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.591182] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.591390] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.591462] TCP: reno registered
[ 0.591487] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.591544] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.591853] NET: Registered protocol family 1
[ 0.592314] RPC: Registered named UNIX socket transport module.
[ 0.592338] RPC: Registered udp transport module.
[ 0.592357] RPC: Registered tcp transport module.
[ 0.592376] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.592402] PCI: CLS 0 bytes, default 64
[ 0.592768] tegra-fuse tegra-fuse: Fuse driver initialized succesfully
[ 0.599325] host1x host1x: initialized
[ 0.600789] CPU PMU: probing PMU on CPU 0
[ 0.600828] hw perfevents: enabled with ARMv7 Cortex-A15 PMU driver, 7 counters available
[ 0.601596] tegra_throttle : init passed
[ 0.601705] Tegra cpuquiet initialized: disabled
[ 0.601861] cpu-tegra: init EDP limit: 2014 MHz
[ 0.602394] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type CPU-therm
[ 0.602933] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type GPU-therm
[ 0.603259] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type MEM-therm
[ 0.603930] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[ 0.605631] bounce pool size: 64 pages
[ 0.607318] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx).
[ 0.607668] NTFS driver 2.1.30 [Flags: R/O].
[ 0.607830] fuse init (API version 7.22)
[ 0.608090] msgmni has been set to 1397
[ 0.609881] io scheduler noop registered (default)
[ 0.610349] of_get_named_gpio_flags exited with status 113
[ 0.610371] of_get_named_gpio_flags exited with status 235
[ 0.610391] of_get_named_gpio_flags exited with status 1016
[ 0.610589] PCIE.C: tegra_pcie_enable_regulators : regulator hvdd_pex
[ 0.610696] PCIE.C: tegra_pcie_enable_regulators : regulator pexio
[ 0.611486] tegra-pcie 1003000.pcie-controller: acquiring hotplug_detect = 113
[ 0.612300] tegra-pcie 1003000.pcie-controller: probing port 0, using 2 lanes
[ 0.644852] tegra-pcie 1003000.pcie-controller: probing port 1, using 1 lanes
[ 1.047279] tegra-pcie 1003000.pcie-controller: link 1 down, retrying
[ 1.449299] tegra-pcie 1003000.pcie-controller: link 1 down, retrying
[ 1.851327] tegra-pcie 1003000.pcie-controller: link 1 down, retrying
[ 1.853384] tegra-pcie 1003000.pcie-controller: link 1 down, ignoring
[ 1.853580] tegra-pcie 1003000.pcie-controller: PCI host bridge to bus 0000:00
[ 1.853613] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[ 1.853639] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[ 1.853668] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 1.853690] pci_bus 0000:00: root bus resource [io 0x1000-0xffff]
[ 1.853747] pci 0000:00:01.0: [10de:0e12] type 01 class 0x060400
[ 1.853836] pci 0000:00:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.854079] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 1.854324] pci 0000:01:00.0: [1033:0194] type 00 class 0x0c0330
[ 1.854367] pci 0000:01:00.0: reg 10: [mem 0x00000000-0x00001fff 64bit]
[ 1.854533] pci 0000:01:00.0: PME# supported from D0 D3hot
[ 1.856203] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 1.856250] pci 0000:00:01.0: BAR 8: assigned [mem 0x13000000-0x130fffff]
[ 1.856280] pci 0000:01:00.0: BAR 0: assigned [mem 0x13000000-0x13001fff 64bit]
[ 1.856325] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 1.856350] pci 0000:00:01.0: bridge window [mem 0x13000000-0x130fffff]
[ 1.856379] PCI: enabling device 0000:00:01.0 (0140 -> 0143)
[ 1.856423] pci 0000:00:01.0: nv_msi_ht_cap_quirk didn't locate host bridge
[ 1.856684] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[ 1.856710] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[ 1.856736] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[ 1.856854] aer 0000:00:01.0:pcie02: service driver aer loaded
[ 1.856913] PCI: enabling device 0000:01:00.0 (0140 -> 0142)
[ 1.857654] pwm-backlight pwm-backlight: unable to request PWM, trying legacy API
[ 1.857767] sysedp_create_consumer: unable to create pwm-backlight, no consumer_data for pwm-backlight found
[ 1.862380] tsec tsec: initialized
[ 1.864262] isp isp.0: initialized
[ 1.865291] isp isp.1: initialized
[ 1.866943] falcon vic03.0: initialized
[ 1.868238] falcon msenc: initialized
[ 1.869060] tegradc tegradc.0: DSI: HS clock rate is 464500
[ 1.870535] p,wuxga-10-1 panel dt support not available
[ 2.151694] tegradc tegradc.0: nominal-pclk:154700000 parent:154500000 div:1.0 pclk:154500000 153153000~168623000
[ 2.240315] tegradc tegradc.0: DSI pad calibration done
[ 2.247486] tegradc tegradc.0: probed
[ 2.248226] tegradc tegradc.0: nominal-pclk:154679000 parent:463500000 div:3.0 pclk:154500000 153132210~168600110
[ 2.270357] Console: switching to colour frame buffer device 240x75
[ 2.291708] tegradc tegradc.0: fb registered
[ 2.297685] gpio wake4 for gpio=111
[ 2.298054] tegra-i2c tegra12-i2c.3: no acknowledge from address 0x50
[ 2.299212] tegradc tegradc.1: probed
[ 2.300529] tegradc tegradc.1: fb registered
[ 2.300643] hdmi_state_machine_worker (tid ebb03580): state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[ 2.300820] hdmi_state_machine_set_state_l: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[ 2.304292] tegra-apbdma tegra-apbdma: Tegra20 APB DMA driver register 32 channels
[ 2.305092] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 2.306539] serial8250.0: ttyS0 at MMIO 0x70006300 (irq = 122) is a Tegra
[ 2.342699] hdmi_state_machine_worker (tid ebb03580): state 0 (Reset), hpd 0, pending_hpd_evt 0
[ 2.342703] hdmi_disable_l: audio_switch 0
[ 2.342706] hdmi_disable_l: hpd_switch 0
[ 2.342715] hdmi_state_machine_set_state_l: switching from state 0 (Reset) to state 1 (Check Plug)
[ 2.356170] hdmi_state_machine_worker (tid ebb03580): state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[ 2.356174] hdmi_disable_l: audio_switch 0
[ 2.356177] hdmi_disable_l: hpd_switch 0
[ 2.356184] hdmi_state_machine_set_state_l: switching from state 1 (Check Plug) to state 3 (Disabled)
[ 4.625864] console [ttyS0] enabled
[ 4.630389] serial-tegra.0: ttyTHS0 at MMIO 0x70006000 (irq = 68) is a SERIAL_TEGRA
[ 4.638509] serial-tegra.1: ttyTHS1 at MMIO 0x70006040 (irq = 69) is a SERIAL_TEGRA
[ 4.646632] serial-tegra.2: ttyTHS2 at MMIO 0x70006200 (irq = 78) is a SERIAL_TEGRA
[ 4.660056] loop: module loaded
[ 4.663556] nct1008_nct72 1-004c: success in enabling rail vdd_nct72
[ 4.679209] gpio wake35 for gpio=70
[ 4.682834] nct1008_nct72 1-004c: nct1008_probe: initialized
[ 4.689842] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type Tboard_tegra
[ 4.701087] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type Tdiode_tegra
[ 4.713847] GPS: mt3332_gps_mod_init: platform_driver_register ret = 0
[ 4.721317] tegra-sata tegra-sata.0: version 1.0
[ 4.721351] of_get_named_gpio_flags exited with status 1017
[ 4.722651] tegra-sata tegra-sata.0: AHCI 0001.0301 32 slots 2 ports 3 Gbps 0x1 impl TEGRA-SATA mode
[ 4.732048] tegra-sata tegra-sata.0: flags: 64bit ncq sntf pm led pio slum part sadm sds apst
[ 4.742089] scsi0 : tegra-sata
[ 4.745570] scsi1 : tegra-sata
[ 4.748888] ata1: SATA max UDMA/133 irq 55
[ 4.753112] ata2: DUMMY
[ 4.757619] tun: Universal TUN/TAP device driver, 1.6
[ 4.762775] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx>
[ 4.769380] PPP generic driver version 2.4.2
[ 4.773931] PPP BSD Compression module registered
[ 4.778744] PPP Deflate Compression module registered
[ 4.783905] PPP MPPE Compression module registered
[ 4.788796] NET: Registered protocol family 24
[ 4.793454] usbcore: registered new interface driver asix
[ 4.799082] usbcore: registered new interface driver ax88179_178a
[ 4.805418] usbcore: registered new interface driver cdc_ether
[ 4.811408] usbcore: registered new interface driver smsc95xx
[ 4.817323] usbcore: registered new interface driver cdc_subset
[ 4.828434] usbcore: registered new interface driver cdc_ncm
[ 4.839227] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.851051] tegra USB phy - inst[1] platform info:
[ 4.860919] port_otg: no
[ 4.868436] has_hostpc: yes
[ 4.876212] phy_interface: USB_PHY_INTF_UTMI
[ 4.885474] op_mode: TEGRA_USB_OPMODE_HOST
[ 4.894534] qc2_voltage: 0
[ 4.902158] hot_plug: disabled
[ 4.910096] remote_wakeup: enabled
[ 4.919845] tegra-ehci tegra-ehci.1: Tegra EHCI Host Controller
[ 4.930663] tegra-ehci tegra-ehci.1: new USB bus registered, assigned bus number 1
[ 4.943215] Wake40 for irq=53
[ 4.950972] Wake42 for irq=53
[ 4.958729] tegra-ehci tegra-ehci.1: irq 53, io mem 0x7d004000
[ 4.975177] tegra-ehci tegra-ehci.1: USB 2.0 started, EHCI 1.10
[ 4.985907] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 4.997385] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.009350] usb usb1: Product: Tegra EHCI Host Controller
[ 5.019496] usb usb1: Manufacturer: Linux 3.10.33-g71c61a3-dirty ehci_hcd
[ 5.031129] usb usb1: SerialNumber: tegra-ehci.1
[ 5.041063] hub 1-0:1.0: USB hub found
[ 5.049649] hub 1-0:1.0: 1 port detected
[ 5.058740] tegra USB phy - inst[2] platform info:
[ 5.060207] ata1: SATA link down (SStatus 0 SControl 300)
[ 5.078503] port_otg: no
[ 5.085736] has_hostpc: yes
[ 5.093182] phy_interface: USB_PHY_INTF_UTMI
[ 5.102205] op_mode: TEGRA_USB_OPMODE_HOST
[ 5.110922] qc2_voltage: 0
[ 5.118157] hot_plug: disabled
[ 5.125713] remote_wakeup: enabled
[ 5.135006] tegra-ehci tegra-ehci.2: Tegra EHCI Host Controller
[ 5.145479] tegra-ehci tegra-ehci.2: new USB bus registered, assigned bus number 2
[ 5.157669] Wake41 for irq=129
[ 5.165220] Wake43 for irq=129
[ 5.172761] tegra-ehci tegra-ehci.2: irq 129, io mem 0x7d008000
[ 5.188175] tegra-ehci tegra-ehci.2: USB 2.0 started, EHCI 1.10
[ 5.198506] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 5.209627] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.221199] usb usb2: Product: Tegra EHCI Host Controller
[ 5.230877] usb usb2: Manufacturer: Linux 3.10.33-g71c61a3-dirty ehci_hcd
[ 5.241978] usb usb2: SerialNumber: tegra-ehci.2
[ 5.251374] hub 2-0:1.0: USB hub found
[ 5.259466] hub 2-0:1.0: 1 port detected
[ 5.268009] ehci-pci: EHCI PCI platform driver
[ 5.276825] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 5.286321] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3
[ 5.299310] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 5.310376] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.321912] usb usb3: Product: xHCI Host Controller
[ 5.331001] usb usb3: Manufacturer: Linux 3.10.33-g71c61a3-dirty xhci_hcd
[ 5.342021] usb usb3: SerialNumber: 0000:01:00.0
[ 5.351159] xHCI xhci_add_endpoint called for root hub
[ 5.351169] xHCI xhci_check_bandwidth called for root hub
[ 5.351300] hub 3-0:1.0: USB hub found
[ 5.359173] hub 3-0:1.0: 2 ports detected
[ 5.367627] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 5.377015] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 4
[ 5.388761] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[ 5.399768] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.411236] usb usb4: Product: xHCI Host Controller
[ 5.420300] usb usb4: Manufacturer: Linux 3.10.33-g71c61a3-dirty xhci_hcd
[ 5.431342] usb usb4: SerialNumber: 0000:01:00.0
[ 5.440525] xHCI xhci_add_endpoint called for root hub
[ 5.440534] xHCI xhci_check_bandwidth called for root hub
[ 5.440660] hub 4-0:1.0: USB hub found
[ 5.448626] hub 4-0:1.0: 2 ports detected
[ 5.462529] usbcore: registered new interface driver cdc_acm
[ 5.472455] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[ 5.484846] usbcore: registered new interface driver cdc_wdm
[ 5.494956] usbcore: registered new interface driver usb-storage
[ 5.505463] usbcore: registered new interface driver usbserial
[ 5.515719] usbcore: registered new interface driver option
[ 5.525712] usbserial: USB Serial support registered for GSM modem (1-port)
[ 5.537227] usbcore: registered new interface driver pl2303
[ 5.547218] usbserial: USB Serial support registered for pl2303
[ 5.557581] Nvidia Tegra High-Speed USB Device Controller driver (Apr 30, 2012)
[ 5.569720] tegra USB phy - inst[0] platform info:
[ 5.579000] port_otg: yes
[ 5.586089] has_hostpc: yes
[ 5.593356] phy_interface: USB_PHY_INTF_UTMI
[ 5.602111] op_mode: TEGRA_USB_OPMODE_DEVICE
[ 5.610872] qc2_voltage: 0
[ 5.618035] vbus_pmu_irq: 0
[ 5.625246] charging: enabled
[ 5.632562] remote_wakeup: disabled
[ 5.643271] tegra-udc tegra-udc.0: usb_bat_chg regulator not registered: USB charging will not be enabled
[ 5.657854] usbcore: registered new interface driver xpad
[ 5.670708] as3722-rtc as3722-rtc.1: rtc core: registered as3722 as rtc0
[ 5.681957] as3722-rtc as3722-rtc.1: RTC interrupt 449
[ 5.694602] i2c /dev entries driver
[ 5.705997] i2c i2c-0: Added multiplexed i2c bus 6
[ 5.715557] i2c i2c-0: Added multiplexed i2c bus 7
[ 5.725494] i2c i2c-0: Added multiplexed i2c bus 8
[ 5.734226] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[ 5.745994] i2c i2c-0: Added multiplexed i2c bus 9
[ 5.755241] pca954x 0-0070: registered 4 multiplexed busses for I2C switch pca9546
[ 5.767616] virtual_init
[ 5.776701] nvavp nvavp: allocated IOVA at 8ff00000 for AVP os
[ 5.787689] usb 3-1: New USB device found, idVendor=058f, idProduct=6387
[ 5.788044] tegra_dtv_probe: probing dtv.
[ 5.807639] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5.807759] setup_stream: bufsize = 4096, bufnum = 4
[ 5.807760] ar0832_init: ++
[ 5.808172] otg state changed: SUSPEND --> PERIPHERAL
[ 5.809425] i2c-core: driver [max77387] using legacy suspend method
[ 5.809428] i2c-core: driver [max77387] using legacy resume method
[ 5.809493] i2c-core: driver [as364x] using legacy suspend method
[ 5.809496] i2c-core: driver [as364x] using legacy resume method
[ 5.809701] [IMX135] sensor driver loading
[ 5.809765] [IMX179] sensor driver loading
[ 5.809828] [imx132] sensor driver loading
[ 5.809891] [ar0261] sensor driver loading
[ 5.810203] usbcore: registered new interface driver uvcvideo
[ 5.810206] USB Video Class driver (1.1.1)
[ 5.811223] zram: Created 1 device(s) ...
[ 5.951264] usb 3-1: Product: Mass Storage Device
[ 5.960472] usb 3-1: Manufacturer: JetFlash
[ 5.969145] device-mapper: uevent: version 1.0.3
[ 5.969156] usb 3-1: SerialNumber: 8MW054ZS
[ 5.987213] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@xxxxxxxxxx
[ 5.987722] usb-storage 3-1:1.0: USB Mass Storage device detected
[ 6.011102] sdhci: Secure Digital Host Controller Interface driver
[ 6.011159] scsi2 : usb-storage 3-1:1.0
[ 6.030169] sdhci: Copyright(c) Pierre Ossman
[ 6.039033] sdhci-pltfm: SDHCI platform and OF driver helper
[ 6.049612] sdhci-tegra sdhci-tegra.3: vddio_sd_slot regulator not found: -517. Assuming vddio_sd_slot is not required.
[ 6.065256] sdhci-tegra sdhci-tegra.3: Speedo value 2367
[ 6.075250] sdhci-tegra sdhci-tegra.3: Tuning constraints: nom_mv 1150, boot_mv 1150, min_or_mv 1100
[ 6.089441] mmc0: no vqmmc regulator found
[ 6.098254] mmc0: no vmmc regulator found
[ 6.106937] mmc0: Invalid maximum block size, assuming 512 bytes
[ 6.117647] sysedp_create_consumer: unable to create sdhci-tegra.3, no consumer_data for sdhci-tegra.3 found
[ 6.151179] mmc0: SDHCI controller on sdhci-tegra.3 [sdhci-tegra.3] using ADMA
[ 6.168875] sdhci-tegra sdhci-tegra.2: Speedo value 2367
[ 6.179085] sdhci-tegra sdhci-tegra.2: Tuning constraints: nom_mv 1150, boot_mv 1150, min_or_mv 1100
[ 6.193392] mmc1: no vqmmc regulator found
[ 6.202500] mmc1: no vmmc regulator found
[ 6.211480] mmc1: Invalid maximum block size, assuming 512 bytes
[ 6.222494] sysedp_create_consumer: unable to create sdhci-tegra.2, no consumer_data for sdhci-tegra.2 found
[ 6.258195] mmc1: SDHCI controller on sdhci-tegra.2 [sdhci-tegra.2] using ADMA
[ 6.275847] gpio wake56 for gpio=170
[ 6.289012] tegra-se tegra12-se: tegra_se_probe: complete
[ 6.290442] mmc0: BKOPS_EN bit is not set
[ 6.295859] sdhci-tegra sdhci-tegra.3: Found T2T coeffs data
[ 6.295868] sdhci-tegra sdhci-tegra.3: 200MHz tap hole coeffs found
[ 6.333044] usbcore: registered new interface driver usbhid
[ 6.343607] usbhid: USB HID core driver
[ 6.352712] tegra-i2c tegra12-i2c.1: no acknowledge from address 0x3b
[ 6.364315] i2c_hid 1-003b: unable to fetch the size of HID descriptor (ret=-121)
[ 6.377157] tegra-i2c tegra12-i2c.1: no acknowledge from address 0x2c
[ 6.388830] i2c_hid 1-002c: unable to fetch the size of HID descriptor (ret=-121)
[ 6.401847] tegra-hier-ictlr tegra-hier-ictlr: probed
[ 6.412540] usbcore: registered new interface driver snd-usb-audio
[ 6.424579] max98090_i2c_probe
[ 6.432979] MAX98090 driver registered
[ 6.442711] tegra_offload_platform probe successfull.
[ 6.450486] succefully registered offload opstegra30_avp_audio_platform_probe successful.
[ 6.464456] tegra-snd-max98090 tegra-snd-max98090.5: tegra_max98090_driver_probe
[ 6.482395] tegra-snd-max98090 tegra-snd-max98090.5: Platform data supplied via DT
[ 6.495861] max98090 7-0010: max98090_probe
[ 6.530861] max98090 7-0010: MAX98090 REVID=0x43
[ 6.540764] max98090 7-0010: max98090_dmic_switch state=1 left=1 right=1
[ 6.844649] **********Auto tuning windows*************
[ 6.855345] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE
[ 6.866302] win[0]: 2(0) - 87(1)
[ 6.874929] win[1]: 94(0) - 180(1)
[ 6.883660] win[2]: 188(0) - 255(1)
[ 6.892400] ***************************************
[ 6.902564] ********tuning windows after inserting holes*****
[ 6.906195] tegra-snd-max98090 tegra-snd-max98090.5: HiFi <-> tegra30-i2s.1 mapping ok
[ 6.906413] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: no source widget found for I2S1_OUT
[ 6.906421] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: Failed to add route I2S1_OUT -> direct -> HiFi Playback
[ 6.906432] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: no source widget found for offload-pcm-playback
[ 6.906439] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: Failed to add route offload-pcm-playback -> direct -> I2S1_OUT
[ 6.906450] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: no source widget found for offload-compr-playback
[ 6.906457] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: Failed to add route offload-compr-playback -> direct -> I2S1_OUT
[ 6.908630] oprofile: using timer interrupt.
[ 6.936211] max98090 7-0010: ***** max98090_interrupt *****
[ 7.013259] scsi 2:0:0:0: Direct-Access JetFlash Transcend 4GB 8.07 PQ: 0 ANSI: 2
[ 7.014061] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 7.015083] sd 2:0:0:0: [sda] 7843840 512-byte logical blocks: (4.01 GB/3.74 GiB)
[ 7.015434] sd 2:0:0:0: [sda] Write Protect is off
[ 7.015443] sd 2:0:0:0: [sda] Mode Sense: 03 00 00 00
[ 7.015719] sd 2:0:0:0: [sda] No Caching mode page found
[ 7.015727] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 7.017930] sd 2:0:0:0: [sda] No Caching mode page found
[ 7.017936] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 7.131680] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE
[ 7.131783] GACT probability NOT on
[ 7.131790] Mirror/redirect action on
[ 7.131912] u32 classifier
[ 7.131915] Actions configured
[ 7.131921] Netfilter messages via NETLINK v0.30.
[ 7.132123] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 7.199463] win[0]:2(0) - 50(2)
[ 7.208037] win[1]:52(2) - 87(1)
[ 7.208214] max98090 7-0010: active=0x04 mask=0x04 -> active=0x04
[ 7.208220] max98090 7-0010: M98090_IRQ_JDET_MASK
[ 7.208576] NF_TPROXY: Transparent proxy support initialized, version 4.1.0
[ 7.208579] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
[ 7.259640] sda: sda1
[ 7.261457] sd 2:0:0:0: [sda] No Caching mode page found
[ 7.261463] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 7.261471] sd 2:0:0:0: [sda] Attached SCSI removable disk
[ 7.301120] win[2]:94(0) - 143(2)
[ 7.301402] xt_time: kernel timezone is -0000
[ 7.301722] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 7.301876] arp_tables: (C) 2002 David S. Miller
[ 7.301917] TCP: cubic registered
[ 7.347085] win[3]:145(2) - 180(1)
[ 7.355371] win[4]:188(0) - 236(2)
[ 7.363591] win[5]:238(2) - 255(1)
[ 7.371761] ***********************************************
[ 7.382146] **********Tuning values*********
[ 7.391176] **estimated values**
[ 7.399154] NET: Registered protocol family 10
[ 7.399166] T2T_Vmax 54, T2T_Vmin 74, 1'st_hole_Vmax 50, UI_Vmax 92
[ 7.399168] **Calculated values**
[ 7.399172] T2T_Vmax 53, 1'st_hole_Vmax 51, UI_Vmax 93
[ 7.399175] T2T_Vmin 53, 1'st_hole_Vmin 51, UI_Vmin 94
[ 7.399178] ***********************************
[ 7.399184] ***********final tuning windows**********
[ 7.399188] win[0]: 20 - 40
[ 7.399191] win[1]: 63 - 69
[ 7.399194] win[2]: 112 - 127
[ 7.399198] win[3]: 163 - 162
[ 7.399201] win[4]: 206 - 215
[ 7.399204] win[5]: 255 - 237
[ 7.399207] ********************************
[ 7.399213] best tap win - (20-40), best tap value 30
[ 7.399225] sdhci-tegra sdhci-tegra.3: sdhci_tegra_verify_best_tap: tuning freq 200000000hz, best tap 30
[ 7.402247] mmc0: new HS200 MMC card at address 0001
[ 7.403305] mmcblk mmc0:0001: Card claimed for testing.
[ 7.404856] max98090 7-0010: No Headset Detected
[ 7.432980] max98090 7-0010: ***** max98090_interrupt *****
[ 7.435949] max98090 7-0010: active=0x04 mask=0x04 -> active=0x04
[ 7.435955] max98090 7-0010: M98090_IRQ_JDET_MASK
[ 7.469322] max98090 7-0010: max98090_dmic_switch state=1 left=1 right=1
[ 7.595894] max98090 7-0010: No Headset Detected
[ 7.595917] max98090 7-0010: max98090_dmic_switch state=1 left=1 right=1
[ 7.630087] mmcblk0: mmc0:0001 SEM32G 29.1 GiB
[ 7.639162] mmcblk0rpmb: mmc0:0001 SEM32G partition 3 4.00 MiB
[ 7.649341] mip6: Mobile IPv6
[ 7.656688] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 7.661099] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9
[ 7.675493] sit: IPv6 over IPv4 tunneling driver
[ 7.685368] NET: Registered protocol family 17
[ 7.694247] NET: Registered protocol family 15
[ 7.702895] NET: Registered protocol family 35
[ 7.711635] NET: Registered protocol family 37
[ 7.720266] NET: Registered protocol family 41
[ 7.730858] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
[ 7.767419] Registering SWP/SWPB emulation handler
[ 7.776201] last reset is due to power on reset
[ 7.776201]
[ 7.797478] Disabling clocks left on by bootloader:
[ 7.806500] audio_2x
[ 7.813329] audio
[ 7.819388] audio4
[ 7.825503] audio3
[ 7.831595] audio2
[ 7.838113] audio1
[ 7.844148] audio0
[ 7.850238] entropy
[ 7.856265] dsi2-fixed
[ 7.862525] dsi1-fixed
[ 7.868899] dsib
[ 7.874570] trace
[ 7.880235] bsev
[ 7.885772] sdmmc4_ddr
[ 7.891816] cclk_lp
[ 7.898412] pll_x_out0
[ 7.904343] pll_u_12M
[ 7.910173] pll_m_out1
[ 7.916172] tegra_dvfs: vdd_cpu connected to regulator
[ 7.924643] tegra_dvfs: vdd_core connected to regulator
[ 7.933199] tegra_dvfs: vdd_gpu connected to regulator
[ 7.942399] tegra_dvfs: registered vdd_cpu simon notifier
[ 7.951322] cpu_cold cooling device is registered
[ 7.959462] cpu_hot cooling device is registered
[ 7.959598] Tegra CPU DFLL is initialized with use_dfll = 1
[ 7.959669] CPU rate: 696 MHz
[ 8.147243] tegra dvfs: tegra sysfs cap interface is initialized
[ 8.156583] tegra dvfs: tegra sysfs gpu & emc interface is initialized
[ 8.166364] tegra dvfs: registered vdd_gpu simon notifier
[ 8.175428] tegra_actmon.emc: Completed initialization (0)
[ 8.184378] tegra_actmon.avp: Completed initialization (0)
[ 8.193206] tegra_mon.cpu_emc: Completed initialization (0)
[ 8.205444] vpp-fuse: incomplete constraints, leaving on
[ 8.214126] vdd-2v7-cam: incomplete constraints, leaving on
[ 8.223048] avdd-spi: incomplete constraints, leaving on
[ 8.231686] vdd-1v1-cam: incomplete constraints, leaving on
[ 8.240649] vdd-1v2-cam: incomplete constraints, leaving on
[ 8.249571] avdd-cam: incomplete constraints, leaving on
[ 8.258265] as3722-sd3: incomplete constraints, leaving on
[ 8.267946] of_get_named_gpio_flags exited with status 130
[ 8.267970] of_get_named_gpio_flags exited with status 69
[ 8.267993] of_get_named_gpio_flags exited with status 128
[ 8.268014] of_get_named_gpio_flags exited with status 135
[ 8.268033] of_get_named_gpio_flags exited with status 134
[ 8.268078] gpiod_set_debounce: gpio-130 status -22
[ 8.268189] gpiod_set_debounce: gpio-69 status -22
[ 8.268200] gpio wake23 for gpio=69
[ 8.275211] gpiod_set_debounce: gpio-128 status -22
[ 8.275224] gpio wake51 for gpio=128
[ 8.282322] gpiod_set_debounce: gpio-135 status -22
[ 8.282391] gpiod_set_debounce: gpio-134 status -22
[ 8.282615] input: gpio-keys.3 as /devices/platform/gpio-keys.3/input/input0
[ 8.293933] as3722-rtc as3722-rtc.1: setting system clock to 2000-01-01 00:00:12 UTC (946684812)
[ 8.307006] ALSA device list:
[ 8.311305] #0: tegra-max98090
[ 8.316531] EXT4-fs (mmcblk0p1): couldn't mount as ext3 due to feature incompatibilities
[ 8.326365] EXT4-fs (mmcblk0p1): couldn't mount as ext2 due to feature incompatibilities
[ 8.439971] EXT4-fs (mmcblk0p1): recovery complete
[ 8.447024] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[ 8.456489] VFS: Mounted root (ext4 filesystem) on device 179:1.
[ 8.464247] devtmpfs: mounted
[ 8.468712] Freeing unused kernel memory: 504K (c0b05000 - c0b83000)
[ 8.578346] init: ureadahead main process (128) terminated with status 5
[ 8.805990] udevd[232]: starting version 175
[ 8.833371] Tegra cpuquiet clusterswitch enabled
[ 8.975901] init: bluetooth main process (278) terminated with status 1
[ 8.975958] init: bluetooth main process ended, respawning
[ 9.124513] init: bluetooth main process (340) terminated with status 1
[ 9.124582] init: bluetooth main process ended, respawning
[ 9.164064] init: plymouth main process (129) killed by ABRT signal
[ 9.166670] init: plymouth-splash main process (376) terminated with status 2
[ 9.229587] init: bluetooth main process (391) terminated with status 1
[ 9.229638] init: bluetooth main process ended, respawning
[ 9.285442] init: bluetooth main process (435) terminated with status 1
[ 9.285493] init: bluetooth main process ended, respawning
[ 9.343502] init: bluetooth main process (486) terminated with status 1
[ 9.343568] init: bluetooth main process ended, respawning
[ 9.474945] init: alsa-restore main process (567) terminated with status 99
[ 9.520651] init: bluetooth main process (559) terminated with status 1
[ 9.520715] init: bluetooth main process ended, respawning
[ 9.533822] init: plymouth-stop pre-start process (613) terminated with status 1
[ 9.601602] init: bluetooth main process (656) terminated with status 1
[ 9.601648] init: bluetooth main process ended, respawning
[ 9.633360] init: bluetooth main process (678) terminated with status 1
[ 9.633406] init: bluetooth main process ended, respawning
[ 9.662704] init: bluetooth main process (700) terminated with status 1
[ 9.662750] init: bluetooth main process ended, respawning
[ 9.688332] init: bluetooth main process (724) terminated with status 1
[ 9.688382] init: bluetooth main process ended, respawning
[ 9.713268] init: bluetooth main process (746) terminated with status 1
[ 9.713315] init: bluetooth respawning too fast, stopped
[ 17.914421] gpio wake56 for gpio=170
[ 17.914426] Enabling wake56
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$ lspci
00:01.0 PCI bridge: NVIDIA Corporation Device 0e12 (rev a1)
01:00.0 USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 03)
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$ sudo lspci -vvv
00:01.0 PCI bridge: NVIDIA Corporation Device 0e12 (rev a1) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: 0000f000-00000fff
Memory behind bridge: 13000000-130fffff
Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity+ SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Subsystem: NVIDIA Corporation Device 0000
Capabilities: [48] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] MSI: Enable+ Count=1/2 Maskable- 64bit+
Address: 00000000ab71f000 Data: 0000
Capabilities: [60] HyperTransport: MSI Mapping Enable- Fixed-
Mapping Address Base: 00000000fee00000
Capabilities: [80] Express (v2) Root Port (Slot+), MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
ExtTag+ RBE+ FLReset-
DevCtl: Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 512 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Latency L0 <512ns, L1 <4us
ClockPM- Surprise- LLActRep+ BwNot+
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Off, PwrInd On, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
Changed: MRL- PresDet+ LinkState+
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
RootCap: CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
DevCap2: Completion Timeout: Range AB, TimeoutDis+ ARIFwd-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
Kernel driver in use: pcieport

01:00.0 USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 03) (prog-if 30 [XHCI])
Subsystem: NEC Corporation uPD720200 USB 3.0 Host Controller
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 130
Region 0: Memory at 13000000 (64-bit, non-prefetchable) [size=8K]
Capabilities: [50] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [70] MSI: Enable- Count=1/8 Maskable- 64bit+
Address: 0000000000000000 Data: 0000
Capabilities: [90] MSI-X: Enable+ Count=8 Masked-
Vector table: BAR=0 offset=00001000
PBA: BAR=0 offset=00001080
Capabilities: [a0] Express (v2) Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 512 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
LnkCap: Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <4us, L1 unlimited
ClockPM+ Surprise- LLActRep- BwNot-
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Not Supported, TimeoutDis+
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
AERCap: First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
Capabilities: [140 v1] Device Serial Number ff-ff-ff-ff-ff-ff-ff-ff
Capabilities: [150 v1] Latency Tolerance Reporting
Max snoop latency: 0ns
Max no snoop latency: 0ns
Kernel driver in use: xhci_hcd

ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$


ubuntu@tegra-ubuntu:~$ dmesg
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.10.33-g71c61a3-dirty (vidyas@vidyas-desktop) (gcc version 4.5.3 (crosstool-NG hg_unknown@xxxxxxxxxxxxxxx) ) #133 SMP PREEMPT Tue Jul 8 10:15:07 IST 2014
[ 0.000000] CPU: ARMv7 Processor [413fc0f3] revision 3 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
[ 0.000000] Machine: laguna, model: NVIDIA Tegra124 Laguna, serial: 0
[ 0.000000] Truncating memory at 0x80000000 to fit in 32-bit physical address space
[ 0.000000] Found vpr, start=0xf6900000 size=9700000
[ 0.000000] Found tsec, start=0xf4900000 size=2000000<6>[ 0.000000] Found tegra_fbmem: 01f60000@ad012000
[ 0.000000] Tegra reserved memory:
[ 0.000000] LP0: f46ff000 - f46ff80f
[ 0.000000] Bootloader framebuffer: ad012000 - aef71fff
[ 0.000000] Bootloader framebuffer2: 00000000 - 00000000
[ 0.000000] Framebuffer: eec00000 - efdfffff
[ 0.000000] 2nd Framebuffer: efe00000 - f45fffff
[ 0.000000] Carveout: 00000000 - 00000000
[ 0.000000] Vpr: f6900000 - ffffffff
[ 0.000000] Tsec: f4900000 - f68fffff
[ 0.000000] cma: CMA: reserved 16 MiB at ac000000
[ 0.000000] Memory policy: ECC disabled, Data cache writealloc
[ 0.000000] On node 0 totalpages: 453632
[ 0.000000] free_area_init_node: node 0, pgdat c0cbc940, node_mem_map c0e09000
[ 0.000000] Normal zone: 1520 pages used for memmap
[ 0.000000] Normal zone: 0 pages reserved
[ 0.000000] Normal zone: 194560 pages, LIFO batch:31
[ 0.000000] HighMem zone: 2204 pages used for memmap
[ 0.000000] HighMem zone: 259072 pages, LIFO batch:31
[ 0.000000] failed to read /chosen/proc-board/id
[ 0.000000] failed to read /chosen/pmu-board/id
[ 0.000000] DTS File Name: /home/vidyas/x/l4t-dev-kernel/kernel/arch/arm/boot/dts/tegra124-laguna.dts
[ 0.000000] Tegra12: CPU Speedo value 2425, Soc Speedo value 2367, Gpu Speedo value 2194
[ 0.000000] Tegra12: CPU Speedo ID 0, Soc Speedo ID 0, Gpu Speedo ID 0
[ 0.000000] Tegra12: CPU Process ID 0,Soc Process ID 1,Gpu Process ID 0
[ 0.000000] Tegra Revision: A01 SKU: 0x0 CPU Process: 0 Core Process: 1
[ 0.000000] tegra: PLLP fixed rate: 408000000
[ 0.000000] tegra_clk_shared_bus_user_init: c2bus client se left ON
[ 0.000000] tegra_clk_shared_bus_user_init: c3bus client tsec left ON
[ 0.000000] Lowering cpu_lp maximum rate from 1350000000 to 1044000000
[ 0.000000] Lowering sbus maximum rate from 420000000 to 372000000
[ 0.000000] Lowering vic03 maximum rate from 900000000 to 756000000
[ 0.000000] Lowering tsec maximum rate from 900000000 to 756000000
[ 0.000000] Lowering msenc maximum rate from 600000000 to 480000000
[ 0.000000] Lowering se maximum rate from 600000000 to 480000000
[ 0.000000] Lowering vde maximum rate from 600000000 to 480000000
[ 0.000000] Lowering host1x maximum rate from 500000000 to 408000000
[ 0.000000] Lowering vi maximum rate from 700000000 to 600000000
[ 0.000000] Lowering isp maximum rate from 700000000 to 600000000
[ 0.000000] Lowering c4bus maximum rate from 700000000 to 600000000
[ 0.000000] Lowering pll_c maximum rate from 1400000000 to 1066000000
[ 0.000000] Lowering pll_c2 maximum rate from 1200000000 to 1066000000
[ 0.000000] Lowering pll_c3 maximum rate from 1200000000 to 1066000000
[ 0.000000] Lowering hdmi maximum rate from 594000000 to 297000000
[ 0.000000] Lowering sdmmc1 maximum rate from 208000000 to 204000000
[ 0.000000] Lowering sdmmc3 maximum rate from 208000000 to 204000000
[ 0.000000] Lowering gbus maximum rate from 1032000000 to 648000000
[ 0.000000] Lowering cpu_g maximum rate from 3000000000 to 2014500000
[ 0.000000] tegra dvfs: VDD_CPU nominal 1220mV, scaling enabled
[ 0.000000] tegra dvfs: VDD_CORE nominal 1150mV, scaling enabled
[ 0.000000] tegra dvfs: VDD_GPU nominal 1200mV, scaling enabled
[ 0.000000] Switching to timer-based delay loop
[ 0.000000] tegra_powergate_init: DONE
[ 0.000000] PERCPU: Embedded 9 pages/cpu @c1cc2000 s14976 r8192 d13696 u36864
[ 0.000000] pcpu-alloc: s14976 r8192 d13696 u36864 alloc=9*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 452112
[ 0.000000] Kernel command line: tegraid=40.1.1.0.0 mem=1862M@2048M memtype=0 vpr=151M@3945M tsec=32M@3913M otf_key=ad8aab2b74a0518e62e02f2807da88b5 ddr_die=2048M@2048M section=256M commchip_id=0 usb_port_owner_info=0 lane_owner_info=4 emc_max_dvfs=0 touch_id=0@540700518 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debug_uartport=lsport,3 console=tty1 sku_override=0 usbcore.old_scheme_first=1 lp0_vec=2064@0xf46ff000 tegra_fbmem=32899072@0xad012000 core_edp_mv=1150 core_edp_ma=4000 pmuboard=0x0167:0x0000:0x02:0x43:0x00 displayboard=0x3030:0x3a30:0x30:0x78:0x30 power_supply=Adapter audio_codec=rt5640 board_info=0x0167:0x0000:0x02:0x43:0x00 root=/dev/mmcblk0p1 rw rootwait tegraboot=sdmmc gpt gpt_sector=94207 modem_id=0 watchdog=disable android.kerneltype=normal
[ 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: 1772MB = 1772MB total
[ 0.000000] Memory: 1735468k/1735468k available, 171220k reserved, 1036288K highmem
[ 0.000000] Virtual kernel memory layout:
[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
[ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
[ 0.000000] vmalloc : 0xf0000000 - 0xff000000 ( 240 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xef800000 ( 760 MB)
[ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
[ 0.000000] modules : 0xbe800000 - 0xbfe00000 ( 22 MB)
[ 0.000000] .text : 0xc0008000 - 0xc0b04848 (11251 kB)
[ 0.000000] .init : 0xc0b05000 - 0xc0b83a80 ( 507 kB)
[ 0.000000] .data : 0xc0b84000 - 0xc0cd4500 (1346 kB)
[ 0.000000] .bss : 0xc0cd4500 - 0xc0d5d884 ( 549 kB)
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] NR_IRQS:960
[ 0.000000] the number of interrupt controllers found is 5
[ 0.000000] Architected local timer running at 12.00MHz (phys).
[ 0.000000] sched_clock: 56 bits at 12MHz, resolution 83ns, wraps every 2863311536128ns
[ 0.000000] Ignoring duplicate/late registration of read_current_timer delay
[ 0.000000] Console: colour dummy device 80x30
[ 0.000000] console [tty1] enabled
[ 0.003884] Calibrating delay loop (skipped), value calculated using timer frequency.. lpj=12000
[ 0.003954] pid_max: default: 32768 minimum: 301
[ 0.004275] Mount-cache hash table entries: 512
[ 0.026438] Initializing cgroup subsys debug
[ 0.026482] Initializing cgroup subsys freezer
[ 0.026590] CPU: Testing write buffer coherency: ok
[ 0.026662] ftrace: allocating 32372 entries in 64 pages
[ 0.068554] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[ 0.068598] Setting up static identity map for 0xc07f4460 - 0xc07f44f4
[ 0.072583] ftrace: Allocated trace_printk buffers
[ 0.080292] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[ 0.083302] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
[ 0.086353] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
[ 0.086548] Brought up 4 CPUs
[ 0.086612] SMP: Total of 4 processors activated.
[ 0.086628] CPU: All CPU(s) started in SVC mode.
[ 0.087497] devtmpfs: initialized
[ 0.096813] pinctrl core: initialized pinctrl subsystem
[ 0.097135] regulator-dummy: no parameters
[ 0.097858] NET: Registered protocol family 16
[ 0.100367] DMA: preallocated 256 KiB pool for atomic coherent allocations
[ 0.100777] cpuidle: using governor ladder
[ 0.100798] cpuidle: using governor menu
[ 0.102111] tegra_smmu tegra_smmu: Loaded Tegra IOMMU driver
[ 0.103972] failed to read /chosen/display-board/id
[ 0.106131] ardbeg_camera_auxdata: update camera lookup table.
[ 0.113127] tegra124-pinctrl 70000868.pinmux: invalid group "spdif_in_pk6" for function "rsvd1"
[ 0.115478] tegra124-pinctrl 70000868.pinmux: Probed Tegra pinctrl driver
[ 0.116205] GPIO chip tegra-gpio: created GPIO range 0->250 ==> 70000868.pinmux PIN 0->250
[ 0.116255] tegra-gpio 6000d000.gpio: Initialising GPIO state 0: name default
[ 0.116921] gpiochip_add: registered GPIOs 0 to 255 on device: tegra-gpio
[ 0.124283] Wake16 for irq=34
[ 0.131074] board_info: id:sku:fab:major:minor = 0x0167:0x0000:0x02:0x43:0x00
[ 0.131143] disp1 pclk=154700000
[ 0.131154] disp2 pclk=297000000
[ 0.131165] Selecting UARTD as the debug console
[ 0.131212] The debug console clock name is uartd
[ 0.131625] ardbeg_modem_init: modem_id = 0
[ 0.133817] Clear bootloader IO dpd settings
[ 0.134011] Loading PM359 EMC tables.
[ 0.134263] tegra: pll_m is selected as scalable EMC clock source
[ 0.134287] tegra: selected pll_m scaling option but no backup source:
[ 0.134306] removed not supported entries from the table:
[ 0.134348] Lowering emc maximum rate from 1200000000 to 792000000
[ 0.134378] tegra: validated EMC DFS table
[ 0.134460] laguna_edp_init: CPU regulator 15000 mA
[ 0.379779] laguna_edp_init: GPU regulator 8000 mA
[ 0.379815] swapper/0 isomgr_init(): iso emc max clk=792000KHz
[ 0.379833] swapper/0 isomgr_init(): max_iso_bw=6336000KB<6>[ 0.380149] ardbeg_touch_init init raydium touch
[ 0.380294] Raydium - touch platform_id : 8
[ 0.464055] platform tegradc.0: IOVA linear map 0xeec00000(1200000)
[ 0.468273] platform tegradc.0: IOVA linear map 0xefe00000(4800000)
[ 0.475908] platform tegradc.0: IOVA linear map 0xad012000(1f60000)
[ 0.479184] platform tegradc.0: IOVA linear map 0xf6900000(9700000)
[ 0.481419] platform tegradc.1: IOVA linear map 0xeec00000(1200000)
[ 0.485626] platform tegradc.1: IOVA linear map 0xefe00000(4800000)
[ 0.493257] platform tegradc.1: IOVA linear map 0xad012000(1f60000)
[ 0.496543] platform tegradc.1: IOVA linear map 0xf6900000(9700000)
[ 0.496784] soctherm THERMTRIP not supported on PMU (BOARD_P359)
[ 0.497051] tegra11_soctherm_oc_int_init(): OC interrupts are not enabled
[ 0.497281] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[ 0.497308] hw-breakpoint: maximum watchpoint size is 8 bytes.
[ 0.497609] MC mapped MMIO address: 0xfde19000
[ 0.497895] mc-err: Started MC error interface!
[ 0.508337] bio: create slab <bio-0> at 0
[ 0.510176] reg-fixed-voltage 0.regulator: Consumer c1 does not have device name
[ 0.510211] reg-fixed-voltage 0.regulator: Consumer c2 does not have device name
[ 0.510239] of_get_named_gpio_flags: can't parse gpios property
[ 0.510339] vdd-ac-bat: 8400 mV
[ 0.510482] reg-fixed-voltage 1.regulator: Consumer c1 does not have device name
[ 0.510513] reg-fixed-voltage 1.regulator: Consumer c2 does not have device name
[ 0.510539] of_get_named_gpio_flags: can't parse gpios property
[ 0.510636] vdd-3v3-aon: 3300 mV
[ 0.510796] reg-fixed-voltage 8.regulator: Consumer c1 does not have device name
[ 0.510827] reg-fixed-voltage 8.regulator: Consumer c2 does not have device name
[ 0.510855] reg-fixed-voltage 8.regulator: Consumer c3 does not have device name
[ 0.510889] reg-fixed-voltage 8.regulator: Consumer c6 does not have device name
[ 0.510916] reg-fixed-voltage 8.regulator: Consumer c7 does not have device name
[ 0.510944] reg-fixed-voltage 8.regulator: Consumer c8 does not have device name
[ 0.510971] reg-fixed-voltage 8.regulator: Consumer c9 does not have device name
[ 0.510998] reg-fixed-voltage 8.regulator: Consumer c10 does not have device name
[ 0.511026] reg-fixed-voltage 8.regulator: Consumer c11 does not have device name
[ 0.511054] reg-fixed-voltage 8.regulator: Consumer c12 does not have device name
[ 0.511095] of_get_named_gpio_flags: can't parse gpios property
[ 0.511216] reg-3v3-supply: 3300 mV
[ 0.512839] vgaarb: loaded
[ 0.513499] SCSI subsystem initialized
[ 0.513684] libata version 3.00 loaded.
[ 0.513872] usbcore: registered new interface driver usbfs
[ 0.513936] usbcore: registered new interface driver hub
[ 0.514050] usbcore: registered new device driver usb
[ 0.514350] of_get_named_gpio_flags exited with status 20
[ 0.514368] of_get_named_gpio_flags exited with status 21
[ 0.515701] gpiochip_find_base: found new base at 1008
[ 0.515798] gpiochip_add: registered GPIOs 1008 to 1023 on device: tca6416
[ 0.516253] of_get_named_gpio_flags exited with status 157
[ 0.516271] of_get_named_gpio_flags exited with status 158
[ 0.516791] of_get_named_gpio_flags exited with status 217
[ 0.516808] of_get_named_gpio_flags exited with status 218
[ 0.517092] of_get_named_gpio_flags exited with status 172
[ 0.517108] of_get_named_gpio_flags exited with status 173
[ 0.517411] of_get_named_gpio_flags exited with status 206
[ 0.517427] of_get_named_gpio_flags exited with status 207
[ 0.518737] as3722 4-0040: AS3722 ID: ID1:ID2:ID3 = 0x0c:0x01:0x05
[ 0.518764] as3722 4-0040: Device version 1V1 and platform version 1V2
[ 0.518786] as3722 4-0040: Final OTP version 1V2
[ 0.522947] gpiochip_find_base: found new base at 1000
[ 0.523044] gpiochip_add: registered GPIOs 1000 to 1007 on device: as3722-gpio
[ 0.523075] GPIO chip as3722-gpio: created GPIO range 0->7 ==> as3722-pinctrl PIN 0->7
[ 0.523263] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.523340] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.523390] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.523420] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.523448] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.523476] as3722-regulator as3722-regulator.0: Consumer c4 does not have device name
[ 0.523530] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.523559] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.523587] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.523615] as3722-regulator as3722-regulator.0: Consumer c5 does not have device name
[ 0.523643] as3722-regulator as3722-regulator.0: Consumer c6 does not have device name
[ 0.523671] as3722-regulator as3722-regulator.0: Consumer c7 does not have device name
[ 0.523727] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.523756] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.523785] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.523819] as3722-regulator as3722-regulator.0: Consumer c9 does not have device name
[ 0.523848] as3722-regulator as3722-regulator.0: Consumer c11 does not have device name
[ 0.523876] as3722-regulator as3722-regulator.0: Consumer c13 does not have device name
[ 0.523905] as3722-regulator as3722-regulator.0: Consumer c15 does not have device name
[ 0.523956] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.523984] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.524035] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.524063] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.524091] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.524119] as3722-regulator as3722-regulator.0: Consumer c4 does not have device name
[ 0.524147] as3722-regulator as3722-regulator.0: Consumer c5 does not have device name
[ 0.524175] as3722-regulator as3722-regulator.0: Consumer c6 does not have device name
[ 0.524203] as3722-regulator as3722-regulator.0: Consumer c7 does not have device name
[ 0.524232] as3722-regulator as3722-regulator.0: Consumer c8 does not have device name
[ 0.524260] as3722-regulator as3722-regulator.0: Consumer c9 does not have device name
[ 0.524328] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.524406] as3722-regulator as3722-regulator.0: Consumer c9 does not have device name
[ 0.524435] as3722-regulator as3722-regulator.0: Consumer c10 does not have device name
[ 0.524484] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.524532] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.524561] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.524612] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.524682] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.524711] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.524786] as3722-regulator as3722-regulator.0: Consumer c1 does not have device name
[ 0.524815] as3722-regulator as3722-regulator.0: Consumer c2 does not have device name
[ 0.524843] as3722-regulator as3722-regulator.0: Consumer c3 does not have device name
[ 0.525756] vdd-cpu: 650 <--> 1300 mV at 1000 mV at 3500 mA
[ 0.527039] vdd-core: 700 <--> 1350 mV at 1150 mV at 3500 mA
[ 0.528020] vddio-ddr: at 1350 mV
[ 0.528399] as3722-sd3: no parameters
[ 0.528723] avdd-pll-pex: 1050 mV
[ 0.529711] vdd-1v8: at 1800 mV
[ 0.530074] vdd-gpu: applied init 1000000uV constraint
[ 0.530914] vdd-gpu: 650 <--> 1200 mV at 1000 mV at 3500 mA
[ 0.531292] avdd-pll: at 1050 mV at 300 mA
[ 0.532550] vdd-cam: 1800 mV at 150 mA
[ 0.533074] avdd-dsi-csi: at 1200 mV at 150 mA
[ 0.534006] vdd-rtc: 800 mV at 150 mA
[ 0.534534] avdd-cam: 2700 mV at 150 mA
[ 0.535064] vdd-1v2-cam: 1200 mV at 150 mA
[ 0.535460] vddio-sdmmc-2: 1800 <--> 3300 mV at 150 mA
[ 0.535997] vdd-1v1-cam: 1050 mV at 150 mA
[ 0.536889] avdd-spi: 3300 mV at 150 mA
[ 0.537418] vdd-2v7-cam: 2700 mV at 150 mA
[ 0.537996] vpp-fuse: 1800 mV at 150 mA
[ 0.538683] of_get_named_gpio_flags: can't parse gpios property
[ 0.538694] of_get_named_gpio_flags: can't parse gpios property
[ 0.539196] Linux video capture interface: v2.00
[ 0.540347] Advanced Linux Sound Architecture Driver Initialized.
[ 0.541114] of_get_named_gpio_flags exited with status 108
[ 0.541242] usb0-vbus: 5000 mV
[ 0.541433] of_get_named_gpio_flags exited with status 109
[ 0.541574] usb1-usb2-vbus: 5000 mV
[ 0.541746] of_get_named_gpio_flags exited with status 86
[ 0.541871] vdd-hdmi: 5000 mV
[ 0.542027] of_get_named_gpio_flags exited with status 63
[ 0.542134] avdd-hdmi-pll: 3300 mV
[ 0.542188] avdd-hdmi-pll: supplied by avdd-pll-pex
[ 0.542366] reg-fixed-sync-voltage 6.regulator: Consumer c1 does not have device name
[ 0.542407] of_get_named_gpio_flags exited with status 122
[ 0.542509] vdd-lcd-bl: 3300 mV
[ 0.542675] reg-fixed-sync-voltage 7.regulator: Consumer c1 does not have device name
[ 0.542716] of_get_named_gpio_flags exited with status 58
[ 0.542828] vdd-lcd-bl-en: 5000 mV
[ 0.542990] reg-fixed-sync-voltage 9.regulator: Consumer c3 does not have device name
[ 0.543019] of_get_named_gpio_flags: can't parse gpios property
[ 0.543131] reg-5v0-supply: 5000 mV
[ 0.543300] reg-fixed-sync-voltage a.regulator: Consumer c1 does not have device name
[ 0.543331] reg-fixed-sync-voltage a.regulator: Consumer c2 does not have device name
[ 0.543360] reg-fixed-sync-voltage a.regulator: Consumer c3 does not have device name
[ 0.543405] reg-fixed-sync-voltage a.regulator: Consumer c10 does not have device name
[ 0.543434] reg-fixed-sync-voltage a.regulator: Consumer c11 does not have device name
[ 0.543462] reg-fixed-sync-voltage a.regulator: Consumer c12 does not have device name
[ 0.543490] reg-fixed-sync-voltage a.regulator: Consumer c13 does not have device name
[ 0.543518] reg-fixed-sync-voltage a.regulator: Consumer c14 does not have device name
[ 0.543564] reg-fixed-sync-voltage a.regulator: Consumer c15 does not have device name
[ 0.543622] of_get_named_gpio_flags: can't parse gpios property
[ 0.543714] reg-1v8-supply: 1800 mV
[ 0.544007] reg-fixed-sync-voltage b.regulator: Consumer c1 does not have device name
[ 0.544050] of_get_named_gpio_flags exited with status 1008
[ 0.544541] reg-dcdc-1v2: 1200 mV
[ 0.544738] reg-fixed-sync-voltage c.regulator: Consumer c8 does not have device name
[ 0.544782] of_get_named_gpio_flags exited with status 1002
[ 0.545317] as3722-gpio2-supply: 3300 mV
[ 0.545520] reg-fixed-sync-voltage d.regulator: Consumer c1 does not have device name
[ 0.545564] of_get_named_gpio_flags exited with status 1004
[ 0.546296] as3722-gpio4-supply: 3300 mV
[ 0.546474] of_get_named_gpio_flags exited with status 136
[ 0.546605] sdmmc-en-supply: 3300 mV
[ 0.546779] of_get_named_gpio_flags exited with status 1010
[ 0.547253] vdd-cdc-1v2-aud: 1200 mV
[ 0.547415] reg-fixed-sync-voltage 10.regulator: Consumer c1 does not have device name
[ 0.547448] reg-fixed-sync-voltage 10.regulator: Consumer c2 does not have device name
[ 0.547477] reg-fixed-sync-voltage 10.regulator: Consumer c3 does not have device name
[ 0.547503] of_get_named_gpio_flags: can't parse gpios property
[ 0.547595] reg-aon-1v8: 1800 mV
[ 0.547781] reg-fixed-sync-voltage 11.regulator: Consumer c1 does not have device name
[ 0.547811] of_get_named_gpio_flags: can't parse gpios property
[ 0.547906] reg-aon-1v2: 1200 mV
[ 0.551212] as3722-adc-extcon as3722-adc-extcon.2: USB-Host is disconnected
[ 0.554807] tegra-pwr-detect power-detect.2: started io power detection dynamic control
[ 0.554841] tegra-pwr-detect power-detect.2: NO_IO_POWER setting 0x0 package mask 0x1
[ 0.554974] Switching to clocksource arch_sys_counter
[ 0.576659] nvmap_heap_init: nvmap_heap_init: created heap block cache
[ 0.576916] nvmap_page_pool_init: Total MB RAM: 1710
[ 0.576938] nvmap_page_pool_init: nvmap page pool size: 54720 pages (213 MB)
[ 0.577341] nvmap_background_zero_allocator: PP alloc thread starting.
[ 0.577517] iram: dma coherent mem declare 0x40001000,258048
[ 0.578514] misc nvmap: created heap iram base 0x40001000 size (252KiB)
[ 0.578625] vpr: dma coherent mem declare 0xf6900000,158334976
[ 0.582319] misc nvmap: created heap vpr base 0xf6900000 size (154624KiB)
[ 0.582479] nvmap:inner cache maint threshold=2097152
[ 0.593354] Wake39 for irq=52
[ 0.593466] tegra-otg tegra-otg: otg transceiver registered
[ 0.593889] NET: Registered protocol family 2
[ 0.594677] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.594897] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.595125] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.595201] TCP: reno registered
[ 0.595227] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.595283] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.595589] NET: Registered protocol family 1
[ 0.596057] RPC: Registered named UNIX socket transport module.
[ 0.596084] RPC: Registered udp transport module.
[ 0.596103] RPC: Registered tcp transport module.
[ 0.596122] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.596148] PCI: CLS 0 bytes, default 64
[ 0.596515] tegra-fuse tegra-fuse: Fuse driver initialized succesfully
[ 0.602956] host1x host1x: initialized
[ 0.604450] CPU PMU: probing PMU on CPU 0
[ 0.604490] hw perfevents: enabled with ARMv7 Cortex-A15 PMU driver, 7 counters available
[ 0.605242] tegra_throttle : init passed
[ 0.605349] Tegra cpuquiet initialized: disabled
[ 0.605504] cpu-tegra: init EDP limit: 2014 MHz
[ 0.606008] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type CPU-therm
[ 0.606572] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type GPU-therm
[ 0.606874] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type MEM-therm
[ 0.607574] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[ 0.609250] bounce pool size: 64 pages
[ 0.610937] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx).
[ 0.611306] NTFS driver 2.1.30 [Flags: R/O].
[ 0.611474] fuse init (API version 7.22)
[ 0.611737] msgmni has been set to 1397
[ 0.613606] io scheduler noop registered (default)
[ 0.614084] of_get_named_gpio_flags exited with status 113
[ 0.614107] of_get_named_gpio_flags exited with status 235
[ 0.614127] of_get_named_gpio_flags exited with status 1016
[ 0.614319] PCIE.C: tegra_pcie_enable_regulators : regulator hvdd_pex
[ 0.614423] PCIE.C: tegra_pcie_enable_regulators : regulator pexio
[ 0.615208] tegra-pcie 1003000.pcie-controller: acquiring hotplug_detect = 113
[ 0.616020] tegra-pcie 1003000.pcie-controller: probing port 0, using 2 lanes
[ 0.648589] tegra-pcie 1003000.pcie-controller: probing port 1, using 1 lanes
[ 1.051174] tegra-pcie 1003000.pcie-controller: link 1 down, retrying
[ 1.453195] tegra-pcie 1003000.pcie-controller: link 1 down, retrying
[ 1.855222] tegra-pcie 1003000.pcie-controller: link 1 down, retrying
[ 1.857279] tegra-pcie 1003000.pcie-controller: link 1 down, ignoring
[ 1.857477] tegra-pcie 1003000.pcie-controller: PCI host bridge to bus 0000:00
[ 1.857509] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[ 1.857536] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[ 1.857564] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 1.857587] pci_bus 0000:00: root bus resource [io 0x1000-0xffff]
[ 1.857645] pci 0000:00:01.0: [10de:0e12] type 01 class 0x060400
[ 1.857734] pci 0000:00:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.857976] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 1.858222] pci 0000:01:00.0: [1033:0194] type 00 class 0x0c0330
[ 1.858267] pci 0000:01:00.0: reg 10: [mem 0x00000000-0x00001fff 64bit]
[ 1.858433] pci 0000:01:00.0: PME# supported from D0 D3hot
[ 1.860097] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 1.860146] pci 0000:00:01.0: BAR 8: assigned [mem 0x13000000-0x130fffff]
[ 1.860176] pci 0000:01:00.0: BAR 0: assigned [mem 0x13000000-0x13001fff 64bit]
[ 1.860221] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 1.860245] pci 0000:00:01.0: bridge window [mem 0x13000000-0x130fffff]
[ 1.860275] PCI: enabling device 0000:00:01.0 (0140 -> 0143)
[ 1.860319] pci 0000:00:01.0: nv_msi_ht_cap_quirk didn't locate host bridge
[ 1.860582] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[ 1.860609] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[ 1.860634] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[ 1.860753] aer 0000:00:01.0:pcie02: service driver aer loaded
[ 1.860827] PCI: enabling device 0000:01:00.0 (0140 -> 0142)
[ 1.861583] pwm-backlight pwm-backlight: unable to request PWM, trying legacy API
[ 1.861696] sysedp_create_consumer: unable to create pwm-backlight, no consumer_data for pwm-backlight found
[ 1.866302] tsec tsec: initialized
[ 1.868198] isp isp.0: initialized
[ 1.869212] isp isp.1: initialized
[ 1.870859] falcon vic03.0: initialized
[ 1.872132] falcon msenc: initialized
[ 1.872949] tegradc tegradc.0: DSI: HS clock rate is 464500
[ 1.874424] p,wuxga-10-1 panel dt support not available
[ 2.155592] tegradc tegradc.0: nominal-pclk:154700000 parent:154500000 div:1.0 pclk:154500000 153153000~168623000
[ 2.244210] tegradc tegradc.0: DSI pad calibration done
[ 2.251383] tegradc tegradc.0: probed
[ 2.252121] tegradc tegradc.0: nominal-pclk:154679000 parent:463500000 div:3.0 pclk:154500000 153132210~168600110
[ 2.274258] Console: switching to colour frame buffer device 240x75
[ 2.295623] tegradc tegradc.0: fb registered
[ 2.301610] gpio wake4 for gpio=111
[ 2.301981] tegra-i2c tegra12-i2c.3: no acknowledge from address 0x50
[ 2.303137] tegradc tegradc.1: probed
[ 2.304458] tegradc tegradc.1: fb registered
[ 2.304572] hdmi_state_machine_worker (tid ebb03580): state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[ 2.304750] hdmi_state_machine_set_state_l: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[ 2.308236] tegra-apbdma tegra-apbdma: Tegra20 APB DMA driver register 32 channels
[ 2.309061] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 2.310484] serial8250.0: ttyS0 at MMIO 0x70006300 (irq = 122) is a Tegra
[ 2.346639] hdmi_state_machine_worker (tid ebb03580): state 0 (Reset), hpd 0, pending_hpd_evt 0
[ 2.346643] hdmi_disable_l: audio_switch 0
[ 2.346646] hdmi_disable_l: hpd_switch 0
[ 2.346655] hdmi_state_machine_set_state_l: switching from state 0 (Reset) to state 1 (Check Plug)
[ 2.360103] hdmi_state_machine_worker (tid ebb03580): state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[ 2.360107] hdmi_disable_l: audio_switch 0
[ 2.360110] hdmi_disable_l: hpd_switch 0
[ 2.360117] hdmi_state_machine_set_state_l: switching from state 1 (Check Plug) to state 3 (Disabled)
[ 4.634092] console [ttyS0] enabled
[ 4.638634] serial-tegra.0: ttyTHS0 at MMIO 0x70006000 (irq = 68) is a SERIAL_TEGRA
[ 4.646740] serial-tegra.1: ttyTHS1 at MMIO 0x70006040 (irq = 69) is a SERIAL_TEGRA
[ 4.654876] serial-tegra.2: ttyTHS2 at MMIO 0x70006200 (irq = 78) is a SERIAL_TEGRA
[ 4.668335] loop: module loaded
[ 4.671859] nct1008_nct72 1-004c: success in enabling rail vdd_nct72
[ 4.687462] gpio wake35 for gpio=70
[ 4.691117] nct1008_nct72 1-004c: nct1008_probe: initialized
[ 4.698086] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type Tboard_tegra
[ 4.709376] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type Tdiode_tegra
[ 4.722154] GPS: mt3332_gps_mod_init: platform_driver_register ret = 0
[ 4.729667] tegra-sata tegra-sata.0: version 1.0
[ 4.729793] of_get_named_gpio_flags exited with status 1017
[ 4.731216] tegra-sata tegra-sata.0: AHCI 0001.0301 32 slots 2 ports 3 Gbps 0x1 impl TEGRA-SATA mode
[ 4.740623] tegra-sata tegra-sata.0: flags: 64bit ncq sntf pm led pio slum part sadm sds apst
[ 4.750568] scsi0 : tegra-sata
[ 4.754056] scsi1 : tegra-sata
[ 4.757392] ata1: SATA max UDMA/133 irq 55
[ 4.761605] ata2: DUMMY
[ 4.766112] tun: Universal TUN/TAP device driver, 1.6
[ 4.771265] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx>
[ 4.777826] PPP generic driver version 2.4.2
[ 4.782382] PPP BSD Compression module registered
[ 4.787183] PPP Deflate Compression module registered
[ 4.792348] PPP MPPE Compression module registered
[ 4.797241] NET: Registered protocol family 24
[ 4.801880] usbcore: registered new interface driver asix
[ 4.807536] usbcore: registered new interface driver ax88179_178a
[ 4.813851] usbcore: registered new interface driver cdc_ether
[ 4.819840] usbcore: registered new interface driver smsc95xx
[ 4.825738] usbcore: registered new interface driver cdc_subset
[ 4.836868] usbcore: registered new interface driver cdc_ncm
[ 4.847637] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.859496] tegra USB phy - inst[1] platform info:
[ 4.869340] port_otg: no
[ 4.876858] has_hostpc: yes
[ 4.884681] phy_interface: USB_PHY_INTF_UTMI
[ 4.893920] op_mode: TEGRA_USB_OPMODE_HOST
[ 4.902956] qc2_voltage: 0
[ 4.910608] hot_plug: disabled
[ 4.918534] remote_wakeup: enabled
[ 4.928312] tegra-ehci tegra-ehci.1: Tegra EHCI Host Controller
[ 4.939151] tegra-ehci tegra-ehci.1: new USB bus registered, assigned bus number 1
[ 4.951677] Wake40 for irq=53
[ 4.959441] Wake42 for irq=53
[ 4.967203] tegra-ehci tegra-ehci.1: irq 53, io mem 0x7d004000
[ 4.983072] tegra-ehci tegra-ehci.1: USB 2.0 started, EHCI 1.10
[ 4.993810] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 5.005306] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.017275] usb usb1: Product: Tegra EHCI Host Controller
[ 5.027435] usb usb1: Manufacturer: Linux 3.10.33-g71c61a3-dirty ehci_hcd
[ 5.039081] usb usb1: SerialNumber: tegra-ehci.1
[ 5.049007] hub 1-0:1.0: USB hub found
[ 5.057618] hub 1-0:1.0: 1 port detected
[ 5.066700] tegra USB phy - inst[2] platform info:
[ 5.069102] ata1: SATA link down (SStatus 0 SControl 300)
[ 5.086496] port_otg: no
[ 5.093741] has_hostpc: yes
[ 5.101199] phy_interface: USB_PHY_INTF_UTMI
[ 5.110195] op_mode: TEGRA_USB_OPMODE_HOST
[ 5.118922] qc2_voltage: 0
[ 5.126154] hot_plug: disabled
[ 5.133716] remote_wakeup: enabled
[ 5.143046] tegra-ehci tegra-ehci.2: Tegra EHCI Host Controller
[ 5.153519] tegra-ehci tegra-ehci.2: new USB bus registered, assigned bus number 2
[ 5.165708] Wake41 for irq=129
[ 5.173267] Wake43 for irq=129
[ 5.180819] tegra-ehci tegra-ehci.2: irq 129, io mem 0x7d008000
[ 5.197072] tegra-ehci tegra-ehci.2: USB 2.0 started, EHCI 1.10
[ 5.207431] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 5.218557] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.230134] usb usb2: Product: Tegra EHCI Host Controller
[ 5.239828] usb usb2: Manufacturer: Linux 3.10.33-g71c61a3-dirty ehci_hcd
[ 5.250926] usb usb2: SerialNumber: tegra-ehci.2
[ 5.260344] hub 2-0:1.0: USB hub found
[ 5.268453] hub 2-0:1.0: 1 port detected
[ 5.277008] ehci-pci: EHCI PCI platform driver
[ 5.285823] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 5.295349] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3
[ 5.308372] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 5.319398] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.330941] usb usb3: Product: xHCI Host Controller
[ 5.340046] usb usb3: Manufacturer: Linux 3.10.33-g71c61a3-dirty xhci_hcd
[ 5.351079] usb usb3: SerialNumber: 0000:01:00.0
[ 5.360197] xHCI xhci_add_endpoint called for root hub
[ 5.360206] xHCI xhci_check_bandwidth called for root hub
[ 5.360334] hub 3-0:1.0: USB hub found
[ 5.368195] hub 3-0:1.0: 2 ports detected
[ 5.376664] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 5.386062] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 4
[ 5.397817] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[ 5.408829] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.420292] usb usb4: Product: xHCI Host Controller
[ 5.429358] usb usb4: Manufacturer: Linux 3.10.33-g71c61a3-dirty xhci_hcd
[ 5.440410] usb usb4: SerialNumber: 0000:01:00.0
[ 5.449570] xHCI xhci_add_endpoint called for root hub
[ 5.449579] xHCI xhci_check_bandwidth called for root hub
[ 5.449711] hub 4-0:1.0: USB hub found
[ 5.457697] hub 4-0:1.0: 2 ports detected
[ 5.474412] usbcore: registered new interface driver cdc_acm
[ 5.484333] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[ 5.496749] usbcore: registered new interface driver cdc_wdm
[ 5.506862] usbcore: registered new interface driver usb-storage
[ 5.517373] usbcore: registered new interface driver usbserial
[ 5.527616] usbcore: registered new interface driver option
[ 5.537599] usbserial: USB Serial support registered for GSM modem (1-port)
[ 5.549121] usbcore: registered new interface driver pl2303
[ 5.559120] usbserial: USB Serial support registered for pl2303
[ 5.569477] Nvidia Tegra High-Speed USB Device Controller driver (Apr 30, 2012)
[ 5.581619] tegra USB phy - inst[0] platform info:
[ 5.590911] port_otg: yes
[ 5.597999] has_hostpc: yes
[ 5.605266] phy_interface: USB_PHY_INTF_UTMI
[ 5.614039] op_mode: TEGRA_USB_OPMODE_DEVICE
[ 5.622805] qc2_voltage: 0
[ 5.629969] vbus_pmu_irq: 0
[ 5.637177] charging: enabled
[ 5.644503] remote_wakeup: disabled
[ 5.655200] tegra-udc tegra-udc.0: usb_bat_chg regulator not registered: USB charging will not be enabled
[ 5.669780] usbcore: registered new interface driver xpad
[ 5.682530] as3722-rtc as3722-rtc.1: rtc core: registered as3722 as rtc0
[ 5.693785] as3722-rtc as3722-rtc.1: RTC interrupt 449
[ 5.706462] i2c /dev entries driver
[ 5.717858] i2c i2c-0: Added multiplexed i2c bus 6
[ 5.727396] i2c i2c-0: Added multiplexed i2c bus 7
[ 5.737402] i2c i2c-0: Added multiplexed i2c bus 8
[ 5.746139] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[ 5.757813] i2c i2c-0: Added multiplexed i2c bus 9
[ 5.767061] pca954x 0-0070: registered 4 multiplexed busses for I2C switch pca9546
[ 5.779422] virtual_init
[ 5.788497] nvavp nvavp: allocated IOVA at 8ff00000 for AVP os
[ 5.799740] tegra_dtv_probe: probing dtv.
[ 5.808362] usb 3-1: New USB device found, idVendor=058f, idProduct=6387
[ 5.808685] setup_stream: bufsize = 4096, bufnum = 4
[ 5.808686] ar0832_init: ++
[ 5.809146] i2c-core: driver [max77387] using legacy suspend method
[ 5.809149] i2c-core: driver [max77387] using legacy resume method
[ 5.809216] i2c-core: driver [as364x] using legacy suspend method
[ 5.809219] i2c-core: driver [as364x] using legacy resume method
[ 5.809431] [IMX135] sensor driver loading
[ 5.809493] [IMX179] sensor driver loading
[ 5.809554] [imx132] sensor driver loading
[ 5.809621] [ar0261] sensor driver loading
[ 5.809910] usbcore: registered new interface driver uvcvideo
[ 5.809912] USB Video Class driver (1.1.1)
[ 5.810886] zram: Created 1 device(s) ...
[ 5.941224] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5.941229] otg state changed: SUSPEND --> PERIPHERAL
[ 5.962365] usb 3-1: Product: Mass Storage Device
[ 5.971587] usb 3-1: Manufacturer: JetFlash
[ 5.971599] device-mapper: uevent: version 1.0.3
[ 5.989357] usb 3-1: SerialNumber: 8MW054ZS
[ 5.998238] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@xxxxxxxxxx
[ 6.011477] sdhci: Secure Digital Host Controller Interface driver
[ 6.012083] usb-storage 3-1:1.0: USB Mass Storage device detected
[ 6.032880] sdhci: Copyright(c) Pierre Ossman
[ 6.041810] sdhci-pltfm: SDHCI platform and OF driver helper
[ 6.052209] scsi2 : usb-storage 3-1:1.0
[ 6.052501] sdhci-tegra sdhci-tegra.3: vddio_sd_slot regulator not found: -517. Assuming vddio_sd_slot is not required.
[ 6.052655] sdhci-tegra sdhci-tegra.3: Speedo value 2367
[ 6.052665] sdhci-tegra sdhci-tegra.3: Tuning constraints: nom_mv 1150, boot_mv 1150, min_or_mv 1100
[ 6.100386] mmc0: no vqmmc regulator found
[ 6.109240] mmc0: no vmmc regulator found
[ 6.117956] mmc0: Invalid maximum block size, assuming 512 bytes
[ 6.128706] sysedp_create_consumer: unable to create sdhci-tegra.3, no consumer_data for sdhci-tegra.3 found
[ 6.162075] mmc0: SDHCI controller on sdhci-tegra.3 [sdhci-tegra.3] using ADMA
[ 6.180061] sdhci-tegra sdhci-tegra.2: Speedo value 2367
[ 6.191422] sdhci-tegra sdhci-tegra.2: Tuning constraints: nom_mv 1150, boot_mv 1150, min_or_mv 1100
[ 6.205619] mmc1: no vqmmc regulator found
[ 6.214747] mmc1: no vmmc regulator found
[ 6.223683] mmc1: Invalid maximum block size, assuming 512 bytes
[ 6.235405] mmc0: BKOPS_EN bit is not set
[ 6.240952] sdhci-tegra sdhci-tegra.3: Found T2T coeffs data
[ 6.240960] sdhci-tegra sdhci-tegra.3: 200MHz tap hole coeffs found
[ 6.234575] sysedp_create_consumer: unable to create sdhci-tegra.2, no consumer_data for sdhci-tegra.2 found
[ 6.301094] mmc1: SDHCI controller on sdhci-tegra.2 [sdhci-tegra.2] using ADMA
[ 6.319022] gpio wake56 for gpio=170
[ 6.330990] tegra-se tegra12-se: tegra_se_probe: complete
[ 6.344255] usbcore: registered new interface driver usbhid
[ 6.355002] usbhid: USB HID core driver
[ 6.364374] tegra-i2c tegra12-i2c.1: no acknowledge from address 0x3b
[ 6.376176] i2c_hid 1-003b: unable to fetch the size of HID descriptor (ret=-121)
[ 6.389186] tegra-i2c tegra12-i2c.1: no acknowledge from address 0x2c
[ 6.401075] i2c_hid 1-002c: unable to fetch the size of HID descriptor (ret=-121)
[ 6.414380] tegra-hier-ictlr tegra-hier-ictlr: probed
[ 6.425336] usbcore: registered new interface driver snd-usb-audio
[ 6.437564] max98090_i2c_probe
[ 6.446242] MAX98090 driver registered
[ 6.456191] tegra_offload_platform probe successfull.
[ 6.463987] succefully registered offload opstegra30_avp_audio_platform_probe successful.
[ 6.478227] tegra-snd-max98090 tegra-snd-max98090.5: tegra_max98090_driver_probe
[ 6.496622] tegra-snd-max98090 tegra-snd-max98090.5: Platform data supplied via DT
[ 6.510358] max98090 7-0010: max98090_probe
[ 6.545769] max98090 7-0010: MAX98090 REVID=0x43
[ 6.555862] max98090 7-0010: max98090_dmic_switch state=1 left=1 right=1
[ 6.793746] **********Auto tuning windows*************
[ 6.804583] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE
[ 6.815711] win[0]: 2(0) - 87(1)
[ 6.824539] win[1]: 95(0) - 180(1)
[ 6.833477] win[2]: 189(0) - 255(1)
[ 6.842451] ***************************************
[ 6.852829] ********tuning windows after inserting holes*****
[ 6.864081] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE
[ 6.875014] win[0]:2(0) - 50(2)
[ 6.883593] win[1]:52(2) - 87(1)
[ 6.892222] win[2]:95(0) - 143(2)
[ 6.900940] win[3]:145(2) - 180(1)
[ 6.909729] win[4]:189(0) - 236(2)
[ 6.918448] win[5]:238(2) - 255(1)
[ 6.927167] ***********************************************
[ 6.929482] tegra-snd-max98090 tegra-snd-max98090.5: HiFi <-> tegra30-i2s.1 mapping ok
[ 6.929700] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: no source widget found for I2S1_OUT
[ 6.929708] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: Failed to add route I2S1_OUT -> direct -> HiFi Playback
[ 6.929719] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: no source widget found for offload-pcm-playback
[ 6.929726] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: Failed to add route offload-pcm-playback -> direct -> I2S1_OUT
[ 6.929737] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: no source widget found for offload-compr-playback
[ 6.929744] tegra-snd-max98090 tegra-snd-max98090.5: ASoC: Failed to add route offload-compr-playback -> direct -> I2S1_OUT
[ 6.931643] oprofile: using timer interrupt.
[ 6.959495] max98090 7-0010: ***** max98090_interrupt *****
[ 6.962465] max98090 7-0010: active=0x04 mask=0x04 -> active=0x04
[ 6.962471] max98090 7-0010: M98090_IRQ_JDET_MASK
[ 7.087587] **********Tuning values*********
[ 7.087616] GACT probability NOT on
[ 7.087624] Mirror/redirect action on
[ 7.087630] u32 classifier
[ 7.087633] Actions configured
[ 7.087639] Netfilter messages via NETLINK v0.30.
[ 7.087708] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 7.120606] max98090 7-0010: No Headset Detected
[ 7.148641] max98090 7-0010: ***** max98090_interrupt *****
[ 7.154015] max98090 7-0010: active=0x04 mask=0x04 -> active=0x04
[ 7.154021] max98090 7-0010: M98090_IRQ_JDET_MASK
[ 7.184570] max98090 7-0010: max98090_dmic_switch state=1 left=1 right=1
[ 7.208050] **estimated values**
[ 7.209604] scsi 2:0:0:0: Direct-Access JetFlash Transcend 4GB 8.07 PQ: 0 ANSI: 2
[ 7.211054] sd 2:0:0:0: [sda] 7843840 512-byte logical blocks: (4.01 GB/3.74 GiB)
[ 7.211323] sd 2:0:0:0: [sda] Write Protect is off
[ 7.211332] sd 2:0:0:0: [sda] Mode Sense: 03 00 00 00
[ 7.211589] sd 2:0:0:0: [sda] No Caching mode page found
[ 7.211595] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 7.212403] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 7.214177] sd 2:0:0:0: [sda] No Caching mode page found
[ 7.214182] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 7.304856] T2T_Vmax 54, T2T_Vmin 74, 1'st_hole_Vmax 50, UI_Vmax 92
[ 7.305281] NF_TPROXY: Transparent proxy support initialized, version 4.1.0
[ 7.305285] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
[ 7.313967] max98090 7-0010: No Headset Detected
[ 7.313993] max98090 7-0010: max98090_dmic_switch state=1 left=1 right=1
[ 7.359222] **Calculated values**
[ 7.359515] xt_time: kernel timezone is -0000
[ 7.359831] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 7.359990] arp_tables: (C) 2002 David S. Miller
[ 7.360055] TCP: cubic registered
[ 7.403619] T2T_Vmax 53, 1'st_hole_Vmax 51, UI_Vmax 93
[ 7.413397] T2T_Vmin 53, 1'st_hole_Vmin 51, UI_Vmin 94
[ 7.423100] ***********************************
[ 7.432173] ***********final tuning windows**********
[ 7.441736] win[0]: 20 - 40
[ 7.449026] NET: Registered protocol family 10
[ 7.449043] win[1]: 63 - 69
[ 7.449046] win[2]: 113 - 127
[ 7.449049] win[3]: 163 - 162
[ 7.449052] win[4]: 207 - 215
[ 7.449055] win[5]: 255 - 237
[ 7.449058] ********************************
[ 7.449062] best tap win - (20-40), best tap value 30
[ 7.449075] sdhci-tegra sdhci-tegra.3: sdhci_tegra_verify_best_tap: tuning freq 200000000hz, best tap 30
[ 7.526243] mmc0: new HS200 MMC card at address 0001
[ 7.532675] sda: sda1
[ 7.534588] sd 2:0:0:0: [sda] No Caching mode page found
[ 7.534595] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 7.534604] sd 2:0:0:0: [sda] Attached SCSI removable disk
[ 7.572428] mmcblk mmc0:0001: Card claimed for testing.
[ 7.582024] mip6: Mobile IPv6
[ 7.589391] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 7.589474] mmcblk0: mmc0:0001 SEM32G 29.1 GiB
[ 7.589625] mmcblk0rpmb: mmc0:0001 SEM32G partition 3 4.00 MiB
[ 7.618617] sit: IPv6 over IPv4 tunneling driver
[ 7.628869] NET: Registered protocol family 17
[ 7.637903] NET: Registered protocol family 15
[ 7.646975] NET: Registered protocol family 35
[ 7.655918] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9
[ 7.656143] NET: Registered protocol family 37
[ 7.656147] NET: Registered protocol family 41
[ 7.684092] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
[ 7.721055] Registering SWP/SWPB emulation handler
[ 7.730204] last reset is due to power on reset
[ 7.730204]
[ 7.752580] Disabling clocks left on by bootloader:
[ 7.761639] audio_2x
[ 7.768271] audio
[ 7.774634] audio4
[ 7.781040] audio3
[ 7.787350] audio2
[ 7.793653] audio1
[ 7.799913] audio0
[ 7.806332] entropy
[ 7.812643] dsi2-fixed
[ 7.819162] dsi1-fixed
[ 7.825631] dsib
[ 7.831544] trace
[ 7.837493] bsev
[ 7.843315] sdmmc4_ddr
[ 7.849678] cclk_lp
[ 7.855666] pll_x_out0
[ 7.862018] pll_u_12M
[ 7.868055] pll_m_out1
[ 7.874256] tegra_dvfs: vdd_cpu connected to regulator
[ 7.882947] tegra_dvfs: vdd_core connected to regulator
[ 7.892603] tegra_dvfs: vdd_gpu connected to regulator
[ 7.902008] tegra_dvfs: registered vdd_cpu simon notifier
[ 7.911163] cpu_cold cooling device is registered
[ 7.919511] cpu_hot cooling device is registered
[ 7.919594] Tegra CPU DFLL is initialized with use_dfll = 1
[ 7.919663] CPU rate: 696 MHz
[ 8.113101] tegra dvfs: tegra sysfs cap interface is initialized
[ 8.122652] tegra dvfs: tegra sysfs gpu & emc interface is initialized
[ 8.132714] tegra dvfs: registered vdd_gpu simon notifier
[ 8.141928] tegra_actmon.emc: Completed initialization (0)
[ 8.151137] tegra_actmon.avp: Completed initialization (0)
[ 8.160205] tegra_mon.cpu_emc: Completed initialization (0)
[ 8.172728] vpp-fuse: incomplete constraints, leaving on
[ 8.181532] vdd-2v7-cam: incomplete constraints, leaving on
[ 8.190606] avdd-spi: incomplete constraints, leaving on
[ 8.199370] vdd-1v1-cam: incomplete constraints, leaving on
[ 8.208456] vdd-1v2-cam: incomplete constraints, leaving on
[ 8.217552] avdd-cam: incomplete constraints, leaving on
[ 8.226377] as3722-sd3: incomplete constraints, leaving on
[ 8.236180] of_get_named_gpio_flags exited with status 130
[ 8.236206] of_get_named_gpio_flags exited with status 69
[ 8.236228] of_get_named_gpio_flags exited with status 128
[ 8.236250] of_get_named_gpio_flags exited with status 135
[ 8.236270] of_get_named_gpio_flags exited with status 134
[ 8.236316] gpiod_set_debounce: gpio-130 status -22
[ 8.236401] gpiod_set_debounce: gpio-69 status -22
[ 8.236412] gpio wake23 for gpio=69
[ 8.243464] gpiod_set_debounce: gpio-128 status -22
[ 8.243477] gpio wake51 for gpio=128
[ 8.250642] gpiod_set_debounce: gpio-135 status -22
[ 8.250714] gpiod_set_debounce: gpio-134 status -22
[ 8.250944] input: gpio-keys.3 as /devices/platform/gpio-keys.3/input/input0
[ 8.262428] as3722-rtc as3722-rtc.1: setting system clock to 2000-01-01 00:00:12 UTC (946684812)
[ 8.275521] ALSA device list:
[ 8.279955] #0: tegra-max98090
[ 8.285116] EXT4-fs (mmcblk0p1): couldn't mount as ext3 due to feature incompatibilities
[ 8.295059] EXT4-fs (mmcblk0p1): couldn't mount as ext2 due to feature incompatibilities
[ 8.390889] EXT4-fs (mmcblk0p1): recovery complete
[ 8.397939] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[ 8.407423] VFS: Mounted root (ext4 filesystem) on device 179:1.
[ 8.415197] devtmpfs: mounted
[ 8.419668] Freeing unused kernel memory: 504K (c0b05000 - c0b83000)
[ 8.528792] init: ureadahead main process (128) terminated with status 5
[ 8.750619] udevd[217]: starting version 175
[ 8.779328] Tegra cpuquiet clusterswitch enabled
[ 8.972644] init: bluetooth main process (280) terminated with status 1
[ 8.972698] init: bluetooth main process ended, respawning
[ 9.137606] init: bluetooth main process (359) terminated with status 1
[ 9.137668] init: bluetooth main process ended, respawning
[ 9.186265] init: plymouth main process (129) killed by ABRT signal
[ 9.187565] init: plymouth-splash main process (407) terminated with status 2
[ 9.217147] init: bluetooth main process (415) terminated with status 1
[ 9.217202] init: bluetooth main process ended, respawning
[ 9.273547] init: bluetooth main process (465) terminated with status 1
[ 9.273601] init: bluetooth main process ended, respawning
[ 9.324850] init: bluetooth main process (519) terminated with status 1
[ 9.324896] init: bluetooth main process ended, respawning
[ 9.373370] init: alsa-restore main process (544) terminated with status 99
[ 9.426431] init: plymouth-stop pre-start process (569) terminated with status 1
[ 9.480285] init: bluetooth main process (607) terminated with status 1
[ 9.480338] init: bluetooth main process ended, respawning
[ 9.552753] init: bluetooth main process (657) terminated with status 1
[ 9.552798] init: bluetooth main process ended, respawning
[ 9.587647] init: bluetooth main process (679) terminated with status 1
[ 9.587695] init: bluetooth main process ended, respawning
[ 9.615168] init: bluetooth main process (701) terminated with status 1
[ 9.615215] init: bluetooth main process ended, respawning
[ 9.643471] init: bluetooth main process (725) terminated with status 1
[ 9.643518] init: bluetooth main process ended, respawning
[ 9.669553] init: bluetooth main process (747) terminated with status 1
[ 9.669609] init: bluetooth respawning too fast, stopped
[ 17.914300] gpio wake56 for gpio=170
[ 17.914307] Enabling wake56
[ 69.682676] tegra_simon_cpu_grading_cb: graded cpu: v = 900, t = 32000, grade = 0
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$ lspci
00:01.0 PCI bridge: NVIDIA Corporation Device 0e12 (rev a1)
01:00.0 USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 03)
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$ sudo lspci -vvv
00:01.0 PCI bridge: NVIDIA Corporation Device 0e12 (rev a1) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: 0000f000-00000fff
Memory behind bridge: 13000000-130fffff
Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity+ SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Subsystem: NVIDIA Corporation Device 0000
Capabilities: [48] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] MSI: Enable+ Count=1/2 Maskable- 64bit+
Address: 00000000ab721000 Data: 0000
Capabilities: [60] HyperTransport: MSI Mapping Enable- Fixed-
Mapping Address Base: 00000000fee00000
Capabilities: [80] Express (v2) Root Port (Slot+), MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
ExtTag+ RBE+ FLReset-
DevCtl: Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 512 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Latency L0 <512ns, L1 <4us
ClockPM- Surprise- LLActRep+ BwNot+
LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Off, PwrInd On, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
Changed: MRL- PresDet+ LinkState+
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
RootCap: CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
DevCap2: Completion Timeout: Range AB, TimeoutDis+ ARIFwd-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
Kernel driver in use: pcieport

01:00.0 USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 03) (prog-if 30 [XHCI])
Subsystem: NEC Corporation uPD720200 USB 3.0 Host Controller
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 130
Region 0: Memory at 13000000 (64-bit, non-prefetchable) [size=8K]
Capabilities: [50] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [70] MSI: Enable- Count=1/8 Maskable- 64bit+
Address: 0000000000000000 Data: 0000
Capabilities: [90] MSI-X: Enable+ Count=8 Masked-
Vector table: BAR=0 offset=00001000
PBA: BAR=0 offset=00001080
Capabilities: [a0] Express (v2) Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 512 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
LnkCap: Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <4us, L1 unlimited
ClockPM+ Surprise- LLActRep- BwNot-
LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Not Supported, TimeoutDis+
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
AERCap: First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
Capabilities: [140 v1] Device Serial Number ff-ff-ff-ff-ff-ff-ff-ff
Capabilities: [150 v1] Latency Tolerance Reporting
Max snoop latency: 0ns
Max no snoop latency: 0ns
Kernel driver in use: xhci_hcd

ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$
ubuntu@tegra-ubuntu:~$