summaryrefslogtreecommitdiff
path: root/board/toradex/apalis_imx6/apalis_imx6.c
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2017-03-23 19:22:39 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2017-03-30 10:12:28 +0200
commit78c138fb573e95333d612a9481cc7b4c1a8c176f (patch)
tree28a88783f0b4e4bb461851b5ca47b209461aa10b /board/toradex/apalis_imx6/apalis_imx6.c
parentb173fdcd3cd8581cdc9c350099ddb02fb60e3258 (diff)
common: apalis/colibri imx6: spl: add config to silence console output
This adds a Kconfig SPL_SILENCE_CONSOLE which allows to suppress any console output which in the normal program flow is printed in the SPL. Error messages and the likes will still be printed. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'board/toradex/apalis_imx6/apalis_imx6.c')
-rw-r--r--board/toradex/apalis_imx6/apalis_imx6.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/board/toradex/apalis_imx6/apalis_imx6.c b/board/toradex/apalis_imx6/apalis_imx6.c
index 93e777d6ce..bb5f2bcb18 100644
--- a/board/toradex/apalis_imx6/apalis_imx6.c
+++ b/board/toradex/apalis_imx6/apalis_imx6.c
@@ -1235,13 +1235,17 @@ static void spl_dram_init(void)
switch (get_cpu_temp_grade(&minc, &maxc)) {
case TEMP_COMMERCIAL:
case TEMP_EXTCOMMERCIAL:
+#ifndef CONFIG_SPL_SILENT_CONSOLE
puts("Commercial temperature grade DDR3 timings.\n");
+#endif
ddr_init(mx6_com_dcd_table, ARRAY_SIZE(mx6_com_dcd_table));
break;
case TEMP_INDUSTRIAL:
case TEMP_AUTOMOTIVE:
default:
+#ifndef CONFIG_SPL_SILENT_CONSOLE
puts("Industrial temperature grade DDR3 timings.\n");
+#endif
ddr_init(mx6_it_dcd_table, ARRAY_SIZE(mx6_it_dcd_table));
break;
};