History log of /openbsd/sys/dev/pci/com_pci.c (Results 1 – 4 of 4)
Revision Date Author Comments
# 0f9891f1 24-May-2024 jsg <jsg@openbsd.org>

remove unneeded includes; ok miod@


# ffccd32b 11-Sep-2023 mvs <mvs@openbsd.org>

Remove unnecessary <sys/selinfo.h> includes.

ok jsg


# 471aeecf 06-Apr-2022 naddy <naddy@openbsd.org>

constify struct cfattach


# 6dedc15d 06-Mar-2020 patrick <patrick@openbsd.org>

Add a PCI attachment driver for com(4). Intel has been removing legacy
I/O-Ports on recent machines. Instead the UARTs are memory mapped PCI-
devices, as part of a so-called Low Power Subsystem (LP

Add a PCI attachment driver for com(4). Intel has been removing legacy
I/O-Ports on recent machines. Instead the UARTs are memory mapped PCI-
devices, as part of a so-called Low Power Subsystem (LPSS).

Such an LPSS is also used for I2C and SPI, though they use different PCI
device ids. Each LPSS contains the actual device, and some registers to
control clocks, resets, etc. These private registers need to be saved
and restored upon suspend/resume. Also we should read the current clock
settings to calculate the frequency supplied to the device.

The UART controller itself is based on Synopsys DesignWare IP, like
we're used to from various ARM-based machines

ok kettenis@

show more ...