.. | .. |
---|
1 | 1 | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ |
---|
2 | 2 | /* |
---|
3 | 3 | * |
---|
4 | | - * (C) COPYRIGHT 2015-2021 ARM Limited. All rights reserved. |
---|
| 4 | + * (C) COPYRIGHT 2015-2022 ARM Limited. All rights reserved. |
---|
5 | 5 | * |
---|
6 | 6 | * This program is free software and is provided to you under the terms of the |
---|
7 | 7 | * GNU General Public License version 2 as published by the Free Software |
---|
.. | .. |
---|
27 | 27 | #include <linux/wait.h> |
---|
28 | 28 | |
---|
29 | 29 | /* The maximum size of a single packet used by timeline. */ |
---|
30 | | -#define PACKET_SIZE 4096 /* bytes */ |
---|
| 30 | +#define PACKET_SIZE 4096 /* bytes */ |
---|
31 | 31 | |
---|
32 | 32 | /* The number of packets used by one timeline stream. */ |
---|
33 | | -#if defined(CONFIG_MALI_JOB_DUMP) || defined(CONFIG_MALI_VECTOR_DUMP) |
---|
34 | | - #define PACKET_COUNT 64 |
---|
35 | | -#else |
---|
36 | | - #define PACKET_COUNT 32 |
---|
37 | | -#endif |
---|
| 33 | +#define PACKET_COUNT 128 |
---|
38 | 34 | |
---|
39 | 35 | /* The maximum expected length of string in tracepoint descriptor. */ |
---|
40 | | -#define STRLEN_MAX 64 /* bytes */ |
---|
| 36 | +#define STRLEN_MAX 64 /* bytes */ |
---|
41 | 37 | |
---|
42 | 38 | /** |
---|
43 | 39 | * struct kbase_tlstream - timeline stream structure |
---|