[Nouveau] GP10B regression

Anthony Eden aeden at csail.mit.edu
Tue Nov 21 23:38:48 UTC 2017


Tried the given patch on top of next-20171121. HDMI monitor is
connected, but I don't see any output. Here's a portion of my Xorg.log
(I installed xf86-video-nouveau-git):

[  1046.301] (II) NOUVEAU driver Date:   Tue Jun 13 09:23:42 2017 -0400
[  1046.301] (II) NOUVEAU driver for NVIDIA chipset families :
[  1046.302] (--) NOUVEAU(0): Chipset: "NVIDIA NV13B"
[  1046.302] (II) NOUVEAU(0): Creating default Display subsection in
Screen section
[  1046.302] (==) NOUVEAU(0): Depth 16, (--) framebuffer bpp 16
[  1046.302] (==) NOUVEAU(0): RGB weight 565
[  1046.302] (==) NOUVEAU(0): Default visual is TrueColor
[  1046.302] (==) NOUVEAU(0): Using HW cursor
[  1046.302] (==) NOUVEAU(0): Allowed maximum DRI level 2.
[  1046.302] (==) NOUVEAU(0): GLX sync to VBlank enabled.
[  1046.302] (==) NOUVEAU(0): Page flipping enabled
[  1046.302] (==) NOUVEAU(0): Swap limit set to 1 [Max allowed 2]
[  1046.302] (==) NOUVEAU(0): Page flipping synced to vblank by kernel.
[  1046.302] (WW) NOUVEAU(0): No outputs definitely connected, trying again...
[  1046.302] (WW) NOUVEAU(0): Unable to find connected outputs -
setting 1024x768 initial framebuffer
[  1046.302] (==) NOUVEAU(0): Using gamma correction (1.0, 1.0, 1.0)
[  1046.302] (--) NOUVEAU(0): Virtual size is 1024x768 (pitch 0)
[  1046.302] (**) NOUVEAU(0):  Mode "1024x768": 63.5 MHz (scaled from
0.0 MHz), 47.8 kHz, 59.9 Hz
[  1046.302] (II) NOUVEAU(0): Modeline "1024x768"x59.9   63.50  1024
1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
[  1046.302] (==) NOUVEAU(0): DPI set to (96, 96)
[  1046.506] (EE) NOUVEAU(0): Failed to allocate scratch buffer: -22
[  1046.506] (EE) NOUVEAU(0): Error initialising acceleration.
Falling back to NoAccel
[  1046.506] (**) NOUVEAU(0): [COPY] acceleration disabled
[  1046.708] (EE) NOUVEAU(0): Error allocating scanout buffer: 0

/etc/X11/xorg.conf.d/22-modules.conf contains:

Section "Module"
        Load "exa"
        Load "wfb"
        Load "shadowfb"
        Load "shadow"
        Load "fb"
EndSection

/etc/X11/xorg.conf.d/99-nouveau.conf contains:

Section "Device"
    Identifier "Nvidia card"
    Driver "nouveau"
EndSection

full dmesg & xorg log are attached.

Thanks,
-Anthony

On Tue, Nov 21, 2017 at 1:07 PM, Mikko Perttunen <cyndis at kapsi.fi> wrote:
> Thanks to Thierry for finding this - applying
>
> index e14643615698..00eeaaffeae5 100644
> --- a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
> +++ b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
> @@ -2369,7 +2369,7 @@ nv13b_chipset = {
>         .imem = gk20a_instmem_new,
>         .ltc = gp100_ltc_new,
>         .mc = gp10b_mc_new,
> -       .mmu = gf100_mmu_new,
> +       .mmu = gp10b_mmu_new,
>         .secboot = gp10b_secboot_new,
>         .pmu = gm20b_pmu_new,
>         .timer = gk20a_timer_new,
> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgp10b.c
> b/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgp10b.c
> index 3dcc6bddb32f..470a4fadc165 100644
> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgp10b.c
> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgp10b.c
> @@ -33,7 +33,7 @@ gp10b_vmm = {
>                 { 38, &gp100_vmm_desc_16[3], NVKM_VMM_PAGE_Sxxx },
>                 { 29, &gp100_vmm_desc_16[2], NVKM_VMM_PAGE_Sxxx },
>                 { 21, &gp100_vmm_desc_16[1], NVKM_VMM_PAGE_SxHC },
> -               { 16, &gp100_vmm_desc_16[0], NVKM_VMM_PAGE_SxHC },
> +/*             { 16, &gp100_vmm_desc_16[0], NVKM_VMM_PAGE_SxHC },*/
>                 { 12, &gp100_vmm_desc_12[0], NVKM_VMM_PAGE_SxHx },
>                 {}
>         }
>
> on top of next-20171121 works at least for a simple test.
>
> Mikko
>
> On 11/11/2017 03:02 PM, Mikko Perttunen wrote:
>>
>> Bisection status report:
>>
>> The latest commit I have gotten to work is
>>
>> 10842ba074e9 drm/nouveau: remove unused nouveau_fence_work()
>>
>> i.e. the first bad commit is
>>
>> d7722134b825 drm/nouveau: switch over to new memory and vmm interfaces
>>
>> Even with the first one some patches/hacks are needed:
>>
>> - in mmu/gp10b.c, in the constructor we need to select the GM200 path -
>> the GP100 path seems to not to work
>>
>> - as mentioned in the first mail, we need to set .mmu = gp10b_mmu_new,
>>
>> - and in nouveau_mem_memory_target we need to return NVKM_MEM_TARGET_NCOH
>> instead of NVKM_MEM_TARGET_HOST.
>>
>> Cheers,
>> Mikko
>>
>> On 11/10/2017 11:27 PM, Mikko Perttunen wrote:
>>>
>>> Hello everyone,
>>>
>>> it seems that GP10B support has regressed recently. With linux-next, I
>>> need to modify device/base.c to set
>>>
>>>      .mmu = gp10b_mmu_new
>>>
>>> for GP10B (makes sense - I guess this was left as gf100_mmu_new as a
>>> typo) to probe. After that, running a trivial testcase (running a NOP method
>>> in 3D class) fails with
>>>
>>> [  110.084649] nouveau 17000000.gpu: fifo: read fault at 0000011000
>>> engine 06 [HOST0] client 06 [GPC0/L1_2] reas|
>>> on 02 [PTE] on channel 1 [00f206a000 nouveau_noop_te[2413]]
>>> |
>>> [  110.101423] nouveau 17000000.gpu: fifo: channel 1: killed
>>> |
>>> [  110.106827] nouveau 17000000.gpu: fifo: runlist 0: scheduled for
>>> recovery                                    |
>>> Submitted pushbuffer.                                        |
>>> [  110.113867] nouveau 17000000.gpu: nouveau_noop_te[2413]: channel 1
>>> killed!                                   |
>>> [  125.084858] nouveau 17000000.gpu: nouveau_noop_te[2413]: failed to
>>> idle channel 1 [nouveau_noop_te[2413]]
>>>
>>> I haven't managed to track this down yet. However, I did find out that
>>> checking out the drm/nouveau directory at commit "drm/nouveau/kms/nv50: use
>>> the correct state for base channel notifier setup" makes things work again.
>>>
>>> I'll continue to take look, though bisecting is a bit harder than usual
>>> due to some other issues in Tegra186 recently, so any pointers in the right
>>> direction would be useful :)
>>>
>>> Thanks,
>>> Mikko
>>> _______________________________________________
>>> Nouveau mailing list
>>> Nouveau at lists.freedesktop.org
>>> https://lists.freedesktop.org/mailman/listinfo/nouveau
>>
>> _______________________________________________
>> Nouveau mailing list
>> Nouveau at lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/nouveau
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
-------------- next part --------------
[  1046.288] 
X.Org X Server 1.19.5
Release Date: 2017-10-12
[  1046.288] X Protocol Version 11, Revision 0
[  1046.288] Build Operating System: Linux 3.14.65-16-ARCH aarch64 
[  1046.288] Current Operating System: Linux hardy 4.14.0-next-20171121-ARCH-AEDEN+ #4 SMP Tue Nov 21 17:28:10 EST 2017 aarch64
[  1046.288] Kernel command line: console=ttyS0,115200n8 root=UUID=7388bb07-be26-4f1d-a11c-48675d650192 rw rootfstype=ext4 rootwait
[  1046.288] Build Date: 13 October 2017  08:07:30AM
[  1046.288]  
[  1046.288] Current version of pixman: 0.34.0
[  1046.288] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1046.288] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1046.289] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Nov 21 18:23:18 2017
[  1046.289] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  1046.289] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1046.290] (==) No Layout section.  Using the first Screen section.
[  1046.290] (==) No screen section available. Using defaults.
[  1046.290] (**) |-->Screen "Default Screen Section" (0)
[  1046.290] (**) |   |-->Monitor "<default monitor>"
[  1046.290] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[  1046.290] (**) |   |-->Device "Nvidia card"
[  1046.290] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[  1046.290] (==) Automatically adding devices
[  1046.290] (==) Automatically enabling devices
[  1046.290] (==) Automatically adding GPU devices
[  1046.290] (==) Automatically binding GPU devices
[  1046.290] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  1046.290] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[  1046.290] 	Entry deleted from font path.
[  1046.290] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  1046.290] 	Entry deleted from font path.
[  1046.290] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  1046.290] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  1046.290] 	Entry deleted from font path.
[  1046.290] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  1046.290] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/
[  1046.290] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1046.290] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  1046.290] (II) Loader magic: 0xaaaae9a04d28
[  1046.290] (II) Module ABI versions:
[  1046.290] 	X.Org ANSI C Emulation: 0.4
[  1046.290] 	X.Org Video Driver: 23.0
[  1046.291] 	X.Org XInput driver : 24.1
[  1046.291] 	X.Org Server Extension : 10.0
[  1046.291] (++) using VT number 7

[  1046.291] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[  1046.292] (II) xfree86: Adding drm device (/dev/dri/card0)
[  1046.292] (II) no primary bus or device found
[  1046.292] 	falling back to /sys/devices/platform/17000000.gpu/drm/card0
[  1046.292] (II) "glx" will be loaded by default.
[  1046.292] (II) LoadModule: "exa"
[  1046.292] (II) Loading /usr/lib/xorg/modules/libexa.so
[  1046.292] (II) Module exa: vendor="X.Org Foundation"
[  1046.293] 	compiled for 1.19.5, module version = 2.6.0
[  1046.293] 	ABI class: X.Org Video Driver, version 23.0
[  1046.293] (II) LoadModule: "wfb"
[  1046.293] (II) Loading /usr/lib/xorg/modules/libwfb.so
[  1046.293] (II) Module wfb: vendor="X.Org Foundation"
[  1046.293] 	compiled for 1.19.5, module version = 1.0.0
[  1046.293] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1046.293] (II) LoadModule: "shadowfb"
[  1046.293] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
[  1046.293] (II) Module shadowfb: vendor="X.Org Foundation"
[  1046.293] 	compiled for 1.19.5, module version = 1.0.0
[  1046.293] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1046.293] (II) LoadModule: "shadow"
[  1046.293] (II) Loading /usr/lib/xorg/modules/libshadow.so
[  1046.294] (II) Module shadow: vendor="X.Org Foundation"
[  1046.294] 	compiled for 1.19.5, module version = 1.1.0
[  1046.294] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1046.294] (II) LoadModule: "fb"
[  1046.294] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1046.294] (II) Module fb: vendor="X.Org Foundation"
[  1046.294] 	compiled for 1.19.5, module version = 1.0.0
[  1046.294] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1046.294] (II) LoadModule: "glx"
[  1046.294] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1046.300] (II) Module glx: vendor="X.Org Foundation"
[  1046.300] 	compiled for 1.19.5, module version = 1.0.0
[  1046.300] 	ABI class: X.Org Server Extension, version 10.0
[  1046.300] (II) LoadModule: "nouveau"
[  1046.300] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
[  1046.301] (II) Module nouveau: vendor="X.Org Foundation"
[  1046.301] 	compiled for 1.19.5, module version = 1.0.15
[  1046.301] 	Module class: X.Org Video Driver
[  1046.301] 	ABI class: X.Org Video Driver, version 23.0
[  1046.301] (II) NOUVEAU driver Date:   Tue Jun 13 09:23:42 2017 -0400
[  1046.301] (II) NOUVEAU driver for NVIDIA chipset families :
[  1046.301] 	RIVA TNT        (NV04)
[  1046.301] 	RIVA TNT2       (NV05)
[  1046.301] 	GeForce 256     (NV10)
[  1046.301] 	GeForce 2       (NV11, NV15)
[  1046.301] 	GeForce 4MX     (NV17, NV18)
[  1046.301] 	GeForce 3       (NV20)
[  1046.301] 	GeForce 4Ti     (NV25, NV28)
[  1046.301] 	GeForce FX      (NV3x)
[  1046.301] 	GeForce 6       (NV4x)
[  1046.301] 	GeForce 7       (G7x)
[  1046.301] 	GeForce 8       (G8x)
[  1046.301] 	GeForce GTX 200 (NVA0)
[  1046.301] 	GeForce GTX 400 (NVC0)
[  1046.301] (II) [drm] nouveau interface version: 1.3.1
[  1046.301] (II) Loading sub module "dri2"
[  1046.301] (II) LoadModule: "dri2"
[  1046.301] (II) Module "dri2" already built-in
[  1046.302] (--) NOUVEAU(0): Chipset: "NVIDIA NV13B"
[  1046.302] (II) NOUVEAU(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 16/16
[  1046.302] (==) NOUVEAU(0): Depth 16, (--) framebuffer bpp 16
[  1046.302] (==) NOUVEAU(0): RGB weight 565
[  1046.302] (==) NOUVEAU(0): Default visual is TrueColor
[  1046.302] (==) NOUVEAU(0): Using HW cursor
[  1046.302] (==) NOUVEAU(0): Allowed maximum DRI level 2.
[  1046.302] (==) NOUVEAU(0): GLX sync to VBlank enabled.
[  1046.302] (==) NOUVEAU(0): Page flipping enabled
[  1046.302] (==) NOUVEAU(0): Swap limit set to 1 [Max allowed 2]
[  1046.302] (==) NOUVEAU(0): Page flipping synced to vblank by kernel.
[  1046.302] (WW) NOUVEAU(0): No outputs definitely connected, trying again...
[  1046.302] (WW) NOUVEAU(0): Unable to find connected outputs - setting 1024x768 initial framebuffer
[  1046.302] (==) NOUVEAU(0): Using gamma correction (1.0, 1.0, 1.0)
[  1046.302] (--) NOUVEAU(0): Virtual size is 1024x768 (pitch 0)
[  1046.302] (**) NOUVEAU(0):  Mode "1024x768": 63.5 MHz (scaled from 0.0 MHz), 47.8 kHz, 59.9 Hz
[  1046.302] (II) NOUVEAU(0): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
[  1046.302] (==) NOUVEAU(0): DPI set to (96, 96)
[  1046.302] (II) Loading sub module "fb"
[  1046.302] (II) LoadModule: "fb"
[  1046.302] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1046.302] (II) Module fb: vendor="X.Org Foundation"
[  1046.302] 	compiled for 1.19.5, module version = 1.0.0
[  1046.302] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1046.302] (II) Loading sub module "shadowfb"
[  1046.302] (II) LoadModule: "shadowfb"
[  1046.302] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
[  1046.302] (II) Module shadowfb: vendor="X.Org Foundation"
[  1046.302] 	compiled for 1.19.5, module version = 1.0.0
[  1046.302] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1046.506] (EE) NOUVEAU(0): Failed to allocate scratch buffer: -22
[  1046.506] (EE) NOUVEAU(0): Error initialising acceleration.  Falling back to NoAccel
[  1046.506] (**) NOUVEAU(0): [COPY] acceleration disabled
[  1046.708] -22
[  1046.708] (EE) NOUVEAU(0): Error allocating scanout buffer: 0
[  1046.708] (EE) 
Fatal server error:
[  1046.708] (EE) AddScreen/ScreenInit failed for driver 0
[  1046.708] (EE) 
[  1046.708] (EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[  1046.708] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[  1046.708] (EE) 
[  1046.708] (EE) Server terminated with error (1). Closing log file.
-------------- next part --------------
[    0.000000] Booting Linux on physical CPU 0x0000000100 [0x411fd073]
[    0.000000] Linux version 4.14.0-next-20171121-ARCH-AEDEN+ (root at rhino) (gcc version 7.2.0 (GCC)) #4 SMP Tue Nov 21 17:28:10 EST 2017
[    0.000000] Machine model: NVIDIA Tegra186 P2771-0000 Development Board
[    0.000000] efi: Getting EFI parameters from FDT:
[    0.000000] efi: UEFI not found.
[    0.000000] cma: Reserved 64 MiB at 0x00000000f2000000
[    0.000000] On node 0 totalpages: 2056192
[    0.000000]   DMA zone: 7552 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 483328 pages, LIFO batch:31
[    0.000000]   Normal zone: 24576 pages used for memmap
[    0.000000]   Normal zone: 1572864 pages, LIFO batch:31
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] random: fast init done
[    0.000000] percpu: Embedded 24 pages/cpu @ffff8001fff46000 s59800 r8192 d30312 u98304
[    0.000000] pcpu-alloc: s59800 r8192 d30312 u98304 alloc=24*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2024064
[    0.000000] Kernel command line: console=ttyS0,115200n8 root=UUID=7388bb07-be26-4f1d-a11c-48675d650192 rw rootfstype=ext4 rootwait
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] software IO TLB [mem 0xedfff000-0xf1fff000] (64MB) mapped at [ffff80006dfff000-ffff800071ffefff]
[    0.000000] Memory: 7862676K/8224768K available (12668K kernel code, 2310K rwdata, 5500K rodata, 1472K init, 754K bss, 296556K reserved, 65536K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     modules : 0xffff000000000000 - 0xffff000008000000   (   128 MB)
[    0.000000]     vmalloc : 0xffff000008000000 - 0xffff7dffbfff0000   (129022 GB)
[    0.000000]       .text : 0xffff000008080000 - 0xffff000008ce0000   ( 12672 KB)
[    0.000000]     .rodata : 0xffff000008ce0000 - 0xffff000009250000   (  5568 KB)
[    0.000000]       .init : 0xffff000009250000 - 0xffff0000093c0000   (  1472 KB)
[    0.000000]       .data : 0xffff0000093c0000 - 0xffff000009601a00   (  2311 KB)
[    0.000000]        .bss : 0xffff000009601a00 - 0xffff0000096be508   (   755 KB)
[    0.000000]     fixed   : 0xffff7dfffe7fd000 - 0xffff7dfffec00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffff7dfffee00000 - 0xffff7dffffe00000   (    16 MB)
[    0.000000]     vmemmap : 0xffff7e0000000000 - 0xffff800000000000   (  2048 GB maximum)
[    0.000000]               0xffff7e0000000000 - 0xffff7e0008000000   (   128 MB actual)
[    0.000000]     memory  : 0xffff800000000000 - 0xffff800200000000   (  8192 MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[    0.000000] ftrace: allocating 45426 entries in 178 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] arch_timer: cp15 timer(s) running at 31.25MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    0.000003] sched_clock: 56 bits at 31MHz, resolution 32ns, wraps every 4398046511088ns
[    0.000085] Console: colour dummy device 80x25
[    0.000102] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=312500)
[    0.000110] pid_max: default: 32768 minimum: 301
[    0.000210] Security Framework initialized
[    0.000215] Yama: becoming mindful.
[    0.000298] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.000328] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.000942] ASID allocator initialised with 65536 entries
[    0.000984] Hierarchical SRCU implementation.
[    0.002373] EFI services will not be available.
[    0.002561] smp: Bringing up secondary CPUs ...
[    0.003428] Detected PIPT I-cache on CPU1
[    0.003444] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64DFR0_EL1. Boot CPU: 0x00000010305106, CPU1: 0x00000010305116
[    0.003457] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_DFR0_EL1. Boot CPU: 0x00000003010066, CPU1: 0x00000003001066
[    0.003469] CPU features: Unsupported CPU feature variation detected.
[    0.003513] CPU1: Booted secondary processor 0x0000000000 [0x4e0f0030]
[    0.004112] Detected PIPT I-cache on CPU2
[    0.004124] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64DFR0_EL1. Boot CPU: 0x00000010305106, CPU2: 0x00000010305116
[    0.004136] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_DFR0_EL1. Boot CPU: 0x00000003010066, CPU2: 0x00000003001066
[    0.004174] CPU2: Booted secondary processor 0x0000000001 [0x4e0f0030]
[    0.004619] Detected PIPT I-cache on CPU3
[    0.004648] CPU3: Booted secondary processor 0x0000000101 [0x411fd073]
[    0.004993] Detected PIPT I-cache on CPU4
[    0.005011] CPU4: Booted secondary processor 0x0000000102 [0x411fd073]
[    0.005348] Detected PIPT I-cache on CPU5
[    0.005367] CPU5: Booted secondary processor 0x0000000103 [0x411fd073]
[    0.005410] smp: Brought up 1 node, 6 CPUs
[    0.005433] SMP: Total of 6 processors activated.
[    0.005438] CPU features: detected feature: 32-bit EL0 Support
[    0.006587] CPU: All CPU(s) started at EL2
[    0.008309] devtmpfs: initialized
[    0.010017] Registered cp15_barrier emulation handler
[    0.010034] Registered setend emulation handler
[    0.010196] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.010206] futex hash table entries: 2048 (order: 6, 262144 bytes)
[    0.011009] pinctrl core: initialized pinctrl subsystem
[    0.011369] DMI not present or invalid.
[    0.011560] NET: Registered protocol family 16
[    0.012200] cpuidle: using governor ladder
[    0.012254] cpuidle: using governor menu
[    0.012520] vdso: 2 pages (1 code @ ffff000008ce6000, 1 data @ ffff0000093c5000)
[    0.012532] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.013173] DMA: preallocated 256 KiB pool for atomic allocations
[    0.013364] Serial: AMBA PL011 UART driver
[    0.016796] tegra-bpmp bpmp: firmware: c11dd04ae487c849cc552f8f702ed8
[    0.961614] random: crng init done
[    1.180403] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    1.180979] ACPI: Interpreter disabled.
[    1.181496] vgaarb: loaded
[    1.181813] SCSI subsystem initialized
[    1.181884] libata version 3.00 loaded.
[    1.181961] usbcore: registered new interface driver usbfs
[    1.181981] usbcore: registered new interface driver hub
[    1.182012] usbcore: registered new device driver usb
[    1.182200] EDAC MC: Ver: 3.0.0
[    1.182494] Advanced Linux Sound Architecture Driver Initialized.
[    1.182667] NetLabel: Initializing
[    1.182671] NetLabel:  domain hash size = 128
[    1.182675] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.182705] NetLabel:  unlabeled traffic allowed by default
[    1.182897] clocksource: Switched to clocksource arch_sys_counter
[    1.224653] VFS: Disk quotas dquot_6.6.0
[    1.224697] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.224882] pnp: PnP ACPI: disabled
[    1.229956] NET: Registered protocol family 2
[    1.230249] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    1.230459] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.230749] TCP: Hash tables configured (established 65536 bind 65536)
[    1.230826] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    1.230865] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    1.231026] NET: Registered protocol family 1
[    1.231281] RPC: Registered named UNIX socket transport module.
[    1.231286] RPC: Registered udp transport module.
[    1.231290] RPC: Registered tcp transport module.
[    1.231293] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.231300] PCI: CLS 0 bytes, default 128
[    1.231386] Unpacking initramfs...
[    3.225040] Freeing initrd memory: 63668K
[    3.225572] kvm [1]: 8-bit VMID
[    3.225577] kvm [1]: IDMAP page: 80cca000
[    3.225582] kvm [1]: HYP VA range: 800000000000:ffffffffffff
[    3.226421] kvm [1]: virtual timer IRQ4
[    3.226582] kvm [1]: Hyp mode initialized successfully
[    3.302407] Initialise system trusted keyrings
[    3.302470] workingset: timestamp_bits=46 max_order=21 bucket_order=0
[    3.304763] zbud: loaded
[    3.306163] NFS: Registering the id_resolver key type
[    3.306175] Key type id_resolver registered
[    3.306179] Key type id_legacy registered
[    3.306187] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    3.306281] SGI XFS with ACLs, security attributes, no debug enabled
[    3.965767] NET: Registered protocol family 38
[    3.965776] Key type asymmetric registered
[    3.965781] Asymmetric key parser 'x509' registered
[    3.965834] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    3.965917] io scheduler noop registered
[    3.965922] io scheduler deadline registered
[    3.966049] io scheduler cfq registered (default)
[    3.966054] io scheduler mq-deadline registered
[    3.966058] io scheduler kyber registered
[    3.966131] io scheduler bfq registered
[    3.966366] atomic64_test: passed
[    3.969464] tegra-pcie 10003000.pcie: 4x1, 1x1 configuration
[    3.969486] tegra-pcie 10003000.pcie: Failed to get supply 'dvdd-pex': -517
[    3.969808] ipmi message handler version 39.2
[    3.971885] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.972969] console [ttyS0] disabled
[    3.972988] 3100000.serial: ttyS0 at MMIO 0x3100000 (irq = 22, base_baud = 25500000) is a Tegra
[    4.830249] console [ttyS0] enabled
[    4.834044] msm_serial: driver initialized
[    4.838860] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    4.846032] libphy: Fixed MDIO Bus: probed
[    4.850583] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.857110] ehci-pci: EHCI PCI platform driver
[    4.861557] ehci-platform: EHCI generic platform driver
[    4.866824] ehci-orion: EHCI orion driver
[    4.870860] tegra-ehci: Tegra EHCI driver
[    4.874932] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    4.881100] ohci-pci: OHCI PCI platform driver
[    4.885550] ohci-platform: OHCI generic platform driver
[    4.890801] uhci_hcd: USB Universal Host Controller Interface driver
[    4.897365] usbcore: registered new interface driver uas
[    4.902681] usbcore: registered new interface driver usb-storage
[    4.908690] usbcore: registered new interface driver ums-alauda
[    4.914609] usbcore: registered new interface driver ums-cypress
[    4.920609] usbcore: registered new interface driver ums-datafab
[    4.926618] usbcore: registered new interface driver ums_eneub6250
[    4.932791] usbcore: registered new interface driver ums-freecom
[    4.938797] usbcore: registered new interface driver ums-isd200
[    4.944716] usbcore: registered new interface driver ums-jumpshot
[    4.950804] usbcore: registered new interface driver ums-karma
[    4.956643] usbcore: registered new interface driver ums-onetouch
[    4.962735] usbcore: registered new interface driver ums-realtek
[    4.968748] usbcore: registered new interface driver ums-sddr09
[    4.974669] usbcore: registered new interface driver ums-sddr55
[    4.980582] usbcore: registered new interface driver ums-usbat
[    4.986438] usbcore: registered new interface driver usbserial_generic
[    4.992966] usbserial: USB Serial support registered for generic
[    4.999441] mousedev: PS/2 mouse device common for all mice
[    5.006664] max77620 0-003c: PMIC Version OTP:0x45 and ES:0x8
[    5.016600] max77620-sd0: supplied by regulator-dummy
[    5.021799] VDD_DDR_1V1_PMIC: Bringing 1125000uV into 1100000-1100000uV
[    5.030217] max77620-sd1: supplied by regulator-dummy
[    5.036496] max77620-sd2: supplied by regulator-dummy
[    5.042747] max77620-sd3: supplied by regulator-dummy
[    5.049195] max77620-ldo0: supplied by regulator-dummy
[    5.055169] max77620-ldo1: supplied by regulator-dummy
[    5.060911] max77620-ldo2: supplied by regulator-dummy
[    5.067141] max77620-ldo3: supplied by regulator-dummy
[    5.072782] max77620-ldo4: supplied by regulator-dummy
[    5.078557] max77620-ldo5: supplied by regulator-dummy
[    5.083904] max77620-ldo6: supplied by regulator-dummy
[    5.089674] max77620-ldo7: supplied by regulator-dummy
[    5.094823] VDD_HDMI_1V05: Bringing 1000000uV into 1050000-1050000uV
[    5.102388] max77620-ldo8: supplied by regulator-dummy
[    5.107534] VDD_PEX_1V05: Bringing 1000000uV into 1050000-1050000uV
[    5.117575] device-mapper: uevent: version 1.0.3
[    5.122340] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel at redhat.com
[    5.132086] sdhci: Secure Digital Host Controller Interface driver
[    5.138260] sdhci: Copyright(c) Pierre Ossman
[    5.142759] Synopsys Designware Multimedia Card Interface Driver
[    5.149010] sdhci-pltfm: SDHCI platform and OF driver helper
[    5.154765] sdhci-tegra 3400000.sdhci: Got CD GPIO
[    5.159549] sdhci-tegra 3400000.sdhci: Got WP GPIO
[    5.181125] mmc0: Unknown controller version (4). You may experience problems.
[    5.252895] mmc0: SDHCI controller on 3440000.sdhci [3440000.sdhci] using ADMA
[    5.269132] ledtrig-cpu: registered to indicate activity on CPUs
[    5.275464] hidraw: raw HID events driver (C) Jiri Kosina
[    5.280881] usbcore: registered new interface driver usbhid
[    5.286444] usbhid: USB HID core driver
[    5.291205] drop_monitor: Initializing network drop monitor service
[    5.297551] ip_tables: (C) 2000-2006 Netfilter Core Team
[    5.302850] Initializing XFRM netlink socket
[    5.307335] NET: Registered protocol family 10
[    5.316492] Segment Routing with IPv6
[    5.320165] mip6: Mobile IPv6
[    5.323130] NET: Registered protocol family 17
[    5.327628] Key type dns_resolver registered
[    5.332166] registered taskstats version 1
[    5.336254] Loading compiled-in X.509 certificates
[    5.341071] zswap: loaded using pool lzo/zbud
[    5.345540] Key type big_key registered
[    5.351862] Key type encrypted registered
[    5.360886] VDD_1V8_AP: supplied by VDD_1V8
[    5.365693] SD_CARD_SW_PWR: supplied by VDD_3V3_SYS
[    5.370884] tegra-pcie 10003000.pcie: 4x1, 1x1 configuration
[    5.377185] tegra-pcie 10003000.pcie: probing port 0, using 4 lanes
[    5.385458] tegra-pcie 10003000.pcie: Slot present pin change, signature: 00000018
[    5.786422] tegra-pcie 10003000.pcie: link 0 down, retrying
[    6.194706] tegra-pcie 10003000.pcie: link 0 down, retrying
[    6.602984] tegra-pcie 10003000.pcie: link 0 down, retrying
[    6.610545] tegra-pcie 10003000.pcie: link 0 down, ignoring
[    6.616156] tegra-pcie 10003000.pcie: PCI host bridge to bus 0000:00
[    6.622496] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    6.628665] pci_bus 0000:00: root bus resource [mem 0x50100000-0x57ffffff]
[    6.635525] pci_bus 0000:00: root bus resource [mem 0x58000000-0x7fffffff pref]
[    6.642816] pci_bus 0000:00: root bus resource [bus 00-ff]
[    6.648613] sdhci-tegra 3400000.sdhci: Got CD GPIO
[    6.653406] sdhci-tegra 3400000.sdhci: Got WP GPIO
[    6.666457] mmc1: Unknown controller version (4). You may experience problems.
[    6.732952] mmc1: SDHCI controller on 3400000.sdhci [3400000.sdhci] using ADMA
[    6.749983] mmc2: Unknown controller version (4). You may experience problems.
[    6.757564] mmc2: Switching to 3.3V signalling voltage failed
[    6.822892] mmc2: SDHCI controller on 3460000.sdhci [3460000.sdhci] using ADMA
[    6.830308] hctosys: unable to open rtc device (rtc0)
[    6.851024] VDD_RTC: disabling
[    6.854085] VDDIO_SDMMC3_AP: disabling
[    6.858030] SD_CARD_SW_PWR: disabling
[    6.861696] ALSA device list:
[    6.864661]   No soundcards found.
[    6.870074] Freeing unused kernel memory: 1472K
[    6.949543] mmc2: new high speed MMC card at address 0001
[    6.955162] mmcblk2: mmc2:0001 032G34 29.1 GiB 
[    6.959781] mmcblk2boot0: mmc2:0001 032G34 partition 1 4.00 MiB
[    6.965778] mmcblk2boot1: mmc2:0001 032G34 partition 2 4.00 MiB
[    6.971758] mmcblk2rpmb: mmc2:0001 032G34 partition 3 4.00 MiB, chardev (240:0)
[    6.980995]  mmcblk2: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17
[    7.086140] pps_core: LinuxPPS API ver. 1 registered
[    7.091134] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti at linux.it>
[    7.101163] pca953x 1-0074: 1-0074 supply vcc not found, using dummy regulator
[    7.101786] PTP clock support registered
[    7.122226] pca953x 1-0077: 1-0077 supply vcc not found, using dummy regulator
[    7.145907] nouveau 17000000.gpu: NVIDIA GP10B (13b000a1)
[    7.151323] nouveau 17000000.gpu: imem: using DMA API
[    7.167578] [TTM] Zone  kernel: Available graphics memory: 3996676 kiB
[    7.174132] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    7.180665] [TTM] Initializing pool allocator
[    7.184093] max77620-thermal max77620-thermal: Failed to register thermal zone: -19
[    7.192693] [TTM] Initializing DMA pool allocator
[    7.197474] nouveau 17000000.gpu: DRM: VRAM: 0 MiB
[    7.202260] nouveau 17000000.gpu: DRM: GART: 536870912 MiB
[    7.209957] nouveau 17000000.gpu: DRM: failed to create ce channel, -22
[    7.217594] nouveau 17000000.gpu: DRM: MM: using CPU for buffer copies
[    7.224160] [drm] Initialized nouveau 1.3.1 20120801 for 17000000.gpu on minor 0
[    7.231729] dwc-eth-dwmac 2490000.ethernet: Cannot get CSR clock
[    7.237777] dwc-eth-dwmac 2490000.ethernet: no reset control found
[    7.257564] stmmac - user ID: 0x10, Synopsys ID: 0x41
[    7.262623] dwc-eth-dwmac 2490000.ethernet: DMA HW capability register supported
[    7.270020] dwc-eth-dwmac 2490000.ethernet: RX Checksum Offload Engine supported
[    7.277408] dwc-eth-dwmac 2490000.ethernet: TX Checksum insertion supported
[    7.284359] dwc-eth-dwmac 2490000.ethernet: Wake-Up On Lan supported
[    7.290714] dwc-eth-dwmac 2490000.ethernet: TSO supported
[    7.296103] dwc-eth-dwmac 2490000.ethernet: TSO feature enabled
[    7.302009] dwc-eth-dwmac 2490000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    7.309963] libphy: stmmac: probed
[    7.316895] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    7.576184] EXT4-fs (mmcblk2p1): mounted filesystem with ordered data mode. Opts: (null)
[    7.950634] systemd[1]: System time before build time, advancing clock.
[    7.969248] systemd[1]: systemd 235 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[    7.990311] systemd[1]: Detected architecture arm64.
[    8.023908] systemd[1]: Set hostname to <hardy>.
[    8.128639] systemd-gpt-auto-generator[302]: Failed to dissect: Input/output error
[    8.137310] systemd[296]: /usr/lib/systemd/system-generators/systemd-gpt-auto-generator failed with error code 1.
[    8.280693] systemd[1]: Created slice Virtual Machine and Container Slice.
[    8.313001] systemd[1]: Reached target Swap.
[    8.353185] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    8.403010] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    8.442920] systemd[1]: Reached target Remote File Systems.
[    8.473219] systemd[1]: Created slice User and Session Slice.
[    9.864837] systemd-journald[312]: Received request to flush runtime journal from PID 1
[    9.877745] systemd-journald[312]: File /var/log/journal/16b3c3b801d545908ec203cd7f7fd2dc/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   11.457877] Generic PHY stmmac-0:00: attached PHY driver [Generic PHY] (mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[   11.471371] dwmac4: Master AXI performs any burst length
[   11.476801] dwc-eth-dwmac 2490000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   11.485458] dwc-eth-dwmac 2490000.ethernet eth0: registered PTP clock
[   11.491999] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   11.654093] tun: Universal TUN/TAP device driver, 1.6
[   11.671699] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   11.697326] IPv6: ADDRCONF(NETDEV_UP): br0: link is not ready
[   11.705830] br0: port 1(tap0) entered blocking state
[   11.710792] br0: port 1(tap0) entered disabled state
[   11.715940] device tap0 entered promiscuous mode
[   11.775127] stmmac_ethtool_get_link_ksettings: eth0: PHY is not registered
[   11.781995] br0: port 2(eth0) entered blocking state
[   11.786963] br0: port 2(eth0) entered disabled state
[   11.792001] device eth0 entered promiscuous mode
[   11.797936] br0: port 1(tap0) entered blocking state
[   11.802903] br0: port 1(tap0) entered forwarding state
[   11.802944] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[   11.864006] Generic PHY stmmac-0:00: attached PHY driver [Generic PHY] (mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[   11.876562] dwmac4: Master AXI performs any burst length
[   11.885195] dwc-eth-dwmac 2490000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   11.894231] dwc-eth-dwmac 2490000.ethernet eth0: registered PTP clock
[   12.408593] IPv6: ADDRCONF(NETDEV_UP): vb-hanzo: link is not ready
[   12.414793] br0: port 3(vb-hanzo) entered blocking state
[   12.420092] br0: port 3(vb-hanzo) entered disabled state
[   12.425512] device vb-hanzo entered promiscuous mode
[   12.430517] br0: port 3(vb-hanzo) entered blocking state
[   12.435830] br0: port 3(vb-hanzo) entered forwarding state
[   12.442855] IPv6: ADDRCONF(NETDEV_UP): vb-morse: link is not ready
[   12.449077] br0: port 4(vb-morse) entered blocking state
[   12.454404] br0: port 4(vb-morse) entered disabled state
[   12.459872] device vb-morse entered promiscuous mode
[   12.467662] br0: port 4(vb-morse) entered blocking state
[   12.475627] br0: port 4(vb-morse) entered forwarding state
[   12.552945] br0: port 1(tap0) entered disabled state
[   12.558034] br0: port 3(vb-hanzo) entered disabled state
[   12.563576] br0: port 4(vb-morse) entered disabled state
[   13.472606] IPv6: ADDRCONF(NETDEV_UP): host0: link is not ready
[   13.478569] IPv6: ADDRCONF(NETDEV_CHANGE): host0: link becomes ready
[   13.484973] IPv6: ADDRCONF(NETDEV_CHANGE): vb-morse: link becomes ready
[   13.491624] br0: port 4(vb-morse) entered blocking state
[   13.496939] br0: port 4(vb-morse) entered forwarding state
[   13.503918] IPv6: ADDRCONF(NETDEV_UP): host0: link is not ready
[   13.509868] IPv6: ADDRCONF(NETDEV_CHANGE): host0: link becomes ready
[   13.516300] IPv6: ADDRCONF(NETDEV_CHANGE): vb-hanzo: link becomes ready
[   13.522957] br0: port 3(vb-hanzo) entered blocking state
[   13.528258] br0: port 3(vb-hanzo) entered forwarding state
[   16.073708] dwc-eth-dwmac 2490000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[   16.082240] br0: port 2(eth0) entered blocking state
[   16.087210] br0: port 2(eth0) entered forwarding state
[ 1043.241391] WARNING: CPU: 4 PID: 23150 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1043.252152] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1043.277069] CPU: 4 PID: 23150 Comm: Xorg Tainted: G S               4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1043.286439] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1043.293470] task: ffff8001ea325100 task.stack: ffff00000aba0000
[ 1043.299374] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1043.304329] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1043.309527] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1043.314478] sp : ffff00000aba3b40
[ 1043.317780] x29: ffff00000aba3b60 x28: ffff8001e9886518 
[ 1043.323078] x27: 0000000000000000 x26: ffff8001f1d41400 
[ 1043.328375] x25: 0000000000020000 x24: 0000000000000004 
[ 1043.333673] x23: 0000000000020000 x22: 0000000000000000 
[ 1043.338971] x21: 0000000000000000 x20: 0000000000000000 
[ 1043.344267] x19: ffff8001f4995800 x18: 0000000000000080 
[ 1043.349564] x17: 0000ffff997ddb40 x16: ffff00000829b108 
[ 1043.354861] x15: 0000000000000001 x14: 000000000000002f 
[ 1043.360157] x13: 0000000000000000 x12: 0000ffff99d56030 
[ 1043.365455] x11: 0000ffff998b9098 x10: ffff8001f5627700 
[ 1043.370753] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1043.376050] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1043.381346] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1043.386644] x3 : 0000000000000004 x2 : 0000000000000075 
[ 1043.391940] x1 : 0000000000000005 x0 : ffff8001f562770a 
[ 1043.397239] Call trace:
[ 1043.399834]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1043.404679]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1043.409521]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1043.414701]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1043.419090]  drm_ioctl+0x180/0x3e0 [drm]
[ 1043.423172]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1043.427952]  do_vfs_ioctl+0xb0/0x730
[ 1043.431516]  SyS_ioctl+0x8c/0xa8
[ 1043.434735]  el0_svc_naked+0x20/0x24
[ 1043.438298] ---[ end trace 3375725bbdec4a11 ]---
[ 1043.443257] WARNING: CPU: 4 PID: 23150 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1043.454017] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1043.478934] CPU: 4 PID: 23150 Comm: Xorg Tainted: G S      W        4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1043.488303] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1043.495333] task: ffff8001ea325100 task.stack: ffff00000aba0000
[ 1043.501237] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1043.506182] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1043.511373] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1043.516323] sp : ffff00000aba3b40
[ 1043.519625] x29: ffff00000aba3b60 x28: ffff8001e9886518 
[ 1043.524923] x27: 0000000000000008 x26: ffff8001f1d41400 
[ 1043.530223] x25: 0000000000180000 x24: 0000000000000004 
[ 1043.535521] x23: 0000000000000000 x22: 0000000000000000 
[ 1043.540818] x21: 0000000000000000 x20: 0000000000000000 
[ 1043.546115] x19: ffff8001f4990000 x18: 0000000000000080 
[ 1043.551411] x17: 0000ffff997c2508 x16: ffff00000829b108 
[ 1043.556708] x15: 0000337dcfc2da99 x14: 0000000000000000 
[ 1043.562006] x13: 0000000000000000 x12: 0000ffff99d56030 
[ 1043.567303] x11: 0000ffff998b9098 x10: ffff8001f5627700 
[ 1043.572600] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1043.577897] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1043.583195] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1043.588492] x3 : 0000000000000004 x2 : 0000000000000075 
[ 1043.593790] x1 : 0000000000000005 x0 : ffff8001f562770a 
[ 1043.599087] Call trace:
[ 1043.601679]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1043.606521]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1043.611366]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1043.616549]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1043.620936]  drm_ioctl+0x180/0x3e0 [drm]
[ 1043.625010]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1043.629788]  do_vfs_ioctl+0xb0/0x730
[ 1043.633351]  SyS_ioctl+0x8c/0xa8
[ 1043.636569]  el0_svc_naked+0x20/0x24
[ 1043.640131] ---[ end trace 3375725bbdec4a12 ]---
[ 1044.057301] WARNING: CPU: 0 PID: 23158 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1044.068062] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1044.092981] CPU: 0 PID: 23158 Comm: Xorg Tainted: G S      W        4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1044.102351] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1044.109382] task: ffff8001ea322880 task.stack: ffff00000ac90000
[ 1044.115287] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1044.120233] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1044.125431] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1044.130379] sp : ffff00000ac93b40
[ 1044.133682] x29: ffff00000ac93b60 x28: ffff8001e9886518 
[ 1044.138981] x27: 0000000000000000 x26: ffff8001e931c000 
[ 1044.144278] x25: 0000000000020000 x24: 0000000000000004 
[ 1044.149575] x23: 0000000000020000 x22: 0000000000000000 
[ 1044.154872] x21: 0000000000000000 x20: 0000000000000000 
[ 1044.160170] x19: ffff8001ef855800 x18: 0000000000000080 
[ 1044.165469] x17: 0000ffffa2704b40 x16: ffff00000829b108 
[ 1044.170767] x15: 0000000000000001 x14: 000000000000002f 
[ 1044.176064] x13: 0000000000000000 x12: 0000ffffa2c7d030 
[ 1044.181363] x11: 0000ffffa27e0098 x10: ffff8001f3b9e200 
[ 1044.186660] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1044.191957] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1044.197254] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1044.202553] x3 : 0000000000000004 x2 : 00000000000000e5 
[ 1044.207851] x1 : 0000000000000005 x0 : ffff8001f3b9e20a 
[ 1044.213149] Call trace:
[ 1044.215743]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1044.220587]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1044.225431]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1044.230613]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1044.235003]  drm_ioctl+0x180/0x3e0 [drm]
[ 1044.239085]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1044.243869]  do_vfs_ioctl+0xb0/0x730
[ 1044.247433]  SyS_ioctl+0x8c/0xa8
[ 1044.250653]  el0_svc_naked+0x20/0x24
[ 1044.254218] ---[ end trace 3375725bbdec4a13 ]---
[ 1044.259322] WARNING: CPU: 0 PID: 23158 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1044.270080] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1044.294996] CPU: 0 PID: 23158 Comm: Xorg Tainted: G S      W        4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1044.304365] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1044.311395] task: ffff8001ea322880 task.stack: ffff00000ac90000
[ 1044.317298] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1044.322249] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1044.327447] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1044.332396] sp : ffff00000ac93b40
[ 1044.335698] x29: ffff00000ac93b60 x28: ffff8001e9886518 
[ 1044.340996] x27: 0000000000000008 x26: ffff8001e931c000 
[ 1044.346295] x25: 0000000000180000 x24: 0000000000000004 
[ 1044.351593] x23: 0000000000000000 x22: 0000000000000000 
[ 1044.356890] x21: 0000000000000000 x20: 0000000000000000 
[ 1044.362187] x19: ffff8001ef855000 x18: 0000000000000080 
[ 1044.367485] x17: 0000ffffa26e9508 x16: ffff00000829b108 
[ 1044.372782] x15: 000061b85f85d988 x14: 0000000000000000 
[ 1044.378079] x13: 0000000000000000 x12: 0000ffffa2c7d030 
[ 1044.383377] x11: 0000ffffa27e0098 x10: ffff8001f3b9e200 
[ 1044.388674] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1044.393971] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1044.399269] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1044.404566] x3 : 0000000000000004 x2 : 00000000000000e5 
[ 1044.409863] x1 : 0000000000000005 x0 : ffff8001f3b9e20a 
[ 1044.415161] Call trace:
[ 1044.417755]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1044.422597]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1044.427439]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1044.432629]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1044.437019]  drm_ioctl+0x180/0x3e0 [drm]
[ 1044.441096]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1044.445877]  do_vfs_ioctl+0xb0/0x730
[ 1044.449440]  SyS_ioctl+0x8c/0xa8
[ 1044.452659]  el0_svc_naked+0x20/0x24
[ 1044.456222] ---[ end trace 3375725bbdec4a14 ]---
[ 1044.807102] WARNING: CPU: 3 PID: 23164 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1044.817862] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1044.842781] CPU: 3 PID: 23164 Comm: Xorg Tainted: G S      W        4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1044.852151] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1044.859181] task: ffff8001ea321b00 task.stack: ffff00000acc0000
[ 1044.865084] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1044.870030] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1044.875227] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1044.880176] sp : ffff00000acc3b40
[ 1044.883479] x29: ffff00000acc3b60 x28: ffff8001e9886518 
[ 1044.888777] x27: 0000000000000000 x26: ffff8001e876b000 
[ 1044.894075] x25: 0000000000020000 x24: 0000000000000004 
[ 1044.899373] x23: 0000000000020000 x22: 0000000000000000 
[ 1044.904669] x21: 0000000000000000 x20: 0000000000000000 
[ 1044.909966] x19: ffff8001f5617800 x18: 0000000000000080 
[ 1044.915263] x17: 0000ffff8b078b40 x16: ffff00000829b108 
[ 1044.920560] x15: 0000000000000001 x14: 000000000000002f 
[ 1044.925858] x13: 0000000000000000 x12: 0000ffff8b5f1030 
[ 1044.931156] x11: 0000ffff8b154098 x10: ffff8001e8411b00 
[ 1044.936454] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1044.941752] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1044.947050] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1044.952348] x3 : 0000000000000004 x2 : 0000000000000055 
[ 1044.957645] x1 : 0000000000000005 x0 : ffff8001e8411b0a 
[ 1044.962945] Call trace:
[ 1044.965555]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1044.970409]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1044.975259]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1044.980438]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1044.984828]  drm_ioctl+0x180/0x3e0 [drm]
[ 1044.988909]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1044.993691]  do_vfs_ioctl+0xb0/0x730
[ 1044.997254]  SyS_ioctl+0x8c/0xa8
[ 1045.000474]  el0_svc_naked+0x20/0x24
[ 1045.004037] ---[ end trace 3375725bbdec4a15 ]---
[ 1045.009000] WARNING: CPU: 3 PID: 23164 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1045.019763] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1045.044679] CPU: 3 PID: 23164 Comm: Xorg Tainted: G S      W        4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1045.054049] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1045.061080] task: ffff8001ea321b00 task.stack: ffff00000acc0000
[ 1045.066984] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1045.071935] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1045.077132] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1045.082082] sp : ffff00000acc3b40
[ 1045.085383] x29: ffff00000acc3b60 x28: ffff8001e9886518 
[ 1045.090682] x27: 0000000000000008 x26: ffff8001e876b000 
[ 1045.095979] x25: 0000000000180000 x24: 0000000000000004 
[ 1045.101277] x23: 0000000000000000 x22: 0000000000000000 
[ 1045.106574] x21: 0000000000000000 x20: 0000000000000000 
[ 1045.111871] x19: ffff8001f5613800 x18: 0000000000000080 
[ 1045.117168] x17: 0000ffff8b05d508 x16: ffff00000829b108 
[ 1045.122464] x15: 00005f4c9f88e038 x14: 0000000000000000 
[ 1045.127761] x13: 0000000000000000 x12: 0000ffff8b5f1030 
[ 1045.133058] x11: 0000ffff8b154098 x10: ffff8001e8411b00 
[ 1045.138355] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1045.143653] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1045.148951] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1045.154248] x3 : 0000000000000004 x2 : 0000000000000055 
[ 1045.159545] x1 : 0000000000000005 x0 : ffff8001e8411b0a 
[ 1045.164843] Call trace:
[ 1045.167446]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1045.172294]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1045.177146]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1045.182336]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1045.186725]  drm_ioctl+0x180/0x3e0 [drm]
[ 1045.190802]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1045.195582]  do_vfs_ioctl+0xb0/0x730
[ 1045.199146]  SyS_ioctl+0x8c/0xa8
[ 1045.202364]  el0_svc_naked+0x20/0x24
[ 1045.205927] ---[ end trace 3375725bbdec4a16 ]---
[ 1045.558174] WARNING: CPU: 4 PID: 23171 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1045.568936] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1045.593854] CPU: 4 PID: 23171 Comm: Xorg Tainted: G S      W        4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1045.603224] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1045.610255] task: ffff8001ea326c00 task.stack: ffff00000acf0000
[ 1045.616160] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1045.621109] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1045.626305] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1045.631255] sp : ffff00000acf3b40
[ 1045.634557] x29: ffff00000acf3b60 x28: ffff8001e9886518 
[ 1045.639856] x27: 0000000000000000 x26: ffff8001f1aec000 
[ 1045.645154] x25: 0000000000020000 x24: 0000000000000004 
[ 1045.650452] x23: 0000000000020000 x22: 0000000000000000 
[ 1045.655749] x21: 0000000000000000 x20: 0000000000000000 
[ 1045.661046] x19: ffff8001f2bab000 x18: 0000000000000080 
[ 1045.666344] x17: 0000ffff991d5b40 x16: ffff00000829b108 
[ 1045.671641] x15: 0000000000000001 x14: 000000000000002f 
[ 1045.676938] x13: 0000000000000000 x12: 0000ffff9974e030 
[ 1045.682237] x11: 0000ffff992b1098 x10: ffff8001eeeedd00 
[ 1045.687534] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1045.692832] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1045.698130] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1045.703426] x3 : 0000000000000004 x2 : 0000000000000005 
[ 1045.708724] x1 : 0000000000000005 x0 : ffff8001eeeedd0a 
[ 1045.714023] Call trace:
[ 1045.716617]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1045.721460]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1045.726304]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1045.731482]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1045.735876]  drm_ioctl+0x180/0x3e0 [drm]
[ 1045.739966]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1045.744747]  do_vfs_ioctl+0xb0/0x730
[ 1045.748311]  SyS_ioctl+0x8c/0xa8
[ 1045.751532]  el0_svc_naked+0x20/0x24
[ 1045.755095] ---[ end trace 3375725bbdec4a17 ]---
[ 1045.760053] WARNING: CPU: 4 PID: 23171 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1045.770811] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1045.795726] CPU: 4 PID: 23171 Comm: Xorg Tainted: G S      W        4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1045.805094] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1045.812124] task: ffff8001ea326c00 task.stack: ffff00000acf0000
[ 1045.818028] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1045.822977] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1045.828176] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1045.833125] sp : ffff00000acf3b40
[ 1045.836428] x29: ffff00000acf3b60 x28: ffff8001e9886518 
[ 1045.841725] x27: 0000000000000008 x26: ffff8001f1aec000 
[ 1045.847022] x25: 0000000000180000 x24: 0000000000000004 
[ 1045.852320] x23: 0000000000000000 x22: 0000000000000000 
[ 1045.857617] x21: 0000000000000000 x20: 0000000000000000 
[ 1045.862914] x19: ffff8001f2bae000 x18: 0000000000000080 
[ 1045.868210] x17: 0000ffff991ba508 x16: ffff00000829b108 
[ 1045.873508] x15: 00001b07afdfe6df x14: 0000000000000000 
[ 1045.878806] x13: 0000000000000000 x12: 0000ffff9974e030 
[ 1045.884103] x11: 0000ffff992b1098 x10: ffff8001eeeedd00 
[ 1045.889401] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1045.894699] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1045.899995] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1045.905293] x3 : 0000000000000004 x2 : 0000000000000005 
[ 1045.910591] x1 : 0000000000000005 x0 : ffff8001eeeedd0a 
[ 1045.915888] Call trace:
[ 1045.918481]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1045.923324]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1045.928166]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1045.933356]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1045.937745]  drm_ioctl+0x180/0x3e0 [drm]
[ 1045.941820]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1045.946599]  do_vfs_ioctl+0xb0/0x730
[ 1045.950161]  SyS_ioctl+0x8c/0xa8
[ 1045.953379]  el0_svc_naked+0x20/0x24
[ 1045.956942] ---[ end trace 3375725bbdec4a18 ]---
[ 1046.307574] WARNING: CPU: 4 PID: 23177 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1046.318335] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1046.343254] CPU: 4 PID: 23177 Comm: Xorg Tainted: G S      W        4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1046.352625] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1046.359655] task: ffff8001ea320000 task.stack: ffff00000ad20000
[ 1046.365561] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1046.370517] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1046.375717] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1046.380667] sp : ffff00000ad23b40
[ 1046.383969] x29: ffff00000ad23b60 x28: ffff8001e9886518 
[ 1046.389268] x27: 0000000000000000 x26: ffff8001f1aee400 
[ 1046.394565] x25: 0000000000020000 x24: 0000000000000004 
[ 1046.399863] x23: 0000000000020000 x22: 0000000000000000 
[ 1046.405161] x21: 0000000000000000 x20: 0000000000000000 
[ 1046.410457] x19: ffff8001f4996800 x18: 0000000000000080 
[ 1046.415755] x17: 0000ffff86e55b40 x16: ffff00000829b108 
[ 1046.421053] x15: 0000000000000001 x14: 000000000000002f 
[ 1046.426350] x13: 0000000000000000 x12: 0000ffff873ce030 
[ 1046.431648] x11: 0000ffff86f31098 x10: ffff8001f5799480 
[ 1046.436947] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1046.442245] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1046.447543] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1046.452840] x3 : 0000000000000004 x2 : 0000000000000095 
[ 1046.458137] x1 : 0000000000000005 x0 : ffff8001f579948a 
[ 1046.463436] Call trace:
[ 1046.466031]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1046.470875]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1046.475718]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1046.480899]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1046.485288]  drm_ioctl+0x180/0x3e0 [drm]
[ 1046.489369]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1046.494150]  do_vfs_ioctl+0xb0/0x730
[ 1046.497714]  SyS_ioctl+0x8c/0xa8
[ 1046.500935]  el0_svc_naked+0x20/0x24
[ 1046.504497] ---[ end trace 3375725bbdec4a19 ]---
[ 1046.509461] WARNING: CPU: 4 PID: 23177 at drivers/gpu/drm/nouveau/nouveau_bo.c:280 nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1046.520220] Modules linked in: veth bridge stp llc tun ina3221 gpio_keys max77620_thermal max77620_wdt tegra_bpmp_thermal dwmac_dwc_qos_eth stmmac_platform stmmac ptp nouveau i2c_algo_bit ttm i2c_tegra drm_kms_helper pps_core drm syscopyarea sysfillrect sysimgblt fb_sys_fops host1x
[ 1046.545137] CPU: 4 PID: 23177 Comm: Xorg Tainted: G S      W        4.14.0-next-20171121-ARCH-AEDEN+ #4
[ 1046.554507] Hardware name: NVIDIA Tegra186 P2771-0000 Development Board (DT)
[ 1046.561537] task: ffff8001ea320000 task.stack: ffff00000ad20000
[ 1046.567440] pstate: 60000005 (nZCv daif -PAN -UAO)
[ 1046.572402] pc : nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1046.577610] lr : nouveau_bo_new+0x78/0x4d0 [nouveau]
[ 1046.582560] sp : ffff00000ad23b40
[ 1046.585862] x29: ffff00000ad23b60 x28: ffff8001e9886518 
[ 1046.591161] x27: 0000000000000008 x26: ffff8001f1aee400 
[ 1046.596458] x25: 0000000000180000 x24: 0000000000000004 
[ 1046.601756] x23: 0000000000000000 x22: 0000000000000000 
[ 1046.607053] x21: 0000000000000000 x20: 0000000000000000 
[ 1046.612350] x19: ffff8001f4997000 x18: 0000000000000080 
[ 1046.617646] x17: 0000ffff86e3a508 x16: ffff00000829b108 
[ 1046.622943] x15: 0000168d9fe537d2 x14: 0000000000000000 
[ 1046.628240] x13: 0000000000000000 x12: 0000ffff873ce030 
[ 1046.633537] x11: 0000ffff86f31098 x10: ffff8001f5799480 
[ 1046.638834] x9 : 0000000000000004 x8 : 0000000000000001 
[ 1046.644131] x7 : 0000000000000005 x6 : 000000000000000a 
[ 1046.649427] x5 : 0000000000000000 x4 : 00000000ffffffff 
[ 1046.654724] x3 : 0000000000000004 x2 : 0000000000000095 
[ 1046.660022] x1 : 0000000000000005 x0 : ffff8001f579948a 
[ 1046.665319] Call trace:
[ 1046.667921]  nouveau_bo_new+0x450/0x4d0 [nouveau]
[ 1046.672766]  nouveau_gem_new+0xa4/0x148 [nouveau]
[ 1046.677609]  nouveau_gem_ioctl_new+0x48/0xd8 [nouveau]
[ 1046.682797]  drm_ioctl_kernel+0x70/0xd8 [drm]
[ 1046.687185]  drm_ioctl+0x180/0x3e0 [drm]
[ 1046.691263]  nouveau_drm_ioctl+0x6c/0xc8 [nouveau]
[ 1046.696042]  do_vfs_ioctl+0xb0/0x730
[ 1046.699606]  SyS_ioctl+0x8c/0xa8
[ 1046.702825]  el0_svc_naked+0x20/0x24
[ 1046.706388] ---[ end trace 3375725bbdec4a1a ]---


More information about the Nouveau mailing list