blob: b7646ad71bb3362ef24e39800669e6aaa472cf2e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/video/atafb.c -- Atari builtin chipset frame buffer device
3 *
4 * Copyright (C) 1994 Martin Schaller & Roman Hodek
Michael Schmitza1005012007-05-01 22:32:39 +02005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive
8 * for more details.
9 *
10 * History:
11 * - 03 Jan 95: Original version by Martin Schaller: The TT driver and
12 * all the device independent stuff
13 * - 09 Jan 95: Roman: I've added the hardware abstraction (hw_switch)
14 * and wrote the Falcon, ST(E), and External drivers
15 * based on the original TT driver.
16 * - 07 May 95: Martin: Added colormap operations for the external driver
17 * - 21 May 95: Martin: Added support for overscan
18 * Andreas: some bug fixes for this
19 * - Jul 95: Guenther Kelleter <guenther@pool.informatik.rwth-aachen.de>:
20 * Programmable Falcon video modes
21 * (thanks to Christian Cartus for documentation
22 * of VIDEL registers).
23 * - 27 Dec 95: Guenther: Implemented user definable video modes "user[0-7]"
24 * on minor 24...31. "user0" may be set on commandline by
25 * "R<x>;<y>;<depth>". (Makes sense only on Falcon)
26 * Video mode switch on Falcon now done at next VBL interrupt
27 * to avoid the annoying right shift of the screen.
28 * - 23 Sep 97: Juergen: added xres_virtual for cards like ProMST
29 * The external-part is legacy, therefore hardware-specific
30 * functions like panning/hardwarescrolling/blanking isn't
31 * supported.
32 * - 29 Sep 97: Juergen: added Romans suggestion for pan_display
33 * (var->xoffset was changed even if no set_screen_base avail.)
34 * - 05 Oct 97: Juergen: extfb (PACKED_PIXEL) is FB_PSEUDOCOLOR 'cause
35 * we know how to set the colors
36 * ext_*palette: read from ext_colors (former MV300_colors)
37 * write to ext_colors and RAMDAC
38 *
39 * To do:
40 * - For the Falcon it is not possible to set random video modes on
41 * SM124 and SC/TV, only the bootup resolution is supported.
42 *
43 */
44
45#define ATAFB_TT
46#define ATAFB_STE
47#define ATAFB_EXT
48#define ATAFB_FALCON
49
50#include <linux/module.h>
51#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/errno.h>
53#include <linux/string.h>
54#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/slab.h>
56#include <linux/delay.h>
57#include <linux/init.h>
58#include <linux/interrupt.h>
59
60#include <asm/setup.h>
Krzysztof Helt84902b72007-10-16 01:29:04 -070061#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/pgtable.h>
63#include <asm/irq.h>
64#include <asm/io.h>
65
66#include <asm/atarihw.h>
67#include <asm/atariints.h>
68#include <asm/atari_stram.h>
69
70#include <linux/fb.h>
71#include <asm/atarikb.h>
72
Michael Schmitza1005012007-05-01 22:32:39 +020073#include "c2p.h"
74#include "atafb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#define SWITCH_ACIA 0x01 /* modes for switch on OverScan */
77#define SWITCH_SND6 0x40
78#define SWITCH_SND7 0x80
79#define SWITCH_NONE 0x00
80
81
82#define up(x, r) (((x) + (r) - 1) & ~((r)-1))
83
Michael Schmitza1005012007-05-01 22:32:39 +020084 /*
85 * Interface to the world
86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Michael Schmitza1005012007-05-01 22:32:39 +020088static int atafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info);
89static int atafb_set_par(struct fb_info *info);
90static int atafb_setcolreg(unsigned int regno, unsigned int red, unsigned int green,
91 unsigned int blue, unsigned int transp,
92 struct fb_info *info);
93static int atafb_blank(int blank, struct fb_info *info);
94static int atafb_pan_display(struct fb_var_screeninfo *var,
95 struct fb_info *info);
96static void atafb_fillrect(struct fb_info *info,
97 const struct fb_fillrect *rect);
98static void atafb_copyarea(struct fb_info *info,
99 const struct fb_copyarea *region);
100static void atafb_imageblit(struct fb_info *info, const struct fb_image *image);
101static int atafb_ioctl(struct fb_info *info, unsigned int cmd,
102 unsigned long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Michael Schmitza1005012007-05-01 22:32:39 +0200105static int default_par; /* default resolution (0=none) */
106
107static unsigned long default_mem_req;
108
109static int hwscroll = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111static int use_hwscroll = 1;
112
Michael Schmitza1005012007-05-01 22:32:39 +0200113static int sttt_xres = 640, st_yres = 400, tt_yres = 480;
114static int sttt_xres_virtual = 640, sttt_yres_virtual = 400;
115static int ovsc_offset, ovsc_addlen;
116
117 /*
118 * Hardware parameters for current mode
119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121static struct atafb_par {
122 void *screen_base;
123 int yres_virtual;
Michael Schmitza1005012007-05-01 22:32:39 +0200124 u_long next_line;
125 u_long next_plane;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#if defined ATAFB_TT || defined ATAFB_STE
127 union {
128 struct {
129 int mode;
130 int sync;
131 } tt, st;
132#endif
133#ifdef ATAFB_FALCON
134 struct falcon_hw {
135 /* Here are fields for storing a video mode, as direct
136 * parameters for the hardware.
137 */
138 short sync;
139 short line_width;
140 short line_offset;
141 short st_shift;
142 short f_shift;
143 short vid_control;
144 short vid_mode;
145 short xoffset;
146 short hht, hbb, hbe, hdb, hde, hss;
147 short vft, vbb, vbe, vdb, vde, vss;
148 /* auxiliary information */
149 short mono;
150 short ste_mode;
151 short bpp;
152 } falcon;
153#endif
154 /* Nothing needed for external mode */
155 } hw;
156} current_par;
157
158/* Don't calculate an own resolution, and thus don't change the one found when
159 * booting (currently used for the Falcon to keep settings for internal video
160 * hardware extensions (e.g. ScreenBlaster) */
Michael Schmitza1005012007-05-01 22:32:39 +0200161static int DontCalcRes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163#ifdef ATAFB_FALCON
164#define HHT hw.falcon.hht
165#define HBB hw.falcon.hbb
166#define HBE hw.falcon.hbe
167#define HDB hw.falcon.hdb
168#define HDE hw.falcon.hde
169#define HSS hw.falcon.hss
170#define VFT hw.falcon.vft
171#define VBB hw.falcon.vbb
172#define VBE hw.falcon.vbe
173#define VDB hw.falcon.vdb
174#define VDE hw.falcon.vde
175#define VSS hw.falcon.vss
176#define VCO_CLOCK25 0x04
177#define VCO_CSYPOS 0x10
178#define VCO_VSYPOS 0x20
179#define VCO_HSYPOS 0x40
180#define VCO_SHORTOFFS 0x100
181#define VMO_DOUBLE 0x01
182#define VMO_INTER 0x02
183#define VMO_PREMASK 0x0c
184#endif
185
Michael Schmitza1005012007-05-01 22:32:39 +0200186static struct fb_info fb_info = {
187 .fix = {
188 .id = "Atari ",
189 .visual = FB_VISUAL_PSEUDOCOLOR,
190 .accel = FB_ACCEL_NONE,
191 }
192};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194static void *screen_base; /* base address of screen */
195static void *real_screen_base; /* (only for Overscan) */
196
197static int screen_len;
198
Michael Schmitza1005012007-05-01 22:32:39 +0200199static int current_par_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Michael Schmitza1005012007-05-01 22:32:39 +0200201static int mono_moni;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203
204#ifdef ATAFB_EXT
Michael Schmitza1005012007-05-01 22:32:39 +0200205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/* external video handling */
Michael Schmitza1005012007-05-01 22:32:39 +0200207static unsigned int external_xres;
208static unsigned int external_xres_virtual;
209static unsigned int external_yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Michael Schmitza1005012007-05-01 22:32:39 +0200211/*
212 * not needed - atafb will never support panning/hardwarescroll with external
213 * static unsigned int external_yres_virtual;
214 */
215static unsigned int external_depth;
216static int external_pmode;
217static void *external_addr;
218static unsigned long external_len;
219static unsigned long external_vgaiobase;
220static unsigned int external_bitspercol = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Michael Schmitza1005012007-05-01 22:32:39 +0200222/*
223 * JOE <joe@amber.dinoco.de>:
224 * added card type for external driver, is only needed for
225 * colormap handling.
226 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227enum cardtype { IS_VGA, IS_MV300 };
228static enum cardtype external_card_type = IS_VGA;
229
230/*
Michael Schmitza1005012007-05-01 22:32:39 +0200231 * The MV300 mixes the color registers. So we need an array of munged
232 * indices in order to access the correct reg.
233 */
234static int MV300_reg_1bit[2] = {
235 0, 1
236};
237static int MV300_reg_4bit[16] = {
238 0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15
239};
240static int MV300_reg_8bit[256] = {
241 0, 128, 64, 192, 32, 160, 96, 224, 16, 144, 80, 208, 48, 176, 112, 240,
242 8, 136, 72, 200, 40, 168, 104, 232, 24, 152, 88, 216, 56, 184, 120, 248,
243 4, 132, 68, 196, 36, 164, 100, 228, 20, 148, 84, 212, 52, 180, 116, 244,
244 12, 140, 76, 204, 44, 172, 108, 236, 28, 156, 92, 220, 60, 188, 124, 252,
245 2, 130, 66, 194, 34, 162, 98, 226, 18, 146, 82, 210, 50, 178, 114, 242,
246 10, 138, 74, 202, 42, 170, 106, 234, 26, 154, 90, 218, 58, 186, 122, 250,
247 6, 134, 70, 198, 38, 166, 102, 230, 22, 150, 86, 214, 54, 182, 118, 246,
248 14, 142, 78, 206, 46, 174, 110, 238, 30, 158, 94, 222, 62, 190, 126, 254,
249 1, 129, 65, 193, 33, 161, 97, 225, 17, 145, 81, 209, 49, 177, 113, 241,
250 9, 137, 73, 201, 41, 169, 105, 233, 25, 153, 89, 217, 57, 185, 121, 249,
251 5, 133, 69, 197, 37, 165, 101, 229, 21, 149, 85, 213, 53, 181, 117, 245,
252 13, 141, 77, 205, 45, 173, 109, 237, 29, 157, 93, 221, 61, 189, 125, 253,
253 3, 131, 67, 195, 35, 163, 99, 227, 19, 147, 83, 211, 51, 179, 115, 243,
254 11, 139, 75, 203, 43, 171, 107, 235, 27, 155, 91, 219, 59, 187, 123, 251,
255 7, 135, 71, 199, 39, 167, 103, 231, 23, 151, 87, 215, 55, 183, 119, 247,
256 15, 143, 79, 207, 47, 175, 111, 239, 31, 159, 95, 223, 63, 191, 127, 255
257};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259static int *MV300_reg = MV300_reg_8bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#endif /* ATAFB_EXT */
261
262
Michael Schmitza1005012007-05-01 22:32:39 +0200263static int inverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265extern int fontheight_8x8;
266extern int fontwidth_8x8;
267extern unsigned char fontdata_8x8[];
268
269extern int fontheight_8x16;
270extern int fontwidth_8x16;
271extern unsigned char fontdata_8x16[];
272
Michael Schmitza1005012007-05-01 22:32:39 +0200273/*
274 * struct fb_ops {
275 * * open/release and usage marking
276 * struct module *owner;
277 * int (*fb_open)(struct fb_info *info, int user);
278 * int (*fb_release)(struct fb_info *info, int user);
279 *
280 * * For framebuffers with strange non linear layouts or that do not
281 * * work with normal memory mapped access
282 * ssize_t (*fb_read)(struct file *file, char __user *buf, size_t count, loff_t *ppos);
283 * ssize_t (*fb_write)(struct file *file, const char __user *buf, size_t count, loff_t *ppos);
284 *
285 * * checks var and eventually tweaks it to something supported,
286 * * DOES NOT MODIFY PAR *
287 * int (*fb_check_var)(struct fb_var_screeninfo *var, struct fb_info *info);
288 *
289 * * set the video mode according to info->var *
290 * int (*fb_set_par)(struct fb_info *info);
291 *
292 * * set color register *
293 * int (*fb_setcolreg)(unsigned int regno, unsigned int red, unsigned int green,
294 * unsigned int blue, unsigned int transp, struct fb_info *info);
295 *
296 * * set color registers in batch *
297 * int (*fb_setcmap)(struct fb_cmap *cmap, struct fb_info *info);
298 *
299 * * blank display *
300 * int (*fb_blank)(int blank, struct fb_info *info);
301 *
302 * * pan display *
303 * int (*fb_pan_display)(struct fb_var_screeninfo *var, struct fb_info *info);
304 *
305 * *** The meat of the drawing engine ***
306 * * Draws a rectangle *
307 * void (*fb_fillrect) (struct fb_info *info, const struct fb_fillrect *rect);
308 * * Copy data from area to another *
309 * void (*fb_copyarea) (struct fb_info *info, const struct fb_copyarea *region);
310 * * Draws a image to the display *
311 * void (*fb_imageblit) (struct fb_info *info, const struct fb_image *image);
312 *
313 * * Draws cursor *
314 * int (*fb_cursor) (struct fb_info *info, struct fb_cursor *cursor);
315 *
316 * * Rotates the display *
317 * void (*fb_rotate)(struct fb_info *info, int angle);
318 *
319 * * wait for blit idle, optional *
320 * int (*fb_sync)(struct fb_info *info);
321 *
322 * * perform fb specific ioctl (optional) *
323 * int (*fb_ioctl)(struct fb_info *info, unsigned int cmd,
324 * unsigned long arg);
325 *
326 * * Handle 32bit compat ioctl (optional) *
327 * int (*fb_compat_ioctl)(struct fb_info *info, unsigned int cmd,
328 * unsigned long arg);
329 *
330 * * perform fb specific mmap *
331 * int (*fb_mmap)(struct fb_info *info, struct vm_area_struct *vma);
332 *
333 * * save current hardware state *
334 * void (*fb_save_state)(struct fb_info *info);
335 *
336 * * restore saved state *
337 * void (*fb_restore_state)(struct fb_info *info);
338 * } ;
339 */
340
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/* ++roman: This structure abstracts from the underlying hardware (ST(e),
343 * TT, or Falcon.
344 *
Michael Schmitza1005012007-05-01 22:32:39 +0200345 * int (*detect)(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * This function should detect the current video mode settings and
347 * store them in atafb_predefined[0] for later reference by the
348 * user. Return the index+1 of an equivalent predefined mode or 0
349 * if there is no such.
Michael Schmitza1005012007-05-01 22:32:39 +0200350 *
351 * int (*encode_fix)(struct fb_fix_screeninfo *fix,
352 * struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * This function should fill in the 'fix' structure based on the
354 * values in the 'par' structure.
Michael Schmitza1005012007-05-01 22:32:39 +0200355 * !!! Obsolete, perhaps !!!
356 *
357 * int (*decode_var)(struct fb_var_screeninfo *var,
358 * struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * Get the video params out of 'var'. If a value doesn't fit, round
360 * it up, if it's too big, return EINVAL.
Michael Schmitza1005012007-05-01 22:32:39 +0200361 * Round up in the following order: bits_per_pixel, xres, yres,
362 * xres_virtual, yres_virtual, xoffset, yoffset, grayscale, bitfields,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * horizontal timing, vertical timing.
364 *
Michael Schmitza1005012007-05-01 22:32:39 +0200365 * int (*encode_var)(struct fb_var_screeninfo *var,
366 * struct atafb_par *par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * Fill the 'var' structure based on the values in 'par' and maybe
368 * other values read out of the hardware.
Michael Schmitza1005012007-05-01 22:32:39 +0200369 *
370 * void (*get_par)(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * Fill the hardware's 'par' structure.
Michael Schmitza1005012007-05-01 22:32:39 +0200372 * !!! Used only by detect() !!!
373 *
374 * void (*set_par)(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * Set the hardware according to 'par'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 *
377 * void (*set_screen_base)(void *s_base)
378 * Set the base address of the displayed frame buffer. Only called
379 * if yres_virtual > yres or xres_virtual > xres.
380 *
Michael Schmitza1005012007-05-01 22:32:39 +0200381 * int (*blank)(int blank_mode)
382 * Blank the screen if blank_mode != 0, else unblank. If blank == NULL then
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 * the caller blanks by setting the CLUT to all black. Return 0 if blanking
384 * succeeded, !=0 if un-/blanking failed due to e.g. a video mode which
385 * doesn't support it. Implements VESA suspend and powerdown modes on
386 * hardware that supports disabling hsync/vsync:
Michael Schmitza1005012007-05-01 22:32:39 +0200387 * blank_mode == 2: suspend vsync, 3:suspend hsync, 4: powerdown.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 */
389
390static struct fb_hwswitch {
Michael Schmitza1005012007-05-01 22:32:39 +0200391 int (*detect)(void);
392 int (*encode_fix)(struct fb_fix_screeninfo *fix,
393 struct atafb_par *par);
394 int (*decode_var)(struct fb_var_screeninfo *var,
395 struct atafb_par *par);
396 int (*encode_var)(struct fb_var_screeninfo *var,
397 struct atafb_par *par);
398 void (*get_par)(struct atafb_par *par);
399 void (*set_par)(struct atafb_par *par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 void (*set_screen_base)(void *s_base);
Michael Schmitza1005012007-05-01 22:32:39 +0200401 int (*blank)(int blank_mode);
402 int (*pan_display)(struct fb_var_screeninfo *var,
403 struct fb_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404} *fbhw;
405
Michael Schmitza1005012007-05-01 22:32:39 +0200406static char *autodetect_names[] = { "autodetect", NULL };
407static char *stlow_names[] = { "stlow", NULL };
408static char *stmid_names[] = { "stmid", "default5", NULL };
409static char *sthigh_names[] = { "sthigh", "default4", NULL };
410static char *ttlow_names[] = { "ttlow", NULL };
411static char *ttmid_names[] = { "ttmid", "default1", NULL };
412static char *tthigh_names[] = { "tthigh", "default2", NULL };
413static char *vga2_names[] = { "vga2", NULL };
414static char *vga4_names[] = { "vga4", NULL };
415static char *vga16_names[] = { "vga16", "default3", NULL };
416static char *vga256_names[] = { "vga256", NULL };
417static char *falh2_names[] = { "falh2", NULL };
418static char *falh16_names[] = { "falh16", NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420static char **fb_var_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 autodetect_names,
422 stlow_names,
423 stmid_names,
424 sthigh_names,
425 ttlow_names,
426 ttmid_names,
427 tthigh_names,
428 vga2_names,
429 vga4_names,
430 vga16_names,
431 vga256_names,
432 falh2_names,
433 falh16_names,
434 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435};
436
437static struct fb_var_screeninfo atafb_predefined[] = {
Michael Schmitza1005012007-05-01 22:32:39 +0200438 /*
439 * yres_virtual == 0 means use hw-scrolling if possible, else yres
440 */
441 { /* autodetect */
442 0, 0, 0, 0, 0, 0, 0, 0, /* xres-grayscale */
443 {0, 0, 0}, {0, 0, 0}, {0, 0, 0}, {0, 0, 0}, /* red green blue tran*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
Michael Schmitza1005012007-05-01 22:32:39 +0200445 { /* st low */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 320, 200, 320, 0, 0, 0, 4, 0,
447 {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
448 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
449 { /* st mid */
450 640, 200, 640, 0, 0, 0, 2, 0,
451 {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
452 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
453 { /* st high */
454 640, 400, 640, 0, 0, 0, 1, 0,
455 {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
456 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
457 { /* tt low */
458 320, 480, 320, 0, 0, 0, 8, 0,
459 {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
460 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
461 { /* tt mid */
462 640, 480, 640, 0, 0, 0, 4, 0,
463 {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
464 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
465 { /* tt high */
466 1280, 960, 1280, 0, 0, 0, 1, 0,
467 {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
468 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
469 { /* vga2 */
470 640, 480, 640, 0, 0, 0, 1, 0,
471 {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
472 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
473 { /* vga4 */
474 640, 480, 640, 0, 0, 0, 2, 0,
475 {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
476 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
477 { /* vga16 */
478 640, 480, 640, 0, 0, 0, 4, 0,
479 {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
480 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
481 { /* vga256 */
482 640, 480, 640, 0, 0, 0, 8, 0,
483 {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
484 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
485 { /* falh2 */
486 896, 608, 896, 0, 0, 0, 1, 0,
487 {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
488 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
489 { /* falh16 */
490 896, 608, 896, 0, 0, 0, 4, 0,
491 {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
492 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
493};
494
Michael Schmitza1005012007-05-01 22:32:39 +0200495static int num_atafb_predefined = ARRAY_SIZE(atafb_predefined);
496
497static struct fb_videomode atafb_modedb[] __initdata = {
498 /*
499 * Atari Video Modes
500 *
501 * If you change these, make sure to update DEFMODE_* as well!
502 */
503
504 /*
505 * ST/TT Video Modes
506 */
507
508 {
509 /* 320x200, 15 kHz, 60 Hz (ST low) */
510 "st-low", 60, 320, 200, 32000, 32, 16, 31, 14, 96, 4,
511 0, FB_VMODE_NONINTERLACED | FB_VMODE_YWRAP
512 }, {
513 /* 640x200, 15 kHz, 60 Hz (ST medium) */
514 "st-mid", 60, 640, 200, 32000, 32, 16, 31, 14, 96, 4,
515 0, FB_VMODE_NONINTERLACED | FB_VMODE_YWRAP
516 }, {
517 /* 640x400, 30.25 kHz, 63.5 Hz (ST high) */
518 "st-high", 63, 640, 400, 32000, 128, 0, 40, 14, 128, 4,
519 0, FB_VMODE_NONINTERLACED | FB_VMODE_YWRAP
520 }, {
521 /* 320x480, 15 kHz, 60 Hz (TT low) */
522 "tt-low", 60, 320, 480, 31041, 120, 100, 8, 16, 140, 30,
523 0, FB_VMODE_NONINTERLACED | FB_VMODE_YWRAP
524 }, {
525 /* 640x480, 29 kHz, 57 Hz (TT medium) */
526 "tt-mid", 60, 640, 480, 31041, 120, 100, 8, 16, 140, 30,
527 0, FB_VMODE_NONINTERLACED | FB_VMODE_YWRAP
528 }, {
529 /* 1280x960, 29 kHz, 60 Hz (TT high) */
530 "tt-high", 57, 640, 960, 31041, 120, 100, 8, 16, 140, 30,
531 0, FB_VMODE_NONINTERLACED | FB_VMODE_YWRAP
532 },
533
534 /*
535 * VGA Video Modes
536 */
537
538 {
539 /* 640x480, 31 kHz, 60 Hz (VGA) */
540 "vga", 63.5, 640, 480, 32000, 18, 42, 31, 11, 96, 3,
541 0, FB_VMODE_NONINTERLACED | FB_VMODE_YWRAP
542 }, {
543 /* 640x400, 31 kHz, 70 Hz (VGA) */
544 "vga70", 70, 640, 400, 32000, 18, 42, 31, 11, 96, 3,
545 FB_SYNC_VERT_HIGH_ACT | FB_SYNC_COMP_HIGH_ACT, FB_VMODE_NONINTERLACED | FB_VMODE_YWRAP
546 },
547
548 /*
549 * Falcon HiRes Video Modes
550 */
551
552 {
553 /* 896x608, 31 kHz, 60 Hz (Falcon High) */
554 "falh", 60, 896, 608, 32000, 18, 42, 31, 1, 96,3,
555 0, FB_VMODE_NONINTERLACED | FB_VMODE_YWRAP
556 },
557};
558
559#define NUM_TOTAL_MODES ARRAY_SIZE(atafb_modedb)
560
561static char *mode_option __initdata = NULL;
562
563 /* default modes */
564
565#define DEFMODE_TT 5 /* "tt-high" for TT */
566#define DEFMODE_F30 7 /* "vga70" for Falcon */
567#define DEFMODE_STE 2 /* "st-high" for ST/E */
568#define DEFMODE_EXT 6 /* "vga" for external */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570
Michael Schmitza1005012007-05-01 22:32:39 +0200571static int get_video_mode(char *vname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Michael Schmitza1005012007-05-01 22:32:39 +0200573 char ***name_list;
574 char **name;
575 int i;
576
577 name_list = fb_var_names;
578 for (i = 0; i < num_atafb_predefined; i++) {
579 name = *name_list++;
580 if (!name || !*name)
581 break;
582 while (*name) {
583 if (!strcmp(vname, *name))
584 return i + 1;
585 name++;
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
Michael Schmitza1005012007-05-01 22:32:39 +0200588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
591
592
593/* ------------------- TT specific functions ---------------------- */
594
595#ifdef ATAFB_TT
596
Michael Schmitza1005012007-05-01 22:32:39 +0200597static int tt_encode_fix(struct fb_fix_screeninfo *fix, struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
599 int mode;
600
Michael Schmitza1005012007-05-01 22:32:39 +0200601 strcpy(fix->id, "Atari Builtin");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 fix->smem_start = (unsigned long)real_screen_base;
603 fix->smem_len = screen_len;
Michael Schmitza1005012007-05-01 22:32:39 +0200604 fix->type = FB_TYPE_INTERLEAVED_PLANES;
605 fix->type_aux = 2;
606 fix->visual = FB_VISUAL_PSEUDOCOLOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 mode = par->hw.tt.mode & TT_SHIFTER_MODEMASK;
608 if (mode == TT_SHIFTER_TTHIGH || mode == TT_SHIFTER_STHIGH) {
Michael Schmitza1005012007-05-01 22:32:39 +0200609 fix->type = FB_TYPE_PACKED_PIXELS;
610 fix->type_aux = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (mode == TT_SHIFTER_TTHIGH)
Michael Schmitza1005012007-05-01 22:32:39 +0200612 fix->visual = FB_VISUAL_MONO01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
Michael Schmitza1005012007-05-01 22:32:39 +0200614 fix->xpanstep = 0;
615 fix->ypanstep = 1;
616 fix->ywrapstep = 0;
Geert Uytterhoeven02603932008-11-18 21:13:01 +0100617 fix->line_length = par->next_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 fix->accel = FB_ACCEL_ATARIBLITT;
619 return 0;
620}
621
Michael Schmitza1005012007-05-01 22:32:39 +0200622static int tt_decode_var(struct fb_var_screeninfo *var, struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Michael Schmitza1005012007-05-01 22:32:39 +0200624 int xres = var->xres;
625 int yres = var->yres;
626 int bpp = var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 int linelen;
628 int yres_virtual = var->yres_virtual;
629
630 if (mono_moni) {
Michael Schmitza1005012007-05-01 22:32:39 +0200631 if (bpp > 1 || xres > sttt_xres * 2 || yres > tt_yres * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return -EINVAL;
Michael Schmitza1005012007-05-01 22:32:39 +0200633 par->hw.tt.mode = TT_SHIFTER_TTHIGH;
634 xres = sttt_xres * 2;
635 yres = tt_yres * 2;
636 bpp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 } else {
638 if (bpp > 8 || xres > sttt_xres || yres > tt_yres)
639 return -EINVAL;
640 if (bpp > 4) {
Michael Schmitza1005012007-05-01 22:32:39 +0200641 if (xres > sttt_xres / 2 || yres > tt_yres)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return -EINVAL;
Michael Schmitza1005012007-05-01 22:32:39 +0200643 par->hw.tt.mode = TT_SHIFTER_TTLOW;
644 xres = sttt_xres / 2;
645 yres = tt_yres;
646 bpp = 8;
647 } else if (bpp > 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (xres > sttt_xres || yres > tt_yres)
649 return -EINVAL;
Michael Schmitza1005012007-05-01 22:32:39 +0200650 if (xres > sttt_xres / 2 || yres > st_yres / 2) {
651 par->hw.tt.mode = TT_SHIFTER_TTMID;
652 xres = sttt_xres;
653 yres = tt_yres;
654 bpp = 4;
655 } else {
656 par->hw.tt.mode = TT_SHIFTER_STLOW;
657 xres = sttt_xres / 2;
658 yres = st_yres / 2;
659 bpp = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
Michael Schmitza1005012007-05-01 22:32:39 +0200661 } else if (bpp > 1) {
662 if (xres > sttt_xres || yres > st_yres / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return -EINVAL;
Michael Schmitza1005012007-05-01 22:32:39 +0200664 par->hw.tt.mode = TT_SHIFTER_STMID;
665 xres = sttt_xres;
666 yres = st_yres / 2;
667 bpp = 2;
668 } else if (var->xres > sttt_xres || var->yres > st_yres) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return -EINVAL;
Michael Schmitza1005012007-05-01 22:32:39 +0200670 } else {
671 par->hw.tt.mode = TT_SHIFTER_STHIGH;
672 xres = sttt_xres;
673 yres = st_yres;
674 bpp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676 }
677 if (yres_virtual <= 0)
678 yres_virtual = 0;
679 else if (yres_virtual < yres)
680 yres_virtual = yres;
681 if (var->sync & FB_SYNC_EXT)
Michael Schmitza1005012007-05-01 22:32:39 +0200682 par->hw.tt.sync = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 else
Michael Schmitza1005012007-05-01 22:32:39 +0200684 par->hw.tt.sync = 1;
685 linelen = xres * bpp / 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (yres_virtual * linelen > screen_len && screen_len)
687 return -EINVAL;
688 if (yres * linelen > screen_len && screen_len)
689 return -EINVAL;
690 if (var->yoffset + yres > yres_virtual && yres_virtual)
691 return -EINVAL;
692 par->yres_virtual = yres_virtual;
693 par->screen_base = screen_base + var->yoffset * linelen;
Geert Uytterhoeven02603932008-11-18 21:13:01 +0100694 par->next_line = linelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return 0;
696}
697
Michael Schmitza1005012007-05-01 22:32:39 +0200698static int tt_encode_var(struct fb_var_screeninfo *var, struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 int linelen;
701 memset(var, 0, sizeof(struct fb_var_screeninfo));
Michael Schmitza1005012007-05-01 22:32:39 +0200702 var->red.offset = 0;
703 var->red.length = 4;
704 var->red.msb_right = 0;
705 var->grayscale = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Michael Schmitza1005012007-05-01 22:32:39 +0200707 var->pixclock = 31041;
708 var->left_margin = 120; /* these may be incorrect */
709 var->right_margin = 100;
710 var->upper_margin = 8;
711 var->lower_margin = 16;
712 var->hsync_len = 140;
713 var->vsync_len = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Michael Schmitza1005012007-05-01 22:32:39 +0200715 var->height = -1;
716 var->width = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 if (par->hw.tt.sync & 1)
Michael Schmitza1005012007-05-01 22:32:39 +0200719 var->sync = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 else
Michael Schmitza1005012007-05-01 22:32:39 +0200721 var->sync = FB_SYNC_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 switch (par->hw.tt.mode & TT_SHIFTER_MODEMASK) {
724 case TT_SHIFTER_STLOW:
Michael Schmitza1005012007-05-01 22:32:39 +0200725 var->xres = sttt_xres / 2;
726 var->xres_virtual = sttt_xres_virtual / 2;
727 var->yres = st_yres / 2;
728 var->bits_per_pixel = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 break;
730 case TT_SHIFTER_STMID:
Michael Schmitza1005012007-05-01 22:32:39 +0200731 var->xres = sttt_xres;
732 var->xres_virtual = sttt_xres_virtual;
733 var->yres = st_yres / 2;
734 var->bits_per_pixel = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 break;
736 case TT_SHIFTER_STHIGH:
Michael Schmitza1005012007-05-01 22:32:39 +0200737 var->xres = sttt_xres;
738 var->xres_virtual = sttt_xres_virtual;
739 var->yres = st_yres;
740 var->bits_per_pixel = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 break;
742 case TT_SHIFTER_TTLOW:
Michael Schmitza1005012007-05-01 22:32:39 +0200743 var->xres = sttt_xres / 2;
744 var->xres_virtual = sttt_xres_virtual / 2;
745 var->yres = tt_yres;
746 var->bits_per_pixel = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 break;
748 case TT_SHIFTER_TTMID:
Michael Schmitza1005012007-05-01 22:32:39 +0200749 var->xres = sttt_xres;
750 var->xres_virtual = sttt_xres_virtual;
751 var->yres = tt_yres;
752 var->bits_per_pixel = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 break;
754 case TT_SHIFTER_TTHIGH:
Michael Schmitza1005012007-05-01 22:32:39 +0200755 var->red.length = 0;
756 var->xres = sttt_xres * 2;
757 var->xres_virtual = sttt_xres_virtual * 2;
758 var->yres = tt_yres * 2;
759 var->bits_per_pixel = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 break;
Michael Schmitza1005012007-05-01 22:32:39 +0200761 }
762 var->blue = var->green = var->red;
763 var->transp.offset = 0;
764 var->transp.length = 0;
765 var->transp.msb_right = 0;
766 linelen = var->xres_virtual * var->bits_per_pixel / 8;
767 if (!use_hwscroll)
768 var->yres_virtual = var->yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 else if (screen_len) {
770 if (par->yres_virtual)
771 var->yres_virtual = par->yres_virtual;
772 else
Michael Schmitza1005012007-05-01 22:32:39 +0200773 /* yres_virtual == 0 means use maximum */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 var->yres_virtual = screen_len / linelen;
775 } else {
776 if (hwscroll < 0)
777 var->yres_virtual = 2 * var->yres;
778 else
Michael Schmitza1005012007-05-01 22:32:39 +0200779 var->yres_virtual = var->yres + hwscroll * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Michael Schmitza1005012007-05-01 22:32:39 +0200781 var->xoffset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (screen_base)
Michael Schmitza1005012007-05-01 22:32:39 +0200783 var->yoffset = (par->screen_base - screen_base) / linelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 else
Michael Schmitza1005012007-05-01 22:32:39 +0200785 var->yoffset = 0;
786 var->nonstd = 0;
787 var->activate = 0;
788 var->vmode = FB_VMODE_NONINTERLACED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return 0;
790}
791
Michael Schmitza1005012007-05-01 22:32:39 +0200792static void tt_get_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 unsigned long addr;
Michael Schmitza1005012007-05-01 22:32:39 +0200795 par->hw.tt.mode = shifter_tt.tt_shiftmode;
796 par->hw.tt.sync = shifter.syncmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 addr = ((shifter.bas_hi & 0xff) << 16) |
798 ((shifter.bas_md & 0xff) << 8) |
799 ((shifter.bas_lo & 0xff));
800 par->screen_base = phys_to_virt(addr);
801}
802
Michael Schmitza1005012007-05-01 22:32:39 +0200803static void tt_set_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Michael Schmitza1005012007-05-01 22:32:39 +0200805 shifter_tt.tt_shiftmode = par->hw.tt.mode;
806 shifter.syncmode = par->hw.tt.sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /* only set screen_base if really necessary */
808 if (current_par.screen_base != par->screen_base)
809 fbhw->set_screen_base(par->screen_base);
810}
811
Michael Schmitza1005012007-05-01 22:32:39 +0200812static int tt_setcolreg(unsigned int regno, unsigned int red,
813 unsigned int green, unsigned int blue,
814 unsigned int transp, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 if ((shifter_tt.tt_shiftmode & TT_SHIFTER_MODEMASK) == TT_SHIFTER_STHIGH)
817 regno += 254;
818 if (regno > 255)
819 return 1;
820 tt_palette[regno] = (((red >> 12) << 8) | ((green >> 12) << 4) |
821 (blue >> 12));
822 if ((shifter_tt.tt_shiftmode & TT_SHIFTER_MODEMASK) ==
Michael Schmitza1005012007-05-01 22:32:39 +0200823 TT_SHIFTER_STHIGH && regno == 254)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 tt_palette[0] = 0;
825 return 0;
826}
827
Michael Schmitza1005012007-05-01 22:32:39 +0200828static int tt_detect(void)
829{
830 struct atafb_par par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* Determine the connected monitor: The DMA sound must be
833 * disabled before reading the MFP GPIP, because the Sound
834 * Done Signal and the Monochrome Detect are XORed together!
835 *
836 * Even on a TT, we should look if there is a DMA sound. It was
837 * announced that the Eagle is TT compatible, but only the PCM is
838 * missing...
839 */
Michael Schmitza1005012007-05-01 22:32:39 +0200840 if (ATARIHW_PRESENT(PCM_8BIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 tt_dmasnd.ctrl = DMASND_CTRL_OFF;
Michael Schmitza1005012007-05-01 22:32:39 +0200842 udelay(20); /* wait a while for things to settle down */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844 mono_moni = (mfp.par_dt_reg & 0x80) == 0;
845
846 tt_get_par(&par);
847 tt_encode_var(&atafb_predefined[0], &par);
848
849 return 1;
850}
851
852#endif /* ATAFB_TT */
853
854/* ------------------- Falcon specific functions ---------------------- */
855
856#ifdef ATAFB_FALCON
857
858static int mon_type; /* Falcon connected monitor */
859static int f030_bus_width; /* Falcon ram bus width (for vid_control) */
860#define F_MON_SM 0
861#define F_MON_SC 1
862#define F_MON_VGA 2
863#define F_MON_TV 3
864
865static struct pixel_clock {
866 unsigned long f; /* f/[Hz] */
867 unsigned long t; /* t/[ps] (=1/f) */
868 int right, hsync, left; /* standard timing in clock cycles, not pixel */
Michael Schmitza1005012007-05-01 22:32:39 +0200869 /* hsync initialized in falcon_detect() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 int sync_mask; /* or-mask for hw.falcon.sync to set this clock */
871 int control_mask; /* ditto, for hw.falcon.vid_control */
Michael Schmitza1005012007-05-01 22:32:39 +0200872} f25 = {
873 25175000, 39721, 18, 0, 42, 0x0, VCO_CLOCK25
874}, f32 = {
875 32000000, 31250, 18, 0, 42, 0x0, 0
876}, fext = {
877 0, 0, 18, 0, 42, 0x1, 0
878};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880/* VIDEL-prescale values [mon_type][pixel_length from VCO] */
Michael Schmitza1005012007-05-01 22:32:39 +0200881static int vdl_prescale[4][3] = {
882 { 4,2,1 }, { 4,2,1 }, { 4,2,2 }, { 4,2,1 }
883};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885/* Default hsync timing [mon_type] in picoseconds */
Michael Schmitza1005012007-05-01 22:32:39 +0200886static long h_syncs[4] = { 3000000, 4875000, 4000000, 4875000 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888#ifdef FBCON_HAS_CFB16
889static u16 fbcon_cfb16_cmap[16];
890#endif
891
892static inline int hxx_prescale(struct falcon_hw *hw)
893{
Michael Schmitza1005012007-05-01 22:32:39 +0200894 return hw->ste_mode ? 16
895 : vdl_prescale[mon_type][hw->vid_mode >> 2 & 0x3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
Michael Schmitza1005012007-05-01 22:32:39 +0200898static int falcon_encode_fix(struct fb_fix_screeninfo *fix,
899 struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 strcpy(fix->id, "Atari Builtin");
902 fix->smem_start = (unsigned long)real_screen_base;
903 fix->smem_len = screen_len;
904 fix->type = FB_TYPE_INTERLEAVED_PLANES;
905 fix->type_aux = 2;
906 fix->visual = FB_VISUAL_PSEUDOCOLOR;
907 fix->xpanstep = 1;
908 fix->ypanstep = 1;
909 fix->ywrapstep = 0;
910 if (par->hw.falcon.mono) {
911 fix->type = FB_TYPE_PACKED_PIXELS;
912 fix->type_aux = 0;
913 /* no smooth scrolling with longword aligned video mem */
914 fix->xpanstep = 32;
Michael Schmitza1005012007-05-01 22:32:39 +0200915 } else if (par->hw.falcon.f_shift & 0x100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 fix->type = FB_TYPE_PACKED_PIXELS;
917 fix->type_aux = 0;
918 /* Is this ok or should it be DIRECTCOLOR? */
919 fix->visual = FB_VISUAL_TRUECOLOR;
920 fix->xpanstep = 2;
921 }
Geert Uytterhoeven02603932008-11-18 21:13:01 +0100922 fix->line_length = par->next_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 fix->accel = FB_ACCEL_ATARIBLITT;
924 return 0;
925}
926
Michael Schmitza1005012007-05-01 22:32:39 +0200927static int falcon_decode_var(struct fb_var_screeninfo *var,
928 struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
930 int bpp = var->bits_per_pixel;
931 int xres = var->xres;
932 int yres = var->yres;
933 int xres_virtual = var->xres_virtual;
934 int yres_virtual = var->yres_virtual;
935 int left_margin, right_margin, hsync_len;
936 int upper_margin, lower_margin, vsync_len;
937 int linelen;
938 int interlace = 0, doubleline = 0;
939 struct pixel_clock *pclock;
Michael Schmitza1005012007-05-01 22:32:39 +0200940 int plen; /* width of pixel in clock cycles */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 int xstretch;
942 int prescale;
943 int longoffset = 0;
944 int hfreq, vfreq;
Michael Schmitza1005012007-05-01 22:32:39 +0200945 int hdb_off, hde_off, base_off;
946 int gstart, gend1, gend2, align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948/*
949 Get the video params out of 'var'. If a value doesn't fit, round
950 it up, if it's too big, return EINVAL.
Michael Schmitza1005012007-05-01 22:32:39 +0200951 Round up in the following order: bits_per_pixel, xres, yres,
952 xres_virtual, yres_virtual, xoffset, yoffset, grayscale, bitfields,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 horizontal timing, vertical timing.
954
955 There is a maximum of screen resolution determined by pixelclock
956 and minimum frame rate -- (X+hmarg.)*(Y+vmarg.)*vfmin <= pixelclock.
957 In interlace mode this is " * " *vfmin <= pixelclock.
958 Additional constraints: hfreq.
959 Frequency range for multisync monitors is given via command line.
960 For TV and SM124 both frequencies are fixed.
961
Michael Schmitza1005012007-05-01 22:32:39 +0200962 X % 16 == 0 to fit 8x?? font (except 1 bitplane modes must use X%32 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 Y % 16 == 0 to fit 8x16 font
964 Y % 8 == 0 if Y<400
965
Michael Schmitza1005012007-05-01 22:32:39 +0200966 Currently interlace and doubleline mode in var are ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 On SM124 and TV only the standard resolutions can be used.
968*/
969
970 /* Reject uninitialized mode */
971 if (!xres || !yres || !bpp)
972 return -EINVAL;
973
Michael Schmitza1005012007-05-01 22:32:39 +0200974 if (mon_type == F_MON_SM && bpp != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return -EINVAL;
Michael Schmitza1005012007-05-01 22:32:39 +0200976
977 if (bpp <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 bpp = 1;
979 par->hw.falcon.f_shift = 0x400;
980 par->hw.falcon.st_shift = 0x200;
Michael Schmitza1005012007-05-01 22:32:39 +0200981 } else if (bpp <= 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 bpp = 2;
983 par->hw.falcon.f_shift = 0x000;
984 par->hw.falcon.st_shift = 0x100;
Michael Schmitza1005012007-05-01 22:32:39 +0200985 } else if (bpp <= 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 bpp = 4;
987 par->hw.falcon.f_shift = 0x000;
988 par->hw.falcon.st_shift = 0x000;
Michael Schmitza1005012007-05-01 22:32:39 +0200989 } else if (bpp <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 bpp = 8;
991 par->hw.falcon.f_shift = 0x010;
Michael Schmitza1005012007-05-01 22:32:39 +0200992 } else if (bpp <= 16) {
993 bpp = 16; /* packed pixel mode */
994 par->hw.falcon.f_shift = 0x100; /* hicolor, no overlay */
995 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return -EINVAL;
997 par->hw.falcon.bpp = bpp;
998
999 if (mon_type == F_MON_SM || DontCalcRes) {
1000 /* Skip all calculations. VGA/TV/SC1224 only supported. */
1001 struct fb_var_screeninfo *myvar = &atafb_predefined[0];
Michael Schmitza1005012007-05-01 22:32:39 +02001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (bpp > myvar->bits_per_pixel ||
Michael Schmitza1005012007-05-01 22:32:39 +02001004 var->xres > myvar->xres ||
1005 var->yres > myvar->yres)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return -EINVAL;
1007 fbhw->get_par(par); /* Current par will be new par */
1008 goto set_screen_base; /* Don't forget this */
1009 }
1010
1011 /* Only some fixed resolutions < 640x400 */
1012 if (xres <= 320)
1013 xres = 320;
1014 else if (xres <= 640 && bpp != 16)
1015 xres = 640;
1016 if (yres <= 200)
1017 yres = 200;
1018 else if (yres <= 240)
1019 yres = 240;
1020 else if (yres <= 400)
1021 yres = 400;
1022
1023 /* 2 planes must use STE compatibility mode */
Michael Schmitza1005012007-05-01 22:32:39 +02001024 par->hw.falcon.ste_mode = bpp == 2;
1025 par->hw.falcon.mono = bpp == 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 /* Total and visible scanline length must be a multiple of one longword,
1028 * this and the console fontwidth yields the alignment for xres and
1029 * xres_virtual.
1030 * TODO: this way "odd" fontheights are not supported
1031 *
1032 * Special case in STE mode: blank and graphic positions don't align,
1033 * avoid trash at right margin
1034 */
1035 if (par->hw.falcon.ste_mode)
1036 xres = (xres + 63) & ~63;
1037 else if (bpp == 1)
1038 xres = (xres + 31) & ~31;
1039 else
1040 xres = (xres + 15) & ~15;
1041 if (yres >= 400)
1042 yres = (yres + 15) & ~15;
1043 else
1044 yres = (yres + 7) & ~7;
1045
1046 if (xres_virtual < xres)
1047 xres_virtual = xres;
1048 else if (bpp == 1)
1049 xres_virtual = (xres_virtual + 31) & ~31;
1050 else
1051 xres_virtual = (xres_virtual + 15) & ~15;
1052
1053 if (yres_virtual <= 0)
1054 yres_virtual = 0;
1055 else if (yres_virtual < yres)
1056 yres_virtual = yres;
1057
1058 /* backward bug-compatibility */
1059 if (var->pixclock > 1)
1060 var->pixclock -= 1;
1061
1062 par->hw.falcon.line_width = bpp * xres / 16;
1063 par->hw.falcon.line_offset = bpp * (xres_virtual - xres) / 16;
1064
1065 /* single or double pixel width */
1066 xstretch = (xres < 640) ? 2 : 1;
1067
1068#if 0 /* SM124 supports only 640x400, this is rejected above */
1069 if (mon_type == F_MON_SM) {
1070 if (xres != 640 && yres != 400)
1071 return -EINVAL;
1072 plen = 1;
1073 pclock = &f32;
1074 /* SM124-mode is special */
1075 par->hw.falcon.ste_mode = 1;
1076 par->hw.falcon.f_shift = 0x000;
1077 par->hw.falcon.st_shift = 0x200;
1078 left_margin = hsync_len = 128 / plen;
1079 right_margin = 0;
1080 /* TODO set all margins */
Michael Schmitza1005012007-05-01 22:32:39 +02001081 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082#endif
1083 if (mon_type == F_MON_SC || mon_type == F_MON_TV) {
1084 plen = 2 * xstretch;
1085 if (var->pixclock > f32.t * plen)
1086 return -EINVAL;
1087 pclock = &f32;
1088 if (yres > 240)
1089 interlace = 1;
1090 if (var->pixclock == 0) {
1091 /* set some minimal margins which center the screen */
1092 left_margin = 32;
1093 right_margin = 18;
1094 hsync_len = pclock->hsync / plen;
1095 upper_margin = 31;
1096 lower_margin = 14;
1097 vsync_len = interlace ? 3 : 4;
1098 } else {
1099 left_margin = var->left_margin;
1100 right_margin = var->right_margin;
1101 hsync_len = var->hsync_len;
1102 upper_margin = var->upper_margin;
1103 lower_margin = var->lower_margin;
1104 vsync_len = var->vsync_len;
1105 if (var->vmode & FB_VMODE_INTERLACED) {
1106 upper_margin = (upper_margin + 1) / 2;
1107 lower_margin = (lower_margin + 1) / 2;
1108 vsync_len = (vsync_len + 1) / 2;
1109 } else if (var->vmode & FB_VMODE_DOUBLE) {
1110 upper_margin *= 2;
1111 lower_margin *= 2;
1112 vsync_len *= 2;
1113 }
1114 }
Michael Schmitza1005012007-05-01 22:32:39 +02001115 } else { /* F_MON_VGA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (bpp == 16)
Michael Schmitza1005012007-05-01 22:32:39 +02001117 xstretch = 2; /* Double pixel width only for hicolor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* Default values are used for vert./hor. timing if no pixelclock given. */
1119 if (var->pixclock == 0) {
1120 int linesize;
1121
1122 /* Choose master pixelclock depending on hor. timing */
1123 plen = 1 * xstretch;
Michael Schmitza1005012007-05-01 22:32:39 +02001124 if ((plen * xres + f25.right + f25.hsync + f25.left) *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 fb_info.monspecs.hfmin < f25.f)
1126 pclock = &f25;
Michael Schmitza1005012007-05-01 22:32:39 +02001127 else if ((plen * xres + f32.right + f32.hsync +
1128 f32.left) * fb_info.monspecs.hfmin < f32.f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 pclock = &f32;
Michael Schmitza1005012007-05-01 22:32:39 +02001130 else if ((plen * xres + fext.right + fext.hsync +
1131 fext.left) * fb_info.monspecs.hfmin < fext.f &&
1132 fext.f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 pclock = &fext;
1134 else
1135 return -EINVAL;
1136
1137 left_margin = pclock->left / plen;
1138 right_margin = pclock->right / plen;
1139 hsync_len = pclock->hsync / plen;
1140 linesize = left_margin + xres + right_margin + hsync_len;
1141 upper_margin = 31;
1142 lower_margin = 11;
1143 vsync_len = 3;
Michael Schmitza1005012007-05-01 22:32:39 +02001144 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 /* Choose largest pixelclock <= wanted clock */
1146 int i;
1147 unsigned long pcl = ULONG_MAX;
1148 pclock = 0;
Michael Schmitza1005012007-05-01 22:32:39 +02001149 for (i = 1; i <= 4; i *= 2) {
1150 if (f25.t * i >= var->pixclock &&
1151 f25.t * i < pcl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 pcl = f25.t * i;
1153 pclock = &f25;
1154 }
Michael Schmitza1005012007-05-01 22:32:39 +02001155 if (f32.t * i >= var->pixclock &&
1156 f32.t * i < pcl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 pcl = f32.t * i;
1158 pclock = &f32;
1159 }
Michael Schmitza1005012007-05-01 22:32:39 +02001160 if (fext.t && fext.t * i >= var->pixclock &&
1161 fext.t * i < pcl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 pcl = fext.t * i;
1163 pclock = &fext;
1164 }
1165 }
1166 if (!pclock)
1167 return -EINVAL;
1168 plen = pcl / pclock->t;
1169
1170 left_margin = var->left_margin;
1171 right_margin = var->right_margin;
1172 hsync_len = var->hsync_len;
1173 upper_margin = var->upper_margin;
1174 lower_margin = var->lower_margin;
1175 vsync_len = var->vsync_len;
1176 /* Internal unit is [single lines per (half-)frame] */
1177 if (var->vmode & FB_VMODE_INTERLACED) {
1178 /* # lines in half frame */
1179 /* External unit is [lines per full frame] */
1180 upper_margin = (upper_margin + 1) / 2;
1181 lower_margin = (lower_margin + 1) / 2;
1182 vsync_len = (vsync_len + 1) / 2;
Michael Schmitza1005012007-05-01 22:32:39 +02001183 } else if (var->vmode & FB_VMODE_DOUBLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 /* External unit is [double lines per frame] */
1185 upper_margin *= 2;
1186 lower_margin *= 2;
1187 vsync_len *= 2;
1188 }
1189 }
1190 if (pclock == &fext)
Michael Schmitza1005012007-05-01 22:32:39 +02001191 longoffset = 1; /* VIDEL doesn't synchronize on short offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193 /* Is video bus bandwidth (32MB/s) too low for this resolution? */
1194 /* this is definitely wrong if bus clock != 32MHz */
1195 if (pclock->f / plen / 8 * bpp > 32000000L)
1196 return -EINVAL;
1197
1198 if (vsync_len < 1)
1199 vsync_len = 1;
1200
1201 /* include sync lengths in right/lower margin for all calculations */
1202 right_margin += hsync_len;
1203 lower_margin += vsync_len;
1204
1205 /* ! In all calculations of margins we use # of lines in half frame
1206 * (which is a full frame in non-interlace mode), so we can switch
1207 * between interlace and non-interlace without messing around
1208 * with these.
1209 */
Michael Schmitza1005012007-05-01 22:32:39 +02001210again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 /* Set base_offset 128 and video bus width */
1212 par->hw.falcon.vid_control = mon_type | f030_bus_width;
1213 if (!longoffset)
1214 par->hw.falcon.vid_control |= VCO_SHORTOFFS; /* base_offset 64 */
1215 if (var->sync & FB_SYNC_HOR_HIGH_ACT)
1216 par->hw.falcon.vid_control |= VCO_HSYPOS;
1217 if (var->sync & FB_SYNC_VERT_HIGH_ACT)
1218 par->hw.falcon.vid_control |= VCO_VSYPOS;
1219 /* Pixelclock */
1220 par->hw.falcon.vid_control |= pclock->control_mask;
1221 /* External or internal clock */
1222 par->hw.falcon.sync = pclock->sync_mask | 0x2;
1223 /* Pixellength and prescale */
Michael Schmitza1005012007-05-01 22:32:39 +02001224 par->hw.falcon.vid_mode = (2 / plen) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (doubleline)
1226 par->hw.falcon.vid_mode |= VMO_DOUBLE;
1227 if (interlace)
1228 par->hw.falcon.vid_mode |= VMO_INTER;
1229
1230 /*********************
Michael Schmitza1005012007-05-01 22:32:39 +02001231 * Horizontal timing: unit = [master clock cycles]
1232 * unit of hxx-registers: [master clock cycles * prescale]
1233 * Hxx-registers are 9 bit wide
1234 *
1235 * 1 line = ((hht + 2) * 2 * prescale) clock cycles
1236 *
1237 * graphic output = hdb & 0x200 ?
1238 * ((hht + 2) * 2 - hdb + hde) * prescale - hdboff + hdeoff:
1239 * (hht + 2 - hdb + hde) * prescale - hdboff + hdeoff
1240 * (this must be a multiple of plen*128/bpp, on VGA pixels
1241 * to the right may be cut off with a bigger right margin)
1242 *
1243 * start of graphics relative to start of 1st halfline = hdb & 0x200 ?
1244 * (hdb - hht - 2) * prescale + hdboff :
1245 * hdb * prescale + hdboff
1246 *
1247 * end of graphics relative to start of 1st halfline =
1248 * (hde + hht + 2) * prescale + hdeoff
1249 *********************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 /* Calculate VIDEL registers */
Michael Schmitza1005012007-05-01 22:32:39 +02001251{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 prescale = hxx_prescale(&par->hw.falcon);
1253 base_off = par->hw.falcon.vid_control & VCO_SHORTOFFS ? 64 : 128;
1254
1255 /* Offsets depend on video mode */
1256 /* Offsets are in clock cycles, divide by prescale to
1257 * calculate hd[be]-registers
1258 */
1259 if (par->hw.falcon.f_shift & 0x100) {
1260 align = 1;
1261 hde_off = 0;
1262 hdb_off = (base_off + 16 * plen) + prescale;
Michael Schmitza1005012007-05-01 22:32:39 +02001263 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 align = 128 / bpp;
1265 hde_off = ((128 / bpp + 2) * plen);
1266 if (par->hw.falcon.ste_mode)
1267 hdb_off = (64 + base_off + (128 / bpp + 2) * plen) + prescale;
1268 else
1269 hdb_off = (base_off + (128 / bpp + 18) * plen) + prescale;
1270 }
1271
Michael Schmitza1005012007-05-01 22:32:39 +02001272 gstart = (prescale / 2 + plen * left_margin) / prescale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 /* gend1 is for hde (gend-gstart multiple of align), shifter's xres */
Julia Lawall416e74e2008-04-28 02:14:51 -07001274 gend1 = gstart + roundup(xres, align) * plen / prescale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 /* gend2 is for hbb, visible xres (rest to gend1 is cut off by hblank) */
1276 gend2 = gstart + xres * plen / prescale;
1277 par->HHT = plen * (left_margin + xres + right_margin) /
1278 (2 * prescale) - 2;
1279/* par->HHT = (gend2 + plen * right_margin / prescale) / 2 - 2;*/
1280
Michael Schmitza1005012007-05-01 22:32:39 +02001281 par->HDB = gstart - hdb_off / prescale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 par->HBE = gstart;
Michael Schmitza1005012007-05-01 22:32:39 +02001283 if (par->HDB < 0)
1284 par->HDB += par->HHT + 2 + 0x200;
1285 par->HDE = gend1 - par->HHT - 2 - hde_off / prescale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 par->HBB = gend2 - par->HHT - 2;
1287#if 0
1288 /* One more Videl constraint: data fetch of two lines must not overlap */
Michael Schmitza1005012007-05-01 22:32:39 +02001289 if ((par->HDB & 0x200) && (par->HDB & ~0x200) - par->HDE <= 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 /* if this happens increase margins, decrease hfreq. */
1291 }
1292#endif
1293 if (hde_off % prescale)
1294 par->HBB++; /* compensate for non matching hde and hbb */
1295 par->HSS = par->HHT + 2 - plen * hsync_len / prescale;
1296 if (par->HSS < par->HBB)
1297 par->HSS = par->HBB;
Michael Schmitza1005012007-05-01 22:32:39 +02001298}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 /* check hor. frequency */
Michael Schmitza1005012007-05-01 22:32:39 +02001301 hfreq = pclock->f / ((par->HHT + 2) * prescale * 2);
1302 if (hfreq > fb_info.monspecs.hfmax && mon_type != F_MON_VGA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 /* ++guenther: ^^^^^^^^^^^^^^^^^^^ can't remember why I did this */
1304 /* Too high -> enlarge margin */
1305 left_margin += 1;
1306 right_margin += 1;
1307 goto again;
1308 }
1309 if (hfreq > fb_info.monspecs.hfmax || hfreq < fb_info.monspecs.hfmin)
1310 return -EINVAL;
1311
1312 /* Vxx-registers */
1313 /* All Vxx must be odd in non-interlace, since frame starts in the middle
1314 * of the first displayed line!
1315 * One frame consists of VFT+1 half lines. VFT+1 must be even in
1316 * non-interlace, odd in interlace mode for synchronisation.
1317 * Vxx-registers are 11 bit wide
1318 */
1319 par->VBE = (upper_margin * 2 + 1); /* must begin on odd halfline */
1320 par->VDB = par->VBE;
1321 par->VDE = yres;
Michael Schmitza1005012007-05-01 22:32:39 +02001322 if (!interlace)
1323 par->VDE <<= 1;
1324 if (doubleline)
1325 par->VDE <<= 1; /* VDE now half lines per (half-)frame */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 par->VDE += par->VDB;
1327 par->VBB = par->VDE;
1328 par->VFT = par->VBB + (lower_margin * 2 - 1) - 1;
Michael Schmitza1005012007-05-01 22:32:39 +02001329 par->VSS = par->VFT + 1 - (vsync_len * 2 - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 /* vbb,vss,vft must be even in interlace mode */
1331 if (interlace) {
1332 par->VBB++;
1333 par->VSS++;
1334 par->VFT++;
1335 }
1336
1337 /* V-frequency check, hope I didn't create any loop here. */
1338 /* Interlace and doubleline are mutually exclusive. */
1339 vfreq = (hfreq * 2) / (par->VFT + 1);
Michael Schmitza1005012007-05-01 22:32:39 +02001340 if (vfreq > fb_info.monspecs.vfmax && !doubleline && !interlace) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 /* Too high -> try again with doubleline */
1342 doubleline = 1;
1343 goto again;
Michael Schmitza1005012007-05-01 22:32:39 +02001344 } else if (vfreq < fb_info.monspecs.vfmin && !interlace && !doubleline) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 /* Too low -> try again with interlace */
1346 interlace = 1;
1347 goto again;
Michael Schmitza1005012007-05-01 22:32:39 +02001348 } else if (vfreq < fb_info.monspecs.vfmin && doubleline) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 /* Doubleline too low -> clear doubleline and enlarge margins */
1350 int lines;
1351 doubleline = 0;
Michael Schmitza1005012007-05-01 22:32:39 +02001352 for (lines = 0;
1353 (hfreq * 2) / (par->VFT + 1 + 4 * lines - 2 * yres) >
1354 fb_info.monspecs.vfmax;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 lines++)
1356 ;
1357 upper_margin += lines;
1358 lower_margin += lines;
1359 goto again;
Michael Schmitza1005012007-05-01 22:32:39 +02001360 } else if (vfreq > fb_info.monspecs.vfmax && doubleline) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 /* Doubleline too high -> enlarge margins */
1362 int lines;
Michael Schmitza1005012007-05-01 22:32:39 +02001363 for (lines = 0;
1364 (hfreq * 2) / (par->VFT + 1 + 4 * lines) >
1365 fb_info.monspecs.vfmax;
1366 lines += 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 ;
1368 upper_margin += lines;
1369 lower_margin += lines;
1370 goto again;
Michael Schmitza1005012007-05-01 22:32:39 +02001371 } else if (vfreq > fb_info.monspecs.vfmax && interlace) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 /* Interlace, too high -> enlarge margins */
1373 int lines;
Michael Schmitza1005012007-05-01 22:32:39 +02001374 for (lines = 0;
1375 (hfreq * 2) / (par->VFT + 1 + 4 * lines) >
1376 fb_info.monspecs.vfmax;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 lines++)
1378 ;
1379 upper_margin += lines;
1380 lower_margin += lines;
1381 goto again;
Michael Schmitza1005012007-05-01 22:32:39 +02001382 } else if (vfreq < fb_info.monspecs.vfmin ||
1383 vfreq > fb_info.monspecs.vfmax)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return -EINVAL;
1385
Michael Schmitza1005012007-05-01 22:32:39 +02001386set_screen_base:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 linelen = xres_virtual * bpp / 8;
1388 if (yres_virtual * linelen > screen_len && screen_len)
1389 return -EINVAL;
1390 if (yres * linelen > screen_len && screen_len)
1391 return -EINVAL;
1392 if (var->yoffset + yres > yres_virtual && yres_virtual)
1393 return -EINVAL;
1394 par->yres_virtual = yres_virtual;
1395 par->screen_base = screen_base + var->yoffset * linelen;
1396 par->hw.falcon.xoffset = 0;
1397
Michael Schmitza1005012007-05-01 22:32:39 +02001398 // FIXME!!! sort of works, no crash
1399 //par->next_line = linelen;
1400 //par->next_plane = yres_virtual * linelen;
1401 par->next_line = linelen;
1402 par->next_plane = 2;
1403 // crashes
1404 //par->next_plane = linelen;
1405 //par->next_line = yres_virtual * linelen;
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 return 0;
1408}
1409
Michael Schmitza1005012007-05-01 22:32:39 +02001410static int falcon_encode_var(struct fb_var_screeninfo *var,
1411 struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
1413/* !!! only for VGA !!! */
1414 int linelen;
1415 int prescale, plen;
1416 int hdb_off, hde_off, base_off;
1417 struct falcon_hw *hw = &par->hw.falcon;
1418
1419 memset(var, 0, sizeof(struct fb_var_screeninfo));
1420 /* possible frequencies: 25.175 or 32MHz */
1421 var->pixclock = hw->sync & 0x1 ? fext.t :
1422 hw->vid_control & VCO_CLOCK25 ? f25.t : f32.t;
1423
Michael Schmitza1005012007-05-01 22:32:39 +02001424 var->height = -1;
1425 var->width = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Michael Schmitza1005012007-05-01 22:32:39 +02001427 var->sync = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (hw->vid_control & VCO_HSYPOS)
1429 var->sync |= FB_SYNC_HOR_HIGH_ACT;
1430 if (hw->vid_control & VCO_VSYPOS)
1431 var->sync |= FB_SYNC_VERT_HIGH_ACT;
1432
1433 var->vmode = FB_VMODE_NONINTERLACED;
1434 if (hw->vid_mode & VMO_INTER)
1435 var->vmode |= FB_VMODE_INTERLACED;
1436 if (hw->vid_mode & VMO_DOUBLE)
1437 var->vmode |= FB_VMODE_DOUBLE;
Michael Schmitza1005012007-05-01 22:32:39 +02001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /* visible y resolution:
1440 * Graphics display starts at line VDB and ends at line
1441 * VDE. If interlace mode off unit of VC-registers is
1442 * half lines, else lines.
1443 */
1444 var->yres = hw->vde - hw->vdb;
1445 if (!(var->vmode & FB_VMODE_INTERLACED))
1446 var->yres >>= 1;
1447 if (var->vmode & FB_VMODE_DOUBLE)
1448 var->yres >>= 1;
1449
Michael Schmitza1005012007-05-01 22:32:39 +02001450 /*
1451 * to get bpp, we must examine f_shift and st_shift.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 * f_shift is valid if any of bits no. 10, 8 or 4
1453 * is set. Priority in f_shift is: 10 ">" 8 ">" 4, i.e.
1454 * if bit 10 set then bit 8 and bit 4 don't care...
1455 * If all these bits are 0 get display depth from st_shift
1456 * (as for ST and STE)
1457 */
Michael Schmitza1005012007-05-01 22:32:39 +02001458 if (hw->f_shift & 0x400) /* 2 colors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 var->bits_per_pixel = 1;
1460 else if (hw->f_shift & 0x100) /* hicolor */
1461 var->bits_per_pixel = 16;
1462 else if (hw->f_shift & 0x010) /* 8 bitplanes */
1463 var->bits_per_pixel = 8;
1464 else if (hw->st_shift == 0)
1465 var->bits_per_pixel = 4;
1466 else if (hw->st_shift == 0x100)
1467 var->bits_per_pixel = 2;
Michael Schmitza1005012007-05-01 22:32:39 +02001468 else /* if (hw->st_shift == 0x200) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 var->bits_per_pixel = 1;
1470
1471 var->xres = hw->line_width * 16 / var->bits_per_pixel;
1472 var->xres_virtual = var->xres + hw->line_offset * 16 / var->bits_per_pixel;
1473 if (hw->xoffset)
1474 var->xres_virtual += 16;
1475
1476 if (var->bits_per_pixel == 16) {
Michael Schmitza1005012007-05-01 22:32:39 +02001477 var->red.offset = 11;
1478 var->red.length = 5;
1479 var->red.msb_right = 0;
1480 var->green.offset = 5;
1481 var->green.length = 6;
1482 var->green.msb_right = 0;
1483 var->blue.offset = 0;
1484 var->blue.length = 5;
1485 var->blue.msb_right = 0;
1486 } else {
1487 var->red.offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 var->red.length = hw->ste_mode ? 4 : 6;
Michael Schmitza1005012007-05-01 22:32:39 +02001489 if (var->red.length > var->bits_per_pixel)
1490 var->red.length = var->bits_per_pixel;
1491 var->red.msb_right = 0;
1492 var->grayscale = 0;
1493 var->blue = var->green = var->red;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
Michael Schmitza1005012007-05-01 22:32:39 +02001495 var->transp.offset = 0;
1496 var->transp.length = 0;
1497 var->transp.msb_right = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 linelen = var->xres_virtual * var->bits_per_pixel / 8;
1500 if (screen_len) {
1501 if (par->yres_virtual)
1502 var->yres_virtual = par->yres_virtual;
1503 else
Michael Schmitza1005012007-05-01 22:32:39 +02001504 /* yres_virtual == 0 means use maximum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 var->yres_virtual = screen_len / linelen;
Michael Schmitza1005012007-05-01 22:32:39 +02001506 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (hwscroll < 0)
1508 var->yres_virtual = 2 * var->yres;
1509 else
Michael Schmitza1005012007-05-01 22:32:39 +02001510 var->yres_virtual = var->yres + hwscroll * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
Michael Schmitza1005012007-05-01 22:32:39 +02001512 var->xoffset = 0; /* TODO change this */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 /* hdX-offsets */
1515 prescale = hxx_prescale(hw);
1516 plen = 4 >> (hw->vid_mode >> 2 & 0x3);
1517 base_off = hw->vid_control & VCO_SHORTOFFS ? 64 : 128;
1518 if (hw->f_shift & 0x100) {
1519 hde_off = 0;
1520 hdb_off = (base_off + 16 * plen) + prescale;
Michael Schmitza1005012007-05-01 22:32:39 +02001521 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 hde_off = ((128 / var->bits_per_pixel + 2) * plen);
1523 if (hw->ste_mode)
1524 hdb_off = (64 + base_off + (128 / var->bits_per_pixel + 2) * plen)
1525 + prescale;
1526 else
1527 hdb_off = (base_off + (128 / var->bits_per_pixel + 18) * plen)
1528 + prescale;
1529 }
1530
1531 /* Right margin includes hsync */
1532 var->left_margin = hdb_off + prescale * ((hw->hdb & 0x1ff) -
Michael Schmitza1005012007-05-01 22:32:39 +02001533 (hw->hdb & 0x200 ? 2 + hw->hht : 0));
1534 if (hw->ste_mode || mon_type != F_MON_VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 var->right_margin = prescale * (hw->hht + 2 - hw->hde) - hde_off;
1536 else
1537 /* can't use this in ste_mode, because hbb is +1 off */
1538 var->right_margin = prescale * (hw->hht + 2 - hw->hbb);
1539 var->hsync_len = prescale * (hw->hht + 2 - hw->hss);
1540
1541 /* Lower margin includes vsync */
Michael Schmitza1005012007-05-01 22:32:39 +02001542 var->upper_margin = hw->vdb / 2; /* round down to full lines */
1543 var->lower_margin = (hw->vft + 1 - hw->vde + 1) / 2; /* round up */
1544 var->vsync_len = (hw->vft + 1 - hw->vss + 1) / 2; /* round up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 if (var->vmode & FB_VMODE_INTERLACED) {
1546 var->upper_margin *= 2;
1547 var->lower_margin *= 2;
1548 var->vsync_len *= 2;
Michael Schmitza1005012007-05-01 22:32:39 +02001549 } else if (var->vmode & FB_VMODE_DOUBLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 var->upper_margin = (var->upper_margin + 1) / 2;
1551 var->lower_margin = (var->lower_margin + 1) / 2;
1552 var->vsync_len = (var->vsync_len + 1) / 2;
1553 }
1554
1555 var->pixclock *= plen;
1556 var->left_margin /= plen;
1557 var->right_margin /= plen;
1558 var->hsync_len /= plen;
1559
1560 var->right_margin -= var->hsync_len;
1561 var->lower_margin -= var->vsync_len;
1562
1563 if (screen_base)
Michael Schmitza1005012007-05-01 22:32:39 +02001564 var->yoffset = (par->screen_base - screen_base) / linelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 else
Michael Schmitza1005012007-05-01 22:32:39 +02001566 var->yoffset = 0;
1567 var->nonstd = 0; /* what is this for? */
1568 var->activate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 return 0;
1570}
1571
Michael Schmitza1005012007-05-01 22:32:39 +02001572static int f_change_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573static struct falcon_hw f_new_mode;
Michael Schmitza1005012007-05-01 22:32:39 +02001574static int f_pan_display;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Michael Schmitza1005012007-05-01 22:32:39 +02001576static void falcon_get_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
1578 unsigned long addr;
1579 struct falcon_hw *hw = &par->hw.falcon;
1580
1581 hw->line_width = shifter_f030.scn_width;
1582 hw->line_offset = shifter_f030.off_next;
1583 hw->st_shift = videl.st_shift & 0x300;
1584 hw->f_shift = videl.f_shift;
1585 hw->vid_control = videl.control;
1586 hw->vid_mode = videl.mode;
1587 hw->sync = shifter.syncmode & 0x1;
1588 hw->xoffset = videl.xoffset & 0xf;
1589 hw->hht = videl.hht;
1590 hw->hbb = videl.hbb;
1591 hw->hbe = videl.hbe;
1592 hw->hdb = videl.hdb;
1593 hw->hde = videl.hde;
1594 hw->hss = videl.hss;
1595 hw->vft = videl.vft;
1596 hw->vbb = videl.vbb;
1597 hw->vbe = videl.vbe;
1598 hw->vdb = videl.vdb;
1599 hw->vde = videl.vde;
1600 hw->vss = videl.vss;
1601
1602 addr = (shifter.bas_hi & 0xff) << 16 |
1603 (shifter.bas_md & 0xff) << 8 |
1604 (shifter.bas_lo & 0xff);
1605 par->screen_base = phys_to_virt(addr);
1606
1607 /* derived parameters */
Michael Schmitza1005012007-05-01 22:32:39 +02001608 hw->ste_mode = (hw->f_shift & 0x510) == 0 && hw->st_shift == 0x100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 hw->mono = (hw->f_shift & 0x400) ||
Michael Schmitza1005012007-05-01 22:32:39 +02001610 ((hw->f_shift & 0x510) == 0 && hw->st_shift == 0x200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
Michael Schmitza1005012007-05-01 22:32:39 +02001613static void falcon_set_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
1615 f_change_mode = 0;
1616
1617 /* only set screen_base if really necessary */
1618 if (current_par.screen_base != par->screen_base)
1619 fbhw->set_screen_base(par->screen_base);
1620
1621 /* Don't touch any other registers if we keep the default resolution */
1622 if (DontCalcRes)
1623 return;
1624
1625 /* Tell vbl-handler to change video mode.
1626 * We change modes only on next VBL, to avoid desynchronisation
1627 * (a shift to the right and wrap around by a random number of pixels
1628 * in all monochrome modes).
1629 * This seems to work on my Falcon.
1630 */
1631 f_new_mode = par->hw.falcon;
1632 f_change_mode = 1;
1633}
1634
Michael Schmitza1005012007-05-01 22:32:39 +02001635static irqreturn_t falcon_vbl_switcher(int irq, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
1637 struct falcon_hw *hw = &f_new_mode;
1638
1639 if (f_change_mode) {
1640 f_change_mode = 0;
1641
1642 if (hw->sync & 0x1) {
1643 /* Enable external pixelclock. This code only for ScreenWonder */
Michael Schmitza1005012007-05-01 22:32:39 +02001644 *(volatile unsigned short *)0xffff9202 = 0xffbf;
1645 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 /* Turn off external clocks. Read sets all output bits to 1. */
Michael Schmitza1005012007-05-01 22:32:39 +02001647 *(volatile unsigned short *)0xffff9202;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
1649 shifter.syncmode = hw->sync;
1650
1651 videl.hht = hw->hht;
1652 videl.hbb = hw->hbb;
1653 videl.hbe = hw->hbe;
1654 videl.hdb = hw->hdb;
1655 videl.hde = hw->hde;
1656 videl.hss = hw->hss;
1657 videl.vft = hw->vft;
1658 videl.vbb = hw->vbb;
1659 videl.vbe = hw->vbe;
1660 videl.vdb = hw->vdb;
1661 videl.vde = hw->vde;
1662 videl.vss = hw->vss;
1663
Michael Schmitza1005012007-05-01 22:32:39 +02001664 videl.f_shift = 0; /* write enables Falcon palette, 0: 4 planes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (hw->ste_mode) {
Michael Schmitza1005012007-05-01 22:32:39 +02001666 videl.st_shift = hw->st_shift; /* write enables STE palette */
1667 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 /* IMPORTANT:
Michael Schmitza1005012007-05-01 22:32:39 +02001669 * set st_shift 0, so we can tell the screen-depth if f_shift == 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 * Writing 0 to f_shift enables 4 plane Falcon mode but
Michael Schmitza1005012007-05-01 22:32:39 +02001671 * doesn't set st_shift. st_shift != 0 (!= 4planes) is impossible
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 * with Falcon palette.
1673 */
1674 videl.st_shift = 0;
1675 /* now back to Falcon palette mode */
1676 videl.f_shift = hw->f_shift;
1677 }
1678 /* writing to st_shift changed scn_width and vid_mode */
1679 videl.xoffset = hw->xoffset;
1680 shifter_f030.scn_width = hw->line_width;
1681 shifter_f030.off_next = hw->line_offset;
1682 videl.control = hw->vid_control;
1683 videl.mode = hw->vid_mode;
1684 }
1685 if (f_pan_display) {
1686 f_pan_display = 0;
1687 videl.xoffset = current_par.hw.falcon.xoffset;
1688 shifter_f030.off_next = current_par.hw.falcon.line_offset;
1689 }
1690 return IRQ_HANDLED;
1691}
1692
Michael Schmitza1005012007-05-01 22:32:39 +02001693static int falcon_pan_display(struct fb_var_screeninfo *var,
1694 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
Michael Schmitza1005012007-05-01 22:32:39 +02001696 struct atafb_par *par = (struct atafb_par *)info->par;
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 int xoffset;
Michael Schmitza1005012007-05-01 22:32:39 +02001699 int bpp = info->var.bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 if (bpp == 1)
1702 var->xoffset = up(var->xoffset, 32);
1703 if (bpp != 16)
1704 par->hw.falcon.xoffset = var->xoffset & 15;
1705 else {
1706 par->hw.falcon.xoffset = 0;
1707 var->xoffset = up(var->xoffset, 2);
1708 }
1709 par->hw.falcon.line_offset = bpp *
Michael Schmitza1005012007-05-01 22:32:39 +02001710 (info->var.xres_virtual - info->var.xres) / 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (par->hw.falcon.xoffset)
1712 par->hw.falcon.line_offset -= bpp;
1713 xoffset = var->xoffset - par->hw.falcon.xoffset;
1714
1715 par->screen_base = screen_base +
Michael Schmitza1005012007-05-01 22:32:39 +02001716 (var->yoffset * info->var.xres_virtual + xoffset) * bpp / 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (fbhw->set_screen_base)
Michael Schmitza1005012007-05-01 22:32:39 +02001718 fbhw->set_screen_base(par->screen_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 else
Michael Schmitza1005012007-05-01 22:32:39 +02001720 return -EINVAL; /* shouldn't happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 f_pan_display = 1;
1722 return 0;
1723}
1724
Michael Schmitza1005012007-05-01 22:32:39 +02001725static int falcon_setcolreg(unsigned int regno, unsigned int red,
1726 unsigned int green, unsigned int blue,
1727 unsigned int transp, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
1729 if (regno > 255)
1730 return 1;
1731 f030_col[regno] = (((red & 0xfc00) << 16) |
1732 ((green & 0xfc00) << 8) |
1733 ((blue & 0xfc00) >> 8));
1734 if (regno < 16) {
1735 shifter_tt.color_reg[regno] =
1736 (((red & 0xe000) >> 13) | ((red & 0x1000) >> 12) << 8) |
1737 (((green & 0xe000) >> 13) | ((green & 0x1000) >> 12) << 4) |
1738 ((blue & 0xe000) >> 13) | ((blue & 0x1000) >> 12);
1739#ifdef FBCON_HAS_CFB16
1740 fbcon_cfb16_cmap[regno] = ((red & 0xf800) |
1741 ((green & 0xfc00) >> 5) |
1742 ((blue & 0xf800) >> 11));
1743#endif
1744 }
1745 return 0;
1746}
1747
Michael Schmitza1005012007-05-01 22:32:39 +02001748static int falcon_blank(int blank_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Michael Schmitza1005012007-05-01 22:32:39 +02001750 /* ++guenther: we can switch off graphics by changing VDB and VDE,
1751 * so VIDEL doesn't hog the bus while saving.
1752 * (this may affect usleep()).
1753 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 int vdb, vss, hbe, hss;
1755
1756 if (mon_type == F_MON_SM) /* this doesn't work on SM124 */
1757 return 1;
1758
1759 vdb = current_par.VDB;
1760 vss = current_par.VSS;
1761 hbe = current_par.HBE;
1762 hss = current_par.HSS;
1763
1764 if (blank_mode >= 1) {
1765 /* disable graphics output (this speeds up the CPU) ... */
1766 vdb = current_par.VFT + 1;
1767 /* ... and blank all lines */
1768 hbe = current_par.HHT + 2;
1769 }
1770 /* use VESA suspend modes on VGA monitors */
1771 if (mon_type == F_MON_VGA) {
1772 if (blank_mode == 2 || blank_mode == 4)
1773 vss = current_par.VFT + 1;
1774 if (blank_mode == 3 || blank_mode == 4)
1775 hss = current_par.HHT + 2;
1776 }
1777
1778 videl.vdb = vdb;
1779 videl.vss = vss;
1780 videl.hbe = hbe;
1781 videl.hss = hss;
1782
1783 return 0;
1784}
1785
Michael Schmitza1005012007-05-01 22:32:39 +02001786static int falcon_detect(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
1788 struct atafb_par par;
1789 unsigned char fhw;
1790
1791 /* Determine connected monitor and set monitor parameters */
Michael Schmitza1005012007-05-01 22:32:39 +02001792 fhw = *(unsigned char *)0xffff8006;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 mon_type = fhw >> 6 & 0x3;
1794 /* bit 1 of fhw: 1=32 bit ram bus, 0=16 bit */
1795 f030_bus_width = fhw << 6 & 0x80;
1796 switch (mon_type) {
1797 case F_MON_SM:
1798 fb_info.monspecs.vfmin = 70;
1799 fb_info.monspecs.vfmax = 72;
1800 fb_info.monspecs.hfmin = 35713;
1801 fb_info.monspecs.hfmax = 35715;
1802 break;
1803 case F_MON_SC:
1804 case F_MON_TV:
1805 /* PAL...NTSC */
Michael Schmitza1005012007-05-01 22:32:39 +02001806 fb_info.monspecs.vfmin = 49; /* not 50, since TOS defaults to 49.9x Hz */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 fb_info.monspecs.vfmax = 60;
1808 fb_info.monspecs.hfmin = 15620;
1809 fb_info.monspecs.hfmax = 15755;
1810 break;
1811 }
1812 /* initialize hsync-len */
1813 f25.hsync = h_syncs[mon_type] / f25.t;
1814 f32.hsync = h_syncs[mon_type] / f32.t;
1815 if (fext.t)
1816 fext.hsync = h_syncs[mon_type] / fext.t;
1817
1818 falcon_get_par(&par);
1819 falcon_encode_var(&atafb_predefined[0], &par);
1820
1821 /* Detected mode is always the "autodetect" slot */
1822 return 1;
1823}
1824
1825#endif /* ATAFB_FALCON */
1826
1827/* ------------------- ST(E) specific functions ---------------------- */
1828
1829#ifdef ATAFB_STE
1830
Michael Schmitza1005012007-05-01 22:32:39 +02001831static int stste_encode_fix(struct fb_fix_screeninfo *fix,
1832 struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
1834 int mode;
1835
Michael Schmitza1005012007-05-01 22:32:39 +02001836 strcpy(fix->id, "Atari Builtin");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 fix->smem_start = (unsigned long)real_screen_base;
1838 fix->smem_len = screen_len;
1839 fix->type = FB_TYPE_INTERLEAVED_PLANES;
1840 fix->type_aux = 2;
1841 fix->visual = FB_VISUAL_PSEUDOCOLOR;
1842 mode = par->hw.st.mode & 3;
1843 if (mode == ST_HIGH) {
1844 fix->type = FB_TYPE_PACKED_PIXELS;
1845 fix->type_aux = 0;
1846 fix->visual = FB_VISUAL_MONO10;
1847 }
1848 if (ATARIHW_PRESENT(EXTD_SHIFTER)) {
1849 fix->xpanstep = 16;
1850 fix->ypanstep = 1;
1851 } else {
1852 fix->xpanstep = 0;
1853 fix->ypanstep = 0;
1854 }
1855 fix->ywrapstep = 0;
Geert Uytterhoeven02603932008-11-18 21:13:01 +01001856 fix->line_length = par->next_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 fix->accel = FB_ACCEL_ATARIBLITT;
1858 return 0;
1859}
1860
Michael Schmitza1005012007-05-01 22:32:39 +02001861static int stste_decode_var(struct fb_var_screeninfo *var,
1862 struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
Michael Schmitza1005012007-05-01 22:32:39 +02001864 int xres = var->xres;
1865 int yres = var->yres;
1866 int bpp = var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 int linelen;
1868 int yres_virtual = var->yres_virtual;
1869
1870 if (mono_moni) {
1871 if (bpp > 1 || xres > sttt_xres || yres > st_yres)
1872 return -EINVAL;
Michael Schmitza1005012007-05-01 22:32:39 +02001873 par->hw.st.mode = ST_HIGH;
1874 xres = sttt_xres;
1875 yres = st_yres;
1876 bpp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 } else {
1878 if (bpp > 4 || xres > sttt_xres || yres > st_yres)
1879 return -EINVAL;
1880 if (bpp > 2) {
Michael Schmitza1005012007-05-01 22:32:39 +02001881 if (xres > sttt_xres / 2 || yres > st_yres / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 return -EINVAL;
Michael Schmitza1005012007-05-01 22:32:39 +02001883 par->hw.st.mode = ST_LOW;
1884 xres = sttt_xres / 2;
1885 yres = st_yres / 2;
1886 bpp = 4;
1887 } else if (bpp > 1) {
1888 if (xres > sttt_xres || yres > st_yres / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 return -EINVAL;
Michael Schmitza1005012007-05-01 22:32:39 +02001890 par->hw.st.mode = ST_MID;
1891 xres = sttt_xres;
1892 yres = st_yres / 2;
1893 bpp = 2;
1894 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return -EINVAL;
1896 }
1897 if (yres_virtual <= 0)
1898 yres_virtual = 0;
1899 else if (yres_virtual < yres)
1900 yres_virtual = yres;
1901 if (var->sync & FB_SYNC_EXT)
Michael Schmitza1005012007-05-01 22:32:39 +02001902 par->hw.st.sync = (par->hw.st.sync & ~1) | 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 else
Michael Schmitza1005012007-05-01 22:32:39 +02001904 par->hw.st.sync = (par->hw.st.sync & ~1);
1905 linelen = xres * bpp / 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (yres_virtual * linelen > screen_len && screen_len)
1907 return -EINVAL;
1908 if (yres * linelen > screen_len && screen_len)
1909 return -EINVAL;
1910 if (var->yoffset + yres > yres_virtual && yres_virtual)
1911 return -EINVAL;
1912 par->yres_virtual = yres_virtual;
Michael Schmitza1005012007-05-01 22:32:39 +02001913 par->screen_base = screen_base + var->yoffset * linelen;
Geert Uytterhoeven02603932008-11-18 21:13:01 +01001914 par->next_line = linelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 return 0;
1916}
1917
Michael Schmitza1005012007-05-01 22:32:39 +02001918static int stste_encode_var(struct fb_var_screeninfo *var,
1919 struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 int linelen;
1922 memset(var, 0, sizeof(struct fb_var_screeninfo));
Michael Schmitza1005012007-05-01 22:32:39 +02001923 var->red.offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 var->red.length = ATARIHW_PRESENT(EXTD_SHIFTER) ? 4 : 3;
Michael Schmitza1005012007-05-01 22:32:39 +02001925 var->red.msb_right = 0;
1926 var->grayscale = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Michael Schmitza1005012007-05-01 22:32:39 +02001928 var->pixclock = 31041;
1929 var->left_margin = 120; /* these are incorrect */
1930 var->right_margin = 100;
1931 var->upper_margin = 8;
1932 var->lower_margin = 16;
1933 var->hsync_len = 140;
1934 var->vsync_len = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Michael Schmitza1005012007-05-01 22:32:39 +02001936 var->height = -1;
1937 var->width = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 if (!(par->hw.st.sync & 1))
Michael Schmitza1005012007-05-01 22:32:39 +02001940 var->sync = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 else
Michael Schmitza1005012007-05-01 22:32:39 +02001942 var->sync = FB_SYNC_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 switch (par->hw.st.mode & 3) {
1945 case ST_LOW:
Michael Schmitza1005012007-05-01 22:32:39 +02001946 var->xres = sttt_xres / 2;
1947 var->yres = st_yres / 2;
1948 var->bits_per_pixel = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 break;
1950 case ST_MID:
Michael Schmitza1005012007-05-01 22:32:39 +02001951 var->xres = sttt_xres;
1952 var->yres = st_yres / 2;
1953 var->bits_per_pixel = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 break;
1955 case ST_HIGH:
Michael Schmitza1005012007-05-01 22:32:39 +02001956 var->xres = sttt_xres;
1957 var->yres = st_yres;
1958 var->bits_per_pixel = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 break;
Michael Schmitza1005012007-05-01 22:32:39 +02001960 }
1961 var->blue = var->green = var->red;
1962 var->transp.offset = 0;
1963 var->transp.length = 0;
1964 var->transp.msb_right = 0;
1965 var->xres_virtual = sttt_xres_virtual;
1966 linelen = var->xres_virtual * var->bits_per_pixel / 8;
1967 ovsc_addlen = linelen * (sttt_yres_virtual - st_yres);
1968
1969 if (!use_hwscroll)
1970 var->yres_virtual = var->yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 else if (screen_len) {
1972 if (par->yres_virtual)
1973 var->yres_virtual = par->yres_virtual;
1974 else
Michael Schmitza1005012007-05-01 22:32:39 +02001975 /* yres_virtual == 0 means use maximum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 var->yres_virtual = screen_len / linelen;
Michael Schmitza1005012007-05-01 22:32:39 +02001977 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 if (hwscroll < 0)
1979 var->yres_virtual = 2 * var->yres;
1980 else
Michael Schmitza1005012007-05-01 22:32:39 +02001981 var->yres_virtual = var->yres + hwscroll * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
Michael Schmitza1005012007-05-01 22:32:39 +02001983 var->xoffset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (screen_base)
Michael Schmitza1005012007-05-01 22:32:39 +02001985 var->yoffset = (par->screen_base - screen_base) / linelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 else
Michael Schmitza1005012007-05-01 22:32:39 +02001987 var->yoffset = 0;
1988 var->nonstd = 0;
1989 var->activate = 0;
1990 var->vmode = FB_VMODE_NONINTERLACED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 return 0;
1992}
1993
Michael Schmitza1005012007-05-01 22:32:39 +02001994static void stste_get_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
1996 unsigned long addr;
Michael Schmitza1005012007-05-01 22:32:39 +02001997 par->hw.st.mode = shifter_tt.st_shiftmode;
1998 par->hw.st.sync = shifter.syncmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 addr = ((shifter.bas_hi & 0xff) << 16) |
2000 ((shifter.bas_md & 0xff) << 8);
2001 if (ATARIHW_PRESENT(EXTD_SHIFTER))
2002 addr |= (shifter.bas_lo & 0xff);
2003 par->screen_base = phys_to_virt(addr);
2004}
2005
Michael Schmitza1005012007-05-01 22:32:39 +02002006static void stste_set_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
Michael Schmitza1005012007-05-01 22:32:39 +02002008 shifter_tt.st_shiftmode = par->hw.st.mode;
2009 shifter.syncmode = par->hw.st.sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 /* only set screen_base if really necessary */
2011 if (current_par.screen_base != par->screen_base)
2012 fbhw->set_screen_base(par->screen_base);
2013}
2014
Michael Schmitza1005012007-05-01 22:32:39 +02002015static int stste_setcolreg(unsigned int regno, unsigned int red,
2016 unsigned int green, unsigned int blue,
2017 unsigned int transp, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
2019 if (regno > 15)
2020 return 1;
2021 red >>= 12;
2022 blue >>= 12;
2023 green >>= 12;
2024 if (ATARIHW_PRESENT(EXTD_SHIFTER))
2025 shifter_tt.color_reg[regno] =
2026 (((red & 0xe) >> 1) | ((red & 1) << 3) << 8) |
2027 (((green & 0xe) >> 1) | ((green & 1) << 3) << 4) |
2028 ((blue & 0xe) >> 1) | ((blue & 1) << 3);
2029 else
2030 shifter_tt.color_reg[regno] =
2031 ((red & 0xe) << 7) |
2032 ((green & 0xe) << 3) |
2033 ((blue & 0xe) >> 1);
2034 return 0;
2035}
2036
Michael Schmitza1005012007-05-01 22:32:39 +02002037static int stste_detect(void)
2038{
2039 struct atafb_par par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 /* Determine the connected monitor: The DMA sound must be
2042 * disabled before reading the MFP GPIP, because the Sound
2043 * Done Signal and the Monochrome Detect are XORed together!
2044 */
2045 if (ATARIHW_PRESENT(PCM_8BIT)) {
2046 tt_dmasnd.ctrl = DMASND_CTRL_OFF;
Michael Schmitza1005012007-05-01 22:32:39 +02002047 udelay(20); /* wait a while for things to settle down */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 }
2049 mono_moni = (mfp.par_dt_reg & 0x80) == 0;
2050
2051 stste_get_par(&par);
2052 stste_encode_var(&atafb_predefined[0], &par);
2053
2054 if (!ATARIHW_PRESENT(EXTD_SHIFTER))
2055 use_hwscroll = 0;
2056 return 1;
2057}
2058
2059static void stste_set_screen_base(void *s_base)
2060{
2061 unsigned long addr;
Michael Schmitza1005012007-05-01 22:32:39 +02002062 addr = virt_to_phys(s_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 /* Setup Screen Memory */
Michael Schmitza1005012007-05-01 22:32:39 +02002064 shifter.bas_hi = (unsigned char)((addr & 0xff0000) >> 16);
2065 shifter.bas_md = (unsigned char)((addr & 0x00ff00) >> 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 if (ATARIHW_PRESENT(EXTD_SHIFTER))
Michael Schmitza1005012007-05-01 22:32:39 +02002067 shifter.bas_lo = (unsigned char)(addr & 0x0000ff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
2070#endif /* ATAFB_STE */
2071
2072/* Switching the screen size should be done during vsync, otherwise
2073 * the margins may get messed up. This is a well known problem of
2074 * the ST's video system.
2075 *
2076 * Unfortunately there is hardly any way to find the vsync, as the
2077 * vertical blank interrupt is no longer in time on machines with
2078 * overscan type modifications.
2079 *
2080 * We can, however, use Timer B to safely detect the black shoulder,
2081 * but then we've got to guess an appropriate delay to find the vsync.
2082 * This might not work on every machine.
2083 *
2084 * martin_rogge @ ki.maus.de, 8th Aug 1995
2085 */
2086
2087#define LINE_DELAY (mono_moni ? 30 : 70)
2088#define SYNC_DELAY (mono_moni ? 1500 : 2000)
2089
2090/* SWITCH_ACIA may be used for Falcon (ScreenBlaster III internal!) */
2091static void st_ovsc_switch(void)
2092{
Michael Schmitza1005012007-05-01 22:32:39 +02002093 unsigned long flags;
2094 register unsigned char old, new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Michael Schmitza1005012007-05-01 22:32:39 +02002096 if (!(atari_switches & ATARI_SWITCH_OVSC_MASK))
2097 return;
2098 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Michael Schmitza1005012007-05-01 22:32:39 +02002100 mfp.tim_ct_b = 0x10;
2101 mfp.active_edge |= 8;
2102 mfp.tim_ct_b = 0;
2103 mfp.tim_dt_b = 0xf0;
2104 mfp.tim_ct_b = 8;
2105 while (mfp.tim_dt_b > 1) /* TOS does it this way, don't ask why */
2106 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 new = mfp.tim_dt_b;
Michael Schmitza1005012007-05-01 22:32:39 +02002108 do {
2109 udelay(LINE_DELAY);
2110 old = new;
2111 new = mfp.tim_dt_b;
2112 } while (old != new);
2113 mfp.tim_ct_b = 0x10;
2114 udelay(SYNC_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Michael Schmitza1005012007-05-01 22:32:39 +02002116 if (atari_switches & ATARI_SWITCH_OVSC_IKBD)
2117 acia.key_ctrl = ACIA_DIV64 | ACIA_D8N1S | ACIA_RHTID | ACIA_RIE;
2118 if (atari_switches & ATARI_SWITCH_OVSC_MIDI)
2119 acia.mid_ctrl = ACIA_DIV16 | ACIA_D8N1S | ACIA_RHTID;
2120 if (atari_switches & (ATARI_SWITCH_OVSC_SND6|ATARI_SWITCH_OVSC_SND7)) {
2121 sound_ym.rd_data_reg_sel = 14;
2122 sound_ym.wd_data = sound_ym.rd_data_reg_sel |
2123 ((atari_switches & ATARI_SWITCH_OVSC_SND6) ? 0x40:0) |
2124 ((atari_switches & ATARI_SWITCH_OVSC_SND7) ? 0x80:0);
2125 }
2126 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127}
2128
2129/* ------------------- External Video ---------------------- */
2130
2131#ifdef ATAFB_EXT
2132
Michael Schmitza1005012007-05-01 22:32:39 +02002133static int ext_encode_fix(struct fb_fix_screeninfo *fix, struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
Michael Schmitza1005012007-05-01 22:32:39 +02002135 strcpy(fix->id, "Unknown Extern");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 fix->smem_start = (unsigned long)external_addr;
2137 fix->smem_len = PAGE_ALIGN(external_len);
2138 if (external_depth == 1) {
2139 fix->type = FB_TYPE_PACKED_PIXELS;
2140 /* The letters 'n' and 'i' in the "atavideo=external:" stand
2141 * for "normal" and "inverted", rsp., in the monochrome case */
2142 fix->visual =
2143 (external_pmode == FB_TYPE_INTERLEAVED_PLANES ||
2144 external_pmode == FB_TYPE_PACKED_PIXELS) ?
Michael Schmitza1005012007-05-01 22:32:39 +02002145 FB_VISUAL_MONO10 : FB_VISUAL_MONO01;
2146 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 /* Use STATIC if we don't know how to access color registers */
2148 int visual = external_vgaiobase ?
2149 FB_VISUAL_PSEUDOCOLOR :
2150 FB_VISUAL_STATIC_PSEUDOCOLOR;
2151 switch (external_pmode) {
Michael Schmitza1005012007-05-01 22:32:39 +02002152 case -1: /* truecolor */
2153 fix->type = FB_TYPE_PACKED_PIXELS;
2154 fix->visual = FB_VISUAL_TRUECOLOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 break;
Michael Schmitza1005012007-05-01 22:32:39 +02002156 case FB_TYPE_PACKED_PIXELS:
2157 fix->type = FB_TYPE_PACKED_PIXELS;
2158 fix->visual = visual;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 break;
Michael Schmitza1005012007-05-01 22:32:39 +02002160 case FB_TYPE_PLANES:
2161 fix->type = FB_TYPE_PLANES;
2162 fix->visual = visual;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 break;
Michael Schmitza1005012007-05-01 22:32:39 +02002164 case FB_TYPE_INTERLEAVED_PLANES:
2165 fix->type = FB_TYPE_INTERLEAVED_PLANES;
2166 fix->type_aux = 2;
2167 fix->visual = visual;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 break;
2169 }
2170 }
2171 fix->xpanstep = 0;
2172 fix->ypanstep = 0;
2173 fix->ywrapstep = 0;
Geert Uytterhoeven02603932008-11-18 21:13:01 +01002174 fix->line_length = par->next_line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 return 0;
2176}
2177
Michael Schmitza1005012007-05-01 22:32:39 +02002178static int ext_decode_var(struct fb_var_screeninfo *var, struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
2180 struct fb_var_screeninfo *myvar = &atafb_predefined[0];
Michael Schmitza1005012007-05-01 22:32:39 +02002181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (var->bits_per_pixel > myvar->bits_per_pixel ||
Michael Schmitza1005012007-05-01 22:32:39 +02002183 var->xres > myvar->xres ||
2184 var->xres_virtual > myvar->xres_virtual ||
2185 var->yres > myvar->yres ||
2186 var->xoffset > 0 ||
2187 var->yoffset > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 return -EINVAL;
Geert Uytterhoeven02603932008-11-18 21:13:01 +01002189
2190 par->next_line = external_xres_virtual * external_depth / 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 return 0;
2192}
2193
Michael Schmitza1005012007-05-01 22:32:39 +02002194static int ext_encode_var(struct fb_var_screeninfo *var, struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
2196 memset(var, 0, sizeof(struct fb_var_screeninfo));
Michael Schmitza1005012007-05-01 22:32:39 +02002197 var->red.offset = 0;
2198 var->red.length = (external_pmode == -1) ? external_depth / 3 :
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 (external_vgaiobase ? external_bitspercol : 0);
Michael Schmitza1005012007-05-01 22:32:39 +02002200 var->red.msb_right = 0;
2201 var->grayscale = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Michael Schmitza1005012007-05-01 22:32:39 +02002203 var->pixclock = 31041;
2204 var->left_margin = 120; /* these are surely incorrect */
2205 var->right_margin = 100;
2206 var->upper_margin = 8;
2207 var->lower_margin = 16;
2208 var->hsync_len = 140;
2209 var->vsync_len = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Michael Schmitza1005012007-05-01 22:32:39 +02002211 var->height = -1;
2212 var->width = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Michael Schmitza1005012007-05-01 22:32:39 +02002214 var->sync = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 var->xres = external_xres;
2217 var->yres = external_yres;
2218 var->xres_virtual = external_xres_virtual;
2219 var->bits_per_pixel = external_depth;
Michael Schmitza1005012007-05-01 22:32:39 +02002220
2221 var->blue = var->green = var->red;
2222 var->transp.offset = 0;
2223 var->transp.length = 0;
2224 var->transp.msb_right = 0;
2225 var->yres_virtual = var->yres;
2226 var->xoffset = 0;
2227 var->yoffset = 0;
2228 var->nonstd = 0;
2229 var->activate = 0;
2230 var->vmode = FB_VMODE_NONINTERLACED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 return 0;
2232}
2233
Michael Schmitza1005012007-05-01 22:32:39 +02002234static void ext_get_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
2236 par->screen_base = external_addr;
2237}
2238
Michael Schmitza1005012007-05-01 22:32:39 +02002239static void ext_set_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
2241}
2242
2243#define OUTB(port,val) \
Michael Schmitza1005012007-05-01 22:32:39 +02002244 *((unsigned volatile char *) ((port)+external_vgaiobase)) = (val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245#define INB(port) \
2246 (*((unsigned volatile char *) ((port)+external_vgaiobase)))
Michael Schmitza1005012007-05-01 22:32:39 +02002247#define DACDelay \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 do { \
Michael Schmitza1005012007-05-01 22:32:39 +02002249 unsigned char tmp = INB(0x3da); \
2250 tmp = INB(0x3da); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 } while (0)
2252
Michael Schmitza1005012007-05-01 22:32:39 +02002253static int ext_setcolreg(unsigned int regno, unsigned int red,
2254 unsigned int green, unsigned int blue,
2255 unsigned int transp, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Michael Schmitza1005012007-05-01 22:32:39 +02002257 unsigned char colmask = (1 << external_bitspercol) - 1;
2258
2259 if (!external_vgaiobase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 return 1;
2261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 switch (external_card_type) {
Michael Schmitza1005012007-05-01 22:32:39 +02002263 case IS_VGA:
2264 OUTB(0x3c8, regno);
2265 DACDelay;
2266 OUTB(0x3c9, red & colmask);
2267 DACDelay;
2268 OUTB(0x3c9, green & colmask);
2269 DACDelay;
2270 OUTB(0x3c9, blue & colmask);
2271 DACDelay;
2272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Michael Schmitza1005012007-05-01 22:32:39 +02002274 case IS_MV300:
2275 OUTB((MV300_reg[regno] << 2) + 1, red);
2276 OUTB((MV300_reg[regno] << 2) + 1, green);
2277 OUTB((MV300_reg[regno] << 2) + 1, blue);
2278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Michael Schmitza1005012007-05-01 22:32:39 +02002280 default:
2281 return 1;
2282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Michael Schmitza1005012007-05-01 22:32:39 +02002285static int ext_detect(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286{
2287 struct fb_var_screeninfo *myvar = &atafb_predefined[0];
2288 struct atafb_par dummy_par;
2289
2290 myvar->xres = external_xres;
2291 myvar->xres_virtual = external_xres_virtual;
2292 myvar->yres = external_yres;
2293 myvar->bits_per_pixel = external_depth;
2294 ext_encode_var(myvar, &dummy_par);
2295 return 1;
2296}
2297
2298#endif /* ATAFB_EXT */
2299
2300/* ------ This is the same for most hardware types -------- */
2301
2302static void set_screen_base(void *s_base)
2303{
2304 unsigned long addr;
Michael Schmitza1005012007-05-01 22:32:39 +02002305
2306 addr = virt_to_phys(s_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 /* Setup Screen Memory */
Michael Schmitza1005012007-05-01 22:32:39 +02002308 shifter.bas_hi = (unsigned char)((addr & 0xff0000) >> 16);
2309 shifter.bas_md = (unsigned char)((addr & 0x00ff00) >> 8);
2310 shifter.bas_lo = (unsigned char)(addr & 0x0000ff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311}
2312
Michael Schmitza1005012007-05-01 22:32:39 +02002313static int pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314{
Michael Schmitza1005012007-05-01 22:32:39 +02002315 struct atafb_par *par = (struct atafb_par *)info->par;
2316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 if (!fbhw->set_screen_base ||
Michael Schmitza1005012007-05-01 22:32:39 +02002318 (!ATARIHW_PRESENT(EXTD_SHIFTER) && var->xoffset))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 return -EINVAL;
2320 var->xoffset = up(var->xoffset, 16);
2321 par->screen_base = screen_base +
Michael Schmitza1005012007-05-01 22:32:39 +02002322 (var->yoffset * info->var.xres_virtual + var->xoffset)
2323 * info->var.bits_per_pixel / 8;
2324 fbhw->set_screen_base(par->screen_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 return 0;
2326}
2327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328/* ------------ Interfaces to hardware functions ------------ */
2329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330#ifdef ATAFB_TT
2331static struct fb_hwswitch tt_switch = {
Michael Schmitza1005012007-05-01 22:32:39 +02002332 .detect = tt_detect,
2333 .encode_fix = tt_encode_fix,
2334 .decode_var = tt_decode_var,
2335 .encode_var = tt_encode_var,
2336 .get_par = tt_get_par,
2337 .set_par = tt_set_par,
2338 .set_screen_base = set_screen_base,
2339 .pan_display = pan_display,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340};
2341#endif
2342
2343#ifdef ATAFB_FALCON
2344static struct fb_hwswitch falcon_switch = {
Michael Schmitza1005012007-05-01 22:32:39 +02002345 .detect = falcon_detect,
2346 .encode_fix = falcon_encode_fix,
2347 .decode_var = falcon_decode_var,
2348 .encode_var = falcon_encode_var,
2349 .get_par = falcon_get_par,
2350 .set_par = falcon_set_par,
2351 .set_screen_base = set_screen_base,
2352 .blank = falcon_blank,
2353 .pan_display = falcon_pan_display,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354};
2355#endif
2356
2357#ifdef ATAFB_STE
2358static struct fb_hwswitch st_switch = {
Michael Schmitza1005012007-05-01 22:32:39 +02002359 .detect = stste_detect,
2360 .encode_fix = stste_encode_fix,
2361 .decode_var = stste_decode_var,
2362 .encode_var = stste_encode_var,
2363 .get_par = stste_get_par,
2364 .set_par = stste_set_par,
2365 .set_screen_base = stste_set_screen_base,
2366 .pan_display = pan_display
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367};
2368#endif
2369
2370#ifdef ATAFB_EXT
2371static struct fb_hwswitch ext_switch = {
Michael Schmitza1005012007-05-01 22:32:39 +02002372 .detect = ext_detect,
2373 .encode_fix = ext_encode_fix,
2374 .decode_var = ext_decode_var,
2375 .encode_var = ext_encode_var,
2376 .get_par = ext_get_par,
2377 .set_par = ext_set_par,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378};
2379#endif
2380
Michael Schmitza1005012007-05-01 22:32:39 +02002381static void ata_get_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382{
Michael Schmitza1005012007-05-01 22:32:39 +02002383 if (current_par_valid)
2384 *par = current_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 else
2386 fbhw->get_par(par);
2387}
2388
Michael Schmitza1005012007-05-01 22:32:39 +02002389static void ata_set_par(struct atafb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390{
2391 fbhw->set_par(par);
Michael Schmitza1005012007-05-01 22:32:39 +02002392 current_par = *par;
2393 current_par_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394}
2395
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397/* =========================================================== */
2398/* ============== Hardware Independent Functions ============= */
2399/* =========================================================== */
2400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401/* used for hardware scrolling */
2402
Michael Schmitza1005012007-05-01 22:32:39 +02002403static int do_fb_set_var(struct fb_var_screeninfo *var, int isactive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
Michael Schmitza1005012007-05-01 22:32:39 +02002405 int err, activate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 struct atafb_par par;
Michael Schmitza1005012007-05-01 22:32:39 +02002407
2408 err = fbhw->decode_var(var, &par);
2409 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 return err;
Michael Schmitza1005012007-05-01 22:32:39 +02002411 activate = var->activate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 if (((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) && isactive)
Michael Schmitza1005012007-05-01 22:32:39 +02002413 ata_set_par(&par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 fbhw->encode_var(var, &par);
Michael Schmitza1005012007-05-01 22:32:39 +02002415 var->activate = activate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 return 0;
2417}
2418
Michael Schmitza1005012007-05-01 22:32:39 +02002419static int atafb_get_fix(struct fb_fix_screeninfo *fix, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
2421 struct atafb_par par;
Michael Schmitza1005012007-05-01 22:32:39 +02002422 int err;
2423 // Get fix directly (case con == -1 before)??
2424 err = fbhw->decode_var(&info->var, &par);
2425 if (err)
2426 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 memset(fix, 0, sizeof(struct fb_fix_screeninfo));
2428 return fbhw->encode_fix(fix, &par);
2429}
Michael Schmitza1005012007-05-01 22:32:39 +02002430
2431static int atafb_get_var(struct fb_var_screeninfo *var, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
2433 struct atafb_par par;
Michael Schmitza1005012007-05-01 22:32:39 +02002434
2435 ata_get_par(&par);
2436 fbhw->encode_var(var, &par);
2437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 return 0;
2439}
2440
Michael Schmitza1005012007-05-01 22:32:39 +02002441// No longer called by fbcon!
2442// Still called by set_var internally
2443
2444static void atafb_set_disp(struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445{
Michael Schmitza1005012007-05-01 22:32:39 +02002446 atafb_get_var(&info->var, info);
2447 atafb_get_fix(&info->fix, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Michael Schmitza1005012007-05-01 22:32:39 +02002449 info->screen_base = (void *)info->fix.smem_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Michael Schmitza1005012007-05-01 22:32:39 +02002451 switch (info->fix.type) {
2452 case FB_TYPE_INTERLEAVED_PLANES:
2453 switch (info->var.bits_per_pixel) {
2454 case 2:
2455 // display->dispsw = &fbcon_iplan2p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 break;
Michael Schmitza1005012007-05-01 22:32:39 +02002457 case 4:
2458 // display->dispsw = &fbcon_iplan2p4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 break;
Michael Schmitza1005012007-05-01 22:32:39 +02002460 case 8:
2461 // display->dispsw = &fbcon_iplan2p8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 }
2464 break;
Michael Schmitza1005012007-05-01 22:32:39 +02002465 case FB_TYPE_PACKED_PIXELS:
2466 switch (info->var.bits_per_pixel) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467#ifdef FBCON_HAS_MFB
Michael Schmitza1005012007-05-01 22:32:39 +02002468 case 1:
2469 // display->dispsw = &fbcon_mfb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 break;
2471#endif
2472#ifdef FBCON_HAS_CFB8
Michael Schmitza1005012007-05-01 22:32:39 +02002473 case 8:
2474 // display->dispsw = &fbcon_cfb8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 break;
2476#endif
2477#ifdef FBCON_HAS_CFB16
Michael Schmitza1005012007-05-01 22:32:39 +02002478 case 16:
2479 // display->dispsw = &fbcon_cfb16;
2480 // display->dispsw_data = fbcon_cfb16_cmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 break;
2482#endif
2483 }
2484 break;
2485 }
2486}
2487
Michael Schmitza1005012007-05-01 22:32:39 +02002488static int atafb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
2489 u_int transp, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
Michael Schmitza1005012007-05-01 22:32:39 +02002491 red >>= 8;
2492 green >>= 8;
2493 blue >>= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Michael Schmitza1005012007-05-01 22:32:39 +02002495 return info->fbops->fb_setcolreg(regno, red, green, blue, transp, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
2498static int
Michael Schmitza1005012007-05-01 22:32:39 +02002499atafb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
2501 int xoffset = var->xoffset;
2502 int yoffset = var->yoffset;
2503 int err;
2504
Michael Schmitza1005012007-05-01 22:32:39 +02002505 if (var->vmode & FB_VMODE_YWRAP) {
2506 if (yoffset < 0 || yoffset >= info->var.yres_virtual || xoffset)
2507 return -EINVAL;
2508 } else {
2509 if (xoffset + info->var.xres > info->var.xres_virtual ||
2510 yoffset + info->var.yres > info->var.yres_virtual)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 return -EINVAL;
2512 }
Michael Schmitza1005012007-05-01 22:32:39 +02002513
2514 if (fbhw->pan_display) {
2515 err = fbhw->pan_display(var, info);
2516 if (err)
2517 return err;
2518 } else
2519 return -EINVAL;
2520
2521 info->var.xoffset = xoffset;
2522 info->var.yoffset = yoffset;
2523
2524 if (var->vmode & FB_VMODE_YWRAP)
2525 info->var.vmode |= FB_VMODE_YWRAP;
2526 else
2527 info->var.vmode &= ~FB_VMODE_YWRAP;
2528
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 return 0;
2530}
2531
Michael Schmitza1005012007-05-01 22:32:39 +02002532/*
2533 * generic drawing routines; imageblit needs updating for image depth > 1
2534 */
2535
2536#if BITS_PER_LONG == 32
2537#define BYTES_PER_LONG 4
2538#define SHIFT_PER_LONG 5
2539#elif BITS_PER_LONG == 64
2540#define BYTES_PER_LONG 8
2541#define SHIFT_PER_LONG 6
2542#else
2543#define Please update me
2544#endif
2545
2546
2547static void atafb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
2548{
2549 struct atafb_par *par = (struct atafb_par *)info->par;
2550 int x2, y2;
2551 u32 width, height;
2552
2553 if (!rect->width || !rect->height)
2554 return;
2555
2556 /*
2557 * We could use hardware clipping but on many cards you get around
2558 * hardware clipping by writing to framebuffer directly.
2559 * */
2560 x2 = rect->dx + rect->width;
2561 y2 = rect->dy + rect->height;
2562 x2 = x2 < info->var.xres_virtual ? x2 : info->var.xres_virtual;
2563 y2 = y2 < info->var.yres_virtual ? y2 : info->var.yres_virtual;
2564 width = x2 - rect->dx;
2565 height = y2 - rect->dy;
2566
2567 if (info->var.bits_per_pixel == 1)
2568 atafb_mfb_fillrect(info, par->next_line, rect->color,
2569 rect->dy, rect->dx, height, width);
2570 else if (info->var.bits_per_pixel == 2)
2571 atafb_iplan2p2_fillrect(info, par->next_line, rect->color,
2572 rect->dy, rect->dx, height, width);
2573 else if (info->var.bits_per_pixel == 4)
2574 atafb_iplan2p4_fillrect(info, par->next_line, rect->color,
2575 rect->dy, rect->dx, height, width);
2576 else
2577 atafb_iplan2p8_fillrect(info, par->next_line, rect->color,
2578 rect->dy, rect->dx, height, width);
2579
2580 return;
2581}
2582
2583static void atafb_copyarea(struct fb_info *info, const struct fb_copyarea *area)
2584{
2585 struct atafb_par *par = (struct atafb_par *)info->par;
2586 int x2, y2;
2587 u32 dx, dy, sx, sy, width, height;
2588 int rev_copy = 0;
2589
2590 /* clip the destination */
2591 x2 = area->dx + area->width;
2592 y2 = area->dy + area->height;
2593 dx = area->dx > 0 ? area->dx : 0;
2594 dy = area->dy > 0 ? area->dy : 0;
2595 x2 = x2 < info->var.xres_virtual ? x2 : info->var.xres_virtual;
2596 y2 = y2 < info->var.yres_virtual ? y2 : info->var.yres_virtual;
2597 width = x2 - dx;
2598 height = y2 - dy;
2599
Roel Kluin1c0face2008-07-23 21:31:18 -07002600 if (area->sx + dx < area->dx || area->sy + dy < area->dy)
2601 return;
2602
Michael Schmitza1005012007-05-01 22:32:39 +02002603 /* update sx,sy */
2604 sx = area->sx + (dx - area->dx);
2605 sy = area->sy + (dy - area->dy);
2606
2607 /* the source must be completely inside the virtual screen */
Roel Kluin1c0face2008-07-23 21:31:18 -07002608 if (sx + width > info->var.xres_virtual ||
2609 sy + height > info->var.yres_virtual)
Michael Schmitza1005012007-05-01 22:32:39 +02002610 return;
2611
2612 if (dy > sy || (dy == sy && dx > sx)) {
2613 dy += height;
2614 sy += height;
2615 rev_copy = 1;
2616 }
2617
2618 if (info->var.bits_per_pixel == 1)
2619 atafb_mfb_copyarea(info, par->next_line, sy, sx, dy, dx, height, width);
2620 else if (info->var.bits_per_pixel == 2)
2621 atafb_iplan2p2_copyarea(info, par->next_line, sy, sx, dy, dx, height, width);
2622 else if (info->var.bits_per_pixel == 4)
2623 atafb_iplan2p4_copyarea(info, par->next_line, sy, sx, dy, dx, height, width);
2624 else
2625 atafb_iplan2p8_copyarea(info, par->next_line, sy, sx, dy, dx, height, width);
2626
2627 return;
2628}
2629
2630static void atafb_imageblit(struct fb_info *info, const struct fb_image *image)
2631{
2632 struct atafb_par *par = (struct atafb_par *)info->par;
2633 int x2, y2;
2634 unsigned long *dst;
2635 int dst_idx;
2636 const char *src;
2637 u32 dx, dy, width, height, pitch;
2638
2639 /*
2640 * We could use hardware clipping but on many cards you get around
2641 * hardware clipping by writing to framebuffer directly like we are
2642 * doing here.
2643 */
2644 x2 = image->dx + image->width;
2645 y2 = image->dy + image->height;
2646 dx = image->dx;
2647 dy = image->dy;
2648 x2 = x2 < info->var.xres_virtual ? x2 : info->var.xres_virtual;
2649 y2 = y2 < info->var.yres_virtual ? y2 : info->var.yres_virtual;
2650 width = x2 - dx;
2651 height = y2 - dy;
2652
2653 if (image->depth == 1) {
2654 // used for font data
2655 dst = (unsigned long *)
2656 ((unsigned long)info->screen_base & ~(BYTES_PER_LONG - 1));
2657 dst_idx = ((unsigned long)info->screen_base & (BYTES_PER_LONG - 1)) * 8;
2658 dst_idx += dy * par->next_line * 8 + dx;
2659 src = image->data;
2660 pitch = (image->width + 7) / 8;
2661 while (height--) {
2662
2663 if (info->var.bits_per_pixel == 1)
2664 atafb_mfb_linefill(info, par->next_line,
2665 dy, dx, width, src,
2666 image->bg_color, image->fg_color);
2667 else if (info->var.bits_per_pixel == 2)
2668 atafb_iplan2p2_linefill(info, par->next_line,
2669 dy, dx, width, src,
2670 image->bg_color, image->fg_color);
2671 else if (info->var.bits_per_pixel == 4)
2672 atafb_iplan2p4_linefill(info, par->next_line,
2673 dy, dx, width, src,
2674 image->bg_color, image->fg_color);
2675 else
2676 atafb_iplan2p8_linefill(info, par->next_line,
2677 dy, dx, width, src,
2678 image->bg_color, image->fg_color);
2679 dy++;
2680 src += pitch;
2681 }
2682 } else {
2683 // only used for logo; broken
2684 c2p(info->screen_base, image->data, dx, dy, width, height,
2685 par->next_line, par->next_plane, image->width,
2686 info->var.bits_per_pixel);
2687 }
2688}
2689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690static int
Christoph Hellwig67a66802006-01-14 13:21:25 -08002691atafb_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692{
2693 switch (cmd) {
2694#ifdef FBCMD_GET_CURRENTPAR
2695 case FBCMD_GET_CURRENTPAR:
2696 if (copy_to_user((void *)arg, (void *)&current_par,
2697 sizeof(struct atafb_par)))
2698 return -EFAULT;
2699 return 0;
2700#endif
2701#ifdef FBCMD_SET_CURRENTPAR
2702 case FBCMD_SET_CURRENTPAR:
2703 if (copy_from_user((void *)&current_par, (void *)arg,
2704 sizeof(struct atafb_par)))
2705 return -EFAULT;
Michael Schmitza1005012007-05-01 22:32:39 +02002706 ata_set_par(&current_par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 return 0;
2708#endif
2709 }
2710 return -EINVAL;
2711}
2712
2713/* (un)blank/poweroff
2714 * 0 = unblank
2715 * 1 = blank
2716 * 2 = suspend vsync
2717 * 3 = suspend hsync
2718 * 4 = off
2719 */
Michael Schmitza1005012007-05-01 22:32:39 +02002720static int atafb_blank(int blank, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
2722 unsigned short black[16];
2723 struct fb_cmap cmap;
2724 if (fbhw->blank && !fbhw->blank(blank))
2725 return 1;
2726 if (blank) {
Michael Schmitza1005012007-05-01 22:32:39 +02002727 memset(black, 0, 16 * sizeof(unsigned short));
2728 cmap.red = black;
2729 cmap.green = black;
2730 cmap.blue = black;
2731 cmap.transp = NULL;
2732 cmap.start = 0;
2733 cmap.len = 16;
2734 fb_set_cmap(&cmap, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 }
Michael Schmitza1005012007-05-01 22:32:39 +02002736#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 else
Michael Schmitza1005012007-05-01 22:32:39 +02002738 do_install_cmap(info);
2739#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 return 0;
2741}
2742
Michael Schmitza1005012007-05-01 22:32:39 +02002743 /*
2744 * New fbcon interface ...
2745 */
2746
2747 /* check var by decoding var into hw par, rounding if necessary,
2748 * then encoding hw par back into new, validated var */
2749static int atafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
2750{
2751 int err;
2752 struct atafb_par par;
2753
2754 /* Validate wanted screen parameters */
2755 // if ((err = ata_decode_var(var, &par)))
2756 err = fbhw->decode_var(var, &par);
2757 if (err)
2758 return err;
2759
2760 /* Encode (possibly rounded) screen parameters */
2761 fbhw->encode_var(var, &par);
2762 return 0;
2763}
2764
2765 /* actually set hw par by decoding var, then setting hardware from
2766 * hw par just decoded */
2767static int atafb_set_par(struct fb_info *info)
2768{
2769 struct atafb_par *par = (struct atafb_par *)info->par;
2770
2771 /* Decode wanted screen parameters */
2772 fbhw->decode_var(&info->var, par);
2773 fbhw->encode_fix(&info->fix, par);
2774
2775 /* Set new videomode */
2776 ata_set_par(par);
2777
2778 return 0;
2779}
2780
2781
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782static struct fb_ops atafb_ops = {
2783 .owner = THIS_MODULE,
Michael Schmitza1005012007-05-01 22:32:39 +02002784 .fb_check_var = atafb_check_var,
2785 .fb_set_par = atafb_set_par,
2786 .fb_setcolreg = atafb_setcolreg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 .fb_blank = atafb_blank,
Michael Schmitza1005012007-05-01 22:32:39 +02002788 .fb_pan_display = atafb_pan_display,
2789 .fb_fillrect = atafb_fillrect,
2790 .fb_copyarea = atafb_copyarea,
2791 .fb_imageblit = atafb_imageblit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 .fb_ioctl = atafb_ioctl,
2793};
2794
Michael Schmitza1005012007-05-01 22:32:39 +02002795static void check_default_par(int detected_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796{
2797 char default_name[10];
2798 int i;
2799 struct fb_var_screeninfo var;
2800 unsigned long min_mem;
2801
2802 /* First try the user supplied mode */
2803 if (default_par) {
Michael Schmitza1005012007-05-01 22:32:39 +02002804 var = atafb_predefined[default_par - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 var.activate = FB_ACTIVATE_TEST;
Michael Schmitza1005012007-05-01 22:32:39 +02002806 if (do_fb_set_var(&var, 1))
2807 default_par = 0; /* failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 }
2809 /* Next is the autodetected one */
Michael Schmitza1005012007-05-01 22:32:39 +02002810 if (!default_par) {
2811 var = atafb_predefined[detected_mode - 1]; /* autodetect */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 var.activate = FB_ACTIVATE_TEST;
Michael Schmitza1005012007-05-01 22:32:39 +02002813 if (!do_fb_set_var(&var, 1))
2814 default_par = detected_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 }
2816 /* If that also failed, try some default modes... */
Michael Schmitza1005012007-05-01 22:32:39 +02002817 if (!default_par) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 /* try default1, default2... */
Michael Schmitza1005012007-05-01 22:32:39 +02002819 for (i = 1; i < 10; i++) {
2820 sprintf(default_name,"default%d", i);
2821 default_par = get_video_mode(default_name);
2822 if (!default_par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 panic("can't set default video mode");
Michael Schmitza1005012007-05-01 22:32:39 +02002824 var = atafb_predefined[default_par - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 var.activate = FB_ACTIVATE_TEST;
Michael Schmitza1005012007-05-01 22:32:39 +02002826 if (!do_fb_set_var(&var,1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 break; /* ok */
2828 }
2829 }
Michael Schmitza1005012007-05-01 22:32:39 +02002830 min_mem = var.xres_virtual * var.yres_virtual * var.bits_per_pixel / 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 if (default_mem_req < min_mem)
Michael Schmitza1005012007-05-01 22:32:39 +02002832 default_mem_req = min_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833}
2834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835#ifdef ATAFB_EXT
2836static void __init atafb_setup_ext(char *spec)
2837{
Michael Schmitza1005012007-05-01 22:32:39 +02002838 int xres, xres_virtual, yres, depth, planes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 unsigned long addr, len;
2840 char *p;
2841
2842 /* Format is: <xres>;<yres>;<depth>;<plane organ.>;
2843 * <screen mem addr>
2844 * [;<screen mem length>[;<vgaiobase>[;<bits-per-col>[;<colorreg-type>
2845 * [;<xres-virtual>]]]]]
2846 *
2847 * 09/23/97 Juergen
2848 * <xres_virtual>: hardware's x-resolution (f.e. ProMST)
2849 *
2850 * Even xres_virtual is available, we neither support panning nor hw-scrolling!
2851 */
Michael Schmitza1005012007-05-01 22:32:39 +02002852 p = strsep(&spec, ";");
2853 if (!p || !*p)
2854 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 xres_virtual = xres = simple_strtoul(p, NULL, 10);
2856 if (xres <= 0)
Michael Schmitza1005012007-05-01 22:32:39 +02002857 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Michael Schmitza1005012007-05-01 22:32:39 +02002859 p = strsep(&spec, ";");
2860 if (!p || !*p)
2861 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 yres = simple_strtoul(p, NULL, 10);
2863 if (yres <= 0)
Michael Schmitza1005012007-05-01 22:32:39 +02002864 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Michael Schmitza1005012007-05-01 22:32:39 +02002866 p = strsep(&spec, ";");
2867 if (!p || !*p)
2868 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 depth = simple_strtoul(p, NULL, 10);
2870 if (depth != 1 && depth != 2 && depth != 4 && depth != 8 &&
Michael Schmitza1005012007-05-01 22:32:39 +02002871 depth != 16 && depth != 24)
2872 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Michael Schmitza1005012007-05-01 22:32:39 +02002874 p = strsep(&spec, ";");
2875 if (!p || !*p)
2876 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 if (*p == 'i')
2878 planes = FB_TYPE_INTERLEAVED_PLANES;
2879 else if (*p == 'p')
2880 planes = FB_TYPE_PACKED_PIXELS;
2881 else if (*p == 'n')
2882 planes = FB_TYPE_PLANES;
2883 else if (*p == 't')
Michael Schmitza1005012007-05-01 22:32:39 +02002884 planes = -1; /* true color */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 else
2886 return;
2887
Michael Schmitza1005012007-05-01 22:32:39 +02002888 p = strsep(&spec, ";");
2889 if (!p || !*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 return;
2891 addr = simple_strtoul(p, NULL, 0);
2892
Michael Schmitza1005012007-05-01 22:32:39 +02002893 p = strsep(&spec, ";");
2894 if (!p || !*p)
2895 len = xres * yres * depth / 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 else
2897 len = simple_strtoul(p, NULL, 0);
2898
Michael Schmitza1005012007-05-01 22:32:39 +02002899 p = strsep(&spec, ";");
2900 if (p && *p)
2901 external_vgaiobase = simple_strtoul(p, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Michael Schmitza1005012007-05-01 22:32:39 +02002903 p = strsep(&spec, ";");
2904 if (p && *p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 external_bitspercol = simple_strtoul(p, NULL, 0);
2906 if (external_bitspercol > 8)
2907 external_bitspercol = 8;
2908 else if (external_bitspercol < 1)
2909 external_bitspercol = 1;
2910 }
2911
Michael Schmitza1005012007-05-01 22:32:39 +02002912 p = strsep(&spec, ";");
2913 if (p && *p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 if (!strcmp(p, "vga"))
2915 external_card_type = IS_VGA;
2916 if (!strcmp(p, "mv300"))
2917 external_card_type = IS_MV300;
2918 }
2919
Michael Schmitza1005012007-05-01 22:32:39 +02002920 p = strsep(&spec, ";");
2921 if (p && *p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 xres_virtual = simple_strtoul(p, NULL, 10);
2923 if (xres_virtual < xres)
2924 xres_virtual = xres;
Michael Schmitza1005012007-05-01 22:32:39 +02002925 if (xres_virtual * yres * depth / 8 > len)
2926 len = xres_virtual * yres * depth / 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 }
2928
Michael Schmitza1005012007-05-01 22:32:39 +02002929 external_xres = xres;
2930 external_xres_virtual = xres_virtual;
2931 external_yres = yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 external_depth = depth;
2933 external_pmode = planes;
Michael Schmitza1005012007-05-01 22:32:39 +02002934 external_addr = (void *)addr;
2935 external_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Michael Schmitza1005012007-05-01 22:32:39 +02002937 if (external_card_type == IS_MV300) {
2938 switch (external_depth) {
2939 case 1:
2940 MV300_reg = MV300_reg_1bit;
2941 break;
2942 case 4:
2943 MV300_reg = MV300_reg_4bit;
2944 break;
2945 case 8:
2946 MV300_reg = MV300_reg_8bit;
2947 break;
2948 }
2949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950}
2951#endif /* ATAFB_EXT */
2952
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953static void __init atafb_setup_int(char *spec)
2954{
2955 /* Format to config extended internal video hardware like OverScan:
Michael Schmitza1005012007-05-01 22:32:39 +02002956 * "internal:<xres>;<yres>;<xres_max>;<yres_max>;<offset>"
2957 * Explanation:
2958 * <xres>: x-resolution
2959 * <yres>: y-resolution
2960 * The following are only needed if you have an overscan which
2961 * needs a black border:
2962 * <xres_max>: max. length of a line in pixels your OverScan hardware would allow
2963 * <yres_max>: max. number of lines your OverScan hardware would allow
2964 * <offset>: Offset from physical beginning to visible beginning
2965 * of screen in bytes
2966 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 int xres;
2968 char *p;
2969
2970 if (!(p = strsep(&spec, ";")) || !*p)
2971 return;
2972 xres = simple_strtoul(p, NULL, 10);
2973 if (!(p = strsep(&spec, ";")) || !*p)
2974 return;
Michael Schmitza1005012007-05-01 22:32:39 +02002975 sttt_xres = xres;
2976 tt_yres = st_yres = simple_strtoul(p, NULL, 10);
2977 if ((p = strsep(&spec, ";")) && *p)
2978 sttt_xres_virtual = simple_strtoul(p, NULL, 10);
2979 if ((p = strsep(&spec, ";")) && *p)
2980 sttt_yres_virtual = simple_strtoul(p, NULL, 0);
2981 if ((p = strsep(&spec, ";")) && *p)
2982 ovsc_offset = simple_strtoul(p, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
2984 if (ovsc_offset || (sttt_yres_virtual != st_yres))
Michael Schmitza1005012007-05-01 22:32:39 +02002985 use_hwscroll = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986}
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988#ifdef ATAFB_FALCON
2989static void __init atafb_setup_mcap(char *spec)
2990{
2991 char *p;
2992 int vmin, vmax, hmin, hmax;
2993
2994 /* Format for monitor capabilities is: <Vmin>;<Vmax>;<Hmin>;<Hmax>
2995 * <V*> vertical freq. in Hz
2996 * <H*> horizontal freq. in kHz
2997 */
2998 if (!(p = strsep(&spec, ";")) || !*p)
2999 return;
3000 vmin = simple_strtoul(p, NULL, 10);
3001 if (vmin <= 0)
3002 return;
3003 if (!(p = strsep(&spec, ";")) || !*p)
3004 return;
3005 vmax = simple_strtoul(p, NULL, 10);
3006 if (vmax <= 0 || vmax <= vmin)
3007 return;
3008 if (!(p = strsep(&spec, ";")) || !*p)
3009 return;
3010 hmin = 1000 * simple_strtoul(p, NULL, 10);
3011 if (hmin <= 0)
3012 return;
3013 if (!(p = strsep(&spec, "")) || !*p)
3014 return;
3015 hmax = 1000 * simple_strtoul(p, NULL, 10);
3016 if (hmax <= 0 || hmax <= hmin)
3017 return;
3018
3019 fb_info.monspecs.vfmin = vmin;
3020 fb_info.monspecs.vfmax = vmax;
3021 fb_info.monspecs.hfmin = hmin;
3022 fb_info.monspecs.hfmax = hmax;
3023}
3024#endif /* ATAFB_FALCON */
3025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026static void __init atafb_setup_user(char *spec)
3027{
3028 /* Format of user defined video mode is: <xres>;<yres>;<depth>
3029 */
3030 char *p;
3031 int xres, yres, depth, temp;
3032
Michael Schmitza1005012007-05-01 22:32:39 +02003033 p = strsep(&spec, ";");
3034 if (!p || !*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 return;
3036 xres = simple_strtoul(p, NULL, 10);
Michael Schmitza1005012007-05-01 22:32:39 +02003037 p = strsep(&spec, ";");
3038 if (!p || !*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 return;
3040 yres = simple_strtoul(p, NULL, 10);
Michael Schmitza1005012007-05-01 22:32:39 +02003041 p = strsep(&spec, "");
3042 if (!p || !*p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 return;
3044 depth = simple_strtoul(p, NULL, 10);
Michael Schmitza1005012007-05-01 22:32:39 +02003045 temp = get_video_mode("user0");
3046 if (temp) {
3047 default_par = temp;
3048 atafb_predefined[default_par - 1].xres = xres;
3049 atafb_predefined[default_par - 1].yres = yres;
3050 atafb_predefined[default_par - 1].bits_per_pixel = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 }
3052}
3053
Michael Schmitza1005012007-05-01 22:32:39 +02003054int __init atafb_setup(char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055{
Michael Schmitza1005012007-05-01 22:32:39 +02003056 char *this_opt;
3057 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Michael Schmitza1005012007-05-01 22:32:39 +02003059 if (!options || !*options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 return 0;
Michael Schmitza1005012007-05-01 22:32:39 +02003061
3062 while ((this_opt = strsep(&options, ",")) != NULL) {
3063 if (!*this_opt)
3064 continue;
3065 if ((temp = get_video_mode(this_opt))) {
3066 default_par = temp;
3067 mode_option = this_opt;
3068 } else if (!strcmp(this_opt, "inverse"))
3069 inverse = 1;
3070 else if (!strncmp(this_opt, "hwscroll_", 9)) {
3071 hwscroll = simple_strtoul(this_opt + 9, NULL, 10);
3072 if (hwscroll < 0)
3073 hwscroll = 0;
3074 if (hwscroll > 200)
3075 hwscroll = 200;
3076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077#ifdef ATAFB_EXT
Michael Schmitza1005012007-05-01 22:32:39 +02003078 else if (!strcmp(this_opt, "mv300")) {
3079 external_bitspercol = 8;
3080 external_card_type = IS_MV300;
3081 } else if (!strncmp(this_opt, "external:", 9))
3082 atafb_setup_ext(this_opt + 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083#endif
Michael Schmitza1005012007-05-01 22:32:39 +02003084 else if (!strncmp(this_opt, "internal:", 9))
3085 atafb_setup_int(this_opt + 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086#ifdef ATAFB_FALCON
Michael Schmitza1005012007-05-01 22:32:39 +02003087 else if (!strncmp(this_opt, "eclock:", 7)) {
3088 fext.f = simple_strtoul(this_opt + 7, NULL, 10);
3089 /* external pixelclock in kHz --> ps */
3090 fext.t = 1000000000 / fext.f;
3091 fext.f *= 1000;
3092 } else if (!strncmp(this_opt, "monitorcap:", 11))
3093 atafb_setup_mcap(this_opt + 11);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094#endif
Michael Schmitza1005012007-05-01 22:32:39 +02003095 else if (!strcmp(this_opt, "keep"))
3096 DontCalcRes = 1;
3097 else if (!strncmp(this_opt, "R", 1))
3098 atafb_setup_user(this_opt + 1);
3099 }
3100 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101}
3102
Michael Schmitza1005012007-05-01 22:32:39 +02003103int __init atafb_init(void)
3104{
3105 int pad;
3106 int detected_mode;
3107 unsigned int defmode = 0;
3108 unsigned long mem_req;
3109
3110#ifndef MODULE
3111 char *option = NULL;
3112
3113 if (fb_get_options("atafb", &option))
3114 return -ENODEV;
3115 atafb_setup(option);
3116#endif
3117 printk("atafb_init: start\n");
3118
3119 if (!MACH_IS_ATARI)
Geert Uytterhoevene945b562008-07-17 21:16:10 +02003120 return -ENODEV;
Michael Schmitza1005012007-05-01 22:32:39 +02003121
3122 do {
3123#ifdef ATAFB_EXT
3124 if (external_addr) {
3125 printk("atafb_init: initializing external hw\n");
3126 fbhw = &ext_switch;
3127 atafb_ops.fb_setcolreg = &ext_setcolreg;
3128 defmode = DEFMODE_EXT;
3129 break;
3130 }
3131#endif
3132#ifdef ATAFB_TT
3133 if (ATARIHW_PRESENT(TT_SHIFTER)) {
3134 printk("atafb_init: initializing TT hw\n");
3135 fbhw = &tt_switch;
3136 atafb_ops.fb_setcolreg = &tt_setcolreg;
3137 defmode = DEFMODE_TT;
3138 break;
3139 }
3140#endif
3141#ifdef ATAFB_FALCON
3142 if (ATARIHW_PRESENT(VIDEL_SHIFTER)) {
3143 printk("atafb_init: initializing Falcon hw\n");
3144 fbhw = &falcon_switch;
3145 atafb_ops.fb_setcolreg = &falcon_setcolreg;
3146 request_irq(IRQ_AUTO_4, falcon_vbl_switcher, IRQ_TYPE_PRIO,
3147 "framebuffer/modeswitch", falcon_vbl_switcher);
3148 defmode = DEFMODE_F30;
3149 break;
3150 }
3151#endif
3152#ifdef ATAFB_STE
3153 if (ATARIHW_PRESENT(STND_SHIFTER) ||
3154 ATARIHW_PRESENT(EXTD_SHIFTER)) {
3155 printk("atafb_init: initializing ST/E hw\n");
3156 fbhw = &st_switch;
3157 atafb_ops.fb_setcolreg = &stste_setcolreg;
3158 defmode = DEFMODE_STE;
3159 break;
3160 }
3161 fbhw = &st_switch;
3162 atafb_ops.fb_setcolreg = &stste_setcolreg;
3163 printk("Cannot determine video hardware; defaulting to ST(e)\n");
3164#else /* ATAFB_STE */
3165 /* no default driver included */
3166 /* Nobody will ever see this message :-) */
3167 panic("Cannot initialize video hardware");
3168#endif
3169 } while (0);
3170
3171 /* Multisync monitor capabilities */
3172 /* Atari-TOS defaults if no boot option present */
3173 if (fb_info.monspecs.hfmin == 0) {
3174 fb_info.monspecs.hfmin = 31000;
3175 fb_info.monspecs.hfmax = 32000;
3176 fb_info.monspecs.vfmin = 58;
3177 fb_info.monspecs.vfmax = 62;
3178 }
3179
3180 detected_mode = fbhw->detect();
3181 check_default_par(detected_mode);
3182#ifdef ATAFB_EXT
3183 if (!external_addr) {
3184#endif /* ATAFB_EXT */
3185 mem_req = default_mem_req + ovsc_offset + ovsc_addlen;
3186 mem_req = PAGE_ALIGN(mem_req) + PAGE_SIZE;
3187 screen_base = atari_stram_alloc(mem_req, "atafb");
3188 if (!screen_base)
3189 panic("Cannot allocate screen memory");
3190 memset(screen_base, 0, mem_req);
3191 pad = -(unsigned long)screen_base & (PAGE_SIZE - 1);
3192 screen_base += pad;
3193 real_screen_base = screen_base + ovsc_offset;
3194 screen_len = (mem_req - pad - ovsc_offset) & PAGE_MASK;
3195 st_ovsc_switch();
3196 if (CPU_IS_040_OR_060) {
3197 /* On a '040+, the cache mode of video RAM must be set to
3198 * write-through also for internal video hardware! */
3199 cache_push(virt_to_phys(screen_base), screen_len);
3200 kernel_set_cachemode(screen_base, screen_len,
3201 IOMAP_WRITETHROUGH);
3202 }
3203 printk("atafb: screen_base %p real_screen_base %p screen_len %d\n",
3204 screen_base, real_screen_base, screen_len);
3205#ifdef ATAFB_EXT
3206 } else {
3207 /* Map the video memory (physical address given) to somewhere
3208 * in the kernel address space.
3209 */
3210 external_addr = ioremap_writethrough((unsigned long)external_addr,
3211 external_len);
3212 if (external_vgaiobase)
3213 external_vgaiobase =
3214 (unsigned long)ioremap(external_vgaiobase, 0x10000);
3215 screen_base =
3216 real_screen_base = external_addr;
3217 screen_len = external_len & PAGE_MASK;
3218 memset (screen_base, 0, external_len);
3219 }
3220#endif /* ATAFB_EXT */
3221
3222// strcpy(fb_info.mode->name, "Atari Builtin ");
3223 fb_info.fbops = &atafb_ops;
3224 // try to set default (detected; requested) var
3225 do_fb_set_var(&atafb_predefined[default_par - 1], 1);
3226 // reads hw state into current par, which may not be sane yet
3227 ata_get_par(&current_par);
3228 fb_info.par = &current_par;
3229 // tries to read from HW which may not be initialized yet
3230 // so set sane var first, then call atafb_set_par
3231 atafb_get_var(&fb_info.var, &fb_info);
3232 fb_info.flags = FBINFO_FLAG_DEFAULT;
3233
3234 if (!fb_find_mode(&fb_info.var, &fb_info, mode_option, atafb_modedb,
3235 NUM_TOTAL_MODES, &atafb_modedb[defmode],
3236 fb_info.var.bits_per_pixel)) {
3237 return -EINVAL;
3238 }
3239
Geert Uytterhoevenda8513c2008-07-17 21:16:19 +02003240 fb_videomode_to_modelist(atafb_modedb, NUM_TOTAL_MODES,
3241 &fb_info.modelist);
3242
Michael Schmitza1005012007-05-01 22:32:39 +02003243 atafb_set_disp(&fb_info);
3244
3245 fb_alloc_cmap(&(fb_info.cmap), 1 << fb_info.var.bits_per_pixel, 0);
3246
3247
3248 printk("Determined %dx%d, depth %d\n",
3249 fb_info.var.xres, fb_info.var.yres, fb_info.var.bits_per_pixel);
3250 if ((fb_info.var.xres != fb_info.var.xres_virtual) ||
3251 (fb_info.var.yres != fb_info.var.yres_virtual))
3252 printk(" virtual %dx%d\n", fb_info.var.xres_virtual,
3253 fb_info.var.yres_virtual);
3254
3255 if (register_framebuffer(&fb_info) < 0) {
3256#ifdef ATAFB_EXT
3257 if (external_addr) {
3258 iounmap(external_addr);
3259 external_addr = NULL;
3260 }
3261 if (external_vgaiobase) {
3262 iounmap((void*)external_vgaiobase);
3263 external_vgaiobase = 0;
3264 }
3265#endif
3266 return -EINVAL;
3267 }
3268
3269 // FIXME: mode needs setting!
3270 //printk("fb%d: %s frame buffer device, using %dK of video memory\n",
3271 // fb_info.node, fb_info.mode->name, screen_len>>10);
3272 printk("fb%d: frame buffer device, using %dK of video memory\n",
3273 fb_info.node, screen_len >> 10);
3274
3275 /* TODO: This driver cannot be unloaded yet */
3276 return 0;
3277}
3278
3279module_init(atafb_init);
3280
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281#ifdef MODULE
3282MODULE_LICENSE("GPL");
3283
Michael Schmitza1005012007-05-01 22:32:39 +02003284int cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285{
Michael Schmitza1005012007-05-01 22:32:39 +02003286 unregister_framebuffer(&fb_info);
3287 return atafb_deinit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288}
3289#endif /* MODULE */