1*f7018c21STomi Valkeinen /* 2*f7018c21STomi Valkeinen * linux/drivers/video/fm2fb.c -- BSC FrameMaster II/Rainbow II frame buffer 3*f7018c21STomi Valkeinen * device 4*f7018c21STomi Valkeinen * 5*f7018c21STomi Valkeinen * Copyright (C) 1998 Steffen A. Mork (linux-dev@morknet.de) 6*f7018c21STomi Valkeinen * Copyright (C) 1999 Geert Uytterhoeven 7*f7018c21STomi Valkeinen * 8*f7018c21STomi Valkeinen * Written for 2.0.x by Steffen A. Mork 9*f7018c21STomi Valkeinen * Ported to 2.1.x by Geert Uytterhoeven 10*f7018c21STomi Valkeinen * Ported to new api by James Simmons 11*f7018c21STomi Valkeinen * 12*f7018c21STomi Valkeinen * This file is subject to the terms and conditions of the GNU General Public 13*f7018c21STomi Valkeinen * License. See the file COPYING in the main directory of this archive for 14*f7018c21STomi Valkeinen * more details. 15*f7018c21STomi Valkeinen */ 16*f7018c21STomi Valkeinen 17*f7018c21STomi Valkeinen #include <linux/module.h> 18*f7018c21STomi Valkeinen #include <linux/mm.h> 19*f7018c21STomi Valkeinen #include <linux/fb.h> 20*f7018c21STomi Valkeinen #include <linux/init.h> 21*f7018c21STomi Valkeinen #include <linux/zorro.h> 22*f7018c21STomi Valkeinen #include <asm/io.h> 23*f7018c21STomi Valkeinen 24*f7018c21STomi Valkeinen /* 25*f7018c21STomi Valkeinen * Some technical notes: 26*f7018c21STomi Valkeinen * 27*f7018c21STomi Valkeinen * The BSC FrameMaster II (or Rainbow II) is a simple very dumb 28*f7018c21STomi Valkeinen * frame buffer which allows to display 24 bit true color images. 29*f7018c21STomi Valkeinen * Each pixel is 32 bit width so it's very easy to maintain the 30*f7018c21STomi Valkeinen * frame buffer. One long word has the following layout: 31*f7018c21STomi Valkeinen * AARRGGBB which means: AA the alpha channel byte, RR the red 32*f7018c21STomi Valkeinen * channel, GG the green channel and BB the blue channel. 33*f7018c21STomi Valkeinen * 34*f7018c21STomi Valkeinen * The FrameMaster II supports the following video modes. 35*f7018c21STomi Valkeinen * - PAL/NTSC 36*f7018c21STomi Valkeinen * - interlaced/non interlaced 37*f7018c21STomi Valkeinen * - composite sync/sync/sync over green 38*f7018c21STomi Valkeinen * 39*f7018c21STomi Valkeinen * The resolution is to the following both ones: 40*f7018c21STomi Valkeinen * - 768x576 (PAL) 41*f7018c21STomi Valkeinen * - 768x480 (NTSC) 42*f7018c21STomi Valkeinen * 43*f7018c21STomi Valkeinen * This means that pixel access per line is fixed due to the 44*f7018c21STomi Valkeinen * fixed line width. In case of maximal resolution the frame 45*f7018c21STomi Valkeinen * buffer needs an amount of memory of 1.769.472 bytes which 46*f7018c21STomi Valkeinen * is near to 2 MByte (the allocated address space of Zorro2). 47*f7018c21STomi Valkeinen * The memory is channel interleaved. That means every channel 48*f7018c21STomi Valkeinen * owns four VRAMs. Unfortunately most FrameMasters II are 49*f7018c21STomi Valkeinen * not assembled with memory for the alpha channel. In this 50*f7018c21STomi Valkeinen * case it could be possible to add the frame buffer into the 51*f7018c21STomi Valkeinen * normal memory pool. 52*f7018c21STomi Valkeinen * 53*f7018c21STomi Valkeinen * At relative address 0x1ffff8 of the frame buffers base address 54*f7018c21STomi Valkeinen * there exists a control register with the number of 55*f7018c21STomi Valkeinen * four control bits. They have the following meaning: 56*f7018c21STomi Valkeinen * bit value meaning 57*f7018c21STomi Valkeinen * 58*f7018c21STomi Valkeinen * 0 1 0=interlaced/1=non interlaced 59*f7018c21STomi Valkeinen * 1 2 0=video out disabled/1=video out enabled 60*f7018c21STomi Valkeinen * 2 4 0=normal mode as jumpered via JP8/1=complement mode 61*f7018c21STomi Valkeinen * 3 8 0=read onboard ROM/1 normal operation (required) 62*f7018c21STomi Valkeinen * 63*f7018c21STomi Valkeinen * As mentioned above there are several jumper. I think there 64*f7018c21STomi Valkeinen * is not very much information about the FrameMaster II in 65*f7018c21STomi Valkeinen * the world so I add these information for completeness. 66*f7018c21STomi Valkeinen * 67*f7018c21STomi Valkeinen * JP1 interlace selection (1-2 non interlaced/2-3 interlaced) 68*f7018c21STomi Valkeinen * JP2 wait state creation (leave as is!) 69*f7018c21STomi Valkeinen * JP3 wait state creation (leave as is!) 70*f7018c21STomi Valkeinen * JP4 modulate composite sync on green output (1-2 composite 71*f7018c21STomi Valkeinen * sync on green channel/2-3 normal composite sync) 72*f7018c21STomi Valkeinen * JP5 create test signal, shorting this jumper will create 73*f7018c21STomi Valkeinen * a white screen 74*f7018c21STomi Valkeinen * JP6 sync creation (1-2 composite sync/2-3 H-sync output) 75*f7018c21STomi Valkeinen * JP8 video mode (1-2 PAL/2-3 NTSC) 76*f7018c21STomi Valkeinen * 77*f7018c21STomi Valkeinen * With the following jumpering table you can connect the 78*f7018c21STomi Valkeinen * FrameMaster II to a normal TV via SCART connector: 79*f7018c21STomi Valkeinen * JP1: 2-3 80*f7018c21STomi Valkeinen * JP4: 2-3 81*f7018c21STomi Valkeinen * JP6: 2-3 82*f7018c21STomi Valkeinen * JP8: 1-2 (means PAL for Europe) 83*f7018c21STomi Valkeinen * 84*f7018c21STomi Valkeinen * NOTE: 85*f7018c21STomi Valkeinen * There is no other possibility to change the video timings 86*f7018c21STomi Valkeinen * except the interlaced/non interlaced, sync control and the 87*f7018c21STomi Valkeinen * video mode PAL (50 Hz)/NTSC (60 Hz). Inside this 88*f7018c21STomi Valkeinen * FrameMaster II driver are assumed values to avoid anomalies 89*f7018c21STomi Valkeinen * to a future X server. Except the pixel clock is really 90*f7018c21STomi Valkeinen * constant at 30 MHz. 91*f7018c21STomi Valkeinen * 92*f7018c21STomi Valkeinen * 9 pin female video connector: 93*f7018c21STomi Valkeinen * 94*f7018c21STomi Valkeinen * 1 analog red 0.7 Vss 95*f7018c21STomi Valkeinen * 2 analog green 0.7 Vss 96*f7018c21STomi Valkeinen * 3 analog blue 0.7 Vss 97*f7018c21STomi Valkeinen * 4 H-sync TTL 98*f7018c21STomi Valkeinen * 5 V-sync TTL 99*f7018c21STomi Valkeinen * 6 ground 100*f7018c21STomi Valkeinen * 7 ground 101*f7018c21STomi Valkeinen * 8 ground 102*f7018c21STomi Valkeinen * 9 ground 103*f7018c21STomi Valkeinen * 104*f7018c21STomi Valkeinen * Some performance notes: 105*f7018c21STomi Valkeinen * The FrameMaster II was not designed to display a console 106*f7018c21STomi Valkeinen * this driver would do! It was designed to display still true 107*f7018c21STomi Valkeinen * color images. Imagine: When scroll up a text line there 108*f7018c21STomi Valkeinen * must copied ca. 1.7 MBytes to another place inside this 109*f7018c21STomi Valkeinen * frame buffer. This means 1.7 MByte read and 1.7 MByte write 110*f7018c21STomi Valkeinen * over the slow 16 bit wide Zorro2 bus! A scroll of one 111*f7018c21STomi Valkeinen * line needs 1 second so do not expect to much from this 112*f7018c21STomi Valkeinen * driver - he is at the limit! 113*f7018c21STomi Valkeinen * 114*f7018c21STomi Valkeinen */ 115*f7018c21STomi Valkeinen 116*f7018c21STomi Valkeinen /* 117*f7018c21STomi Valkeinen * definitions 118*f7018c21STomi Valkeinen */ 119*f7018c21STomi Valkeinen 120*f7018c21STomi Valkeinen #define FRAMEMASTER_SIZE 0x200000 121*f7018c21STomi Valkeinen #define FRAMEMASTER_REG 0x1ffff8 122*f7018c21STomi Valkeinen 123*f7018c21STomi Valkeinen #define FRAMEMASTER_NOLACE 1 124*f7018c21STomi Valkeinen #define FRAMEMASTER_ENABLE 2 125*f7018c21STomi Valkeinen #define FRAMEMASTER_COMPL 4 126*f7018c21STomi Valkeinen #define FRAMEMASTER_ROM 8 127*f7018c21STomi Valkeinen 128*f7018c21STomi Valkeinen static volatile unsigned char *fm2fb_reg; 129*f7018c21STomi Valkeinen 130*f7018c21STomi Valkeinen static struct fb_fix_screeninfo fb_fix = { 131*f7018c21STomi Valkeinen .smem_len = FRAMEMASTER_REG, 132*f7018c21STomi Valkeinen .type = FB_TYPE_PACKED_PIXELS, 133*f7018c21STomi Valkeinen .visual = FB_VISUAL_TRUECOLOR, 134*f7018c21STomi Valkeinen .line_length = (768 << 2), 135*f7018c21STomi Valkeinen .mmio_len = (8), 136*f7018c21STomi Valkeinen .accel = FB_ACCEL_NONE, 137*f7018c21STomi Valkeinen }; 138*f7018c21STomi Valkeinen 139*f7018c21STomi Valkeinen static int fm2fb_mode = -1; 140*f7018c21STomi Valkeinen 141*f7018c21STomi Valkeinen #define FM2FB_MODE_PAL 0 142*f7018c21STomi Valkeinen #define FM2FB_MODE_NTSC 1 143*f7018c21STomi Valkeinen 144*f7018c21STomi Valkeinen static struct fb_var_screeninfo fb_var_modes[] = { 145*f7018c21STomi Valkeinen { 146*f7018c21STomi Valkeinen /* 768 x 576, 32 bpp (PAL) */ 147*f7018c21STomi Valkeinen 768, 576, 768, 576, 0, 0, 32, 0, 148*f7018c21STomi Valkeinen { 16, 8, 0 }, { 8, 8, 0 }, { 0, 8, 0 }, { 24, 8, 0 }, 149*f7018c21STomi Valkeinen 0, FB_ACTIVATE_NOW, -1, -1, FB_ACCEL_NONE, 150*f7018c21STomi Valkeinen 33333, 10, 102, 10, 5, 80, 34, FB_SYNC_COMP_HIGH_ACT, 0 151*f7018c21STomi Valkeinen }, { 152*f7018c21STomi Valkeinen /* 768 x 480, 32 bpp (NTSC - not supported yet */ 153*f7018c21STomi Valkeinen 768, 480, 768, 480, 0, 0, 32, 0, 154*f7018c21STomi Valkeinen { 16, 8, 0 }, { 8, 8, 0 }, { 0, 8, 0 }, { 24, 8, 0 }, 155*f7018c21STomi Valkeinen 0, FB_ACTIVATE_NOW, -1, -1, FB_ACCEL_NONE, 156*f7018c21STomi Valkeinen 33333, 10, 102, 10, 5, 80, 34, FB_SYNC_COMP_HIGH_ACT, 0 157*f7018c21STomi Valkeinen } 158*f7018c21STomi Valkeinen }; 159*f7018c21STomi Valkeinen 160*f7018c21STomi Valkeinen /* 161*f7018c21STomi Valkeinen * Interface used by the world 162*f7018c21STomi Valkeinen */ 163*f7018c21STomi Valkeinen 164*f7018c21STomi Valkeinen static int fm2fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, 165*f7018c21STomi Valkeinen u_int transp, struct fb_info *info); 166*f7018c21STomi Valkeinen static int fm2fb_blank(int blank, struct fb_info *info); 167*f7018c21STomi Valkeinen 168*f7018c21STomi Valkeinen static struct fb_ops fm2fb_ops = { 169*f7018c21STomi Valkeinen .owner = THIS_MODULE, 170*f7018c21STomi Valkeinen .fb_setcolreg = fm2fb_setcolreg, 171*f7018c21STomi Valkeinen .fb_blank = fm2fb_blank, 172*f7018c21STomi Valkeinen .fb_fillrect = cfb_fillrect, 173*f7018c21STomi Valkeinen .fb_copyarea = cfb_copyarea, 174*f7018c21STomi Valkeinen .fb_imageblit = cfb_imageblit, 175*f7018c21STomi Valkeinen }; 176*f7018c21STomi Valkeinen 177*f7018c21STomi Valkeinen /* 178*f7018c21STomi Valkeinen * Blank the display. 179*f7018c21STomi Valkeinen */ 180*f7018c21STomi Valkeinen static int fm2fb_blank(int blank, struct fb_info *info) 181*f7018c21STomi Valkeinen { 182*f7018c21STomi Valkeinen unsigned char t = FRAMEMASTER_ROM; 183*f7018c21STomi Valkeinen 184*f7018c21STomi Valkeinen if (!blank) 185*f7018c21STomi Valkeinen t |= FRAMEMASTER_ENABLE | FRAMEMASTER_NOLACE; 186*f7018c21STomi Valkeinen fm2fb_reg[0] = t; 187*f7018c21STomi Valkeinen return 0; 188*f7018c21STomi Valkeinen } 189*f7018c21STomi Valkeinen 190*f7018c21STomi Valkeinen /* 191*f7018c21STomi Valkeinen * Set a single color register. The values supplied are already 192*f7018c21STomi Valkeinen * rounded down to the hardware's capabilities (according to the 193*f7018c21STomi Valkeinen * entries in the var structure). Return != 0 for invalid regno. 194*f7018c21STomi Valkeinen */ 195*f7018c21STomi Valkeinen static int fm2fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, 196*f7018c21STomi Valkeinen u_int transp, struct fb_info *info) 197*f7018c21STomi Valkeinen { 198*f7018c21STomi Valkeinen if (regno < 16) { 199*f7018c21STomi Valkeinen red >>= 8; 200*f7018c21STomi Valkeinen green >>= 8; 201*f7018c21STomi Valkeinen blue >>= 8; 202*f7018c21STomi Valkeinen 203*f7018c21STomi Valkeinen ((u32*)(info->pseudo_palette))[regno] = (red << 16) | 204*f7018c21STomi Valkeinen (green << 8) | blue; 205*f7018c21STomi Valkeinen } 206*f7018c21STomi Valkeinen 207*f7018c21STomi Valkeinen return 0; 208*f7018c21STomi Valkeinen } 209*f7018c21STomi Valkeinen 210*f7018c21STomi Valkeinen /* 211*f7018c21STomi Valkeinen * Initialisation 212*f7018c21STomi Valkeinen */ 213*f7018c21STomi Valkeinen 214*f7018c21STomi Valkeinen static int fm2fb_probe(struct zorro_dev *z, const struct zorro_device_id *id); 215*f7018c21STomi Valkeinen 216*f7018c21STomi Valkeinen static struct zorro_device_id fm2fb_devices[] = { 217*f7018c21STomi Valkeinen { ZORRO_PROD_BSC_FRAMEMASTER_II }, 218*f7018c21STomi Valkeinen { ZORRO_PROD_HELFRICH_RAINBOW_II }, 219*f7018c21STomi Valkeinen { 0 } 220*f7018c21STomi Valkeinen }; 221*f7018c21STomi Valkeinen MODULE_DEVICE_TABLE(zorro, fm2fb_devices); 222*f7018c21STomi Valkeinen 223*f7018c21STomi Valkeinen static struct zorro_driver fm2fb_driver = { 224*f7018c21STomi Valkeinen .name = "fm2fb", 225*f7018c21STomi Valkeinen .id_table = fm2fb_devices, 226*f7018c21STomi Valkeinen .probe = fm2fb_probe, 227*f7018c21STomi Valkeinen }; 228*f7018c21STomi Valkeinen 229*f7018c21STomi Valkeinen static int fm2fb_probe(struct zorro_dev *z, const struct zorro_device_id *id) 230*f7018c21STomi Valkeinen { 231*f7018c21STomi Valkeinen struct fb_info *info; 232*f7018c21STomi Valkeinen unsigned long *ptr; 233*f7018c21STomi Valkeinen int is_fm; 234*f7018c21STomi Valkeinen int x, y; 235*f7018c21STomi Valkeinen 236*f7018c21STomi Valkeinen is_fm = z->id == ZORRO_PROD_BSC_FRAMEMASTER_II; 237*f7018c21STomi Valkeinen 238*f7018c21STomi Valkeinen if (!zorro_request_device(z,"fm2fb")) 239*f7018c21STomi Valkeinen return -ENXIO; 240*f7018c21STomi Valkeinen 241*f7018c21STomi Valkeinen info = framebuffer_alloc(16 * sizeof(u32), &z->dev); 242*f7018c21STomi Valkeinen if (!info) { 243*f7018c21STomi Valkeinen zorro_release_device(z); 244*f7018c21STomi Valkeinen return -ENOMEM; 245*f7018c21STomi Valkeinen } 246*f7018c21STomi Valkeinen 247*f7018c21STomi Valkeinen if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) { 248*f7018c21STomi Valkeinen framebuffer_release(info); 249*f7018c21STomi Valkeinen zorro_release_device(z); 250*f7018c21STomi Valkeinen return -ENOMEM; 251*f7018c21STomi Valkeinen } 252*f7018c21STomi Valkeinen 253*f7018c21STomi Valkeinen /* assigning memory to kernel space */ 254*f7018c21STomi Valkeinen fb_fix.smem_start = zorro_resource_start(z); 255*f7018c21STomi Valkeinen info->screen_base = ioremap(fb_fix.smem_start, FRAMEMASTER_SIZE); 256*f7018c21STomi Valkeinen fb_fix.mmio_start = fb_fix.smem_start + FRAMEMASTER_REG; 257*f7018c21STomi Valkeinen fm2fb_reg = (unsigned char *)(info->screen_base+FRAMEMASTER_REG); 258*f7018c21STomi Valkeinen 259*f7018c21STomi Valkeinen strcpy(fb_fix.id, is_fm ? "FrameMaster II" : "Rainbow II"); 260*f7018c21STomi Valkeinen 261*f7018c21STomi Valkeinen /* make EBU color bars on display */ 262*f7018c21STomi Valkeinen ptr = (unsigned long *)fb_fix.smem_start; 263*f7018c21STomi Valkeinen for (y = 0; y < 576; y++) { 264*f7018c21STomi Valkeinen for (x = 0; x < 96; x++) *ptr++ = 0xffffff;/* white */ 265*f7018c21STomi Valkeinen for (x = 0; x < 96; x++) *ptr++ = 0xffff00;/* yellow */ 266*f7018c21STomi Valkeinen for (x = 0; x < 96; x++) *ptr++ = 0x00ffff;/* cyan */ 267*f7018c21STomi Valkeinen for (x = 0; x < 96; x++) *ptr++ = 0x00ff00;/* green */ 268*f7018c21STomi Valkeinen for (x = 0; x < 96; x++) *ptr++ = 0xff00ff;/* magenta */ 269*f7018c21STomi Valkeinen for (x = 0; x < 96; x++) *ptr++ = 0xff0000;/* red */ 270*f7018c21STomi Valkeinen for (x = 0; x < 96; x++) *ptr++ = 0x0000ff;/* blue */ 271*f7018c21STomi Valkeinen for (x = 0; x < 96; x++) *ptr++ = 0x000000;/* black */ 272*f7018c21STomi Valkeinen } 273*f7018c21STomi Valkeinen fm2fb_blank(0, info); 274*f7018c21STomi Valkeinen 275*f7018c21STomi Valkeinen if (fm2fb_mode == -1) 276*f7018c21STomi Valkeinen fm2fb_mode = FM2FB_MODE_PAL; 277*f7018c21STomi Valkeinen 278*f7018c21STomi Valkeinen info->fbops = &fm2fb_ops; 279*f7018c21STomi Valkeinen info->var = fb_var_modes[fm2fb_mode]; 280*f7018c21STomi Valkeinen info->pseudo_palette = info->par; 281*f7018c21STomi Valkeinen info->par = NULL; 282*f7018c21STomi Valkeinen info->fix = fb_fix; 283*f7018c21STomi Valkeinen info->flags = FBINFO_DEFAULT; 284*f7018c21STomi Valkeinen 285*f7018c21STomi Valkeinen if (register_framebuffer(info) < 0) { 286*f7018c21STomi Valkeinen fb_dealloc_cmap(&info->cmap); 287*f7018c21STomi Valkeinen iounmap(info->screen_base); 288*f7018c21STomi Valkeinen framebuffer_release(info); 289*f7018c21STomi Valkeinen zorro_release_device(z); 290*f7018c21STomi Valkeinen return -EINVAL; 291*f7018c21STomi Valkeinen } 292*f7018c21STomi Valkeinen fb_info(info, "%s frame buffer device\n", fb_fix.id); 293*f7018c21STomi Valkeinen return 0; 294*f7018c21STomi Valkeinen } 295*f7018c21STomi Valkeinen 296*f7018c21STomi Valkeinen int __init fm2fb_setup(char *options) 297*f7018c21STomi Valkeinen { 298*f7018c21STomi Valkeinen char *this_opt; 299*f7018c21STomi Valkeinen 300*f7018c21STomi Valkeinen if (!options || !*options) 301*f7018c21STomi Valkeinen return 0; 302*f7018c21STomi Valkeinen 303*f7018c21STomi Valkeinen while ((this_opt = strsep(&options, ",")) != NULL) { 304*f7018c21STomi Valkeinen if (!strncmp(this_opt, "pal", 3)) 305*f7018c21STomi Valkeinen fm2fb_mode = FM2FB_MODE_PAL; 306*f7018c21STomi Valkeinen else if (!strncmp(this_opt, "ntsc", 4)) 307*f7018c21STomi Valkeinen fm2fb_mode = FM2FB_MODE_NTSC; 308*f7018c21STomi Valkeinen } 309*f7018c21STomi Valkeinen return 0; 310*f7018c21STomi Valkeinen } 311*f7018c21STomi Valkeinen 312*f7018c21STomi Valkeinen int __init fm2fb_init(void) 313*f7018c21STomi Valkeinen { 314*f7018c21STomi Valkeinen char *option = NULL; 315*f7018c21STomi Valkeinen 316*f7018c21STomi Valkeinen if (fb_get_options("fm2fb", &option)) 317*f7018c21STomi Valkeinen return -ENODEV; 318*f7018c21STomi Valkeinen fm2fb_setup(option); 319*f7018c21STomi Valkeinen return zorro_register_driver(&fm2fb_driver); 320*f7018c21STomi Valkeinen } 321*f7018c21STomi Valkeinen 322*f7018c21STomi Valkeinen module_init(fm2fb_init); 323*f7018c21STomi Valkeinen MODULE_LICENSE("GPL"); 324