как сгенерировать шестнадцатеричные файлы из кода c и кода сборки RISCV - PullRequest
0 голосов
/ 05 августа 2020

У меня есть несколько C кодов / кодов сборки, и я хочу скомпилировать его и сгенерировать шестнадцатеричные файлы для RISCV pulppissimo. Может ли кто-нибудь помочь мне с шагами для этого. В настоящий момент выполняется приветственный код

#include <stdio.h>

int main()
{
  printf("Hello !\n");

  return 0;
}

при компиляции с использованием riscv32 с использованием команды riscv32-unknown-elf-g cc hello. c

получение такой ошибки

RISCV/lib/gcc/riscv32-unknown-elf/7.1.1/../../../../riscv32-unknown-elf/bin/ld: cannot open linker script file riscv.ld: No such file or directory
collect2: error: ld returned 1 exit status

1 Ответ

0 голосов
/ 05 августа 2020

В репозитории git для платформы целлюлозы загрузочный код есть отличный пример, который можно использовать для ответа на ваш вопрос. Поскольку у меня нет инструментальной цепочки, которую вы используете, я использую цепочку инструментов, которую я скачал с веб-сайта bootlin.

wget https://toolchains.bootlin.com/downloads/releases/toolchains/riscv32-ilp32d/tarballs/riscv32-ilp32d--glibc--bleeding-edge-2020.02-2.tar.bz2
mkdir -p /opt/bootlin
tar jxvf riscv32-ilp32d--glibc--bleeding-edge-2020.02-2.tar.bz2 -C /opt/bootlin

git clone git clone https://github.com/pulp-platform/boot-code
cd boot-code

отредактируйте Makefile и настройте следующие строки, чтобы отразить местоположение для используемой инструментальной цепочки:

PULP_CC = riscv32-unknown-elf-gcc
PULP_LD = riscv32-unknown-elf-gcc

При использовании инструментальной цепочки bootlin это приведет к появлению двух следующих строк:

PULP_CC = /opt/bootlin/riscv32-ilp32d--glibc--bleeding-edge-2020.02-2/bin/riscv32-buildroot-linux-gnu-gcc
PULP_LD = /opt/bootlin/riscv32-ilp32d--glibc--bleeding-edge-2020.02-2/bin/riscv32-buildroot-linux-gnu-gcc

То же Makefile, замените следующие строка - код не компилируется, как я думаю:

CFLAGS += -Os -g -fno-jump-tables -I$(CURDIR)/include 

by:

CFLAGS += -Os -g -fno-jump-tables -I$(CURDIR)/include -DMCHAN_CMD_ILE_BIT=21 -DMCHAN_CMD_ELE_BIT=20

Теперь вы можете собрать build/bootcode исполняемый файл:

make
CC  boot_code.c
In file included from /home/frant/mnt/git/boot-code/include/hal/chips/pulp/pulp.h:20,
                 from /home/frant/mnt/git/boot-code/include/hal/pulp.h:27,
                 from boot_code.c:18:
/home/frant/mnt/git/boot-code/include/hal/riscv/riscv_v5.h: In function ‘hal_cluster_id’:
/home/frant/mnt/git/boot-code/include/hal/riscv/riscv_v5.h:172:10: warning: implicit declaration of function ‘__builtin_pulp_ClusterId’ [-Wimplicit-function-declaration]
  172 |   return __builtin_pulp_ClusterId();
      |          ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/frant/mnt/git/boot-code/include/hal/chips/pulp/pulp.h:21,
                 from /home/frant/mnt/git/boot-code/include/hal/pulp.h:27,
                 from boot_code.c:18:
/home/frant/mnt/git/boot-code/include/hal/eu/eu_v3.h: In function ‘evt_read32’:
/home/frant/mnt/git/boot-code/include/hal/eu/eu_v3.h:43:11: warning: implicit declaration of function ‘__builtin_pulp_event_unit_read’ [-Wimplicit-function-declaration]
   43 |   value = __builtin_pulp_event_unit_read((int *)base, offset);
      |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CC  crt0.S
LD  /home/frant/mnt/git/boot-code/build/bootcode
./stim_utils.py  \
        --binary=/home/frant/mnt/git/boot-code/build/bootcode \
        --stim-bin=rom.bin \
        --area=0x1a000000:0x01000000
Created stimuli generator
  Added binary: /home/frant/mnt/git/boot-code/build/bootcode
  Added target area: [0x1a000000 -> 0x1b000000]
  Handling section (base: 0x1a000000, size: 0x57c)
  Bypassing section (base:make
CC  boot_code.c
In file included from /home/frant/mnt/git/boot-code/include/hal/chips/pulp/pulp.h:20,
                 from /home/frant/mnt/git/boot-code/include/hal/pulp.h:27,
                 from boot_code.c:18:
/home/frant/mnt/git/boot-code/include/hal/riscv/riscv_v5.h: In function ‘hal_cluster_id’:
/home/frant/mnt/git/boot-code/include/hal/riscv/riscv_v5.h:172:10: warning: implicit declaration of function ‘__builtin_pulp_ClusterId’ [-Wimplicit-function-declaration]
  172 |   return __builtin_pulp_ClusterId();
      |          ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/frant/mnt/git/boot-code/include/hal/chips/pulp/pulp.h:21,
                 from /home/frant/mnt/git/boot-code/include/hal/pulp.h:27,
                 from boot_code.c:18:
/home/frant/mnt/git/boot-code/include/hal/eu/eu_v3.h: In function ‘evt_read32’:
/home/frant/mnt/git/boot-code/include/hal/eu/eu_v3.h:43:11: warning: implicit declaration of function ‘__builtin_pulp_event_unit_read’ [-Wimplicit-function-declaration]
   43 |   value = __builtin_pulp_event_unit_read((int *)base, offset);
      |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CC  crt0.S
LD  /home/frant/mnt/git/boot-code/build/bootcode
./stim_utils.py  \
        --binary=/home/frant/mnt/git/boot-code/build/bootcode \
        --stim-bin=rom.bin \
        --area=0x1a000000:0x01000000
Created stimuli generator
  Added binary: /home/frant/mnt/git/boot-code/build/bootcode
  Added target area: [0x1a000000 -> 0x1b000000]
  Handling section (base: 0x1a000000, size: 0x57c)
  Bypassing section (base: 0x1c000000, size: 0x1928)
objcopy --srec-len 1 --output-target=srec /home/frant/mnt/git/boot-code/build/bootcode /home/frant/mnt/git/boot-code/build/bootcode.s19
./s19toboot.py /home/frant/mnt/git/boot-code/build/bootcode.s19 boot_code.cde pulp 0x1c000000, size: 0x1928)
objcopy --srec-len 1 --output-target=srec /home/frant/mnt/git/boot-code/build/bootcode /home/frant/mnt/git/boot-code/build/bootcode.s19
./s19toboot.py /home/frant/mnt/git/boot-code/build/bootcode.s19 boot_code.cde pulp

И преобразовать его в формат Intel Hex:

/opt/bootlin/riscv32-ilp32d--glibc--bleeding-edge-2020.02-2/bin/riscv32-buildroot-linux-gnu-objcopy  --output-target=ihex build/bootcode bootcode.ihex

cat bootcode.ihex
:020000041A00E0
:100000006F0080086F0040086F0000086F00C00795
:100010006F0080076F0040076F0000076F00C00689
../...
:081920000000000000000000BF
:040000051A000000DD
:00000001FF

Теперь, когда у вас есть рабочий пример для платформы целлюлозы, я думаю, ваша цель, вы сможете адаптировать его к своим потребностям.

...