summaryrefslogtreecommitdiff
path: root/src/include/device/resource.h
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-05-15 15:43:15 -0700
committerPatrick Georgi <pgeorgi@google.com>2020-05-26 15:15:21 +0000
commit69395742b8e45433e42c54e6cf8e67a692f923e9 (patch)
tree9b54309edf00f03dd7bb6739348f548c9af86f3e /src/include/device/resource.h
parentafaae8aa00d59a1a74e7f7891d8def8cc21d9eb2 (diff)
downloadcoreboot-69395742b8e45433e42c54e6cf8e67a692f923e9.tar.xz
device: Move resource allocation into a separate compilation unit
This change moves the resource allocator functions out of device.c and into two separate files: 1. resource_allocator_v3.c: This is the old implementation of resource allocator that uses a single window for resource allocation. It is required to support some AMD chipsets that do not provide an accurate map of allocated resources by the time the allocator runs. They work fine with the old allocator since it restricts itself to allocations in a single window at the top of the 4G space. 2. resource_allocator_common.c: This file contains the functions that can be shared by the old and new resource allocator. Entry point into the resource allocation is allocate_resources() which can be implemented by both old and new allocators. This change also adds a Kconfig option RESOURCE_ALLOCATOR_V3 which enables the old resource allocator. This config option is enabled by default currently, but in the following CLs this will be enabled only for the broken boards. Reason for this split: Both the old and new resource allocators need to be retained in the tree until the broken chipsets are fixed. Change-Id: I2f5440cf83c6e9e15a5f22e79cc3c66aa2cec4c0 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41442 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Mike Banon <mikebdp2@gmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include/device/resource.h')
-rw-r--r--src/include/device/resource.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/include/device/resource.h b/src/include/device/resource.h
index 1d04e9a1c8..c97b01d22f 100644
--- a/src/include/device/resource.h
+++ b/src/include/device/resource.h
@@ -91,4 +91,24 @@ static inline void *res2mmio(struct resource *res, unsigned long offset,
return (void *)(uintptr_t)((res->base + offset) & ~mask);
}
+/*
+ * Pick largest resource on the bus using the given mask and type.
+ * Params:
+ * bus = Bus from which the resource needs to picked from.
+ * result_res = If NULL, there was no previous resource picked on this bus, else it points to
+ * the last picked resource.
+ * type_mask = Mask to be applied when searching for resource
+ * type = Expected type for the resource
+ *
+ * Returns:
+ * If resource is found, returns the device and sets result_rest to point to the resource. Else
+ * returns NULL.
+ */
+const struct device *largest_resource(struct bus *bus, struct resource **result_res,
+ unsigned long type_mask, unsigned long type);
+
+
+/* Compute and allocate resources. This is the main resource allocator entry point. */
+void allocate_resources(const struct device *root);
+
#endif /* DEVICE_RESOURCE_H */