Commit 335dc50c authored by Maciej W. Rozycki's avatar Maciej W. Rozycki Committed by Ralf Baechle

[TC] mips: pmag-ba-fb: Convert to the driver model

This is a set of changes to convert the driver to the driver model.  As a
side-effect the driver now supports building as a module.
Signed-off-by: default avatarMaciej W. Rozycki <macro@linux-mips.org>
Cc: James Simmons <jsimmons@infradead.org>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent e89a2cfb
...@@ -1444,8 +1444,8 @@ config FB_PMAG_AA ...@@ -1444,8 +1444,8 @@ config FB_PMAG_AA
used mainly in the MIPS-based DECstation series. used mainly in the MIPS-based DECstation series.
config FB_PMAG_BA config FB_PMAG_BA
bool "PMAG-BA TURBOchannel framebuffer support" tristate "PMAG-BA TURBOchannel framebuffer support"
depends on (FB = y) && TC depends on FB && TC
select FB_CFB_FILLRECT select FB_CFB_FILLRECT
select FB_CFB_COPYAREA select FB_CFB_COPYAREA
select FB_CFB_IMAGEBLIT select FB_CFB_IMAGEBLIT
......
...@@ -15,7 +15,8 @@ ...@@ -15,7 +15,8 @@
* Michael Engel <engel@unix-ag.org>, * Michael Engel <engel@unix-ag.org>,
* Karsten Merker <merker@linuxtag.org> and * Karsten Merker <merker@linuxtag.org> and
* Harald Koerfgen. * Harald Koerfgen.
* Copyright (c) 2005 Maciej W. Rozycki * Copyright (c) 2005, 2006 Maciej W. Rozycki
* Copyright (c) 2005 James Simmons
* *
* This file is subject to the terms and conditions of the GNU General * This file is subject to the terms and conditions of the GNU General
* Public License. See the file COPYING in the main directory of this * Public License. See the file COPYING in the main directory of this
...@@ -28,26 +29,21 @@ ...@@ -28,26 +29,21 @@
#include <linux/init.h> #include <linux/init.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/tc.h>
#include <linux/types.h> #include <linux/types.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/system.h> #include <asm/system.h>
#include <asm/dec/tc.h>
#include <video/pmag-ba-fb.h> #include <video/pmag-ba-fb.h>
struct pmagbafb_par { struct pmagbafb_par {
struct fb_info *next;
volatile void __iomem *mmio; volatile void __iomem *mmio;
volatile u32 __iomem *dac; volatile u32 __iomem *dac;
int slot;
}; };
static struct fb_info *root_pmagbafb_dev;
static struct fb_var_screeninfo pmagbafb_defined __initdata = { static struct fb_var_screeninfo pmagbafb_defined __initdata = {
.xres = 1024, .xres = 1024,
.yres = 864, .yres = 864,
...@@ -145,24 +141,19 @@ static void __init pmagbafb_erase_cursor(struct fb_info *info) ...@@ -145,24 +141,19 @@ static void __init pmagbafb_erase_cursor(struct fb_info *info)
} }
static int __init pmagbafb_init_one(int slot) static int __init pmagbafb_probe(struct device *dev)
{ {
struct tc_dev *tdev = to_tc_dev(dev);
resource_size_t start, len;
struct fb_info *info; struct fb_info *info;
struct pmagbafb_par *par; struct pmagbafb_par *par;
unsigned long base_addr;
info = framebuffer_alloc(sizeof(struct pmagbafb_par), NULL); info = framebuffer_alloc(sizeof(struct pmagbafb_par), dev);
if (!info) if (!info)
return -ENOMEM; return -ENOMEM;
par = info->par; par = info->par;
par->slot = slot; dev_set_drvdata(dev, info);
claim_tc_card(par->slot);
base_addr = get_tc_base_addr(par->slot);
par->next = root_pmagbafb_dev;
root_pmagbafb_dev = info;
if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) if (fb_alloc_cmap(&info->cmap, 256, 0) < 0)
goto err_alloc; goto err_alloc;
...@@ -172,15 +163,21 @@ static int __init pmagbafb_init_one(int slot) ...@@ -172,15 +163,21 @@ static int __init pmagbafb_init_one(int slot)
info->var = pmagbafb_defined; info->var = pmagbafb_defined;
info->flags = FBINFO_DEFAULT; info->flags = FBINFO_DEFAULT;
/* Request the I/O MEM resource. */
start = tdev->resource.start;
len = tdev->resource.end - start + 1;
if (!request_mem_region(start, len, dev->bus_id))
goto err_cmap;
/* MMIO mapping setup. */ /* MMIO mapping setup. */
info->fix.mmio_start = base_addr; info->fix.mmio_start = start;
par->mmio = ioremap_nocache(info->fix.mmio_start, info->fix.mmio_len); par->mmio = ioremap_nocache(info->fix.mmio_start, info->fix.mmio_len);
if (!par->mmio) if (!par->mmio)
goto err_cmap; goto err_resource;
par->dac = par->mmio + PMAG_BA_BT459; par->dac = par->mmio + PMAG_BA_BT459;
/* Frame buffer mapping setup. */ /* Frame buffer mapping setup. */
info->fix.smem_start = base_addr + PMAG_BA_FBMEM; info->fix.smem_start = start + PMAG_BA_FBMEM;
info->screen_base = ioremap_nocache(info->fix.smem_start, info->screen_base = ioremap_nocache(info->fix.smem_start,
info->fix.smem_len); info->fix.smem_len);
if (!info->screen_base) if (!info->screen_base)
...@@ -192,8 +189,10 @@ static int __init pmagbafb_init_one(int slot) ...@@ -192,8 +189,10 @@ static int __init pmagbafb_init_one(int slot)
if (register_framebuffer(info) < 0) if (register_framebuffer(info) < 0)
goto err_smem_map; goto err_smem_map;
pr_info("fb%d: %s frame buffer device in slot %d\n", get_device(dev);
info->node, info->fix.id, par->slot);
pr_info("fb%d: %s frame buffer device at %s\n",
info->node, info->fix.id, dev->bus_id);
return 0; return 0;
...@@ -204,54 +203,68 @@ static int __init pmagbafb_init_one(int slot) ...@@ -204,54 +203,68 @@ static int __init pmagbafb_init_one(int slot)
err_mmio_map: err_mmio_map:
iounmap(par->mmio); iounmap(par->mmio);
err_resource:
release_mem_region(start, len);
err_cmap: err_cmap:
fb_dealloc_cmap(&info->cmap); fb_dealloc_cmap(&info->cmap);
err_alloc: err_alloc:
root_pmagbafb_dev = par->next;
release_tc_card(par->slot);
framebuffer_release(info); framebuffer_release(info);
return -ENXIO; return -ENXIO;
} }
static void __exit pmagbafb_exit_one(void) static int __exit pmagbafb_remove(struct device *dev)
{ {
struct fb_info *info = root_pmagbafb_dev; struct tc_dev *tdev = to_tc_dev(dev);
struct fb_info *info = dev_get_drvdata(dev);
struct pmagbafb_par *par = info->par; struct pmagbafb_par *par = info->par;
resource_size_t start, len;
put_device(dev);
unregister_framebuffer(info); unregister_framebuffer(info);
iounmap(info->screen_base); iounmap(info->screen_base);
iounmap(par->mmio); iounmap(par->mmio);
start = tdev->resource.start;
len = tdev->resource.end - start + 1;
release_mem_region(start, len);
fb_dealloc_cmap(&info->cmap); fb_dealloc_cmap(&info->cmap);
root_pmagbafb_dev = par->next;
release_tc_card(par->slot);
framebuffer_release(info); framebuffer_release(info);
return 0;
} }
/* /*
* Initialise the framebuffer. * Initialize the framebuffer.
*/ */
static const struct tc_device_id pmagbafb_tc_table[] = {
{ "DEC ", "PMAG-BA " },
{ }
};
MODULE_DEVICE_TABLE(tc, pmagbafb_tc_table);
static struct tc_driver pmagbafb_driver = {
.id_table = pmagbafb_tc_table,
.driver = {
.name = "pmagbafb",
.bus = &tc_bus_type,
.probe = pmagbafb_probe,
.remove = __exit_p(pmagbafb_remove),
},
};
static int __init pmagbafb_init(void) static int __init pmagbafb_init(void)
{ {
int count = 0; #ifndef MODULE
int slot;
if (fb_get_options("pmagbafb", NULL)) if (fb_get_options("pmagbafb", NULL))
return -ENXIO; return -ENXIO;
#endif
while ((slot = search_tc_card("PMAG-BA")) >= 0) { return tc_register_driver(&pmagbafb_driver);
if (pmagbafb_init_one(slot) < 0)
break;
count++;
}
return (count > 0) ? 0 : -ENXIO;
} }
static void __exit pmagbafb_exit(void) static void __exit pmagbafb_exit(void)
{ {
while (root_pmagbafb_dev) tc_unregister_driver(&pmagbafb_driver);
pmagbafb_exit_one();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment