mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
549b67da66
A region in IMEM is used to communicate load addresses of remoteproc to post mortem debug tools. Implement a helper function that can be used to store this information in order to enable these tools to process collected ramdumps. Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org> Reviewed-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20200622191942.255460-3-bjorn.andersson@linaro.org Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
10 lines
205 B
C
10 lines
205 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __QCOM_PIL_INFO_H__
|
|
#define __QCOM_PIL_INFO_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
int qcom_pil_info_store(const char *image, phys_addr_t base, size_t size);
|
|
|
|
#endif
|