aboutsummaryrefslogtreecommitdiff
path: root/product/sgm775/scp_ramfw/config_log.c
blob: 938ca39b1a9c14c1f90e5ba9338b0a78cc7a56b3 (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
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2017-2018, 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_clock.h>
#include <mod_log.h>
#include <mod_pl011.h>
#include <system_mmap.h>
#include <clock_devices.h>

/*
 * PL011 module
 */
static const struct fwk_element pl011_element_table[] = {
    [0] = {
        .name = "board-uart1",
        .data = &((struct mod_pl011_device_config) {
            .reg_base = BOARD_UART1_BASE,
            .baud_rate_bps = 115200,
            .clock_rate_hz = 24 * FWK_MHZ,
            .clock_id = FWK_ID_ELEMENT_INIT(
                            FWK_MODULE_IDX_CLOCK,
                            CLOCK_DEV_IDX_FCMCLK),
            }),
    },
    [1] = {},
};

static const struct fwk_element *get_pl011_table(fwk_id_t module_id)
{
    return pl011_element_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(FWK_MODULE_IDX_PL011, 0),
    .api_id = FWK_ID_API(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_SCP
              FWK_BANNER_RAM_FIRMWARE
              BUILD_VERSION_DESCRIBE_STRING "\n",
};

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