Miguel Young de la Sota | 76526c3 | 2020-01-28 10:24:41 -0500 | [diff] [blame] | 1 | // 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 Elliott | 2b9bb30 | 2020-02-21 14:10:11 +0000 | [diff] [blame] | 8 | * @file |
| 9 | * @brief Device-specific symbol definitions for the Verilator device. |
Miguel Young de la Sota | 76526c3 | 2020-01-28 10:24:41 -0500 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | const device_type_t kDeviceType = kDeviceSimVerilator; |
| 13 | |
Philipp Wagner | c154f0b | 2021-01-19 12:14:10 +0000 | [diff] [blame] | 14 | // Changes to the clock frequency or UART baud rate must also be reflected at |
Michael Schaffner | 93fe50c | 2021-03-31 16:25:42 -0700 | [diff] [blame] | 15 | // `hw/top_earlgrey/rtl/chip_earlgrey_verilator.sv` and |
Philipp Wagner | 7d625a5 | 2021-01-19 17:13:22 +0000 | [diff] [blame] | 16 | // `test/systemtest/earlgrey/test_sim_verilator.py`. |
Timothy Chen | ac251b1 | 2020-08-24 11:25:26 -0700 | [diff] [blame] | 17 | const uint64_t kClockFreqCpuHz = 500 * 1000; // 500kHz |
| 18 | |
Timothy Chen | 127c16d | 2020-08-20 15:49:54 -0700 | [diff] [blame] | 19 | const uint64_t kClockFreqPeripheralHz = 125 * 1000; // 125kHz |
Timothy Chen | ac251b1 | 2020-08-24 11:25:26 -0700 | [diff] [blame] | 20 | |
| 21 | const uint64_t kClockFreqUsbHz = 500 * 1000; // 500kHz |
Miguel Young de la Sota | 76526c3 | 2020-01-28 10:24:41 -0500 | [diff] [blame] | 22 | |
Timothy Chen | 127c16d | 2020-08-20 15:49:54 -0700 | [diff] [blame] | 23 | const uint64_t kUartBaudrate = 7200; |
Sam Elliott | b322151 | 2020-07-03 16:17:08 +0100 | [diff] [blame] | 24 | |
Chris Frantz | d6da6f9 | 2021-05-19 14:27:18 -0700 | [diff] [blame] | 25 | const uint32_t kUartNCOValue = |
| 26 | CALCULATE_UART_NCO(kUartBaudrate, kClockFreqPeripheralHz); |
| 27 | |
Michael Schaffner | 93fe50c | 2021-03-31 16:25:42 -0700 | [diff] [blame] | 28 | // Defined in `hw/top_earlgrey/chip_earlgrey_verilator.core` |
Srikrishna Iyer | a0b489d | 2020-10-12 02:35:10 -0700 | [diff] [blame] | 29 | const uintptr_t kDeviceTestStatusAddress = 0x30000000; |
Sam Elliott | 5c3d575 | 2020-09-25 18:46:19 +0100 | [diff] [blame] | 30 | |
| 31 | const uintptr_t kDeviceLogBypassUartAddress = 0; |