/* * Arm SCP/MCP Software * Copyright (c) 2019-2021, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include "config_power_domain.h" #include "juno_mmap.h" #include #include #include #include #include #include struct fwk_module_config config_pl011 = { .elements = FWK_MODULE_STATIC_ELEMENTS({ [0] = { .name = "", .data = &(struct mod_pl011_element_cfg){ .reg_base = FPGA_UART1_BASE, .baud_rate_bps = 115200, .clock_rate_hz = 24 * FWK_MHZ, .clock_id = FWK_ID_NONE_INIT, .pd_id = FWK_ID_ELEMENT_INIT( FWK_MODULE_IDX_POWER_DOMAIN, POWER_DOMAIN_IDX_SYSTOP), }, }, [1] = { 0 }, }), };