Files
Linux_Drivers/linux_5.10/drivers/net/ipa/ipa_uc.h
sam.xiang 5c7dd7acc3 [linux] create linux_5.10.4 from T-head official:
repo: https://github.com/T-head-Semi/linux
	commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb

Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
2023-03-10 20:32:41 +08:00

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_ */