12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409 |
- /*
- * linux/drivers/video/acornfb.c
- *
- * Copyright (C) 1998-2001 Russell King
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * Frame buffer code for Acorn platforms
- *
- * NOTE: Most of the modes with X!=640 will disappear shortly.
- * NOTE: Startup setting of HS & VS polarity not supported.
- * (do we need to support it if we're coming up in 640x480?)
- *
- * FIXME: (things broken by the "new improved" FBCON API)
- * - Blanking 8bpp displays with VIDC
- */
- #include <linux/module.h>
- #include <linux/kernel.h>
- #include <linux/errno.h>
- #include <linux/string.h>
- #include <linux/ctype.h>
- #include <linux/mm.h>
- #include <linux/init.h>
- #include <linux/fb.h>
- #include <linux/platform_device.h>
- #include <linux/dma-mapping.h>
- #include <linux/io.h>
- #include <linux/gfp.h>
- #include <mach/hardware.h>
- #include <asm/irq.h>
- #include <asm/mach-types.h>
- #include <asm/pgtable.h>
- #include "acornfb.h"
- /*
- * VIDC machines can't do 16 or 32BPP modes.
- */
- #ifdef HAS_VIDC
- #undef FBCON_HAS_CFB16
- #undef FBCON_HAS_CFB32
- #endif
- /*
- * Default resolution.
- * NOTE that it has to be supported in the table towards
- * the end of this file.
- */
- #define DEFAULT_XRES 640
- #define DEFAULT_YRES 480
- #define DEFAULT_BPP 4
- /*
- * define this to debug the video mode selection
- */
- #undef DEBUG_MODE_SELECTION
- /*
- * Translation from RISC OS monitor types to actual
- * HSYNC and VSYNC frequency ranges. These are
- * probably not right, but they're the best info I
- * have. Allow 1% either way on the nominal for TVs.
- */
- #define NR_MONTYPES 6
- static struct fb_monspecs monspecs[NR_MONTYPES] __devinitdata = {
- { /* TV */
- .hfmin = 15469,
- .hfmax = 15781,
- .vfmin = 49,
- .vfmax = 51,
- }, { /* Multi Freq */
- .hfmin = 0,
- .hfmax = 99999,
- .vfmin = 0,
- .vfmax = 199,
- }, { /* Hi-res mono */
- .hfmin = 58608,
- .hfmax = 58608,
- .vfmin = 64,
- .vfmax = 64,
- }, { /* VGA */
- .hfmin = 30000,
- .hfmax = 70000,
- .vfmin = 60,
- .vfmax = 60,
- }, { /* SVGA */
- .hfmin = 30000,
- .hfmax = 70000,
- .vfmin = 56,
- .vfmax = 75,
- }, {
- .hfmin = 30000,
- .hfmax = 70000,
- .vfmin = 60,
- .vfmax = 60,
- }
- };
- static struct fb_info fb_info;
- static struct acornfb_par current_par;
- static struct vidc_timing current_vidc;
- extern unsigned int vram_size; /* set by setup.c */
- #ifdef HAS_VIDC
- #define MAX_SIZE 480*1024
- /* CTL VIDC Actual
- * 24.000 0 8.000
- * 25.175 0 8.392
- * 36.000 0 12.000
- * 24.000 1 12.000
- * 25.175 1 12.588
- * 24.000 2 16.000
- * 25.175 2 16.783
- * 36.000 1 18.000
- * 24.000 3 24.000
- * 36.000 2 24.000
- * 25.175 3 25.175
- * 36.000 3 36.000
- */
- struct pixclock {
- u_long min_clock;
- u_long max_clock;
- u_int vidc_ctl;
- u_int vid_ctl;
- };
- static struct pixclock arc_clocks[] = {
- /* we allow +/-1% on these */
- { 123750, 126250, VIDC_CTRL_DIV3, VID_CTL_24MHz }, /* 8.000MHz */
- { 82500, 84167, VIDC_CTRL_DIV2, VID_CTL_24MHz }, /* 12.000MHz */
- { 61875, 63125, VIDC_CTRL_DIV1_5, VID_CTL_24MHz }, /* 16.000MHz */
- { 41250, 42083, VIDC_CTRL_DIV1, VID_CTL_24MHz }, /* 24.000MHz */
- };
- static struct pixclock *
- acornfb_valid_pixrate(struct fb_var_screeninfo *var)
- {
- u_long pixclock = var->pixclock;
- u_int i;
- if (!var->pixclock)
- return NULL;
- for (i = 0; i < ARRAY_SIZE(arc_clocks); i++)
- if (pixclock > arc_clocks[i].min_clock &&
- pixclock < arc_clocks[i].max_clock)
- return arc_clocks + i;
- return NULL;
- }
- /* VIDC Rules:
- * hcr : must be even (interlace, hcr/2 must be even)
- * hswr : must be even
- * hdsr : must be odd
- * hder : must be odd
- *
- * vcr : must be odd
- * vswr : >= 1
- * vdsr : >= 1
- * vder : >= vdsr
- * if interlaced, then hcr/2 must be even
- */
- static void
- acornfb_set_timing(struct fb_var_screeninfo *var)
- {
- struct pixclock *pclk;
- struct vidc_timing vidc;
- u_int horiz_correction;
- u_int sync_len, display_start, display_end, cycle;
- u_int is_interlaced;
- u_int vid_ctl, vidc_ctl;
- u_int bandwidth;
- memset(&vidc, 0, sizeof(vidc));
- pclk = acornfb_valid_pixrate(var);
- vidc_ctl = pclk->vidc_ctl;
- vid_ctl = pclk->vid_ctl;
- bandwidth = var->pixclock * 8 / var->bits_per_pixel;
- /* 25.175, 4bpp = 79.444ns per byte, 317.776ns per word: fifo = 2,6 */
- if (bandwidth > 143500)
- vidc_ctl |= VIDC_CTRL_FIFO_3_7;
- else if (bandwidth > 71750)
- vidc_ctl |= VIDC_CTRL_FIFO_2_6;
- else if (bandwidth > 35875)
- vidc_ctl |= VIDC_CTRL_FIFO_1_5;
- else
- vidc_ctl |= VIDC_CTRL_FIFO_0_4;
- switch (var->bits_per_pixel) {
- case 1:
- horiz_correction = 19;
- vidc_ctl |= VIDC_CTRL_1BPP;
- break;
- case 2:
- horiz_correction = 11;
- vidc_ctl |= VIDC_CTRL_2BPP;
- break;
- case 4:
- horiz_correction = 7;
- vidc_ctl |= VIDC_CTRL_4BPP;
- break;
- default:
- case 8:
- horiz_correction = 5;
- vidc_ctl |= VIDC_CTRL_8BPP;
- break;
- }
- if (var->sync & FB_SYNC_COMP_HIGH_ACT) /* should be FB_SYNC_COMP */
- vidc_ctl |= VIDC_CTRL_CSYNC;
- else {
- if (!(var->sync & FB_SYNC_HOR_HIGH_ACT))
- vid_ctl |= VID_CTL_HS_NHSYNC;
- if (!(var->sync & FB_SYNC_VERT_HIGH_ACT))
- vid_ctl |= VID_CTL_VS_NVSYNC;
- }
- sync_len = var->hsync_len;
- display_start = sync_len + var->left_margin;
- display_end = display_start + var->xres;
- cycle = display_end + var->right_margin;
- /* if interlaced, then hcr/2 must be even */
- is_interlaced = (var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED;
- if (is_interlaced) {
- vidc_ctl |= VIDC_CTRL_INTERLACE;
- if (cycle & 2) {
- cycle += 2;
- var->right_margin += 2;
- }
- }
- vidc.h_cycle = (cycle - 2) / 2;
- vidc.h_sync_width = (sync_len - 2) / 2;
- vidc.h_border_start = (display_start - 1) / 2;
- vidc.h_display_start = (display_start - horiz_correction) / 2;
- vidc.h_display_end = (display_end - horiz_correction) / 2;
- vidc.h_border_end = (display_end - 1) / 2;
- vidc.h_interlace = (vidc.h_cycle + 1) / 2;
- sync_len = var->vsync_len;
- display_start = sync_len + var->upper_margin;
- display_end = display_start + var->yres;
- cycle = display_end + var->lower_margin;
- if (is_interlaced)
- cycle = (cycle - 3) / 2;
- else
- cycle = cycle - 1;
- vidc.v_cycle = cycle;
- vidc.v_sync_width = sync_len - 1;
- vidc.v_border_start = display_start - 1;
- vidc.v_display_start = vidc.v_border_start;
- vidc.v_display_end = display_end - 1;
- vidc.v_border_end = vidc.v_display_end;
- if (machine_is_a5k())
- __raw_writeb(vid_ctl, IOEB_VID_CTL);
- if (memcmp(¤t_vidc, &vidc, sizeof(vidc))) {
- current_vidc = vidc;
- vidc_writel(0xe0000000 | vidc_ctl);
- vidc_writel(0x80000000 | (vidc.h_cycle << 14));
- vidc_writel(0x84000000 | (vidc.h_sync_width << 14));
- vidc_writel(0x88000000 | (vidc.h_border_start << 14));
- vidc_writel(0x8c000000 | (vidc.h_display_start << 14));
- vidc_writel(0x90000000 | (vidc.h_display_end << 14));
- vidc_writel(0x94000000 | (vidc.h_border_end << 14));
- vidc_writel(0x98000000);
- vidc_writel(0x9c000000 | (vidc.h_interlace << 14));
- vidc_writel(0xa0000000 | (vidc.v_cycle << 14));
- vidc_writel(0xa4000000 | (vidc.v_sync_width << 14));
- vidc_writel(0xa8000000 | (vidc.v_border_start << 14));
- vidc_writel(0xac000000 | (vidc.v_display_start << 14));
- vidc_writel(0xb0000000 | (vidc.v_display_end << 14));
- vidc_writel(0xb4000000 | (vidc.v_border_end << 14));
- vidc_writel(0xb8000000);
- vidc_writel(0xbc000000);
- }
- #ifdef DEBUG_MODE_SELECTION
- printk(KERN_DEBUG "VIDC registers for %dx%dx%d:\n", var->xres,
- var->yres, var->bits_per_pixel);
- printk(KERN_DEBUG " H-cycle : %d\n", vidc.h_cycle);
- printk(KERN_DEBUG " H-sync-width : %d\n", vidc.h_sync_width);
- printk(KERN_DEBUG " H-border-start : %d\n", vidc.h_border_start);
- printk(KERN_DEBUG " H-display-start : %d\n", vidc.h_display_start);
- printk(KERN_DEBUG " H-display-end : %d\n", vidc.h_display_end);
- printk(KERN_DEBUG " H-border-end : %d\n", vidc.h_border_end);
- printk(KERN_DEBUG " H-interlace : %d\n", vidc.h_interlace);
- printk(KERN_DEBUG " V-cycle : %d\n", vidc.v_cycle);
- printk(KERN_DEBUG " V-sync-width : %d\n", vidc.v_sync_width);
- printk(KERN_DEBUG " V-border-start : %d\n", vidc.v_border_start);
- printk(KERN_DEBUG " V-display-start : %d\n", vidc.v_display_start);
- printk(KERN_DEBUG " V-display-end : %d\n", vidc.v_display_end);
- printk(KERN_DEBUG " V-border-end : %d\n", vidc.v_border_end);
- printk(KERN_DEBUG " VIDC Ctrl (E) : 0x%08X\n", vidc_ctl);
- printk(KERN_DEBUG " IOEB Ctrl : 0x%08X\n", vid_ctl);
- #endif
- }
- static int
- acornfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
- u_int trans, struct fb_info *info)
- {
- union palette pal;
- if (regno >= current_par.palette_size)
- return 1;
- pal.p = 0;
- pal.vidc.reg = regno;
- pal.vidc.red = red >> 12;
- pal.vidc.green = green >> 12;
- pal.vidc.blue = blue >> 12;
- current_par.palette[regno] = pal;
- vidc_writel(pal.p);
- return 0;
- }
- #endif
- #ifdef HAS_VIDC20
- #include <mach/acornfb.h>
- #define MAX_SIZE 2*1024*1024
- /* VIDC20 has a different set of rules from the VIDC:
- * hcr : must be multiple of 4
- * hswr : must be even
- * hdsr : must be even
- * hder : must be even
- * vcr : >= 2, (interlace, must be odd)
- * vswr : >= 1
- * vdsr : >= 1
- * vder : >= vdsr
- */
- static void acornfb_set_timing(struct fb_info *info)
- {
- struct fb_var_screeninfo *var = &info->var;
- struct vidc_timing vidc;
- u_int vcr, fsize;
- u_int ext_ctl, dat_ctl;
- u_int words_per_line;
- memset(&vidc, 0, sizeof(vidc));
- vidc.h_sync_width = var->hsync_len - 8;
- vidc.h_border_start = vidc.h_sync_width + var->left_margin + 8 - 12;
- vidc.h_display_start = vidc.h_border_start + 12 - 18;
- vidc.h_display_end = vidc.h_display_start + var->xres;
- vidc.h_border_end = vidc.h_display_end + 18 - 12;
- vidc.h_cycle = vidc.h_border_end + var->right_margin + 12 - 8;
- vidc.h_interlace = vidc.h_cycle / 2;
- vidc.v_sync_width = var->vsync_len - 1;
- vidc.v_border_start = vidc.v_sync_width + var->upper_margin;
- vidc.v_display_start = vidc.v_border_start;
- vidc.v_display_end = vidc.v_display_start + var->yres;
- vidc.v_border_end = vidc.v_display_end;
- vidc.control = acornfb_default_control();
- vcr = var->vsync_len + var->upper_margin + var->yres +
- var->lower_margin;
- if ((var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) {
- vidc.v_cycle = (vcr - 3) / 2;
- vidc.control |= VIDC20_CTRL_INT;
- } else
- vidc.v_cycle = vcr - 2;
- switch (var->bits_per_pixel) {
- case 1: vidc.control |= VIDC20_CTRL_1BPP; break;
- case 2: vidc.control |= VIDC20_CTRL_2BPP; break;
- case 4: vidc.control |= VIDC20_CTRL_4BPP; break;
- default:
- case 8: vidc.control |= VIDC20_CTRL_8BPP; break;
- case 16: vidc.control |= VIDC20_CTRL_16BPP; break;
- case 32: vidc.control |= VIDC20_CTRL_32BPP; break;
- }
- acornfb_vidc20_find_rates(&vidc, var);
- fsize = var->vsync_len + var->upper_margin + var->lower_margin - 1;
- if (memcmp(¤t_vidc, &vidc, sizeof(vidc))) {
- current_vidc = vidc;
- vidc_writel(VIDC20_CTRL| vidc.control);
- vidc_writel(0xd0000000 | vidc.pll_ctl);
- vidc_writel(0x80000000 | vidc.h_cycle);
- vidc_writel(0x81000000 | vidc.h_sync_width);
- vidc_writel(0x82000000 | vidc.h_border_start);
- vidc_writel(0x83000000 | vidc.h_display_start);
- vidc_writel(0x84000000 | vidc.h_display_end);
- vidc_writel(0x85000000 | vidc.h_border_end);
- vidc_writel(0x86000000);
- vidc_writel(0x87000000 | vidc.h_interlace);
- vidc_writel(0x90000000 | vidc.v_cycle);
- vidc_writel(0x91000000 | vidc.v_sync_width);
- vidc_writel(0x92000000 | vidc.v_border_start);
- vidc_writel(0x93000000 | vidc.v_display_start);
- vidc_writel(0x94000000 | vidc.v_display_end);
- vidc_writel(0x95000000 | vidc.v_border_end);
- vidc_writel(0x96000000);
- vidc_writel(0x97000000);
- }
- iomd_writel(fsize, IOMD_FSIZE);
- ext_ctl = acornfb_default_econtrol();
- if (var->sync & FB_SYNC_COMP_HIGH_ACT) /* should be FB_SYNC_COMP */
- ext_ctl |= VIDC20_ECTL_HS_NCSYNC | VIDC20_ECTL_VS_NCSYNC;
- else {
- if (var->sync & FB_SYNC_HOR_HIGH_ACT)
- ext_ctl |= VIDC20_ECTL_HS_HSYNC;
- else
- ext_ctl |= VIDC20_ECTL_HS_NHSYNC;
- if (var->sync & FB_SYNC_VERT_HIGH_ACT)
- ext_ctl |= VIDC20_ECTL_VS_VSYNC;
- else
- ext_ctl |= VIDC20_ECTL_VS_NVSYNC;
- }
- vidc_writel(VIDC20_ECTL | ext_ctl);
- words_per_line = var->xres * var->bits_per_pixel / 32;
- if (current_par.using_vram && info->fix.smem_len == 2048*1024)
- words_per_line /= 2;
- /* RiscPC doesn't use the VIDC's VRAM control. */
- dat_ctl = VIDC20_DCTL_VRAM_DIS | VIDC20_DCTL_SNA | words_per_line;
- /* The data bus width is dependent on both the type
- * and amount of video memory.
- * DRAM 32bit low
- * 1MB VRAM 32bit
- * 2MB VRAM 64bit
- */
- if (current_par.using_vram && current_par.vram_half_sam == 2048)
- dat_ctl |= VIDC20_DCTL_BUS_D63_0;
- else
- dat_ctl |= VIDC20_DCTL_BUS_D31_0;
- vidc_writel(VIDC20_DCTL | dat_ctl);
- #ifdef DEBUG_MODE_SELECTION
- printk(KERN_DEBUG "VIDC registers for %dx%dx%d:\n", var->xres,
- var->yres, var->bits_per_pixel);
- printk(KERN_DEBUG " H-cycle : %d\n", vidc.h_cycle);
- printk(KERN_DEBUG " H-sync-width : %d\n", vidc.h_sync_width);
- printk(KERN_DEBUG " H-border-start : %d\n", vidc.h_border_start);
- printk(KERN_DEBUG " H-display-start : %d\n", vidc.h_display_start);
- printk(KERN_DEBUG " H-display-end : %d\n", vidc.h_display_end);
- printk(KERN_DEBUG " H-border-end : %d\n", vidc.h_border_end);
- printk(KERN_DEBUG " H-interlace : %d\n", vidc.h_interlace);
- printk(KERN_DEBUG " V-cycle : %d\n", vidc.v_cycle);
- printk(KERN_DEBUG " V-sync-width : %d\n", vidc.v_sync_width);
- printk(KERN_DEBUG " V-border-start : %d\n", vidc.v_border_start);
- printk(KERN_DEBUG " V-display-start : %d\n", vidc.v_display_start);
- printk(KERN_DEBUG " V-display-end : %d\n", vidc.v_display_end);
- printk(KERN_DEBUG " V-border-end : %d\n", vidc.v_border_end);
- printk(KERN_DEBUG " Ext Ctrl (C) : 0x%08X\n", ext_ctl);
- printk(KERN_DEBUG " PLL Ctrl (D) : 0x%08X\n", vidc.pll_ctl);
- printk(KERN_DEBUG " Ctrl (E) : 0x%08X\n", vidc.control);
- printk(KERN_DEBUG " Data Ctrl (F) : 0x%08X\n", dat_ctl);
- printk(KERN_DEBUG " Fsize : 0x%08X\n", fsize);
- #endif
- }
- /*
- * We have to take note of the VIDC20's 16-bit palette here.
- * The VIDC20 looks up a 16 bit pixel as follows:
- *
- * bits 111111
- * 5432109876543210
- * red ++++++++ (8 bits, 7 to 0)
- * green ++++++++ (8 bits, 11 to 4)
- * blue ++++++++ (8 bits, 15 to 8)
- *
- * We use a pixel which looks like:
- *
- * bits 111111
- * 5432109876543210
- * red +++++ (5 bits, 4 to 0)
- * green +++++ (5 bits, 9 to 5)
- * blue +++++ (5 bits, 14 to 10)
- */
- static int
- acornfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
- u_int trans, struct fb_info *info)
- {
- union palette pal;
- if (regno >= current_par.palette_size)
- return 1;
- if (regno < 16 && info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
- u32 pseudo_val;
- pseudo_val = regno << info->var.red.offset;
- pseudo_val |= regno << info->var.green.offset;
- pseudo_val |= regno << info->var.blue.offset;
- ((u32 *)info->pseudo_palette)[regno] = pseudo_val;
- }
- pal.p = 0;
- pal.vidc20.red = red >> 8;
- pal.vidc20.green = green >> 8;
- pal.vidc20.blue = blue >> 8;
- current_par.palette[regno] = pal;
- if (info->var.bits_per_pixel == 16) {
- int i;
- pal.p = 0;
- vidc_writel(0x10000000);
- for (i = 0; i < 256; i += 1) {
- pal.vidc20.red = current_par.palette[ i & 31].vidc20.red;
- pal.vidc20.green = current_par.palette[(i >> 1) & 31].vidc20.green;
- pal.vidc20.blue = current_par.palette[(i >> 2) & 31].vidc20.blue;
- vidc_writel(pal.p);
- /* Palette register pointer auto-increments */
- }
- } else {
- vidc_writel(0x10000000 | regno);
- vidc_writel(pal.p);
- }
- return 0;
- }
- #endif
- /*
- * Before selecting the timing parameters, adjust
- * the resolution to fit the rules.
- */
- static int
- acornfb_adjust_timing(struct fb_info *info, struct fb_var_screeninfo *var, u_int fontht)
- {
- u_int font_line_len, sam_size, min_size, size, nr_y;
- /* xres must be even */
- var->xres = (var->xres + 1) & ~1;
- /*
- * We don't allow xres_virtual to differ from xres
- */
- var->xres_virtual = var->xres;
- var->xoffset = 0;
- if (current_par.using_vram)
- sam_size = current_par.vram_half_sam * 2;
- else
- sam_size = 16;
- /*
- * Now, find a value for yres_virtual which allows
- * us to do ywrap scrolling. The value of
- * yres_virtual must be such that the end of the
- * displayable frame buffer must be aligned with
- * the start of a font line.
- */
- font_line_len = var->xres * var->bits_per_pixel * fontht / 8;
- min_size = var->xres * var->yres * var->bits_per_pixel / 8;
- /*
- * If minimum screen size is greater than that we have
- * available, reject it.
- */
- if (min_size > info->fix.smem_len)
- return -EINVAL;
- /* Find int 'y', such that y * fll == s * sam < maxsize
- * y = s * sam / fll; s = maxsize / sam
- */
- for (size = info->fix.smem_len;
- nr_y = size / font_line_len, min_size <= size;
- size -= sam_size) {
- if (nr_y * font_line_len == size)
- break;
- }
- nr_y *= fontht;
- if (var->accel_flags & FB_ACCELF_TEXT) {
- if (min_size > size) {
- /*
- * failed, use ypan
- */
- size = info->fix.smem_len;
- var->yres_virtual = size / (font_line_len / fontht);
- } else
- var->yres_virtual = nr_y;
- } else if (var->yres_virtual > nr_y)
- var->yres_virtual = nr_y;
- current_par.screen_end = info->fix.smem_start + size;
- /*
- * Fix yres & yoffset if needed.
- */
- if (var->yres > var->yres_virtual)
- var->yres = var->yres_virtual;
- if (var->vmode & FB_VMODE_YWRAP) {
- if (var->yoffset > var->yres_virtual)
- var->yoffset = var->yres_virtual;
- } else {
- if (var->yoffset + var->yres > var->yres_virtual)
- var->yoffset = var->yres_virtual - var->yres;
- }
- /* hsync_len must be even */
- var->hsync_len = (var->hsync_len + 1) & ~1;
- #ifdef HAS_VIDC
- /* left_margin must be odd */
- if ((var->left_margin & 1) == 0) {
- var->left_margin -= 1;
- var->right_margin += 1;
- }
- /* right_margin must be odd */
- var->right_margin |= 1;
- #elif defined(HAS_VIDC20)
- /* left_margin must be even */
- if (var->left_margin & 1) {
- var->left_margin += 1;
- var->right_margin -= 1;
- }
- /* right_margin must be even */
- if (var->right_margin & 1)
- var->right_margin += 1;
- #endif
- if (var->vsync_len < 1)
- var->vsync_len = 1;
- return 0;
- }
- static int
- acornfb_validate_timing(struct fb_var_screeninfo *var,
- struct fb_monspecs *monspecs)
- {
- unsigned long hs, vs;
- /*
- * hs(Hz) = 10^12 / (pixclock * xtotal)
- * vs(Hz) = hs(Hz) / ytotal
- *
- * No need to do long long divisions or anything
- * like that if you factor it correctly
- */
- hs = 1953125000 / var->pixclock;
- hs = hs * 512 /
- (var->xres + var->left_margin + var->right_margin + var->hsync_len);
- vs = hs /
- (var->yres + var->upper_margin + var->lower_margin + var->vsync_len);
- return (vs >= monspecs->vfmin && vs <= monspecs->vfmax &&
- hs >= monspecs->hfmin && hs <= monspecs->hfmax) ? 0 : -EINVAL;
- }
- static inline void
- acornfb_update_dma(struct fb_info *info, struct fb_var_screeninfo *var)
- {
- u_int off = var->yoffset * info->fix.line_length;
- #if defined(HAS_MEMC)
- memc_write(VDMA_INIT, off >> 2);
- #elif defined(HAS_IOMD)
- iomd_writel(info->fix.smem_start + off, IOMD_VIDINIT);
- #endif
- }
- static int
- acornfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
- {
- u_int fontht;
- int err;
- /*
- * FIXME: Find the font height
- */
- fontht = 8;
- var->red.msb_right = 0;
- var->green.msb_right = 0;
- var->blue.msb_right = 0;
- var->transp.msb_right = 0;
- switch (var->bits_per_pixel) {
- case 1: case 2: case 4: case 8:
- var->red.offset = 0;
- var->red.length = var->bits_per_pixel;
- var->green = var->red;
- var->blue = var->red;
- var->transp.offset = 0;
- var->transp.length = 0;
- break;
- #ifdef HAS_VIDC20
- case 16:
- var->red.offset = 0;
- var->red.length = 5;
- var->green.offset = 5;
- var->green.length = 5;
- var->blue.offset = 10;
- var->blue.length = 5;
- var->transp.offset = 15;
- var->transp.length = 1;
- break;
- case 32:
- var->red.offset = 0;
- var->red.length = 8;
- var->green.offset = 8;
- var->green.length = 8;
- var->blue.offset = 16;
- var->blue.length = 8;
- var->transp.offset = 24;
- var->transp.length = 4;
- break;
- #endif
- default:
- return -EINVAL;
- }
- /*
- * Check to see if the pixel rate is valid.
- */
- if (!acornfb_valid_pixrate(var))
- return -EINVAL;
- /*
- * Validate and adjust the resolution to
- * match the video generator hardware.
- */
- err = acornfb_adjust_timing(info, var, fontht);
- if (err)
- return err;
- /*
- * Validate the timing against the
- * monitor hardware.
- */
- return acornfb_validate_timing(var, &info->monspecs);
- }
- static int acornfb_set_par(struct fb_info *info)
- {
- switch (info->var.bits_per_pixel) {
- case 1:
- current_par.palette_size = 2;
- info->fix.visual = FB_VISUAL_MONO10;
- break;
- case 2:
- current_par.palette_size = 4;
- info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
- break;
- case 4:
- current_par.palette_size = 16;
- info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
- break;
- case 8:
- current_par.palette_size = VIDC_PALETTE_SIZE;
- #ifdef HAS_VIDC
- info->fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;
- #else
- info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
- #endif
- break;
- #ifdef HAS_VIDC20
- case 16:
- current_par.palette_size = 32;
- info->fix.visual = FB_VISUAL_DIRECTCOLOR;
- break;
- case 32:
- current_par.palette_size = VIDC_PALETTE_SIZE;
- info->fix.visual = FB_VISUAL_DIRECTCOLOR;
- break;
- #endif
- default:
- BUG();
- }
- info->fix.line_length = (info->var.xres * info->var.bits_per_pixel) / 8;
- #if defined(HAS_MEMC)
- {
- unsigned long size = info->fix.smem_len - VDMA_XFERSIZE;
- memc_write(VDMA_START, 0);
- memc_write(VDMA_END, size >> 2);
- }
- #elif defined(HAS_IOMD)
- {
- unsigned long start, size;
- u_int control;
- start = info->fix.smem_start;
- size = current_par.screen_end;
- if (current_par.using_vram) {
- size -= current_par.vram_half_sam;
- control = DMA_CR_E | (current_par.vram_half_sam / 256);
- } else {
- size -= 16;
- control = DMA_CR_E | DMA_CR_D | 16;
- }
- iomd_writel(start, IOMD_VIDSTART);
- iomd_writel(size, IOMD_VIDEND);
- iomd_writel(control, IOMD_VIDCR);
- }
- #endif
- acornfb_update_dma(info, &info->var);
- acornfb_set_timing(info);
- return 0;
- }
- static int
- acornfb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
- {
- u_int y_bottom = var->yoffset;
- if (!(var->vmode & FB_VMODE_YWRAP))
- y_bottom += var->yres;
- BUG_ON(y_bottom > var->yres_virtual);
- acornfb_update_dma(info, var);
- return 0;
- }
- static struct fb_ops acornfb_ops = {
- .owner = THIS_MODULE,
- .fb_check_var = acornfb_check_var,
- .fb_set_par = acornfb_set_par,
- .fb_setcolreg = acornfb_setcolreg,
- .fb_pan_display = acornfb_pan_display,
- .fb_fillrect = cfb_fillrect,
- .fb_copyarea = cfb_copyarea,
- .fb_imageblit = cfb_imageblit,
- };
- /*
- * Everything after here is initialisation!!!
- */
- static struct fb_videomode modedb[] __devinitdata = {
- { /* 320x256 @ 50Hz */
- NULL, 50, 320, 256, 125000, 92, 62, 35, 19, 38, 2,
- FB_SYNC_COMP_HIGH_ACT,
- FB_VMODE_NONINTERLACED
- }, { /* 640x250 @ 50Hz, 15.6 kHz hsync */
- NULL, 50, 640, 250, 62500, 185, 123, 38, 21, 76, 3,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 640x256 @ 50Hz, 15.6 kHz hsync */
- NULL, 50, 640, 256, 62500, 185, 123, 35, 18, 76, 3,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 640x512 @ 50Hz, 26.8 kHz hsync */
- NULL, 50, 640, 512, 41667, 113, 87, 18, 1, 56, 3,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 640x250 @ 70Hz, 31.5 kHz hsync */
- NULL, 70, 640, 250, 39722, 48, 16, 109, 88, 96, 2,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 640x256 @ 70Hz, 31.5 kHz hsync */
- NULL, 70, 640, 256, 39722, 48, 16, 106, 85, 96, 2,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 640x352 @ 70Hz, 31.5 kHz hsync */
- NULL, 70, 640, 352, 39722, 48, 16, 58, 37, 96, 2,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 640x480 @ 60Hz, 31.5 kHz hsync */
- NULL, 60, 640, 480, 39722, 48, 16, 32, 11, 96, 2,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 800x600 @ 56Hz, 35.2 kHz hsync */
- NULL, 56, 800, 600, 27778, 101, 23, 22, 1, 100, 2,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 896x352 @ 60Hz, 21.8 kHz hsync */
- NULL, 60, 896, 352, 41667, 59, 27, 9, 0, 118, 3,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 1024x 768 @ 60Hz, 48.4 kHz hsync */
- NULL, 60, 1024, 768, 15385, 160, 24, 29, 3, 136, 6,
- 0,
- FB_VMODE_NONINTERLACED
- }, { /* 1280x1024 @ 60Hz, 63.8 kHz hsync */
- NULL, 60, 1280, 1024, 9090, 186, 96, 38, 1, 160, 3,
- 0,
- FB_VMODE_NONINTERLACED
- }
- };
- static struct fb_videomode acornfb_default_mode __devinitdata = {
- .name = NULL,
- .refresh = 60,
- .xres = 640,
- .yres = 480,
- .pixclock = 39722,
- .left_margin = 56,
- .right_margin = 16,
- .upper_margin = 34,
- .lower_margin = 9,
- .hsync_len = 88,
- .vsync_len = 2,
- .sync = 0,
- .vmode = FB_VMODE_NONINTERLACED
- };
- static void __devinit acornfb_init_fbinfo(void)
- {
- static int first = 1;
- if (!first)
- return;
- first = 0;
- fb_info.fbops = &acornfb_ops;
- fb_info.flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
- fb_info.pseudo_palette = current_par.pseudo_palette;
- strcpy(fb_info.fix.id, "Acorn");
- fb_info.fix.type = FB_TYPE_PACKED_PIXELS;
- fb_info.fix.type_aux = 0;
- fb_info.fix.xpanstep = 0;
- fb_info.fix.ypanstep = 1;
- fb_info.fix.ywrapstep = 1;
- fb_info.fix.line_length = 0;
- fb_info.fix.accel = FB_ACCEL_NONE;
- /*
- * setup initial parameters
- */
- memset(&fb_info.var, 0, sizeof(fb_info.var));
- #if defined(HAS_VIDC20)
- fb_info.var.red.length = 8;
- fb_info.var.transp.length = 4;
- #elif defined(HAS_VIDC)
- fb_info.var.red.length = 4;
- fb_info.var.transp.length = 1;
- #endif
- fb_info.var.green = fb_info.var.red;
- fb_info.var.blue = fb_info.var.red;
- fb_info.var.nonstd = 0;
- fb_info.var.activate = FB_ACTIVATE_NOW;
- fb_info.var.height = -1;
- fb_info.var.width = -1;
- fb_info.var.vmode = FB_VMODE_NONINTERLACED;
- fb_info.var.accel_flags = FB_ACCELF_TEXT;
- current_par.dram_size = 0;
- current_par.montype = -1;
- current_par.dpms = 0;
- }
- /*
- * setup acornfb options:
- *
- * mon:hmin-hmax:vmin-vmax:dpms:width:height
- * Set monitor parameters:
- * hmin = horizontal minimum frequency (Hz)
- * hmax = horizontal maximum frequency (Hz) (optional)
- * vmin = vertical minimum frequency (Hz)
- * vmax = vertical maximum frequency (Hz) (optional)
- * dpms = DPMS supported? (optional)
- * width = width of picture in mm. (optional)
- * height = height of picture in mm. (optional)
- *
- * montype:type
- * Set RISC-OS style monitor type:
- * 0 (or tv) - TV frequency
- * 1 (or multi) - Multi frequency
- * 2 (or hires) - Hi-res monochrome
- * 3 (or vga) - VGA
- * 4 (or svga) - SVGA
- * auto, or option missing
- * - try hardware detect
- *
- * dram:size
- * Set the amount of DRAM to use for the frame buffer
- * (even if you have VRAM).
- * size can optionally be followed by 'M' or 'K' for
- * MB or KB respectively.
- */
- static void __devinit acornfb_parse_mon(char *opt)
- {
- char *p = opt;
- current_par.montype = -2;
- fb_info.monspecs.hfmin = simple_strtoul(p, &p, 0);
- if (*p == '-')
- fb_info.monspecs.hfmax = simple_strtoul(p + 1, &p, 0);
- else
- fb_info.monspecs.hfmax = fb_info.monspecs.hfmin;
- if (*p != ':')
- goto bad;
- fb_info.monspecs.vfmin = simple_strtoul(p + 1, &p, 0);
- if (*p == '-')
- fb_info.monspecs.vfmax = simple_strtoul(p + 1, &p, 0);
- else
- fb_info.monspecs.vfmax = fb_info.monspecs.vfmin;
- if (*p != ':')
- goto check_values;
- fb_info.monspecs.dpms = simple_strtoul(p + 1, &p, 0);
- if (*p != ':')
- goto check_values;
- fb_info.var.width = simple_strtoul(p + 1, &p, 0);
- if (*p != ':')
- goto check_values;
- fb_info.var.height = simple_strtoul(p + 1, NULL, 0);
- check_values:
- if (fb_info.monspecs.hfmax < fb_info.monspecs.hfmin ||
- fb_info.monspecs.vfmax < fb_info.monspecs.vfmin)
- goto bad;
- return;
- bad:
- printk(KERN_ERR "Acornfb: bad monitor settings: %s\n", opt);
- current_par.montype = -1;
- }
- static void __devinit acornfb_parse_montype(char *opt)
- {
- current_par.montype = -2;
- if (strncmp(opt, "tv", 2) == 0) {
- opt += 2;
- current_par.montype = 0;
- } else if (strncmp(opt, "multi", 5) == 0) {
- opt += 5;
- current_par.montype = 1;
- } else if (strncmp(opt, "hires", 5) == 0) {
- opt += 5;
- current_par.montype = 2;
- } else if (strncmp(opt, "vga", 3) == 0) {
- opt += 3;
- current_par.montype = 3;
- } else if (strncmp(opt, "svga", 4) == 0) {
- opt += 4;
- current_par.montype = 4;
- } else if (strncmp(opt, "auto", 4) == 0) {
- opt += 4;
- current_par.montype = -1;
- } else if (isdigit(*opt))
- current_par.montype = simple_strtoul(opt, &opt, 0);
- if (current_par.montype == -2 ||
- current_par.montype > NR_MONTYPES) {
- printk(KERN_ERR "acornfb: unknown monitor type: %s\n",
- opt);
- current_par.montype = -1;
- } else
- if (opt && *opt) {
- if (strcmp(opt, ",dpms") == 0)
- current_par.dpms = 1;
- else
- printk(KERN_ERR
- "acornfb: unknown monitor option: %s\n",
- opt);
- }
- }
- static void __devinit acornfb_parse_dram(char *opt)
- {
- unsigned int size;
- size = simple_strtoul(opt, &opt, 0);
- if (opt) {
- switch (*opt) {
- case 'M':
- case 'm':
- size *= 1024;
- case 'K':
- case 'k':
- size *= 1024;
- default:
- break;
- }
- }
- current_par.dram_size = size;
- }
- static struct options {
- char *name;
- void (*parse)(char *opt);
- } opt_table[] __devinitdata = {
- { "mon", acornfb_parse_mon },
- { "montype", acornfb_parse_montype },
- { "dram", acornfb_parse_dram },
- { NULL, NULL }
- };
- static int __devinit acornfb_setup(char *options)
- {
- struct options *optp;
- char *opt;
- if (!options || !*options)
- return 0;
- acornfb_init_fbinfo();
- while ((opt = strsep(&options, ",")) != NULL) {
- if (!*opt)
- continue;
- for (optp = opt_table; optp->name; optp++) {
- int optlen;
- optlen = strlen(optp->name);
- if (strncmp(opt, optp->name, optlen) == 0 &&
- opt[optlen] == ':') {
- optp->parse(opt + optlen + 1);
- break;
- }
- }
- if (!optp->name)
- printk(KERN_ERR "acornfb: unknown parameter: %s\n",
- opt);
- }
- return 0;
- }
- /*
- * Detect type of monitor connected
- * For now, we just assume SVGA
- */
- static int __devinit acornfb_detect_monitortype(void)
- {
- return 4;
- }
- /*
- * This enables the unused memory to be freed on older Acorn machines.
- * We are freeing memory on behalf of the architecture initialisation
- * code here.
- */
- static inline void
- free_unused_pages(unsigned int virtual_start, unsigned int virtual_end)
- {
- int mb_freed = 0;
- /*
- * Align addresses
- */
- virtual_start = PAGE_ALIGN(virtual_start);
- virtual_end = PAGE_ALIGN(virtual_end);
- while (virtual_start < virtual_end) {
- struct page *page;
- /*
- * Clear page reserved bit,
- * set count to 1, and free
- * the page.
- */
- page = virt_to_page(virtual_start);
- ClearPageReserved(page);
- init_page_count(page);
- free_page(virtual_start);
- virtual_start += PAGE_SIZE;
- mb_freed += PAGE_SIZE / 1024;
- }
- printk("acornfb: freed %dK memory\n", mb_freed);
- }
- static int __devinit acornfb_probe(struct platform_device *dev)
- {
- unsigned long size;
- u_int h_sync, v_sync;
- int rc, i;
- char *option = NULL;
- if (fb_get_options("acornfb", &option))
- return -ENODEV;
- acornfb_setup(option);
- acornfb_init_fbinfo();
- current_par.dev = &dev->dev;
- if (current_par.montype == -1)
- current_par.montype = acornfb_detect_monitortype();
- if (current_par.montype == -1 || current_par.montype > NR_MONTYPES)
- current_par.montype = 4;
- if (current_par.montype >= 0) {
- fb_info.monspecs = monspecs[current_par.montype];
- fb_info.monspecs.dpms = current_par.dpms;
- }
- /*
- * Try to select a suitable default mode
- */
- for (i = 0; i < ARRAY_SIZE(modedb); i++) {
- unsigned long hs;
- hs = modedb[i].refresh *
- (modedb[i].yres + modedb[i].upper_margin +
- modedb[i].lower_margin + modedb[i].vsync_len);
- if (modedb[i].xres == DEFAULT_XRES &&
- modedb[i].yres == DEFAULT_YRES &&
- modedb[i].refresh >= fb_info.monspecs.vfmin &&
- modedb[i].refresh <= fb_info.monspecs.vfmax &&
- hs >= fb_info.monspecs.hfmin &&
- hs <= fb_info.monspecs.hfmax) {
- acornfb_default_mode = modedb[i];
- break;
- }
- }
- fb_info.screen_base = (char *)SCREEN_BASE;
- fb_info.fix.smem_start = SCREEN_START;
- current_par.using_vram = 0;
- /*
- * If vram_size is set, we are using VRAM in
- * a Risc PC. However, if the user has specified
- * an amount of DRAM then use that instead.
- */
- if (vram_size && !current_par.dram_size) {
- size = vram_size;
- current_par.vram_half_sam = vram_size / 1024;
- current_par.using_vram = 1;
- } else if (current_par.dram_size)
- size = current_par.dram_size;
- else
- size = MAX_SIZE;
- /*
- * Limit maximum screen size.
- */
- if (size > MAX_SIZE)
- size = MAX_SIZE;
- size = PAGE_ALIGN(size);
- #if defined(HAS_VIDC20)
- if (!current_par.using_vram) {
- dma_addr_t handle;
- void *base;
- /*
- * RiscPC needs to allocate the DRAM memory
- * for the framebuffer if we are not using
- * VRAM.
- */
- base = dma_alloc_writecombine(current_par.dev, size, &handle,
- GFP_KERNEL);
- if (base == NULL) {
- printk(KERN_ERR "acornfb: unable to allocate screen "
- "memory\n");
- return -ENOMEM;
- }
- fb_info.screen_base = base;
- fb_info.fix.smem_start = handle;
- }
- #endif
- #if defined(HAS_VIDC)
- /*
- * Archimedes/A5000 machines use a fixed address for their
- * framebuffers. Free unused pages
- */
- free_unused_pages(PAGE_OFFSET + size, PAGE_OFFSET + MAX_SIZE);
- #endif
- fb_info.fix.smem_len = size;
- current_par.palette_size = VIDC_PALETTE_SIZE;
- /*
- * Lookup the timing for this resolution. If we can't
- * find it, then we can't restore it if we change
- * the resolution, so we disable this feature.
- */
- do {
- rc = fb_find_mode(&fb_info.var, &fb_info, NULL, modedb,
- ARRAY_SIZE(modedb),
- &acornfb_default_mode, DEFAULT_BPP);
- /*
- * If we found an exact match, all ok.
- */
- if (rc == 1)
- break;
- rc = fb_find_mode(&fb_info.var, &fb_info, NULL, NULL, 0,
- &acornfb_default_mode, DEFAULT_BPP);
- /*
- * If we found an exact match, all ok.
- */
- if (rc == 1)
- break;
- rc = fb_find_mode(&fb_info.var, &fb_info, NULL, modedb,
- ARRAY_SIZE(modedb),
- &acornfb_default_mode, DEFAULT_BPP);
- if (rc)
- break;
- rc = fb_find_mode(&fb_info.var, &fb_info, NULL, NULL, 0,
- &acornfb_default_mode, DEFAULT_BPP);
- } while (0);
- /*
- * If we didn't find an exact match, try the
- * generic database.
- */
- if (rc == 0) {
- printk("Acornfb: no valid mode found\n");
- return -EINVAL;
- }
- h_sync = 1953125000 / fb_info.var.pixclock;
- h_sync = h_sync * 512 / (fb_info.var.xres + fb_info.var.left_margin +
- fb_info.var.right_margin + fb_info.var.hsync_len);
- v_sync = h_sync / (fb_info.var.yres + fb_info.var.upper_margin +
- fb_info.var.lower_margin + fb_info.var.vsync_len);
- printk(KERN_INFO "Acornfb: %dkB %cRAM, %s, using %dx%d, "
- "%d.%03dkHz, %dHz\n",
- fb_info.fix.smem_len / 1024,
- current_par.using_vram ? 'V' : 'D',
- VIDC_NAME, fb_info.var.xres, fb_info.var.yres,
- h_sync / 1000, h_sync % 1000, v_sync);
- printk(KERN_INFO "Acornfb: Monitor: %d.%03d-%d.%03dkHz, %d-%dHz%s\n",
- fb_info.monspecs.hfmin / 1000, fb_info.monspecs.hfmin % 1000,
- fb_info.monspecs.hfmax / 1000, fb_info.monspecs.hfmax % 1000,
- fb_info.monspecs.vfmin, fb_info.monspecs.vfmax,
- fb_info.monspecs.dpms ? ", DPMS" : "");
- if (fb_set_var(&fb_info, &fb_info.var))
- printk(KERN_ERR "Acornfb: unable to set display parameters\n");
- if (register_framebuffer(&fb_info) < 0)
- return -EINVAL;
- return 0;
- }
- static struct platform_driver acornfb_driver = {
- .probe = acornfb_probe,
- .driver = {
- .name = "acornfb",
- },
- };
- static int __init acornfb_init(void)
- {
- return platform_driver_register(&acornfb_driver);
- }
- module_init(acornfb_init);
- MODULE_AUTHOR("Russell King");
- MODULE_DESCRIPTION("VIDC 1/1a/20 framebuffer driver");
- MODULE_LICENSE("GPL");
|