summaryrefslogtreecommitdiff
path: root/mali_kbase/hw_access/mali_kbase_hw_access.c
blob: 4871e85fdbc3872c80c2cf9a8f03558c59a781bb (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
118
119
120
121
122
123
124
125
126
127
128
// SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note
/*
 *
 * (C) COPYRIGHT 2023 ARM Limited. All rights reserved.
 *
 * This program is free software and is provided to you under the terms of the
 * GNU General Public License version 2 as published by the Free Software
 * Foundation, and any use by you of this program is subject to the terms
 * of such GNU license.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, you can access it online at
 * http://www.gnu.org/licenses/gpl-2.0.html.
 *
 */

#include <linux/io.h>
#include <linux/types.h>

#include <mali_kbase.h>
#include "mali_kbase_hw_access.h"

#include <uapi/gpu/arm/midgard/gpu/mali_kbase_gpu_id.h>

bool kbase_reg_is_size64(struct kbase_device *kbdev, u32 reg_enum)
{
	if (WARN_ON(reg_enum >= kbdev->regmap.size))
		return false;

	return kbdev->regmap.flags[reg_enum] & KBASE_REGMAP_WIDTH_64_BIT;
}

bool kbase_reg_is_size32(struct kbase_device *kbdev, u32 reg_enum)
{
	if (WARN_ON(reg_enum >= kbdev->regmap.size))
		return false;

	return kbdev->regmap.flags[reg_enum] & KBASE_REGMAP_WIDTH_32_BIT;
}

bool kbase_reg_is_valid(struct kbase_device *kbdev, u32 reg_enum)
{
	return reg_enum < kbdev->regmap.size && kbdev->regmap.flags[reg_enum] != 0;
}

bool kbase_reg_is_accessible(struct kbase_device *kbdev, u32 reg_enum, u32 flags)
{
#ifdef CONFIG_MALI_DEBUG
	if (WARN(!kbase_reg_is_valid(kbdev, reg_enum), "Invalid register enum 0x%x: %s", reg_enum,
		 kbase_reg_get_enum_string(reg_enum)))
		return false;
	if (WARN((kbdev->regmap.flags[reg_enum] & flags) != flags,
		 "Invalid register access permissions 0x%x: %s", reg_enum,
		 kbase_reg_get_enum_string(reg_enum)))
		return false;
#else
	CSTD_UNUSED(kbdev);
	CSTD_UNUSED(reg_enum);
	CSTD_UNUSED(flags);
#endif

	return true;
}

int kbase_reg_get_offset(struct kbase_device *kbdev, u32 reg_enum, u32 *offset)
{
	if (unlikely(!kbase_reg_is_accessible(kbdev, reg_enum, 0)))
		return -EINVAL;

	*offset = kbdev->regmap.regs[reg_enum] - kbdev->reg;
	return 0;
}

int kbase_reg_get_enum(struct kbase_device *kbdev, u32 offset, u32 *reg_enum)
{
	size_t i = 0;
	void __iomem *ptr = kbdev->reg + offset;

	for (i = 0; i < kbdev->regmap.size; i++) {
		if (kbdev->regmap.regs[i] == ptr) {
			*reg_enum = (u32)i;
			return 0;
		}
	}

	return -EINVAL;
}

int kbase_regmap_init(struct kbase_device *kbdev)
{
	u32 lut_arch_id;

	if (WARN_ON(kbdev->dev == NULL))
		return -ENODEV;

	if (!IS_ENABLED(CONFIG_MALI_NO_MALI) && WARN_ON(kbdev->reg == NULL))
		return -ENXIO;

	lut_arch_id = kbase_regmap_backend_init(kbdev);

	if (kbdev->regmap.regs == NULL || kbdev->regmap.flags == NULL) {
		kbase_regmap_term(kbdev);
		return -ENOMEM;
	}

	dev_info(kbdev->dev, "Register LUT %08x initialized for GPU arch 0x%08x\n", lut_arch_id,
		 kbdev->gpu_props.gpu_id.arch_id);

#if IS_ENABLED(CONFIG_MALI_64BIT_HW_ACCESS) && IS_ENABLED(CONFIG_MALI_REAL_HW)
	dev_info(kbdev->dev, "64-bit HW access enabled\n");
#endif
	return 0;
}

void kbase_regmap_term(struct kbase_device *kbdev)
{
	kfree(kbdev->regmap.regs);
	kfree(kbdev->regmap.flags);

	kbdev->regmap.regs = NULL;
	kbdev->regmap.flags = NULL;
	kbdev->regmap.size = 0;
}