blob: 589f1fecb8a69ff86eeed2a8ae88b1a27150f729 [file] [log] [blame]
/*
* SPDX-FileCopyrightText: 2020 Efabless Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* SPDX-License-Identifier: Apache-2.0
*/
// This include is relative to $CARAVEL_PATH (see Makefile)
#include "verilog/dv/caravel/defs.h"
#include "verilog/dv/caravel/stub.c"
// Caravel allows user project to use 0x30xx_xxxx address space on Wishbone bus
// OpenRAM
// 0x30c0_0000 till 30c0_03ff -> 256 Words of OpenRAM (1024 Bytes)
#define OPENRAM_BASE_ADDRESS 0x30c00000
#define OPENRAM_SIZE_DWORDS 256ul
#define OPENRAM_SIZE_BYTES (4ul * OPENRAM_SIZE_DWORDS)
#define OPENRAM_ADDRESS_MASK (OPENRAM_SIZE_BYTES - 1)
#define OPENRAM_MEM(offset) (*(volatile uint32_t*)(OPENRAM_BASE_ADDRESS + (offset & OPENRAM_ADDRESS_MASK)))
// Caravel allows user project to use 0x30xx_xxxx address space on Wishbone bus
// HyperRAM has 8MB -> mask is 0x007fffff
// 0x3000_0000 till 307f_ffff -> RAM / MEM inisde chip
#define hyperram_mem_base_address 0x30000000
#define hyperram_mem_mask 0x007fffff
#define hyperram_mem(offset) (*(volatile uint32_t*)(hyperram_mem_base_address + (offset & hyperram_mem_mask)))
// 0x3080_00xx -> register space inside chip
#define hyperram_reg_base_address 0x30800000
#define hyperram_reg_mask 0x0000ffff
#define hyperram_reg(num) (*(volatile uint32_t*)(hyperram_reg_base_address + ((2 * num) & hyperram_reg_mask)))
// 0x3081_00xx -> CSR space for driver / peripheral configuration
#define hyperram_csr_base_address 0x30810000
#define hyperram_csr_mask 0x0000ffff
#define hyperram_csr_latency (*(volatile uint32_t*)(hyperram_csr_base_address + 0x00))
#define hyperram_csr_tpre_tpost (*(volatile uint32_t*)(hyperram_csr_base_address + 0x04))
#define hyperram_csr_tcsh (*(volatile uint32_t*)(hyperram_csr_base_address + 0x08))
#define hyperram_csr_trmax (*(volatile uint32_t*)(hyperram_csr_base_address + 0x0c))
#define hyperram_csr_status (*(volatile uint32_t*)(hyperram_csr_base_address + 0x10))
// Generates 32bits wide value out of address, not random
unsigned long generate_value(unsigned long address)
{
return ((~address & OPENRAM_ADDRESS_MASK) << 19) +
((~address & OPENRAM_ADDRESS_MASK) << 12) ^
((~address & OPENRAM_ADDRESS_MASK) << 2);
}
void main()
{
unsigned int address, err_cnt = 0;
/*
IO Control Registers
| DM | VTRIP | SLOW | AN_POL | AN_SEL | AN_EN | MOD_SEL | INP_DIS | HOLDH | OEB_N | MGMT_EN |
| 3-bits | 1-bit | 1-bit | 1-bit | 1-bit | 1-bit | 1-bit | 1-bit | 1-bit | 1-bit | 1-bit |
Output: 0000_0110_0000_1110 (0x1808) = GPIO_MODE_USER_STD_OUTPUT
| DM | VTRIP | SLOW | AN_POL | AN_SEL | AN_EN | MOD_SEL | INP_DIS | HOLDH | OEB_N | MGMT_EN |
| 110 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
Input: 0000_0001_0000_1111 (0x0402) = GPIO_MODE_USER_STD_INPUT_NOPULL
| DM | VTRIP | SLOW | AN_POL | AN_SEL | AN_EN | MOD_SEL | INP_DIS | HOLDH | OEB_N | MGMT_EN |
| 001 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
*/
/* Set up the housekeeping SPI to be connected internally so */
/* that external pin changes don't affect it. */
reg_spimaster_config = 0xa002; // Enable, prescaler = 2,
// connect to housekeeping SPI
// Connect the housekeeping SPI to the SPI master
// so that the CSB line is not left floating. This allows
// all of the GPIO pins to be used for user functions.
// All GPIO pins are configured to be output
// Used to flad the start/end of a test
reg_mprj_io_31 = GPIO_MODE_MGMT_STD_OUTPUT;
reg_mprj_io_30 = GPIO_MODE_MGMT_STD_OUTPUT;
reg_mprj_io_29 = GPIO_MODE_MGMT_STD_OUTPUT;
reg_mprj_io_28 = GPIO_MODE_MGMT_STD_OUTPUT;
reg_mprj_io_27 = GPIO_MODE_MGMT_STD_OUTPUT;
reg_mprj_io_26 = GPIO_MODE_MGMT_STD_OUTPUT;
reg_mprj_io_25 = GPIO_MODE_MGMT_STD_OUTPUT;
reg_mprj_io_24 = GPIO_MODE_MGMT_STD_OUTPUT;
/* Apply configuration */
reg_mprj_xfer = 1;
while (reg_mprj_xfer == 1);
// reset HyperRAM IP
reg_la0_oenb = 0;
reg_la0_iena = 0;
reg_la0_data = 1;
reg_la0_data = 0;
// Flag start of the test
reg_mprj_datal = 0xA8000000;
// OpenRAM test
// Fill memory
for (address = 0; address < OPENRAM_SIZE_DWORDS; address += 32)
{
// generate some dword based on address
OPENRAM_MEM(address) = generate_value(address);
}
// Check memory
for (address = 0; address < OPENRAM_SIZE_DWORDS; address += 32)
{
// check dword based on address
if (OPENRAM_MEM(address) != generate_value(address))
{
reg_mprj_datal = 0xAF000000;
return; // instant fail
}
}
// HyperRAM test
// write register space inside hyperram
hyperram_reg(0x2) = 0xa573;
// write memory, low addresses, default tacc (latency) is 6 cycles (default)
hyperram_mem(0x320) = 0xfecdba89;
hyperram_mem(0x1234) = 0x13579246;
// write latency csr
// fixed & double latency
// tacc = 4 cycles
hyperram_csr_latency = 0x34;
// read latency csr
volatile uint32_t read = hyperram_csr_latency;
// if write unsucessful, loop until timeout
if (read != 0x34)
{
reg_mprj_datal = 0xAF000000;
return; // instant fail
}
// write memory, high addresses, tacc should be now 4 cycles
hyperram_mem(0x123450) = 0x12874562;
hyperram_mem(0x7ffff4) = 0x77f77f77;
// try to read memory and trigger timeout - there's no chip connected
read = hyperram_mem(0x135);
/*
read = hyperram_csr_status;
if (hyperram_csr_status != 1)
{
reg_mprj_datal = 0xAF000000;
return; // instant fail
}
*/
reg_mprj_datal = 0xAC000000; // pass
}