summaryrefslogtreecommitdiff
path: root/inc/qcom_ramdump.h
blob: 9b56dc32778ef32784c79d38efac0c6aa4b852e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
 */

#ifndef _QCOM_RAMDUMP_HEADER
#define _QCOM_RAMDUMP_HEADER
#include <linux/kernel.h>
#include <linux/firmware.h>

struct device;

struct qcom_dump_segment {
	struct list_head node;
	dma_addr_t da;
	void *va;
	size_t size;
};

#if IS_ENABLED(CONFIG_QCOM_RAMDUMP)
extern int qcom_elf_dump(struct list_head *segs, struct device *dev);
extern int qcom_dump(struct list_head *head, struct device *dev);
extern int qcom_fw_elf_dump(struct firmware *fw, struct device *dev);
extern bool dump_enabled(void);
#ifdef CONFIG_WCN_GOOGLE
extern void cnss_register_sscd(void);
extern void cnss_unregister_sscd(void);
extern void sscd_release(struct device *dev);
#endif
#else
static inline int qcom_elf_dump(struct list_head *segs, struct device *dev)
{
	return -ENODEV;
}
static inline int qcom_dump(struct list_head *head, struct device *dev)
{
	return -ENODEV;
}
static inline int qcom_fw_elf_dump(struct firmware *fw, struct device *dev)
{
	return -ENODEV;
}
static inline bool dump_enabled(void)
{
	return false;
}
#endif /* CONFIG_QCOM_RAMDUMP */

#endif