Pārlūkot izejas kodu

msm: ipa: update the SRAM for uC image

Update the SRAM memory partition table for uC image.

Change-Id: I53e352833dc9a64372ff06b06415081bbe0068fc
Bojun Pan 4 gadi atpakaļ
vecāks
revīzija
eabd422ad1

+ 2 - 0
drivers/platform/msm/ipa/ipa_v3/ipa_i.h

@@ -2434,6 +2434,8 @@ struct ipa3_mem_partition {
 	u32 stats_tethering_size;
 	u32 stats_fnr_ofst;
 	u32 stats_fnr_size;
+	u32 uc_ofst;
+	u32 uc_size;
 
 	/* Irrelevant starting IPA4.5 */
 	u32 stats_flt_v4_ofst;

+ 3 - 3
drivers/platform/msm/ipa/ipa_v3/ipa_uc.c

@@ -6,7 +6,6 @@
 #include "ipa_i.h"
 #include <linux/delay.h>
 
-#define IPA_RAM_UC_SMEM_SIZE 128
 #define IPA_HW_INTERFACE_VERSION     0x2000
 #define IPA_PKT_FLUSH_TO_US 100
 #define IPA_UC_POLL_SLEEP_USEC 100
@@ -1057,9 +1056,10 @@ int ipa3_uc_interface_init(void)
 
 	phys_addr = ipa3_ctx->ipa_wrapper_base +
 		ipa3_ctx->ctrl->ipa_reg_base_ofst +
-		ipahal_get_reg_n_ofst(IPA_SW_AREA_RAM_DIRECT_ACCESS_n, 0);
+		ipahal_get_reg_n_ofst(IPA_SW_AREA_RAM_DIRECT_ACCESS_n, 0) +
+		IPA_MEM_PART(uc_ofst);
 	ipa3_ctx->uc_ctx.uc_sram_mmio = ioremap(phys_addr,
-					       IPA_RAM_UC_SMEM_SIZE);
+		IPA_MEM_PART(uc_size));
 	if (!ipa3_ctx->uc_ctx.uc_sram_mmio) {
 		IPAERR("Fail to ioremap IPA uC SRAM\n");
 		result = -ENOMEM;

+ 17 - 0
drivers/platform/msm/ipa/ipa_v3/ipa_utils.c

@@ -3918,6 +3918,8 @@ static const struct ipa_ep_configuration ipa3_ep_mapping
 };
 
 static struct ipa3_mem_partition ipa_4_1_mem_part = {
+	.uc_ofst				= 0x0,
+	.uc_size				= 0x80,
 	.ofst_start				= 0x280,
 	.v4_flt_hash_ofst		= 0x288,
 	.v4_flt_hash_size		=  0x78,
@@ -4009,6 +4011,8 @@ static struct ipa3_mem_partition ipa_4_1_mem_part = {
 };
 
 static struct ipa3_mem_partition ipa_4_2_mem_part = {
+	.uc_ofst				= 0x0,
+	.uc_size				= 0x80,
 	.ofst_start				= 0x280,
 	.v4_flt_hash_ofst		= 0x288,
 	.v4_flt_hash_size		= 0x0,
@@ -4100,6 +4104,8 @@ static struct ipa3_mem_partition ipa_4_2_mem_part = {
 };
 
 static struct ipa3_mem_partition ipa_4_5_mem_part = {
+	.uc_ofst				= 0x0,
+	.uc_size				= 0x80,
 	.uc_info_ofst			= 0x80,
 	.uc_info_size			= 0x200,
 	.ofst_start			= 0x280,
@@ -4195,6 +4201,8 @@ static struct ipa3_mem_partition ipa_4_5_mem_part = {
 };
 
 static struct ipa3_mem_partition ipa_4_7_mem_part = {
+	.uc_ofst				= 0x0,
+	.uc_size				= 0x80,
 	.uc_info_ofst			= 0x80,
 	.uc_info_size			= 0x200,
 	.ofst_start			= 0x280,
@@ -4290,6 +4298,8 @@ static struct ipa3_mem_partition ipa_4_7_mem_part = {
 };
 
 static struct ipa3_mem_partition ipa_4_9_mem_part = {
+	.uc_ofst				= 0x0,
+	.uc_size				= 0x80,
 	.uc_info_ofst			= 0x80,
 	.uc_info_size			= 0x200,
 	.ofst_start			= 0x280,
@@ -4385,6 +4395,8 @@ static struct ipa3_mem_partition ipa_4_9_mem_part = {
 };
 
 static struct ipa3_mem_partition ipa_4_11_mem_part = {
+        .uc_ofst                        = 0x0,
+        .uc_size                        = 0x80,
         .uc_info_ofst                   = 0x80,
         .uc_info_size                   = 0x200,
         .ofst_start                     = 0x280,
@@ -4482,6 +4494,8 @@ static struct ipa3_mem_partition ipa_4_11_mem_part = {
 static struct ipa3_mem_partition ipa_5_0_mem_part = {
 	.uc_descriptor_ram_ofst = 0x0,
 	.uc_descriptor_ram_size = 0x1000,
+	.uc_ofst = 0x1000,
+	.uc_size = 0x80,
 	.uc_info_ofst = 0x1080,
 	.uc_info_size = 0x200,
 	.ofst_start = 0x1280,
@@ -7255,6 +7269,9 @@ int ipa3_init_mem_partition(enum ipa_hw_type type)
 		return -EPERM;
 	}
 
+	IPADBG("UC OFST 0x%x SIZE 0x%x\n",
+		IPA_MEM_PART(uc_ofst), IPA_MEM_PART(uc_size));
+
 	if (IPA_MEM_PART(uc_info_ofst) & 3) {
 		IPAERR("UC INFO OFST 0x%x is unaligned\n",
 			IPA_MEM_PART(uc_info_ofst));