atafb.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:84k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/video/atafb.c -- Atari builtin chipset frame buffer device
  3.  *
  4.  *  Copyright (C) 1994 Martin Schaller & Roman Hodek
  5.  *  
  6.  * 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. #define ATAFB_TT
  45. #define ATAFB_STE
  46. #define ATAFB_EXT
  47. #define ATAFB_FALCON
  48. #include <linux/module.h>
  49. #include <linux/kernel.h>
  50. #include <linux/sched.h>
  51. #include <linux/errno.h>
  52. #include <linux/string.h>
  53. #include <linux/mm.h>
  54. #include <linux/tty.h>
  55. #include <linux/slab.h>
  56. #include <linux/delay.h>
  57. #include <linux/init.h>
  58. #include <asm/setup.h>
  59. #include <asm/uaccess.h>
  60. #include <asm/pgtable.h>
  61. #include <asm/irq.h>
  62. #include <asm/io.h>
  63. #include <asm/atarihw.h>
  64. #include <asm/atariints.h>
  65. #include <asm/atari_stram.h>
  66. #include <linux/fb.h>
  67. #include <asm/atarikb.h>
  68. #include <video/fbcon.h>
  69. #include <video/fbcon-cfb8.h>
  70. #include <video/fbcon-cfb16.h>
  71. #include <video/fbcon-iplan2p2.h>
  72. #include <video/fbcon-iplan2p4.h>
  73. #include <video/fbcon-iplan2p8.h>
  74. #include <video/fbcon-mfb.h>
  75. #define SWITCH_ACIA 0x01 /* modes for switch on OverScan */
  76. #define SWITCH_SND6 0x40
  77. #define SWITCH_SND7 0x80
  78. #define SWITCH_NONE 0x00
  79. #define up(x, r) (((x) + (r) - 1) & ~((r)-1))
  80. static int default_par=0; /* default resolution (0=none) */
  81. static unsigned long default_mem_req=0;
  82. static int hwscroll=-1;
  83. static int use_hwscroll = 1;
  84. static int sttt_xres=640,st_yres=400,tt_yres=480;
  85. static int sttt_xres_virtual=640,sttt_yres_virtual=400;
  86. static int ovsc_offset=0, ovsc_addlen=0;
  87. static struct atafb_par {
  88. void *screen_base;
  89. int yres_virtual;
  90. #if defined ATAFB_TT || defined ATAFB_STE
  91. union {
  92. struct {
  93. int mode;
  94. int sync;
  95. } tt, st;
  96. #endif
  97. #ifdef ATAFB_FALCON
  98. struct falcon_hw {
  99. /* Here are fields for storing a video mode, as direct
  100.  * parameters for the hardware.
  101.  */
  102. short sync;
  103. short line_width;
  104. short line_offset;
  105. short st_shift;
  106. short f_shift;
  107. short vid_control;
  108. short vid_mode;
  109. short xoffset;
  110. short hht, hbb, hbe, hdb, hde, hss;
  111. short vft, vbb, vbe, vdb, vde, vss;
  112. /* auxiliary information */
  113. short mono;
  114. short ste_mode;
  115. short bpp;
  116. } falcon;
  117. #endif
  118. /* Nothing needed for external mode */
  119. } hw;
  120. } current_par;
  121. /* Don't calculate an own resolution, and thus don't change the one found when
  122.  * booting (currently used for the Falcon to keep settings for internal video
  123.  * hardware extensions (e.g. ScreenBlaster)  */
  124. static int DontCalcRes = 0; 
  125. #ifdef ATAFB_FALCON
  126. #define HHT hw.falcon.hht
  127. #define HBB hw.falcon.hbb
  128. #define HBE hw.falcon.hbe
  129. #define HDB hw.falcon.hdb
  130. #define HDE hw.falcon.hde
  131. #define HSS hw.falcon.hss
  132. #define VFT hw.falcon.vft
  133. #define VBB hw.falcon.vbb
  134. #define VBE hw.falcon.vbe
  135. #define VDB hw.falcon.vdb
  136. #define VDE hw.falcon.vde
  137. #define VSS hw.falcon.vss
  138. #define VCO_CLOCK25 0x04
  139. #define VCO_CSYPOS 0x10
  140. #define VCO_VSYPOS 0x20
  141. #define VCO_HSYPOS 0x40
  142. #define VCO_SHORTOFFS 0x100
  143. #define VMO_DOUBLE 0x01
  144. #define VMO_INTER 0x02
  145. #define VMO_PREMASK 0x0c
  146. #endif
  147. static struct fb_info fb_info;
  148. static void *screen_base; /* base address of screen */
  149. static void *real_screen_base; /* (only for Overscan) */
  150. static int screen_len;
  151. static int current_par_valid=0; 
  152. static int currcon=0;
  153. static int mono_moni=0;
  154. static struct display disp;
  155. #ifdef ATAFB_EXT
  156. /* external video handling */
  157. static unsigned external_xres;
  158. static unsigned external_xres_virtual;
  159. static unsigned external_yres;
  160. /* not needed - atafb will never support panning/hardwarescroll with external
  161.  * static unsigned external_yres_virtual;
  162. */
  163. static unsigned external_depth;
  164. static int external_pmode;
  165. static void *external_addr = 0;
  166. static unsigned long external_len;
  167. static unsigned long external_vgaiobase = 0;
  168. static unsigned int external_bitspercol = 6;
  169. /* 
  170. JOE <joe@amber.dinoco.de>: 
  171. added card type for external driver, is only needed for
  172. colormap handling.
  173. */
  174. enum cardtype { IS_VGA, IS_MV300 };
  175. static enum cardtype external_card_type = IS_VGA;
  176. /*
  177. The MV300 mixes the color registers. So we need an array of munged
  178. indices in order to access the correct reg.
  179. */
  180. static int MV300_reg_1bit[2]={0,1};
  181. static int MV300_reg_4bit[16]={
  182. 0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15 };
  183. static int MV300_reg_8bit[256]={
  184. 0, 128, 64, 192, 32, 160, 96, 224, 16, 144, 80, 208, 48, 176, 112, 240, 
  185. 8, 136, 72, 200, 40, 168, 104, 232, 24, 152, 88, 216, 56, 184, 120, 248, 
  186. 4, 132, 68, 196, 36, 164, 100, 228, 20, 148, 84, 212, 52, 180, 116, 244, 
  187. 12, 140, 76, 204, 44, 172, 108, 236, 28, 156, 92, 220, 60, 188, 124, 252, 
  188. 2, 130, 66, 194, 34, 162, 98, 226, 18, 146, 82, 210, 50, 178, 114, 242, 
  189. 10, 138, 74, 202, 42, 170, 106, 234, 26, 154, 90, 218, 58, 186, 122, 250, 
  190. 6, 134, 70, 198, 38, 166, 102, 230, 22, 150, 86, 214, 54, 182, 118, 246, 
  191. 14, 142, 78, 206, 46, 174, 110, 238, 30, 158, 94, 222, 62, 190, 126, 254, 
  192. 1, 129, 65, 193, 33, 161, 97, 225, 17, 145, 81, 209, 49, 177, 113, 241, 
  193. 9, 137, 73, 201, 41, 169, 105, 233, 25, 153, 89, 217, 57, 185, 121, 249, 
  194. 5, 133, 69, 197, 37, 165, 101, 229, 21, 149, 85, 213, 53, 181, 117, 245, 
  195. 13, 141, 77, 205, 45, 173, 109, 237, 29, 157, 93, 221, 61, 189, 125, 253, 
  196. 3, 131, 67, 195, 35, 163, 99, 227, 19, 147, 83, 211, 51, 179, 115, 243, 
  197. 11, 139, 75, 203, 43, 171, 107, 235, 27, 155, 91, 219, 59, 187, 123, 251, 
  198. 7, 135, 71, 199, 39, 167, 103, 231, 23, 151, 87, 215, 55, 183, 119, 247, 
  199. 15, 143, 79, 207, 47, 175, 111, 239, 31, 159, 95, 223, 63, 191, 127, 255 }; 
  200. static int *MV300_reg = MV300_reg_8bit;
  201. /*
  202. And on the MV300 it's difficult to read out the hardware palette. So we
  203. just keep track of the set colors in our own array here, and use that!
  204. */
  205. static struct { unsigned char red,green,blue,pad; } ext_color[256];
  206. #endif /* ATAFB_EXT */
  207. static int inverse=0;
  208. extern int fontheight_8x8;
  209. extern int fontwidth_8x8;
  210. extern unsigned char fontdata_8x8[];
  211. extern int fontheight_8x16;
  212. extern int fontwidth_8x16;
  213. extern unsigned char fontdata_8x16[];
  214. /* ++roman: This structure abstracts from the underlying hardware (ST(e),
  215.  * TT, or Falcon.
  216.  *
  217.  * int (*detect)( void )
  218.  *   This function should detect the current video mode settings and
  219.  *   store them in atafb_predefined[0] for later reference by the
  220.  *   user. Return the index+1 of an equivalent predefined mode or 0
  221.  *   if there is no such.
  222.  * 
  223.  * int (*encode_fix)( struct fb_fix_screeninfo *fix,
  224.  *                    struct atafb_par *par )
  225.  *   This function should fill in the 'fix' structure based on the
  226.  *   values in the 'par' structure.
  227.  *   
  228.  * int (*decode_var)( struct fb_var_screeninfo *var,
  229.  *                    struct atafb_par *par )
  230.  *   Get the video params out of 'var'. If a value doesn't fit, round
  231.  *   it up, if it's too big, return EINVAL.
  232.  *   Round up in the following order: bits_per_pixel, xres, yres, 
  233.  *   xres_virtual, yres_virtual, xoffset, yoffset, grayscale, bitfields, 
  234.  *   horizontal timing, vertical timing.
  235.  *
  236.  * int (*encode_var)( struct fb_var_screeninfo *var,
  237.  *                    struct atafb_par *par );
  238.  *   Fill the 'var' structure based on the values in 'par' and maybe
  239.  *   other values read out of the hardware.
  240.  *   
  241.  * void (*get_par)( struct atafb_par *par )
  242.  *   Fill the hardware's 'par' structure.
  243.  *   
  244.  * void (*set_par)( struct atafb_par *par )
  245.  *   Set the hardware according to 'par'.
  246.  *   
  247.  * int (*setcolreg)( unsigned regno, unsigned red,
  248.  *                   unsigned green, unsigned blue,
  249.  *                   unsigned transp, struct fb_info *info )
  250.  *   Set a single color register. The values supplied are already
  251.  *   rounded down to the hardware's capabilities (according to the
  252.  *   entries in the var structure). Return != 0 for invalid regno.
  253.  *
  254.  * int (*getcolreg)( unsigned regno, unsigned *red,
  255.  *                   unsigned *green, unsigned *blue,
  256.  *                   unsigned *transp, struct fb_info *info )
  257.  *   Read a single color register and split it into
  258.  *   colors/transparent. Return != 0 for invalid regno.
  259.  *
  260.  * void (*set_screen_base)(void *s_base)
  261.  *   Set the base address of the displayed frame buffer. Only called
  262.  *   if yres_virtual > yres or xres_virtual > xres.
  263.  *
  264.  * int (*blank)( int blank_mode )
  265.  *   Blank the screen if blank_mode!=0, else unblank. If blank==NULL then
  266.  *   the caller blanks by setting the CLUT to all black. Return 0 if blanking
  267.  *   succeeded, !=0 if un-/blanking failed due to e.g. a video mode which
  268.  *   doesn't support it. Implements VESA suspend and powerdown modes on
  269.  *   hardware that supports disabling hsync/vsync:
  270.  *       blank_mode==2: suspend vsync, 3:suspend hsync, 4: powerdown.
  271.  */
  272. static struct fb_hwswitch {
  273. int  (*detect)( void );
  274. int  (*encode_fix)( struct fb_fix_screeninfo *fix,
  275. struct atafb_par *par );
  276. int  (*decode_var)( struct fb_var_screeninfo *var,
  277. struct atafb_par *par );
  278. int  (*encode_var)( struct fb_var_screeninfo *var,
  279. struct atafb_par *par );
  280. void (*get_par)( struct atafb_par *par );
  281. void (*set_par)( struct atafb_par *par );
  282. int  (*getcolreg)( unsigned regno, unsigned *red,
  283.    unsigned *green, unsigned *blue,
  284.    unsigned *transp, struct fb_info *info );
  285. int  (*setcolreg)( unsigned regno, unsigned red,
  286.    unsigned green, unsigned blue,
  287.    unsigned transp, struct fb_info *info );
  288. void (*set_screen_base)(void *s_base);
  289. int  (*blank)( int blank_mode );
  290. int  (*pan_display)( struct fb_var_screeninfo *var,
  291.  struct atafb_par *par);
  292. } *fbhw;
  293. static char *autodetect_names[] = {"autodetect", NULL};
  294. static char *stlow_names[] = {"stlow", NULL};
  295. static char *stmid_names[] = {"stmid", "default5", NULL};
  296. static char *sthigh_names[] = {"sthigh", "default4", NULL};
  297. static char *ttlow_names[] = {"ttlow", NULL};
  298. static char *ttmid_names[]= {"ttmid", "default1", NULL};
  299. static char *tthigh_names[]= {"tthigh", "default2", NULL};
  300. static char *vga2_names[] = {"vga2", NULL};
  301. static char *vga4_names[] = {"vga4", NULL};
  302. static char *vga16_names[] = {"vga16", "default3", NULL};
  303. static char *vga256_names[] = {"vga256", NULL};
  304. static char *falh2_names[] = {"falh2", NULL};
  305. static char *falh16_names[] = {"falh16", NULL};
  306. static char **fb_var_names[] = {
  307. /* Writing the name arrays directly in this array (via "(char *[]){...}")
  308.  * crashes gcc 2.5.8 (sigsegv) if the inner array
  309.  * contains more than two items. I've also seen that all elements
  310.  * were identical to the last (my cross-gcc) :-(*/
  311. autodetect_names,
  312. stlow_names,
  313. stmid_names,
  314. sthigh_names,
  315. ttlow_names,
  316. ttmid_names,
  317. tthigh_names,
  318. vga2_names,
  319. vga4_names,
  320. vga16_names,
  321. vga256_names,
  322. falh2_names,
  323. falh16_names,
  324. NULL
  325. /* ,NULL */ /* this causes a sigsegv on my gcc-2.5.8 */
  326. };
  327. static struct fb_var_screeninfo atafb_predefined[] = {
  328.   /*
  329.    * yres_virtual==0 means use hw-scrolling if possible, else yres
  330.    */
  331.   { /* autodetect */
  332.   0, 0, 0, 0, 0, 0, 0, 0,    /* xres-grayscale */
  333.   {0, 0, 0}, {0, 0, 0}, {0, 0, 0}, {0, 0, 0},  /* red green blue tran*/
  334.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  335.   { /* st low */
  336.   320, 200, 320, 0, 0, 0, 4, 0,
  337.   {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
  338.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  339. { /* st mid */
  340.   640, 200, 640, 0, 0, 0, 2, 0,
  341.   {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
  342.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  343. { /* st high */
  344.   640, 400, 640, 0, 0, 0, 1, 0,
  345.   {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
  346.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  347. { /* tt low */
  348.   320, 480, 320, 0, 0, 0, 8, 0,
  349.   {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
  350.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  351. { /* tt mid */
  352.   640, 480, 640, 0, 0, 0, 4, 0,
  353.   {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
  354.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  355. { /* tt high */
  356.   1280, 960, 1280, 0, 0, 0, 1, 0,
  357.   {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
  358.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  359. { /* vga2 */
  360.   640, 480, 640, 0, 0, 0, 1, 0,
  361.   {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
  362.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  363. { /* vga4 */
  364.   640, 480, 640, 0, 0, 0, 2, 0,
  365.   {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0},
  366.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  367. { /* vga16 */
  368.   640, 480, 640, 0, 0, 0, 4, 0,
  369.   {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
  370.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  371. { /* vga256 */
  372.   640, 480, 640, 0, 0, 0, 8, 0,
  373.   {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
  374.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  375. { /* falh2 */
  376.   896, 608, 896, 0, 0, 0, 1, 0,
  377.   {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
  378.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  379. { /* falh16 */
  380.   896, 608, 896, 0, 0, 0, 4, 0,
  381.   {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
  382.   0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0 },
  383. };
  384. static int num_atafb_predefined=ARRAY_SIZE(atafb_predefined);
  385. static int
  386. get_video_mode(char *vname)
  387. {
  388.     char ***name_list;
  389.     char **name;
  390.     int i;
  391.     name_list=fb_var_names;
  392.     for (i = 0 ; i < num_atafb_predefined ; i++) {
  393. name=*(name_list++);
  394. if (! name || ! *name)
  395.     break;
  396. while (*name) {
  397.     if (! strcmp(vname, *name))
  398. return i+1;
  399.     name++;
  400. }
  401.     }
  402.     return 0;
  403. }
  404. /* ------------------- TT specific functions ---------------------- */
  405. #ifdef ATAFB_TT
  406. static int tt_encode_fix( struct fb_fix_screeninfo *fix,
  407.   struct atafb_par *par )
  408. {
  409. int mode;
  410. strcpy(fix->id,"Atari Builtin");
  411. fix->smem_start = (unsigned long)real_screen_base;
  412. fix->smem_len = screen_len;
  413. fix->type=FB_TYPE_INTERLEAVED_PLANES;
  414. fix->type_aux=2;
  415. fix->visual=FB_VISUAL_PSEUDOCOLOR;
  416. mode = par->hw.tt.mode & TT_SHIFTER_MODEMASK;
  417. if (mode == TT_SHIFTER_TTHIGH || mode == TT_SHIFTER_STHIGH) {
  418. fix->type=FB_TYPE_PACKED_PIXELS;
  419. fix->type_aux=0;
  420. if (mode == TT_SHIFTER_TTHIGH)
  421. fix->visual=FB_VISUAL_MONO01;
  422. }
  423. fix->xpanstep=0;
  424. fix->ypanstep=1;
  425. fix->ywrapstep=0;
  426. fix->line_length = 0;
  427. fix->accel = FB_ACCEL_ATARIBLITT;
  428. return 0;
  429. }
  430. static int tt_decode_var( struct fb_var_screeninfo *var,
  431.   struct atafb_par *par )
  432. {
  433. int xres=var->xres;
  434. int yres=var->yres;
  435. int bpp=var->bits_per_pixel;
  436. int linelen;
  437. int yres_virtual = var->yres_virtual;
  438. if (mono_moni) {
  439. if (bpp > 1 || xres > sttt_xres*2 || yres >tt_yres*2)
  440. return -EINVAL;
  441. par->hw.tt.mode=TT_SHIFTER_TTHIGH;
  442. xres=sttt_xres*2;
  443. yres=tt_yres*2;
  444. bpp=1;
  445. } else {
  446. if (bpp > 8 || xres > sttt_xres || yres > tt_yres)
  447. return -EINVAL;
  448. if (bpp > 4) {
  449. if (xres > sttt_xres/2 || yres > tt_yres)
  450. return -EINVAL;
  451. par->hw.tt.mode=TT_SHIFTER_TTLOW;
  452. xres=sttt_xres/2;
  453. yres=tt_yres;
  454. bpp=8;
  455. }
  456. else if (bpp > 2) {
  457. if (xres > sttt_xres || yres > tt_yres)
  458. return -EINVAL;
  459. if (xres > sttt_xres/2 || yres > st_yres/2) {
  460. par->hw.tt.mode=TT_SHIFTER_TTMID;
  461. xres=sttt_xres;
  462. yres=tt_yres;
  463. bpp=4;
  464. }
  465. else {
  466. par->hw.tt.mode=TT_SHIFTER_STLOW;
  467. xres=sttt_xres/2;
  468. yres=st_yres/2;
  469. bpp=4;
  470. }
  471. }
  472. else if (bpp > 1) {
  473. if (xres > sttt_xres || yres > st_yres/2)
  474. return -EINVAL;
  475. par->hw.tt.mode=TT_SHIFTER_STMID;
  476. xres=sttt_xres;
  477. yres=st_yres/2;
  478. bpp=2;
  479. }
  480. else if (var->xres > sttt_xres || var->yres > st_yres) {
  481. return -EINVAL;
  482. }
  483. else {
  484. par->hw.tt.mode=TT_SHIFTER_STHIGH;
  485. xres=sttt_xres;
  486. yres=st_yres;
  487. bpp=1;
  488. }
  489. }
  490. if (yres_virtual <= 0)
  491. yres_virtual = 0;
  492. else if (yres_virtual < yres)
  493. yres_virtual = yres;
  494. if (var->sync & FB_SYNC_EXT)
  495. par->hw.tt.sync=0;
  496. else
  497. par->hw.tt.sync=1;
  498. linelen=xres*bpp/8;
  499. if (yres_virtual * linelen > screen_len && screen_len)
  500. return -EINVAL;
  501. if (yres * linelen > screen_len && screen_len)
  502. return -EINVAL;
  503. if (var->yoffset + yres > yres_virtual && yres_virtual)
  504. return -EINVAL;
  505. par->yres_virtual = yres_virtual;
  506. par->screen_base = screen_base + var->yoffset * linelen;
  507. return 0;
  508. }
  509. static int tt_encode_var( struct fb_var_screeninfo *var,
  510.   struct atafb_par *par )
  511. {
  512. int linelen;
  513. memset(var, 0, sizeof(struct fb_var_screeninfo));
  514. var->red.offset=0;
  515. var->red.length=4;
  516. var->red.msb_right=0;
  517. var->grayscale=0;
  518. var->pixclock=31041;
  519. var->left_margin=120; /* these may be incorrect  */
  520. var->right_margin=100;
  521. var->upper_margin=8;
  522. var->lower_margin=16;
  523. var->hsync_len=140;
  524. var->vsync_len=30;
  525. var->height=-1;
  526. var->width=-1;
  527. if (par->hw.tt.sync & 1)
  528. var->sync=0;
  529. else
  530. var->sync=FB_SYNC_EXT;
  531. switch (par->hw.tt.mode & TT_SHIFTER_MODEMASK) {
  532. case TT_SHIFTER_STLOW:
  533. var->xres=sttt_xres/2;
  534. var->xres_virtual=sttt_xres_virtual/2;
  535. var->yres=st_yres/2;
  536. var->bits_per_pixel=4;
  537. break;
  538. case TT_SHIFTER_STMID:
  539. var->xres=sttt_xres;
  540. var->xres_virtual=sttt_xres_virtual;
  541. var->yres=st_yres/2;
  542. var->bits_per_pixel=2;
  543. break;
  544. case TT_SHIFTER_STHIGH:
  545. var->xres=sttt_xres;
  546. var->xres_virtual=sttt_xres_virtual;
  547. var->yres=st_yres;
  548. var->bits_per_pixel=1;
  549. break;
  550. case TT_SHIFTER_TTLOW:
  551. var->xres=sttt_xres/2;
  552. var->xres_virtual=sttt_xres_virtual/2;
  553. var->yres=tt_yres;
  554. var->bits_per_pixel=8;
  555. break;
  556. case TT_SHIFTER_TTMID:
  557. var->xres=sttt_xres;
  558. var->xres_virtual=sttt_xres_virtual;
  559. var->yres=tt_yres;
  560. var->bits_per_pixel=4;
  561. break;
  562. case TT_SHIFTER_TTHIGH:
  563. var->red.length=0;
  564. var->xres=sttt_xres*2;
  565. var->xres_virtual=sttt_xres_virtual*2;
  566. var->yres=tt_yres*2;
  567. var->bits_per_pixel=1;
  568. break;
  569. }
  570. var->blue=var->green=var->red;
  571. var->transp.offset=0;
  572. var->transp.length=0;
  573. var->transp.msb_right=0;
  574. linelen=var->xres_virtual * var->bits_per_pixel / 8;
  575. if (! use_hwscroll)
  576. var->yres_virtual=var->yres;
  577. else if (screen_len) {
  578. if (par->yres_virtual)
  579. var->yres_virtual = par->yres_virtual;
  580. else
  581. /* yres_virtual==0 means use maximum */
  582. var->yres_virtual = screen_len / linelen;
  583. } else {
  584. if (hwscroll < 0)
  585. var->yres_virtual = 2 * var->yres;
  586. else
  587. var->yres_virtual=var->yres+hwscroll * 16;
  588. }
  589. var->xoffset=0;
  590. if (screen_base)
  591. var->yoffset=(par->screen_base - screen_base)/linelen;
  592. else
  593. var->yoffset=0;
  594. var->nonstd=0;
  595. var->activate=0;
  596. var->vmode=FB_VMODE_NONINTERLACED;
  597. return 0;
  598. }
  599. static void tt_get_par( struct atafb_par *par )
  600. {
  601. unsigned long addr;
  602. par->hw.tt.mode=shifter_tt.tt_shiftmode;
  603. par->hw.tt.sync=shifter.syncmode;
  604. addr = ((shifter.bas_hi & 0xff) << 16) |
  605.        ((shifter.bas_md & 0xff) << 8)  |
  606.        ((shifter.bas_lo & 0xff));
  607. par->screen_base = phys_to_virt(addr);
  608. }
  609. static void tt_set_par( struct atafb_par *par )
  610. {
  611. shifter_tt.tt_shiftmode=par->hw.tt.mode;
  612. shifter.syncmode=par->hw.tt.sync;
  613. /* only set screen_base if really necessary */
  614. if (current_par.screen_base != par->screen_base)
  615. fbhw->set_screen_base(par->screen_base);
  616. }
  617. static int tt_getcolreg(unsigned regno, unsigned *red,
  618. unsigned *green, unsigned *blue,
  619. unsigned *transp, struct fb_info *info)
  620. {
  621. int t, col;
  622. if ((shifter_tt.tt_shiftmode & TT_SHIFTER_MODEMASK) == TT_SHIFTER_STHIGH)
  623. regno += 254;
  624. if (regno > 255)
  625. return 1;
  626. t = tt_palette[regno];
  627. col = t & 15;
  628. col |= col << 4;
  629. col |= col << 8;
  630. *blue = col;
  631. col = (t >> 4) & 15;
  632. col |= col << 4;
  633. col |= col << 8;
  634. *green = col;
  635. col = (t >> 8) & 15;
  636. col |= col << 4;
  637. col |= col << 8;
  638. *red = col;
  639. *transp = 0;
  640. return 0;
  641. }
  642. static int tt_setcolreg(unsigned regno, unsigned red,
  643. unsigned green, unsigned blue,
  644. unsigned transp, struct fb_info *info)
  645. {
  646. if ((shifter_tt.tt_shiftmode & TT_SHIFTER_MODEMASK) == TT_SHIFTER_STHIGH)
  647. regno += 254;
  648. if (regno > 255)
  649. return 1;
  650. tt_palette[regno] = (((red >> 12) << 8) | ((green >> 12) << 4) |
  651.      (blue >> 12));
  652. if ((shifter_tt.tt_shiftmode & TT_SHIFTER_MODEMASK) ==
  653. TT_SHIFTER_STHIGH && regno == 254)
  654. tt_palette[0] = 0;
  655. return 0;
  656. }
  657.   
  658. static int tt_detect( void )
  659. { struct atafb_par par;
  660. /* Determine the connected monitor: The DMA sound must be
  661.  * disabled before reading the MFP GPIP, because the Sound
  662.  * Done Signal and the Monochrome Detect are XORed together!
  663.  *
  664.  * Even on a TT, we should look if there is a DMA sound. It was
  665.  * announced that the Eagle is TT compatible, but only the PCM is
  666.  * missing...
  667.  */
  668. if (ATARIHW_PRESENT(PCM_8BIT)) { 
  669. tt_dmasnd.ctrl = DMASND_CTRL_OFF;
  670. udelay(20); /* wait a while for things to settle down */
  671. }
  672. mono_moni = (mfp.par_dt_reg & 0x80) == 0;
  673. tt_get_par(&par);
  674. tt_encode_var(&atafb_predefined[0], &par);
  675. return 1;
  676. }
  677. #endif /* ATAFB_TT */
  678. /* ------------------- Falcon specific functions ---------------------- */
  679. #ifdef ATAFB_FALCON
  680. static int mon_type; /* Falcon connected monitor */
  681. static int f030_bus_width; /* Falcon ram bus width (for vid_control) */
  682. #define F_MON_SM 0
  683. #define F_MON_SC 1
  684. #define F_MON_VGA 2
  685. #define F_MON_TV 3
  686. static struct pixel_clock {
  687. unsigned long f; /* f/[Hz] */
  688. unsigned long t; /* t/[ps] (=1/f) */
  689. int right, hsync, left; /* standard timing in clock cycles, not pixel */
  690. /* hsync initialized in falcon_detect() */
  691. int sync_mask; /* or-mask for hw.falcon.sync to set this clock */
  692. int control_mask; /* ditto, for hw.falcon.vid_control */
  693. }
  694. f25  = {25175000, 39721, 18, 0, 42, 0x0, VCO_CLOCK25},
  695. f32  = {32000000, 31250, 18, 0, 42, 0x0, 0},
  696. fext = {       0,     0, 18, 0, 42, 0x1, 0};
  697. /* VIDEL-prescale values [mon_type][pixel_length from VCO] */
  698. static int vdl_prescale[4][3] = {{4,2,1}, {4,2,1}, {4,2,2}, {4,2,1}};
  699. /* Default hsync timing [mon_type] in picoseconds */
  700. static long h_syncs[4] = {3000000, 4875000, 4000000, 4875000};
  701. #ifdef FBCON_HAS_CFB16
  702. static u16 fbcon_cfb16_cmap[16];
  703. #endif
  704. static inline int hxx_prescale(struct falcon_hw *hw)
  705. {
  706. return hw->ste_mode ? 16 :
  707.    vdl_prescale[mon_type][hw->vid_mode >> 2 & 0x3];
  708. }
  709. static int falcon_encode_fix( struct fb_fix_screeninfo *fix,
  710.   struct atafb_par *par )
  711. {
  712. strcpy(fix->id, "Atari Builtin");
  713. fix->smem_start = (unsigned long)real_screen_base;
  714. fix->smem_len = screen_len;
  715. fix->type = FB_TYPE_INTERLEAVED_PLANES;
  716. fix->type_aux = 2;
  717. fix->visual = FB_VISUAL_PSEUDOCOLOR;
  718. fix->xpanstep = 1;
  719. fix->ypanstep = 1;
  720. fix->ywrapstep = 0;
  721. if (par->hw.falcon.mono) {
  722. fix->type = FB_TYPE_PACKED_PIXELS;
  723. fix->type_aux = 0;
  724. /* no smooth scrolling with longword aligned video mem */
  725. fix->xpanstep = 32;
  726. }
  727. else if (par->hw.falcon.f_shift & 0x100) {
  728. fix->type = FB_TYPE_PACKED_PIXELS;
  729. fix->type_aux = 0;
  730. /* Is this ok or should it be DIRECTCOLOR? */
  731. fix->visual = FB_VISUAL_TRUECOLOR;
  732. fix->xpanstep = 2;
  733. }
  734. fix->line_length = 0;
  735. fix->accel = FB_ACCEL_ATARIBLITT;
  736. return 0;
  737. }
  738. static int falcon_decode_var( struct fb_var_screeninfo *var,
  739.   struct atafb_par *par )
  740. {
  741. int bpp = var->bits_per_pixel;
  742. int xres = var->xres;
  743. int yres = var->yres;
  744. int xres_virtual = var->xres_virtual;
  745. int yres_virtual = var->yres_virtual;
  746. int left_margin, right_margin, hsync_len;
  747. int upper_margin, lower_margin, vsync_len;
  748. int linelen;
  749. int interlace = 0, doubleline = 0;
  750. struct pixel_clock *pclock;
  751. int plen; /* width of pixel in clock cycles */
  752. int xstretch;
  753. int prescale;
  754. int longoffset = 0;
  755. int hfreq, vfreq;
  756. /*
  757. Get the video params out of 'var'. If a value doesn't fit, round
  758. it up, if it's too big, return EINVAL.
  759. Round up in the following order: bits_per_pixel, xres, yres, 
  760. xres_virtual, yres_virtual, xoffset, yoffset, grayscale, bitfields, 
  761. horizontal timing, vertical timing.
  762. There is a maximum of screen resolution determined by pixelclock
  763. and minimum frame rate -- (X+hmarg.)*(Y+vmarg.)*vfmin <= pixelclock.
  764. In interlace mode this is     "     *    "     *vfmin <= pixelclock.
  765. Additional constraints: hfreq.
  766. Frequency range for multisync monitors is given via command line.
  767. For TV and SM124 both frequencies are fixed.
  768. X % 16 == 0 to fit 8x?? font (except 1 bitplane modes must use X%32==0)
  769. Y % 16 == 0 to fit 8x16 font
  770. Y % 8 == 0 if Y<400
  771. Currently interlace and doubleline mode in var are ignored. 
  772. On SM124 and TV only the standard resolutions can be used.
  773. */
  774. /* Reject uninitialized mode */
  775. if (!xres || !yres || !bpp)
  776. return -EINVAL;
  777. if (mon_type == F_MON_SM && bpp != 1) {
  778. return -EINVAL;
  779. }
  780. else if (bpp <= 1) {
  781. bpp = 1;
  782. par->hw.falcon.f_shift = 0x400;
  783. par->hw.falcon.st_shift = 0x200;
  784. }
  785. else if (bpp <= 2) {
  786. bpp = 2;
  787. par->hw.falcon.f_shift = 0x000;
  788. par->hw.falcon.st_shift = 0x100;
  789. }
  790. else if (bpp <= 4) {
  791. bpp = 4;
  792. par->hw.falcon.f_shift = 0x000;
  793. par->hw.falcon.st_shift = 0x000;
  794. }
  795. else if (bpp <= 8) {
  796. bpp = 8;
  797. par->hw.falcon.f_shift = 0x010;
  798. }
  799. else if (bpp <= 16) {
  800. bpp = 16; /* packed pixel mode */
  801. par->hw.falcon.f_shift = 0x100; /* hicolor, no overlay */
  802. }
  803. else
  804. return -EINVAL;
  805. par->hw.falcon.bpp = bpp;
  806. if (mon_type == F_MON_SM || DontCalcRes) {
  807. /* Skip all calculations. VGA/TV/SC1224 only supported. */
  808. struct fb_var_screeninfo *myvar = &atafb_predefined[0];
  809. if (bpp > myvar->bits_per_pixel ||
  810. var->xres > myvar->xres ||
  811. var->yres > myvar->yres)
  812. return -EINVAL;
  813. fbhw->get_par(par); /* Current par will be new par */
  814. goto set_screen_base; /* Don't forget this */
  815. }
  816. /* Only some fixed resolutions < 640x400 */
  817. if (xres <= 320)
  818. xres = 320;
  819. else if (xres <= 640 && bpp != 16)
  820. xres = 640;
  821. if (yres <= 200)
  822. yres = 200;
  823. else if (yres <= 240)
  824. yres = 240;
  825. else if (yres <= 400)
  826. yres = 400;
  827. /* 2 planes must use STE compatibility mode */
  828. par->hw.falcon.ste_mode = bpp==2;
  829. par->hw.falcon.mono = bpp==1;
  830. /* Total and visible scanline length must be a multiple of one longword,
  831.  * this and the console fontwidth yields the alignment for xres and
  832.  * xres_virtual.
  833.  * TODO: this way "odd" fontheights are not supported
  834.  *
  835.  * Special case in STE mode: blank and graphic positions don't align,
  836.  * avoid trash at right margin
  837.  */
  838. if (par->hw.falcon.ste_mode)
  839. xres = (xres + 63) & ~63;
  840. else if (bpp == 1)
  841. xres = (xres + 31) & ~31;
  842. else
  843. xres = (xres + 15) & ~15;
  844. if (yres >= 400)
  845. yres = (yres + 15) & ~15;
  846. else
  847. yres = (yres + 7) & ~7;
  848. if (xres_virtual < xres)
  849. xres_virtual = xres;
  850. else if (bpp == 1)
  851. xres_virtual = (xres_virtual + 31) & ~31;
  852. else
  853. xres_virtual = (xres_virtual + 15) & ~15;
  854. if (yres_virtual <= 0)
  855. yres_virtual = 0;
  856. else if (yres_virtual < yres)
  857. yres_virtual = yres;
  858. /* backward bug-compatibility */
  859. if (var->pixclock > 1)
  860. var->pixclock -= 1;
  861. par->hw.falcon.line_width = bpp * xres / 16;
  862. par->hw.falcon.line_offset = bpp * (xres_virtual - xres) / 16;
  863. /* single or double pixel width */
  864. xstretch = (xres < 640) ? 2 : 1;
  865. #if 0 /* SM124 supports only 640x400, this is rejected above */
  866. if (mon_type == F_MON_SM) {
  867. if (xres != 640 && yres != 400)
  868. return -EINVAL;
  869. plen = 1;
  870. pclock = &f32;
  871. /* SM124-mode is special */
  872. par->hw.falcon.ste_mode = 1;
  873. par->hw.falcon.f_shift = 0x000;
  874. par->hw.falcon.st_shift = 0x200;
  875. left_margin = hsync_len = 128 / plen;
  876. right_margin = 0;
  877. /* TODO set all margins */
  878. }
  879. else
  880. #endif
  881. if (mon_type == F_MON_SC || mon_type == F_MON_TV) {
  882. plen = 2 * xstretch;
  883. if (var->pixclock > f32.t * plen)
  884. return -EINVAL;
  885. pclock = &f32;
  886. if (yres > 240)
  887. interlace = 1;
  888. if (var->pixclock == 0) {
  889. /* set some minimal margins which center the screen */
  890. left_margin = 32;
  891. right_margin = 18;
  892. hsync_len = pclock->hsync / plen;
  893. upper_margin = 31;
  894. lower_margin = 14;
  895. vsync_len = interlace ? 3 : 4;
  896. } else {
  897. left_margin = var->left_margin;
  898. right_margin = var->right_margin;
  899. hsync_len = var->hsync_len;
  900. upper_margin = var->upper_margin;
  901. lower_margin = var->lower_margin;
  902. vsync_len = var->vsync_len;
  903. if (var->vmode & FB_VMODE_INTERLACED) {
  904. upper_margin = (upper_margin + 1) / 2;
  905. lower_margin = (lower_margin + 1) / 2;
  906. vsync_len = (vsync_len + 1) / 2;
  907. } else if (var->vmode & FB_VMODE_DOUBLE) {
  908. upper_margin *= 2;
  909. lower_margin *= 2;
  910. vsync_len *= 2;
  911. }
  912. }
  913. }
  914. else
  915. { /* F_MON_VGA */
  916. if (bpp == 16)
  917. xstretch = 2; /* Double pixel width only for hicolor */
  918. /* Default values are used for vert./hor. timing if no pixelclock given. */
  919. if (var->pixclock == 0) {
  920. int linesize;
  921. /* Choose master pixelclock depending on hor. timing */
  922. plen = 1 * xstretch;
  923. if ((plen * xres + f25.right+f25.hsync+f25.left) *
  924.     fb_info.monspecs.hfmin < f25.f)
  925. pclock = &f25;
  926. else if ((plen * xres + f32.right+f32.hsync+f32.left) * 
  927.     fb_info.monspecs.hfmin < f32.f)
  928. pclock = &f32;
  929. else if ((plen * xres + fext.right+fext.hsync+fext.left) * 
  930.     fb_info.monspecs.hfmin < fext.f
  931.          && fext.f)
  932. pclock = &fext;
  933. else
  934. return -EINVAL;
  935. left_margin = pclock->left / plen;
  936. right_margin = pclock->right / plen;
  937. hsync_len = pclock->hsync / plen;
  938. linesize = left_margin + xres + right_margin + hsync_len;
  939. upper_margin = 31;
  940. lower_margin = 11;
  941. vsync_len = 3;
  942. }
  943. else {
  944. /* Choose largest pixelclock <= wanted clock */
  945. int i;
  946. unsigned long pcl = ULONG_MAX;
  947. pclock = 0;
  948. for (i=1; i <= 4; i *= 2) {
  949. if (f25.t*i >= var->pixclock && f25.t*i < pcl) {
  950. pcl = f25.t * i;
  951. pclock = &f25;
  952. }
  953. if (f32.t*i >= var->pixclock && f32.t*i < pcl) {
  954. pcl = f32.t * i;
  955. pclock = &f32;
  956. }
  957. if (fext.t && fext.t*i >= var->pixclock && fext.t*i < pcl) {
  958. pcl = fext.t * i;
  959. pclock = &fext;
  960. }
  961. }
  962. if (!pclock)
  963. return -EINVAL;
  964. plen = pcl / pclock->t;
  965. left_margin = var->left_margin;
  966. right_margin = var->right_margin;
  967. hsync_len = var->hsync_len;
  968. upper_margin = var->upper_margin;
  969. lower_margin = var->lower_margin;
  970. vsync_len = var->vsync_len;
  971. /* Internal unit is [single lines per (half-)frame] */
  972. if (var->vmode & FB_VMODE_INTERLACED) {
  973. /* # lines in half frame */
  974. /* External unit is [lines per full frame] */
  975. upper_margin = (upper_margin + 1) / 2;
  976. lower_margin = (lower_margin + 1) / 2;
  977. vsync_len = (vsync_len + 1) / 2;
  978. }
  979. else if (var->vmode & FB_VMODE_DOUBLE) {
  980. /* External unit is [double lines per frame] */
  981. upper_margin *= 2;
  982. lower_margin *= 2;
  983. vsync_len *= 2;
  984. }
  985. }
  986. if (pclock == &fext)
  987. longoffset = 1; /* VIDEL doesn't synchronize on short offset */
  988. }
  989. /* Is video bus bandwidth (32MB/s) too low for this resolution? */
  990. /* this is definitely wrong if bus clock != 32MHz */
  991. if (pclock->f / plen / 8 * bpp > 32000000L)
  992. return -EINVAL;
  993. if (vsync_len < 1)
  994. vsync_len = 1;
  995. /* include sync lengths in right/lower margin for all calculations */
  996. right_margin += hsync_len;
  997. lower_margin += vsync_len;
  998. /* ! In all calculations of margins we use # of lines in half frame
  999.  * (which is a full frame in non-interlace mode), so we can switch
  1000.  * between interlace and non-interlace without messing around
  1001.  * with these.
  1002.  */
  1003.   again:
  1004. /* Set base_offset 128 and video bus width */
  1005. par->hw.falcon.vid_control = mon_type | f030_bus_width;
  1006. if (!longoffset)
  1007. par->hw.falcon.vid_control |= VCO_SHORTOFFS; /* base_offset 64 */
  1008. if (var->sync & FB_SYNC_HOR_HIGH_ACT)
  1009. par->hw.falcon.vid_control |= VCO_HSYPOS;
  1010. if (var->sync & FB_SYNC_VERT_HIGH_ACT)
  1011. par->hw.falcon.vid_control |= VCO_VSYPOS;
  1012. /* Pixelclock */
  1013. par->hw.falcon.vid_control |= pclock->control_mask;
  1014. /* External or internal clock */
  1015. par->hw.falcon.sync = pclock->sync_mask | 0x2;
  1016. /* Pixellength and prescale */
  1017. par->hw.falcon.vid_mode = (2/plen) << 2;
  1018. if (doubleline)
  1019. par->hw.falcon.vid_mode |= VMO_DOUBLE;
  1020. if (interlace)
  1021. par->hw.falcon.vid_mode |= VMO_INTER;
  1022. /*********************
  1023. Horizontal timing: unit = [master clock cycles]
  1024. unit of hxx-registers: [master clock cycles * prescale]
  1025. Hxx-registers are 9 bit wide
  1026. 1 line = ((hht + 2) * 2 * prescale) clock cycles
  1027. graphic output = hdb & 0x200 ?
  1028.        ((hht+2)*2 - hdb + hde) * prescale - hdboff + hdeoff:
  1029.        ( hht + 2  - hdb + hde) * prescale - hdboff + hdeoff
  1030. (this must be a multiple of plen*128/bpp, on VGA pixels
  1031.  to the right may be cut off with a bigger right margin)
  1032. start of graphics relative to start of 1st halfline = hdb & 0x200 ?
  1033.        (hdb - hht - 2) * prescale + hdboff :
  1034.        hdb * prescale + hdboff
  1035. end of graphics relative to start of 1st halfline =
  1036.        (hde + hht + 2) * prescale + hdeoff
  1037. *********************/
  1038. /* Calculate VIDEL registers */
  1039. {
  1040. int hdb_off, hde_off, base_off;
  1041. int gstart, gend1, gend2, align;
  1042. prescale = hxx_prescale(&par->hw.falcon);
  1043. base_off = par->hw.falcon.vid_control & VCO_SHORTOFFS ? 64 : 128;
  1044. /* Offsets depend on video mode */
  1045. /* Offsets are in clock cycles, divide by prescale to
  1046.  * calculate hd[be]-registers
  1047.  */
  1048. if (par->hw.falcon.f_shift & 0x100) {
  1049. align = 1;
  1050. hde_off = 0;
  1051. hdb_off = (base_off + 16 * plen) + prescale;
  1052. }
  1053. else {
  1054. align = 128 / bpp;
  1055. hde_off = ((128 / bpp + 2) * plen);
  1056. if (par->hw.falcon.ste_mode)
  1057. hdb_off = (64 + base_off + (128 / bpp + 2) * plen) + prescale;
  1058. else
  1059. hdb_off = (base_off + (128 / bpp + 18) * plen) + prescale;
  1060. }
  1061. gstart = (prescale/2 + plen * left_margin) / prescale;
  1062. /* gend1 is for hde (gend-gstart multiple of align), shifter's xres */
  1063. gend1 = gstart + ((xres + align-1) / align)*align * plen / prescale;
  1064. /* gend2 is for hbb, visible xres (rest to gend1 is cut off by hblank) */
  1065. gend2 = gstart + xres * plen / prescale;
  1066. par->HHT = plen * (left_margin + xres + right_margin) /
  1067.    (2 * prescale) - 2;
  1068. /* par->HHT = (gend2 + plen * right_margin / prescale) / 2 - 2;*/
  1069. par->HDB = gstart - hdb_off/prescale;
  1070. par->HBE = gstart;
  1071. if (par->HDB < 0) par->HDB += par->HHT + 2 + 0x200;
  1072. par->HDE = gend1 - par->HHT - 2 - hde_off/prescale;
  1073. par->HBB = gend2 - par->HHT - 2;
  1074. #if 0
  1075. /* One more Videl constraint: data fetch of two lines must not overlap */
  1076. if (par->HDB & 0x200  &&  par->HDB & ~0x200 - par->HDE <= 5) {
  1077. /* if this happens increase margins, decrease hfreq. */
  1078. }
  1079. #endif
  1080. if (hde_off % prescale)
  1081. par->HBB++; /* compensate for non matching hde and hbb */
  1082. par->HSS = par->HHT + 2 - plen * hsync_len / prescale;
  1083. if (par->HSS < par->HBB)
  1084. par->HSS = par->HBB;
  1085. }
  1086. /*  check hor. frequency */
  1087. hfreq = pclock->f / ((par->HHT+2)*prescale*2);
  1088. if (hfreq > fb_info.monspecs.hfmax && mon_type!=F_MON_VGA) {
  1089. /* ++guenther:   ^^^^^^^^^^^^^^^^^^^ can't remember why I did this */
  1090. /* Too high -> enlarge margin */
  1091. left_margin += 1;
  1092. right_margin += 1;
  1093. goto again;
  1094. }
  1095. if (hfreq > fb_info.monspecs.hfmax || hfreq < fb_info.monspecs.hfmin)
  1096. return -EINVAL;
  1097. /* Vxx-registers */
  1098. /* All Vxx must be odd in non-interlace, since frame starts in the middle
  1099.  * of the first displayed line!
  1100.  * One frame consists of VFT+1 half lines. VFT+1 must be even in
  1101.  * non-interlace, odd in interlace mode for synchronisation.
  1102.  * Vxx-registers are 11 bit wide
  1103.  */
  1104. par->VBE = (upper_margin * 2 + 1); /* must begin on odd halfline */
  1105. par->VDB = par->VBE;
  1106. par->VDE = yres;
  1107. if (!interlace) par->VDE <<= 1;
  1108. if (doubleline) par->VDE <<= 1;  /* VDE now half lines per (half-)frame */
  1109. par->VDE += par->VDB;
  1110. par->VBB = par->VDE;
  1111. par->VFT = par->VBB + (lower_margin * 2 - 1) - 1;
  1112. par->VSS = par->VFT+1 - (vsync_len * 2 - 1);
  1113. /* vbb,vss,vft must be even in interlace mode */
  1114. if (interlace) {
  1115. par->VBB++;
  1116. par->VSS++;
  1117. par->VFT++;
  1118. }
  1119. /* V-frequency check, hope I didn't create any loop here. */
  1120. /* Interlace and doubleline are mutually exclusive. */
  1121. vfreq = (hfreq * 2) / (par->VFT + 1);
  1122. if      (vfreq > fb_info.monspecs.vfmax && !doubleline && !interlace) {
  1123. /* Too high -> try again with doubleline */
  1124. doubleline = 1;
  1125. goto again;
  1126. }
  1127. else if (vfreq < fb_info.monspecs.vfmin && !interlace && !doubleline) {
  1128. /* Too low -> try again with interlace */
  1129. interlace = 1;
  1130. goto again;
  1131. }
  1132. else if (vfreq < fb_info.monspecs.vfmin && doubleline) {
  1133. /* Doubleline too low -> clear doubleline and enlarge margins */
  1134. int lines;
  1135. doubleline = 0;
  1136. for (lines=0;
  1137.      (hfreq*2)/(par->VFT+1+4*lines-2*yres)>fb_info.monspecs.vfmax;
  1138.      lines++)
  1139. ;
  1140. upper_margin += lines;
  1141. lower_margin += lines;
  1142. goto again;
  1143. }
  1144. else if (vfreq > fb_info.monspecs.vfmax && doubleline) {
  1145. /* Doubleline too high -> enlarge margins */
  1146. int lines;
  1147. for (lines=0;
  1148.      (hfreq*2)/(par->VFT+1+4*lines)>fb_info.monspecs.vfmax;
  1149.      lines+=2)
  1150. ;
  1151. upper_margin += lines;
  1152. lower_margin += lines;
  1153. goto again;
  1154. }
  1155. else if (vfreq > fb_info.monspecs.vfmax && interlace) {
  1156. /* Interlace, too high -> enlarge margins */
  1157. int lines;
  1158. for (lines=0;
  1159.      (hfreq*2)/(par->VFT+1+4*lines)>fb_info.monspecs.vfmax;
  1160.      lines++)
  1161. ;
  1162. upper_margin += lines;
  1163. lower_margin += lines;
  1164. goto again;
  1165. }
  1166. else if (vfreq < fb_info.monspecs.vfmin ||
  1167.  vfreq > fb_info.monspecs.vfmax)
  1168. return -EINVAL;
  1169.   set_screen_base:
  1170. linelen = xres_virtual * bpp / 8;
  1171. if (yres_virtual * linelen > screen_len && screen_len)
  1172. return -EINVAL;
  1173. if (yres * linelen > screen_len && screen_len)
  1174. return -EINVAL;
  1175. if (var->yoffset + yres > yres_virtual && yres_virtual)
  1176. return -EINVAL;
  1177. par->yres_virtual = yres_virtual;
  1178. par->screen_base = screen_base + var->yoffset * linelen;
  1179. par->hw.falcon.xoffset = 0;
  1180. return 0;
  1181. }
  1182. static int falcon_encode_var( struct fb_var_screeninfo *var,
  1183.   struct atafb_par *par )
  1184. {
  1185. /* !!! only for VGA !!! */
  1186. int linelen;
  1187. int prescale, plen;
  1188. int hdb_off, hde_off, base_off;
  1189. struct falcon_hw *hw = &par->hw.falcon;
  1190. memset(var, 0, sizeof(struct fb_var_screeninfo));
  1191. /* possible frequencies: 25.175 or 32MHz */
  1192. var->pixclock = hw->sync & 0x1 ? fext.t :
  1193.                 hw->vid_control & VCO_CLOCK25 ? f25.t : f32.t;
  1194. var->height=-1;
  1195. var->width=-1;
  1196. var->sync=0;
  1197. if (hw->vid_control & VCO_HSYPOS)
  1198. var->sync |= FB_SYNC_HOR_HIGH_ACT;
  1199. if (hw->vid_control & VCO_VSYPOS)
  1200. var->sync |= FB_SYNC_VERT_HIGH_ACT;
  1201. var->vmode = FB_VMODE_NONINTERLACED;
  1202. if (hw->vid_mode & VMO_INTER)
  1203. var->vmode |= FB_VMODE_INTERLACED;
  1204. if (hw->vid_mode & VMO_DOUBLE)
  1205. var->vmode |= FB_VMODE_DOUBLE;
  1206. /* visible y resolution:
  1207.  * Graphics display starts at line VDB and ends at line
  1208.  * VDE. If interlace mode off unit of VC-registers is
  1209.  * half lines, else lines.
  1210.  */
  1211. var->yres = hw->vde - hw->vdb;
  1212. if (!(var->vmode & FB_VMODE_INTERLACED))
  1213. var->yres >>= 1;
  1214. if (var->vmode & FB_VMODE_DOUBLE)
  1215. var->yres >>= 1;
  1216. /* to get bpp, we must examine f_shift and st_shift.
  1217.  * f_shift is valid if any of bits no. 10, 8 or 4
  1218.  * is set. Priority in f_shift is: 10 ">" 8 ">" 4, i.e.
  1219.  * if bit 10 set then bit 8 and bit 4 don't care...
  1220.  * If all these bits are 0 get display depth from st_shift
  1221.  * (as for ST and STE)
  1222.  */
  1223. if (hw->f_shift & 0x400) /* 2 colors */
  1224. var->bits_per_pixel = 1;
  1225. else if (hw->f_shift & 0x100) /* hicolor */
  1226. var->bits_per_pixel = 16;
  1227. else if (hw->f_shift & 0x010) /* 8 bitplanes */
  1228. var->bits_per_pixel = 8;
  1229. else if (hw->st_shift == 0)
  1230. var->bits_per_pixel = 4;
  1231. else if (hw->st_shift == 0x100)
  1232. var->bits_per_pixel = 2;
  1233. else /* if (hw->st_shift == 0x200) */
  1234. var->bits_per_pixel = 1;
  1235. var->xres = hw->line_width * 16 / var->bits_per_pixel;
  1236. var->xres_virtual = var->xres + hw->line_offset * 16 / var->bits_per_pixel;
  1237. if (hw->xoffset)
  1238. var->xres_virtual += 16;
  1239. if (var->bits_per_pixel == 16) {
  1240. var->red.offset=11;
  1241. var->red.length=5;
  1242. var->red.msb_right=0;
  1243. var->green.offset=5;
  1244. var->green.length=6;
  1245. var->green.msb_right=0;
  1246. var->blue.offset=0;
  1247. var->blue.length=5;
  1248. var->blue.msb_right=0;
  1249. }
  1250. else {
  1251. var->red.offset=0;
  1252. var->red.length = hw->ste_mode ? 4 : 6;
  1253. var->red.msb_right=0;
  1254. var->grayscale=0;
  1255. var->blue=var->green=var->red;
  1256. }
  1257. var->transp.offset=0;
  1258. var->transp.length=0;
  1259. var->transp.msb_right=0;
  1260. linelen = var->xres_virtual * var->bits_per_pixel / 8;
  1261. if (screen_len) {
  1262. if (par->yres_virtual)
  1263. var->yres_virtual = par->yres_virtual;
  1264. else
  1265. /* yres_virtual==0 means use maximum */
  1266. var->yres_virtual = screen_len / linelen;
  1267. }
  1268. else {
  1269. if (hwscroll < 0)
  1270. var->yres_virtual = 2 * var->yres;
  1271. else
  1272. var->yres_virtual=var->yres+hwscroll * 16;
  1273. }
  1274. var->xoffset=0; /* TODO change this */
  1275. /* hdX-offsets */
  1276. prescale = hxx_prescale(hw);
  1277. plen = 4 >> (hw->vid_mode >> 2 & 0x3);
  1278. base_off = hw->vid_control & VCO_SHORTOFFS ? 64 : 128;
  1279. if (hw->f_shift & 0x100) {
  1280. hde_off = 0;
  1281. hdb_off = (base_off + 16 * plen) + prescale;
  1282. }
  1283. else {
  1284. hde_off = ((128 / var->bits_per_pixel + 2) * plen);
  1285. if (hw->ste_mode)
  1286. hdb_off = (64 + base_off + (128 / var->bits_per_pixel + 2) * plen)
  1287.  + prescale;
  1288. else
  1289. hdb_off = (base_off + (128 / var->bits_per_pixel + 18) * plen)
  1290.  + prescale;
  1291. }
  1292. /* Right margin includes hsync */
  1293. var->left_margin = hdb_off + prescale * ((hw->hdb & 0x1ff) -
  1294.    (hw->hdb & 0x200 ? 2+hw->hht : 0));
  1295. if (hw->ste_mode || mon_type!=F_MON_VGA)
  1296. var->right_margin = prescale * (hw->hht + 2 - hw->hde) - hde_off;
  1297. else
  1298. /* can't use this in ste_mode, because hbb is +1 off */
  1299. var->right_margin = prescale * (hw->hht + 2 - hw->hbb);
  1300. var->hsync_len = prescale * (hw->hht + 2 - hw->hss);
  1301. /* Lower margin includes vsync */
  1302. var->upper_margin = hw->vdb / 2 ;  /* round down to full lines */
  1303. var->lower_margin = (hw->vft+1 - hw->vde + 1) / 2; /* round up */
  1304. var->vsync_len    = (hw->vft+1 - hw->vss + 1) / 2; /* round up */
  1305. if (var->vmode & FB_VMODE_INTERLACED) {
  1306. var->upper_margin *= 2;
  1307. var->lower_margin *= 2;
  1308. var->vsync_len *= 2;
  1309. }
  1310. else if (var->vmode & FB_VMODE_DOUBLE) {
  1311. var->upper_margin = (var->upper_margin + 1) / 2;
  1312. var->lower_margin = (var->lower_margin + 1) / 2;
  1313. var->vsync_len = (var->vsync_len + 1) / 2;
  1314. }
  1315. var->pixclock *= plen;
  1316. var->left_margin /= plen;
  1317. var->right_margin /= plen;
  1318. var->hsync_len /= plen;
  1319. var->right_margin -= var->hsync_len;
  1320. var->lower_margin -= var->vsync_len;
  1321. if (screen_base)
  1322. var->yoffset=(par->screen_base - screen_base)/linelen;
  1323. else
  1324. var->yoffset=0;
  1325. var->nonstd=0; /* what is this for? */
  1326. var->activate=0;
  1327. return 0;
  1328. }
  1329. static int f_change_mode = 0;
  1330. static struct falcon_hw f_new_mode;
  1331. static int f_pan_display = 0;
  1332. static void falcon_get_par( struct atafb_par *par )
  1333. {
  1334. unsigned long addr;
  1335. struct falcon_hw *hw = &par->hw.falcon;
  1336. hw->line_width = shifter_f030.scn_width;
  1337. hw->line_offset = shifter_f030.off_next;
  1338. hw->st_shift = videl.st_shift & 0x300;
  1339. hw->f_shift = videl.f_shift;
  1340. hw->vid_control = videl.control;
  1341. hw->vid_mode = videl.mode;
  1342. hw->sync = shifter.syncmode & 0x1;
  1343. hw->xoffset = videl.xoffset & 0xf;
  1344. hw->hht = videl.hht;
  1345. hw->hbb = videl.hbb;
  1346. hw->hbe = videl.hbe;
  1347. hw->hdb = videl.hdb;
  1348. hw->hde = videl.hde;
  1349. hw->hss = videl.hss;
  1350. hw->vft = videl.vft;
  1351. hw->vbb = videl.vbb;
  1352. hw->vbe = videl.vbe;
  1353. hw->vdb = videl.vdb;
  1354. hw->vde = videl.vde;
  1355. hw->vss = videl.vss;
  1356. addr = (shifter.bas_hi & 0xff) << 16 |
  1357.        (shifter.bas_md & 0xff) << 8  |
  1358.        (shifter.bas_lo & 0xff);
  1359. par->screen_base = phys_to_virt(addr);
  1360. /* derived parameters */
  1361. hw->ste_mode = (hw->f_shift & 0x510)==0 && hw->st_shift==0x100;
  1362. hw->mono = (hw->f_shift & 0x400) ||
  1363.            ((hw->f_shift & 0x510)==0 && hw->st_shift==0x200);
  1364. }
  1365. static void falcon_set_par( struct atafb_par *par )
  1366. {
  1367. f_change_mode = 0;
  1368. /* only set screen_base if really necessary */
  1369. if (current_par.screen_base != par->screen_base)
  1370. fbhw->set_screen_base(par->screen_base);
  1371. /* Don't touch any other registers if we keep the default resolution */
  1372. if (DontCalcRes)
  1373. return;
  1374. /* Tell vbl-handler to change video mode.
  1375.  * We change modes only on next VBL, to avoid desynchronisation
  1376.  * (a shift to the right and wrap around by a random number of pixels
  1377.  * in all monochrome modes).
  1378.  * This seems to work on my Falcon.
  1379.  */
  1380. f_new_mode = par->hw.falcon;
  1381. f_change_mode = 1;
  1382. }
  1383. static void falcon_vbl_switcher( int irq, void *dummy, struct pt_regs *fp )
  1384. {
  1385. struct falcon_hw *hw = &f_new_mode;
  1386. if (f_change_mode) {
  1387. f_change_mode = 0;
  1388. if (hw->sync & 0x1) {
  1389. /* Enable external pixelclock. This code only for ScreenWonder */
  1390. *(volatile unsigned short*)0xffff9202 = 0xffbf;
  1391. }
  1392. else {
  1393. /* Turn off external clocks. Read sets all output bits to 1. */
  1394. *(volatile unsigned short*)0xffff9202;
  1395. }
  1396. shifter.syncmode = hw->sync;
  1397. videl.hht = hw->hht;
  1398. videl.hbb = hw->hbb;
  1399. videl.hbe = hw->hbe;
  1400. videl.hdb = hw->hdb;
  1401. videl.hde = hw->hde;
  1402. videl.hss = hw->hss;
  1403. videl.vft = hw->vft;
  1404. videl.vbb = hw->vbb;
  1405. videl.vbe = hw->vbe;
  1406. videl.vdb = hw->vdb;
  1407. videl.vde = hw->vde;
  1408. videl.vss = hw->vss;
  1409. videl.f_shift = 0; /* write enables Falcon palette, 0: 4 planes */
  1410. if (hw->ste_mode) {
  1411. videl.st_shift = hw->st_shift; /* write enables STE palette */
  1412. }
  1413. else {
  1414. /* IMPORTANT:
  1415.  * set st_shift 0, so we can tell the screen-depth if f_shift==0.
  1416.  * Writing 0 to f_shift enables 4 plane Falcon mode but
  1417.  * doesn't set st_shift. st_shift!=0 (!=4planes) is impossible
  1418.  * with Falcon palette.
  1419.  */
  1420. videl.st_shift = 0;
  1421. /* now back to Falcon palette mode */
  1422. videl.f_shift = hw->f_shift;
  1423. }
  1424. /* writing to st_shift changed scn_width and vid_mode */
  1425. videl.xoffset = hw->xoffset;
  1426. shifter_f030.scn_width = hw->line_width;
  1427. shifter_f030.off_next = hw->line_offset;
  1428. videl.control = hw->vid_control;
  1429. videl.mode = hw->vid_mode;
  1430. }
  1431. if (f_pan_display) {
  1432. f_pan_display = 0;
  1433. videl.xoffset = current_par.hw.falcon.xoffset;
  1434. shifter_f030.off_next = current_par.hw.falcon.line_offset;
  1435. }
  1436. }
  1437. static int falcon_pan_display( struct fb_var_screeninfo *var,
  1438.    struct atafb_par *par )
  1439. {
  1440. int xoffset;
  1441. int bpp = fb_display[currcon].var.bits_per_pixel;
  1442. if (bpp == 1)
  1443. var->xoffset = up(var->xoffset, 32);
  1444. if (bpp != 16)
  1445. par->hw.falcon.xoffset = var->xoffset & 15;
  1446. else {
  1447. par->hw.falcon.xoffset = 0;
  1448. var->xoffset = up(var->xoffset, 2);
  1449. }
  1450. par->hw.falcon.line_offset = bpp *
  1451.         (fb_display[currcon].var.xres_virtual - fb_display[currcon].var.xres) / 16;
  1452. if (par->hw.falcon.xoffset)
  1453. par->hw.falcon.line_offset -= bpp;
  1454. xoffset = var->xoffset - par->hw.falcon.xoffset;
  1455. par->screen_base = screen_base +
  1456.         (var->yoffset * fb_display[currcon].var.xres_virtual + xoffset) * bpp / 8;
  1457. if (fbhw->set_screen_base)
  1458. fbhw->set_screen_base (par->screen_base);
  1459. else
  1460. return -EINVAL; /* shouldn't happen */
  1461. f_pan_display = 1;
  1462. return 0;
  1463. }
  1464. static int falcon_getcolreg( unsigned regno, unsigned *red,
  1465.  unsigned *green, unsigned *blue,
  1466.  unsigned *transp, struct fb_info *info )
  1467. { unsigned long col;
  1468. if (regno > 255)
  1469. return 1;
  1470. /* This works in STE-mode (with 4bit/color) since f030_col-registers
  1471.  * hold up to 6bit/color.
  1472.  * Even with hicolor r/g/b=5/6/5 bit!
  1473.  */
  1474. col = f030_col[regno];
  1475. *red = (col >> 16) & 0xff00;
  1476. *green = (col >> 8) & 0xff00;
  1477. *blue = (col << 8) & 0xff00;
  1478. *transp = 0;
  1479. return 0;
  1480. }
  1481. static int falcon_setcolreg( unsigned regno, unsigned red,
  1482.  unsigned green, unsigned blue,
  1483.  unsigned transp, struct fb_info *info )
  1484. {
  1485. if (regno > 255)
  1486. return 1;
  1487. f030_col[regno] = (((red & 0xfc00) << 16) |
  1488.    ((green & 0xfc00) << 8) |
  1489.    ((blue & 0xfc00) >> 8));
  1490. if (regno < 16) {
  1491. shifter_tt.color_reg[regno] =
  1492. (((red & 0xe000) >> 13) | ((red & 0x1000) >> 12) << 8) |
  1493. (((green & 0xe000) >> 13) | ((green & 0x1000) >> 12) << 4) |
  1494. ((blue & 0xe000) >> 13) | ((blue & 0x1000) >> 12);
  1495. #ifdef FBCON_HAS_CFB16
  1496. fbcon_cfb16_cmap[regno] = ((red & 0xf800) |
  1497.    ((green & 0xfc00) >> 5) |
  1498.    ((blue & 0xf800) >> 11));
  1499. #endif
  1500. }
  1501. return 0;
  1502. }
  1503. static int falcon_blank( int blank_mode )
  1504. {
  1505. /* ++guenther: we can switch off graphics by changing VDB and VDE,
  1506.  * so VIDEL doesn't hog the bus while saving.
  1507.  * (this may affect usleep()).
  1508.  */
  1509. int vdb, vss, hbe, hss;
  1510. if (mon_type == F_MON_SM) /* this doesn't work on SM124 */
  1511. return 1;
  1512. vdb = current_par.VDB;
  1513. vss = current_par.VSS;
  1514. hbe = current_par.HBE;
  1515. hss = current_par.HSS;
  1516. if (blank_mode >= 1) {
  1517. /* disable graphics output (this speeds up the CPU) ... */
  1518. vdb = current_par.VFT + 1;
  1519. /* ... and blank all lines */
  1520. hbe = current_par.HHT + 2;
  1521. }
  1522. /* use VESA suspend modes on VGA monitors */
  1523. if (mon_type == F_MON_VGA) {
  1524. if (blank_mode == 2 || blank_mode == 4)
  1525. vss = current_par.VFT + 1;
  1526. if (blank_mode == 3 || blank_mode == 4)
  1527. hss = current_par.HHT + 2;
  1528. }
  1529. videl.vdb = vdb;
  1530. videl.vss = vss;
  1531. videl.hbe = hbe;
  1532. videl.hss = hss;
  1533. return 0;
  1534. }
  1535.  
  1536. static int falcon_detect( void )
  1537. {
  1538. struct atafb_par par;
  1539. unsigned char fhw;
  1540. /* Determine connected monitor and set monitor parameters */
  1541. fhw = *(unsigned char*)0xffff8006;
  1542. mon_type = fhw >> 6 & 0x3;
  1543. /* bit 1 of fhw: 1=32 bit ram bus, 0=16 bit */
  1544. f030_bus_width = fhw << 6 & 0x80;
  1545. switch (mon_type) {
  1546. case F_MON_SM:
  1547. fb_info.monspecs.vfmin = 70;
  1548. fb_info.monspecs.vfmax = 72;
  1549. fb_info.monspecs.hfmin = 35713;
  1550. fb_info.monspecs.hfmax = 35715;
  1551. break;
  1552. case F_MON_SC:
  1553. case F_MON_TV:
  1554. /* PAL...NTSC */
  1555. fb_info.monspecs.vfmin = 49; /* not 50, since TOS defaults to 49.9x Hz */
  1556. fb_info.monspecs.vfmax = 60;
  1557. fb_info.monspecs.hfmin = 15620;
  1558. fb_info.monspecs.hfmax = 15755;
  1559. break;
  1560. }
  1561. /* initialize hsync-len */
  1562. f25.hsync = h_syncs[mon_type] / f25.t;
  1563. f32.hsync = h_syncs[mon_type] / f32.t;
  1564. if (fext.t)
  1565. fext.hsync = h_syncs[mon_type] / fext.t;
  1566. falcon_get_par(&par);
  1567. falcon_encode_var(&atafb_predefined[0], &par);
  1568. /* Detected mode is always the "autodetect" slot */
  1569. return 1;
  1570. }
  1571. #endif /* ATAFB_FALCON */
  1572. /* ------------------- ST(E) specific functions ---------------------- */
  1573. #ifdef ATAFB_STE
  1574. static int stste_encode_fix( struct fb_fix_screeninfo *fix,
  1575.  struct atafb_par *par )
  1576. {
  1577. int mode;
  1578. strcpy(fix->id,"Atari Builtin");
  1579. fix->smem_start = (unsigned long)real_screen_base;
  1580. fix->smem_len = screen_len;
  1581. fix->type = FB_TYPE_INTERLEAVED_PLANES;
  1582. fix->type_aux = 2;
  1583. fix->visual = FB_VISUAL_PSEUDOCOLOR;
  1584. mode = par->hw.st.mode & 3;
  1585. if (mode == ST_HIGH) {
  1586. fix->type = FB_TYPE_PACKED_PIXELS;
  1587. fix->type_aux = 0;
  1588. fix->visual = FB_VISUAL_MONO10;
  1589. }
  1590. if (ATARIHW_PRESENT(EXTD_SHIFTER)) {
  1591. fix->xpanstep = 16;
  1592. fix->ypanstep = 1;
  1593. } else {
  1594. fix->xpanstep = 0;
  1595. fix->ypanstep = 0;
  1596. }
  1597. fix->ywrapstep = 0;
  1598. fix->line_length = 0;
  1599. fix->accel = FB_ACCEL_ATARIBLITT;
  1600. return 0;
  1601. }
  1602. static int stste_decode_var( struct fb_var_screeninfo *var,
  1603.   struct atafb_par *par )
  1604. {
  1605. int xres=var->xres;
  1606. int yres=var->yres;
  1607. int bpp=var->bits_per_pixel;
  1608. int linelen;
  1609. int yres_virtual = var->yres_virtual;
  1610. if (mono_moni) {
  1611. if (bpp > 1 || xres > sttt_xres || yres > st_yres)
  1612. return -EINVAL;
  1613. par->hw.st.mode=ST_HIGH;
  1614. xres=sttt_xres;
  1615. yres=st_yres;
  1616. bpp=1;
  1617. } else {
  1618. if (bpp > 4 || xres > sttt_xres || yres > st_yres)
  1619. return -EINVAL;
  1620. if (bpp > 2) {
  1621. if (xres > sttt_xres/2 || yres > st_yres/2)
  1622. return -EINVAL;
  1623. par->hw.st.mode=ST_LOW;
  1624. xres=sttt_xres/2;
  1625. yres=st_yres/2;
  1626. bpp=4;
  1627. }
  1628. else if (bpp > 1) {
  1629. if (xres > sttt_xres || yres > st_yres/2)
  1630. return -EINVAL;
  1631. par->hw.st.mode=ST_MID;
  1632. xres=sttt_xres;
  1633. yres=st_yres/2;
  1634. bpp=2;
  1635. }
  1636. else
  1637. return -EINVAL;
  1638. }
  1639. if (yres_virtual <= 0)
  1640. yres_virtual = 0;
  1641. else if (yres_virtual < yres)
  1642. yres_virtual = yres;
  1643. if (var->sync & FB_SYNC_EXT)
  1644. par->hw.st.sync=(par->hw.st.sync & ~1) | 1;
  1645. else
  1646. par->hw.st.sync=(par->hw.st.sync & ~1);
  1647. linelen=xres*bpp/8;
  1648. if (yres_virtual * linelen > screen_len && screen_len)
  1649. return -EINVAL;
  1650. if (yres * linelen > screen_len && screen_len)
  1651. return -EINVAL;
  1652. if (var->yoffset + yres > yres_virtual && yres_virtual)
  1653. return -EINVAL;
  1654. par->yres_virtual = yres_virtual;
  1655. par->screen_base=screen_base+ var->yoffset*linelen;
  1656. return 0;
  1657. }
  1658. static int stste_encode_var( struct fb_var_screeninfo *var,
  1659.   struct atafb_par *par )
  1660. {
  1661. int linelen;
  1662. memset(var, 0, sizeof(struct fb_var_screeninfo));
  1663. var->red.offset=0;
  1664. var->red.length = ATARIHW_PRESENT(EXTD_SHIFTER) ? 4 : 3;
  1665. var->red.msb_right=0;
  1666. var->grayscale=0;
  1667. var->pixclock=31041;
  1668. var->left_margin=120; /* these are incorrect */
  1669. var->right_margin=100;
  1670. var->upper_margin=8;
  1671. var->lower_margin=16;
  1672. var->hsync_len=140;
  1673. var->vsync_len=30;
  1674. var->height=-1;
  1675. var->width=-1;
  1676. if (!(par->hw.st.sync & 1))
  1677. var->sync=0;
  1678. else
  1679. var->sync=FB_SYNC_EXT;
  1680. switch (par->hw.st.mode & 3) {
  1681. case ST_LOW:
  1682. var->xres=sttt_xres/2;
  1683. var->yres=st_yres/2;
  1684. var->bits_per_pixel=4;
  1685. break;
  1686. case ST_MID:
  1687. var->xres=sttt_xres;
  1688. var->yres=st_yres/2;
  1689. var->bits_per_pixel=2;
  1690. break;
  1691. case ST_HIGH:
  1692. var->xres=sttt_xres;
  1693. var->yres=st_yres;
  1694. var->bits_per_pixel=1;
  1695. break;
  1696. }
  1697. var->blue=var->green=var->red;
  1698. var->transp.offset=0;
  1699. var->transp.length=0;
  1700. var->transp.msb_right=0;
  1701. var->xres_virtual=sttt_xres_virtual;
  1702. linelen=var->xres_virtual * var->bits_per_pixel / 8;
  1703. ovsc_addlen=linelen*(sttt_yres_virtual - st_yres);
  1704. if (! use_hwscroll)
  1705. var->yres_virtual=var->yres;
  1706. else if (screen_len) {
  1707. if (par->yres_virtual)
  1708. var->yres_virtual = par->yres_virtual;
  1709. else
  1710. /* yres_virtual==0 means use maximum */
  1711. var->yres_virtual = screen_len / linelen;
  1712. }
  1713. else {
  1714. if (hwscroll < 0)
  1715. var->yres_virtual = 2 * var->yres;
  1716. else
  1717. var->yres_virtual=var->yres+hwscroll * 16;
  1718. }
  1719. var->xoffset=0;
  1720. if (screen_base)
  1721. var->yoffset=(par->screen_base - screen_base)/linelen;
  1722. else
  1723. var->yoffset=0;
  1724. var->nonstd=0;
  1725. var->activate=0;
  1726. var->vmode=FB_VMODE_NONINTERLACED;
  1727. return 0;
  1728. }
  1729. static void stste_get_par( struct atafb_par *par )
  1730. {
  1731. unsigned long addr;
  1732. par->hw.st.mode=shifter_tt.st_shiftmode;
  1733. par->hw.st.sync=shifter.syncmode;
  1734. addr = ((shifter.bas_hi & 0xff) << 16) |
  1735.        ((shifter.bas_md & 0xff) << 8);
  1736. if (ATARIHW_PRESENT(EXTD_SHIFTER))
  1737. addr |= (shifter.bas_lo & 0xff);
  1738. par->screen_base = phys_to_virt(addr);
  1739. }
  1740. static void stste_set_par( struct atafb_par *par )
  1741. {
  1742. shifter_tt.st_shiftmode=par->hw.st.mode;
  1743. shifter.syncmode=par->hw.st.sync;
  1744. /* only set screen_base if really necessary */
  1745. if (current_par.screen_base != par->screen_base)
  1746. fbhw->set_screen_base(par->screen_base);
  1747. }
  1748. static int stste_getcolreg(unsigned regno, unsigned *red,
  1749.    unsigned *green, unsigned *blue,
  1750.    unsigned *transp, struct fb_info *info)
  1751. {
  1752. unsigned col, t;
  1753. if (regno > 15)
  1754. return 1;
  1755. col = shifter_tt.color_reg[regno];
  1756. if (ATARIHW_PRESENT(EXTD_SHIFTER)) {
  1757. t = ((col >> 7) & 0xe) | ((col >> 11) & 1);
  1758. t |= t << 4;
  1759. *red = t | (t << 8);
  1760. t = ((col >> 3) & 0xe) | ((col >> 7) & 1);
  1761. t |= t << 4;
  1762. *green = t | (t << 8);
  1763. t = ((col << 1) & 0xe) | ((col >> 3) & 1);
  1764. t |= t << 4;
  1765. *blue = t | (t << 8);
  1766. }
  1767. else {
  1768. t = (col >> 7) & 0xe;
  1769. t |= t << 4;
  1770. *red = t | (t << 8);
  1771. t = (col >> 3) & 0xe;
  1772. t |= t << 4;
  1773. *green = t | (t << 8);
  1774. t = (col << 1) & 0xe;
  1775. t |= t << 4;
  1776. *blue = t | (t << 8);
  1777. }
  1778. *transp = 0;
  1779. return 0;
  1780. }
  1781. static int stste_setcolreg(unsigned regno, unsigned red,
  1782.    unsigned green, unsigned blue,
  1783.    unsigned transp, struct fb_info *info)
  1784. {
  1785. if (regno > 15)
  1786. return 1;
  1787. red >>= 12;
  1788. blue >>= 12;
  1789. green >>= 12;
  1790. if (ATARIHW_PRESENT(EXTD_SHIFTER))
  1791. shifter_tt.color_reg[regno] =
  1792. (((red & 0xe) >> 1) | ((red & 1) << 3) << 8) |
  1793. (((green & 0xe) >> 1) | ((green & 1) << 3) << 4) |
  1794. ((blue & 0xe) >> 1) | ((blue & 1) << 3);
  1795. else
  1796. shifter_tt.color_reg[regno] =
  1797. ((red & 0xe) << 7) |
  1798. ((green & 0xe) << 3) |
  1799. ((blue & 0xe) >> 1);
  1800. return 0;
  1801. }
  1802.   
  1803. static int stste_detect( void )
  1804. { struct atafb_par par;
  1805. /* Determine the connected monitor: The DMA sound must be
  1806.  * disabled before reading the MFP GPIP, because the Sound
  1807.  * Done Signal and the Monochrome Detect are XORed together!
  1808.  */
  1809. if (ATARIHW_PRESENT(PCM_8BIT)) {
  1810. tt_dmasnd.ctrl = DMASND_CTRL_OFF;
  1811. udelay(20); /* wait a while for things to settle down */
  1812. }
  1813. mono_moni = (mfp.par_dt_reg & 0x80) == 0;
  1814. stste_get_par(&par);
  1815. stste_encode_var(&atafb_predefined[0], &par);
  1816. if (!ATARIHW_PRESENT(EXTD_SHIFTER))
  1817. use_hwscroll = 0;
  1818. return 1;
  1819. }
  1820. static void stste_set_screen_base(void *s_base)
  1821. {
  1822. unsigned long addr;
  1823. addr= virt_to_phys(s_base);
  1824. /* Setup Screen Memory */
  1825. shifter.bas_hi=(unsigned char) ((addr & 0xff0000) >> 16);
  1826.    shifter.bas_md=(unsigned char) ((addr & 0x00ff00) >> 8);
  1827. if (ATARIHW_PRESENT(EXTD_SHIFTER))
  1828. shifter.bas_lo=(unsigned char)  (addr & 0x0000ff);
  1829. }
  1830. #endif /* ATAFB_STE */
  1831. /* Switching the screen size should be done during vsync, otherwise
  1832.  * the margins may get messed up. This is a well known problem of
  1833.  * the ST's video system.
  1834.  *
  1835.  * Unfortunately there is hardly any way to find the vsync, as the
  1836.  * vertical blank interrupt is no longer in time on machines with
  1837.  * overscan type modifications.
  1838.  *
  1839.  * We can, however, use Timer B to safely detect the black shoulder,
  1840.  * but then we've got to guess an appropriate delay to find the vsync.
  1841.  * This might not work on every machine.
  1842.  *
  1843.  * martin_rogge @ ki.maus.de, 8th Aug 1995
  1844.  */
  1845. #define LINE_DELAY  (mono_moni ? 30 : 70)
  1846. #define SYNC_DELAY  (mono_moni ? 1500 : 2000)
  1847. /* SWITCH_ACIA may be used for Falcon (ScreenBlaster III internal!) */
  1848. static void st_ovsc_switch(void)
  1849. {
  1850.     unsigned long flags;
  1851.     register unsigned char old, new;
  1852.     if (!(atari_switches & ATARI_SWITCH_OVSC_MASK))
  1853. return;
  1854.     save_flags(flags);
  1855.     cli();
  1856.     mfp.tim_ct_b = 0x10;
  1857.     mfp.active_edge |= 8;
  1858.     mfp.tim_ct_b = 0;
  1859.     mfp.tim_dt_b = 0xf0;
  1860.     mfp.tim_ct_b = 8;
  1861.     while (mfp.tim_dt_b > 1) /* TOS does it this way, don't ask why */
  1862. ;
  1863.     new = mfp.tim_dt_b;
  1864.     do {
  1865. udelay(LINE_DELAY);
  1866. old = new;
  1867. new = mfp.tim_dt_b;
  1868.     } while (old != new);
  1869.     mfp.tim_ct_b = 0x10;
  1870.     udelay(SYNC_DELAY);
  1871.     if (atari_switches & ATARI_SWITCH_OVSC_IKBD)
  1872. acia.key_ctrl = ACIA_DIV64 | ACIA_D8N1S | ACIA_RHTID | ACIA_RIE;
  1873.     if (atari_switches & ATARI_SWITCH_OVSC_MIDI)
  1874. acia.mid_ctrl = ACIA_DIV16 | ACIA_D8N1S | ACIA_RHTID;
  1875.     if (atari_switches & (ATARI_SWITCH_OVSC_SND6|ATARI_SWITCH_OVSC_SND7)) {
  1876. sound_ym.rd_data_reg_sel = 14;
  1877. sound_ym.wd_data = sound_ym.rd_data_reg_sel |
  1878.    ((atari_switches&ATARI_SWITCH_OVSC_SND6) ? 0x40:0) |
  1879.    ((atari_switches&ATARI_SWITCH_OVSC_SND7) ? 0x80:0);
  1880.     }
  1881.     restore_flags(flags);
  1882. }
  1883. /* ------------------- External Video ---------------------- */
  1884. #ifdef ATAFB_EXT
  1885. static int ext_encode_fix( struct fb_fix_screeninfo *fix,
  1886.    struct atafb_par *par )
  1887. {
  1888. strcpy(fix->id,"Unknown Extern");
  1889. fix->smem_start = (unsigned long)external_addr;
  1890. fix->smem_len = PAGE_ALIGN(external_len);
  1891. if (external_depth == 1) {
  1892. fix->type = FB_TYPE_PACKED_PIXELS;
  1893. /* The letters 'n' and 'i' in the "atavideo=external:" stand
  1894.  * for "normal" and "inverted", rsp., in the monochrome case */
  1895. fix->visual =
  1896. (external_pmode == FB_TYPE_INTERLEAVED_PLANES ||
  1897.  external_pmode == FB_TYPE_PACKED_PIXELS) ?
  1898. FB_VISUAL_MONO10 :
  1899. FB_VISUAL_MONO01;
  1900. }
  1901. else {
  1902. /* Use STATIC if we don't know how to access color registers */
  1903. int visual = external_vgaiobase ?
  1904.  FB_VISUAL_PSEUDOCOLOR :
  1905.  FB_VISUAL_STATIC_PSEUDOCOLOR;
  1906. switch (external_pmode) {
  1907.     case -1:              /* truecolor */
  1908. fix->type=FB_TYPE_PACKED_PIXELS;
  1909. fix->visual=FB_VISUAL_TRUECOLOR;
  1910. break;
  1911.     case FB_TYPE_PACKED_PIXELS:
  1912. fix->type=FB_TYPE_PACKED_PIXELS;
  1913. fix->visual=visual;
  1914. break;
  1915.     case FB_TYPE_PLANES:
  1916. fix->type=FB_TYPE_PLANES;
  1917. fix->visual=visual;
  1918. break;
  1919.     case FB_TYPE_INTERLEAVED_PLANES:
  1920. fix->type=FB_TYPE_INTERLEAVED_PLANES;
  1921. fix->type_aux=2;
  1922. fix->visual=visual;
  1923. break;
  1924. }
  1925. }
  1926. fix->xpanstep = 0;
  1927. fix->ypanstep = 0;
  1928. fix->ywrapstep = 0;
  1929. fix->line_length = 0;
  1930. return 0;
  1931. }
  1932. static int ext_decode_var( struct fb_var_screeninfo *var,
  1933.    struct atafb_par *par )
  1934. {
  1935. struct fb_var_screeninfo *myvar = &atafb_predefined[0];
  1936. if (var->bits_per_pixel > myvar->bits_per_pixel ||
  1937. var->xres > myvar->xres ||
  1938. var->xres_virtual > myvar->xres_virtual ||
  1939. var->yres > myvar->yres ||
  1940. var->xoffset > 0 ||
  1941. var->yoffset > 0)
  1942. return -EINVAL;
  1943. return 0;
  1944. }
  1945. static int ext_encode_var( struct fb_var_screeninfo *var,
  1946.    struct atafb_par *par )
  1947. {
  1948. memset(var, 0, sizeof(struct fb_var_screeninfo));
  1949. var->red.offset=0;
  1950. var->red.length=(external_pmode == -1) ? external_depth/3 : 
  1951. (external_vgaiobase ? external_bitspercol : 0);
  1952. var->red.msb_right=0;
  1953. var->grayscale=0;
  1954. var->pixclock=31041;
  1955. var->left_margin=120; /* these are surely incorrect  */
  1956. var->right_margin=100;
  1957. var->upper_margin=8;
  1958. var->lower_margin=16;
  1959. var->hsync_len=140;
  1960. var->vsync_len=30;
  1961. var->height=-1;
  1962. var->width=-1;
  1963. var->sync=0;
  1964. var->xres = external_xres;
  1965. var->yres = external_yres;
  1966. var->xres_virtual = external_xres_virtual;
  1967. var->bits_per_pixel = external_depth;
  1968. var->blue=var->green=var->red;
  1969. var->transp.offset=0;
  1970. var->transp.length=0;
  1971. var->transp.msb_right=0;
  1972. var->yres_virtual=var->yres;
  1973. var->xoffset=0;
  1974. var->yoffset=0;
  1975. var->nonstd=0;
  1976. var->activate=0;
  1977. var->vmode=FB_VMODE_NONINTERLACED;
  1978. return 0;
  1979. }
  1980. static void ext_get_par( struct atafb_par *par )
  1981. {
  1982. par->screen_base = external_addr;
  1983. }
  1984. static void ext_set_par( struct atafb_par *par )
  1985. {
  1986. }
  1987. #define OUTB(port,val) 
  1988. *((unsigned volatile char *) ((port)+external_vgaiobase))=(val)
  1989. #define INB(port) 
  1990. (*((unsigned volatile char *) ((port)+external_vgaiobase)))
  1991. #define DACDelay 
  1992. do {
  1993. unsigned char tmp=INB(0x3da);
  1994. tmp=INB(0x3da);
  1995. } while (0)
  1996. static int ext_getcolreg( unsigned regno, unsigned *red,
  1997.   unsigned *green, unsigned *blue,
  1998.   unsigned *transp, struct fb_info *info )
  1999. {
  2000. if (! external_vgaiobase)
  2001. return 1;
  2002.     *red   = ext_color[regno].red;
  2003.     *green = ext_color[regno].green;
  2004.     *blue  = ext_color[regno].blue;
  2005.     *transp=0;
  2006.     return 0;
  2007. }
  2008. static int ext_setcolreg( unsigned regno, unsigned red,
  2009.   unsigned green, unsigned blue,
  2010.   unsigned transp, struct fb_info *info )
  2011. { unsigned char colmask = (1 << external_bitspercol) - 1;
  2012. if (! external_vgaiobase)
  2013. return 1;
  2014. ext_color[regno].red = red;
  2015. ext_color[regno].green = green;
  2016. ext_color[regno].blue = blue;
  2017. switch (external_card_type) {
  2018.   case IS_VGA:
  2019.     OUTB(0x3c8, regno);
  2020.     DACDelay;
  2021.     OUTB(0x3c9, red & colmask);
  2022.     DACDelay;
  2023.     OUTB(0x3c9, green & colmask);
  2024.     DACDelay;
  2025.     OUTB(0x3c9, blue & colmask);
  2026.     DACDelay;
  2027.     return 0;
  2028.   case IS_MV300:
  2029.     OUTB((MV300_reg[regno] << 2)+1, red);
  2030.     OUTB((MV300_reg[regno] << 2)+1, green);
  2031.     OUTB((MV300_reg[regno] << 2)+1, blue);
  2032.     return 0;
  2033.   default:
  2034.     return 1;
  2035.   }
  2036. }
  2037. static int ext_detect( void )
  2038. {
  2039. struct fb_var_screeninfo *myvar = &atafb_predefined[0];
  2040. struct atafb_par dummy_par;
  2041. myvar->xres = external_xres;
  2042. myvar->xres_virtual = external_xres_virtual;
  2043. myvar->yres = external_yres;
  2044. myvar->bits_per_pixel = external_depth;
  2045. ext_encode_var(myvar, &dummy_par);
  2046. return 1;
  2047. }
  2048. #endif /* ATAFB_EXT */
  2049. /* ------ This is the same for most hardware types -------- */
  2050. static void set_screen_base(void *s_base)
  2051. {
  2052. unsigned long addr;
  2053. addr= virt_to_phys(s_base);
  2054. /* Setup Screen Memory */
  2055. shifter.bas_hi=(unsigned char) ((addr & 0xff0000) >> 16);
  2056.    shifter.bas_md=(unsigned char) ((addr & 0x00ff00) >> 8);
  2057.    shifter.bas_lo=(unsigned char)  (addr & 0x0000ff);
  2058. }
  2059. static int pan_display( struct fb_var_screeninfo *var,
  2060.                         struct atafb_par *par )
  2061. {
  2062. if (!fbhw->set_screen_base ||
  2063. (!ATARIHW_PRESENT(EXTD_SHIFTER) && var->xoffset))
  2064. return -EINVAL;
  2065. var->xoffset = up(var->xoffset, 16);
  2066. par->screen_base = screen_base +
  2067.         (var->yoffset * fb_display[currcon].var.xres_virtual + var->xoffset)
  2068.         * fb_display[currcon].var.bits_per_pixel / 8;
  2069. fbhw->set_screen_base (par->screen_base);
  2070. return 0;
  2071. }
  2072. /* ------------ Interfaces to hardware functions ------------ */
  2073. #ifdef ATAFB_TT
  2074. static struct fb_hwswitch tt_switch = {
  2075. tt_detect, tt_encode_fix, tt_decode_var, tt_encode_var,
  2076. tt_get_par, tt_set_par, tt_getcolreg, tt_setcolreg,
  2077. set_screen_base, NULL, pan_display
  2078. };
  2079. #endif
  2080. #ifdef ATAFB_FALCON
  2081. static struct fb_hwswitch falcon_switch = {
  2082. falcon_detect, falcon_encode_fix, falcon_decode_var, falcon_encode_var,
  2083. falcon_get_par, falcon_set_par, falcon_getcolreg,
  2084. falcon_setcolreg, set_screen_base, falcon_blank, falcon_pan_display
  2085. };
  2086. #endif
  2087. #ifdef ATAFB_STE
  2088. static struct fb_hwswitch st_switch = {
  2089. stste_detect, stste_encode_fix, stste_decode_var, stste_encode_var,
  2090. stste_get_par, stste_set_par, stste_getcolreg, stste_setcolreg,
  2091. stste_set_screen_base, NULL, pan_display
  2092. };
  2093. #endif
  2094. #ifdef ATAFB_EXT
  2095. static struct fb_hwswitch ext_switch = {
  2096. ext_detect, ext_encode_fix, ext_decode_var, ext_encode_var,
  2097. ext_get_par, ext_set_par, ext_getcolreg, ext_setcolreg, NULL, NULL, NULL
  2098. };
  2099. #endif
  2100. static void atafb_get_par( struct atafb_par *par )
  2101. {
  2102. if (current_par_valid) {
  2103. *par=current_par;
  2104. }
  2105. else
  2106. fbhw->get_par(par);
  2107. }
  2108. static void atafb_set_par( struct atafb_par *par )
  2109. {
  2110. fbhw->set_par(par);
  2111. current_par=*par;
  2112. current_par_valid=1;
  2113. }
  2114. /* =========================================================== */
  2115. /* ============== Hardware Independent Functions ============= */
  2116. /* =========================================================== */
  2117. /* used for hardware scrolling */
  2118. static int
  2119. fb_update_var(int con, struct fb_info *info)
  2120. {
  2121. int off=fb_display[con].var.yoffset*fb_display[con].var.xres_virtual*
  2122. fb_display[con].var.bits_per_pixel>>3;
  2123. current_par.screen_base=screen_base + off;
  2124. if (fbhw->set_screen_base)
  2125. fbhw->set_screen_base(current_par.screen_base);
  2126. return 0;
  2127. }
  2128. static int
  2129. do_fb_set_var(struct fb_var_screeninfo *var, int isactive)
  2130. {
  2131. int err,activate;
  2132. struct atafb_par par;
  2133. if ((err=fbhw->decode_var(var, &par)))
  2134. return err;
  2135. activate=var->activate;
  2136. if (((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) && isactive)
  2137. atafb_set_par(&par);
  2138. fbhw->encode_var(var, &par);
  2139. var->activate=activate;
  2140. return 0;
  2141. }
  2142. /* Functions for handling colormap */
  2143. static void
  2144. do_install_cmap(int con, struct fb_info *info)
  2145. {
  2146. if (con != currcon)
  2147. return;
  2148. if (fb_display[con].cmap.len)
  2149. fb_set_cmap(&fb_display[con].cmap, 1, fbhw->setcolreg, info);
  2150. else
  2151. fb_set_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel),
  2152.     1, fbhw->setcolreg, info);
  2153. }
  2154. static int
  2155. atafb_get_fix(struct fb_fix_screeninfo *fix, int con, struct fb_info *info)
  2156. {
  2157. struct atafb_par par;
  2158. if (con == -1)
  2159. atafb_get_par(&par);
  2160. else {
  2161.   int err;
  2162. if ((err=fbhw->decode_var(&fb_display[con].var,&par)))
  2163.   return err;
  2164. }
  2165. memset(fix, 0, sizeof(struct fb_fix_screeninfo));
  2166. return fbhw->encode_fix(fix, &par);
  2167. }
  2168. static int
  2169. atafb_get_var(struct fb_var_screeninfo *var, int con, struct fb_info *info)
  2170. {
  2171. struct atafb_par par;
  2172. if (con == -1) {
  2173. atafb_get_par(&par);
  2174. fbhw->encode_var(var, &par);
  2175. }
  2176. else
  2177. *var=fb_display[con].var;
  2178. return 0;
  2179. }
  2180. static void
  2181. atafb_set_disp(int con, struct fb_info *info)
  2182. {
  2183. struct fb_fix_screeninfo fix;
  2184. struct fb_var_screeninfo var;
  2185. struct display *display;
  2186. if (con >= 0)
  2187. display = &fb_display[con];
  2188. else
  2189. display = &disp; /* used during initialization */
  2190. atafb_get_fix(&fix, con, info);
  2191. atafb_get_var(&var, con, info);
  2192. if (con == -1)
  2193. con=0;
  2194. display->screen_base = (void *)fix.smem_start;
  2195. display->visual = fix.visual;
  2196. display->type = fix.type;
  2197. display->type_aux = fix.type_aux;
  2198. display->ypanstep = fix.ypanstep;
  2199. display->ywrapstep = fix.ywrapstep;
  2200. display->line_length = fix.line_length;
  2201. if (fix.visual != FB_VISUAL_PSEUDOCOLOR &&
  2202. fix.visual != FB_VISUAL_DIRECTCOLOR)
  2203. display->can_soft_blank = 0;
  2204. else
  2205. display->can_soft_blank = 1;
  2206. display->inverse =
  2207.     (fix.visual == FB_VISUAL_MONO01 ? !inverse : inverse);
  2208. switch (fix.type) {
  2209.     case FB_TYPE_INTERLEAVED_PLANES:
  2210. switch (var.bits_per_pixel) {
  2211. #ifdef FBCON_HAS_IPLAN2P2
  2212.     case 2:
  2213. display->dispsw = &fbcon_iplan2p2;
  2214. break;
  2215. #endif
  2216. #ifdef FBCON_HAS_IPLAN2P4
  2217.     case 4:
  2218. display->dispsw = &fbcon_iplan2p4;
  2219. break;
  2220. #endif
  2221. #ifdef FBCON_HAS_IPLAN2P8
  2222.     case 8:
  2223. display->dispsw = &fbcon_iplan2p8;
  2224. break;
  2225. #endif
  2226. }
  2227. break;
  2228.     case FB_TYPE_PACKED_PIXELS:
  2229. switch (var.bits_per_pixel) {
  2230. #ifdef FBCON_HAS_MFB
  2231.     case 1:
  2232. display->dispsw = &fbcon_mfb;
  2233. break;
  2234. #endif
  2235. #ifdef FBCON_HAS_CFB8
  2236.     case 8:
  2237. display->dispsw = &fbcon_cfb8;
  2238. break;
  2239. #endif
  2240. #ifdef FBCON_HAS_CFB16
  2241.     case 16:
  2242. display->dispsw = &fbcon_cfb16;
  2243. display->dispsw_data = fbcon_cfb16_cmap;
  2244. break;
  2245. #endif
  2246. }
  2247. break;
  2248. }
  2249. }
  2250. static int
  2251. atafb_set_var(struct fb_var_screeninfo *var, int con, struct fb_info *info)
  2252. {
  2253. int err,oldxres,oldyres,oldbpp,oldxres_virtual,
  2254.     oldyres_virtual,oldyoffset;
  2255. if ((err=do_fb_set_var(var, con==currcon)))
  2256. return err;
  2257. if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
  2258. oldxres=fb_display[con].var.xres;
  2259. oldyres=fb_display[con].var.yres;
  2260. oldxres_virtual=fb_display[con].var.xres_virtual;
  2261. oldyres_virtual=fb_display[con].var.yres_virtual;
  2262. oldbpp=fb_display[con].var.bits_per_pixel;
  2263. oldyoffset=fb_display[con].var.yoffset;
  2264. fb_display[con].var=*var;
  2265. if (oldxres != var->xres || oldyres != var->yres 
  2266.     || oldxres_virtual != var->xres_virtual
  2267.     || oldyres_virtual != var->yres_virtual
  2268.     || oldbpp != var->bits_per_pixel
  2269.     || oldyoffset != var->yoffset) {
  2270. atafb_set_disp(con, info);
  2271. (*fb_info.changevar)(con);
  2272. fb_alloc_cmap(&fb_display[con].cmap, 0, 0);
  2273. do_install_cmap(con, info);
  2274. }
  2275. }
  2276. var->activate=0;
  2277. return 0;
  2278. }
  2279. static int
  2280. atafb_get_cmap(struct fb_cmap *cmap, int kspc, int con, struct fb_info *info)
  2281. {
  2282. if (con == currcon) /* current console ? */
  2283. return fb_get_cmap(cmap, kspc, fbhw->getcolreg, info);
  2284. else
  2285. if (fb_display[con].cmap.len) /* non default colormap ? */
  2286. fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
  2287. else
  2288. fb_copy_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel),
  2289.      cmap, kspc ? 0 : 2);
  2290. return 0;
  2291. }
  2292. static int
  2293. atafb_set_cmap(struct fb_cmap *cmap, int kspc, int con, struct fb_info *info)
  2294. {
  2295. int err;
  2296. if (! fb_display[con].cmap.len) { /* no colormap allocated ? */
  2297. if ((err = fb_alloc_cmap(&fb_display[con].cmap,
  2298.  1 << fb_display[con].var.bits_per_pixel,
  2299.  0)))
  2300. return err;
  2301. }
  2302. if (con == currcon) /* current console ? */
  2303. return fb_set_cmap(cmap, kspc, fbhw->setcolreg, info);
  2304. else
  2305. fb_copy_cmap(cmap, &fb_display[con].cmap, kspc ? 0 : 1);
  2306. return 0;
  2307. }
  2308. static int
  2309. atafb_pan_display(struct fb_var_screeninfo *var, int con, struct fb_info *info)
  2310. {
  2311. int xoffset = var->xoffset;
  2312. int yoffset = var->yoffset;
  2313. int err;
  2314. if (   xoffset < 0 || xoffset + fb_display[con].var.xres > fb_display[con].var.xres_virtual
  2315.     || yoffset < 0 || yoffset + fb_display[con].var.yres > fb_display[con].var.yres_virtual)
  2316. return -EINVAL;
  2317. if (con == currcon) {
  2318. if (fbhw->pan_display) {
  2319. if ((err = fbhw->pan_display(var, &current_par)))
  2320. return err;
  2321. }
  2322. else
  2323. return -EINVAL;
  2324. }
  2325. fb_display[con].var.xoffset = var->xoffset;
  2326. fb_display[con].var.yoffset = var->yoffset;
  2327. return 0;
  2328. }
  2329. static int
  2330. atafb_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  2331.        unsigned long arg, int con, struct fb_info *info)
  2332. {
  2333. switch (cmd) {
  2334. #ifdef FBCMD_GET_CURRENTPAR
  2335. case FBCMD_GET_CURRENTPAR:
  2336. if (copy_to_user((void *)arg, (void *)&current_par,
  2337.  sizeof(struct atafb_par)))
  2338. return -EFAULT;
  2339. return 0;
  2340. #endif
  2341. #ifdef FBCMD_SET_CURRENTPAR
  2342. case FBCMD_SET_CURRENTPAR:
  2343. if (copy_from_user((void *)&current_par, (void *)arg,
  2344.    sizeof(struct atafb_par)))
  2345. return -EFAULT;
  2346. atafb_set_par(&current_par);
  2347. return 0;
  2348. #endif
  2349. }
  2350. return -EINVAL;
  2351. }
  2352. static struct fb_ops atafb_ops = {
  2353. owner: THIS_MODULE,
  2354. fb_get_fix: atafb_get_fix,
  2355. fb_get_var: atafb_get_var,
  2356. fb_set_var: atafb_set_var,
  2357. fb_get_cmap: atafb_get_cmap,
  2358. fb_set_cmap: atafb_set_cmap,
  2359. fb_pan_display: atafb_pan_display,
  2360. fb_ioctl: atafb_ioctl,
  2361. };
  2362. static void
  2363. check_default_par( int detected_mode )
  2364. {
  2365. char default_name[10];
  2366. int i;
  2367. struct fb_var_screeninfo var;
  2368. unsigned long min_mem;
  2369. /* First try the user supplied mode */
  2370. if (default_par) {
  2371. var=atafb_predefined[default_par-1];
  2372. var.activate = FB_ACTIVATE_TEST;
  2373. if (do_fb_set_var(&var,1))
  2374. default_par=0; /* failed */
  2375. }
  2376. /* Next is the autodetected one */
  2377. if (! default_par) {
  2378. var=atafb_predefined[detected_mode-1]; /* autodetect */
  2379. var.activate = FB_ACTIVATE_TEST;
  2380. if (!do_fb_set_var(&var,1))
  2381. default_par=detected_mode;
  2382. }
  2383. /* If that also failed, try some default modes... */
  2384. if (! default_par) {
  2385. /* try default1, default2... */
  2386. for (i=1 ; i < 10 ; i++) {
  2387. sprintf(default_name,"default%d",i);
  2388. default_par=get_video_mode(default_name);
  2389. if (! default_par)
  2390. panic("can't set default video mode");
  2391. var=atafb_predefined[default_par-1];
  2392. var.activate = FB_ACTIVATE_TEST;
  2393. if (! do_fb_set_var(&var,1))
  2394. break; /* ok */
  2395. }
  2396. }
  2397. min_mem=var.xres_virtual * var.yres_virtual * var.bits_per_pixel/8;
  2398. if (default_mem_req < min_mem)
  2399. default_mem_req=min_mem;
  2400. }
  2401. static int
  2402. atafb_switch(int con, struct fb_info *info)
  2403. {
  2404. /* Do we have to save the colormap ? */
  2405. if (fb_display[currcon].cmap.len)
  2406. fb_get_cmap(&fb_display[currcon].cmap, 1, fbhw->getcolreg,
  2407.     info);
  2408. do_fb_set_var(&fb_display[con].var,1);
  2409. currcon=con;
  2410. /* Install new colormap */
  2411. do_install_cmap(con, info);
  2412. return 0;
  2413. }
  2414. /* (un)blank/poweroff
  2415.  * 0 = unblank
  2416.  * 1 = blank
  2417.  * 2 = suspend vsync
  2418.  * 3 = suspend hsync
  2419.  * 4 = off
  2420.  */
  2421. static void
  2422. atafb_blank(int blank, struct fb_info *info)
  2423. {
  2424. unsigned short black[16];
  2425. struct fb_cmap cmap;
  2426. if (fbhw->blank && !fbhw->blank(blank))
  2427. return;
  2428. if (blank) {
  2429. memset(black, 0, 16*sizeof(unsigned short));
  2430. cmap.red=black;
  2431. cmap.green=black;
  2432. cmap.blue=black;
  2433. cmap.transp=NULL;
  2434. cmap.start=0;
  2435. cmap.len=16;
  2436. fb_set_cmap(&cmap, 1, fbhw->setcolreg, info);
  2437. }
  2438. else
  2439. do_install_cmap(currcon, info);
  2440. }
  2441. int __init atafb_init(void)
  2442. {
  2443. int pad;
  2444. int detected_mode;
  2445. unsigned long mem_req;
  2446. if (!MACH_IS_ATARI)
  2447.         return -ENXIO;
  2448. do {
  2449. #ifdef ATAFB_EXT
  2450. if (external_addr) {
  2451. fbhw = &ext_switch;
  2452. break;
  2453. }
  2454. #endif
  2455. #ifdef ATAFB_TT
  2456. if (ATARIHW_PRESENT(TT_SHIFTER)) {
  2457. fbhw = &tt_switch;
  2458. break;
  2459. }
  2460. #endif
  2461. #ifdef ATAFB_FALCON
  2462. if (ATARIHW_PRESENT(VIDEL_SHIFTER)) {
  2463. fbhw = &falcon_switch;
  2464. request_irq(IRQ_AUTO_4, falcon_vbl_switcher, IRQ_TYPE_PRIO,
  2465.             "framebuffer/modeswitch", falcon_vbl_switcher);
  2466. break;
  2467. }
  2468. #endif
  2469. #ifdef ATAFB_STE
  2470. if (ATARIHW_PRESENT(STND_SHIFTER) ||
  2471.     ATARIHW_PRESENT(EXTD_SHIFTER)) {
  2472. fbhw = &st_switch;
  2473. break;
  2474. }
  2475. fbhw = &st_switch;
  2476. printk("Cannot determine video hardware; defaulting to ST(e)n");
  2477. #else /* ATAFB_STE */
  2478. /* no default driver included */
  2479. /* Nobody will ever see this message :-) */
  2480. panic("Cannot initialize video hardware");
  2481. #endif
  2482. } while (0);
  2483. /* Multisync monitor capabilities */
  2484. /* Atari-TOS defaults if no boot option present */
  2485. if (fb_info.monspecs.hfmin == 0) {
  2486.     fb_info.monspecs.hfmin = 31000;
  2487.     fb_info.monspecs.hfmax = 32000;
  2488.     fb_info.monspecs.vfmin = 58;
  2489.     fb_info.monspecs.vfmax = 62;
  2490. }
  2491. detected_mode = fbhw->detect();
  2492. check_default_par(detected_mode);
  2493. #ifdef ATAFB_EXT
  2494. if (!external_addr) {
  2495. #endif /* ATAFB_EXT */
  2496. mem_req = default_mem_req + ovsc_offset + ovsc_addlen;
  2497. mem_req = PAGE_ALIGN(mem_req) + PAGE_SIZE;
  2498. screen_base = atari_stram_alloc(mem_req, "atafb");
  2499. if (!screen_base)
  2500. panic("Cannot allocate screen memory");
  2501. memset(screen_base, 0, mem_req);
  2502. pad = -(unsigned long)screen_base & (PAGE_SIZE-1);
  2503. screen_base+=pad;
  2504. real_screen_base=screen_base+ovsc_offset;
  2505. screen_len = (mem_req - pad - ovsc_offset) & PAGE_MASK;
  2506. st_ovsc_switch();
  2507. if (CPU_IS_040_OR_060) {
  2508. /* On a '040+, the cache mode of video RAM must be set to
  2509.  * write-through also for internal video hardware! */
  2510. cache_push(virt_to_phys(screen_base), screen_len);
  2511. kernel_set_cachemode(screen_base, screen_len,
  2512.      IOMAP_WRITETHROUGH);
  2513. }
  2514. #ifdef ATAFB_EXT
  2515. }
  2516. else {
  2517. /* Map the video memory (physical address given) to somewhere
  2518.  * in the kernel address space.
  2519.  */
  2520. external_addr =
  2521.   ioremap_writethrough((unsigned long)external_addr,
  2522.        external_len);
  2523. if (external_vgaiobase)
  2524. external_vgaiobase =
  2525.   (unsigned long)ioremap(external_vgaiobase, 0x10000);
  2526. screen_base      =
  2527. real_screen_base = external_addr;
  2528. screen_len       = external_len & PAGE_MASK;
  2529. memset (screen_base, 0, external_len);
  2530. }
  2531. #endif /* ATAFB_EXT */
  2532. strcpy(fb_info.modename, "Atari Builtin ");
  2533. fb_info.changevar = NULL;
  2534. fb_info.node = -1;
  2535. fb_info.fbops = &atafb_ops;
  2536. fb_info.disp = &disp;
  2537. fb_info.switch_con = &atafb_switch;
  2538. fb_info.updatevar = &fb_update_var;
  2539. fb_info.blank = &atafb_blank;
  2540. fb_info.flags = FBINFO_FLAG_DEFAULT;
  2541. do_fb_set_var(&atafb_predefined[default_par-1], 1);
  2542. strcat(fb_info.modename, fb_var_names[default_par-1][0]);
  2543. atafb_get_var(&disp.var, -1, &fb_info);
  2544. atafb_set_disp(-1, &fb_info);
  2545. do_install_cmap(0, &fb_info);
  2546. if (register_framebuffer(&fb_info) < 0)
  2547. return -EINVAL;
  2548. printk("Determined %dx%d, depth %dn",
  2549.        disp.var.xres, disp.var.yres, disp.var.bits_per_pixel);
  2550. if ((disp.var.xres != disp.var.xres_virtual) ||
  2551.     (disp.var.yres != disp.var.yres_virtual))
  2552.    printk("   virtual %dx%dn",
  2553.   disp.var.xres_virtual, disp.var.yres_virtual);
  2554. printk("fb%d: %s frame buffer device, using %dK of video memoryn",
  2555.        GET_FB_IDX(fb_info.node), fb_info.modename, screen_len>>10);
  2556. /* TODO: This driver cannot be unloaded yet */
  2557. MOD_INC_USE_COUNT;
  2558. return 0;
  2559. }
  2560. /* a strtok which returns empty strings, too */
  2561. static char * strtoke(char * s,const char * ct)
  2562. {
  2563.   char *sbegin, *send;
  2564.   static char *ssave = NULL;
  2565.   
  2566.   sbegin  = s ? s : ssave;
  2567.   if (!sbegin) {
  2568.   return NULL;
  2569.   }
  2570.   if (*sbegin == '') {
  2571.     ssave = NULL;
  2572.     return NULL;
  2573.   }
  2574.   send = strpbrk(sbegin, ct);
  2575.   if (send && *send != '')
  2576.     *send++ = '';
  2577.   ssave = send;
  2578.   return sbegin;
  2579. }
  2580. int __init atafb_setup( char *options )
  2581. {
  2582.     char *this_opt;
  2583.     int temp;
  2584.     char ext_str[80], int_str[100];
  2585.     char mcap_spec[80];
  2586.     char user_mode[80];
  2587. ext_str[0]          =
  2588. int_str[0]          =
  2589. mcap_spec[0]        =
  2590. user_mode[0]        =
  2591. fb_info.fontname[0] = '';
  2592.     if (!options || !*options)
  2593. return 0;
  2594.      
  2595.     for(this_opt=strtok(options,","); this_opt; this_opt=strtok(NULL,",")) {
  2596. if (!*this_opt) continue;
  2597. if ((temp=get_video_mode(this_opt)))
  2598. default_par=temp;
  2599. else if (! strcmp(this_opt, "inverse"))
  2600. inverse=1;
  2601. else if (!strncmp(this_opt, "font:", 5))
  2602.    strcpy(fb_info.fontname, this_opt+5);
  2603. else if (! strncmp(this_opt, "hwscroll_",9)) {
  2604. hwscroll=simple_strtoul(this_opt+9, NULL, 10);
  2605. if (hwscroll < 0)
  2606. hwscroll = 0;
  2607. if (hwscroll > 200)
  2608. hwscroll = 200;
  2609. }
  2610. #ifdef ATAFB_EXT
  2611. else if (!strcmp(this_opt,"mv300")) {
  2612. external_bitspercol = 8;
  2613. external_card_type = IS_MV300;
  2614. }
  2615. else if (!strncmp(this_opt,"external:",9))
  2616. strcpy(ext_str, this_opt+9);
  2617. #endif
  2618. else if (!strncmp(this_opt,"internal:",9))
  2619. strcpy(int_str, this_opt+9);
  2620. #ifdef ATAFB_FALCON
  2621. else if (!strncmp(this_opt, "eclock:", 7)) {
  2622. fext.f = simple_strtoul(this_opt+7, NULL, 10);
  2623. /* external pixelclock in kHz --> ps */
  2624. fext.t = 1000000000/fext.f;
  2625. fext.f *= 1000;
  2626. }
  2627. else if (!strncmp(this_opt, "monitorcap:", 11))
  2628. strcpy(mcap_spec, this_opt+11);
  2629. #endif
  2630. else if (!strcmp(this_opt, "keep"))
  2631. DontCalcRes = 1;
  2632. else if (!strncmp(this_opt, "R", 1))
  2633. strcpy(user_mode, this_opt+1);
  2634.     }
  2635.     if (*int_str) {
  2636. /* Format to config extended internal video hardware like OverScan:
  2637. "internal:<xres>;<yres>;<xres_max>;<yres_max>;<offset>"
  2638. Explanation:
  2639. <xres>: x-resolution 
  2640. <yres>: y-resolution
  2641. The following are only needed if you have an overscan which
  2642. needs a black border:
  2643. <xres_max>: max. length of a line in pixels your OverScan hardware would allow
  2644. <yres_max>: max. number of lines your OverScan hardware would allow
  2645. <offset>: Offset from physical beginning to visible beginning
  2646.   of screen in bytes
  2647. */
  2648. int xres;
  2649. char *p;
  2650. if (!(p = strtoke(int_str, ";")) ||!*p) goto int_invalid;
  2651. xres = simple_strtoul(p, NULL, 10);
  2652. if (!(p = strtoke(NULL, ";")) || !*p) goto int_invalid;
  2653. sttt_xres=xres;
  2654. tt_yres=st_yres=simple_strtoul(p, NULL, 10);
  2655. if ((p=strtoke(NULL, ";")) && *p) {
  2656. sttt_xres_virtual=simple_strtoul(p, NULL, 10);
  2657. }
  2658. if ((p=strtoke(NULL, ";")) && *p) {
  2659. sttt_yres_virtual=simple_strtoul(p, NULL, 0);
  2660. }
  2661. if ((p=strtoke(NULL, ";")) && *p) {
  2662. ovsc_offset=simple_strtoul(p, NULL, 0);
  2663. }
  2664. if (ovsc_offset || (sttt_yres_virtual != st_yres))
  2665. use_hwscroll=0;
  2666.       int_invalid:
  2667. ;
  2668.     }
  2669. #ifdef ATAFB_EXT
  2670.     if (*ext_str) {
  2671. int xres, xres_virtual, yres, depth, planes;
  2672. unsigned long addr, len;
  2673. char *p;
  2674. /* Format is: <xres>;<yres>;<depth>;<plane organ.>;
  2675.  *            <screen mem addr>
  2676.  *       [;<screen mem length>[;<vgaiobase>[;<bits-per-col>[;<colorreg-type>
  2677.  *       [;<xres-virtual>]]]]]
  2678.  *
  2679.  * 09/23/97 Juergen
  2680.  * <xres_virtual>: hardware's x-resolution (f.e. ProMST)
  2681.  *
  2682.  * Even xres_virtual is available, we neither support panning nor hw-scrolling!
  2683.  */
  2684. if (!(p = strtoke(ext_str, ";")) ||!*p) goto ext_invalid;
  2685. xres_virtual = xres = simple_strtoul(p, NULL, 10);
  2686. if (xres <= 0) goto ext_invalid;
  2687. if (!(p = strtoke(NULL, ";")) ||!*p) goto ext_invalid;
  2688. yres = simple_strtoul(p, NULL, 10);
  2689. if (yres <= 0) goto ext_invalid;
  2690. if (!(p = strtoke(NULL, ";")) ||!*p) goto ext_invalid;
  2691. depth = simple_strtoul(p, NULL, 10);
  2692. if (depth != 1 && depth != 2 && depth != 4 && depth != 8 &&
  2693. depth != 16 && depth != 24) goto ext_invalid;
  2694. if (!(p = strtoke(NULL, ";")) ||!*p) goto ext_invalid;
  2695. if (*p == 'i')
  2696. planes = FB_TYPE_INTERLEAVED_PLANES;
  2697. else if (*p == 'p')
  2698. planes = FB_TYPE_PACKED_PIXELS;
  2699. else if (*p == 'n')
  2700. planes = FB_TYPE_PLANES;
  2701. else if (*p == 't')
  2702. planes = -1; /* true color */
  2703. else
  2704. goto ext_invalid;
  2705. if (!(p = strtoke(NULL, ";")) ||!*p) goto ext_invalid;
  2706. addr = simple_strtoul(p, NULL, 0);
  2707. if (!(p = strtoke(NULL, ";")) ||!*p)
  2708. len = xres*yres*depth/8;
  2709. else
  2710. len = simple_strtoul(p, NULL, 0);
  2711. if ((p = strtoke(NULL, ";")) && *p) {
  2712. external_vgaiobase=simple_strtoul(p, NULL, 0);
  2713. }
  2714. if ((p = strtoke(NULL, ";")) && *p) {
  2715. external_bitspercol = simple_strtoul(p, NULL, 0);
  2716. if (external_bitspercol > 8)
  2717. external_bitspercol = 8;
  2718. else if (external_bitspercol < 1)
  2719. external_bitspercol = 1;
  2720. }
  2721. if ((p = strtoke(NULL, ";")) && *p) {
  2722. if (!strcmp(p, "vga"))
  2723. external_card_type = IS_VGA;
  2724. if (!strcmp(p, "mv300"))
  2725. external_card_type = IS_MV300;
  2726. }
  2727. if ((p = strtoke(NULL, ";")) && *p) {
  2728. xres_virtual = simple_strtoul(p, NULL, 10);
  2729. if (xres_virtual < xres)
  2730. xres_virtual = xres;
  2731. if (xres_virtual*yres*depth/8 > len)
  2732. len=xres_virtual*yres*depth/8;
  2733. }
  2734. external_xres  = xres;
  2735. external_xres_virtual  = xres_virtual;
  2736. external_yres  = yres;
  2737. external_depth = depth;
  2738. external_pmode = planes;
  2739. external_addr  = (void *)addr;
  2740. external_len   = len;
  2741. if (external_card_type == IS_MV300)
  2742.   switch (external_depth) {
  2743.     case 1:
  2744.       MV300_reg = MV300_reg_1bit;
  2745.       break;
  2746.     case 4:
  2747.       MV300_reg = MV300_reg_4bit;
  2748.       break;
  2749.     case 8:
  2750.       MV300_reg = MV300_reg_8bit;
  2751.       break;
  2752.     }
  2753.       ext_invalid:
  2754. ;
  2755.     }
  2756. #endif /* ATAFB_EXT */
  2757. #ifdef ATAFB_FALCON
  2758.     if (*mcap_spec) {
  2759. char *p;
  2760. int vmin, vmax, hmin, hmax;
  2761. /* Format for monitor capabilities is: <Vmin>;<Vmax>;<Hmin>;<Hmax>
  2762.  * <V*> vertical freq. in Hz
  2763.  * <H*> horizontal freq. in kHz
  2764.  */
  2765. if (!(p = strtoke(mcap_spec, ";")) || !*p) goto cap_invalid;
  2766. vmin = simple_strtoul(p, NULL, 10);
  2767. if (vmin <= 0) goto cap_invalid;
  2768. if (!(p = strtoke(NULL, ";")) || !*p) goto cap_invalid;
  2769. vmax = simple_strtoul(p, NULL, 10);
  2770. if (vmax <= 0 || vmax <= vmin) goto cap_invalid;
  2771. if (!(p = strtoke(NULL, ";")) || !*p) goto cap_invalid;
  2772. hmin = 1000 * simple_strtoul(p, NULL, 10);
  2773. if (hmin <= 0) goto cap_invalid;
  2774. if (!(p = strtoke(NULL, "")) || !*p) goto cap_invalid;
  2775. hmax = 1000 * simple_strtoul(p, NULL, 10);
  2776. if (hmax <= 0 || hmax <= hmin) goto cap_invalid;
  2777. fb_info.monspecs.vfmin = vmin;
  2778. fb_info.monspecs.vfmax = vmax;
  2779. fb_info.monspecs.hfmin = hmin;
  2780. fb_info.monspecs.hfmax = hmax;
  2781.       cap_invalid:
  2782. ;
  2783.     }
  2784. #endif
  2785. if (*user_mode) {
  2786. /* Format of user defined video mode is: <xres>;<yres>;<depth>
  2787.  */
  2788. char *p;
  2789. int xres, yres, depth, temp;
  2790. if (!(p = strtoke(user_mode, ";")) || !*p) goto user_invalid;
  2791. xres = simple_strtoul(p, NULL, 10);
  2792. if (!(p = strtoke(NULL, ";")) || !*p) goto user_invalid;
  2793. yres = simple_strtoul(p, NULL, 10);
  2794. if (!(p = strtoke(NULL, "")) || !*p) goto user_invalid;
  2795. depth = simple_strtoul(p, NULL, 10);
  2796. if ((temp=get_video_mode("user0"))) {
  2797. default_par=temp;
  2798. atafb_predefined[default_par-1].xres = xres;
  2799. atafb_predefined[default_par-1].yres = yres;
  2800. atafb_predefined[default_par-1].bits_per_pixel = depth;
  2801. }
  2802.   user_invalid:
  2803. ;
  2804. }
  2805. return 0;
  2806. }
  2807. #ifdef MODULE
  2808. MODULE_LICENSE("GPL");
  2809. int init_module(void)
  2810. {
  2811. return atafb_init();
  2812. }
  2813. void cleanup_module(void)
  2814. {
  2815. /* Not reached because the usecount will never
  2816.    be decremented to zero */
  2817. unregister_framebuffer(&fb_info);
  2818. /* atari_stram_free( screen_base ); */
  2819. /* TODO: further clean up ... */
  2820. }
  2821. #endif /* MODULE */