Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* p9100.c: P9100 frame buffer driver |
| 2 | * |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 3 | * Copyright (C) 2003, 2006 David S. Miller (davem@davemloft.net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright 1999 Derrick J Brashear (shadow@dementia.org) |
| 5 | * |
| 6 | * Driver layout based loosely on tgafb.c, see that file for credits. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/kernel.h> |
| 11 | #include <linux/errno.h> |
| 12 | #include <linux/string.h> |
| 13 | #include <linux/slab.h> |
| 14 | #include <linux/delay.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/fb.h> |
| 17 | #include <linux/mm.h> |
Robert Reif | 6cd5a86 | 2008-05-08 21:37:30 -0700 | [diff] [blame] | 18 | #include <linux/of_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/fbio.h> |
| 22 | |
| 23 | #include "sbuslib.h" |
| 24 | |
| 25 | /* |
| 26 | * Local functions. |
| 27 | */ |
| 28 | |
| 29 | static int p9100_setcolreg(unsigned, unsigned, unsigned, unsigned, |
| 30 | unsigned, struct fb_info *); |
| 31 | static int p9100_blank(int, struct fb_info *); |
| 32 | |
Christoph Hellwig | 216d526 | 2006-01-14 13:21:25 -0800 | [diff] [blame] | 33 | static int p9100_mmap(struct fb_info *, struct vm_area_struct *); |
Christoph Hellwig | 67a6680 | 2006-01-14 13:21:25 -0800 | [diff] [blame] | 34 | static int p9100_ioctl(struct fb_info *, unsigned int, unsigned long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | /* |
| 37 | * Frame buffer operations |
| 38 | */ |
| 39 | |
| 40 | static struct fb_ops p9100_ops = { |
| 41 | .owner = THIS_MODULE, |
| 42 | .fb_setcolreg = p9100_setcolreg, |
| 43 | .fb_blank = p9100_blank, |
| 44 | .fb_fillrect = cfb_fillrect, |
| 45 | .fb_copyarea = cfb_copyarea, |
| 46 | .fb_imageblit = cfb_imageblit, |
| 47 | .fb_mmap = p9100_mmap, |
| 48 | .fb_ioctl = p9100_ioctl, |
Christoph Hellwig | 9ffb83b | 2005-11-12 12:11:12 -0800 | [diff] [blame] | 49 | #ifdef CONFIG_COMPAT |
| 50 | .fb_compat_ioctl = sbusfb_compat_ioctl, |
| 51 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | /* P9100 control registers */ |
| 55 | #define P9100_SYSCTL_OFF 0x0UL |
| 56 | #define P9100_VIDEOCTL_OFF 0x100UL |
| 57 | #define P9100_VRAMCTL_OFF 0x180UL |
| 58 | #define P9100_RAMDAC_OFF 0x200UL |
| 59 | #define P9100_VIDEOCOPROC_OFF 0x400UL |
| 60 | |
| 61 | /* P9100 command registers */ |
| 62 | #define P9100_CMD_OFF 0x0UL |
| 63 | |
| 64 | /* P9100 framebuffer memory */ |
| 65 | #define P9100_FB_OFF 0x0UL |
| 66 | |
| 67 | /* 3 bits: 2=8bpp 3=16bpp 5=32bpp 7=24bpp */ |
| 68 | #define SYS_CONFIG_PIXELSIZE_SHIFT 26 |
| 69 | |
| 70 | #define SCREENPAINT_TIMECTL1_ENABLE_VIDEO 0x20 /* 0 = off, 1 = on */ |
| 71 | |
| 72 | struct p9100_regs { |
| 73 | /* Registers for the system control */ |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 74 | u32 sys_base; |
| 75 | u32 sys_config; |
| 76 | u32 sys_intr; |
| 77 | u32 sys_int_ena; |
| 78 | u32 sys_alt_rd; |
| 79 | u32 sys_alt_wr; |
| 80 | u32 sys_xxx[58]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | /* Registers for the video control */ |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 83 | u32 vid_base; |
| 84 | u32 vid_hcnt; |
| 85 | u32 vid_htotal; |
| 86 | u32 vid_hsync_rise; |
| 87 | u32 vid_hblank_rise; |
| 88 | u32 vid_hblank_fall; |
| 89 | u32 vid_hcnt_preload; |
| 90 | u32 vid_vcnt; |
| 91 | u32 vid_vlen; |
| 92 | u32 vid_vsync_rise; |
| 93 | u32 vid_vblank_rise; |
| 94 | u32 vid_vblank_fall; |
| 95 | u32 vid_vcnt_preload; |
| 96 | u32 vid_screenpaint_addr; |
| 97 | u32 vid_screenpaint_timectl1; |
| 98 | u32 vid_screenpaint_qsfcnt; |
| 99 | u32 vid_screenpaint_timectl2; |
| 100 | u32 vid_xxx[15]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
| 102 | /* Registers for the video control */ |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 103 | u32 vram_base; |
| 104 | u32 vram_memcfg; |
| 105 | u32 vram_refresh_pd; |
| 106 | u32 vram_refresh_cnt; |
| 107 | u32 vram_raslo_max; |
| 108 | u32 vram_raslo_cur; |
| 109 | u32 pwrup_cfg; |
| 110 | u32 vram_xxx[25]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | /* Registers for IBM RGB528 Palette */ |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 113 | u32 ramdac_cmap_wridx; |
| 114 | u32 ramdac_palette_data; |
| 115 | u32 ramdac_pixel_mask; |
| 116 | u32 ramdac_palette_rdaddr; |
| 117 | u32 ramdac_idx_lo; |
| 118 | u32 ramdac_idx_hi; |
| 119 | u32 ramdac_idx_data; |
| 120 | u32 ramdac_idx_ctl; |
| 121 | u32 ramdac_xxx[1784]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | struct p9100_cmd_parameng { |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 125 | u32 parameng_status; |
| 126 | u32 parameng_bltcmd; |
| 127 | u32 parameng_quadcmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | struct p9100_par { |
| 131 | spinlock_t lock; |
| 132 | struct p9100_regs __iomem *regs; |
| 133 | |
| 134 | u32 flags; |
| 135 | #define P9100_FLAG_BLANKED 0x00000001 |
| 136 | |
| 137 | unsigned long physbase; |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 138 | unsigned long which_io; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | unsigned long fbsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | /** |
| 143 | * p9100_setcolreg - Optional function. Sets a color register. |
| 144 | * @regno: boolean, 0 copy local, 1 get_user() function |
| 145 | * @red: frame buffer colormap structure |
| 146 | * @green: The green value which can be up to 16 bits wide |
| 147 | * @blue: The blue value which can be up to 16 bits wide. |
| 148 | * @transp: If supported the alpha value which can be up to 16 bits wide. |
| 149 | * @info: frame buffer info structure |
| 150 | */ |
| 151 | static int p9100_setcolreg(unsigned regno, |
| 152 | unsigned red, unsigned green, unsigned blue, |
| 153 | unsigned transp, struct fb_info *info) |
| 154 | { |
| 155 | struct p9100_par *par = (struct p9100_par *) info->par; |
| 156 | struct p9100_regs __iomem *regs = par->regs; |
| 157 | unsigned long flags; |
| 158 | |
| 159 | if (regno >= 256) |
| 160 | return 1; |
| 161 | |
| 162 | red >>= 8; |
| 163 | green >>= 8; |
| 164 | blue >>= 8; |
| 165 | |
| 166 | spin_lock_irqsave(&par->lock, flags); |
| 167 | |
| 168 | sbus_writel((regno << 16), ®s->ramdac_cmap_wridx); |
| 169 | sbus_writel((red << 16), ®s->ramdac_palette_data); |
| 170 | sbus_writel((green << 16), ®s->ramdac_palette_data); |
| 171 | sbus_writel((blue << 16), ®s->ramdac_palette_data); |
| 172 | |
| 173 | spin_unlock_irqrestore(&par->lock, flags); |
| 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * p9100_blank - Optional function. Blanks the display. |
| 180 | * @blank_mode: the blank mode we want. |
| 181 | * @info: frame buffer structure that represents a single frame buffer |
| 182 | */ |
| 183 | static int |
| 184 | p9100_blank(int blank, struct fb_info *info) |
| 185 | { |
| 186 | struct p9100_par *par = (struct p9100_par *) info->par; |
| 187 | struct p9100_regs __iomem *regs = par->regs; |
| 188 | unsigned long flags; |
| 189 | u32 val; |
| 190 | |
| 191 | spin_lock_irqsave(&par->lock, flags); |
| 192 | |
| 193 | switch (blank) { |
| 194 | case FB_BLANK_UNBLANK: /* Unblanking */ |
| 195 | val = sbus_readl(®s->vid_screenpaint_timectl1); |
| 196 | val |= SCREENPAINT_TIMECTL1_ENABLE_VIDEO; |
| 197 | sbus_writel(val, ®s->vid_screenpaint_timectl1); |
| 198 | par->flags &= ~P9100_FLAG_BLANKED; |
| 199 | break; |
| 200 | |
| 201 | case FB_BLANK_NORMAL: /* Normal blanking */ |
| 202 | case FB_BLANK_VSYNC_SUSPEND: /* VESA blank (vsync off) */ |
| 203 | case FB_BLANK_HSYNC_SUSPEND: /* VESA blank (hsync off) */ |
| 204 | case FB_BLANK_POWERDOWN: /* Poweroff */ |
| 205 | val = sbus_readl(®s->vid_screenpaint_timectl1); |
| 206 | val &= ~SCREENPAINT_TIMECTL1_ENABLE_VIDEO; |
| 207 | sbus_writel(val, ®s->vid_screenpaint_timectl1); |
| 208 | par->flags |= P9100_FLAG_BLANKED; |
| 209 | break; |
| 210 | } |
| 211 | |
| 212 | spin_unlock_irqrestore(&par->lock, flags); |
| 213 | |
| 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | static struct sbus_mmap_map p9100_mmap_map[] = { |
| 218 | { CG3_MMAP_OFFSET, 0, SBUS_MMAP_FBSIZE(1) }, |
| 219 | { 0, 0, 0 } |
| 220 | }; |
| 221 | |
Christoph Hellwig | 216d526 | 2006-01-14 13:21:25 -0800 | [diff] [blame] | 222 | static int p9100_mmap(struct fb_info *info, struct vm_area_struct *vma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | { |
| 224 | struct p9100_par *par = (struct p9100_par *)info->par; |
| 225 | |
| 226 | return sbusfb_mmap_helper(p9100_mmap_map, |
| 227 | par->physbase, par->fbsize, |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 228 | par->which_io, vma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Christoph Hellwig | 67a6680 | 2006-01-14 13:21:25 -0800 | [diff] [blame] | 231 | static int p9100_ioctl(struct fb_info *info, unsigned int cmd, |
| 232 | unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | { |
| 234 | struct p9100_par *par = (struct p9100_par *) info->par; |
| 235 | |
| 236 | /* Make it look like a cg3. */ |
| 237 | return sbusfb_ioctl_helper(cmd, arg, info, |
| 238 | FBTYPE_SUN3COLOR, 8, par->fbsize); |
| 239 | } |
| 240 | |
| 241 | /* |
| 242 | * Initialisation |
| 243 | */ |
| 244 | |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 245 | static void p9100_init_fix(struct fb_info *info, int linebytes, struct device_node *dp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | { |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 247 | strlcpy(info->fix.id, dp->name, sizeof(info->fix.id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | info->fix.type = FB_TYPE_PACKED_PIXELS; |
| 250 | info->fix.visual = FB_VISUAL_PSEUDOCOLOR; |
| 251 | |
| 252 | info->fix.line_length = linebytes; |
| 253 | |
| 254 | info->fix.accel = FB_ACCEL_SUN_CGTHREE; |
| 255 | } |
| 256 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 257 | static int __devinit p9100_probe(struct of_device *op, const struct of_device_id *match) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | { |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 259 | struct device_node *dp = op->node; |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 260 | struct fb_info *info; |
| 261 | struct p9100_par *par; |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 262 | int linebytes, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 264 | info = framebuffer_alloc(sizeof(struct p9100_par), &op->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 266 | err = -ENOMEM; |
| 267 | if (!info) |
| 268 | goto out_err; |
| 269 | par = info->par; |
| 270 | |
| 271 | spin_lock_init(&par->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | /* This is the framebuffer and the only resource apps can mmap. */ |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 274 | par->physbase = op->resource[2].start; |
| 275 | par->which_io = op->resource[2].flags & IORESOURCE_BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Robert Reif | 6cd5a86 | 2008-05-08 21:37:30 -0700 | [diff] [blame] | 277 | sbusfb_fill_var(&info->var, dp, 8); |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 278 | info->var.red.length = 8; |
| 279 | info->var.green.length = 8; |
| 280 | info->var.blue.length = 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 282 | linebytes = of_getintprop_default(dp, "linebytes", info->var.xres); |
| 283 | par->fbsize = PAGE_ALIGN(linebytes * info->var.yres); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 285 | par->regs = of_ioremap(&op->resource[0], 0, |
| 286 | sizeof(struct p9100_regs), "p9100 regs"); |
| 287 | if (!par->regs) |
| 288 | goto out_release_fb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 290 | info->flags = FBINFO_DEFAULT; |
| 291 | info->fbops = &p9100_ops; |
| 292 | info->screen_base = of_ioremap(&op->resource[2], 0, |
| 293 | par->fbsize, "p9100 ram"); |
| 294 | if (!info->screen_base) |
| 295 | goto out_unmap_regs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Robert Reif | 59f7137 | 2008-05-03 21:12:00 -0700 | [diff] [blame] | 297 | p9100_blank(FB_BLANK_UNBLANK, info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 299 | if (fb_alloc_cmap(&info->cmap, 256, 0)) |
| 300 | goto out_unmap_screen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 302 | p9100_init_fix(info, linebytes, dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 304 | err = register_framebuffer(info); |
| 305 | if (err < 0) |
| 306 | goto out_dealloc_cmap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 308 | fb_set_cmap(&info->cmap, info); |
| 309 | |
| 310 | dev_set_drvdata(&op->dev, info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
Robert Reif | 194f1a68 | 2008-04-27 15:18:57 -0700 | [diff] [blame] | 312 | printk(KERN_INFO "%s: p9100 at %lx:%lx\n", |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 313 | dp->full_name, |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 314 | par->which_io, par->physbase); |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 315 | |
| 316 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 318 | out_dealloc_cmap: |
| 319 | fb_dealloc_cmap(&info->cmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 321 | out_unmap_screen: |
| 322 | of_iounmap(&op->resource[2], info->screen_base, par->fbsize); |
| 323 | |
| 324 | out_unmap_regs: |
| 325 | of_iounmap(&op->resource[0], par->regs, sizeof(struct p9100_regs)); |
| 326 | |
| 327 | out_release_fb: |
| 328 | framebuffer_release(info); |
| 329 | |
| 330 | out_err: |
| 331 | return err; |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 332 | } |
| 333 | |
David S. Miller | e3a411a3 | 2006-12-28 21:01:32 -0800 | [diff] [blame] | 334 | static int __devexit p9100_remove(struct of_device *op) |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 335 | { |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 336 | struct fb_info *info = dev_get_drvdata(&op->dev); |
| 337 | struct p9100_par *par = info->par; |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 338 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 339 | unregister_framebuffer(info); |
| 340 | fb_dealloc_cmap(&info->cmap); |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 341 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 342 | of_iounmap(&op->resource[0], par->regs, sizeof(struct p9100_regs)); |
| 343 | of_iounmap(&op->resource[2], info->screen_base, par->fbsize); |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 344 | |
David S. Miller | c7f439b | 2007-07-27 22:31:46 -0700 | [diff] [blame] | 345 | framebuffer_release(info); |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 346 | |
David S. Miller | e3a411a3 | 2006-12-28 21:01:32 -0800 | [diff] [blame] | 347 | dev_set_drvdata(&op->dev, NULL); |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 348 | |
| 349 | return 0; |
| 350 | } |
| 351 | |
| 352 | static struct of_device_id p9100_match[] = { |
| 353 | { |
| 354 | .name = "p9100", |
| 355 | }, |
| 356 | {}, |
| 357 | }; |
| 358 | MODULE_DEVICE_TABLE(of, p9100_match); |
| 359 | |
| 360 | static struct of_platform_driver p9100_driver = { |
| 361 | .name = "p9100", |
| 362 | .match_table = p9100_match, |
| 363 | .probe = p9100_probe, |
| 364 | .remove = __devexit_p(p9100_remove), |
| 365 | }; |
| 366 | |
| 367 | static int __init p9100_init(void) |
| 368 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | if (fb_get_options("p9100fb", NULL)) |
| 370 | return -ENODEV; |
| 371 | |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 372 | return of_register_driver(&p9100_driver, &of_bus_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | } |
| 374 | |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 375 | static void __exit p9100_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 377 | of_unregister_driver(&p9100_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | module_init(p9100_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | module_exit(p9100_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
| 383 | MODULE_DESCRIPTION("framebuffer driver for P9100 chipsets"); |
David S. Miller | 50312ce | 2006-06-29 14:35:52 -0700 | [diff] [blame] | 384 | MODULE_AUTHOR("David S. Miller <davem@davemloft.net>"); |
| 385 | MODULE_VERSION("2.0"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | MODULE_LICENSE("GPL"); |