blob: 53d1807cc825ac2fd1b8cd89fdd131bc1d68cf6d [file] [log] [blame]
Miguel Young de la Sota76526c32020-01-28 10:24:41 -05001// Copyright lowRISC contributors.
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
4
5#include "sw/device/lib/arch/device.h"
6
7/**
Sam Elliott2b9bb302020-02-21 14:10:11 +00008 * @file
9 * @brief Device-specific symbol definitions for the Verilator device.
Miguel Young de la Sota76526c32020-01-28 10:24:41 -050010 */
11
12const device_type_t kDeviceType = kDeviceSimVerilator;
13
Philipp Wagnerc154f0b2021-01-19 12:14:10 +000014// Changes to the clock frequency or UART baud rate must also be reflected at
Michael Schaffner93fe50c2021-03-31 16:25:42 -070015// `hw/top_earlgrey/rtl/chip_earlgrey_verilator.sv` and
Philipp Wagner7d625a52021-01-19 17:13:22 +000016// `test/systemtest/earlgrey/test_sim_verilator.py`.
Timothy Chenac251b12020-08-24 11:25:26 -070017const uint64_t kClockFreqCpuHz = 500 * 1000; // 500kHz
18
Timothy Chen127c16d2020-08-20 15:49:54 -070019const uint64_t kClockFreqPeripheralHz = 125 * 1000; // 125kHz
Timothy Chenac251b12020-08-24 11:25:26 -070020
21const uint64_t kClockFreqUsbHz = 500 * 1000; // 500kHz
Miguel Young de la Sota76526c32020-01-28 10:24:41 -050022
Timothy Chen127c16d2020-08-20 15:49:54 -070023const uint64_t kUartBaudrate = 7200;
Sam Elliottb3221512020-07-03 16:17:08 +010024
Chris Frantzd6da6f92021-05-19 14:27:18 -070025const uint32_t kUartNCOValue =
26 CALCULATE_UART_NCO(kUartBaudrate, kClockFreqPeripheralHz);
27
Michael Schaffner93fe50c2021-03-31 16:25:42 -070028// Defined in `hw/top_earlgrey/chip_earlgrey_verilator.core`
Srikrishna Iyera0b489d2020-10-12 02:35:10 -070029const uintptr_t kDeviceTestStatusAddress = 0x30000000;
Sam Elliott5c3d5752020-09-25 18:46:19 +010030
31const uintptr_t kDeviceLogBypassUartAddress = 0;