diff options
author | Simon Glass <sjg@chromium.org> | 2016-03-11 22:07:26 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-03-17 10:27:26 +0800 |
commit | 2627c7e2c100c702d540a277aa578176516d3a7c (patch) | |
tree | e6a5fc89fc20ce379e15d3ed7f9f61d1b724f9cf /arch/x86/cpu/broadwell/Makefile | |
parent | 71a8f2080b77591eb14f61aba947aa9e869b847f (diff) |
x86: broadwell: Add support for SDRAM setup
Broadwell uses a binary blob called the memory reference code (MRC) to start
up its SDRAM. This is similar to ivybridge so we can mostly use common code
for running this blob.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/broadwell/Makefile')
-rw-r--r-- | arch/x86/cpu/broadwell/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/cpu/broadwell/Makefile b/arch/x86/cpu/broadwell/Makefile index 5a62afae59..012798f206 100644 --- a/arch/x86/cpu/broadwell/Makefile +++ b/arch/x86/cpu/broadwell/Makefile @@ -13,3 +13,4 @@ obj-y += pinctrl_broadwell.o obj-y += power_state.o obj-y += refcode.o obj-y += sata.o +obj-y += sdram.o |