smp_application.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "run_config": {
  3. "target" : "hardware",
  4. "hardware" : {
  5. "baudrate": 115200,
  6. "timeout": 60
  7. },
  8. "qemu": {
  9. "qemu32": "qemu-system-riscv32",
  10. "qemu64": "qemu-system-riscv64",
  11. "timeout": 60
  12. }
  13. },
  14. "build_target": "clean all",
  15. "build_config": {
  16. "SOC": "evalsoc",
  17. "BOARD": "nuclei_fpga_eval"
  18. },
  19. "checks": {
  20. "PASS": [],
  21. "FAIL": ["MEPC"]
  22. },
  23. "appdirs": [
  24. "application/baremetal/demo_cidu",
  25. "application/baremetal/smphello"
  26. ],
  27. "appdirs_ignore": [
  28. ],
  29. "appconfig": {
  30. "application/baremetal/demo_cidu": {
  31. "build_config" : {},
  32. "checks": {
  33. "PASS": ["[ERROR]__CIDU_PRESENT must be defined as 1 in <Device>.h!", "Core 1 has received interrupt from core 0", "[WARN] SMP & CIDU not present"]
  34. }
  35. },
  36. "application/baremetal/smphello": {
  37. "build_config" : {},
  38. "checks": {
  39. "PASS": ["All harts boot successfully!"]
  40. }
  41. }
  42. }
  43. }