Commit 759c66c6 authored by Ramesh Gupta's avatar Ramesh Gupta Committed by Hari Kanigeri

SYSLINK Proc reduce the default DMM pool size

This patch reduces the DMM pool size to 44M to allow
kernel to use 74M memory with Ducati
Signed-off-by: default avatarRamesh Gupta G <grgupta@ti.com>
parent d40f2f14
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
#define DUCATI_SHARED_IPC_LEN 0x100000 #define DUCATI_SHARED_IPC_LEN 0x100000
#define DUCATI_SW_DMM_ADDR 0x80000000 #define DUCATI_SW_DMM_ADDR 0x80000000
#define DUCATI_SW_DMM_LEN 0x4000000 #define DUCATI_SW_DMM_LEN 0x2C00000
/* Types of mapping attributes */ /* Types of mapping attributes */
...@@ -168,6 +168,8 @@ static const struct memory_entry l3_memory_regions[] = { ...@@ -168,6 +168,8 @@ static const struct memory_entry l3_memory_regions[] = {
{DUCATI_SHARED_M3_DATA_ADDR, DUCATI_SHARED_M3_DATA_LEN}, {DUCATI_SHARED_M3_DATA_ADDR, DUCATI_SHARED_M3_DATA_LEN},
/* IPC*/ /* IPC*/
{DUCATI_SHARED_IPC_ADDR, DUCATI_SHARED_IPC_LEN}, {DUCATI_SHARED_IPC_ADDR, DUCATI_SHARED_IPC_LEN},
/* DMM*/
{DUCATI_SW_DMM_ADDR, DUCATI_SW_DMM_LEN},
}; };
void dbg_print_ptes(bool ashow_inv_entries, bool ashow_repeat_entries); void dbg_print_ptes(bool ashow_inv_entries, bool ashow_repeat_entries);
......
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
* during the make menuconfig. * during the make menuconfig.
* *
*/ */
#define DUCATI_BASEIMAGE_PHYSICAL_ADDRESS 0x83600000 #define DUCATI_BASEIMAGE_PHYSICAL_ADDRESS 0x84A00000
#define phys_to_page(phys) pfn_to_page((phys) >> PAGE_SHIFT) #define phys_to_page(phys) pfn_to_page((phys) >> PAGE_SHIFT)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment