d429c1a842
This SuperIO chip is used on the Intel DQ45EK mainboard. Restore the
driver that was deleted in commit d3a1a4171e
("src/superio: Remove
unused superio chips"). Changes from the previous version include:
- Replacing the early serial implementation with Winbond common code,
- Replacing the license boilerplate with SPDX headers, and
- Removing unnecessary header file references.
Change-Id: I0ff1a63c47d5dff2599c83a1cebe1ac5ff2136b1
Signed-off-by: Samuel Holland <samuel@sholland.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/44695
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
14 lines
419 B
Makefile
14 lines
419 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
## include generic winbond pre-ram stage driver
|
|
bootblock-$(CONFIG_SUPERIO_WINBOND_COMMON_PRE_RAM) += common/early_init.c
|
|
romstage-$(CONFIG_SUPERIO_WINBOND_COMMON_PRE_RAM) += common/early_init.c
|
|
|
|
subdirs-y += w83627dhg
|
|
subdirs-y += w83627ehg
|
|
subdirs-y += w83627hf
|
|
subdirs-y += w83627thg
|
|
subdirs-y += w83627uhg
|
|
subdirs-y += w83667hg-a
|
|
subdirs-y += w83977tf
|
|
subdirs-y += wpcd376i
|