mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
c882163b09
At present this uclass is selected only on x86. In order to add a test for it, it must also support sandbox. Create a new CONFIG_PCH option and enable it on x86 and sandbox. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
9 lines
392 B
Text
9 lines
392 B
Text
config PCH
|
|
bool "Enable Platform-controller Hub (PCH) support"
|
|
depends on X86 || SANDBOX
|
|
help
|
|
Most x86 chips include a PCH which is responsible for handling
|
|
parts of the system not handled by that CPU. It supersedes the
|
|
northbridge / southbridge architecture that was previously used. The
|
|
PCH allows for higher performance since the memory functions are
|
|
handled in the CPU.
|