mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
a646d6ec90
This patch includes code implementing the modem functionality. There are several communication paths between the AP and modem, separate from the main data path provided by IPA. SMP2P provides primitive messaging and interrupt capability, and QMI allows more complex out-of-band messaging to occur between entities on the AP and modem. (SMP2P and QMI support are added by the next patch.) Management of these (plus the network device implementing the data path) is done by code within "ipa_modem.c". Sort of unrelated, this patch also includes the code supporting the microcontroller CPU present on the IPA. The microcontroller can be used to implement special handling of packets, but at this time we don't support that. Still, it is a component that needs to be initialized, and in the event of a crash we need to do some synchronization between the AP and the microcontroller. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
33 lines
680 B
C
33 lines
680 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
|
|
* Copyright (C) 2019-2020 Linaro Ltd.
|
|
*/
|
|
#ifndef _IPA_UC_H_
|
|
#define _IPA_UC_H_
|
|
|
|
struct ipa;
|
|
|
|
/**
|
|
* ipa_uc_setup() - set up the IPA microcontroller subsystem
|
|
* @ipa: IPA pointer
|
|
*/
|
|
void ipa_uc_setup(struct ipa *ipa);
|
|
|
|
/**
|
|
* ipa_uc_teardown() - inverse of ipa_uc_setup()
|
|
* @ipa: IPA pointer
|
|
*/
|
|
void ipa_uc_teardown(struct ipa *ipa);
|
|
|
|
/**
|
|
* ipa_uc_panic_notifier()
|
|
* @ipa: IPA pointer
|
|
*
|
|
* Notifier function called when the system crashes, to inform the
|
|
* microcontroller of the event.
|
|
*/
|
|
void ipa_uc_panic_notifier(struct ipa *ipa);
|
|
|
|
#endif /* _IPA_UC_H_ */
|