Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable the i.MX8MM-EVK support #95

Merged
merged 3 commits into from
Jan 27, 2024
Merged
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
26 changes: 13 additions & 13 deletions build_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,19 +94,19 @@ class ConfigInfo:
"hello": Path("example/maaxboard/hello")
}
),
# BoardInfo(
# name="imx8mm",
# gcc_cpu="cortex-a53",
# loader_link_address=0x41000000,
# kernel_options={
# "KernelPlatform": "imx8mm-evk",
# "KernelIsMCS": True,
# "KernelArmExportPCNTUser": True,
# },
# examples={
# "passive_server": Path("example/imx8mm/passive_server")
# }
# )
BoardInfo(
name="imx8mm_evk",
gcc_cpu="cortex-a53",
loader_link_address=0x41000000,
kernel_options={
"KernelPlatform": "imx8mm-evk",
"KernelIsMCS": True,
"KernelArmExportPCNTUser": True,
},
examples={
"passive_server": Path("example/imx8mm_evk/passive_server")
}
)
)

SUPPORTED_CONFIGS = (
Expand Down
6 changes: 6 additions & 0 deletions docs/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,12 @@ The `id` should be passed to the `microkit_notify` and `microkit_ppcall` functio

This chapter describes the board support packages that are available in the SDK.

## i.MX8MM-EVK

Microkit produces a raw binary file, so when using U-Boot you must execute the image using:

=> go 0x41000000

## MaaXBoard

The MaaXBoard is a low-cost ARM SBC based on the NXP i.MX8MQ system-on-chip.
Expand Down
2 changes: 1 addition & 1 deletion loader/src/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ putc(uint8_t ch)
while (!(*UART_REG(STAT) & STAT_TDRE)) { }
*UART_REG(TRANSMIT) = ch;
}
#elif defined(BOARD_imx8mm)
#elif defined(BOARD_imx8mm_evk)
#define UART_BASE 0x30890000
#define STAT 0x98
#define TRANSMIT 0x40
Expand Down
Loading