forked from pulp-platform/carfield
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pulp-offload-intf.c to stimulate and test CVA6-PULP cluster inter…
…ference (pulp-platform#262) * WIP: add wce test. * Fix `buffer` accesses in `pulp-offload-intf.c` * Let `pulp_boot_default` be defined by `elf2header.py` * Point to yt/carfield branch for the `regression_tests` * Fix `carfield.mk` indentation * Correctly filter out `CAR_ELFLOAD_PULPD_INTF_SRC_C` from `CAR_SW_TEST_SRCS_C`
- Loading branch information
1 parent
d301c3d
commit 0241b4f
Showing
4 changed files
with
144 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
// Copyright 2023 ETH Zurich and University of Bologna. | ||
// Licensed under the Apache License, Version 2.0, see LICENSE for details. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
// Luca Valente <[email protected]> | ||
// | ||
// Bare-metal offload test for the PULP cluster with interference | ||
|
||
#include <stdio.h> | ||
#include <stdint.h> | ||
|
||
#include "car_memory_map.h" | ||
#include "car_util.h" | ||
#include "dif/clint.h" | ||
#include "dif/uart.h" | ||
#include "params.h" | ||
#include "regs/cheshire.h" | ||
#include "csr.h" | ||
#include "util.h" | ||
#include "payload.h" | ||
#include "printf.h" | ||
|
||
#define LCL | ||
|
||
long int buffer[128]; | ||
|
||
void read_from_cache(int l1_way_size, int stride) { | ||
asm volatile("": : :"memory"); | ||
for(volatile int j = 0; j < l1_way_size; j++) | ||
{ | ||
* ( ( volatile long int * ) &buffer[j] ); | ||
} | ||
asm volatile("": : :"memory"); | ||
for(volatile int j = 0; j < l1_way_size; j++) | ||
{ | ||
* ( ( volatile long int * ) &buffer[j*stride]); | ||
} | ||
asm volatile("": : :"memory"); | ||
} | ||
|
||
long unsigned sweep(int stride) | ||
{ | ||
|
||
int l1_way_size = 4 * 1024 / 8; | ||
int working_set = l1_way_size * stride * 8; | ||
|
||
volatile long unsigned cycle_start; | ||
|
||
for(int i = 0; i < 10; i++) | ||
{ | ||
if(i==1) | ||
{ | ||
cycle_start = get_mcycle(); | ||
} | ||
read_from_cache(l1_way_size, stride); | ||
} | ||
|
||
volatile long unsigned cycles = get_mcycle() - cycle_start; | ||
|
||
#ifdef VERBOSE | ||
printf("%3dKB , %6d \r\n", | ||
working_set / 1024, (int)cycles); | ||
#endif | ||
|
||
return cycles; | ||
} | ||
|
||
int main(void) | ||
{ | ||
// Set the LLC as LLC | ||
axi_llc_reg32_all_cache(&__base_llc); | ||
writew(0x18,CAR_HYPERBUS_CFG_BASE_ADDR+0x18); | ||
volatile uint32_t pulp_ret_val = 0; | ||
// Init the HW | ||
// PULP Island | ||
#ifdef LCL | ||
car_enable_domain(CAR_PULP_RST); | ||
char str[] = "Cluster boot.\r\n"; | ||
uint32_t rtc_freq = *reg32(&__base_regs, CHESHIRE_RTC_FREQ_REG_OFFSET); | ||
uint64_t reset_freq = clint_get_core_freq(rtc_freq, 2500); | ||
|
||
load_binary(); | ||
|
||
volatile uint32_t pulp_boot_default = ELF_BOOT_ADDR; | ||
|
||
pulp_cluster_set_bootaddress(pulp_boot_default); | ||
|
||
uart_init(&__base_uart, reset_freq, 115200); | ||
uart_write_str(&__base_uart, str, sizeof(str)); | ||
uart_write_flush(&__base_uart); | ||
|
||
pulp_cluster_start(); | ||
#endif | ||
|
||
#ifdef VERBOSE | ||
printf("Buffer: %x\n", buffer); | ||
#endif | ||
|
||
volatile long unsigned cycles[5]; | ||
int j=0; | ||
for( int i = 4; i<128; i=i*2){ | ||
cycles[j] = sweep(i); | ||
j++; | ||
} | ||
|
||
#ifdef LCL | ||
pulp_cluster_wait_eoc(); | ||
|
||
pulp_ret_val = pulp_cluster_get_return(); | ||
#endif | ||
|
||
|
||
for(int i=0;i<5;i++) | ||
printf("%d\r\n",cycles[i]); | ||
|
||
printf("Done\n"); | ||
|
||
return pulp_ret_val; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters