diff options
author | Furquan Shaikh <furquan@google.com> | 2020-05-15 15:43:15 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-05-26 15:15:21 +0000 |
commit | 69395742b8e45433e42c54e6cf8e67a692f923e9 (patch) | |
tree | 9b54309edf00f03dd7bb6739348f548c9af86f3e /src/device/Kconfig | |
parent | afaae8aa00d59a1a74e7f7891d8def8cc21d9eb2 (diff) |
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/device/Kconfig')
-rw-r--r-- | src/device/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/device/Kconfig b/src/device/Kconfig index 751083cf81..a60965a01a 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -777,4 +777,11 @@ config SOFTWARE_I2C I2C controller is not (yet) available. The platform code needs to provide bindings to manually toggle I2C lines. +config RESOURCE_ALLOCATOR_V3 + bool + default y + help + This config option enables resource allocator v3 which performs + top down allocation of resources in a single MMIO window. + endmenu |