diff options
| author | Asherah Connor <[email protected]> | 2021-03-19 18:21:40 +1100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-04-12 17:44:55 -0400 |
| commit | 5b0b43e0e25dbeed62a2155e7f3be562b9ceb9bd (patch) | |
| tree | 309170036a9d09d9c65087c4b490f4605777abe6 /drivers/misc/Makefile | |
| parent | 2a3f161c8b16ed4fe4bd215dddfa21f4ddbd3e37 (diff) | |
x86: qemu: move QFW to its own uclass
We move qfw into its own uclass and split the PIO functions into a
specific driver for that uclass. The PIO driver is selected in the
qemu-x86 board config (this covers x86 and x86_64).
include/qfw.h is cleaned up and documentation added.
Signed-off-by: Asherah Connor <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Tested-by: Bin Meng <[email protected]>
Diffstat (limited to 'drivers/misc/Makefile')
| -rw-r--r-- | drivers/misc/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index 1a493960074..53bff72428c 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile @@ -55,7 +55,10 @@ obj-$(CONFIG_NUVOTON_NCT6102D) += nuvoton_nct6102d.o obj-$(CONFIG_P2SB) += p2sb-uclass.o obj-$(CONFIG_PCA9551_LED) += pca9551_led.o obj-$(CONFIG_$(SPL_)PWRSEQ) += pwrseq-uclass.o -obj-$(CONFIG_QFW) += qfw.o +ifdef CONFIG_QFW +obj-y += qfw.o +obj-$(CONFIG_QFW_PIO) += qfw_pio.o +endif obj-$(CONFIG_ROCKCHIP_EFUSE) += rockchip-efuse.o obj-$(CONFIG_ROCKCHIP_OTP) += rockchip-otp.o obj-$(CONFIG_SANDBOX) += syscon_sandbox.o misc_sandbox.o |
