aboutsummaryrefslogtreecommitdiff
path: root/lib/utils/cppc/fdt_cppc.c
AgeCommit message (Collapse)AuthorFilesLines
2025-02-12lib: utils: Initialize miscellaneous drivers in one passSamuel Holland1-22/+0
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>
2024-12-06lib: utils: Add simple FDT based CPPC driver frameworkAnup Patel1-0/+22
The generic platform can have multiple CPPC drivers so add a simple FDT based CPPC driver framework. Signed-off-by: Anup Patel <apatel@ventanamicro.com>