aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/Kconfig
diff options
context:
space:
mode:
authorMarshall Dawson <marshalldawson3rd@gmail.com>2017-06-15 16:59:20 -0600
committerMartin Roth <martinroth@google.com>2017-07-02 18:43:46 +0000
commit68243a51570dfe31bdd8b81624796ebd0b8b8608 (patch)
tree5302356eb9bdfdd713c7755f0b25d64fdcee65bd /src/soc/amd/common/block/Kconfig
parentcfc73952b802baf57b8cb35f6668416d58ed6fd6 (diff)
soc/amd/common: Add initial support for AMD PSP
Add files for supporting the BIOS->PSP communication not covered by AGESA. The first command implemented notifies the PSP that DRAM is ready. This patch also introduces the amd/common/block directory structure similar to intel/common/block. Change-Id: I34b2744b071aa3dfb1071b2aabde32ddb662ab87 Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/19753 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/amd/common/block/Kconfig')
-rw-r--r--src/soc/amd/common/block/Kconfig11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/Kconfig b/src/soc/amd/common/block/Kconfig
new file mode 100644
index 0000000000..86150ed870
--- /dev/null
+++ b/src/soc/amd/common/block/Kconfig
@@ -0,0 +1,11 @@
+config SOC_AMD_COMMON_BLOCK
+ bool
+ help
+ SoC driver for AMD common IP code
+
+if SOC_AMD_COMMON_BLOCK
+
+comment "AMD SoC Common IP Code"
+source "src/soc/amd/common/block/*/Kconfig"
+
+endif