Commit 97884b07 authored by Alex Elder's avatar Alex Elder Committed by David S. Miller

net: ipa: fix IPA v4.5 interconnect data

Update the definition of the IPA interconnects for IPA v4.5 so
the path between IPA and system memory is represented by a single
"memory" interconnect.
Tested-by: default avatarManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c0d6316c
...@@ -420,15 +420,10 @@ static const struct ipa_mem_data ipa_mem_data = { ...@@ -420,15 +420,10 @@ static const struct ipa_mem_data ipa_mem_data = {
/* Interconnect rates are in 1000 byte/second units */ /* Interconnect rates are in 1000 byte/second units */
static const struct ipa_interconnect_data ipa_interconnect_data[] = { static const struct ipa_interconnect_data ipa_interconnect_data[] = {
{ {
.name = "memory-a", .name = "memory",
.peak_bandwidth = 600000, /* 600 MBps */ .peak_bandwidth = 600000, /* 600 MBps */
.average_bandwidth = 150000, /* 150 MBps */ .average_bandwidth = 150000, /* 150 MBps */
}, },
{
.name = "memory-b",
.peak_bandwidth = 1804000, /* 1.804 GBps */
.average_bandwidth = 150000, /* 150 MBps */
},
/* Average rate is unused for the next two interconnects */ /* Average rate is unused for the next two interconnects */
{ {
.name = "imem", .name = "imem",
......
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