linux/drivers/gpu/drm/amd/display/dc/gpio/dcn10/hw_factory_dcn10.c
<<
>>
Prefs
   1/*
   2 * Copyright 2013-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 "dm_services.h"
  27#include "include/gpio_types.h"
  28#include "../hw_factory.h"
  29
  30
  31#include "../hw_gpio.h"
  32#include "../hw_ddc.h"
  33#include "../hw_hpd.h"
  34
  35#include "hw_factory_dcn10.h"
  36
  37#include "raven1/DCN/dcn_1_0_offset.h"
  38#include "raven1/DCN/dcn_1_0_sh_mask.h"
  39#include "vega10/soc15ip.h"
  40
  41#define block HPD
  42#define reg_num 0
  43
  44/* set field name */
  45#define SF_HPD(reg_name, field_name, post_fix)\
  46        .field_name = HPD0_ ## reg_name ## __ ## field_name ## post_fix
  47
  48#define BASE_INNER(seg) \
  49        DCE_BASE__INST0_SEG ## seg
  50
  51/* compile time expand base address. */
  52#define BASE(seg) \
  53        BASE_INNER(seg)
  54
  55#define REG(reg_name)\
  56                BASE(mm ## reg_name ## _BASE_IDX) + mm ## reg_name
  57
  58#define REGI(reg_name, block, id)\
  59        BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
  60                                mm ## block ## id ## _ ## reg_name
  61
  62#include "reg_helper.h"
  63#include "../hpd_regs.h"
  64
  65#define hpd_regs(id) \
  66{\
  67        HPD_REG_LIST(id)\
  68}
  69
  70static const struct hpd_registers hpd_regs[] = {
  71        hpd_regs(0),
  72        hpd_regs(1),
  73        hpd_regs(2),
  74        hpd_regs(3),
  75        hpd_regs(4),
  76        hpd_regs(5)
  77};
  78
  79static const struct hpd_sh_mask hpd_shift = {
  80                HPD_MASK_SH_LIST(__SHIFT)
  81};
  82
  83static const struct hpd_sh_mask hpd_mask = {
  84                HPD_MASK_SH_LIST(_MASK)
  85};
  86
  87#include "../ddc_regs.h"
  88
  89 /* set field name */
  90#define SF_DDC(reg_name, field_name, post_fix)\
  91        .field_name = reg_name ## __ ## field_name ## post_fix
  92
  93static const struct ddc_registers ddc_data_regs[] = {
  94        ddc_data_regs(1),
  95        ddc_data_regs(2),
  96        ddc_data_regs(3),
  97        ddc_data_regs(4),
  98        ddc_data_regs(5),
  99        ddc_data_regs(6),
 100        ddc_vga_data_regs,
 101        ddc_i2c_data_regs
 102};
 103
 104static const struct ddc_registers ddc_clk_regs[] = {
 105        ddc_clk_regs(1),
 106        ddc_clk_regs(2),
 107        ddc_clk_regs(3),
 108        ddc_clk_regs(4),
 109        ddc_clk_regs(5),
 110        ddc_clk_regs(6),
 111        ddc_vga_clk_regs,
 112        ddc_i2c_clk_regs
 113};
 114
 115static const struct ddc_sh_mask ddc_shift = {
 116                DDC_MASK_SH_LIST(__SHIFT)
 117};
 118
 119static const struct ddc_sh_mask ddc_mask = {
 120                DDC_MASK_SH_LIST(_MASK)
 121};
 122
 123static void define_ddc_registers(
 124                struct hw_gpio_pin *pin,
 125                uint32_t en)
 126{
 127        struct hw_ddc *ddc = HW_DDC_FROM_BASE(pin);
 128
 129        switch (pin->id) {
 130        case GPIO_ID_DDC_DATA:
 131                ddc->regs = &ddc_data_regs[en];
 132                ddc->base.regs = &ddc_data_regs[en].gpio;
 133                break;
 134        case GPIO_ID_DDC_CLOCK:
 135                ddc->regs = &ddc_clk_regs[en];
 136                ddc->base.regs = &ddc_clk_regs[en].gpio;
 137                break;
 138        default:
 139                ASSERT_CRITICAL(false);
 140                return;
 141        }
 142
 143        ddc->shifts = &ddc_shift;
 144        ddc->masks = &ddc_mask;
 145
 146}
 147
 148static void define_hpd_registers(struct hw_gpio_pin *pin, uint32_t en)
 149{
 150        struct hw_hpd *hpd = HW_HPD_FROM_BASE(pin);
 151
 152        hpd->regs = &hpd_regs[en];
 153        hpd->shifts = &hpd_shift;
 154        hpd->masks = &hpd_mask;
 155        hpd->base.regs = &hpd_regs[en].gpio;
 156}
 157
 158
 159/* fucntion table */
 160static const struct hw_factory_funcs funcs = {
 161        .create_ddc_data = dal_hw_ddc_create,
 162        .create_ddc_clock = dal_hw_ddc_create,
 163        .create_generic = NULL,
 164        .create_hpd = dal_hw_hpd_create,
 165        .create_sync = NULL,
 166        .create_gsl = NULL,
 167        .define_hpd_registers = define_hpd_registers,
 168        .define_ddc_registers = define_ddc_registers
 169};
 170/*
 171 * dal_hw_factory_dcn10_init
 172 *
 173 * @brief
 174 * Initialize HW factory function pointers and pin info
 175 *
 176 * @param
 177 * struct hw_factory *factory - [out] struct of function pointers
 178 */
 179void dal_hw_factory_dcn10_init(struct hw_factory *factory)
 180{
 181        /*TODO check ASIC CAPs*/
 182        factory->number_of_pins[GPIO_ID_DDC_DATA] = 8;
 183        factory->number_of_pins[GPIO_ID_DDC_CLOCK] = 8;
 184        factory->number_of_pins[GPIO_ID_GENERIC] = 7;
 185        factory->number_of_pins[GPIO_ID_HPD] = 6;
 186        factory->number_of_pins[GPIO_ID_GPIO_PAD] = 31;
 187        factory->number_of_pins[GPIO_ID_VIP_PAD] = 0;
 188        factory->number_of_pins[GPIO_ID_SYNC] = 2;
 189        factory->number_of_pins[GPIO_ID_GSL] = 4;
 190
 191        factory->funcs = &funcs;
 192}
 193