smp_application.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "application/freertos/smpdemo"
  27. ],
  28. "appdirs_ignore": [
  29. ],
  30. "appconfig": {
  31. "application/baremetal/demo_cidu": {
  32. "build_config" : {},
  33. "checks": {
  34. "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"]
  35. }
  36. },
  37. "application/freertos/smpdemo": {
  38. "build_config" : {},
  39. "checks": {
  40. "PASS": ["timers Callback 3 on hart"]
  41. }
  42. },
  43. "application/baremetal/smphello": {
  44. "build_config" : {},
  45. "checks": {
  46. "PASS": ["All harts boot successfully!"]
  47. }
  48. }
  49. }
  50. }