Skip to content

Commit

Permalink
Map iMX93 OCRAM memory to mmu
Browse files Browse the repository at this point in the history
Signed-off-by: Jouni Ukkonen <[email protected]>
  • Loading branch information
joukkone authored and jlaitine committed Jul 5, 2024
1 parent 91d561a commit eb69362
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/arm64/include/imx9/chip.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@
#define CONFIG_DEVICEIO_BASEADDR 0x40000000
#define CONFIG_DEVICEIO_SIZE MB(512)

#define CONFIG_OCRAM_BASE_ADDR 0x20480000
#define CONFIG_OCRAM_SIZE KB(640)

#define MPID_TO_CLUSTER_ID(mpid) ((mpid) & ~0xff)

#define IMX9_GPIO_NPORTS 4
Expand Down
4 changes: 4 additions & 0 deletions arch/arm64/src/imx9/imx9_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ static const struct arm_mmu_region g_mmu_regions[] =
MMU_REGION_FLAT_ENTRY("DRAM0_S0",
CONFIG_RAMBANK1_ADDR, CONFIG_RAMBANK1_SIZE,
MT_NORMAL | MT_RW | MT_SECURE),

MMU_REGION_FLAT_ENTRY("OCRAM",
CONFIG_OCRAM_BASE_ADDR, CONFIG_OCRAM_SIZE,
MT_NORMAL | MT_RW | MT_SECURE),
};

const struct arm_mmu_config g_mmu_config =
Expand Down

0 comments on commit eb69362

Please sign in to comment.