msm: ipa: Add flag to differentiate b/w gsi db or ddr address

Added flag to differentiate between gsi db address or
ddr address.

Change-Id: I106e993a5e6a86b8d36009d73fa888a8167922c0
Signed-off-by: Armaan Siddiqui <asiddiqu@codeaurora.org>
This commit is contained in:
Armaan Siddiqui 2020-09-19 00:10:17 +05:30 committed by Gerrit - the friendly Code Review server
parent 63e5280bdc
commit 2e692a8c9f

View File

@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2018 - 2019, The Linux Foundation. All rights reserved.
* Copyright (c) 2018 - 2020, The Linux Foundation. All rights reserved.
*/
#ifndef _IPA_WDI3_H_
@ -204,10 +204,12 @@ struct ipa_wdi_conn_in_params {
* to WLAN driver
* @tx_uc_db_pa: physical address of IPA uC doorbell for TX
* @rx_uc_db_pa: physical address of IPA uC doorbell for RX
* @is_ddr_mapped: flag set to true if address is from DDR
*/
struct ipa_wdi_conn_out_params {
phys_addr_t tx_uc_db_pa;
phys_addr_t rx_uc_db_pa;
bool is_ddr_mapped;
};
/**