| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| |
| #include <stdint.h> |
| |
| #include "sw/device/lib/arch/device.h" |
| #include "sw/device/lib/dif/dif_uart.h" |
| #include "sw/device/lib/runtime/hart.h" |
| #include "sw/device/lib/runtime/log.h" |
| #include "sw/device/lib/runtime/print.h" |
| #include "sw/device/lib/testing/pinmux_testutils.h" |
| #include "sw/device/lib/testing/test_framework/check.h" |
| #include "sw/device/lib/testing/test_framework/status.h" |
| |
| #include "hw/top_earlgrey/sw/autogen/top_earlgrey.h" |
| |
| static dif_uart_t uart0; |
| static dif_pinmux_t pinmux; |
| |
| enum { |
| kSramStart = TOP_EARLGREY_SRAM_CTRL_MAIN_RAM_BASE_ADDR, |
| kSramEnd = TOP_EARLGREY_SRAM_CTRL_MAIN_RAM_BASE_ADDR + |
| TOP_EARLGREY_SRAM_CTRL_MAIN_RAM_SIZE_BYTES, |
| }; |
| |
| void sram_main() { |
| if (kDeviceType != kDeviceSimDV) { |
| // Configure the pinmux. |
| CHECK_DIF_OK(dif_pinmux_init( |
| mmio_region_from_addr(TOP_EARLGREY_PINMUX_AON_BASE_ADDR), &pinmux)); |
| pinmux_testutils_init(&pinmux); |
| |
| // Initialize UART. |
| CHECK_DIF_OK(dif_uart_init( |
| mmio_region_from_addr(TOP_EARLGREY_UART0_BASE_ADDR), &uart0)); |
| CHECK_DIF_OK( |
| dif_uart_configure(&uart0, (dif_uart_config_t){ |
| .baudrate = kUartBaudrate, |
| .clk_freq_hz = kClockFreqPeripheralHz, |
| .parity_enable = kDifToggleDisabled, |
| .parity = kDifUartParityEven, |
| .tx_enable = kDifToggleEnabled, |
| .rx_enable = kDifToggleEnabled, |
| })); |
| base_uart_stdout(&uart0); |
| } |
| |
| // Read the program counter and check that we are executing from SRAM. |
| uint32_t pc = 0; |
| asm("auipc %[pc], 0;" : [pc] "=r"(pc)); |
| LOG_INFO("PC: %p, SRAM: [%p, %p)", pc, kSramStart, kSramEnd); |
| CHECK(pc >= kSramStart && pc < kSramEnd, "PC is outside the main SRAM"); |
| if (kDeviceType == kDeviceSimDV) { |
| test_status_set(kTestStatusPassed); |
| } |
| } |
| |
| // Reference functions that the debugger may wish to call. This prevents the |
| // compiler from dropping them as unused functions and has the side benefit of |
| // preventing their includes from appearing unused. |
| void debugger_support_functions() { (void)icache_invalidate; } |