poplar: Use new console APIs
authorJerome Forissier <jerome.forissier@linaro.org>
Thu, 8 Nov 2018 11:57:30 +0000 (11:57 +0000)
committerJerome Forissier <jerome.forissier@linaro.org>
Thu, 8 Nov 2018 15:29:43 +0000 (16:29 +0100)
Switch to the new console APIs enabled by setting MULTI_CONSOLE_API=1.
Enables building with ERROR_DEPRECATED=1.

Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
plat/hisilicon/poplar/bl1_plat_setup.c
plat/hisilicon/poplar/bl2_plat_setup.c
plat/hisilicon/poplar/bl31_plat_setup.c
plat/hisilicon/poplar/plat_pm.c
plat/hisilicon/poplar/platform.mk

index c2adc44ecc78fc9f26210dea39ddf1768493b7a3..d0b12ad2bc3ad2a77b356b1fda7304b2a408bb54 100644 (file)
@@ -7,13 +7,13 @@
 #include <arch_helpers.h>
 #include <assert.h>
 #include <bl_common.h>
-#include <console.h>
 #include <debug.h>
 #include <dw_mmc.h>
 #include <errno.h>
 #include <generic_delay_timer.h>
 #include <mmc.h>
 #include <mmio.h>
+#include <pl011.h>
 #include <pl061_gpio.h>
 #include <platform.h>
 #include <platform_def.h>
@@ -26,6 +26,7 @@
 /* Data structure which holds the extents of the trusted RAM for BL1 */
 static meminfo_t bl1_tzram_layout;
 static meminfo_t bl2_tzram_layout;
+static console_pl011_t console;
 
 /*
  * Cannot use default weak implementation in bl1_main.c because BL1 RW data is
@@ -62,7 +63,8 @@ int bl1_plat_handle_post_image_load(unsigned int image_id)
 void bl1_early_platform_setup(void)
 {
        /* Initialize the console to provide early debug support */
-       console_init(PL011_UART0_BASE, PL011_UART0_CLK_IN_HZ, PL011_BAUDRATE);
+       console_pl011_register(PL011_UART0_BASE, PL011_UART0_CLK_IN_HZ,
+                              PL011_BAUDRATE, &console);
 
        /* Allow BL1 to see the whole Trusted RAM */
        bl1_tzram_layout.total_base = BL1_RW_BASE;
index a253d3fc8a31768fe9ba0d3a4ebdd028a236d86b..3a3ed6a46fe991ed130c2ddc8dc500a24dc8f099 100644 (file)
@@ -7,7 +7,6 @@
 #include <arch_helpers.h>
 #include <assert.h>
 #include <bl_common.h>
-#include <console.h>
 #include <debug.h>
 #include <desc_image_load.h>
 #include <dw_mmc.h>
@@ -17,6 +16,7 @@
 #include <mmio.h>
 #include <optee_utils.h>
 #include <partition/partition.h>
+#include <pl011.h>
 #include <platform.h>
 #include <string.h>
 #include "hi3798cv200.h"
@@ -31,6 +31,7 @@
 #define BL2_COHERENT_RAM_LIMIT (unsigned long)(&__COHERENT_RAM_END__)
 
 static meminfo_t bl2_tzram_layout __aligned(CACHE_WRITEBACK_GRANULE);
+static console_pl011_t console;
 
 /*******************************************************************************
  * Transfer SCP_BL2 from Trusted RAM using the SCP Download protocol.
@@ -181,7 +182,8 @@ void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1,
        dw_mmc_params_t params = EMMC_INIT_PARAMS(POPLAR_EMMC_DESC_BASE);
 #endif
 
-       console_init(PL011_UART0_BASE, PL011_UART0_CLK_IN_HZ, PL011_BAUDRATE);
+       console_pl011_register(PL011_UART0_BASE, PL011_UART0_CLK_IN_HZ,
+                              PL011_BAUDRATE, &console);
 
        /* Enable arch timer */
        generic_delay_timer_init();
index 20a613d5f4c33affeb1b599b7955bff8fc46624e..e2079f9ee6b42d693bc5cd4760e07bead7f35f8e 100644 (file)
@@ -9,12 +9,12 @@
 #include <assert.h>
 #include <bl31.h>
 #include <bl_common.h>
-#include <console.h>
 #include <cortex_a53.h>
 #include <debug.h>
 #include <errno.h>
 #include <generic_delay_timer.h>
 #include <mmio.h>
+#include <pl011.h>
 #include <platform.h>
 #include <platform_def.h>
 #include <stddef.h>
@@ -34,6 +34,7 @@
 
 static entry_point_info_t bl32_image_ep_info;
 static entry_point_info_t bl33_image_ep_info;
+static console_pl011_t console;
 
 static void hisi_tzpc_sec_init(void)
 {
@@ -72,7 +73,8 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
 
        from_bl2 = (void *) arg0;
 
-       console_init(PL011_UART0_BASE, PL011_UART0_CLK_IN_HZ, PL011_BAUDRATE);
+       console_pl011_register(PL011_UART0_BASE, PL011_UART0_CLK_IN_HZ,
+                              PL011_BAUDRATE, &console);
 
        /* Init console for crash report */
        plat_crash_console_init();
index dcbcec4a14b46f02d71111f27e00bc823b0c03c1..eccb0b0d8cc864d31bbc5d57f71a6eec1d5fb514 100644 (file)
@@ -7,7 +7,6 @@
 #include <arch_helpers.h>
 #include <assert.h>
 #include <bl_common.h>
-#include <console.h>
 #include <context.h>
 #include <context_mgmt.h>
 #include <debug.h>
index de262adcaef67c874f940b28994acc656b997709..0aaa7074aeab1a453c6c767894f32fc6fac8ffd7 100644 (file)
@@ -46,7 +46,7 @@ ERRATA_A53_855873             := 1
 ERRATA_A53_835769              := 1
 ERRATA_A53_843419              := 1
 ENABLE_SVE_FOR_NS              := 0
-
+MULTI_CONSOLE_API              := 1
 WORKAROUND_CVE_2017_5715       := 0
 
 PLAT_PL061_MAX_GPIOS           := 104