1 // SPDX-License-Identifier: GPL-2.0
3 * I/O delay strategies for inb_p/outb_p
5 * Allow for a DMI based override of port 0x80, needed for certain HP laptops
6 * and possibly other systems. Also allow for the gradual elimination of
7 * outb_p/inb_p API uses.
9 #include <linux/kernel.h>
10 #include <linux/export.h>
11 #include <linux/delay.h>
12 #include <linux/init.h>
13 #include <linux/dmi.h>
16 int io_delay_type __read_mostly
= CONFIG_DEFAULT_IO_DELAY_TYPE
;
18 static int __initdata io_delay_override
;
21 * Paravirt wants native_io_delay to be a constant.
23 void native_io_delay(void)
25 switch (io_delay_type
) {
27 case CONFIG_IO_DELAY_TYPE_0X80
:
28 asm volatile ("outb %al, $0x80");
30 case CONFIG_IO_DELAY_TYPE_0XED
:
31 asm volatile ("outb %al, $0xed");
33 case CONFIG_IO_DELAY_TYPE_UDELAY
:
35 * 2 usecs is an upper-bound for the outb delay but
36 * note that udelay doesn't have the bus-level
37 * side-effects that outb does, nor does udelay() have
38 * precise timings during very early bootup (the delays
39 * are shorter until calibrated):
42 case CONFIG_IO_DELAY_TYPE_NONE
:
46 EXPORT_SYMBOL(native_io_delay
);
48 static int __init
dmi_io_delay_0xed_port(const struct dmi_system_id
*id
)
50 if (io_delay_type
== CONFIG_IO_DELAY_TYPE_0X80
) {
51 pr_notice("%s: using 0xed I/O delay port\n", id
->ident
);
52 io_delay_type
= CONFIG_IO_DELAY_TYPE_0XED
;
59 * Quirk table for systems that misbehave (lock up, etc.) if port
62 static const struct dmi_system_id io_delay_0xed_port_dmi_table
[] __initconst
= {
64 .callback
= dmi_io_delay_0xed_port
,
65 .ident
= "Compaq Presario V6000",
67 DMI_MATCH(DMI_BOARD_VENDOR
, "Quanta"),
68 DMI_MATCH(DMI_BOARD_NAME
, "30B7")
72 .callback
= dmi_io_delay_0xed_port
,
73 .ident
= "HP Pavilion dv9000z",
75 DMI_MATCH(DMI_BOARD_VENDOR
, "Quanta"),
76 DMI_MATCH(DMI_BOARD_NAME
, "30B9")
80 .callback
= dmi_io_delay_0xed_port
,
81 .ident
= "HP Pavilion dv6000",
83 DMI_MATCH(DMI_BOARD_VENDOR
, "Quanta"),
84 DMI_MATCH(DMI_BOARD_NAME
, "30B8")
88 .callback
= dmi_io_delay_0xed_port
,
89 .ident
= "HP Pavilion tx1000",
91 DMI_MATCH(DMI_BOARD_VENDOR
, "Quanta"),
92 DMI_MATCH(DMI_BOARD_NAME
, "30BF")
96 .callback
= dmi_io_delay_0xed_port
,
97 .ident
= "Presario F700",
99 DMI_MATCH(DMI_BOARD_VENDOR
, "Quanta"),
100 DMI_MATCH(DMI_BOARD_NAME
, "30D3")
106 void __init
io_delay_init(void)
108 if (!io_delay_override
)
109 dmi_check_system(io_delay_0xed_port_dmi_table
);
112 static int __init
io_delay_param(char *s
)
117 if (!strcmp(s
, "0x80"))
118 io_delay_type
= CONFIG_IO_DELAY_TYPE_0X80
;
119 else if (!strcmp(s
, "0xed"))
120 io_delay_type
= CONFIG_IO_DELAY_TYPE_0XED
;
121 else if (!strcmp(s
, "udelay"))
122 io_delay_type
= CONFIG_IO_DELAY_TYPE_UDELAY
;
123 else if (!strcmp(s
, "none"))
124 io_delay_type
= CONFIG_IO_DELAY_TYPE_NONE
;
128 io_delay_override
= 1;
132 early_param("io_delay", io_delay_param
);