mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 15:31:22 +01:00

For driver subsystems that are not tightly integrated into the OpenSBI init sequence, it is not important that the drivers are initialized in any particular order. By putting all of these drivers in one array, they can all be initialized with a single pass through the devicetree. This saves about 10 ms of boot time on HiFive Unmatched. Signed-off-by: Samuel Holland <samuel.holland@sifive.com> Reviewed-by: Anup Patel <anup@brainfault.org>
14 lines
426 B
Makefile
14 lines
426 B
Makefile
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright (C) 2020 Bin Meng <bmeng.cn@gmail.com>
|
|
#
|
|
|
|
libsbiutils-objs-$(CONFIG_FDT) += fdt/fdt_early_drivers.carray.o
|
|
|
|
libsbiutils-objs-$(CONFIG_FDT_DOMAIN) += fdt/fdt_domain.o
|
|
libsbiutils-objs-$(CONFIG_FDT_PMU) += fdt/fdt_pmu.o
|
|
libsbiutils-objs-$(CONFIG_FDT) += fdt/fdt_helper.o
|
|
libsbiutils-objs-$(CONFIG_FDT) += fdt/fdt_driver.o
|
|
libsbiutils-objs-$(CONFIG_FDT) += fdt/fdt_fixup.o
|