aboutsummaryrefslogtreecommitdiff
path: root/tests/device/Makefile.inc
diff options
context:
space:
mode:
authorRob Barnes <robbarnes@google.com>2020-09-14 07:46:19 -0600
committerAaron Durbin <adurbin@chromium.org>2020-09-16 03:24:50 +0000
commita01ee36288b26f31fc1e912324293104f33211c3 (patch)
treebce1967dab34f331666679524e7d487529cd3038 /tests/device/Makefile.inc
parentfcd7d0518c0719701c7ed58cd0e0869be492d34c (diff)
device/dram: Add method for converting MHz to MT/s
Add method for converting DDR4 speed in MHz to MT/s. Checks that MHz is within a speed grade range. BUG=b:167155849 TEST=ddr4-test unit test BRANCH=Zork Change-Id: I1433f028afb794fe3e397b03f5bd0565494c8130 Signed-off-by: Rob Barnes <robbarnes@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45343 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'tests/device/Makefile.inc')
-rw-r--r--tests/device/Makefile.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/device/Makefile.inc b/tests/device/Makefile.inc
index 10223c52cc..4626c3cf3d 100644
--- a/tests/device/Makefile.inc
+++ b/tests/device/Makefile.inc
@@ -1,7 +1,12 @@
# SPDX-License-Identifier: GPL-2.0-only
tests-y += i2c-test
+tests-y += ddr4-test
i2c-test-srcs += tests/device/i2c-test.c
i2c-test-srcs += src/device/i2c.c
i2c-test-mocks += platform_i2c_transfer
+
+ddr4-test-srcs += tests/device/ddr4-test.c
+ddr4-test-srcs += tests/stubs/console.c
+ddr4-test-srcs += src/device/dram/ddr4.c \ No newline at end of file