• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _MAINBOARD_EMMC_H
4 #define _MAINBOARD_EMMC_H
5 
6 #include <fsp/util.h>
7 
8 #define DEFAULT_EMMC_DLL_SIGN 0x55aa
9 
10 #ifndef __ACPI__
11 BL_EMMC_INFORMATION harcuvar_emmc_config[] = {
12 	/*
13 	 *  Default eMMC DLL configuration.
14 	 */
15 	{DEFAULT_EMMC_DLL_SIGN,
16 	 {0x00000508, 0x00000c11, 0x1c2a2a2a, 0x00191e27, 0x00000a0a,
17 	  0x00010013, 0x00000001} } };
18 #endif
19 
20 #endif /* _MAINBOARD_EMMC_H */
21