Jetson TK1 output issue

I am currently using a Jetson TK1 that was running an older version of Ubuntu. In an attempt to update it from the terminal, the process was reported as successful, but unfortunately, there was no HDMI output afterward. Subsequently, I decided to reinstall Ubuntu by entering force recovery mode. I used both a VM and a host machine, both running Ubuntu 22.04. The reinstallation process was deemed successful on both occasions, and I was prompted to power cycle the board. However, even after doing so, there was still no HDMI output. so I used a null modem cable and retrieved the following log:

(Note: The Jetson was flashed with Ubuntu 16.)

TEGRA124
Board: NVIDIA Jetson TK1
I2C: ready
DRAM: 2 GiB
MMC: Tegra SD/MMC: 0, Tegra SD/MMC: 1

  • Warning - bad CRC, using default environment

tegra-pcie: PCI regions:
tegra-pcie: I/O: 0x12000000-0x12010000
tegra-pcie: non-prefetchable memory: 0x13000000-0x20000000
tegra-pcie: prefetchable memory: 0x20000000-0x40000000
tegra-pcie: 2x1, 1x1 configuration
W֖ K\ ZY probing port 0, using 2 lanes
tegra-pcie: link 0 down, retrying
tegra-pcie: link 0 down, retrying
tegra-pcie: link 0 down, retrying
tegra-pcie: link 0 down, ignoring
tegra-pcie: probing port 1, using 1 lanes
In: serial
Out: serial
Err: serial
Net: RTL8169#0
Warning: RTL8169#0 using MAC address from net device

Hit any key to stop autoboot: 0
MMC: no card present
switch to partitions #0, OK
mmc0(part 0) is current device
Scanning mmc 0…
(Re)start USB…
USB0: USB EHCI 1.10
scanning bus 0 for devices… 1 USB Device(s) found
USB1: USB EHCI 1.10
scanning bus 1 for devices… 1 USB Device(s) found
scanning usb for storage devices… 0 Storage Device(s) found
scanning usb for ethernet devices… 0 Ethernet Device(s) found

USB device 0: unknown device
BOOTP broadcast 1
BOOTP broadcast 2
BOOTP broadcast 3
BOOTP broadcast 4
DHCP client bound to address 192.168.xxxx (2828 ms)

  • Warning: no boot file name; using ‘C0A800DA.img’
    Using RTL8169#0 device
    TFTP from server 192.168.xxxx; our IP address is 192.168.xxxx
    Filename ‘C0A800DA.img’.
    Load address: 0x80408000
    Loading: T T T T T T T T T T
    Retry count exceeded; starting again
    BOOTP broadcast 1
    DHCP client bound to address 192.168.xxxx (4 ms)
  • Warning: no boot file name; using ‘C0A800DA.img’
    Using RTL8169#0 device
    TFTP from server 192.168.xxxx; our IP address is 192.168.xxxx
    Filename ‘C0A800DA.img’.
    Load address: 0x80408000
    Loading: T T T T T T T T T T
    Retry count exceeded; starting again

Regarding update, because the GPU driver is for an integrated GPU (iGPU is integrated with the memory controller), you cannot use the desktop PC drivers most computers use (which are discrete GPUs on PCIe). The standard update mechanism back from those days did not understand this. You should only upgrade via the official Linux for Tegra (“L4T”, which is Ubuntu plus NVIDIA drivers) install. See:
https://developer.nvidia.com/embedded/jetson-linux-archive

The Tegra K1 (TK1) is the oldest of the models with GPU, and is 32-bit. The last compatible release is L4T R21.8, which I think is Ubuntu 14 or 16:
https://developer.nvidia.com/linux-tegra-r218
(the last 32-bit release)

Note that the GUI installer, JetPack, did not exist in earlier releases and it was all command line. SDK Manager was a network layer on top of JetPack which was added later. Unlike the newer software, the basic command line install (on the host PC side) required:

  • Unpack the driver package, which creates subdirectory “Linux_for_Tegra/”.
  • Go to “Linux_for_Tegra/rootfs/
  • Unpack the sample rootfs there (this is purely Ubuntu).
  • Go back to “Linux_for_Tegra/” and run “sudo ./apply_binaries.sh”.

From that point forward the install software is ready to go. Those earlier releases had a default login account name and pass of “nvidia”. Later releases ended up with a first boot account setup.

The typical host side flash (the documents at that URL also give instructions), was:
sudo ./flash.sh jetson-tk1 mmcblk0p1
(this differs on third party manufacturer versions of the TK1)

If you are only working on command line, then Ubuntu 22 would work for the host PC, although it didn’t exist back then. Perhaps Ubuntu 22 won’t work, I have not tried, but the older command line was very forgiving. Certainly Ubuntu 18.04 would work on command line, but the problem you encountered is very very likely one of the VM you used and not of the Ubuntu release. Once you get to the JetPack/SDKM GUI installer you must use the correct Ubuntu release for the host PC (this is a GUI requirement not a flash requirement; the “driver package”, which is underneath the actual flash, does not have so many requirements).

Note that a VM often loses USB because the Jetson will disconnect and reconnect during flash. A real computer detects and deals with the reconnect, but a VM must be configured correctly for it to deal with it. There can be other VM issues as well, but this post might help:
https://forums.developer.nvidia.com/t/sudo-rm-r-in-my-jetson-agx-orin-64gb-module-now-nvidia-sdk-manager-flash-l4t-bsp-from-host-linux-pc-failed/274613/4

Please also note that you cannot use native Windows filesystem types, e.g., NTFS will appear to work, but the actual Linux install will be badly hurt. You would need an ext4 filesystem on the VM.

As for recovery mode, the recovery button is like a shift key on a keyboard, but it modifies power on instead of letters on a keyboard. Hold the recovery down, and then tap either power on or power reset and it will be in recovery mode (there is no requirement to hold down the recovery key after that). Failure to detect would be either the VM or the USB cable. There are a LOT of bad “charger” cables out there which work great for charging and badly fail data. About 2/3 of the “charger” cables fail for long term data transfer. The cable which ships with the TK1 is good quality and does not have that issue.

Okay, I will do one thing I will switch the host PC to Ubuntu 18.04, and then I will reflash the board using Linux for Tegra R21.8 for the TK1. I will post an update after it is done.

I successfully installed Ubuntu 18.04.6 on the host machine because I encountered a black screen error when attempting to install Ubuntu 18.04. Following the steps outlined in the https://developer.nvidia.com/linux-tegra-r218, I executed the following commands:

mkdir tk1_flash
cd tk1_flash
# Added Tegra124_Linux_R21.8.0_armhf.tbz2 & Tegra_Linux_Sample-Root-Filesystem_R21.8.0_armhf.tbz2 to the directory

sudo tar xpf Tegra124_Linux_R21.8.0_armhf.tbz2
cd Linux_for_Tegra/rootfs/
sudo tar xpf ../../Tegra_Linux_Sample-Root-Filesystem_R21.8.0_armhf.tbz2

cd ..
sudo ./apply_binaries.sh

Next, I connected the Jetson TK1 in "recovery mode" and flashed it first using:
sudo ./flash.sh jetson-tk1 mmcblk0p1
Then, I flashed it again with:
sudo ./flash.sh -S 14580MiB jetson-tk1 mmcblk0p1
In both cases, the result was as follows:


**HOST Machine :-**

edesign@edesign-IdeaPad:~/tk1_flash/Linux_for_Tegra$ sudo ./flash.sh -S 14580MiB jetson-tk1 mmcblk0p1
copying bctfile(/home/edesign/tk1_flash/Linux_for_Tegra/bootloader/ardbeg/BCT/PM375_Hynix_2GB_H5TC4G63AFR_H5TC4G63CFR_RDA_924MHz.cfg)... done.
copying bootloader(/home/edesign/tk1_flash/Linux_for_Tegra/bootloader/ardbeg/u-boot.bin)... done.
	populating kernel to rootfs... done.
	populating jetson-tk1_extlinux.conf.emmc to rootfs... done.
done.
Making system.img... 
	populating rootfs from /home/edesign/tk1_flash/Linux_for_Tegra/rootfs ... done.
	Sync'ing system.img ... done.
	Converting RAW image to Sparse image... 

---- Raw to Sparse Image Converter v1.0 ----------------------------
  0: RAW:     4231168(   1033 blks) ==>          28:4231180
  1: SKP:       40960(     10 blks) ==>     4231208:40972
  2: RAW:        8192(      2 blks) ==>     4231220:8204
  .
  .
  .
  .
1738: RAW:        8192(      2 blks) ==>  2311188884:8204
1739: SKP:   255844352(  62462 blks) ==>  2311197088:255844364
-- Total: -----------------------------------------------------------
1740 CHUNK 15288238080(3732480 blks) ==>  2311197100(564252 blks)

done.
system.img built successfully. 
copying dtbfile(/home/edesign/tk1_flash/Linux_for_Tegra/kernel/dtb/tegra124-jetson_tk1-pm375-000-c00-00.dtb)... done.
copying cfgfile(/home/edesign/tk1_flash/Linux_for_Tegra/bootloader/ardbeg/cfg/gnu_linux_fastboot_emmc_full.cfg) to flash.cfg... done.
creating gpt(ppt.img)... 

*** GPT Parameters ***
Device Sector Size ------- 512
device size -------------- 15766388736
bootpart size ------------ 8388608
userpart size ------------ 15758000128
Erase Block Size --------- 2097152
FS Buffer size ----------- 4096
Partition Config file ---- flash.cfg
Visible partition flag --- GP1
Primary GPT output ------- PPT->ppt.img
Secondary GPT output ----- GPT->gpt.img
Target device name ------- none

*** PARTITION LAYOUT(20 partitions) ***
[     BCT] BH            0        16383       8.0MiB 
[     PPT] UH            0         4095       2.0MiB ppt.img
[      PT] UH         4096         8191       2.0MiB 
[     EBT] UH         8192        16383       4.0MiB u-boot.bin
[     LNX] UH        16384        49151      16.0MiB 
[     SOS] UH        49152        61439       6.0MiB 
[     NVC] UH        61440        65535       2.0MiB 
[     MPB] UH        65536        77823       6.0MiB 
[     MBP] UH        77824        90111       6.0MiB 
[     GP1] UH        90112        94207       2.0MiB 
[     APP] UV        94208     29954047   14580.0MiB system.img
[     DTB] UV     29954048     29962239       4.0MiB tegra124-jetson_tk1-pm375-000-c00-00.dtb
[     EFI] UV     29962240     30093311      64.0MiB 
[     USP] UV     30093312     30101503       4.0MiB 
[     TP1] UV     30101504     30109695       4.0MiB 
[     TP2] UV     30109696     30117887       4.0MiB 
[     TP3] UV     30117888     30126079       4.0MiB 
[     WB0] UV     30126080     30130175       2.0MiB 
[     UDA] UV     30130176     30773247     314.0MiB 
[     GPT] UH     30773248     30777343       2.0MiB gpt.img
copying flasher(/home/edesign/tk1_flash/Linux_for_Tegra/bootloader/ardbeg/fastboot.bin)... done.
Existing flashapp(/home/edesign/tk1_flash/Linux_for_Tegra/bootloader/nvflash) reused.
*** Flashing target device started. ***
./nvflash  --bct PM375_Hynix_2GB_H5TC4G63AFR_H5TC4G63CFR_RDA_924MHz.cfg --setbct --configfile flash.cfg  --create --bl fastboot.bin --odmdata 0x6009C000 --go
Nvflash 4.13.0000 started
BR_CID: 0x340010017410c1051800000013ff0040
rcm version 0X400001
Skipping BoardID read at miniloader level
System Information:
   chip name: unknown
   chip id: 0x40 major: 1 minor: 1
   chip sku: 0x0
   chip uid: 0x000000017410c1051800000013ff0040
   macrovision: disabled
   hdcp: disabled
   jtag: disabled
   sbk burned: false
   board id: 0
   warranty fuse: 0
   dk burned: false
   boot device: emmc
   operating mode: 3
   device config strap: 0
   device config fuse: 0
   sdram config strap: 0

RCM communication completed
BCT sent successfully
sending file: tegra124-jetson_tk1-pm375-000-c00-00.dtb
- 59966/59966 bytes sent
tegra124-jetson_tk1-pm375-000-c00-00.dtb sent successfully
odm data: 0x6009c000
downloading bootloader -- load address: 0x83d88000 entry point: 0x83d88000
sending file: fastboot.bin
- 594363/594363 bytes sent
fastboot.bin sent successfully
waiting for bootloader to initialize
bootloader downloaded successfully
ML execution and Cpu Handover took 1 Secs
Partition backup took 0 Secs
setting device: 2 3
deleting device partitions
creating partition: BCT
creating partition: PPT
creating partition: PT
creating partition: EBT
creating partition: LNX
creating partition: SOS
creating partition: NVC
creating partition: MPB
creating partition: MBP
creating partition: GP1
creating partition: APP
creating partition: DTB
creating partition: EFI
creating partition: USP
creating partition: TP1
creating partition: TP2
creating partition: TP3
creating partition: WB0
creating partition: UDA
creating partition: GPT
sending file: ppt.img
\ 2097152/2097152 bytes sent
ppt.img sent successfully
padded 8 bytes to bootloader
sending file: u-boot.bin
- 625776/625776 bytes sent
u-boot.bin sent successfully
sending file: system.img
- 2311197100/2311197100 bytes sent
system.img sent successfully
sending file: tegra124-jetson_tk1-pm375-000-c00-00.dtb
- 59966/59966 bytes sent
tegra124-jetson_tk1-pm375-000-c00-00.dtb sent successfully
sending file: gpt.img
\ 2097152/2097152 bytes sent
gpt.img sent successfully
Create, format and download  took 178 Secs
Time taken for flashing 181 Secs
*** The target ardbeg has been flashed successfully. ***
Reset the board to boot from internal eMMC.

Serial Output on Minicom:-

[0000.000] [TegraBoot] (version UNDEF_BUILD)
[0000.004] Reset reason: power on reset 
[0000.008] Processing in recovery mode  
[0000.011] Established communication link with host
[0001.193] Downloaded bct successfully  
[0001.209] No Battery Present           
[0001.213] Sdram initialization is successful 
[0001.223] Downloaded DTB successfully  
[0001.249] No Battery Present           
[0001.321] Downloaded bootloader successfully 
[0001.326] CPU-bootloader entry address: 0x83d88000 
[0001.330] BoardId: 375                 
[0001.332] Vpr Carveout Base=0x0f4600000 Size=0x00ba00000
[0001.337] Tsec Carveout Base=0x0f2600000 Size=0x002000000
[0001.343] Lp0 Carveout Base=0x0f25ff000 Size=0x000001000
[0001.348] Xusb Carveout Base=0x0f2300000 Size=0x000200000                      
[0001.353] Platform-DebugCarveout: 0                                            
[0001.380] CPU power rail is up                                                 
[0001.383] Performing RAM repair                                                
[0001.386] CPU clock init successful                                            
[0001.389] Starting CPU & Halting co-processor                                  
NVRM Initialized shmoo database                                                 
NVRM CLOCKS: PLLX0:      696000 Khz                                             
NVRM CLOCKS: PLLM0:      924000 Khz                                             
NVRM CLOCKS: PLLC0:      0 Khz                                                  
NVRM CLOCKS: PLLP0:      408000 Khz                                             
NVRM CLOCKS: PLLA0:      11289 Khz                                              
NVRM CLOCKS: CPU:        696000 Khz                                             
NVRM CLOCKS: AVP:        48000 Khz                                              
NVRM CLOCKS: System Bus: 48000 Khz                                              
NVRM CLOCKS: Memory Controller: 924000                                          
NVRM CLOCKS: External Memory Controller: 924000                                 
EEPROM instance-5: No slave at this instance.                                   
EEPROM instance-0: No slave at this instance.                                   
EEPROM instance-0: Querying board info from BCT.                                
EEPROM instance-0: No board info available for this instance in BCT.            
EEPROM instance-1: No slave at this instance.                                   
EEPROM instance-1: Querying board info from BCT.                                
EEPROM instance-1: Board info present in BCT is invalid.                        
EEPROM instance-2: No slave at this instance.                                   
EEPROM instance-2: Querying board info from BCT.                                
EEPROM instance-2: No board info available for this instance in BCT.            
EEPROM instance-3: No slave at this instance.                                   
EEPROM instance-3: Querying board info from BCT.                                
EEPROM instance-3: No board info available for this instance in BCT.            
EEPROM instance-4: No slave at this instance.                                   
EEPROM instance-4: Querying board info from BCT.                                
EEPROM instance-4: Board info present in BCT is invalid.                        
EEPROM instance-5: No slave at this instance.                                   
EEPROM instance-5: Querying board info from BCT.                                
EEPROM instance-5: Board info present in BCT is invalid.                        
EEPROM instance-6: BoardInfo: 0x0001:0x0007:0375:0000:03:E:00:0xff:0xff:0xff:0xf
EEPROM instance-7: No slave at this instance.                                   
EEPROM instance-7: Querying board info from BCT.                                
EEPROM instance-7: No board info available for this instance in BCT.            
Final BoardID: proc: 375 and pmu 375                                            
ADJUSTED CLOCKS:                                                                
MC clock is set to 924000 KHz                                                   
EMC clock is set to 924000 KHz (DDR clock is at 924000 KHz)                     
PLLX0 clock is set to 696000 KHz                                                
PLLC0 clock is set to      0 KHz                                                
CPU clock is set to 696000 KHz                                                  
System and AVP clock is set to  48000 KHz                                       
GraphicsHost clock is set to 163200 KHz                                         
MSENC clock is set to  92400 KHz                                                
Vde clock is set to 204000 KHz                                                  
                                                                                
Bootloader-Cpu Init at (time stamp): 90292847 us                                
                                                                                
Pinmux changes applied in kernel way                                            
                                                                                
[bootloader] (version UNDEF_BUILD)                                              
Platform Pre Boot configuration...                                              
NvDdkUsbhBlockDevInit..                                                         
Initializing Display                                                            
The proc BoardInfo: 0x0177:0x0000:0x03:0x45:0x00                                
The proc BoardInfo: 0x0177:0x0000:0x03:0x45:0x00                                
This Pmu Module is not present.                                                 
The best display mode is 2560x1600/60Hz, pclk: 268627Khz                        
                                                                                
DSI PAD calibration done                                                        
                                                                                
DSI PAD calibration done                                                        
                                                                                
DSI PAD calibration done                                                        
                                                                                
DSI PAD calibration done                                                        
Entering NvFlash recovery mode / Nv3p Server                                    
                                                                                
Nv3pServer Version 4.13.0000                                                    
                                                                                
***: DecodeCSD:                                                                 
   : readBlkBits=9, readBlkSize=512 Bytes                                       
   : nSectors=(CSIZE+1)*(2**(CSizeMult+2))=4096 * 512 = 2097152 Sectors         
   : writeBlkBits=9, writeBlkSize=512 Bytes                                     
   : ERASE_GRP_SIZE=31, ERASE_GRP_MULT=31                                       
   : EraseGrpSize=(31+1)*(31+1)=1024 Sectors (524288 Bytes)                     
   : WPGrpSize=31744 Sectors (16252928 Bytes)                                   
***: ReadExtCSD:                                                                
   : overriding USER Sectors = 30777344 Sectors                                 
   : keep CSD EraseGrpSize = 1024 Sectors (524288 Bytes)                        
   : keep CSD WPGrpSize = 31744 wBlks (16252928 Bytes)                          
   : BootPartSize = 4194304 Bytes (8192 Sectors)                                
***: SetBlockSize to 512 Bytes SKIPPED because CMD16 is illegal for DDR50...    
***: SdGetDevInfo: PagesPerBlock = 32 pages (256 Sectors)                       
***: SdGetDevInfo: TotSecs=TotBlk(120288)*PgPerBlk(32)*SecsPerPg(8)=30793728    
Region=1 SD Erase start 512B-sector=0,512B-sector-num=8192                      
Region=2 SD Erase start 512B-sector=0,512B-sector-num=8192                      
Region=0 SD Erase start 512B-sector=0,512B-sector-num=30777344                  
SD Alloc Partid=2, start sector=0,num=2048                                      
SD Alloc Partid=3, start sector=2048,num=512                                    
SD Alloc Partid=4, start sector=2560,num=512                                    
SD Alloc Partid=5, start sector=3072,num=1024                                   
SD Alloc Partid=6, start sector=4096,num=4096                                   
SD Alloc Partid=7, start sector=8192,num=1536                                   
SD Alloc Partid=8, start sector=9728,num=512                                    
SD Alloc Partid=9, start sector=10240,num=1536                                  
SD Alloc Partid=10, start sector=11776,num=1536                                 
SD Alloc Partid=11, start sector=13312,num=512                                  
SD Alloc Partid=12, start sector=13824,num=3732480                              
SD Alloc Partid=13, start sector=3746304,num=1024                               
SD Alloc Partid=14, start sector=3747328,num=16384                              
SD Alloc Partid=15, start sector=3763712,num=1024                               
SD Alloc Partid=16, start sector=3764736,num=1024                               
SD Alloc Partid=17, start sector=3765760,num=1024                               
SD Alloc Partid=18, start sector=3766784,num=1024                               
SD Alloc Partid=19, start sector=3767808,num=512                                
SD Alloc Partid=20, start sector=3768320,num=80384                              
SD Alloc Partid=21, start sector=3848704,num=512                                
Region=0 SD Erase start 512B-sector=4096,512B-sector-num=4096                   
Start Downloading PPT                                                           
Parallel write enabled                                                          
                                                                                
End Downloading PPT                                                             
Time taken to download partition: 197 ms                                        
                                                                                
Start Downloading EBT                                                           
                                                                                
End Downloading EBT                                                             
Time taken to download partition: 193 ms                                        
                                                                                
Start Downloading APP                                                           
                                                                                
End Downloading APP                                                             
Time taken to download partition: 168529 ms                                     
                                                                                
Start Downloading DTB                                                           
                                                                                
End Downloading DTB                                                             
Time taken to download partition: 19 ms                                         
                                                                                
Start Downloading GPT                                                           
                                                                                
End Downloading GPT                                                             
Time taken to download partition: 180 ms                                        
WriterThread: Exiting                                                           
Rebooting device after flashing.                                                
                                                                                
U-Boot SPL 2018.05-gc50329da15 (Oct 31 2019 - 13:48:20 -0700)                   
Trying to boot from RAM                                                         
                                                                                
                                                                                
U-Boot 2018.05-gc50329da15 (Oct 31 2019 - 13:48:20 -0700)                       
                                                                                
TEGRA124                                                                        
Model: NVIDIA Jetson TK1                                                        
Board: NVIDIA Jetson TK1                                                        
DRAM:  2 GiB                                                                    
MMC:   sdhci@700b0400: 1, sdhci@700b0600: 0                                     
Loading Environment from MMC... *** Warning - bad CRC, using default environment
                                                                                
Failed (-5)                                                                     
In:    serial                                                                   
Out:   serial                                                                   
Err:   serial                                                                   
CPU is in NS mode                                                               
Net:   No ethernet found.                                                       
Hit any key to stop autoboot:  0                                                
MMC: no card present                                                            
switch to partitions #0, OK                                                     
mmc0(part 0) is current device                                                  
Scanning mmc 0:1...                                                             
Found /boot/extlinux/extlinux.conf                                              
Retrieving file: /boot/extlinux/extlinux.conf                                   
827 bytes read in 177 ms (3.9 KiB/s)                                            
Jetson-TK1 eMMC boot options                                                    
1:      primary kernel                                                          
Enter choice: 1:        primary kernel                                          
Retrieving file: /boot/zImage                                                   
6230800 bytes read in 268 ms (22.2 MiB/s)                                       
append: console=ttyS0,115200n8 console=tty1 no_console_suspend=1 lp0_vec=2064@0t
Retrieving file: /boot/tegra124-jetson_tk1-pm375-000-c00-00.dtb                 
59966 bytes read in 306 ms (190.4 KiB/s)                                        
## Flattened Device Tree blob at 82000000                                       
   Booting using the fdt blob at 0x82000000                                     
   Using Device Tree in place at 82000000, end 82011a3d                         
                                                                                
Starting kernel ...                                                             
                                                                                
[    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.40-ge16a41a05c9e (buildbrain@mobile-u64-1258)9
[    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: jetson-tk1, model: NVIDIA Tegra124 PM375, serial: 0     
[    0.000000] Found tsec, start=0xf4900000 size=2000000                        
[    0.000000] Tegra reserved memory:                                           
[    0.000000] LP0:                    f46ff000 - f46ff80f                      
[    0.000000] Bootloader framebuffer: 00000000 - 00000000                      
[    0.000000] Bootloader framebuffer2: 00000000 - 00000000                     
[    0.000000] Framebuffer:            f8500000 - f96fffff                      
[    0.000000] 2nd Framebuffer:        f9700000 - fdefffff                      
[    0.000000] Carveout:               00000000 - 00000000                      
[    0.000000] Vpr:                    00000000 - 00000000                      
[    0.000000] Tsec:                   f4900000 - f68fffff                      
[    0.000000] cma: CMA: reserved 16 MiB at ae800000                            
[    0.000000] Memory policy: ECC disabled, Data cache writealloc               
[    0.000000] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/arch/arm/bs
[    0.000000] get_secure_pmc_setting: done secure_pmc=1                        
[    0.000000] Tegra12: CPU Speedo value 2301, Soc Speedo value 2258, Gpu Speed3
[    0.000000] Tegra12: CPU Speedo ID 1, Soc Speedo ID 1, Gpu Speedo ID 1       
[    0.000000] Tegra12: CPU Process ID 1,Soc Process ID 1,Gpu Process ID 1      
[    0.000000] Tegra Revision: A01 SKU: 0x81 CPU Process: 1 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: c4bus client vi left ON          
[    0.000000] Lowering cpu_lp maximum rate from 1350000000 to 1092000000       
[    0.000000] Lowering sbus maximum rate from 420000000 to 384000000           
[    0.000000] Lowering vic03 maximum rate from 900000000 to 828000000          
[    0.000000] Lowering tsec maximum rate from 900000000 to 828000000           
[    0.000000] Lowering msenc maximum rate from 600000000 to 528000000          
[    0.000000] Lowering se maximum rate from 600000000 to 528000000             
[    0.000000] Lowering vde maximum rate from 600000000 to 528000000            
[    0.000000] Lowering host1x maximum rate from 500000000 to 444000000         
[    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 852000000          
[    0.000000] Lowering cpu_g maximum rate from 3000000000 to 2065500000        
[    0.000000] tegra dvfs: VDD_CPU nominal 1260mV, 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 @c1df3000 s15168 r8192 d13504 u36864
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pa8
[    0.000000] Kernel command line: console=ttyS0,115200n8 console=tty1 no_const
[    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: 1923MB = 1923MB total                                    
[    0.000000] Memory: 1920996k/1920996k available, 142364k reserved, 1190908K m
[    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 : 0xbf000000 - 0xbfe00000   (  14 MB)                
[    0.000000]       .text : 0xc0008000 - 0xc0b5b7d4   (11598 kB)               
[    0.000000]       .init : 0xc0b5c000 - 0xc0bd8b40   ( 499 kB)                
[    0.000000]       .data : 0xc0bda000 - 0xc0d3ef68   (1428 kB)                
[    0.000000]        .bss : 0xc0d3ef68 - 0xc0dd9d8c   ( 620 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 2863s
[    0.000000] Ignoring duplicate/late registration of read_current_timer delay 
[    0.000000] Console: colour dummy device 80x30                               
[    0.000000] console [tty1] enabled                                           
[    0.003744] Calibrating delay loop (skipped), value calculated using timer f0
[    0.003816] pid_max: default: 32768 minimum: 301                             
[    0.004115] Mount-cache hash table entries: 512                              
[    0.027800] Initializing cgroup subsys debug                                 
[    0.027844] Initializing cgroup subsys freezer                               
[    0.027932] CPU: Testing write buffer coherency: ok                          
[    0.028004] ftrace: allocating 33504 entries in 66 pages                     
[    0.071326] /cpus/cpu@0 missing clock-frequency property                     
[    0.071357] /cpus/cpu@1 missing clock-frequency property                     
[    0.071378] /cpus/cpu@2 missing clock-frequency property                     
[    0.071399] /cpus/cpu@3 missing clock-frequency property                     
[    0.0714                                                                     
           [    5.783183] usbcore: registered new interface driver snd-usb-audio
[    5.792173] MAX98090 driver built on Oct 31 2019 at 13:50:04                 
[    5.800789] tegra_offload_platform probe successfull.                        
[    5.808720] succefully registered offload opstegra30_avp_audio_platform_prob*
[    5.868700] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE                   
[    5.868706] win[0]: 0(0) - 80(1)                                             
[    5.868710] win[1]: 86(0) - 168(1)                                           
[    5.868714] win[2]: 174(0) - 255(1)                                          
[    5.868722] ***************************************                          
[    5.868739] ********tuning windows after inserting holes*****                
[    5.868742] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE                   
[    5.868746] win[0]:-2(0) - 47(2)                                             
[    5.868750] win[1]:49(2) - 80(1)                                             
[    5.868754] win[2]:86(0) - 135(2)                                            
[    5.868758] win[3]:137(2) - 168(1)                                           
[    5.868761] win[4]:174(0) - 223(2)                                           
[    5.868765] win[5]:225(2) - 255(1)                                           
[    5.868768] ***********************************************                  
[    5.868772] **********Tuning values*********                                 
[    5.868775] **estimated values**                                             
[    5.868779] T2T_Vmax 57, T2T_Vmin 79, 1'st_hole_Vmax 47, UI_Vmax 87          
[    5.868782] **Calculated values**                                            
[    5.868785] T2T_Vmax 56, 1'st_hole_Vmax 48, UI_Vmax 88                       
[    5.868789] T2T_Vmin 56, 1'st_hole_Vmin 48, UI_Vmin 89                       
[    5.868791] ***********************************                              
[    5.868798] ***********final tuning windows**********                        
[    5.868801] win[0]: 15 - 37                                                  
[    5.868804] win[1]: 60 - 63                                                  
[    5.868807] win[2]: 103 - 120                                                
[    5.868810] win[3]: 154 - 151                                                
[    5.868813] win[4]: 191 - 203                                                
[    5.868816] win[5]: 248 - 238                                                
[    5.868818] ********************************                                 
[    5.868823] best tap win - (15-37), best tap value 26 prev_best_tap 0        
                                                                                
[    6.084086] rt5639 0-001c: read 0xfd=0x6                                     
[    6.104585] rt5639 0-001c: ASoC: mux INR Mux has no paths                    
[    6.111343] rt5639 0-001c: ASoC: mux INL Mux has no paths                    
[    6.118700] gpio wake49 for gpio=143                                         
[    6.412244] **********Auto tuning windows*************                       
[    6.418686] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE                   
[    6.425475] win[0]: 0(0) - 80(1)                                             
[    6.430021] win[1]: 87(0) - 167(1)                                           
[    6.434750] win[2]: 175(0) - 255(1)                                          
[    6.439569] ***************************************                          
[    6.445846] ********tuning windows after inserting holes*****                
[    6.453030] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE                   
[    6.459960] win[0]:-87(0) - -1(1)                                            
[    6.464709] win[1]:0(0) - 0(1)                                               
[    6.469182] win[2]:1(0) - 46(2)                                              
[    6.473691] win[3]:48(2) - 80(1)                                             
[    6.478242] win[4]:87(0) - 133(2)                                            
[    6.482852] win[5]:135(2) - 167(1)                                           
[    6.487562] win[6]:175(0) - 220(2)                                           
[    6.492234] win[7]:222(2) - 255(1)                                           
[    6.496888] ***********************************************                  
[    6.503753] **********Tuning values*********                                 
[    6.509335] **estimated values**                                             
[    6.513891] T2T_Vmax 57, T2T_Vmin 79, 1'st_hole_Vmax 47, UI_Vmax 87          
[    6.521585] **Calculated values**                                            
[    6.526349] T2T_Vmax 57, 1'st_hole_Vmax 47, UI_Vmax 87                       
[    6.533007] T2T_Vmin 57, 1'st_hole_Vmin 47, UI_Vmin 87                       
[    6.539637] ***********************************                              
[    6.545647] ***********final tuning windows**********                        
[    6.552136] win[0]: -70 - -18                                                
[    6.556531] win[1]: 17 - -17                                                 
[    6.560800] win[2]: 18 - 37                                                  
[    6.564988] win[3]: 58 - 63                                                  
[    6.569129] win[4]: 104 - 118                                                
[    6.573414] win[5]: 151 - 150                                                
[    6.577644] win[6]: 192 - 199                                                
[    6.581825] win[7]: 244 - 238                                                
[    6.585997] ********************************                                 
[    6.591513] best tap win - (18-37), best tap value 27 prev_best_tap 26       
[    6.599345] sdhci-tegra sdhci-tegra.3: sdhci_tegra_verify_best_tap: tuning f7
[    6.613952] mmc0: new HS200 MMC card at address 0001                         
[    6.620482] mmcblk mmc0:0001: Card claimed for testing.                      
[    6.627261] mmcblk0: mmc0:0001 SEM16G 14.6 GiB                               
[    6.633352] mmcblk0rpmb: mmc0:0001 SEM16G partition 3 4.00 MiB               
[    6.643195]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9                             
[    7.125567] rt5639 0-001c: rt5639_headset_detect RT5639_PWR_ANLG1(0x63) = 0x4
[    7.136312] rt5639 0-001c: rt5639_headset_detect RT5639_IRQ_CTRL2(0xbe) = 0x0
[    7.207426] rt5639 0-001c: rt5639_headset_detect jack_type = 2               
[    7.215299] tegra-snd-rt5639 tegra-snd-rt5639.0:  rt5639-aif1 <-> tegra30-i2k
[    7.227751] tegra-snd-rt5639 tegra-snd-rt5639.0:  dit-hifi <-> tegra30-spdifk
[    7.240105] tegra-snd-rt5639 tegra-snd-rt5639.0:  dit-hifi <-> tegra30-i2s.3k
[    7.252657] tegra-snd-rt5639 tegra-snd-rt5639.0:  rt5639-aif1 <-> dit-hifi mk
[    7.265212] tegra-snd-rt5639 tegra-snd-rt5639.0:  dit-hifi <-> dit-hifi mappk
[    7.277634] tegra-snd-rt5639 tegra-snd-rt5639.0: Allocating for stream playbk
[    7.289473] tegra-snd-rt5639 tegra-snd-rt5639.0: Allocating for stream captue
[    7.301569] tegra-snd-rt5639 tegra-snd-rt5639.0:  snd-soc-dummy-dai <-> tegrk
[    7.316374] compress asoc: snd-soc-dummy-dai <-> tegra-offload-compr mappingk
[    7.329642] tegra-snd-rt5639 tegra-snd-rt5639.0: Allocating for stream playbk
[    7.342315] tegra-snd-rt5639 tegra-snd-rt5639.0: Allocating for stream captue
[    7.355025] tegra-snd-rt5639 tegra-snd-rt5639.0:  snd-soc-dummy-dai <-> tegrk
[    7.370289] tegra-snd-rt5639 tegra-snd-rt5639.0:  rt5639-aif1 <-> tegra30-i2k
[    7.388039] input: tegra-rt5639 Headphone Jack as /devices/platform/tegra-sn0
[    7.404419] sysedp_create_consumer: unable to create speaker, no consumer_dad
[    7.416764] oprofile: using timer interrupt.                                 
[    7.427051] GACT probability NOT on                                          
[    7.433361] Mirror/redirect action on                                        
[    7.439778] u32 classifier                                                   
[    7.445167]     Actions configured                                           
[    7.451232] Netfilter messages via NETLINK v0.30.                            
[    7.458600] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)            
[    7.467730] NF_TPROXY: Transparent proxy support initialized, version 4.1.0  
[    7.477329] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.               
[    7.486004] xt_time: kernel timezone is -0000                                
[    7.493171] ip_tables: (C) 2000-2006 Netfilter Core Team                     
[    7.501168] arp_tables: (C) 2002 David S. Miller                             
[    7.508274] TCP: cubic registered                                            
[    7.514158] NET: Registered protocol family 10                               
[    7.521850] mip6: Mobile IPv6                                                
[    7.527150] ip6_tables: (C) 2000-2006 Netfilter Core Team                    
[    7.534974] sit: IPv6 over IPv4 tunneling driver                             
[    7.542835] NET: Registered protocol family 17                               
[    7.549546] NET: Registered protocol family 15                               
[    7.556184] NET: Registered protocol family 35                               
[    7.562781] NET: Registered protocol family 37                               
[    7.569183] NET: Registered protocol family 41                               
[    7.576842] VFP support v0.3: implementor 41 architecture 4 part 30 variant 0
[    7.611757] Registering SWP/SWPB emulation handler                           
[    7.618396] last reset is due to software reset                              
[    7.618396]                                                                  
[    7.627876] Disabling clocks left on by bootloader:                          
[    7.634421]    audio_2x                                                      
[    7.638482]    audio                                                         
[    7.642237]    audio4                                                        
[    7.646032]    audio3                                                        
[    7.649826]    audio2                                                        
[    7.653564]    audio1                                                        
[    7.657274]    audio0                                                        
[    7.661020]    hdmi_audio                                                    
[    7.664989]    entropy                                                       
[    7.668637]    dsi2-fixed                                                    
[    7.672518]    dsi1-fixed                                                    
[    7.676333]    nor                                                           
[    7.679475]    trace                                                         
[    7.682749]    sdmmc4_ddr                                                    
[    7.686429]    sdmmc3_ddr                                                    
[    7.690105]    cclk_lp                                                       
[    7.693485]    pll_x_out0                                                    
[    7.697057]    pll_u_12M                                                     
[    7.700500]    pll_m_out1                                                    
[    7.704114] tegra_dvfs: vdd_cpu connected to regulator                       
[    7.710257] tegra_dvfs: vdd_core connected to regulator                      
[    7.716562] tegra_dvfs: vdd_gpu connected to regulator                       
[    7.724026] cpu_cold cooling device is registered                            
[    7.729945] cpu_hot cooling device is registered                             
[    7.730022] Tegra CPU DFLL is initialized with use_dfll = 1                  
[    7.730086] CPU rate: 696 MHz                                                
[    7.905398] tegra dvfs: tegra sysfs cap interface is initialized             
[    7.912376] tegra dvfs: tegra sysfs gpu & emc interface is initialized       
[    7.920329] tegra_actmon.emc: Completed initialization (0)                   
[    7.926927] tegra_actmon.avp: Completed initialization (0)                   
[    7.933397] tegra_mon.cpu_emc: Completed initialization (0)                  
[    7.942512] reg-aon-1v2: incomplete constraints, leaving on                  
[    7.949052] reg-aon-1v8: incomplete constraints, leaving on                  
[    7.955635] sdmmc-en-supply: incomplete constraints, leaving on              
[    7.962567] reg-dcdc-1v2: incomplete constraints, leaving on                 
[    7.969329] reg-5v0-supply: incomplete constraints, leaving on               
[    7.976273] usb0-vbus: incomplete constraints, leaving on                    
[    7.982892] vpp-fuse: incomplete constraints, leaving on                     
[    7.989391] vdd-2v7-cam: incomplete constraints, leaving on                  
[    7.996250] avdd-spi: incomplete constraints, leaving on                     
[    8.003017] vdd-1v1-cam: incomplete constraints, leaving on                  
[    8.009938] vddio-sdmmc-2: incomplete constraints, leaving on                
[    8.017075] vdd-1v2-cam: incomplete constraints, leaving on                  
[    8.024070] avdd-cam: incomplete constraints, leaving on                     
[    8.030855] vdd-cam: incomplete constraints, leaving on                      
[    8.037585] as3722-sd3: incomplete constraints, leaving on                   
[    8.044615] vdd-3v3-aon: incomplete constraints, leaving on                  
[    8.051778] vdd-ac-bat: incomplete constraints, leaving on                   
[    8.058891] regulator-dummy: incomplete constraints, leaving on              
[    8.067117] gpio wake51 for gpio=128                                         
[    8.072582] input: gpio-keys.4 as /devices/platform/gpio-keys.4/input/input1 
[    8.082101] as3722-rtc as3722-rtc.1: setting system clock to 2000-01-01 01:2)
[    8.095019] ALSA device list:                                                
[    8.099440]   #0: HDA NVIDIA Tegra at 0x70038000 irq 113                     
[    8.106299]   #1: tegra-rt5639                                               
[    8.111849] EXT4-fs (mmcblk0p1): couldn't mount as ext3 due to feature incoms
[    8.123592] EXT4-fs (mmcblk0p1): couldn't mount as ext2 due to feature incoms
[    8.139753] JBD2: Unrecognised features on journal                           
[    8.146317] EXT4-fs (mmcblk0p1): error loading journal                       
[    8.154397] List of all partitions:                                          
[    8.159612] b300        15388672 mmcblk0  driver: mmcblk                     
[    8.166757]   b301        14929920 mmcblk0p1 7369c667-ff51-ec4a-29cd-baabf2f6
[    8.177994]   b302            4096 mmcblk0p2 f854c27c-e81b-8de7-765a-2e63339a
[    8.189109]   b303           65536 mmcblk0p3 b70d3266-5831-5aa3-255d-051758e4
[    8.200307]   b304            4096 mmcblk0p4 c6cdb2ab-b49b-1154-0e82-74412137
[    8.211601]   b305            4096 mmcblk0p5 a13ee970-e141-67fc-3e01-7e97ead6
[    8.222944]   b306            4096 mmcblk0p6 2a5c388f-b0ec-fb3b-32af-3c54ec1c
[    8.234465]   b307            4096 mmcblk0p7 43fe1a02-fafb-3aaa-fb29-d1e60534
[    8.246053]   b308            2048 mmcblk0p8 61bed875-f989-bb5c-a899-0f95b1e3
[    8.257650]   b309          321536 mmcblk0p9 00f7ef05-a1e9-e53a-ca0b-cbd0484d
[    8.269315] b310            4096 mmcblk0rpmb  (driver?)                      
[    8.276730] No filesystem could mount root, tried:  ext3 ext2 ext4 vfat ntfsk
[    8.288898] Kernel panic - not syncing: VFS: Unable to mount root fs le_call)
[    9.492893] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.492901] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.492904] ---[ end trace 93f1712e5671427b ]---                             
[    9.492910] bad: scheduling from the idle thread!                            
[    9.492914] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.492924] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.492934] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[    9.492945] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[    9.492957] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[    9.492967] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[    9.492977] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[    9.492986] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.492996] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.493004] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.493012] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.493016] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.493022] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.493028] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.493031] df00: 20000113 ffffffff                                          
[    9.493042] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.493052] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.493062] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.493071] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.493082] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.493093] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.493102] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.493110] ------------[ cut here ]------------                             
[    9.493117] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[    9.493120] Modules linked in:                                               
[    9.493125] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.493135] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.493145] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[    9.493156] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[    9.493166] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[    9.493177] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[    9.493187] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[    9.493196] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.493205] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.493213] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.493223] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.493226] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.493232] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.493238] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.493241] df00: 20000113 ffffffff                                          
[    9.493252] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.493262] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.493272] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.493281] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.493293] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.493304] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.493312] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.493315] ---[ end trace 93f1712e5671427c ]---                             
[    9.493320] bad: scheduling from the idle thread!                            
[    9.493325] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.493335] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.493344] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[    9.493355] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[    9.493367] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[    9.493378] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[    9.493387] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[    9.493397] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.493406] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.493414] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.493423] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.493426] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.493432] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.493438] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.493442] df00: 20000113 ffffffff                                          
[    9.493451] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.493461] [<c003ecec>] (tegra_idle[    9.495482] dee0: ee28df08 c0d2a1e0 cc
[    9.495485] df00: 20000113 ffffffff                                          
[    9.495495] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.495505] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.495515] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.495525] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.495536] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.495547] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.495555] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.495563] ------------[ cut here ]------------                             
[    9.495570] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[    9.495574] Modules linked in:                                               
[    9.495578] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.495588] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.495599] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[    9.495610] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[    9.495620] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[    9.495631] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[    9.495640] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[    9.495649] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.495658] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.495666] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.495675] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.495678] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.495685] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.495691] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.495694] df00: 20000113 ffffffff                                          
[    9.495704] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.495714] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.495724] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.495734] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.495745] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.495756] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.495764] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.495767] ---[ end trace 93f1712e56714282 ]---                             
[    9.495772] bad: scheduling from the idle thread!                            
[    9.495777] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.495787] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.495796] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[    9.495807] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[    9.495820] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[    9.495831] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[    9.495840] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[    9.495850] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.495859] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.495867] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.495876] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.495879] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.495885] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.495891] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.495894] df00: 20000113 ffffffff                                          
[    9.495905] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.495914] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.495924] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.495934] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.495945] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.495956] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.495964] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.495973] ------------[ cut here ]------------                             
[    9.495980] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[    9.495983] Modules linked in:                                               
[    9.495988] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.495998] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.496008] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[    9.496020] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[    9.496029] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[    9.496040] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[    9.496049] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[    9.496058] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.498075] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[    9.498085] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[    9.498095] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[    9.498104] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.498113] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.498121] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.498130] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.498133] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.498139] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.498145] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.498149] df00: 20000113 ffffffff                                          
[    9.498159] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.498169] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.498179] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.498189] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.498200] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.498211] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.498219] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.498222] ---[ end trace 93f1712e56714288 ]---                             
[    9.498227] bad: scheduling from the idle thread!                            
[    9.498232] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.498242] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.498251] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[    9.498262] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[    9.498274] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[    9.498285] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[    9.498295] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[    9.498304] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.498313] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.498321] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.498330] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.498333] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.498339] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.498345] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.498348] df00: 20000113 ffffffff                                          
[    9.498359] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.498368] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.498379] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.498388] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.498399] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.498410] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.498418] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.498426] ------------[ cut here ]------------                             
[    9.498433] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[    9.498437] Modules linked in:                                               
[    9.498441] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.498451] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.498462] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[    9.498473] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[    9.498483] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[    9.498494] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[    9.498503] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[    9.498512] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.498521] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.498529] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.498538] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.498541] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.498547] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.498553] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.498556] df00: 20000113 ffffffff                                          
[    9.498566] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.498576] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.498586] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.498596] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.498607] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.498618] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.498626] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.498629] ---[ end trace 93f1712e56714289 ]---                             
[    9.498634] bad: scheduling from the if00: 20000113 ffffffff                 
[    9.500616] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.500626] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.500636] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.500646] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.500657] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.500668] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.500676] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.500680] ---[ end trace 93f1712e5671428e ]---                             
[    9.500685] bad: scheduling from the idle thread!                            
[    9.500690] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.500700] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.500709] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[    9.500720] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[    9.500733] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[    9.500743] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[    9.500753] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[    9.500763] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.500772] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.500780] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.500790] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.500792] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.500799] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.500805] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.500808] df00: 20000113 ffffffff                                          
[    9.500819] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.500828] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.500839] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.500849] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.500860] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.500870] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.500878] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.500886] ------------[ cut here ]------------                             
[    9.500893] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[    9.500897] Modules linked in:                                               
[    9.500902] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.500912] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.500922] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[    9.500933] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[    9.500943] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[    9.500954] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[    9.500964] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[    9.500973] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.500983] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.500991] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.501000] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[    9.501004] Exception stack(0xee28dec0 to 0xee28df08)                        
[    9.501010] dec0: ee28df10 00000000 00000000 000f4240 00021329 00000000 00008
[    9.501016] dee0: ee28df08 c0d2a1e0 c1e0e3e8 c08356e0 3b9ac9ff ee28df08 c02cc
[    9.501020] df00: 20000113 ffffffff                                          
[    9.501030] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[    9.501040] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[    9.501050] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[    9.501060] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[    9.501071] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[    9.501082] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[    9.501090] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[    9.501094] ---[ end trace 93f1712e5671428f ]---                             
[    9.501099] bad: scheduling from the idle thread!                            
[    9.501104] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W    3.10.40-ge11
[    9.501114] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[    9.501123] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[    9.501134] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[    9.501147] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[    9.501158] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[    9.501168] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[    9.501177] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[    9.501186] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[    9.501195] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[    9.50120                                                                    
            [   26.873051] [<c0015864>] (handle_IPI+0x178/0x1a8) from [<c000853)
[   26.886579] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   26.899902] Exception stack(0xee289ec0 to 0xee289f08)                        
[   26.907398] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   26.920415] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   26.933530] 9f00: 20000113 ffffffff                                          
[   26.939454] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   26.953962] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   26.969441] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   26.984129] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   26.998727] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   27.012714] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   27.026258] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   27.038732] CPU2: stopping                                                   
[   27.038737] BUG: scheduling while atomic: swapper/1/0/0x00010002             
[   27.040138] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   27.054146] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   27.067607] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   27.082242] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   27.095175] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   27.109178] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   27.122657] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   27.136237] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   27.150915] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   27.164403] ---[ end trace 93f1712e5671435a ]---                             
[   27.171499] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   27.185026] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   27.198318] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   27.211859] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   27.225390] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   27.238785] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   27.252927] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   27.267744] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   27.283419] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   27.297146] bad: scheduling from the idle thread!                            
[   27.304369] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   27.317959] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   27.331679] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   27.345089] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   27.359220] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   27.374094] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   27.387744] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   27.402739] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   27.416193] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   27.429952] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   27.443738] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   27.457000] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   27.470219] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   27.482844] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   27.498581] ---[ end trace 93f1712e56714569 ]---                             
[   27.505732] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   27.518321] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   27.533273] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   27.546767] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   27.560276] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   27.573443] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   27.588431] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   27.602174] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   27.617075] [<c0822a08>] (__schedule+0x724/0x764) from [<c08208f0>] (schedul)
[   27.631063] Exception stack(0xee289ec0 to 0xee289f08)                        
[   27.638654] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   27.652075] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   27.665767] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   27.680426] ---[ end trace 93f1712e56714688 ]---                             
[   27.687509] Exception stack(0xee289ec0 to 0xee289f08)                        
[   27.695018] ---[ end trace 93f1712e5671469f ]---                             
[   27.702061] [<c0822a08>] (__schedule+0x724/0x764) from [<c08208f0>] (schedul)
[   27.715855] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   27.728870] [<c009d2d8>] (
[   30.768293] [<c003ecec>] (tegra_idle_enter_cloc)
[   30.783764] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   30.797702] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   30.811198] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   30.824672] ---[ end trace 93f1712e567159ef ]---                             
[   30.831746] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   30.845238] Exception stack(0xee289ec0 to 0xee289f08)                        
[   30.852700] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   30.866606] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   30.880550] bad: scheduling from the idle thread!                            
[   30.887719] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   30.901659] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   30.915056] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   30.929625] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   30.943537] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   30.955916] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   30.970651] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   30.984190] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   30.998279] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   31.011615] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   31.026398] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   31.041226] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   31.055072] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   31.069301] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[   31.084033] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   31.096670] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   31.109397] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   31.123184] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   31.136995] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   31.149663] ------------[ cut here ]------------                             
[   31.156864] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   31.171074] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[   31.185094] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   31.200828] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   31.214448] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   31.229264] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   31.242462] 9f00: 20000113 ffffffff                                          
[   31.248451] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   31.262481] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   31.276090] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   31.288520] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   31.301001] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   31.314550] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   31.328074] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   31.341680] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   31.356387] Exception stack(0xee289ec0 to 0xee289f08)                        
[   31.363928] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   31.377430] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   31.390500] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   31.403600] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   31.416946] Exception stack(0xee289ec0 to 0xee289f08)                        
[   31.424467] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   31.437942] ---[ end trace 93f1712e56715db8 ]---                             
[   31.445052] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   31.458135] 9f00: 20000113 ffffffff                                          
[   31.464071] 9f00: 20000113 ffffffff                                          
[   31.469825] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[   31.483226] Exception stack(0xee289ec0 to 0xee289f08)                        
[   31.490629] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   31.503605] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   31.517353] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   31.530631] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   31.543915] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   31.557224] Exception stack(0xee289ec0 to 0xee289f08)                        
[   31.564636] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   31.577621] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   31.591370] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   31.604374] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   31.617594] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   31.631429] [<c0008530>] (gic_handle_irq+0x7c/0x160) f                       
                                                         [   34.661325] [<c000e)
[   34.675785] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   34.689283] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   34.703829] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   34.716169] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   34.730865] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   34.744057] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   34.757579] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   34.772242] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   34.785296] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   34.798978] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   34.811547] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   34.825739] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   34.840000] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[   34.854104] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   34.867400] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   34.883214] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   34.898086] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   34.913871] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   34.928842] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   34.942579] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   34.956133] Modules linked in:                                               
[   34.961711] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   34.975411] 9f00: 20000113 ffffffff                                          
[   34.981388] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   34.994989] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   35.008085] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   35.022775] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   35.035830] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   35.050626] bad: scheduling from the idle thread!                            
[   35.057746] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   35.071312] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   35.084821] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   35.100333] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   35.113572] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   35.127101] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   35.141810] 9f00: 20000113 ffffffff                                          
[   35.147676] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   35.160858] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   35.174383] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   35.188038] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   35.202127] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   35.215778] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   35.229419] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   35.241913] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   35.255602] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   35.268802] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   35.282559] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   35.297453] 9f00: 20000113 ffffffff                                          
[   35.303412] bad: scheduling from the idle thread!                            
[   35.310515] ------------[ cut here ]------------                             
[   35.317576] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   35.331024] 9f00: 20000113 ffffffff                                          
[   35.336888] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   35.350325] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   35.363536] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   35.376980] Exception stack(0xee289ec0 to 0xee289f08)                        
[   35.384437] ---[ end trace 93f1712e5671761a ]---                             
[   35.391369] Modules linked in:                                               
[   35.396660] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   35.409938] Exception stack(0xee289ec0 to 0xee289f08)                        
[   35.417282] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   35.430444] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   35.443339] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   35.456989] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   35.471238] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   35.486367] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   35.500635] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   35.514008] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0x
                                                                               )
[   38.418712] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   38.432225] ---[ end trace 93f1712e567188f7 ]---                             
[   38.439253] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   38.452587] Exception stack(0xee289ec0 to 0xee289f08)                        
[   38.460040] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   38.474490] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   38.488002] 9f00: 20000113 ffffffff                                          
[   38.493925] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   38.506905] [<c0822a08>] (__schedule+0x724/0x764) from [<c08208f0>] (schedul)
[   38.520713] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   38.535410] Exception stack(0xee289ec0 to 0xee289f08)                        
[   38.542823] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   38.557467] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   38.570693] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   38.584115] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   38.598672] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   38.612588] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   38.626074] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   38.640080] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   38.653113] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   38.666702] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   38.680789] Modules linked in:                                               
[   38.686254] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   38.698680] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   38.712036] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   38.726788] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   38.740863] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   38.753402] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   38.768228] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   38.782356] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   38.795763] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   38.809433] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   38.822863] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   38.836535] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   38.849978] Exception stack(0xee289ec0 to 0xee289f08)                        
[   38.857554] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   38.870904] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   38.884510] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   38.898766] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   38.912240] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   38.927186] 9f00: 20000113 ffffffff                                          
[   38.933139] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   38.946829] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   38.959329] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   38.972754] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   38.986346] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   39.000458] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   39.015195] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   39.029917] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   39.044633] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   39.059482] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   39.073216] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   39.087409] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   39.101111] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   39.115931] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   39.129543] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[   39.144374] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   39.159249] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   39.174209] Modules linked in:                                               
[   39.179782] Exception stack(0xee289ec0 to 0xee289f08)                        
[   39.187294] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   39.200982] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   39.214090] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   39.228840] bad: scheduling from the idle thread!                            
[   39.235991] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   39.248946] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
58/0x260) from [<c05c5a24>] (cpuidle_enter_state+0x48/0x104)x6c/0x7c) from [<c0)
[   42.287900] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   42.301210] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   42.314844] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   42.328915] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   42.342538] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   42.356606] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   42.370239] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   42.383914] BUG: scheduling while atomic: swapper/1/0/0x00010002             
[   42.392465] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   42.407264] [<c0822a08>] (__schedule+0x724/0x764) from [<c08208f0>] (schedul)
[   42.421327] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   42.435088] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   42.448308] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[   42.462067] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   42.475284] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   42.490017] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   42.504839] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   42.518029] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   42.531251] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   42.544980] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   42.559170] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   42.572380] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   42.585591] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   42.599104] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   42.613960] Exception stack(0xee289ec0 to 0xee289f08)                        
[   42.621511] 9f00: 20000113 ffffffff                                          
[   42.627468] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   42.639975] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   42.653167] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   42.666615] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   42.679776] [<c0013260>] (show_stack+0x18/0x1c) from [<c009cb0c>] (__schedul)
[   42.693217] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[   42.707163] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   42.721909] BUG: scheduling while atomic: swapper/1/0/0x00010002             
[   42.730446] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   42.745137] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   42.759945] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   42.773574] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   42.786680] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   42.801422] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   42.814955] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   42.829676] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   42.845425] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   42.860353] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   42.872949] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   42.886663] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   42.900476] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   42.914689] bad: scheduling from the idle thread!                            
[   42.921933] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   42.935657] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   42.949879] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   42.963079] 9f00: 20000113 ffffffff                                          
[   42.969052] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   42.982679] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   42.997555] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   43.011636] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   43.025271] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   43.038685] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   43.052339] Exception stack(0xee289ec0 to 0xee289f08)                        
[   43.059886] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   43.073439] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   43.086760] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   43.101426] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   43.115950] ---[ end trace 93f1712e5671a603 ]---                             
[   43.123010] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   43.138570] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   [<c000ed40>] (__irq_svc+0x40/0x70)                                          
[   46.218970] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[   46.233629] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   46.248441] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   46.261830] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   46.274930] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   46.288266] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   46.300771] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   46.314423] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   46.328068] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   46.341781] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   46.356584] [<c0013260>] (show_stack+0x18/0x1c) from [<c009cb0c>] (__schedul)
[   46.370023] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   46.383497] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   46.397217] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   46.412083] Exception stack(0xee289ec0 to 0xee289f08)                        
[   46.419666] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   46.435332] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   46.448755] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   46.461921] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   46.475610] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   46.489309] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   46.502520] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   46.516048] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   46.531811] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   46.546500] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   46.560247] Exception stack(0xee289ec0 to 0xee289f08)                        
[   46.567840] 9f00: 20000113 ffffffff                                          
[   46.573788] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   46.586270] Exception stack(0xee289ec0 to 0xee289f08)                        
[   46.593808] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   46.607781] ---[ end trace 93f1712e5671bbac ]---                             
[   46.614823] Exception stack(0xee289ec0 to 0xee289f08)                        
[   46.622268] Modules linked in:                                               
[   46.627646] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   46.642161] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   46.655555] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   46.670044] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   46.683894] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   46.697314] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   46.710146] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   46.723952] ------------[ cut here ]------------                             
[   46.730891] ------------[ cut here ]------------                             
[   46.737732] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   46.751835] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   46.766062] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   46.781251] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   46.794423] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[   46.809030] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   46.822439] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   46.835988] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[   46.850797] Exception stack(0xee289ec0 to 0xee289f08)                        
[   46.858237] Modules linked in:                                               
[   46.863613] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   46.878113] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   46.892703] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   46.906564] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   46.919987] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   46.933226] Exception stack(0xee289ec0 to 0xee289f08)                        
[   46.940774] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   46.953857] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   46.968576] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   46.982635] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   46.995097] Exception stack(0xee289ec0 to 0xee289f08)                        
[   47.002647] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   47.015925] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   47.030655] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   47.045263] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   47.058554] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   47.072706] [<c0013260>] (show_stack+0x1show_stack+0x18/0x1c)                
[   50.124977] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   50.138554] Modules linked in:                                               
[   50.144008] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   50.156304] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   50.171743] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[   50.185182] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   50.199138] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   50.213684] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   50.227267] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   50.241954] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   50.255007] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   50.267487] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   50.281186] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   50.294558] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   50.307956] Modules linked in:                                               
[   50.313499] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   50.326798] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   50.341636] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   50.355070] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   50.368772] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   50.384481] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   50.398141] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   50.412874] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   50.427702] Exception stack(0xee289ec0 to 0xee289f08)                        
[   50.435248] Exception stack(0xee289ec0 to 0xee289f08)                        
[   50.442700] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   50.455617] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   50.470271] Exception stack(0xee289ec0 to 0xee289f08)                        
[   50.477678] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   50.491483] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   50.505301] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   50.519882] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   50.533115] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   50.546052] Modules linked in:                                               
[   50.551497] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   50.565293] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   50.580644] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   50.595961] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   50.610456] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   50.623833] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   50.639206] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   50.653941] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   50.667028] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   50.680665] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   50.694802] Exception stack(0xee289ec0 to 0xee289f08)                        
[   50.702343] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   50.715946] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   50.730030] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   50.743087] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   50.758726] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   50.771852] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   50.786000] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   50.799578] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   50.813721] [<c0013260>] (show_stack+0x18/0x1c) from [<c009cb0c>] (__schedul)
[   50.827131] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   50.840981] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   50.854842] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   50.868735] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   50.882199] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   50.895949] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   50.910193] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   50.925926] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   50.939142] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   50.954120] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   50.967915] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   50.983707] [<c05c5a24>530>] (gic_handle_irq+0x7c/0x160)                     
[   54.009368] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   54.025018] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   54.038872] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   54.052305] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   54.066420] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   54.079845] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   54.093272] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   54.106974] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   54.122643] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[   54.136553] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   54.152216] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   54.165609] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[   54.179595] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   54.194596] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[   54.208687] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   54.222515] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   54.236100] Modules linked in:                                               
[   54.241686] Exception stack(0xee289ec0 to 0xee289f08)                        
[   54.249193] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   54.262601] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[   54.277250] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   54.290870] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   54.303365] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   54.316490] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   54.330056] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   54.343176] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   54.356752] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   54.372357] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   54.385990] ------------[ cut here ]------------                             
[   54.393081] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   54.407622] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   54.421190] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   54.436760] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   54.451443] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   54.464625] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   54.477180] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   54.491993] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   54.505598] Modules linked in:                                               
[   54.511130] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   54.524420] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   54.539188] ---[ end trace 93f1712e5671ecde ]---                             
[   54.546226] Exception stack(0xee289ec0 to 0xee289f08)                        
[   54.553667] ---[ end trace 93f1712e5671ecf5 ]---                             
[   54.560657] [<c0822a08>] (__schedule+0x724/0x764) from [<c08208f0>] (schedul)
[   54.574277] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   54.588123] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   54.602015] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   54.615191] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   54.628629] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   54.642097] 9f00: 20000113 ffffffff                                          
[   54.647929] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   54.661745] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[   54.675420] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   54.688798] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   54.702620] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[   54.716374] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   54.730953] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[   54.744735] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   54.758866] Modules linked in:                                               
[   54.764385] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   54.778444] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   54.791751] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   54.806571] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[   54.821132] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   54.836684] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   54.850745] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   54.864505] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0000x28) from [<c0)
[   57.916941] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   57.932759] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   57.946998] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   57.961298] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[   57.976377] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   57.990643] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   58.005549] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   58.021349] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   58.035164] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   58.049447] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   58.063285] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   58.077579] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   58.092514] ---[ end trace 93f1712e567202e7 ]---                             
[   58.099664] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[   58.113388] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   58.128134] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   58.142334] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   58.155803] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   58.171565] 9f00: 20000113 ffffffff                                          
[   58.177494] ---[ end trace 93f1712e5672036e ]---                             
[   58.184540] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   58.200122] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   58.214811] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   58.228374] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   58.242935] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   58.256478] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   58.269538] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   58.285102] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   58.299615] ---[ end trace 93f1712e56720430 ]---                             
[   58.306681] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   58.322205] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   58.337722] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   58.352444] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   58.364835] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[   58.378743] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   58.392881] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   58.408600] Exception stack(0xee289ec0 to 0xee289f08)                        
[   58.416137] 9f00: 20000113 ffffffff                                          
[   58.422048] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   58.436138] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   58.450837] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   58.465518] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   58.480214] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   58.495018] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   58.508328] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   58.520864] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   58.536560] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   58.549970] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   58.564111] 9f00: 20000113 ffffffff                                          
[   58.570056] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   58.584094] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   58.598848] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   58.611857] [<c0013260>] (show_stack+0x18/0x1c) from [<c009cb0c>] (__schedul)
[   58.625227] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   58.639378] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   58.653481] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   58.666627] [<c0013260>] (show_stack+0x18/0x1c) from [<c009cb0c>] (__schedul)
[   58.680063] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   58.693934] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   58.707815] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   58.721211] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   58.734808] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   58.749572] Modules linked in:                                               
[   58.755065] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   58.768847] [<c05c5c38>] (cpuidle_idle_call+058/0x298)                       
[   61.813206] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   61.825702] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   61.839139] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   61.853276] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   61.866954] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   61.880109] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   61.892640] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   61.905827] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[   61.919842] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   61.932409] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   61.945021] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   61.958817] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   61.972573] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   61.985240] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   61.999120] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   62.012400] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   62.027440] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   62.040978] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   62.055894] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   62.070790] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   62.085784] [<c0013260>] (show_stack+0x18/0x1c) from [<c009cb0c>] (__schedul)
[   62.099313] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   62.114248] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   62.129217] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   62.142930] Exception stack(0xee289ec0 to 0xee289f08)                        
[   62.150560] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   62.165481] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   62.178034] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   62.190659] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   62.203287] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[   62.218353] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   62.231813] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   62.247567] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   62.260759] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   62.276493] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   62.289696] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   62.304464] bad: scheduling from the idle thread!                            
[   62.311682] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   62.325085] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   62.338240] Modules linked in:                                               
[   62.343783] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   62.357853] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   62.371491] 9f00: 20000113 ffffffff                                          
[   62.377414] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   62.392089] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   62.406778] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   62.421373] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   62.434606] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   62.449153] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   62.462671] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   62.476184] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   62.488555] ---[ end trace 93f1712e56721e2c ]---                             
[   62.495629] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   62.508819] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   62.521806] Exception stack(0xee289ec0 to 0xee289f08)                        
[   62.529289] [<c0013260>] (show_stack+0x18/0x1c) from [<c00683d0>] (warn_slow)
[   62.543056] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   62.557060] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   62.570109] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   62.584230] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   62.597352] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   62.612957] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   62.625393] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   62.638803] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   62.652916] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   62.666258] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[   62.680169] Exception stack(0xee289ec0 to 0xee289f08)                        
[   62.687715] [<c003e608>] (te                                                 
                               [   65.681522] [<c0008530>] (gic_handle_irq+0x7c)
[   65.694593] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   65.708021] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   65.721187] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   65.735779] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   65.748095] Exception stack(0xee289ec0 to 0xee289f08)                        
[   65.755575] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   65.769452] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   65.783387] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[   65.798272] 9f00: 20000113 ffffffff                                          
[   65.804206] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   65.818882] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   65.832207] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   65.846801] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   65.861576] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   65.876281] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   65.891870] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   65.904981] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   65.918636] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   65.934275] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   65.949059] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   65.961582] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   65.975340] 9f00: 20000113 ffffffff                                          
[   65.981308] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   65.995367] 9f00: 20000113 ffffffff                                          
[   66.001276] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   66.014348] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   66.029931] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   66.043252] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   66.056896] Exception stack(0xee289ec0 to 0xee289f08)                        
[   66.064404] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   66.077855] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   66.090835] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   66.103852] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   66.117077] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   66.130494] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   66.145178] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   66.159118] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   66.172341] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   66.185676] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   66.198789] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   66.212972] BUG: scheduling while atomic: swapper/1/0/0x00010002             
[   66.221502] 9f00: 20000113 ffffffff                                          
[   66.227466] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   66.241498] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   66.254594] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   66.269443] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   66.282853] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   66.295422] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   66.311170] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   66.325047] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   66.338961] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   66.352855] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   66.366497] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   66.381425] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   66.394603] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   66.408518] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[   66.422288] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   66.436093] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   66.450404] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   66.465294] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   66.479092] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   66.491735] ---[ end trace 93f1712e567236f7 ]---                             
[   66.498943] bad: scheduling from the idle thread!                            
[   66.506154] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[   66.520795] 9f00: 20000113 ffffffff                                          
[   66.526710] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   66.541229] Exception stack(0xee289ec0 to 0xee289f08)                        
[   66.548698] [<c05c5c38>                                                      
                          [   69.532622] [<c0010118>] (arch_cpu_idle+0x10/0x40))
[   69.546464] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   69.559153] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   69.573019] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   69.586581] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   69.600436] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   69.614266] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   69.628572] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   69.642403] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   69.656237] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   69.671159] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   69.685445] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   69.699273] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   69.713571] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   69.727857] ------------[ cut here ]------------                             
[   69.735042] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   69.748708] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   69.762442] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[   69.777475] 9f00: 20000113 ffffffff                                          
[   69.783429] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   69.795901] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   69.809036] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   69.822616] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   69.837434] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   69.850771] ---[ end trace 93f1712e56724bbf ]---                             
[   69.857877] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   69.873414] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   69.888899] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   69.901918] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   69.916568] Exception stack(0xee289ec0 to 0xee289f08)                        
[   69.924046] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   69.937290] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   69.950864] Modules linked in:                                               
[   69.956332] ------------[ cut here ]------------                             
[   69.963267] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   69.977092] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   69.990014] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   70.004450] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   70.017342] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   70.029633] Exception stack(0xee289ec0 to 0xee289f08)                        
[   70.037082] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   70.050889] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   70.065512] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   70.078936] 9f00: 20000113 ffffffff                                          
[   70.084781] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   70.098537] ------------[ cut here ]------------                             
[   70.105466] WARNING: at /dvs/git/dirty/git-master_linux/kernel/kernel/timer.)
[   70.120046] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   70.133348] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   70.146601] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   70.159826] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   70.172845] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   70.185875] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   70.198936] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   70.213600] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   70.226635] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   70.241364] ------------[ cut here ]------------                             
[   70.248428] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   70.262961] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   70.276502] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   70.289651] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   70.303109] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   70.317295] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   70.331050] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   70.344791] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   70.358985] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   70.372188] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   70.385415] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   70.398627] Exception stack(0xee289ec0 to 0xee289f08)                        
[   70.4015c/0x1a8)                                                             
[   73.366346] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   73.380384] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   73.393936] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   73.408603] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   73.421624] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   73.435148] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   73.448178] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   73.461776] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   73.477437] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   73.491112] ---[ end trace 93f1712e56726254 ]---                             
[   73.498248] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   73.513011] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   73.526763] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   73.540273] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   73.554457] 9f00: 20000113 ffffffff                                          
[   73.560445] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   73.572920] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   73.586316] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   73.600429] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   73.615229] bad: scheduling from the idle thread!                            
[   73.622398] Modules linked in:                                               
[   73.627795] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   73.642505] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   73.655974] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   73.669462] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   73.682707] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   73.695974] [<c0822a08>] (__schedule+0x724/0x764) from [<c08208f0>] (schedul)
[   73.709798] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   73.723834] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   73.737384] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   73.750982] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   73.764373] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   73.776921] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   73.790628] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   73.803752] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   73.818641] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   73.832377] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   73.846191] Modules linked in:                                               
[   73.851795] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   73.865486] Exception stack(0xee289ec0 to 0xee289f08)                        
[   73.873071] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   73.886714] [<c00683d0>] (warn_slowpath_common+0x54/0x70) from [<c0068410>] )
[   73.901358] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   73.915982] [<c0013260>] (show_stack+0x18/0x1c) from [<c009cb0c>] (__schedul)
[   73.929342] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   73.944149] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   73.956641] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   73.970033] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   73.984775] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   73.997861] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   74.011994] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   74.026782] bad: scheduling from the idle thread!                            
[   74.033934] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   74.046331] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   74.060033] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   74.074940] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   74.088651] 9f00: 20000113 ffffffff                                          
[   74.094638] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   74.108282] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   74.123092] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   74.135593] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   74.149224] Modules linked in:                                               
[   74.154725] ------------[ cut here ]------------                             
[   74.161722] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   74.174904] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   74.188377] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   74.202916] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   74.217484] Modules linked in:                                               
[   74.222864] Exception stack(0xee289ec0 to 0xee289f08)                        
[   74.230212] 9f00: 20000113 ffffffff                                          
[   74.235991] [<c00b70b4>] (cpu_idle_                                          
                                      [   77.236029] [<c00b70b4>] (cpu_idle_loo)
[   77.248216] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   77.262023] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   77.274929] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   77.289568] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   77.302771] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   77.315091] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   77.328374] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   77.341645] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   77.356147] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   77.370194] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   77.382715] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   77.398487] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   77.414222] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   77.429962] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   77.444945] [<c0822a08>] (__schedule+0x724/0x764) from [<c08208f0>] (schedul)
[   77.459021] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   77.472297] ------------[ cut here ]------------                             
[   77.479512] [<c009cb0c>] (__schedule_bug+0x4c/0x64) from [<c0822a08>] (__sch)
[   77.493165] [<c08208f8>] (schedule_timeout+0x138/0x238) from [<c00792c8>] (m)
[   77.506647] 9f00: 20000113 ffffffff                                          
[   77.512639] Modules linked in:                                               
[   77.518063] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[   77.531662] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   77.547181] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   77.562661] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   77.575632] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   77.590171] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   77.603695] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   77.616719] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   77.631416] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   77.645385] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   77.658910] bad: scheduling from the idle thread!                            
[   77.666031] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   77.679973] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   77.692974] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   77.706263] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   77.720385] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   77.734082] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   77.747316] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   77.760801] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   77.775651] Exception stack(0xee289ec0 to 0xee289f08)                        
[   77.783224] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   77.798863] [<c00791c8>] (del_timer_sync+0x4c/0x74) from [<c08208f8>] (sched)
[   77.812960] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   77.827807] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   77.841463] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   77.856345] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   77.869791] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   77.884720] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   77.898920] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   77.913657] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   77.926247] [<c009d2d8>] (dequeue_task+0xd0/0xf0) from [<c08227dc>] (__sched)
[   77.939794] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   77.953015] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   77.967948] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   77.980508] Modules linked in:                                               
[   77.986116] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   77.999555] Exception stack(0xee289ec0 to 0xee289f08)                        
[   78.007132] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   78.020227] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   78.034347] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   78.047738] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   78.061383] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   78.075036] Exception stack(0xee289ec0 to 0xee289f08)                        
[   78.082584] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   78.096149] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[   81.112094] [<c0822a08>] (__schedule+0x724/0x764) from [<c08208f0>] (schedul)
[   81.126188] Exception stack(0xee289ec0 to 0xee289f08)                        
[   81.133802] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   81.148725] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   81.162917] 9ec0: ee289f10 00000000 00000000 000f4240 0002130e 00000000 00008
[   81.176150] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   81.191094] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   81.203672] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   81.217392] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   81.230869] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   81.245805] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   81.259554] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   81.272804] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   81.287655] Exception stack(0xee289ec0 to 0xee289f08)                        
[   81.295203] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   81.309858] 9f00: 20000113 ffffffff                                          
[   81.315790] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   81.330450] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   81.344511] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W    3.10.40-ge11
[   81.357589] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   81.370671] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   81.383147] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   81.396496] [<c00a41bc>] (dequeue_task_idle+0x24/0x30) from [<c009d2d8>] (de)
[   81.410290] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   81.423890] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   81.438700] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   81.451733] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   81.467326] [<c00b70b4>] (cpu_idle_loop+0x9c/0x23c) from [<8081cb64>] (0x808)
[   81.479752] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   81.493410] 9ee0: ee289f08 c0d2a1e0 c1dfc3e8 c08356e0 3b9ac9ff ee289f08 c02cc
[   81.506545] [<c08227dc>] (__schedule+0x4f8/0x764) from [<c08208f0>] (schedul)
[   81.520616] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   81.534827] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   81.548553] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   81.562120] [<c0068410>] (warn_slowpath_null+0x24/0x2c) from [<c00791c8>] (d)
[   81.576415] [<c003e608>] (tegra_cpu_kill+0x90/0x148) from [<c0015848>] (hand)
[   81.590237] [<c00792c8>] (msleep+0x1c/0x28) from [<c003e608>] (tegra_cpu_kil)
[   81.603537] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   81.618430] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   81.633274] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   81.646828] bad: scheduling from the idle thread!                            
[   81.654108] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   81.667827] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   81.682768] 9f00: 20000113 ffffffff                                          
[   81.688710] [<c05c5c38>] (cpuidle_idle_call+0x158/0x298) from [<c0010118>] ()
[   81.702795] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   81.717506] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   81.733117] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   81.747784] [<c000ed40>] (__irq_svc+0x40/0x70) from [<c003ecec>] (tegra_idle)
[   81.762401] [<c0013260>] (show_stack+0x18/0x1c) from [<c00a41bc>] (dequeue_t)
[   81.776008] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   81.790822] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   81.804363] [<c0015848>] (handle_IPI+0x15c/0x1a8) from [<c0008530>] (gic_han)
[   81.818025] [<c08208f0>] (schedule_timeout+0x130/0x238) from [<c00792c8>] (m)
[   81.831412] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   81.845077] [<c003ecec>] (tegra_idle_enter_clock_gating+0x6c/0x7c) from [<c0)
[   81.860708] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   81.875467] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   81.889092] [<c05c5a24>] (cpuidle_enter_state+0x48/0x104) from [<c05c5c38>] )
[   81.904004] Exception stack(0xee289ec0 to 0xee289f08)                        
[   81.911577] [<c0008530>] (gic_handle_irq+0x7c/0x160) from [<c000ed40>] (__ir)
[   81.925076] 9f00: 20000113 ffffffff                                          
[   81.931076] [<c0010118>] (arch_cpu_idle+0x10/0x40) from [<c00b70b4>] (cpu_id)
[   81.944726] [<c003ea78>] (tegra_idle_enter_pd+0x58/0x260) from [<c05c5a24>] )
[   81.959539] [<c0016900>] (unwind_backtrace+0x0/0x140) from [<c0013260>] (sho)
[   81.973099] Exception stack(0xee289ec0 to 0xee289f08)                        
[   81.9 TK1                                                                    
Board: NVIDIA Jetson TK1                                                        
DRAM:  2 GiB                                                                    
MMC:   sdhci@700b0400: 1, sdhci@700b0600: 0                                     
Loading Environment from MMC... *** Warning - bad CRC, using default environment
                                                                                
Failed (-5)

The Monitor Connected to TK1 kept printing the Serial Output:-

From the log, I believe the flash has worked. Previously, the board would start when I plugged in the power cord, but now I need to press the power button. However, I keep getting this output now.

Are you speaking of the desktop PC, or the Jetson? Probably the Jetson, but I need to clarify.

The basic steps appear correct, except when you flashed it again might or might not be a problem. The -S size is being used correctly, but normally one would use this in combination with a reused clone image. Skip the “-S size” unless you are working with a clone restore, at least while testing.

The flash log shows 100% success (incidentally, you can edit your own posts with the “pencil” icon in the lower right of your post, highlight the log parts, and click the “code” icon (looks like “</>”), and it’ll format correctly and add scroll bars. Makes the logs easier to read. The flash log is easy enough to read, but the boot log is difficult.

If you format the log with the “</>” code icon I might see more. It is obvious though that there are a number of errors. Typically, but not always, I would first suspect the device tree might not be correct. If this is a third party TK1, and not the NVIDIA developer’s kit, then this would account for device tree issues. I think you’re making progress, and what you’ve done so far is on track, but now we need to verify the hardware. Do you have a picture of this board? Or any URL which exactly identifies which board you have? If it differs, then so too must the device tree differ.

The black screen error occurred when attempting to install Ubuntu 18.04 on the host system. Consequently, I proceeded with version 18.04.6 on the host system. The -S size was used after the initial flash displayed the same output as the above logs. I can provide the logs for the initial flash if necessary. I don’t believe the board is a third-party product. I am also attaching an image of the board: JETSON TK1 600-7R375-0000-D00 E.

That is definitely a TK1 dev kit. NVIDIA’s software for this will work. I recommend L4T R21.8 (this is out of date, but it is the most recent released a TK1 will work with; TK1s are 32-bit, all releases after that are 64-bit):
https://developer.nvidia.com/linux-tegra
(which is what you are already using, so I will verify that you are doing this correctly)

When you say the black screen occurred when attempting to install Ubuntu on the host system, are you saying the host PC itself fails? Or just that using the host PC to flash the Jetson results in the Jetson with a black screen?

I assume it is the Jetson with the black screen. Is the monitor on the Jetson HDMI without any adapters?

The black screen issue is unrelated to Jetson; it is entirely a PC problem. When attempting to install Ubuntu 18.04 from a bootable pendrive on my PC, after selecting the option to install Ubuntu or try without installing, the screen suddenly turns black without any further progress. I attempted various workarounds, but none proved effective until I tried using the 18.04.6 version, which installed successfully on the PC. I then used this version to flash Jetson with R21.8. Additionally, there is no adapter between the cables; I am using an HDMI-to-HDMI cable.

On the PC side, was there a fresh actual install that worked, and then failed? Or was this entirely a “trying out Ubuntu” option which was not intended to permanently install Ubuntu? If things worked for some time on the PC, did the video fail on it after a purely command line flash of the Jetson? Any detail you can add about the work flow would help.

Also, if you ever ran JetPack, and not just command line, that might be important. The TK1 wasn’t really designed for JetPack, but unlike command line, JetPack can install content to the host PC. If that is the case, then knowing which GPU/video card the host PC has might matter.

Currently, Ubuntu 18.04.6 is permanently installed on my PC, was used to flash the TK1 with Tegra R21.8. The TK1 was functioning well on an older version (Before the Update , I dont know which version it was working on) until I attempted to update it via the command line. This resulted in the HDMI output not working on the Jetson. To address this, I used a Virtual Machine (VM) for flashing, but later learned about the issues associated with using VMs for this purpose.

To resolve these problems, I dual-booted my PC with Ubuntu. In the last flashing attempt using the host machine, the log provided earlier indicates the encountered issues. It’s worth mentioning that I have not used Jetpack for any flashing or other tasks. The GPU on the host machine is an NVIDIA GeForce GTX 1650.

Is it possible to get a full boot log over the serial console? You’d have to have a USB serial UART with a DB-9 connector (it’s actual RS-232). The log which you’ve shown is useful in the sense that it tells us something is going wrong with sleep and probably CPU wake, but it says nothing about what went on just before this. The entire boot log would be very helpful.

You should be able to flash it with just that first command:

sudo ./flash.sh jetson-tk1 mmcblk0p1

The one where specified an exact size with “-S” would normally only be used if you have a preexisting image, and that image is not the exact size of a default image. For basic flash it would actually be preferable if you could try flashing with just the command above.

I did not see anything in the part of the logs which did get posted to indicate GPU involvement. I’m thinking boot did not get far enough to try to start the X video server.

So, do you need the entire boot log, starting from the flash after sudo ./flash.sh jetson-tk1 mmcblk0p1 , including what’s shown on the host PC, and the output from the serial port of the Jetson? Or are you specifically interested in the serial output log after I power on the board?

The log produced from the moment the Jetson turns on is needed. It’s usually easy to see when something is wrong, but what you’re really looking for is the setup and creation of the state which leads up to the error. The entire boot log is of use.

The log produced from the moment the Jetson turns on is as follows:
Boot_log_TK1.txt (570.5 KB)

There are filesystem errors at the start.

On the host PC used for flashing, is the flash using an ext4 filesystem? If for some reason it uses a different filesystem, e.g., NTFS or VFAT, then I would expect some issues, although I would not expect the particular filesystem failure messages.

Also, from where you’ve flashed, do you still have this file?
Linux_for_Tegra/bootloader/system.img.raw

Sorry for the delay. Yes, the filesystem is indeed ext4. I still have this file: Linux_for_Tegra/bootloader/system.img.raw, which is about 15.3 GB, and a Linux_for_Tegra/bootloader/system.img file of 2.3 GB.

You would need to post the exact size of that file. Approximations won’t help in knowing if it is a valid size.

Linux_for_Tegra/bootloader/system.img.raw- 2.3GB(2,31,11,97,100)
Linux_for_Tegra/bootloader/system.img-15.3GB(15,28,82,38,080)