123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- /*
- * Copyright 2012-15 Advanced Micro Devices, Inc.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
- * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
- * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- *
- * Authors: AMD
- *
- */
- /*
- * Pre-requisites: headers required by header of this unit
- */
- #include "dm_services.h"
- #include "include/gpio_interface.h"
- #include "include/gpio_service_interface.h"
- #include "hw_gpio.h"
- #include "hw_translate.h"
- #include "hw_factory.h"
- #include "gpio_service.h"
- /*
- * Post-requisites: headers required by this unit
- */
- /*
- * This unit
- */
- /*
- * @brief
- * Public API
- */
- enum gpio_result dal_gpio_open(
- struct gpio *gpio,
- enum gpio_mode mode)
- {
- return dal_gpio_open_ex(gpio, mode);
- }
- enum gpio_result dal_gpio_open_ex(
- struct gpio *gpio,
- enum gpio_mode mode)
- {
- if (gpio->pin) {
- ASSERT_CRITICAL(false);
- return GPIO_RESULT_ALREADY_OPENED;
- }
- gpio->mode = mode;
- return dal_gpio_service_open(
- gpio->service, gpio->id, gpio->en, mode, &gpio->pin);
- }
- enum gpio_result dal_gpio_get_value(
- const struct gpio *gpio,
- uint32_t *value)
- {
- if (!gpio->pin) {
- BREAK_TO_DEBUGGER();
- return GPIO_RESULT_NULL_HANDLE;
- }
- return gpio->pin->funcs->get_value(gpio->pin, value);
- }
- enum gpio_result dal_gpio_set_value(
- const struct gpio *gpio,
- uint32_t value)
- {
- if (!gpio->pin) {
- BREAK_TO_DEBUGGER();
- return GPIO_RESULT_NULL_HANDLE;
- }
- return gpio->pin->funcs->set_value(gpio->pin, value);
- }
- enum gpio_mode dal_gpio_get_mode(
- const struct gpio *gpio)
- {
- return gpio->mode;
- }
- enum gpio_result dal_gpio_change_mode(
- struct gpio *gpio,
- enum gpio_mode mode)
- {
- if (!gpio->pin) {
- BREAK_TO_DEBUGGER();
- return GPIO_RESULT_NULL_HANDLE;
- }
- return gpio->pin->funcs->change_mode(gpio->pin, mode);
- }
- enum gpio_id dal_gpio_get_id(
- const struct gpio *gpio)
- {
- return gpio->id;
- }
- uint32_t dal_gpio_get_enum(
- const struct gpio *gpio)
- {
- return gpio->en;
- }
- enum gpio_result dal_gpio_set_config(
- struct gpio *gpio,
- const struct gpio_config_data *config_data)
- {
- if (!gpio->pin) {
- BREAK_TO_DEBUGGER();
- return GPIO_RESULT_NULL_HANDLE;
- }
- return gpio->pin->funcs->set_config(gpio->pin, config_data);
- }
- enum gpio_result dal_gpio_get_pin_info(
- const struct gpio *gpio,
- struct gpio_pin_info *pin_info)
- {
- return gpio->service->translate.funcs->id_to_offset(
- gpio->id, gpio->en, pin_info) ?
- GPIO_RESULT_OK : GPIO_RESULT_INVALID_DATA;
- }
- enum sync_source dal_gpio_get_sync_source(
- const struct gpio *gpio)
- {
- switch (gpio->id) {
- case GPIO_ID_GENERIC:
- switch (gpio->en) {
- case GPIO_GENERIC_A:
- return SYNC_SOURCE_IO_GENERIC_A;
- case GPIO_GENERIC_B:
- return SYNC_SOURCE_IO_GENERIC_B;
- case GPIO_GENERIC_C:
- return SYNC_SOURCE_IO_GENERIC_C;
- case GPIO_GENERIC_D:
- return SYNC_SOURCE_IO_GENERIC_D;
- case GPIO_GENERIC_E:
- return SYNC_SOURCE_IO_GENERIC_E;
- case GPIO_GENERIC_F:
- return SYNC_SOURCE_IO_GENERIC_F;
- default:
- return SYNC_SOURCE_NONE;
- }
- break;
- case GPIO_ID_SYNC:
- switch (gpio->en) {
- case GPIO_SYNC_HSYNC_A:
- return SYNC_SOURCE_IO_HSYNC_A;
- case GPIO_SYNC_VSYNC_A:
- return SYNC_SOURCE_IO_VSYNC_A;
- case GPIO_SYNC_HSYNC_B:
- return SYNC_SOURCE_IO_HSYNC_B;
- case GPIO_SYNC_VSYNC_B:
- return SYNC_SOURCE_IO_VSYNC_B;
- default:
- return SYNC_SOURCE_NONE;
- }
- break;
- case GPIO_ID_HPD:
- switch (gpio->en) {
- case GPIO_HPD_1:
- return SYNC_SOURCE_IO_HPD1;
- case GPIO_HPD_2:
- return SYNC_SOURCE_IO_HPD2;
- default:
- return SYNC_SOURCE_NONE;
- }
- break;
- case GPIO_ID_GSL:
- switch (gpio->en) {
- case GPIO_GSL_GENLOCK_CLOCK:
- return SYNC_SOURCE_GSL_IO_GENLOCK_CLOCK;
- case GPIO_GSL_GENLOCK_VSYNC:
- return SYNC_SOURCE_GSL_IO_GENLOCK_VSYNC;
- case GPIO_GSL_SWAPLOCK_A:
- return SYNC_SOURCE_GSL_IO_SWAPLOCK_A;
- case GPIO_GSL_SWAPLOCK_B:
- return SYNC_SOURCE_GSL_IO_SWAPLOCK_B;
- default:
- return SYNC_SOURCE_NONE;
- }
- break;
- default:
- return SYNC_SOURCE_NONE;
- }
- }
- enum gpio_pin_output_state dal_gpio_get_output_state(
- const struct gpio *gpio)
- {
- return gpio->output_state;
- }
- void dal_gpio_close(
- struct gpio *gpio)
- {
- if (!gpio)
- return;
- dal_gpio_service_close(gpio->service, &gpio->pin);
- gpio->mode = GPIO_MODE_UNKNOWN;
- }
- /*
- * @brief
- * Creation and destruction
- */
- struct gpio *dal_gpio_create(
- struct gpio_service *service,
- enum gpio_id id,
- uint32_t en,
- enum gpio_pin_output_state output_state)
- {
- struct gpio *gpio = kzalloc(sizeof(struct gpio), GFP_KERNEL);
- if (!gpio) {
- ASSERT_CRITICAL(false);
- return NULL;
- }
- gpio->service = service;
- gpio->pin = NULL;
- gpio->id = id;
- gpio->en = en;
- gpio->mode = GPIO_MODE_UNKNOWN;
- gpio->output_state = output_state;
- return gpio;
- }
- void dal_gpio_destroy(
- struct gpio **gpio)
- {
- if (!gpio || !*gpio) {
- ASSERT_CRITICAL(false);
- return;
- }
- dal_gpio_close(*gpio);
- kfree(*gpio);
- *gpio = NULL;
- }
|