aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/fsp_baytrail/baytrail
diff options
context:
space:
mode:
authorMartin Roth <martin.roth@se-eng.com>2014-12-05 09:24:53 -0700
committerMartin Roth <gaumless@gmail.com>2014-12-05 22:02:04 +0100
commit59bff09f301fe3544cc70aafaf666cae40fa3257 (patch)
treea76b8c31b48a418121cfa0f20e5241f799a5a148 /src/soc/intel/fsp_baytrail/baytrail
parent1df7064e0dabfe41fe4fd87789f24b703d07b2c8 (diff)
fsp_baytrail: Update function disable code
- The EDS has the function disable bit for eMMC incorrectly listed as 8. Changing it back to the correct bit 11. - The FSP will disable functions that it is told are disabled, so coreboot code that disables the functions is redundant. Removing it. Change-Id: I95c31d92d3af5182ddf7fd47f651bbb61cdedb82 Signed-off-by: Martin Roth <martin.roth@se-eng.com> Reviewed-on: http://review.coreboot.org/7653 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Diffstat (limited to 'src/soc/intel/fsp_baytrail/baytrail')
-rw-r--r--src/soc/intel/fsp_baytrail/baytrail/pmc.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/soc/intel/fsp_baytrail/baytrail/pmc.h b/src/soc/intel/fsp_baytrail/baytrail/pmc.h
index ee15dd92a7..df6355a3df 100644
--- a/src/soc/intel/fsp_baytrail/baytrail/pmc.h
+++ b/src/soc/intel/fsp_baytrail/baytrail/pmc.h
@@ -83,11 +83,9 @@
# define HSUART1_DIS (1 << 3)
# define HSUART2_DIS (1 << 4)
# define SPI_DIS (1 << 5)
-# define MMC45_DIS (1 << 8)
-# define EMMC_DIS (1 << 8)
# define SDIO_DIS (1 << 9)
# define SD_DIS (1 << 10)
-# define MIPI_DIS (1 << 11)
+# define MMC_DIS (1 << 11)
# define HDA_DIS (1 << 12)
# define LPE_DIS (1 << 13)
# define OTG_DIS (1 << 14)