1*2874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
2f7018c21STomi Valkeinen /*
3f7018c21STomi Valkeinen * Copyright (C) 2007 Advanced Micro Devices, Inc.
4f7018c21STomi Valkeinen * Copyright (C) 2008 Andres Salomon <dilinger@debian.org>
5f7018c21STomi Valkeinen */
6f7018c21STomi Valkeinen #include <linux/fb.h>
7f7018c21STomi Valkeinen #include <asm/io.h>
8f7018c21STomi Valkeinen #include <asm/msr.h>
9f7018c21STomi Valkeinen #include <linux/cs5535.h>
10f7018c21STomi Valkeinen #include <asm/delay.h>
11f7018c21STomi Valkeinen
12f7018c21STomi Valkeinen #include "gxfb.h"
13f7018c21STomi Valkeinen
gx_save_regs(struct gxfb_par * par)14f7018c21STomi Valkeinen static void gx_save_regs(struct gxfb_par *par)
15f7018c21STomi Valkeinen {
16f7018c21STomi Valkeinen int i;
17f7018c21STomi Valkeinen
18f7018c21STomi Valkeinen /* wait for the BLT engine to stop being busy */
19f7018c21STomi Valkeinen do {
20f7018c21STomi Valkeinen i = read_gp(par, GP_BLT_STATUS);
21f7018c21STomi Valkeinen } while (i & (GP_BLT_STATUS_BLT_PENDING | GP_BLT_STATUS_BLT_BUSY));
22f7018c21STomi Valkeinen
23f7018c21STomi Valkeinen /* save MSRs */
24f7018c21STomi Valkeinen rdmsrl(MSR_GX_MSR_PADSEL, par->msr.padsel);
25f7018c21STomi Valkeinen rdmsrl(MSR_GLCP_DOTPLL, par->msr.dotpll);
26f7018c21STomi Valkeinen
27f7018c21STomi Valkeinen write_dc(par, DC_UNLOCK, DC_UNLOCK_UNLOCK);
28f7018c21STomi Valkeinen
29f7018c21STomi Valkeinen /* save registers */
30f7018c21STomi Valkeinen memcpy(par->gp, par->gp_regs, sizeof(par->gp));
31f7018c21STomi Valkeinen memcpy(par->dc, par->dc_regs, sizeof(par->dc));
32f7018c21STomi Valkeinen memcpy(par->vp, par->vid_regs, sizeof(par->vp));
33f7018c21STomi Valkeinen memcpy(par->fp, par->vid_regs + VP_FP_START, sizeof(par->fp));
34f7018c21STomi Valkeinen
35f7018c21STomi Valkeinen /* save the palette */
36f7018c21STomi Valkeinen write_dc(par, DC_PAL_ADDRESS, 0);
37f7018c21STomi Valkeinen for (i = 0; i < ARRAY_SIZE(par->pal); i++)
38f7018c21STomi Valkeinen par->pal[i] = read_dc(par, DC_PAL_DATA);
39f7018c21STomi Valkeinen }
40f7018c21STomi Valkeinen
gx_set_dotpll(uint32_t dotpll_hi)41f7018c21STomi Valkeinen static void gx_set_dotpll(uint32_t dotpll_hi)
42f7018c21STomi Valkeinen {
43f7018c21STomi Valkeinen uint32_t dotpll_lo;
44f7018c21STomi Valkeinen int i;
45f7018c21STomi Valkeinen
46f7018c21STomi Valkeinen rdmsrl(MSR_GLCP_DOTPLL, dotpll_lo);
47f7018c21STomi Valkeinen dotpll_lo |= MSR_GLCP_DOTPLL_DOTRESET;
48f7018c21STomi Valkeinen dotpll_lo &= ~MSR_GLCP_DOTPLL_BYPASS;
49f7018c21STomi Valkeinen wrmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi);
50f7018c21STomi Valkeinen
51f7018c21STomi Valkeinen /* wait for the PLL to lock */
52f7018c21STomi Valkeinen for (i = 0; i < 200; i++) {
53f7018c21STomi Valkeinen rdmsrl(MSR_GLCP_DOTPLL, dotpll_lo);
54f7018c21STomi Valkeinen if (dotpll_lo & MSR_GLCP_DOTPLL_LOCK)
55f7018c21STomi Valkeinen break;
56f7018c21STomi Valkeinen udelay(1);
57f7018c21STomi Valkeinen }
58f7018c21STomi Valkeinen
59f7018c21STomi Valkeinen /* PLL set, unlock */
60f7018c21STomi Valkeinen dotpll_lo &= ~MSR_GLCP_DOTPLL_DOTRESET;
61f7018c21STomi Valkeinen wrmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi);
62f7018c21STomi Valkeinen }
63f7018c21STomi Valkeinen
gx_restore_gfx_proc(struct gxfb_par * par)64f7018c21STomi Valkeinen static void gx_restore_gfx_proc(struct gxfb_par *par)
65f7018c21STomi Valkeinen {
66f7018c21STomi Valkeinen int i;
67f7018c21STomi Valkeinen
68f7018c21STomi Valkeinen for (i = 0; i < ARRAY_SIZE(par->gp); i++) {
69f7018c21STomi Valkeinen switch (i) {
70f7018c21STomi Valkeinen case GP_VECTOR_MODE:
71f7018c21STomi Valkeinen case GP_BLT_MODE:
72f7018c21STomi Valkeinen case GP_BLT_STATUS:
73f7018c21STomi Valkeinen case GP_HST_SRC:
74f7018c21STomi Valkeinen /* don't restore these registers */
75f7018c21STomi Valkeinen break;
76f7018c21STomi Valkeinen default:
77f7018c21STomi Valkeinen write_gp(par, i, par->gp[i]);
78f7018c21STomi Valkeinen }
79f7018c21STomi Valkeinen }
80f7018c21STomi Valkeinen }
81f7018c21STomi Valkeinen
gx_restore_display_ctlr(struct gxfb_par * par)82f7018c21STomi Valkeinen static void gx_restore_display_ctlr(struct gxfb_par *par)
83f7018c21STomi Valkeinen {
84f7018c21STomi Valkeinen int i;
85f7018c21STomi Valkeinen
86f7018c21STomi Valkeinen for (i = 0; i < ARRAY_SIZE(par->dc); i++) {
87f7018c21STomi Valkeinen switch (i) {
88f7018c21STomi Valkeinen case DC_UNLOCK:
89f7018c21STomi Valkeinen /* unlock the DC; runs first */
90f7018c21STomi Valkeinen write_dc(par, DC_UNLOCK, DC_UNLOCK_UNLOCK);
91f7018c21STomi Valkeinen break;
92f7018c21STomi Valkeinen
93f7018c21STomi Valkeinen case DC_GENERAL_CFG:
94f7018c21STomi Valkeinen /* write without the enables */
95f7018c21STomi Valkeinen write_dc(par, i, par->dc[i] & ~(DC_GENERAL_CFG_VIDE |
96f7018c21STomi Valkeinen DC_GENERAL_CFG_ICNE |
97f7018c21STomi Valkeinen DC_GENERAL_CFG_CURE |
98f7018c21STomi Valkeinen DC_GENERAL_CFG_DFLE));
99f7018c21STomi Valkeinen break;
100f7018c21STomi Valkeinen
101f7018c21STomi Valkeinen case DC_DISPLAY_CFG:
102f7018c21STomi Valkeinen /* write without the enables */
103f7018c21STomi Valkeinen write_dc(par, i, par->dc[i] & ~(DC_DISPLAY_CFG_VDEN |
104f7018c21STomi Valkeinen DC_DISPLAY_CFG_GDEN |
105f7018c21STomi Valkeinen DC_DISPLAY_CFG_TGEN));
106f7018c21STomi Valkeinen break;
107f7018c21STomi Valkeinen
108f7018c21STomi Valkeinen case DC_RSVD_0:
109f7018c21STomi Valkeinen case DC_RSVD_1:
110f7018c21STomi Valkeinen case DC_RSVD_2:
111f7018c21STomi Valkeinen case DC_RSVD_3:
112f7018c21STomi Valkeinen case DC_RSVD_4:
113f7018c21STomi Valkeinen case DC_LINE_CNT:
114f7018c21STomi Valkeinen case DC_PAL_ADDRESS:
115f7018c21STomi Valkeinen case DC_PAL_DATA:
116f7018c21STomi Valkeinen case DC_DFIFO_DIAG:
117f7018c21STomi Valkeinen case DC_CFIFO_DIAG:
118f7018c21STomi Valkeinen case DC_RSVD_5:
119f7018c21STomi Valkeinen /* don't restore these registers */
120f7018c21STomi Valkeinen break;
121f7018c21STomi Valkeinen default:
122f7018c21STomi Valkeinen write_dc(par, i, par->dc[i]);
123f7018c21STomi Valkeinen }
124f7018c21STomi Valkeinen }
125f7018c21STomi Valkeinen
126f7018c21STomi Valkeinen /* restore the palette */
127f7018c21STomi Valkeinen write_dc(par, DC_PAL_ADDRESS, 0);
128f7018c21STomi Valkeinen for (i = 0; i < ARRAY_SIZE(par->pal); i++)
129f7018c21STomi Valkeinen write_dc(par, DC_PAL_DATA, par->pal[i]);
130f7018c21STomi Valkeinen }
131f7018c21STomi Valkeinen
gx_restore_video_proc(struct gxfb_par * par)132f7018c21STomi Valkeinen static void gx_restore_video_proc(struct gxfb_par *par)
133f7018c21STomi Valkeinen {
134f7018c21STomi Valkeinen int i;
135f7018c21STomi Valkeinen
136f7018c21STomi Valkeinen wrmsrl(MSR_GX_MSR_PADSEL, par->msr.padsel);
137f7018c21STomi Valkeinen
138f7018c21STomi Valkeinen for (i = 0; i < ARRAY_SIZE(par->vp); i++) {
139f7018c21STomi Valkeinen switch (i) {
140f7018c21STomi Valkeinen case VP_VCFG:
141f7018c21STomi Valkeinen /* don't enable video yet */
142f7018c21STomi Valkeinen write_vp(par, i, par->vp[i] & ~VP_VCFG_VID_EN);
143f7018c21STomi Valkeinen break;
144f7018c21STomi Valkeinen
145f7018c21STomi Valkeinen case VP_DCFG:
146f7018c21STomi Valkeinen /* don't enable CRT yet */
147f7018c21STomi Valkeinen write_vp(par, i, par->vp[i] &
148f7018c21STomi Valkeinen ~(VP_DCFG_DAC_BL_EN | VP_DCFG_VSYNC_EN |
149f7018c21STomi Valkeinen VP_DCFG_HSYNC_EN | VP_DCFG_CRT_EN));
150f7018c21STomi Valkeinen break;
151f7018c21STomi Valkeinen
152f7018c21STomi Valkeinen case VP_GAR:
153f7018c21STomi Valkeinen case VP_GDR:
154f7018c21STomi Valkeinen case VP_RSVD_0:
155f7018c21STomi Valkeinen case VP_RSVD_1:
156f7018c21STomi Valkeinen case VP_RSVD_2:
157f7018c21STomi Valkeinen case VP_RSVD_3:
158f7018c21STomi Valkeinen case VP_CRC32:
159f7018c21STomi Valkeinen case VP_AWT:
160f7018c21STomi Valkeinen case VP_VTM:
161f7018c21STomi Valkeinen /* don't restore these registers */
162f7018c21STomi Valkeinen break;
163f7018c21STomi Valkeinen default:
164f7018c21STomi Valkeinen write_vp(par, i, par->vp[i]);
165f7018c21STomi Valkeinen }
166f7018c21STomi Valkeinen }
167f7018c21STomi Valkeinen }
168f7018c21STomi Valkeinen
gx_restore_regs(struct gxfb_par * par)169f7018c21STomi Valkeinen static void gx_restore_regs(struct gxfb_par *par)
170f7018c21STomi Valkeinen {
171f7018c21STomi Valkeinen int i;
172f7018c21STomi Valkeinen
173f7018c21STomi Valkeinen gx_set_dotpll((uint32_t) (par->msr.dotpll >> 32));
174f7018c21STomi Valkeinen gx_restore_gfx_proc(par);
175f7018c21STomi Valkeinen gx_restore_display_ctlr(par);
176f7018c21STomi Valkeinen gx_restore_video_proc(par);
177f7018c21STomi Valkeinen
178f7018c21STomi Valkeinen /* Flat Panel */
179f7018c21STomi Valkeinen for (i = 0; i < ARRAY_SIZE(par->fp); i++) {
180f7018c21STomi Valkeinen if (i != FP_PM && i != FP_RSVD_0)
181f7018c21STomi Valkeinen write_fp(par, i, par->fp[i]);
182f7018c21STomi Valkeinen }
183f7018c21STomi Valkeinen }
184f7018c21STomi Valkeinen
gx_disable_graphics(struct gxfb_par * par)185f7018c21STomi Valkeinen static void gx_disable_graphics(struct gxfb_par *par)
186f7018c21STomi Valkeinen {
187f7018c21STomi Valkeinen /* shut down the engine */
188f7018c21STomi Valkeinen write_vp(par, VP_VCFG, par->vp[VP_VCFG] & ~VP_VCFG_VID_EN);
189f7018c21STomi Valkeinen write_vp(par, VP_DCFG, par->vp[VP_DCFG] & ~(VP_DCFG_DAC_BL_EN |
190f7018c21STomi Valkeinen VP_DCFG_VSYNC_EN | VP_DCFG_HSYNC_EN | VP_DCFG_CRT_EN));
191f7018c21STomi Valkeinen
192f7018c21STomi Valkeinen /* turn off the flat panel */
193f7018c21STomi Valkeinen write_fp(par, FP_PM, par->fp[FP_PM] & ~FP_PM_P);
194f7018c21STomi Valkeinen
195f7018c21STomi Valkeinen
196f7018c21STomi Valkeinen /* turn off display */
197f7018c21STomi Valkeinen write_dc(par, DC_UNLOCK, DC_UNLOCK_UNLOCK);
198f7018c21STomi Valkeinen write_dc(par, DC_GENERAL_CFG, par->dc[DC_GENERAL_CFG] &
199f7018c21STomi Valkeinen ~(DC_GENERAL_CFG_VIDE | DC_GENERAL_CFG_ICNE |
200f7018c21STomi Valkeinen DC_GENERAL_CFG_CURE | DC_GENERAL_CFG_DFLE));
201f7018c21STomi Valkeinen write_dc(par, DC_DISPLAY_CFG, par->dc[DC_DISPLAY_CFG] &
202f7018c21STomi Valkeinen ~(DC_DISPLAY_CFG_VDEN | DC_DISPLAY_CFG_GDEN |
203f7018c21STomi Valkeinen DC_DISPLAY_CFG_TGEN));
204f7018c21STomi Valkeinen write_dc(par, DC_UNLOCK, DC_UNLOCK_LOCK);
205f7018c21STomi Valkeinen }
206f7018c21STomi Valkeinen
gx_enable_graphics(struct gxfb_par * par)207f7018c21STomi Valkeinen static void gx_enable_graphics(struct gxfb_par *par)
208f7018c21STomi Valkeinen {
209f7018c21STomi Valkeinen uint32_t fp;
210f7018c21STomi Valkeinen
211f7018c21STomi Valkeinen fp = read_fp(par, FP_PM);
212f7018c21STomi Valkeinen if (par->fp[FP_PM] & FP_PM_P) {
213f7018c21STomi Valkeinen /* power on the panel if not already power{ed,ing} on */
214f7018c21STomi Valkeinen if (!(fp & (FP_PM_PANEL_ON|FP_PM_PANEL_PWR_UP)))
215f7018c21STomi Valkeinen write_fp(par, FP_PM, par->fp[FP_PM]);
216f7018c21STomi Valkeinen } else {
217f7018c21STomi Valkeinen /* power down the panel if not already power{ed,ing} down */
218f7018c21STomi Valkeinen if (!(fp & (FP_PM_PANEL_OFF|FP_PM_PANEL_PWR_DOWN)))
219f7018c21STomi Valkeinen write_fp(par, FP_PM, par->fp[FP_PM]);
220f7018c21STomi Valkeinen }
221f7018c21STomi Valkeinen
222f7018c21STomi Valkeinen /* turn everything on */
223f7018c21STomi Valkeinen write_vp(par, VP_VCFG, par->vp[VP_VCFG]);
224f7018c21STomi Valkeinen write_vp(par, VP_DCFG, par->vp[VP_DCFG]);
225f7018c21STomi Valkeinen write_dc(par, DC_DISPLAY_CFG, par->dc[DC_DISPLAY_CFG]);
226f7018c21STomi Valkeinen /* do this last; it will enable the FIFO load */
227f7018c21STomi Valkeinen write_dc(par, DC_GENERAL_CFG, par->dc[DC_GENERAL_CFG]);
228f7018c21STomi Valkeinen
229f7018c21STomi Valkeinen /* lock the door behind us */
230f7018c21STomi Valkeinen write_dc(par, DC_UNLOCK, DC_UNLOCK_LOCK);
231f7018c21STomi Valkeinen }
232f7018c21STomi Valkeinen
gx_powerdown(struct fb_info * info)233f7018c21STomi Valkeinen int gx_powerdown(struct fb_info *info)
234f7018c21STomi Valkeinen {
235f7018c21STomi Valkeinen struct gxfb_par *par = info->par;
236f7018c21STomi Valkeinen
237f7018c21STomi Valkeinen if (par->powered_down)
238f7018c21STomi Valkeinen return 0;
239f7018c21STomi Valkeinen
240f7018c21STomi Valkeinen gx_save_regs(par);
241f7018c21STomi Valkeinen gx_disable_graphics(par);
242f7018c21STomi Valkeinen
243f7018c21STomi Valkeinen par->powered_down = 1;
244f7018c21STomi Valkeinen return 0;
245f7018c21STomi Valkeinen }
246f7018c21STomi Valkeinen
gx_powerup(struct fb_info * info)247f7018c21STomi Valkeinen int gx_powerup(struct fb_info *info)
248f7018c21STomi Valkeinen {
249f7018c21STomi Valkeinen struct gxfb_par *par = info->par;
250f7018c21STomi Valkeinen
251f7018c21STomi Valkeinen if (!par->powered_down)
252f7018c21STomi Valkeinen return 0;
253f7018c21STomi Valkeinen
254f7018c21STomi Valkeinen gx_restore_regs(par);
255f7018c21STomi Valkeinen gx_enable_graphics(par);
256f7018c21STomi Valkeinen
257f7018c21STomi Valkeinen par->powered_down = 0;
258f7018c21STomi Valkeinen return 0;
259f7018c21STomi Valkeinen }
260