Skip to content

Commit

Permalink
mtl: Fix IOM BAR relative to P2SB BAR
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Kopeć <[email protected]>
  • Loading branch information
mkopec committed Jan 10, 2025
1 parent 02c000b commit 080f79a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/soc/intel/meteorlake/include/soc/iomap.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
#define IOE_P2SB_BAR IOE_PCR_ABOVE_4G_BASE_ADDR
#define IOE_P2SB_SIZE (256 * MiB)

#define IOM_BASE_ADDR 0x3fff0aa0000
#define IOM_BASE_ADDR (IOE_P2SB_BAR + 0xaa0000)
#define IOM_BASE_SIZE 0x1600
#define IOM_BASE_ADDR_MAX 0x3fff0aa15ff
#define IOM_BASE_ADDR_MAX (IOE_P2SB_BAR + 0xaa15ff)

/*
* I/O port address space
Expand Down

0 comments on commit 080f79a

Please sign in to comment.