Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ TAGS
.DS_Store
__pycache__
.worktrees
*.zip
1 change: 1 addition & 0 deletions systemc-components/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ add_subdirectory(exiter)
add_subdirectory(generic_lua_model)
add_subdirectory(container_builder)
add_subdirectory(smmu500)
add_subdirectory(smmuv3)
Copy link
Copy Markdown

@p-b-o p-b-o May 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A general remark about naming. Arm-MMU 600 or 700 are the two Arm SMMUv3, targeting v3.1 and v3.2 respectively. It seems the current implement is more v3.1, since it does not have support for Secure stage 2 translations.
So probably naming it smmu600 makes sense.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if(NOT WIN32)
add_subdirectory(macs)
add_subdirectory(component_constructor)
Expand Down
7 changes: 7 additions & 0 deletions systemc-components/smmuv3/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
gs_create_dymod(smmuv3)

target_link_libraries(smmuv3 PUBLIC
gs_memory
router
reg_router
)
Loading
Loading