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 "dm_services.h"
28 #include "include/gpio_interface.h"
29 #include "include/gpio_types.h"
33 #include "reg_helper.h"
37 #define FN(reg_name, field_name) \
38 hpd->shifts->field_name, hpd->masks->field_name
47 static void dal_hw_hpd_destruct(
50 dal_hw_gpio_destruct(&pin->base);
53 static void dal_hw_hpd_destroy(
54 struct hw_gpio_pin **ptr)
56 struct hw_hpd *hpd = HW_HPD_FROM_BASE(*ptr);
58 dal_hw_hpd_destruct(hpd);
65 static enum gpio_result get_value(
66 const struct hw_gpio_pin *ptr,
69 struct hw_hpd *hpd = HW_HPD_FROM_BASE(ptr);
70 uint32_t hpd_delayed = 0;
72 /* in Interrupt mode we ask for SENSE bit */
74 if (ptr->mode == GPIO_MODE_INTERRUPT) {
77 DC_HPD_SENSE_DELAYED, &hpd_delayed);
80 return GPIO_RESULT_OK;
83 /* in any other modes, operate as normal GPIO */
85 return dal_hw_gpio_get_value(ptr, value);
88 static enum gpio_result set_config(
89 struct hw_gpio_pin *ptr,
90 const struct gpio_config_data *config_data)
92 struct hw_hpd *hpd = HW_HPD_FROM_BASE(ptr);
95 return GPIO_RESULT_INVALID_DATA;
97 REG_UPDATE_2(toggle_filt_cntl,
98 DC_HPD_CONNECT_INT_DELAY, config_data->config.hpd.delay_on_connect / 10,
99 DC_HPD_DISCONNECT_INT_DELAY, config_data->config.hpd.delay_on_disconnect / 10);
101 return GPIO_RESULT_OK;
104 static const struct hw_gpio_pin_funcs funcs = {
105 .destroy = dal_hw_hpd_destroy,
106 .open = dal_hw_gpio_open,
107 .get_value = get_value,
108 .set_value = dal_hw_gpio_set_value,
109 .set_config = set_config,
110 .change_mode = dal_hw_gpio_change_mode,
111 .close = dal_hw_gpio_close,
114 static void dal_hw_hpd_construct(
118 struct dc_context *ctx)
120 dal_hw_gpio_construct(&pin->base, id, en, ctx);
121 pin->base.base.funcs = &funcs;
124 void dal_hw_hpd_init(
125 struct hw_hpd **hw_hpd,
126 struct dc_context *ctx,
130 if ((en < GPIO_DDC_LINE_MIN) || (en > GPIO_DDC_LINE_MAX)) {
131 ASSERT_CRITICAL(false);
135 *hw_hpd = kzalloc(sizeof(struct hw_hpd), GFP_KERNEL);
137 ASSERT_CRITICAL(false);
141 dal_hw_hpd_construct(*hw_hpd, id, en, ctx);
144 struct hw_gpio_pin *dal_hw_hpd_get_pin(struct gpio *gpio)
146 struct hw_hpd *hw_hpd = dal_gpio_get_hpd(gpio);
148 return &hw_hpd->base.base;