msm: ipa3: add v2x ethernet support

Add the v2x ethernet pipe connect support
for offloading v2x traffic.

Change-Id: I5e84f7e1d07722eeb5a7b9fbfbccb69451c72934
Signed-off-by: Pooja Kumari <kumarip@codeaurora.org>
This commit is contained in:
Pooja Kumari 2021-07-01 14:35:56 +05:30 committed by Gerrit - the friendly Code Review server
parent c41f641890
commit 6e7b550193

View File

@ -143,10 +143,14 @@ struct ipa_ntn_conn_in_params {
* @ul_uc_db_pa: physical address of IPA uc doorbell for UL * @ul_uc_db_pa: physical address of IPA uc doorbell for UL
* @dl_uc_db_pa: physical address of IPA uc doorbell for DL * @dl_uc_db_pa: physical address of IPA uc doorbell for DL
* @clnt_hdl: opaque handle assigned to offload client * @clnt_hdl: opaque handle assigned to offload client
* @ul_uc_db_iomem: iomem address of IPA uc doorbell for UL
* @dl_uc_db_iomem: iomem address of IPA uc doorbell for DL
*/ */
struct ipa_ntn_conn_out_params { struct ipa_ntn_conn_out_params {
phys_addr_t ul_uc_db_pa; phys_addr_t ul_uc_db_pa;
phys_addr_t dl_uc_db_pa; phys_addr_t dl_uc_db_pa;
void __iomem *ul_uc_db_iomem;
void __iomem *dl_uc_db_iomem;
}; };
/** /**