How to move serial8250_init out of the critical path to decrease boot time?

From: Paul Menzel
Date: Sun Apr 01 2018 - 03:11:46 EST


This is a multi-part message in MIME format. Dear Linux folks,


The goal is to boot a *distribution* Linux kernel as fast as possible. (The goal is currently 500 ms.)

With Linux 4.16-rc7, `serial8250_init()` takes almost 34 ms according to `initcall_debug` on the laptop TUXEDO Book BU1406 with an Intel Kaby Lake processor.

```
[ 2.657950] calling serial8250_init+0x0/0x168 @ 1
[ 2.657963] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 2.692598] initcall serial8250_init+0x0/0x168 returned 0 after 33820 usecs
```

One problem is, that the distributions do not build this as a module, despite more and more devices do not actually have serial connectors, but the chipset still exposes them.

What options are there?

1. Try to probe it asynchronously as in the attached patch, which is not tested yet.

2. Where possible try to deactivate this in the firmware?

3. Recommend to build this as a module? But this would only fix future systems?

4. Avoid the probe, by have an interface to pass the infomr

5. Add an option to disable the driver, which could be specified on the Linux kernel command line? `8250.disable`?


Kind regards,

Paul