blob: 7f5f2c3d0ae0b7e1777d54c5cc1158a5b5fe249c [file] [log] [blame]
Lloyd Atkinson77158732016-10-23 13:02:00 -04001/* Copyright (c) 2015-2017, The Linux Foundation. All rights reserved.
Narendra Muppalla1b0b3352015-09-29 10:16:51 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#include "sde_hw_mdss.h"
14#include "sde_hwio.h"
15#include "sde_hw_catalog.h"
16#include "sde_hw_pingpong.h"
17
18#define PP_TEAR_CHECK_EN 0x000
19#define PP_SYNC_CONFIG_VSYNC 0x004
20#define PP_SYNC_CONFIG_HEIGHT 0x008
21#define PP_SYNC_WRCOUNT 0x00C
22#define PP_VSYNC_INIT_VAL 0x010
23#define PP_INT_COUNT_VAL 0x014
24#define PP_SYNC_THRESH 0x018
25#define PP_START_POS 0x01C
26#define PP_RD_PTR_IRQ 0x020
27#define PP_WR_PTR_IRQ 0x024
28#define PP_OUT_LINE_COUNT 0x028
29#define PP_LINE_COUNT 0x02C
30#define PP_AUTOREFRESH_CONFIG 0x030
31
32#define PP_FBC_MODE 0x034
33#define PP_FBC_BUDGET_CTL 0x038
34#define PP_FBC_LOSSY_MODE 0x03C
35#define PP_DSC_MODE 0x0a0
36#define PP_DCE_DATA_IN_SWAP 0x0ac
37#define PP_DCE_DATA_OUT_SWAP 0x0c8
38
39static struct sde_pingpong_cfg *_pingpong_offset(enum sde_pingpong pp,
40 struct sde_mdss_cfg *m,
41 void __iomem *addr,
42 struct sde_hw_blk_reg_map *b)
43{
44 int i;
45
46 for (i = 0; i < m->pingpong_count; i++) {
47 if (pp == m->pingpong[i].id) {
48 b->base_off = addr;
49 b->blk_off = m->pingpong[i].base;
Lloyd Atkinson77158732016-10-23 13:02:00 -040050 b->length = m->pingpong[i].len;
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070051 b->hwversion = m->hwversion;
Clarence Ip4ce59322016-06-26 22:27:51 -040052 b->log_mask = SDE_DBG_MASK_PINGPONG;
Narendra Muppalla1b0b3352015-09-29 10:16:51 -070053 return &m->pingpong[i];
54 }
55 }
56
57 return ERR_PTR(-EINVAL);
58}
59
60static int sde_hw_pp_setup_te_config(struct sde_hw_pingpong *pp,
61 struct sde_hw_tear_check *te)
62{
63 struct sde_hw_blk_reg_map *c = &pp->hw;
64 int cfg;
65
66 cfg = BIT(19); /*VSYNC_COUNTER_EN */
67 if (te->hw_vsync_mode)
68 cfg |= BIT(20);
69
70 cfg |= te->vsync_count;
71
72 SDE_REG_WRITE(c, PP_SYNC_CONFIG_VSYNC, cfg);
73 SDE_REG_WRITE(c, PP_SYNC_CONFIG_HEIGHT, te->sync_cfg_height);
74 SDE_REG_WRITE(c, PP_VSYNC_INIT_VAL, te->vsync_init_val);
75 SDE_REG_WRITE(c, PP_RD_PTR_IRQ, te->rd_ptr_irq);
76 SDE_REG_WRITE(c, PP_START_POS, te->start_pos);
77 SDE_REG_WRITE(c, PP_SYNC_THRESH,
78 ((te->sync_threshold_continue << 16) |
79 te->sync_threshold_start));
80 SDE_REG_WRITE(c, PP_SYNC_WRCOUNT,
81 (te->start_pos + te->sync_threshold_start + 1));
82
83 return 0;
84}
85
86int sde_hw_pp_setup_autorefresh_config(struct sde_hw_pingpong *pp,
87 struct sde_hw_autorefresh *cfg)
88{
89 struct sde_hw_blk_reg_map *c = &pp->hw;
90 u32 refresh_cfg;
91
92 if (cfg->enable)
93 refresh_cfg = BIT(31) | cfg->frame_count;
94 else
95 refresh_cfg = 0;
96
97 SDE_REG_WRITE(c, PP_AUTOREFRESH_CONFIG,
98 refresh_cfg);
99
100 return 0;
101}
102
103int sde_hw_pp_setup_dsc_compression(struct sde_hw_pingpong *pp,
104 struct sde_hw_dsc_cfg *cfg)
105{
106 return 0;
107}
108int sde_hw_pp_enable_te(struct sde_hw_pingpong *pp, bool enable)
109{
110 struct sde_hw_blk_reg_map *c = &pp->hw;
111
112 SDE_REG_WRITE(c, PP_TEAR_CHECK_EN, enable);
113 return 0;
114}
115
116int sde_hw_pp_get_vsync_info(struct sde_hw_pingpong *pp,
117 struct sde_hw_pp_vsync_info *info)
118{
119 struct sde_hw_blk_reg_map *c = &pp->hw;
Lloyd Atkinson3127a092016-05-30 13:46:55 -0400120 u32 val;
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700121
Lloyd Atkinson3127a092016-05-30 13:46:55 -0400122 val = SDE_REG_READ(c, PP_VSYNC_INIT_VAL);
123 info->init_val = val & 0xffff;
124
125 val = SDE_REG_READ(c, PP_INT_COUNT_VAL);
126 info->vsync_count = (val & 0xffff0000) >> 16;
127 info->line_count = val & 0xffff;
Narendra Muppalla1b0b3352015-09-29 10:16:51 -0700128
129 return 0;
130}
131
132static void _setup_pingpong_ops(struct sde_hw_pingpong_ops *ops,
133 unsigned long cap)
134{
135 ops->setup_tearcheck = sde_hw_pp_setup_te_config;
136 ops->enable_tearcheck = sde_hw_pp_enable_te;
137 ops->get_vsync_info = sde_hw_pp_get_vsync_info;
138 ops->setup_autorefresh = sde_hw_pp_setup_autorefresh_config;
139 ops->setup_dsc = sde_hw_pp_setup_dsc_compression;
140};
141
142struct sde_hw_pingpong *sde_hw_pingpong_init(enum sde_pingpong idx,
143 void __iomem *addr,
144 struct sde_mdss_cfg *m)
145{
146 struct sde_hw_pingpong *c;
147 struct sde_pingpong_cfg *cfg;
148
149 c = kzalloc(sizeof(*c), GFP_KERNEL);
150 if (!c)
151 return ERR_PTR(-ENOMEM);
152
153 cfg = _pingpong_offset(idx, m, addr, &c->hw);
154 if (IS_ERR_OR_NULL(cfg)) {
155 kfree(c);
156 return ERR_PTR(-EINVAL);
157 }
158
159 c->idx = idx;
160 c->pingpong_hw_cap = cfg;
161 _setup_pingpong_ops(&c->ops, c->pingpong_hw_cap->features);
162
163 return c;
164}
165
Lloyd Atkinson3127a092016-05-30 13:46:55 -0400166void sde_hw_pingpong_destroy(struct sde_hw_pingpong *pp)
167{
168 kfree(pp);
169}