diff options
author | Andres Salomon <dilinger@queued.net> | 2008-04-28 05:15:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:39 -0400 |
commit | f5c90e85dc77669a55fecfb593bb8e7f47374ee2 (patch) | |
tree | e33321b93005f2e0db1793f5c0c397cb386b4d28 /drivers/video/geode/lxfb.h | |
parent | 9286361beab8ef5c928ecb2bfefe68ab0176238b (diff) |
lxfb: clean up register definitions
- Rename various bitfield defines to match the data sheet names.
- Rename DF_ register definitions to VP_ to match the data sheet;
ie, DF_PAR -> VP_PAR.
- for GP/DC registers, rather than defining to specific addresses, use
an enum to number them sequentially and just multiply by 4 (bytes) to
access them (in read_*/write_* functions).
- for VP/FP registers, use an enum and multiple by 8 (bytes). They're
64bit registers.
Signed-off-by: Andres Salomon <dilinger@debian.org>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Cc: Jordan Crouse <jordan.crouse@amd.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/geode/lxfb.h')
-rw-r--r-- | drivers/video/geode/lxfb.h | 377 |
1 files changed, 269 insertions, 108 deletions
diff --git a/drivers/video/geode/lxfb.h b/drivers/video/geode/lxfb.h index 60579f4d004a..6eac13d0ffb4 100644 --- a/drivers/video/geode/lxfb.h +++ b/drivers/video/geode/lxfb.h | |||
@@ -54,181 +54,342 @@ void lx_set_palette_reg(struct fb_info *, unsigned int, unsigned int, | |||
54 | #define DC_SPARE_PIX8_PAN_FIX 0x00000010 | 54 | #define DC_SPARE_PIX8_PAN_FIX 0x00000010 |
55 | #define DC_SPARE_FIRST_REQ_MASK 0x00000002 | 55 | #define DC_SPARE_FIRST_REQ_MASK 0x00000002 |
56 | 56 | ||
57 | /* Registers */ | ||
58 | 57 | ||
59 | #define DC_UNLOCK 0x00 | 58 | /* Graphics Processor registers (table 6-29 from the data book) */ |
60 | #define DC_UNLOCK_CODE 0x4758 | 59 | enum gp_registers { |
60 | GP_DST_OFFSET = 0, | ||
61 | GP_SRC_OFFSET, | ||
62 | GP_STRIDE, | ||
63 | GP_WID_HEIGHT, | ||
64 | |||
65 | GP_SRC_COLOR_FG, | ||
66 | GP_SRC_COLOR_BG, | ||
67 | GP_PAT_COLOR_0, | ||
68 | GP_PAT_COLOR_1, | ||
69 | |||
70 | GP_PAT_COLOR_2, | ||
71 | GP_PAT_COLOR_3, | ||
72 | GP_PAT_COLOR_4, | ||
73 | GP_PAT_COLOR_5, | ||
74 | |||
75 | GP_PAT_DATA_0, | ||
76 | GP_PAT_DATA_1, | ||
77 | GP_RASTER_MODE, | ||
78 | GP_VECTOR_MODE, | ||
79 | |||
80 | GP_BLT_MODE, | ||
81 | GP_BLT_STATUS, | ||
82 | GP_HST_SRC, | ||
83 | GP_BASE_OFFSET, | ||
84 | |||
85 | GP_CMD_TOP, | ||
86 | GP_CMD_BOT, | ||
87 | GP_CMD_READ, | ||
88 | GP_CMD_WRITE, | ||
89 | |||
90 | GP_CH3_OFFSET, | ||
91 | GP_CH3_MODE_STR, | ||
92 | GP_CH3_WIDHI, | ||
93 | GP_CH3_HSRC, | ||
94 | |||
95 | GP_LUT_INDEX, | ||
96 | GP_LUT_DATA, | ||
97 | GP_INT_CNTRL, /* 0x78 */ | ||
98 | }; | ||
99 | |||
100 | #define GP_BLT_STATUS_CE (1 << 4) /* cmd buf empty */ | ||
101 | #define GP_BLT_STATUS_PB (1 << 0) /* primative busy */ | ||
102 | |||
103 | |||
104 | /* Display Controller registers (table 6-47 from the data book) */ | ||
105 | enum dc_registers { | ||
106 | DC_UNLOCK = 0, | ||
107 | DC_GENERAL_CFG, | ||
108 | DC_DISPLAY_CFG, | ||
109 | DC_ARB_CFG, | ||
110 | |||
111 | DC_FB_ST_OFFSET, | ||
112 | DC_CB_ST_OFFSET, | ||
113 | DC_CURS_ST_OFFSET, | ||
114 | DC_RSVD_0, | ||
115 | |||
116 | DC_VID_Y_ST_OFFSET, | ||
117 | DC_VID_U_ST_OFFSET, | ||
118 | DC_VID_V_ST_OFFSET, | ||
119 | DC_DV_TOP, | ||
120 | |||
121 | DC_LINE_SIZE, | ||
122 | DC_GFX_PITCH, | ||
123 | DC_VID_YUV_PITCH, | ||
124 | DC_RSVD_1, | ||
125 | |||
126 | DC_H_ACTIVE_TIMING, | ||
127 | DC_H_BLANK_TIMING, | ||
128 | DC_H_SYNC_TIMING, | ||
129 | DC_RSVD_2, | ||
130 | |||
131 | DC_V_ACTIVE_TIMING, | ||
132 | DC_V_BLANK_TIMING, | ||
133 | DC_V_SYNC_TIMING, | ||
134 | DC_FB_ACTIVE, | ||
135 | |||
136 | DC_CURSOR_X, | ||
137 | DC_CURSOR_Y, | ||
138 | DC_RSVD_3, | ||
139 | DC_LINE_CNT, | ||
140 | |||
141 | DC_PAL_ADDRESS, | ||
142 | DC_PAL_DATA, | ||
143 | DC_DFIFO_DIAG, | ||
144 | DC_CFIFO_DIAG, | ||
145 | |||
146 | DC_VID_DS_DELTA, | ||
147 | DC_GLIU0_MEM_OFFSET, | ||
148 | DC_DV_CTL, | ||
149 | DC_DV_ACCESS, | ||
150 | |||
151 | DC_GFX_SCALE, | ||
152 | DC_IRQ_FILT_CTL, | ||
153 | DC_FILT_COEFF1, | ||
154 | DC_FILT_COEFF2, | ||
155 | |||
156 | DC_VBI_EVEN_CTL, | ||
157 | DC_VBI_ODD_CTL, | ||
158 | DC_VBI_HOR, | ||
159 | DC_VBI_LN_ODD, | ||
160 | |||
161 | DC_VBI_LN_EVEN, | ||
162 | DC_VBI_PITCH, | ||
163 | DC_CLR_KEY, | ||
164 | DC_CLR_KEY_MASK, | ||
165 | |||
166 | DC_CLR_KEY_X, | ||
167 | DC_CLR_KEY_Y, | ||
168 | DC_IRQ, | ||
169 | DC_RSVD_4, | ||
170 | |||
171 | DC_RSVD_5, | ||
172 | DC_GENLK_CTL, | ||
173 | DC_VID_EVEN_Y_ST_OFFSET, | ||
174 | DC_VID_EVEN_U_ST_OFFSET, | ||
175 | |||
176 | DC_VID_EVEN_V_ST_OFFSET, | ||
177 | DC_V_ACTIVE_EVEN_TIMING, | ||
178 | DC_V_BLANK_EVEN_TIMING, | ||
179 | DC_V_SYNC_EVEN_TIMING, /* 0xec */ | ||
180 | }; | ||
181 | |||
182 | #define DC_UNLOCK_LOCK 0x00000000 | ||
183 | #define DC_UNLOCK_UNLOCK 0x00004758 /* magic value */ | ||
184 | |||
185 | #define DC_GENERAL_CFG_FDTY (1 << 17) | ||
186 | #define DC_GENERAL_CFG_DFHPEL_SHIFT (12) | ||
187 | #define DC_GENERAL_CFG_DFHPSL_SHIFT (8) | ||
188 | #define DC_GENERAL_CFG_VGAE (1 << 7) | ||
189 | #define DC_GENERAL_CFG_DECE (1 << 6) | ||
190 | #define DC_GENERAL_CFG_CMPE (1 << 5) | ||
191 | #define DC_GENERAL_CFG_VIDE (1 << 3) | ||
192 | #define DC_GENERAL_CFG_DFLE (1 << 0) | ||
61 | 193 | ||
62 | #define DC_GENERAL_CFG 0x04 | 194 | #define DC_DISPLAY_CFG_VISL (1 << 27) |
63 | #define DC_GCFG_DFLE (1 << 0) | 195 | #define DC_DISPLAY_CFG_PALB (1 << 25) |
64 | #define DC_GCFG_VIDE (1 << 3) | 196 | #define DC_DISPLAY_CFG_DCEN (1 << 24) |
65 | #define DC_GCFG_VGAE (1 << 7) | 197 | #define DC_DISPLAY_CFG_DISP_MODE_24BPP (1 << 9) |
66 | #define DC_GCFG_CMPE (1 << 5) | 198 | #define DC_DISPLAY_CFG_DISP_MODE_16BPP (1 << 8) |
67 | #define DC_GCFG_DECE (1 << 6) | 199 | #define DC_DISPLAY_CFG_DISP_MODE_8BPP (0) |
68 | #define DC_GCFG_FDTY (1 << 17) | 200 | #define DC_DISPLAY_CFG_TRUP (1 << 6) |
201 | #define DC_DISPLAY_CFG_VDEN (1 << 4) | ||
202 | #define DC_DISPLAY_CFG_GDEN (1 << 3) | ||
203 | #define DC_DISPLAY_CFG_TGEN (1 << 0) | ||
69 | 204 | ||
70 | #define DC_DISPLAY_CFG 0x08 | 205 | #define DC_DV_TOP_DV_TOP_EN (1 << 0) |
71 | #define DC_DCFG_TGEN (1 << 0) | ||
72 | #define DC_DCFG_GDEN (1 << 3) | ||
73 | #define DC_DCFG_VDEN (1 << 4) | ||
74 | #define DC_DCFG_TRUP (1 << 6) | ||
75 | #define DC_DCFG_DCEN (1 << 24) | ||
76 | #define DC_DCFG_PALB (1 << 25) | ||
77 | #define DC_DCFG_VISL (1 << 27) | ||
78 | 206 | ||
79 | #define DC_DCFG_16BPP 0x0 | 207 | #define DC_DV_CTL_DV_LINE_SIZE ((1 << 10) | (1 << 11)) |
208 | #define DC_DV_CTL_DV_LINE_SIZE_1K (0) | ||
209 | #define DC_DV_CTL_DV_LINE_SIZE_2K (1 << 10) | ||
210 | #define DC_DV_CTL_DV_LINE_SIZE_4K (1 << 11) | ||
211 | #define DC_DV_CTL_DV_LINE_SIZE_8K ((1 << 10) | (1 << 11)) | ||
80 | 212 | ||
81 | #define DC_DCFG_DISP_MODE_MASK 0x00000300 | 213 | #define DC_CLR_KEY_CLR_KEY_EN (1 << 24) |
82 | #define DC_DCFG_DISP_MODE_8BPP 0x00000000 | ||
83 | #define DC_DCFG_DISP_MODE_16BPP 0x00000100 | ||
84 | #define DC_DCFG_DISP_MODE_24BPP 0x00000200 | ||
85 | #define DC_DCFG_DISP_MODE_32BPP 0x00000300 | ||
86 | 214 | ||
215 | #define DC_IRQ_VIP_VSYNC_IRQ_STATUS (1 << 21) /* undocumented? */ | ||
216 | #define DC_IRQ_STATUS (1 << 20) /* undocumented? */ | ||
217 | #define DC_IRQ_VIP_VSYNC_LOSS_IRQ_MASK (1 << 1) | ||
218 | #define DC_IRQ_MASK (1 << 0) | ||
87 | 219 | ||
88 | #define DC_ARB_CFG 0x0C | 220 | #define DC_GENLK_CTL_FLICK_SEL_MASK (0x0F << 28) |
221 | #define DC_GENLK_CTL_ALPHA_FLICK_EN (1 << 25) | ||
222 | #define DC_GENLK_CTL_FLICK_EN (1 << 24) | ||
223 | #define DC_GENLK_CTL_GENLK_EN (1 << 18) | ||
89 | 224 | ||
90 | #define DC_FB_START 0x10 | ||
91 | #define DC_CB_START 0x14 | ||
92 | #define DC_CURSOR_START 0x18 | ||
93 | 225 | ||
94 | #define DC_DV_TOP 0x2C | 226 | /* |
95 | #define DC_DV_TOP_ENABLE (1 << 0) | 227 | * Video Processor registers (table 6-71). |
228 | * There is space for 64 bit values, but we never use more than the | ||
229 | * lower 32 bits. The actual register save/restore code only bothers | ||
230 | * to restore those 32 bits. | ||
231 | */ | ||
232 | enum vp_registers { | ||
233 | VP_VCFG = 0, | ||
234 | VP_DCFG, | ||
96 | 235 | ||
97 | #define DC_LINE_SIZE 0x30 | 236 | VP_VX, |
98 | #define DC_GRAPHICS_PITCH 0x34 | 237 | VP_VY, |
99 | #define DC_H_ACTIVE_TIMING 0x40 | ||
100 | #define DC_H_BLANK_TIMING 0x44 | ||
101 | #define DC_H_SYNC_TIMING 0x48 | ||
102 | #define DC_V_ACTIVE_TIMING 0x50 | ||
103 | #define DC_V_BLANK_TIMING 0x54 | ||
104 | #define DC_V_SYNC_TIMING 0x58 | ||
105 | #define DC_FB_ACTIVE 0x5C | ||
106 | 238 | ||
107 | #define DC_PAL_ADDRESS 0x70 | 239 | VP_SCL, |
108 | #define DC_PAL_DATA 0x74 | 240 | VP_VCK, |
109 | 241 | ||
110 | #define DC_PHY_MEM_OFFSET 0x84 | 242 | VP_VCM, |
243 | VP_PAR, | ||
111 | 244 | ||
112 | #define DC_DV_CTL 0x88 | 245 | VP_PDR, |
113 | #define DC_DV_LINE_SIZE_MASK 0x00000C00 | 246 | VP_SLR, |
114 | #define DC_DV_LINE_SIZE_1024 0x00000000 | ||
115 | #define DC_DV_LINE_SIZE_2048 0x00000400 | ||
116 | #define DC_DV_LINE_SIZE_4096 0x00000800 | ||
117 | #define DC_DV_LINE_SIZE_8192 0x00000C00 | ||
118 | 247 | ||
248 | VP_MISC, | ||
249 | VP_CCS, | ||
119 | 250 | ||
120 | #define DC_GFX_SCALE 0x90 | 251 | VP_VYS, |
121 | #define DC_IRQ_FILT_CTL 0x94 | 252 | VP_VXS, |
122 | 253 | ||
254 | VP_RSVD_0, | ||
255 | VP_VDC, | ||
123 | 256 | ||
124 | #define DC_IRQ 0xC8 | 257 | VP_RSVD_1, |
125 | #define DC_IRQ_MASK (1 << 0) | 258 | VP_CRC, |
126 | #define DC_VSYNC_IRQ_MASK (1 << 1) | ||
127 | #define DC_IRQ_STATUS (1 << 20) | ||
128 | #define DC_VSYNC_IRQ_STATUS (1 << 21) | ||
129 | 259 | ||
130 | #define DC_GENLCK_CTRL 0xD4 | 260 | VP_CRC32, |
131 | #define DC_GENLCK_ENABLE (1 << 18) | 261 | VP_VDE, |
132 | #define DC_GC_ALPHA_FLICK_ENABLE (1 << 25) | ||
133 | #define DC_GC_FLICKER_FILTER_ENABLE (1 << 24) | ||
134 | #define DC_GC_FLICKER_FILTER_MASK (0x0F << 28) | ||
135 | 262 | ||
136 | #define DC_COLOR_KEY 0xB8 | 263 | VP_CCK, |
137 | #define DC_CLR_KEY_ENABLE (1 << 24) | 264 | VP_CCM, |
138 | 265 | ||
266 | VP_CC1, | ||
267 | VP_CC2, | ||
139 | 268 | ||
140 | #define DC3_DV_LINE_SIZE_MASK 0x00000C00 | 269 | VP_A1X, |
141 | #define DC3_DV_LINE_SIZE_1024 0x00000000 | 270 | VP_A1Y, |
142 | #define DC3_DV_LINE_SIZE_2048 0x00000400 | ||
143 | #define DC3_DV_LINE_SIZE_4096 0x00000800 | ||
144 | #define DC3_DV_LINE_SIZE_8192 0x00000C00 | ||
145 | 271 | ||
146 | #define DF_VIDEO_CFG 0x0 | 272 | VP_A1C, |
147 | #define DF_VCFG_VID_EN (1 << 0) | 273 | VP_A1T, |
148 | 274 | ||
149 | #define DF_DISPLAY_CFG 0x08 | 275 | VP_A2X, |
276 | VP_A2Y, | ||
150 | 277 | ||
151 | #define DF_DCFG_CRT_EN (1 << 0) | 278 | VP_A2C, |
152 | #define DF_DCFG_HSYNC_EN (1 << 1) | 279 | VP_A2T, |
153 | #define DF_DCFG_VSYNC_EN (1 << 2) | ||
154 | #define DF_DCFG_DAC_BL_EN (1 << 3) | ||
155 | #define DF_DCFG_CRT_HSYNC_POL (1 << 8) | ||
156 | #define DF_DCFG_CRT_VSYNC_POL (1 << 9) | ||
157 | #define DF_DCFG_GV_PAL_BYP (1 << 21) | ||
158 | 280 | ||
159 | #define DF_DCFG_CRT_SYNC_SKW_INIT 0x10000 | 281 | VP_A3X, |
160 | #define DF_DCFG_CRT_SYNC_SKW_MASK 0x1c000 | 282 | VP_A3Y, |
161 | 283 | ||
162 | #define DF_DCFG_PWR_SEQ_DLY_INIT 0x80000 | 284 | VP_A3C, |
163 | #define DF_DCFG_PWR_SEQ_DLY_MASK 0xe0000 | 285 | VP_A3T, |
286 | |||
287 | VP_VRR, | ||
288 | VP_AWT, | ||
289 | |||
290 | VP_VTM, | ||
291 | VP_VYE, | ||
292 | |||
293 | VP_A1YE, | ||
294 | VP_A2YE, | ||
295 | |||
296 | VP_A3YE, /* 0x150 */ | ||
297 | }; | ||
164 | 298 | ||
165 | #define DF_MISC 0x50 | 299 | #define VP_VCFG_VID_EN (1 << 0) |
166 | 300 | ||
167 | #define DF_MISC_GAM_BYPASS (1 << 0) | 301 | #define VP_DCFG_GV_GAM (1 << 21) |
168 | #define DF_MISC_DAC_PWRDN (1 << 10) | 302 | #define VP_DCFG_PWR_SEQ_DELAY ((1 << 17) | (1 << 18) | (1 << 19)) |
169 | #define DF_MISC_A_PWRDN (1 << 11) | 303 | #define VP_DCFG_PWR_SEQ_DELAY_DEFAULT (1 << 19) /* undocumented */ |
304 | #define VP_DCFG_CRT_SYNC_SKW ((1 << 14) | (1 << 15) | (1 << 16)) | ||
305 | #define VP_DCFG_CRT_SYNC_SKW_DEFAULT (1 << 16) | ||
306 | #define VP_DCFG_CRT_VSYNC_POL (1 << 9) | ||
307 | #define VP_DCFG_CRT_HSYNC_POL (1 << 8) | ||
308 | #define VP_DCFG_DAC_BL_EN (1 << 3) | ||
309 | #define VP_DCFG_VSYNC_EN (1 << 2) | ||
310 | #define VP_DCFG_HSYNC_EN (1 << 1) | ||
311 | #define VP_DCFG_CRT_EN (1 << 0) | ||
170 | 312 | ||
171 | #define DF_PAR 0x38 | 313 | #define VP_MISC_APWRDN (1 << 11) |
172 | #define DF_PDR 0x40 | 314 | #define VP_MISC_DACPWRDN (1 << 10) |
173 | #define DF_ALPHA_CONTROL_1 0xD8 | 315 | #define VP_MISC_BYP_BOTH (1 << 0) |
174 | #define DF_VIDEO_REQUEST 0x120 | ||
175 | 316 | ||
176 | #define DF_PANEL_TIM1 0x400 | ||
177 | #define DF_DEFAULT_TFT_PMTIM1 0x0 | ||
178 | 317 | ||
179 | #define DF_PANEL_TIM2 0x408 | 318 | /* |
180 | #define DF_DEFAULT_TFT_PMTIM2 0x08000000 | 319 | * Flat Panel registers (table 6-71). |
320 | * Also 64 bit registers; see above note about 32-bit handling. | ||
321 | */ | ||
322 | |||
323 | /* we're actually in the VP register space, starting at address 0x400 */ | ||
324 | #define VP_FP_START 0x400 | ||
325 | |||
326 | enum fp_registers { | ||
327 | FP_PT1 = 0, | ||
328 | FP_PT2, | ||
329 | |||
330 | FP_PM, | ||
331 | FP_DFC, | ||
332 | |||
333 | FP_RSVD_0, | ||
334 | FP_RSVD_1, | ||
335 | |||
336 | FP_RSVD_2, | ||
337 | FP_RSVD_3, | ||
338 | |||
339 | FP_RSVD_4, | ||
340 | FP_DCA, | ||
341 | |||
342 | FP_DMD, | ||
343 | FP_CRC, /* 0x458 */ | ||
344 | }; | ||
345 | |||
346 | #define FP_PT2_SCRC (1 << 27) /* shfclk free */ | ||
181 | 347 | ||
182 | #define DF_FP_PM 0x410 | 348 | #define FP_PM_P (1 << 24) /* panel power ctl */ |
183 | #define DF_FP_PM_P (1 << 24) | ||
184 | 349 | ||
185 | #define DF_DITHER_CONTROL 0x418 | 350 | #define FP_DFC_BC ((1 << 4) | (1 << 5) | (1 << 6)) |
186 | #define DF_DEFAULT_TFT_DITHCTL 0x00000070 | ||
187 | #define GP_BLT_STATUS 0x44 | ||
188 | #define GP_BS_BLT_BUSY (1 << 0) | ||
189 | #define GP_BS_CB_EMPTY (1 << 4) | ||
190 | 351 | ||
191 | 352 | ||
192 | /* register access functions */ | 353 | /* register access functions */ |
193 | 354 | ||
194 | static inline uint32_t read_gp(struct lxfb_par *par, int reg) | 355 | static inline uint32_t read_gp(struct lxfb_par *par, int reg) |
195 | { | 356 | { |
196 | return readl(par->gp_regs + reg); | 357 | return readl(par->gp_regs + 4*reg); |
197 | } | 358 | } |
198 | 359 | ||
199 | static inline void write_gp(struct lxfb_par *par, int reg, uint32_t val) | 360 | static inline void write_gp(struct lxfb_par *par, int reg, uint32_t val) |
200 | { | 361 | { |
201 | writel(val, par->gp_regs + reg); | 362 | writel(val, par->gp_regs + 4*reg); |
202 | } | 363 | } |
203 | 364 | ||
204 | static inline uint32_t read_dc(struct lxfb_par *par, int reg) | 365 | static inline uint32_t read_dc(struct lxfb_par *par, int reg) |
205 | { | 366 | { |
206 | return readl(par->dc_regs + reg); | 367 | return readl(par->dc_regs + 4*reg); |
207 | } | 368 | } |
208 | 369 | ||
209 | static inline void write_dc(struct lxfb_par *par, int reg, uint32_t val) | 370 | static inline void write_dc(struct lxfb_par *par, int reg, uint32_t val) |
210 | { | 371 | { |
211 | writel(val, par->dc_regs + reg); | 372 | writel(val, par->dc_regs + 4*reg); |
212 | } | 373 | } |
213 | 374 | ||
214 | static inline uint32_t read_vp(struct lxfb_par *par, int reg) | 375 | static inline uint32_t read_vp(struct lxfb_par *par, int reg) |
215 | { | 376 | { |
216 | return readl(par->df_regs + reg); | 377 | return readl(par->df_regs + 8*reg); |
217 | } | 378 | } |
218 | 379 | ||
219 | static inline void write_vp(struct lxfb_par *par, int reg, uint32_t val) | 380 | static inline void write_vp(struct lxfb_par *par, int reg, uint32_t val) |
220 | { | 381 | { |
221 | writel(val, par->df_regs + reg); | 382 | writel(val, par->df_regs + 8*reg); |
222 | } | 383 | } |
223 | 384 | ||
224 | static inline uint32_t read_fp(struct lxfb_par *par, int reg) | 385 | static inline uint32_t read_fp(struct lxfb_par *par, int reg) |
225 | { | 386 | { |
226 | return readl(par->df_regs + reg); | 387 | return readl(par->df_regs + 8*reg + VP_FP_START); |
227 | } | 388 | } |
228 | 389 | ||
229 | static inline void write_fp(struct lxfb_par *par, int reg, uint32_t val) | 390 | static inline void write_fp(struct lxfb_par *par, int reg, uint32_t val) |
230 | { | 391 | { |
231 | writel(val, par->df_regs + reg); | 392 | writel(val, par->df_regs + 8*reg + VP_FP_START); |
232 | } | 393 | } |
233 | 394 | ||
234 | #endif | 395 | #endif |