aboutsummaryrefslogtreecommitdiff
path: root/product/n1sdp/mcp_romfw/config_log.c
blob: 78e315fe6a05e1b6031a613219d0b239a05f411f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2018-2019, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <fwk_banner.h>
#include <fwk_macros.h>
#include <fwk_module.h>
#include <fwk_module_idx.h>
#include <mod_log.h>
#include <mod_pl011.h>
#include <n1sdp_mcp_mmap.h>
#include <n1sdp_system_clock.h>

/*
 * N1SDP BYPASS ROM firmware banner string.
 */
#define N1SDP_BANNER_ROM_FIRMWARE "Entered BYPASS ROM Firmware\n"

/*
 * PL011 module
 */
static const struct fwk_element pl011_element_desc_table[] = {
    [0] = {
        .name = "MCP UART",
        .data = &((struct mod_pl011_device_config) {
            .reg_base = MCP_UART0_BASE,
            .baud_rate_bps = BAUD_RATE_19200,
            .clock_rate_hz = CLOCK_RATE_REFCLK,
            .clock_id = FWK_ID_NONE_INIT,
            }),
    },
    [1] = { 0 },
};

static const struct fwk_element *get_pl011_table(fwk_id_t module_id)
{
    return pl011_element_desc_table;
}

struct fwk_module_config config_pl011 = {
    .get_element_table = get_pl011_table,
};

/*
 * Log module
 */
static const struct mod_log_config log_data = {
    .device_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_PL011, 0),
    .api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_PL011, 0),
    .log_groups = MOD_LOG_GROUP_ERROR |
                  MOD_LOG_GROUP_INFO |
                  MOD_LOG_GROUP_WARNING |
                  MOD_LOG_GROUP_DEBUG,
    .banner = FWK_BANNER_MCP
              N1SDP_BANNER_ROM_FIRMWARE
              BUILD_VERSION_DESCRIBE_STRING "\n",
};

struct fwk_module_config config_log = {
    .data = &log_data,
};