blob: 162012bb9264edd2bb58af8b4d9b609e4b940697 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/video/q40fb.c -- Q40 frame buffer device
3 *
4 * Copyright (C) 2001
5 *
6 * Richard Zidlicky <rz@linux-m68k.org>
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file COPYING in the main directory of this archive for
10 * more details.
11 */
12
13#include <linux/kernel.h>
14#include <linux/errno.h>
15#include <linux/string.h>
16#include <linux/mm.h>
17#include <linux/tty.h>
18#include <linux/slab.h>
19#include <linux/delay.h>
20#include <linux/interrupt.h>
21
22#include <asm/uaccess.h>
23#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/system.h>
25#include <asm/q40_master.h>
26#include <linux/fb.h>
27#include <linux/module.h>
28#include <asm/pgtable.h>
29
30#define Q40_PHYS_SCREEN_ADDR 0xFE800000
31
32static struct fb_fix_screeninfo q40fb_fix __initdata = {
33 .id = "Q40",
34 .smem_len = 1024*1024,
35 .type = FB_TYPE_PACKED_PIXELS,
36 .visual = FB_VISUAL_TRUECOLOR,
37 .line_length = 1024*2,
38 .accel = FB_ACCEL_NONE,
39};
40
41static struct fb_var_screeninfo q40fb_var __initdata = {
42 .xres = 1024,
43 .yres = 512,
44 .xres_virtual = 1024,
45 .yres_virtual = 512,
46 .bits_per_pixel = 16,
47 .red = {6, 5, 0},
48 .green = {11, 5, 0},
49 .blue = {0, 6, 0},
50 .activate = FB_ACTIVATE_NOW,
51 .height = 230,
52 .width = 300,
53 .vmode = FB_VMODE_NONINTERLACED,
54};
55
56static int q40fb_setcolreg(unsigned regno, unsigned red, unsigned green,
57 unsigned blue, unsigned transp,
58 struct fb_info *info)
59{
60 /*
61 * Set a single color register. The values supplied have a 16 bit
62 * magnitude.
63 * Return != 0 for invalid regno.
64 */
65
66 if (regno > 255)
67 return 1;
68 red>>=11;
69 green>>=11;
70 blue>>=10;
71
72 if (regno < 16) {
73 ((u32 *)info->pseudo_palette)[regno] = ((red & 31) <<6) |
74 ((green & 31) << 11) |
75 (blue & 63);
76 }
77 return 0;
78}
79
80static struct fb_ops q40fb_ops = {
81 .owner = THIS_MODULE,
82 .fb_setcolreg = q40fb_setcolreg,
83 .fb_fillrect = cfb_fillrect,
84 .fb_copyarea = cfb_copyarea,
85 .fb_imageblit = cfb_imageblit,
86 .fb_cursor = soft_cursor,
87};
88
89static int __init q40fb_probe(struct device *device)
90{
91 struct platform_device *dev = to_platform_device(device);
92 struct fb_info *info;
93
94 if (!MACH_IS_Q40)
95 return -ENXIO;
96
97 /* mapped in q40/config.c */
98 q40fb_fix.smem_start = Q40_PHYS_SCREEN_ADDR;
99
100 info = framebuffer_alloc(sizeof(u32) * 256, &dev->dev);
101 if (!info)
102 return -ENOMEM;
103
104 info->var = q40fb_var;
105 info->fix = q40fb_fix;
106 info->fbops = &q40fb_ops;
107 info->flags = FBINFO_DEFAULT; /* not as module for now */
108 info->pseudo_palette = info->par;
109 info->par = NULL;
110 info->screen_base = (char *) q40fb_fix.smem_start;
111
112 if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) {
113 framebuffer_release(info);
114 return -ENOMEM;
115 }
116
117 master_outb(3, DISPLAY_CONTROL_REG);
118
119 if (register_framebuffer(info) < 0) {
120 printk(KERN_ERR "Unable to register Q40 frame buffer\n");
121 fb_dealloc_cmap(&info->cmap);
122 framebuffer_release(info);
123 return -EINVAL;
124 }
125
126 printk(KERN_INFO "fb%d: Q40 frame buffer alive and kicking !\n",
127 info->node);
128 return 0;
129}
130
131static struct device_driver q40fb_driver = {
132 .name = "q40fb",
133 .bus = &platform_bus_type,
134 .probe = q40fb_probe,
135};
136
137static struct platform_device q40fb_device = {
138 .name = "q40fb",
139};
140
141int __init q40fb_init(void)
142{
143 int ret = 0;
144
145 if (fb_get_options("q40fb", NULL))
146 return -ENODEV;
147
148 ret = driver_register(&q40fb_driver);
149
150 if (!ret) {
151 ret = platform_device_register(&q40fb_device);
152 if (ret)
153 driver_unregister(&q40fb_driver);
154 }
155 return ret;
156}
157
158module_init(q40fb_init);
159MODULE_LICENSE("GPL");