build.rs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. use std::{env, path::PathBuf};
  2. fn main() {
  3. let out = PathBuf::from(env::var_os("OUT_DIR").unwrap());
  4. let ld = &out.join("rustsbi-prototyper.ld");
  5. std::fs::write(ld, LINKER_SCRIPT).unwrap();
  6. println!("cargo:rerun-if-env-changed=RUST_LOG,PROTOTYPER_FDT,PROTOTYPER_IMAGE");
  7. println!("cargo:rustc-link-arg=-T{}", ld.display());
  8. println!("cargo:rustc-link-search={}", out.display());
  9. }
  10. const LINKER_SCRIPT: &[u8] = b"OUTPUT_ARCH(riscv)
  11. ENTRY(_start)
  12. SECTIONS {
  13. . = 0x80000000;
  14. . = ALIGN(0x1000); /* Need this to create proper sections */
  15. sbi_start = .;
  16. .text : ALIGN(8) {
  17. *(.text.entry)
  18. *(.text .text.*)
  19. }
  20. . = ALIGN(0x1000); /* Ensure next section is page aligned */
  21. .rodata : ALIGN(8) {
  22. srodata = .;
  23. *(.rodata .rodata.*)
  24. *(.srodata .srodata.*)
  25. . = ALIGN(8);
  26. }
  27. .dynsym : ALIGN(8) {
  28. *(.dynsym)
  29. }
  30. . = ALIGN(0x1000); /* Ensure next section is page aligned */
  31. .rela.dyn : ALIGN(8) {
  32. __rel_dyn_start = .;
  33. *(.rela*)
  34. __rel_dyn_end = .;
  35. }
  36. erodata = .;
  37. /*
  38. * PMP regions must be to be power-of-2. RX/RW will have separate
  39. * regions, so ensure that the split is power-of-2.
  40. */
  41. . = ALIGN(1 << LOG2CEIL((SIZEOF(.rodata) + SIZEOF(.text)
  42. + SIZEOF(.dynsym) + SIZEOF(.rela.dyn))));
  43. .data : ALIGN(8) {
  44. sdata = .;
  45. *(.data .data.*)
  46. *(.sdata .sdata.*)
  47. . = ALIGN(8);
  48. edata = .;
  49. }
  50. sidata = LOADADDR(.data);
  51. . = ALIGN(0x1000); /* Ensure next section is page aligned */
  52. .bss (NOLOAD) : ALIGN(8) {
  53. *(.bss.uninit)
  54. sbss = .;
  55. *(.bss .bss.*)
  56. *(.sbss .sbss.*)
  57. ebss = .;
  58. }
  59. /DISCARD/ : {
  60. *(.eh_frame)
  61. }
  62. . = ALIGN(0x1000); /* Need this to create proper sections */
  63. sbi_end = .;
  64. .text 0x80200000 : ALIGN(8) {
  65. *(.payload)
  66. }
  67. }";