<div dir="ltr"><div><br></div><div>I'm pretty sure udlkms handles this already.</div><div><br></div><div>Dave.<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 1, 2018 at 11:34 PM, Mikulas Patocka <span dir="ltr"><<a href="mailto:mpatocka@redhat.com" target="_blank">mpatocka@redhat.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5"><br>
<br>
On Wed, 1 Aug 2018, Geert Uytterhoeven wrote:<br>
<br>
> Hi Mikulas,<br>
> <br>
> On Wed, Aug 1, 2018 at 12:59 PM Mikulas Patocka <<a href="mailto:mpatocka@redhat.com">mpatocka@redhat.com</a>> wrote:<br>
> > On Wed, 1 Aug 2018, Geert Uytterhoeven wrote:<br>
> > > On Tue, Jul 31, 2018 at 5:23 PM Mikulas Patocka <<a href="mailto:mpatocka@redhat.com">mpatocka@redhat.com</a>> wrote:<br>
> > > > BTW when using the udlfb driver as a console, I've got this warning.<br>
> > > > vt_console_print takes a spinlock and then calls the framebuffer driver<br>
> > > > that sleeps.<br>
> > > ><br>
> > > > The question is - whose fault is this? Could the console code somehow be<br>
> > > > told to print characters without holding a spinlock? Or does it mean that<br>
> > > > framebuffer drivers can't sleep?<br>
> > > ><br>
> > > > udlfb communicates through USB, so the sleeping is inevitable.<br>
> > > ><br>
> > > > Mikulas<br>
> > > ><br>
> > > ><br>
> > > > BUG: sleeping function called from invalid context at mm/slab.h:421<br>
> > > > in_atomic(): 1, irqs_disabled(): 0, pid: 430, name: kworker/2:3<br>
> > > > 6 locks held by kworker/2:3/430:<br>
> > > >  #0: 000000001301127e ( (wq_completion)"events"){....} , at: process_one_work+0x17c/0x3a8<br>
> > > >  #1: 00000000beacc951 ( (work_completion)(&(&dlfb-><wbr>init_framebuffer_work)->work))<wbr>{....} , at: process_one_work+0x17c/0x3a8<br>
> > > >  #2: 00000000a402f826 ( registration_lock){....} , at: register_framebuffer+0x28/<wbr>0x2c0 [fb]<br>
> > > >  #3: 0000000021cbe902 ( console_lock){....} , at: register_framebuffer+0x258/<wbr>0x2c0 [fb]<br>
> > > >  #4: 0000000096d51735 ( console_owner){....} , at: console_unlock+0x174/0x500<br>
> > > >  #5: 00000000faa7f206 ( printing_lock){....} , at: vt_console_print+0x60/0x3a0<br>
> > > > Preemption disabled at: [<ffffff8008403130>] vt_console_print+0x60/0x3a0<br>
> > > > CPU: 2 PID: 430 Comm: kworker/2:3 Not tainted 4.17.10-debug #3<br>
> > > > Hardware name: Marvell Armada 8040 MacchiatoBin/Armada 8040 MacchiatoBin, BIOS EDK II Jul 30 2018<br>
> > > > Workqueue: events dlfb_init_framebuffer_work [udlfb]<br>
> > > > Call trace:<br>
> > > >  dump_backtrace+0x0/0x150<br>
> > > >  show_stack+0x14/0x20<br>
> > > >  dump_stack+0x8c/0xac<br>
> > > >  ___might_sleep+0x140/0x170<br>
> > > >  __might_sleep+0x50/0x88<br>
> > > >  __kmalloc+0x1b0/0x270<br>
> > > >  xhci_urb_enqueue+0xa8/0x460 [xhci_hcd]<br>
> > > >  usb_hcd_submit_urb+0xc0/0x998 [usbcore]<br>
> > > >  usb_submit_urb+0x1e0/0x518 [usbcore]<br>
> > > >  dlfb_submit_urb+0x38/0x98 [udlfb]<br>
> > > >  dlfb_handle_damage.isra.4+<wbr>0x1e0/0x210 [udlfb]<br>
> > > >  dlfb_ops_imageblit+0x28/0x38 [udlfb]<br>
> > > >  soft_cursor+0x15c/0x1d8 [fb]<br>
> > > >  bit_cursor+0x324/0x510 [fb]<br>
> > > >  fbcon_cursor+0x144/0x1a0 [fb]<br>
> > > >  hide_cursor+0x38/0xa0<br>
> > > >  vt_console_print+0x334/0x3a0<br>
> > > >  console_unlock+0x274/0x500<br>
> > > >  register_framebuffer+0x22c/<wbr>0x2c0 [fb]<br>
> > > >  dlfb_init_framebuffer_work+<wbr>0x1ec/0x2fc [udlfb]<br>
> > > >  process_one_work+0x1e8/0x3a8<br>
> > > >  worker_thread+0x44/0x418<br>
> > > >  kthread+0x11c/0x120<br>
> > > >  ret_from_fork+0x10/0x18<br>
> > ><br>
> > > This is sort of expected: you cannot do USB transfers from printk().<br>
> > ><br>
> > > Gr{oetje,eeting}s,<br>
> > ><br>
> > >                         Geert<br>
> ><br>
> > So, should there be a framebuffer flag that prevents the console from<br>
> > binding to it?<br>
> ><br>
> > If I start the kernel with "console=ttyS0,115200", it doesn't try to bind<br>
> > to the udlfb driver, but if I start it without this flag, it does and<br>
> > crashes :-(<br>
> <br>
> Your frame buffer driver should offload tasks that may sleep to e.g. a<br>
> workqueue.<br>
> <br>
> Gr{oetje,eeting}s,<br>
> <br>
>                         Geert<br>
<br>
</div></div>I can try to do this - but - taking a spinlock and copying 8MB framebuffer <br>
would damage scheduling latency even for PCI framebuffer drivers.<br>
<span class="HOEnZb"><font color="#888888"><br>
Mikulas<br>
</font></span></blockquote></div><br></div>