Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 60c017c5 authored by Armaan Siddiqui's avatar Armaan Siddiqui
Browse files

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: default avatarArmaan Siddiqui <asiddiqu@codeaurora.org>
parent 63eae4e5
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0-only */
/* 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_
#ifndef _IPA_WDI3_H_
@@ -204,10 +204,12 @@ struct ipa_wdi_conn_in_params {
 *				to WLAN driver
 *				to WLAN driver
 * @tx_uc_db_pa: physical address of IPA uC doorbell for TX
 * @tx_uc_db_pa: physical address of IPA uC doorbell for TX
 * @rx_uc_db_pa: physical address of IPA uC doorbell for RX
 * @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 {
struct ipa_wdi_conn_out_params {
	phys_addr_t tx_uc_db_pa;
	phys_addr_t tx_uc_db_pa;
	phys_addr_t rx_uc_db_pa;
	phys_addr_t rx_uc_db_pa;
	bool is_ddr_mapped;
};
};


/**
/**