summaryrefslogtreecommitdiff
path: root/drivers/edgetpu/edgetpu-dram.h
blob: baffb9f1a05b6588f794faffc4fcec436d57df4f (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Defines the interface of device DRAM management.
 *
 * Copyright (C) 2019 Google, Inc.
 */
#ifndef __EDGETPU_DRAM_H__
#define __EDGETPU_DRAM_H__

#include <linux/dma-buf.h>
#include <linux/seq_file.h>

#include "edgetpu-internal.h"
#include "edgetpu-mmu.h"
#include "edgetpu.h"

#if IS_ENABLED(CONFIG_EDGETPU_DEVICE_DRAM)

#define EDGETPU_HAS_DEVICE_DRAM

/* Initializes structures for device DRAM management. */
int edgetpu_device_dram_init(struct edgetpu_dev *etdev);

/*
 * Returns the dma-buf FD allocated on the @client's DRAM with size @size.
 */
int edgetpu_device_dram_getfd(struct edgetpu_client *client, u64 size);

/*
 * Sets translations up to have dies access other dies' DRAM.
 *
 * This function is called when finalizing @group, @group's state is WAITING but
 * edgetpu_device_group_nth_etdev() is ready to use.
 *
 * Caller holds @group->lock.
 *
 * Returns 0 on success, or -errno on error.
 */
int edgetpu_group_setup_remote_dram(struct edgetpu_device_group *group);

/*
 * Reverts edgetpu_group_setup_remote_dram().
 * This function is called when disbanding @group.
 *
 * Caller holds @group->lock.
 */
void edgetpu_group_remove_remote_dram(struct edgetpu_device_group *group);

/*
 * Allocate device DRAM for internal driver use.
 * Returns page-aligned kernel VA with length @size, or NULL if not available.
 *
 * @size must be page-aligned.
 * @tpu_phys returns the TPU space physical address of the allocation.
 */
void __iomem *edgetpu_device_dram_alloc(struct edgetpu_dev *etdev, u64 size,
					phys_addr_t *tpu_phys);

/* Free device DRAM allocated via edgetpu_device_dram_alloc. */
void edgetpu_device_dram_free(struct edgetpu_dev *etdev, void __iomem *kva,
			      u64 size);

/* Add any private debug info related to @dmabuf in seq_file @s. */
void edgetpu_device_dram_dmabuf_info_show(struct dma_buf *dmabuf,
					  struct seq_file *s);
#else /* !CONFIG_EDGETPU_DEVICE_DRAM */

static inline int edgetpu_device_dram_init(struct edgetpu_dev *etdev)
{
	/*
	 * Returns zero since nothing has to be done in initialization if the
	 * device DRAM is not supported.
	 */
	return 0;
}

static inline int edgetpu_device_dram_getfd(struct edgetpu_client *client,
					    u64 size)
{
	return -ENODEV;
}

static inline int
edgetpu_group_setup_remote_dram(struct edgetpu_device_group *group)
{
	/*
	 * Returns 0 since chip without on-device DRAM won't access remote
	 * DRAM.
	 */
	return 0;
}

static inline void
edgetpu_group_remove_remote_dram(struct edgetpu_device_group *group)
{
}

static inline void __iomem *edgetpu_device_dram_alloc(struct edgetpu_dev *etdev,
						      u64 size,
						      phys_addr_t *tpu_phys)
{
	return NULL;
}

static inline void edgetpu_device_dram_free(struct edgetpu_dev *etdev,
					    void __iomem *kva, u64 size)
{
}

static inline void edgetpu_device_dram_dmabuf_info_show(struct dma_buf *dmabuf,
							struct seq_file *s)
{
}

#endif /* CONFIG_EDGETPU_DEVICE_DRAM */

#endif /* __EDGETPU_DRAM_H__ */