hc
2023-03-21 4b55d97acc464242bcd6a8ae77b8ff37c22dec58
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
/* Copyright (c) 2015-2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * 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.
 */
 
#ifndef __DPU_IRQ_H__
#define __DPU_IRQ_H__
 
#include <linux/kernel.h>
#include <linux/irqdomain.h>
 
#include "msm_kms.h"
 
/**
 * dpu_irq_controller - define MDSS level interrupt controller context
 * @enabled_mask:    enable status of MDSS level interrupt
 * @domain:        interrupt domain of this controller
 */
struct dpu_irq_controller {
   unsigned long enabled_mask;
   struct irq_domain *domain;
};
 
/**
 * dpu_irq_preinstall - perform pre-installation of MDSS IRQ handler
 * @kms:        pointer to kms context
 * @return:        none
 */
void dpu_irq_preinstall(struct msm_kms *kms);
 
/**
 * dpu_irq_postinstall - perform post-installation of MDSS IRQ handler
 * @kms:        pointer to kms context
 * @return:        0 if success; error code otherwise
 */
int dpu_irq_postinstall(struct msm_kms *kms);
 
/**
 * dpu_irq_uninstall - uninstall MDSS IRQ handler
 * @drm_dev:        pointer to kms context
 * @return:        none
 */
void dpu_irq_uninstall(struct msm_kms *kms);
 
/**
 * dpu_irq - MDSS level IRQ handler
 * @kms:        pointer to kms context
 * @return:        interrupt handling status
 */
irqreturn_t dpu_irq(struct msm_kms *kms);
 
#endif /* __DPU_IRQ_H__ */