diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-11-25 15:11:07 (GMT) |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-12-01 09:20:18 (GMT) |
commit | 4b16fd228673a027ab122e33819695e9b7c73dd3 (patch) | |
tree | b294236abd5e5084b98b8bace3081511fb672aa5 | |
parent | 7267c925b3817478c9ccd0c4a1286ff81f7859f9 (diff) | |
download | u-boot-4b16fd228673a027ab122e33819695e9b7c73dd3.tar.xz |
mx6sxsabresd: Add thermal support
Add thermal support so that the temperature of the chip can be displayed on
boot:
U-Boot 2015.01-rc1-18268-g1366c05-dirty (Nov 25 2014 - 13:02:42)
CPU: Freescale i.MX6SX rev1.0 at 792 MHz
CPU: Temperature 50 C
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
-rw-r--r-- | include/configs/mx6sxsabresd.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/configs/mx6sxsabresd.h b/include/configs/mx6sxsabresd.h index d8ab291..5e0edab 100644 --- a/include/configs/mx6sxsabresd.h +++ b/include/configs/mx6sxsabresd.h @@ -208,6 +208,16 @@ #define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(2, 1) #endif +#define CONFIG_DM +#define CONFIG_DM_THERMAL +#define CONFIG_SYS_MALLOC_F_LEN (1 << 10) +#define CONFIG_IMX6_THERMAL + +#define CONFIG_CMD_FUSE +#if defined(CONFIG_CMD_FUSE) || defined(CONFIG_IMX6_THERMAL) +#define CONFIG_MXC_OCOTP +#endif + /* FLASH and environment organization */ #define CONFIG_SYS_NO_FLASH |