aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/intel/galileo/Makefile.inc
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-04-07 12:07:46 -0700
committerLee Leahy <leroy.p.leahy@intel.com>2017-05-08 19:14:12 +0200
commit1ea7cce8ae8fbc8a14a3ddfdee3f81a5e0e50031 (patch)
tree3c8c359fc46e5ea876b50ee2f3c925e29d5eb19b /src/mainboard/intel/galileo/Makefile.inc
parenta585358f9bb9ac417af1b8b03d08b573ca692d6a (diff)
mainboard/intel/galileo: Add SD controller configuration
Configure the SD controller to handle the SD card slot. * Galileo supports a removable SD card slot. * Set SD card initialization frequency to 100 MHz. * Set default removable delays. * Build SD/MMC components by default TEST=Build and run on Galileo Gen2 Change-Id: Iaf4faa40fe01eca98abffa2681f61fd8e059f0c4 Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com> Reviewed-on: https://review.coreboot.org/19212 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/intel/galileo/Makefile.inc')
-rw-r--r--src/mainboard/intel/galileo/Makefile.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/intel/galileo/Makefile.inc b/src/mainboard/intel/galileo/Makefile.inc
index f2fda318c0..25f672e5f7 100644
--- a/src/mainboard/intel/galileo/Makefile.inc
+++ b/src/mainboard/intel/galileo/Makefile.inc
@@ -26,6 +26,7 @@ verstage-$(CONFIG_VBOOT) += vboot.c
romstage-y += gpio.c
romstage-y += reg_access.c
+romstage-$(CONFIG_DRIVERS_STORAGE_SD) += sd.c
romstage-$(CONFIG_VBOOT) += vboot.c
postcar-y += gpio.c
@@ -33,3 +34,4 @@ postcar-y += reg_access.c
ramstage-y += gpio.c
ramstage-y += reg_access.c
+ramstage-$(CONFIG_DRIVERS_STORAGE_SD) += sd.c