hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
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
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
 *
 * (C) COPYRIGHT 2020-2021 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.
 *
 */
 
#ifndef _PRIORITY_CONTROL_MANAGER_H_
#define _PRIORITY_CONTROL_MANAGER_H_
 
#include <linux/mm.h>
#include <linux/of.h>
#include <linux/version.h>
 
struct priority_control_manager_device;
 
/**
 * struct priority_control_manager_ops - Callbacks for priority control manager operations
 *
 * @pcm_scheduler_priority_check: Callback to check if scheduling priority level can be requested
 */
struct priority_control_manager_ops {
   /*
    * pcm_scheduler_priority_check: This function can be used to check what priority its work
    *                               would be treated as based on the requested_priority value.
    *
    * @pcm_dev:                     The priority control manager through which the request is
    *                               being made.
    * @task:                        The task struct of the process requesting the priority check.
    * @requested_priority:          The priority level being requested.
    *
    * The returned value will be:
    *   The same as requested_priority if the process has permission to use requested_priority
    *   A lower priority value if the process does not have permission to use requested_priority
    *
    * requested_priority has the following value range:
    *   0-3 : Priority level, 0 being highest and 3 being lowest
    *
    * Return: The priority that would actually be given, could be lower than requested_priority
    */
   int (*pcm_scheduler_priority_check)(
       struct priority_control_manager_device *pcm_dev,
       struct task_struct *task, int requested_priority);
};
 
/**
 * struct priority_control_manager_device - Device structure for priority
 *                                          control manager
 *
 * @ops:   Callbacks associated with this device
 * @data:  Pointer to device private data
 * @owner: Pointer to the module owner
 *
 * This structure should be registered with the platform device using
 * platform_set_drvdata().
 */
struct priority_control_manager_device {
   struct priority_control_manager_ops ops;
   void *data;
   struct module *owner;
};
 
#endif /* _PRIORITY_CONTROL_MANAGER_H_ */