2 * Copyright 2012-15 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
26 #include <linux/slab.h>
28 #include "dm_services.h"
30 #include "include/irq_service_interface.h"
31 #include "include/logger_interface.h"
33 #include "dce110/irq_service_dce110.h"
36 #include "dce80/irq_service_dce80.h"
38 #include "dce120/irq_service_dce120.h"
41 #if defined(CONFIG_DRM_AMD_DC_DCN)
42 #include "dcn10/irq_service_dcn10.h"
45 #include "reg_helper.h"
46 #include "irq_service.h"
53 irq_service->ctx->logger
55 void dal_irq_service_construct(
56 struct irq_service
*irq_service
,
57 struct irq_service_init_data
*init_data
)
59 if (!init_data
|| !init_data
->ctx
) {
64 irq_service
->ctx
= init_data
->ctx
;
67 void dal_irq_service_destroy(struct irq_service
**irq_service
)
69 if (!irq_service
|| !*irq_service
) {
79 const struct irq_source_info
*find_irq_source_info(
80 struct irq_service
*irq_service
,
81 enum dc_irq_source source
)
83 if (source
>= DAL_IRQ_SOURCES_NUMBER
|| source
< DC_IRQ_SOURCE_INVALID
)
86 return &irq_service
->info
[source
];
89 void dal_irq_service_set_generic(
90 struct irq_service
*irq_service
,
91 const struct irq_source_info
*info
,
94 uint32_t addr
= info
->enable_reg
;
95 uint32_t value
= dm_read_reg(irq_service
->ctx
, addr
);
97 value
= (value
& ~info
->enable_mask
) |
98 (info
->enable_value
[enable
? 0 : 1] & info
->enable_mask
);
99 dm_write_reg(irq_service
->ctx
, addr
, value
);
102 bool dal_irq_service_set(
103 struct irq_service
*irq_service
,
104 enum dc_irq_source source
,
107 const struct irq_source_info
*info
=
108 find_irq_source_info(irq_service
, source
);
111 DC_LOG_ERROR("%s: cannot find irq info table entry for %d\n",
117 dal_irq_service_ack(irq_service
, source
);
119 if (info
->funcs
->set
)
120 return info
->funcs
->set(irq_service
, info
, enable
);
122 dal_irq_service_set_generic(irq_service
, info
, enable
);
127 void dal_irq_service_ack_generic(
128 struct irq_service
*irq_service
,
129 const struct irq_source_info
*info
)
131 uint32_t addr
= info
->ack_reg
;
132 uint32_t value
= dm_read_reg(irq_service
->ctx
, addr
);
134 value
= (value
& ~info
->ack_mask
) |
135 (info
->ack_value
& info
->ack_mask
);
136 dm_write_reg(irq_service
->ctx
, addr
, value
);
139 bool dal_irq_service_ack(
140 struct irq_service
*irq_service
,
141 enum dc_irq_source source
)
143 const struct irq_source_info
*info
=
144 find_irq_source_info(irq_service
, source
);
147 DC_LOG_ERROR("%s: cannot find irq info table entry for %d\n",
153 if (info
->funcs
->ack
)
154 return info
->funcs
->ack(irq_service
, info
);
156 dal_irq_service_ack_generic(irq_service
, info
);
161 enum dc_irq_source
dal_irq_service_to_irq_source(
162 struct irq_service
*irq_service
,
166 return irq_service
->funcs
->to_dal_irq_source(