From 67ac4060d72235d79d06026b6db870a494df63ae Mon Sep 17 00:00:00 2001 From: Jakob Meier Date: Sun, 21 Nov 2021 13:58:05 +0100 Subject: [PATCH] physical ram base adress for q7s --- linux/obc/PdecHandler.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/linux/obc/PdecHandler.h b/linux/obc/PdecHandler.h index 7696a7a0..6a8a6562 100644 --- a/linux/obc/PdecHandler.h +++ b/linux/obc/PdecHandler.h @@ -124,7 +124,12 @@ private: static const size_t MAX_TC_SEGMENT_SIZE = 1017; static const uint8_t MAP_ID_MASK = 0x3F; +#if BOARD_TE0720 == 1 static const uint32_t PHYSICAL_RAM_BASE_ADDRESS = 0x32000000; +#else + static const uint32_t PHYSICAL_RAM_BASE_ADDRESS = 0x26000000; +#endif + static const uint32_t MAP_ADDR_LUT_OFFSET = 0xA0; static const uint32_t MAP_CLK_FREQ_OFFSET = 0x90;