|
@@ -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));
|