Skip to content

Commit ef22d80

Browse files
author
Jdavidbr-alt
committed
Deployed 6f5b38c to rel-24.2 with MkDocs 1.4.3 and mike 1.1.2
1 parent c750af2 commit ef22d80

File tree

296 files changed

+65054
-14800
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

296 files changed

+65054
-14800
lines changed

rel-24.2/assets/extra.js

Whitespace-only changes.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
cmake_minimum_required(VERSION 3.5...3.28)
2+
3+
# disable building tests
4+
set(BUILD_TESTS OFF)
5+
6+
# library dir
7+
get_filename_component(LIBRARY_DIR "../baremetal-drivers" ABSOLUTE)
8+
9+
# library project
10+
add_subdirectory(${LIBRARY_DIR} alterametal)
11+
12+
# linker script
13+
set(ALTERAMETAL_LINKER_SCRIPT "${LIBRARY_DIR}/build/aarch64/core0.ld")
14+
15+
# project
16+
project(bm_hello_world C CXX ASM)
17+
18+
# target
19+
add_executable(hello_world.elf)
20+
21+
# sources
22+
target_sources(hello_world.elf
23+
PRIVATE
24+
hello_world.c
25+
)
26+
27+
# link to the baremetal library
28+
target_link_libraries(hello_world.elf PRIVATE
29+
alterametal
30+
)
31+
32+
# specify linker script
33+
target_link_options(hello_world.elf PRIVATE
34+
-T${ALTERAMETAL_LINKER_SCRIPT}
35+
)
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<pfg version="1">
2+
<settings custom_db_dir="./" mode="ASX4"/>
3+
<output_files>
4+
<output_file name="flash_image" hps="1" directory="./" type="PERIPH_JIC">
5+
<file_options/>
6+
<secondary_file type="MAP" name="flash_image_jic">
7+
<file_options/>
8+
</secondary_file>
9+
<secondary_file type="SEC_RPD" name="flash_image_jic">
10+
<file_options bitswap="1"/>
11+
</secondary_file>
12+
<flash_device_id>Flash_Device_1</flash_device_id>
13+
</output_file>
14+
</output_files>
15+
<bitstreams>
16+
<bitstream id="Bitstream_1">
17+
<path signing="OFF" finalize_encryption="0" hps_path="bl2.hex">design.sof</path>
18+
</bitstream>
19+
</bitstreams>
20+
<raw_files>
21+
<raw_file bitswap="1" type="RBF" id="Raw_File_1">fip.bin</raw_file>
22+
</raw_files>
23+
<flash_devices>
24+
<flash_device type="MT25QU512" id="Flash_Device_1">
25+
<partition reserved="1" fixed_s_addr="1" s_addr="0x00000000" e_addr="0x001FFFFF" fixed_e_addr="1" id="BOOT_INFO" size="0"/>
26+
<partition reserved="0" fixed_s_addr="0" s_addr="auto" e_addr="auto" fixed_e_addr="0" id="P1" size="0"/>
27+
<partition reserved="0" fixed_s_addr="0" s_addr="0x03C00000" e_addr="auto" fixed_e_addr="0" id="fip" size="0"/>
28+
</flash_device>
29+
<flash_loader>a5ed065bb32ae5sr0</flash_loader>
30+
</flash_devices>
31+
<assignments>
32+
<assignment page="0" partition_id="P1">
33+
<bitstream_id>Bitstream_1</bitstream_id>
34+
</assignment>
35+
<assignment page="0" partition_id="fip">
36+
<raw_file_id>Raw_File_1</raw_file_id>
37+
</assignment>
38+
</assignments>
39+
</pfg>

rel-24.2/baremetal-embedded/agilex-5/e-series/premium/images/baremetal-build-flow.svg

Lines changed: 335 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)