1 /*
2  * Copyright 2012-15 Advanced Micro Devices, Inc.
3  *
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:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
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.
21  *
22  * Authors: AMD
23  *
24  */
25 
26 #include <linux/slab.h>
27 
28 #include "dm_services.h"
29 #include "dm_helpers.h"
30 #include "core_types.h"
31 
32 /*******************************************************************************
33  * Private functions
34  ******************************************************************************/
35 
dc_sink_construct(struct dc_sink * sink,const struct dc_sink_init_data * init_params)36 static bool dc_sink_construct(struct dc_sink *sink, const struct dc_sink_init_data *init_params)
37 {
38 
39 	struct dc_link *link = init_params->link;
40 
41 	if (!link)
42 		return false;
43 
44 	sink->sink_signal = init_params->sink_signal;
45 	sink->link = link;
46 	sink->ctx = link->ctx;
47 	sink->dongle_max_pix_clk = init_params->dongle_max_pix_clk;
48 	sink->converter_disable_audio = init_params->converter_disable_audio;
49 	sink->dc_container_id = NULL;
50 	sink->sink_id = init_params->link->ctx->dc_sink_id_count;
51 	// increment dc_sink_id_count because we don't want two sinks with same ID
52 	// unless they are actually the same
53 	init_params->link->ctx->dc_sink_id_count++;
54 
55 	return true;
56 }
57 
58 /*******************************************************************************
59  * Public functions
60  ******************************************************************************/
61 
dc_sink_retain(struct dc_sink * sink)62 void dc_sink_retain(struct dc_sink *sink)
63 {
64 	kref_get(&sink->refcount);
65 }
66 
dc_sink_free(struct kref * kref)67 static void dc_sink_free(struct kref *kref)
68 {
69 	struct dc_sink *sink = container_of(kref, struct dc_sink, refcount);
70 	kfree(sink->dc_container_id);
71 	kfree(sink);
72 }
73 
dc_sink_release(struct dc_sink * sink)74 void dc_sink_release(struct dc_sink *sink)
75 {
76 	kref_put(&sink->refcount, dc_sink_free);
77 }
78 
dc_sink_create(const struct dc_sink_init_data * init_params)79 struct dc_sink *dc_sink_create(const struct dc_sink_init_data *init_params)
80 {
81 	struct dc_sink *sink = kzalloc(sizeof(*sink), GFP_KERNEL);
82 
83 	if (NULL == sink)
84 		goto alloc_fail;
85 
86 	if (false == dc_sink_construct(sink, init_params))
87 		goto construct_fail;
88 
89 	kref_init(&sink->refcount);
90 
91 	return sink;
92 
93 construct_fail:
94 	kfree(sink);
95 
96 alloc_fail:
97 	return NULL;
98 }
99 
100 /*******************************************************************************
101  * Protected functions - visible only inside of DC (not visible in DM)
102  ******************************************************************************/
103