linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support (non-DCR)
@ 2009-04-10 21:17 John Linn
  2009-04-12  6:15 ` Grant Likely
  0 siblings, 1 reply; 5+ messages in thread
From: John Linn @ 2009-04-10 21:17 UTC (permalink / raw)
  To: grant.likely, jwboyer, linux-fbdev-devel, linuxppc-dev,
	akonovalov, adaplas
  Cc: Suneel, John Linn

From: Suneel <suneelg@xilinx.com>

Added support for the new xps tft controller.

The new core has PLB interface support in addition to existing
DCR interface.

The driver has been modified to support this new core which
can be connected on PLB or DCR bus.

Signed-off-by: Suneel <suneelg@xilinx.com>
Signed-off-by: John Linn <john.linn@xilinx.com>
---

V2 - Incorporated comments from Josh, Grant and others

 drivers/video/xilinxfb.c |  213 ++++++++++++++++++++++++++++++++--------------
 1 files changed, 150 insertions(+), 63 deletions(-)

diff --git a/drivers/video/xilinxfb.c b/drivers/video/xilinxfb.c
index a82c530..d151237 100644
--- a/drivers/video/xilinxfb.c
+++ b/drivers/video/xilinxfb.c
@@ -1,13 +1,13 @@
 /*
- * xilinxfb.c
  *
- * Xilinx TFT LCD frame buffer driver
+ * Xilinx TFT frame buffer driver
  *
  * Author: MontaVista Software, Inc.
  *         source@mvista.com
  *
  * 2002-2007 (c) MontaVista Software, Inc.
  * 2007 (c) Secret Lab Technologies, Ltd.
+ * 2009 (c) Xilinx Inc.
  *
  * This file is licensed under the terms of the GNU General Public License
  * version 2.  This program is licensed "as is" without any warranty of any
@@ -31,27 +31,31 @@
 #include <linux/fb.h>
 #include <linux/init.h>
 #include <linux/dma-mapping.h>
-#if defined(CONFIG_OF)
 #include <linux/of_device.h>
 #include <linux/of_platform.h>
-#endif
-#include <asm/io.h>
+#include <linux/io.h>
 #include <linux/xilinxfb.h>
 #include <asm/dcr.h>
 
 #define DRIVER_NAME		"xilinxfb"
-#define DRIVER_DESCRIPTION	"Xilinx TFT LCD frame buffer driver"
+
 
 /*
  * Xilinx calls it "PLB TFT LCD Controller" though it can also be used for
- * the VGA port on the Xilinx ML40x board. This is a hardware display controller
- * for a 640x480 resolution TFT or VGA screen.
+ * the VGA port on the Xilinx ML40x board. This is a hardware display
+ * controller for a 640x480 resolution TFT or VGA screen.
  *
  * The interface to the framebuffer is nice and simple.  There are two
  * control registers.  The first tells the LCD interface where in memory
  * the frame buffer is (only the 11 most significant bits are used, so
  * don't start thinking about scrolling).  The second allows the LCD to
  * be turned on or off as well as rotated 180 degrees.
+ *
+ * In case of direct PLB access the second control register will be at
+ * an offset of 4 as compared to the DCR access where the offset is 1
+ * i.e. REG_CTRL. So this is taken care in the function
+ * xilinx_fb_out_be32 where it left shifts the offset 2 times in case of
+ * direct PLB access.
  */
 #define NUM_REGS	2
 #define REG_FB_ADDR	0
@@ -108,10 +112,18 @@ static struct fb_var_screeninfo xilinx_fb_var = {
 	.activate =	FB_ACTIVATE_NOW
 };
 
+
+#define PLB_ACCESS_FLAG	0x1		/* 1 = PLB, 0 = DCR */
+
 struct xilinxfb_drvdata {
 
 	struct fb_info	info;		/* FB driver info record */
 
+	phys_addr_t	regs_phys;	/* phys. address of the control
+						registers */
+	void __iomem	*regs;		/* virt. address of the control
+						registers */
+
 	dcr_host_t      dcr_host;
 	unsigned int    dcr_start;
 	unsigned int    dcr_len;
@@ -120,6 +132,8 @@ struct xilinxfb_drvdata {
 	dma_addr_t	fb_phys;	/* phys. address of the frame buffer */
 	int		fb_alloced;	/* Flag, was the fb memory alloced? */
 
+	u8 		flags;		/* features of the driver */
+
 	u32		reg_ctrl_default;
 
 	u32		pseudo_palette[PALETTE_ENTRIES_NO];
@@ -130,14 +144,19 @@ struct xilinxfb_drvdata {
 	container_of(_info, struct xilinxfb_drvdata, info)
 
 /*
- * The LCD controller has DCR interface to its registers, but all
- * the boards and configurations the driver has been tested with
- * use opb2dcr bridge. So the registers are seen as memory mapped.
- * This macro is to make it simple to add the direct DCR access
- * when it's needed.
+ * The XPS TFT Controller can be accessed through PLB or DCR interface.
+ * To perform the read/write on the registers we need to check on
+ * which bus its connected and call the appropriate write API.
  */
-#define xilinx_fb_out_be32(driverdata, offset, val) \
-	dcr_write(driverdata->dcr_host, offset, val)
+static void xilinx_fb_out_be32(struct xilinxfb_drvdata *drvdata, u32 offset,
+				u32 val)
+{
+	if (drvdata->flags & PLB_ACCESS_FLAG)
+		out_be32(drvdata->regs + (offset << 2), val);
+	else
+		dcr_write(drvdata->dcr_host, offset, val);
+
+}
 
 static int
 xilinx_fb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue,
@@ -175,7 +194,8 @@ xilinx_fb_blank(int blank_mode, struct fb_info *fbi)
 	switch (blank_mode) {
 	case FB_BLANK_UNBLANK:
 		/* turn on panel */
-		xilinx_fb_out_be32(drvdata, REG_CTRL, drvdata->reg_ctrl_default);
+		xilinx_fb_out_be32(drvdata, REG_CTRL,
+					drvdata->reg_ctrl_default);
 		break;
 
 	case FB_BLANK_NORMAL:
@@ -191,8 +211,7 @@ xilinx_fb_blank(int blank_mode, struct fb_info *fbi)
 	return 0; /* success */
 }
 
-static struct fb_ops xilinxfb_ops =
-{
+static struct fb_ops xilinxfb_ops = {
 	.owner			= THIS_MODULE,
 	.fb_setcolreg		= xilinx_fb_setcolreg,
 	.fb_blank		= xilinx_fb_blank,
@@ -205,25 +224,35 @@ static struct fb_ops xilinxfb_ops =
  * Bus independent setup/teardown
  */
 
-static int xilinxfb_assign(struct device *dev, dcr_host_t dcr_host,
-			   unsigned int dcr_start, unsigned int dcr_len,
+static int xilinxfb_assign(struct device *dev,
+			   struct xilinxfb_drvdata *drvdata,
+			   unsigned long physaddr,
 			   struct xilinxfb_platform_data *pdata)
 {
-	struct xilinxfb_drvdata *drvdata;
 	int rc;
 	int fbsize = pdata->xvirt * pdata->yvirt * BYTES_PER_PIXEL;
 
-	/* Allocate the driver data region */
-	drvdata = kzalloc(sizeof(*drvdata), GFP_KERNEL);
-	if (!drvdata) {
-		dev_err(dev, "Couldn't allocate device private record\n");
-		return -ENOMEM;
+	if (drvdata->flags & PLB_ACCESS_FLAG) {
+		/*
+		 * Map the control registers in if the controller
+		 * is on direct PLB interface.
+		 */
+		if (!request_mem_region(physaddr, 8, DRIVER_NAME)) {
+			dev_err(dev, "Couldn't lock memory region at 0x%08lX\n",
+				physaddr);
+			rc = -ENODEV;
+			goto err_region;
+		}
+
+		drvdata->regs_phys = physaddr;
+		drvdata->regs = ioremap(physaddr, 8);
+		if (!drvdata->regs) {
+			dev_err(dev, "Couldn't lock memory region at 0x%08lX\n",
+				physaddr);
+			rc = -ENODEV;
+			goto err_map;
+		}
 	}
-	dev_set_drvdata(dev, drvdata);
-
-	drvdata->dcr_start = dcr_start;
-	drvdata->dcr_len = dcr_len;
-	drvdata->dcr_host = dcr_host;
 
 	/* Allocate the framebuffer memory */
 	if (pdata->fb_phys) {
@@ -238,7 +267,10 @@ static int xilinxfb_assign(struct device *dev, dcr_host_t dcr_host,
 	if (!drvdata->fb_virt) {
 		dev_err(dev, "Could not allocate frame buffer memory\n");
 		rc = -ENOMEM;
-		goto err_region;
+		if (drvdata->flags & PLB_ACCESS_FLAG)
+			goto err_fbmem;
+		else
+			goto err_region;
 	}
 
 	/* Clear (turn to black) the framebuffer */
@@ -251,7 +283,8 @@ static int xilinxfb_assign(struct device *dev, dcr_host_t dcr_host,
 	drvdata->reg_ctrl_default = REG_CTRL_ENABLE;
 	if (pdata->rotate_screen)
 		drvdata->reg_ctrl_default |= REG_CTRL_ROTATE;
-	xilinx_fb_out_be32(drvdata, REG_CTRL, drvdata->reg_ctrl_default);
+	xilinx_fb_out_be32(drvdata, REG_CTRL,
+					drvdata->reg_ctrl_default);
 
 	/* Fill struct fb_info */
 	drvdata->info.device = dev;
@@ -287,9 +320,14 @@ static int xilinxfb_assign(struct device *dev, dcr_host_t dcr_host,
 		goto err_regfb;
 	}
 
+	if (drvdata->flags & PLB_ACCESS_FLAG) {
+		/* Put a banner in the log (for DEBUG) */
+		dev_dbg(dev, "regs: phys=%lx, virt=%p\n", physaddr,
+					drvdata->regs);
+	}
 	/* Put a banner in the log (for DEBUG) */
 	dev_dbg(dev, "fb: phys=%p, virt=%p, size=%x\n",
-		(void*)drvdata->fb_phys, drvdata->fb_virt, fbsize);
+		(void *)drvdata->fb_phys, drvdata->fb_virt, fbsize);
 
 	return 0;	/* success */
 
@@ -300,9 +338,20 @@ err_cmap:
 	if (drvdata->fb_alloced)
 		dma_free_coherent(dev, PAGE_ALIGN(fbsize), drvdata->fb_virt,
 			drvdata->fb_phys);
+	else
+		iounmap(drvdata->fb_virt);
+
 	/* Turn off the display */
 	xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
 
+err_fbmem:
+	if (drvdata->flags & PLB_ACCESS_FLAG)
+		iounmap(drvdata->regs);
+
+err_map:
+	if (drvdata->flags & PLB_ACCESS_FLAG)
+		release_mem_region(physaddr, 8);
+
 err_region:
 	kfree(drvdata);
 	dev_set_drvdata(dev, NULL);
@@ -325,11 +374,18 @@ static int xilinxfb_release(struct device *dev)
 	if (drvdata->fb_alloced)
 		dma_free_coherent(dev, PAGE_ALIGN(drvdata->info.fix.smem_len),
 				  drvdata->fb_virt, drvdata->fb_phys);
+	else
+		iounmap(drvdata->fb_virt);
 
 	/* Turn off the display */
 	xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
 
-	dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
+	/* Release the resources, as allocated based on interface */
+	if (drvdata->flags & PLB_ACCESS_FLAG) {
+		iounmap(drvdata->regs);
+		release_mem_region(drvdata->regs_phys, 8);
+	} else
+		dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
 
 	kfree(drvdata);
 	dev_set_drvdata(dev, NULL);
@@ -341,27 +397,54 @@ static int xilinxfb_release(struct device *dev)
  * OF bus binding
  */
 
-#if defined(CONFIG_OF)
 static int __devinit
 xilinxfb_of_probe(struct of_device *op, const struct of_device_id *match)
 {
 	const u32 *prop;
+	u32 *p;
+	u32 tft_access;
 	struct xilinxfb_platform_data pdata;
+	struct resource res;
 	int size, rc;
-	int start, len;
+	int start = 0, len = 0;
 	dcr_host_t dcr_host;
+	struct xilinxfb_drvdata *drvdata;
 
 	/* Copy with the default pdata (not a ptr reference!) */
 	pdata = xilinx_fb_default_pdata;
 
 	dev_dbg(&op->dev, "xilinxfb_of_probe(%p, %p)\n", op, match);
 
-	start = dcr_resource_start(op->node, 0);
-	len = dcr_resource_len(op->node, 0);
-	dcr_host = dcr_map(op->node, start, len);
-	if (!DCR_MAP_OK(dcr_host)) {
-		dev_err(&op->dev, "invalid address\n");
-		return -ENODEV;
+	/*
+	 * To check whether the core is connected directly to DCR or PLB
+	 * interface and initialize the tft_access accordingly.
+	 */
+	p = (u32 *)of_get_property(op->node, "xlnx,dcr-splb-slave-if", NULL);
+
+	if (p)
+		tft_access = *p;
+	else
+		tft_access = 0;		/* For backward compatibility */
+
+	/*
+	 * Fill the resource structure if its direct PLB interface
+	 * otherwise fill the dcr_host structure.
+	 */
+	if (tft_access) {
+		rc = of_address_to_resource(op->node, 0, &res);
+		if (rc) {
+			dev_err(&op->dev, "invalid address\n");
+			return -ENODEV;
+		}
+
+	} else {
+		start = dcr_resource_start(op->node, 0);
+		len = dcr_resource_len(op->node, 0);
+		dcr_host = dcr_map(op->node, start, len);
+		if (!DCR_MAP_OK(dcr_host)) {
+			dev_err(&op->dev, "invalid address\n");
+			return -ENODEV;
+		}
 	}
 
 	prop = of_get_property(op->node, "phys-size", &size);
@@ -385,7 +468,26 @@ xilinxfb_of_probe(struct of_device *op, const struct of_device_id *match)
 	if (of_find_property(op->node, "rotate-display", NULL))
 		pdata.rotate_screen = 1;
 
-	return xilinxfb_assign(&op->dev, dcr_host, start, len, &pdata);
+	/* Allocate the driver data region */
+	drvdata = kzalloc(sizeof(*drvdata), GFP_KERNEL);
+	if (!drvdata) {
+		dev_err(&op->dev, "Couldn't allocate device private record\n");
+		return -ENOMEM;
+	}
+	dev_set_drvdata(&op->dev, drvdata);
+
+	if (tft_access)
+		drvdata->flags |= PLB_ACCESS_FLAG;
+
+	/* Arguments are passed based on the interface */
+	if (drvdata->flags & PLB_ACCESS_FLAG) {
+		return xilinxfb_assign(&op->dev, drvdata, res.start, &pdata);
+	} else {
+		drvdata->dcr_start = start;
+		drvdata->dcr_len = len;
+		drvdata->dcr_host = dcr_host;
+		return xilinxfb_assign(&op->dev, drvdata, 0, &pdata);
+	}
 }
 
 static int __devexit xilinxfb_of_remove(struct of_device *op)
@@ -395,6 +497,7 @@ static int __devexit xilinxfb_of_remove(struct of_device *op)
 
 /* Match table for of_platform binding */
 static struct of_device_id xilinxfb_of_match[] __devinitdata = {
+	{ .compatible = "xlnx,xps-tft-1.00.a", },
 	{ .compatible = "xlnx,plb-tft-cntlr-ref-1.00.a", },
 	{ .compatible = "xlnx,plb-dvi-cntlr-ref-1.00.c", },
 	{},
@@ -412,22 +515,6 @@ static struct of_platform_driver xilinxfb_of_driver = {
 	},
 };
 
-/* Registration helpers to keep the number of #ifdefs to a minimum */
-static inline int __init xilinxfb_of_register(void)
-{
-	pr_debug("xilinxfb: calling of_register_platform_driver()\n");
-	return of_register_platform_driver(&xilinxfb_of_driver);
-}
-
-static inline void __exit xilinxfb_of_unregister(void)
-{
-	of_unregister_platform_driver(&xilinxfb_of_driver);
-}
-#else /* CONFIG_OF */
-/* CONFIG_OF not enabled; do nothing helpers */
-static inline int __init xilinxfb_of_register(void) { return 0; }
-static inline void __exit xilinxfb_of_unregister(void) { }
-#endif /* CONFIG_OF */
 
 /* ---------------------------------------------------------------------
  * Module setup and teardown
@@ -436,18 +523,18 @@ static inline void __exit xilinxfb_of_unregister(void) { }
 static int __init
 xilinxfb_init(void)
 {
-	return xilinxfb_of_register();
+	return of_register_platform_driver(&xilinxfb_of_driver);
 }
 
 static void __exit
 xilinxfb_cleanup(void)
 {
-	xilinxfb_of_unregister();
+	of_unregister_platform_driver(&xilinxfb_of_driver);
 }
 
 module_init(xilinxfb_init);
 module_exit(xilinxfb_cleanup);
 
 MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
-MODULE_DESCRIPTION(DRIVER_DESCRIPTION);
+MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
 MODULE_LICENSE("GPL");
-- 
1.6.2.1



This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support (non-DCR)
  2009-04-10 21:17 [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support (non-DCR) John Linn
@ 2009-04-12  6:15 ` Grant Likely
  2009-04-13 14:13   ` John Linn
  0 siblings, 1 reply; 5+ messages in thread
From: Grant Likely @ 2009-04-12  6:15 UTC (permalink / raw)
  To: John Linn; +Cc: linux-fbdev-devel, adaplas, Suneel, linuxppc-dev, akonovalov

What tree is this patch prepared against?  The version in mainline
already does PLB access, and doesn't support DCR at all.  It appears
that this driver is based on something that does the opposite.

g.

On Fri, Apr 10, 2009 at 3:17 PM, John Linn <john.linn@xilinx.com> wrote:
> From: Suneel <suneelg@xilinx.com>
>
> Added support for the new xps tft controller.
>
> The new core has PLB interface support in addition to existing
> DCR interface.
>
> The driver has been modified to support this new core which
> can be connected on PLB or DCR bus.
>
> Signed-off-by: Suneel <suneelg@xilinx.com>
> Signed-off-by: John Linn <john.linn@xilinx.com>
> ---
>
> V2 - Incorporated comments from Josh, Grant and others
>
> =A0drivers/video/xilinxfb.c | =A0213 ++++++++++++++++++++++++++++++++----=
----------
> =A01 files changed, 150 insertions(+), 63 deletions(-)
>
> diff --git a/drivers/video/xilinxfb.c b/drivers/video/xilinxfb.c
> index a82c530..d151237 100644
> --- a/drivers/video/xilinxfb.c
> +++ b/drivers/video/xilinxfb.c
> @@ -1,13 +1,13 @@
> =A0/*
> - * xilinxfb.c
> =A0*
> - * Xilinx TFT LCD frame buffer driver
> + * Xilinx TFT frame buffer driver
> =A0*
> =A0* Author: MontaVista Software, Inc.
> =A0* =A0 =A0 =A0 =A0 source@mvista.com
> =A0*
> =A0* 2002-2007 (c) MontaVista Software, Inc.
> =A0* 2007 (c) Secret Lab Technologies, Ltd.
> + * 2009 (c) Xilinx Inc.
> =A0*
> =A0* This file is licensed under the terms of the GNU General Public Lice=
nse
> =A0* version 2. =A0This program is licensed "as is" without any warranty =
of any
> @@ -31,27 +31,31 @@
> =A0#include <linux/fb.h>
> =A0#include <linux/init.h>
> =A0#include <linux/dma-mapping.h>
> -#if defined(CONFIG_OF)
> =A0#include <linux/of_device.h>
> =A0#include <linux/of_platform.h>
> -#endif
> -#include <asm/io.h>
> +#include <linux/io.h>
> =A0#include <linux/xilinxfb.h>
> =A0#include <asm/dcr.h>
>
> =A0#define DRIVER_NAME =A0 =A0 =A0 =A0 =A0 =A0"xilinxfb"
> -#define DRIVER_DESCRIPTION =A0 =A0 "Xilinx TFT LCD frame buffer driver"
> +
>
> =A0/*
> =A0* Xilinx calls it "PLB TFT LCD Controller" though it can also be used =
for
> - * the VGA port on the Xilinx ML40x board. This is a hardware display co=
ntroller
> - * for a 640x480 resolution TFT or VGA screen.
> + * the VGA port on the Xilinx ML40x board. This is a hardware display
> + * controller for a 640x480 resolution TFT or VGA screen.
> =A0*
> =A0* The interface to the framebuffer is nice and simple. =A0There are tw=
o
> =A0* control registers. =A0The first tells the LCD interface where in mem=
ory
> =A0* the frame buffer is (only the 11 most significant bits are used, so
> =A0* don't start thinking about scrolling). =A0The second allows the LCD =
to
> =A0* be turned on or off as well as rotated 180 degrees.
> + *
> + * In case of direct PLB access the second control register will be at
> + * an offset of 4 as compared to the DCR access where the offset is 1
> + * i.e. REG_CTRL. So this is taken care in the function
> + * xilinx_fb_out_be32 where it left shifts the offset 2 times in case of
> + * direct PLB access.
> =A0*/
> =A0#define NUM_REGS =A0 =A0 =A0 2
> =A0#define REG_FB_ADDR =A0 =A00
> @@ -108,10 +112,18 @@ static struct fb_var_screeninfo xilinx_fb_var =3D {
> =A0 =A0 =A0 =A0.activate =3D =A0 =A0 FB_ACTIVATE_NOW
> =A0};
>
> +
> +#define PLB_ACCESS_FLAG =A0 =A0 =A0 =A00x1 =A0 =A0 =A0 =A0 =A0 =A0 /* 1 =
=3D PLB, 0 =3D DCR */
> +
> =A0struct xilinxfb_drvdata {
>
> =A0 =A0 =A0 =A0struct fb_info =A0info; =A0 =A0 =A0 =A0 =A0 /* FB driver i=
nfo record */
>
> + =A0 =A0 =A0 phys_addr_t =A0 =A0 regs_phys; =A0 =A0 =A0/* phys. address =
of the control
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 registers */
> + =A0 =A0 =A0 void __iomem =A0 =A0*regs; =A0 =A0 =A0 =A0 =A0/* virt. addr=
ess of the control
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 registers */
> +
> =A0 =A0 =A0 =A0dcr_host_t =A0 =A0 =A0dcr_host;
> =A0 =A0 =A0 =A0unsigned int =A0 =A0dcr_start;
> =A0 =A0 =A0 =A0unsigned int =A0 =A0dcr_len;
> @@ -120,6 +132,8 @@ struct xilinxfb_drvdata {
> =A0 =A0 =A0 =A0dma_addr_t =A0 =A0 =A0fb_phys; =A0 =A0 =A0 =A0/* phys. add=
ress of the frame buffer */
> =A0 =A0 =A0 =A0int =A0 =A0 =A0 =A0 =A0 =A0 fb_alloced; =A0 =A0 /* Flag, w=
as the fb memory alloced? */
>
> + =A0 =A0 =A0 u8 =A0 =A0 =A0 =A0 =A0 =A0 =A0flags; =A0 =A0 =A0 =A0 =A0/* =
features of the driver */
> +
> =A0 =A0 =A0 =A0u32 =A0 =A0 =A0 =A0 =A0 =A0 reg_ctrl_default;
>
> =A0 =A0 =A0 =A0u32 =A0 =A0 =A0 =A0 =A0 =A0 pseudo_palette[PALETTE_ENTRIES=
_NO];
> @@ -130,14 +144,19 @@ struct xilinxfb_drvdata {
> =A0 =A0 =A0 =A0container_of(_info, struct xilinxfb_drvdata, info)
>
> =A0/*
> - * The LCD controller has DCR interface to its registers, but all
> - * the boards and configurations the driver has been tested with
> - * use opb2dcr bridge. So the registers are seen as memory mapped.
> - * This macro is to make it simple to add the direct DCR access
> - * when it's needed.
> + * The XPS TFT Controller can be accessed through PLB or DCR interface.
> + * To perform the read/write on the registers we need to check on
> + * which bus its connected and call the appropriate write API.
> =A0*/
> -#define xilinx_fb_out_be32(driverdata, offset, val) \
> - =A0 =A0 =A0 dcr_write(driverdata->dcr_host, offset, val)
> +static void xilinx_fb_out_be32(struct xilinxfb_drvdata *drvdata, u32 off=
set,
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 u32 val)
> +{
> + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 out_be32(drvdata->regs + (offset << 2), val=
);
> + =A0 =A0 =A0 else
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_write(drvdata->dcr_host, offset, val);
> +
> +}
>
> =A0static int
> =A0xilinx_fb_setcolreg(unsigned regno, unsigned red, unsigned green, unsi=
gned blue,
> @@ -175,7 +194,8 @@ xilinx_fb_blank(int blank_mode, struct fb_info *fbi)
> =A0 =A0 =A0 =A0switch (blank_mode) {
> =A0 =A0 =A0 =A0case FB_BLANK_UNBLANK:
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0/* turn on panel */
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL, drvda=
ta->reg_ctrl_default);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL,
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 drvdata->reg_ctrl_default);
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0break;
>
> =A0 =A0 =A0 =A0case FB_BLANK_NORMAL:
> @@ -191,8 +211,7 @@ xilinx_fb_blank(int blank_mode, struct fb_info *fbi)
> =A0 =A0 =A0 =A0return 0; /* success */
> =A0}
>
> -static struct fb_ops xilinxfb_ops =3D
> -{
> +static struct fb_ops xilinxfb_ops =3D {
> =A0 =A0 =A0 =A0.owner =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=3D THIS_MODULE,
> =A0 =A0 =A0 =A0.fb_setcolreg =A0 =A0 =A0 =A0 =A0 =3D xilinx_fb_setcolreg,
> =A0 =A0 =A0 =A0.fb_blank =A0 =A0 =A0 =A0 =A0 =A0 =A0 =3D xilinx_fb_blank,
> @@ -205,25 +224,35 @@ static struct fb_ops xilinxfb_ops =3D
> =A0* Bus independent setup/teardown
> =A0*/
>
> -static int xilinxfb_assign(struct device *dev, dcr_host_t dcr_host,
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0unsigned int dcr_sta=
rt, unsigned int dcr_len,
> +static int xilinxfb_assign(struct device *dev,
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0struct xilinxfb_drvd=
ata *drvdata,
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0unsigned long physad=
dr,
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 struct xilinxfb_platf=
orm_data *pdata)
> =A0{
> - =A0 =A0 =A0 struct xilinxfb_drvdata *drvdata;
> =A0 =A0 =A0 =A0int rc;
> =A0 =A0 =A0 =A0int fbsize =3D pdata->xvirt * pdata->yvirt * BYTES_PER_PIX=
EL;
>
> - =A0 =A0 =A0 /* Allocate the driver data region */
> - =A0 =A0 =A0 drvdata =3D kzalloc(sizeof(*drvdata), GFP_KERNEL);
> - =A0 =A0 =A0 if (!drvdata) {
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't allocate device priv=
ate record\n");
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENOMEM;
> + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 /*
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0* Map the control registers in if the co=
ntroller
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0* is on direct PLB interface.
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0*/
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!request_mem_region(physaddr, 8, DRIVER=
_NAME)) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't lock=
 memory region at 0x%08lX\n",
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 physaddr);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D -ENODEV;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> +
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->regs_phys =3D physaddr;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->regs =3D ioremap(physaddr, 8);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!drvdata->regs) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't lock=
 memory region at 0x%08lX\n",
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 physaddr);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D -ENODEV;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_map;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> =A0 =A0 =A0 =A0}
> - =A0 =A0 =A0 dev_set_drvdata(dev, drvdata);
> -
> - =A0 =A0 =A0 drvdata->dcr_start =3D dcr_start;
> - =A0 =A0 =A0 drvdata->dcr_len =3D dcr_len;
> - =A0 =A0 =A0 drvdata->dcr_host =3D dcr_host;
>
> =A0 =A0 =A0 =A0/* Allocate the framebuffer memory */
> =A0 =A0 =A0 =A0if (pdata->fb_phys) {
> @@ -238,7 +267,10 @@ static int xilinxfb_assign(struct device *dev, dcr_h=
ost_t dcr_host,
> =A0 =A0 =A0 =A0if (!drvdata->fb_virt) {
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dev_err(dev, "Could not allocate frame buf=
fer memory\n");
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0rc =3D -ENOMEM;
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_fbmem;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 else
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
> =A0 =A0 =A0 =A0}
>
> =A0 =A0 =A0 =A0/* Clear (turn to black) the framebuffer */
> @@ -251,7 +283,8 @@ static int xilinxfb_assign(struct device *dev, dcr_ho=
st_t dcr_host,
> =A0 =A0 =A0 =A0drvdata->reg_ctrl_default =3D REG_CTRL_ENABLE;
> =A0 =A0 =A0 =A0if (pdata->rotate_screen)
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvdata->reg_ctrl_default |=3D REG_CTRL_RO=
TATE;
> - =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL, drvdata->reg_ctrl_def=
ault);
> + =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL,
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 drvdata->reg_ctrl_default);
>
> =A0 =A0 =A0 =A0/* Fill struct fb_info */
> =A0 =A0 =A0 =A0drvdata->info.device =3D dev;
> @@ -287,9 +320,14 @@ static int xilinxfb_assign(struct device *dev, dcr_h=
ost_t dcr_host,
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0goto err_regfb;
> =A0 =A0 =A0 =A0}
>
> + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 /* Put a banner in the log (for DEBUG) */
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_dbg(dev, "regs: phys=3D%lx, virt=3D%p\n=
", physaddr,
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 drvdata->regs);
> + =A0 =A0 =A0 }
> =A0 =A0 =A0 =A0/* Put a banner in the log (for DEBUG) */
> =A0 =A0 =A0 =A0dev_dbg(dev, "fb: phys=3D%p, virt=3D%p, size=3D%x\n",
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 (void*)drvdata->fb_phys, drvdata->fb_virt, =
fbsize);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 (void *)drvdata->fb_phys, drvdata->fb_virt,=
 fbsize);
>
> =A0 =A0 =A0 =A0return 0; =A0 =A0 =A0 /* success */
>
> @@ -300,9 +338,20 @@ err_cmap:
> =A0 =A0 =A0 =A0if (drvdata->fb_alloced)
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dma_free_coherent(dev, PAGE_ALIGN(fbsize),=
 drvdata->fb_virt,
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvdata->fb_phys);
> + =A0 =A0 =A0 else
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->fb_virt);
> +
> =A0 =A0 =A0 =A0/* Turn off the display */
> =A0 =A0 =A0 =A0xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
>
> +err_fbmem:
> + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->regs);
> +
> +err_map:
> + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 release_mem_region(physaddr, 8);
> +
> =A0err_region:
> =A0 =A0 =A0 =A0kfree(drvdata);
> =A0 =A0 =A0 =A0dev_set_drvdata(dev, NULL);
> @@ -325,11 +374,18 @@ static int xilinxfb_release(struct device *dev)
> =A0 =A0 =A0 =A0if (drvdata->fb_alloced)
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dma_free_coherent(dev, PAGE_ALIGN(drvdata-=
>info.fix.smem_len),
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvdat=
a->fb_virt, drvdata->fb_phys);
> + =A0 =A0 =A0 else
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->fb_virt);
>
> =A0 =A0 =A0 =A0/* Turn off the display */
> =A0 =A0 =A0 =A0xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
>
> - =A0 =A0 =A0 dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
> + =A0 =A0 =A0 /* Release the resources, as allocated based on interface *=
/
> + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->regs);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 release_mem_region(drvdata->regs_phys, 8);
> + =A0 =A0 =A0 } else
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_unmap(drvdata->dcr_host, drvdata->dcr_l=
en);
>
> =A0 =A0 =A0 =A0kfree(drvdata);
> =A0 =A0 =A0 =A0dev_set_drvdata(dev, NULL);
> @@ -341,27 +397,54 @@ static int xilinxfb_release(struct device *dev)
> =A0* OF bus binding
> =A0*/
>
> -#if defined(CONFIG_OF)
> =A0static int __devinit
> =A0xilinxfb_of_probe(struct of_device *op, const struct of_device_id *mat=
ch)
> =A0{
> =A0 =A0 =A0 =A0const u32 *prop;
> + =A0 =A0 =A0 u32 *p;
> + =A0 =A0 =A0 u32 tft_access;
> =A0 =A0 =A0 =A0struct xilinxfb_platform_data pdata;
> + =A0 =A0 =A0 struct resource res;
> =A0 =A0 =A0 =A0int size, rc;
> - =A0 =A0 =A0 int start, len;
> + =A0 =A0 =A0 int start =3D 0, len =3D 0;
> =A0 =A0 =A0 =A0dcr_host_t dcr_host;
> + =A0 =A0 =A0 struct xilinxfb_drvdata *drvdata;
>
> =A0 =A0 =A0 =A0/* Copy with the default pdata (not a ptr reference!) */
> =A0 =A0 =A0 =A0pdata =3D xilinx_fb_default_pdata;
>
> =A0 =A0 =A0 =A0dev_dbg(&op->dev, "xilinxfb_of_probe(%p, %p)\n", op, match=
);
>
> - =A0 =A0 =A0 start =3D dcr_resource_start(op->node, 0);
> - =A0 =A0 =A0 len =3D dcr_resource_len(op->node, 0);
> - =A0 =A0 =A0 dcr_host =3D dcr_map(op->node, start, len);
> - =A0 =A0 =A0 if (!DCR_MAP_OK(dcr_host)) {
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "invalid address\n");
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
> + =A0 =A0 =A0 /*
> + =A0 =A0 =A0 =A0* To check whether the core is connected directly to DCR=
 or PLB
> + =A0 =A0 =A0 =A0* interface and initialize the tft_access accordingly.
> + =A0 =A0 =A0 =A0*/
> + =A0 =A0 =A0 p =3D (u32 *)of_get_property(op->node, "xlnx,dcr-splb-slave=
-if", NULL);
> +
> + =A0 =A0 =A0 if (p)
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 tft_access =3D *p;
> + =A0 =A0 =A0 else
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 tft_access =3D 0; =A0 =A0 =A0 =A0 /* For ba=
ckward compatibility */
> +
> + =A0 =A0 =A0 /*
> + =A0 =A0 =A0 =A0* Fill the resource structure if its direct PLB interfac=
e
> + =A0 =A0 =A0 =A0* otherwise fill the dcr_host structure.
> + =A0 =A0 =A0 =A0*/
> + =A0 =A0 =A0 if (tft_access) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D of_address_to_resource(op->node, 0, =
&res);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (rc) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "invalid =
address\n");
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> +
> + =A0 =A0 =A0 } else {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 start =3D dcr_resource_start(op->node, 0);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 len =3D dcr_resource_len(op->node, 0);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_host =3D dcr_map(op->node, start, len);
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!DCR_MAP_OK(dcr_host)) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "invalid =
address\n");
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> =A0 =A0 =A0 =A0}
>
> =A0 =A0 =A0 =A0prop =3D of_get_property(op->node, "phys-size", &size);
> @@ -385,7 +468,26 @@ xilinxfb_of_probe(struct of_device *op, const struct=
 of_device_id *match)
> =A0 =A0 =A0 =A0if (of_find_property(op->node, "rotate-display", NULL))
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0pdata.rotate_screen =3D 1;
>
> - =A0 =A0 =A0 return xilinxfb_assign(&op->dev, dcr_host, start, len, &pda=
ta);
> + =A0 =A0 =A0 /* Allocate the driver data region */
> + =A0 =A0 =A0 drvdata =3D kzalloc(sizeof(*drvdata), GFP_KERNEL);
> + =A0 =A0 =A0 if (!drvdata) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "Couldn't allocate device=
 private record\n");
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENOMEM;
> + =A0 =A0 =A0 }
> + =A0 =A0 =A0 dev_set_drvdata(&op->dev, drvdata);
> +
> + =A0 =A0 =A0 if (tft_access)
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->flags |=3D PLB_ACCESS_FLAG;
> +
> + =A0 =A0 =A0 /* Arguments are passed based on the interface */
> + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return xilinxfb_assign(&op->dev, drvdata, r=
es.start, &pdata);
> + =A0 =A0 =A0 } else {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_start =3D start;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_len =3D len;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_host =3D dcr_host;
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return xilinxfb_assign(&op->dev, drvdata, 0=
, &pdata);
> + =A0 =A0 =A0 }
> =A0}
>
> =A0static int __devexit xilinxfb_of_remove(struct of_device *op)
> @@ -395,6 +497,7 @@ static int __devexit xilinxfb_of_remove(struct of_dev=
ice *op)
>
> =A0/* Match table for of_platform binding */
> =A0static struct of_device_id xilinxfb_of_match[] __devinitdata =3D {
> + =A0 =A0 =A0 { .compatible =3D "xlnx,xps-tft-1.00.a", },
> =A0 =A0 =A0 =A0{ .compatible =3D "xlnx,plb-tft-cntlr-ref-1.00.a", },
> =A0 =A0 =A0 =A0{ .compatible =3D "xlnx,plb-dvi-cntlr-ref-1.00.c", },
> =A0 =A0 =A0 =A0{},
> @@ -412,22 +515,6 @@ static struct of_platform_driver xilinxfb_of_driver =
=3D {
> =A0 =A0 =A0 =A0},
> =A0};
>
> -/* Registration helpers to keep the number of #ifdefs to a minimum */
> -static inline int __init xilinxfb_of_register(void)
> -{
> - =A0 =A0 =A0 pr_debug("xilinxfb: calling of_register_platform_driver()\n=
");
> - =A0 =A0 =A0 return of_register_platform_driver(&xilinxfb_of_driver);
> -}
> -
> -static inline void __exit xilinxfb_of_unregister(void)
> -{
> - =A0 =A0 =A0 of_unregister_platform_driver(&xilinxfb_of_driver);
> -}
> -#else /* CONFIG_OF */
> -/* CONFIG_OF not enabled; do nothing helpers */
> -static inline int __init xilinxfb_of_register(void) { return 0; }
> -static inline void __exit xilinxfb_of_unregister(void) { }
> -#endif /* CONFIG_OF */
>
> =A0/* -------------------------------------------------------------------=
--
> =A0* Module setup and teardown
> @@ -436,18 +523,18 @@ static inline void __exit xilinxfb_of_unregister(vo=
id) { }
> =A0static int __init
> =A0xilinxfb_init(void)
> =A0{
> - =A0 =A0 =A0 return xilinxfb_of_register();
> + =A0 =A0 =A0 return of_register_platform_driver(&xilinxfb_of_driver);
> =A0}
>
> =A0static void __exit
> =A0xilinxfb_cleanup(void)
> =A0{
> - =A0 =A0 =A0 xilinxfb_of_unregister();
> + =A0 =A0 =A0 of_unregister_platform_driver(&xilinxfb_of_driver);
> =A0}
>
> =A0module_init(xilinxfb_init);
> =A0module_exit(xilinxfb_cleanup);
>
> =A0MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
> -MODULE_DESCRIPTION(DRIVER_DESCRIPTION);
> +MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
> =A0MODULE_LICENSE("GPL");
> --
> 1.6.2.1
>
>
>
> This email and any attachments are intended for the sole use of the named=
 recipient(s) and contain(s) confidential information that may be proprieta=
ry, privileged or copyrighted under applicable law. If you are not the inte=
nded recipient, do not read, copy, or forward this email message or any att=
achments. Delete this email message and any attachments immediately.
>
>
>



--=20
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support (non-DCR)
  2009-04-12  6:15 ` Grant Likely
@ 2009-04-13 14:13   ` John Linn
  2009-04-13 16:49     ` [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support(non-DCR) Stephen Neuendorffer
  0 siblings, 1 reply; 5+ messages in thread
From: John Linn @ 2009-04-13 14:13 UTC (permalink / raw)
  To: Grant Likely
  Cc: linux-fbdev-devel, adaplas, Suneel Garapati, linuxppc-dev,
	akonovalov

I thought it was based on mainline, but I now see the weirdness you're talk=
ing about.  I'll dig in on this and let you know more as I'm confused also.=


-- John

> -----Original Message-----
> From: Grant Likely [mailto:grant.likely@secretlab.ca]
> Sent: Sunday, April 12, 2009 12:15 AM
> To: John Linn
> Cc: jwboyer@linux.vnet.ibm.com; linux-fbdev-devel@lists.sourceforge.net; =
linuxppc-dev@ozlabs.org;
> akonovalov@ru.mvista.com; adaplas@gmail.com; Suneel Garapati
> Subject: Re: [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support (n=
on-DCR)
> =

> What tree is this patch prepared against?  The version in mainline
> already does PLB access, and doesn't support DCR at all.  It appears
> that this driver is based on something that does the opposite.
> =

> g.
> =

> On Fri, Apr 10, 2009 at 3:17 PM, John Linn <john.linn@xilinx.com> wrote:
> > From: Suneel <suneelg@xilinx.com>
> >
> > Added support for the new xps tft controller.
> >
> > The new core has PLB interface support in addition to existing
> > DCR interface.
> >
> > The driver has been modified to support this new core which
> > can be connected on PLB or DCR bus.
> >
> > Signed-off-by: Suneel <suneelg@xilinx.com>
> > Signed-off-by: John Linn <john.linn@xilinx.com>
> > ---
> >
> > V2 - Incorporated comments from Josh, Grant and others
> >
> > =A0drivers/video/xilinxfb.c | =A0213 ++++++++++++++++++++++++++++++++--=
------------
> > =A01 files changed, 150 insertions(+), 63 deletions(-)
> >
> > diff --git a/drivers/video/xilinxfb.c b/drivers/video/xilinxfb.c
> > index a82c530..d151237 100644
> > --- a/drivers/video/xilinxfb.c
> > +++ b/drivers/video/xilinxfb.c
> > @@ -1,13 +1,13 @@
> > =A0/*
> > - * xilinxfb.c
> > =A0*
> > - * Xilinx TFT LCD frame buffer driver
> > + * Xilinx TFT frame buffer driver
> > =A0*
> > =A0* Author: MontaVista Software, Inc.
> > =A0* =A0 =A0 =A0 =A0 source@mvista.com
> > =A0*
> > =A0* 2002-2007 (c) MontaVista Software, Inc.
> > =A0* 2007 (c) Secret Lab Technologies, Ltd.
> > + * 2009 (c) Xilinx Inc.
> > =A0*
> > =A0* This file is licensed under the terms of the GNU General Public Li=
cense
> > =A0* version 2. =A0This program is licensed "as is" without any warrant=
y of any
> > @@ -31,27 +31,31 @@
> > =A0#include <linux/fb.h>
> > =A0#include <linux/init.h>
> > =A0#include <linux/dma-mapping.h>
> > -#if defined(CONFIG_OF)
> > =A0#include <linux/of_device.h>
> > =A0#include <linux/of_platform.h>
> > -#endif
> > -#include <asm/io.h>
> > +#include <linux/io.h>
> > =A0#include <linux/xilinxfb.h>
> > =A0#include <asm/dcr.h>
> >
> > =A0#define DRIVER_NAME =A0 =A0 =A0 =A0 =A0 =A0"xilinxfb"
> > -#define DRIVER_DESCRIPTION =A0 =A0 "Xilinx TFT LCD frame buffer driver=
"
> > +
> >
> > =A0/*
> > =A0* Xilinx calls it "PLB TFT LCD Controller" though it can also be use=
d for
> > - * the VGA port on the Xilinx ML40x board. This is a hardware display =
controller
> > - * for a 640x480 resolution TFT or VGA screen.
> > + * the VGA port on the Xilinx ML40x board. This is a hardware display
> > + * controller for a 640x480 resolution TFT or VGA screen.
> > =A0*
> > =A0* The interface to the framebuffer is nice and simple. =A0There are =
two
> > =A0* control registers. =A0The first tells the LCD interface where in m=
emory
> > =A0* the frame buffer is (only the 11 most significant bits are used, s=
o
> > =A0* don't start thinking about scrolling). =A0The second allows the LC=
D to
> > =A0* be turned on or off as well as rotated 180 degrees.
> > + *
> > + * In case of direct PLB access the second control register will be at=

> > + * an offset of 4 as compared to the DCR access where the offset is 1
> > + * i.e. REG_CTRL. So this is taken care in the function
> > + * xilinx_fb_out_be32 where it left shifts the offset 2 times in case =
of
> > + * direct PLB access.
> > =A0*/
> > =A0#define NUM_REGS =A0 =A0 =A0 2
> > =A0#define REG_FB_ADDR =A0 =A00
> > @@ -108,10 +112,18 @@ static struct fb_var_screeninfo xilinx_fb_var =3D=
 {
> > =A0 =A0 =A0 =A0.activate =3D =A0 =A0 FB_ACTIVATE_NOW
> > =A0};
> >
> > +
> > +#define PLB_ACCESS_FLAG =A0 =A0 =A0 =A00x1 =A0 =A0 =A0 =A0 =A0 =A0 /* =
1 =3D PLB, 0 =3D DCR */
> > +
> > =A0struct xilinxfb_drvdata {
> >
> > =A0 =A0 =A0 =A0struct fb_info =A0info; =A0 =A0 =A0 =A0 =A0 /* FB driver=
 info record */
> >
> > + =A0 =A0 =A0 phys_addr_t =A0 =A0 regs_phys; =A0 =A0 =A0/* phys. addres=
s of the control
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 registers */
> > + =A0 =A0 =A0 void __iomem =A0 =A0*regs; =A0 =A0 =A0 =A0 =A0/* virt. ad=
dress of the control
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 registers */
> > +
> > =A0 =A0 =A0 =A0dcr_host_t =A0 =A0 =A0dcr_host;
> > =A0 =A0 =A0 =A0unsigned int =A0 =A0dcr_start;
> > =A0 =A0 =A0 =A0unsigned int =A0 =A0dcr_len;
> > @@ -120,6 +132,8 @@ struct xilinxfb_drvdata {
> > =A0 =A0 =A0 =A0dma_addr_t =A0 =A0 =A0fb_phys; =A0 =A0 =A0 =A0/* phys. a=
ddress of the frame buffer */
> > =A0 =A0 =A0 =A0int =A0 =A0 =A0 =A0 =A0 =A0 fb_alloced; =A0 =A0 /* Flag,=
 was the fb memory alloced? */
> >
> > + =A0 =A0 =A0 u8 =A0 =A0 =A0 =A0 =A0 =A0 =A0flags; =A0 =A0 =A0 =A0 =A0/=
* features of the driver */
> > +
> > =A0 =A0 =A0 =A0u32 =A0 =A0 =A0 =A0 =A0 =A0 reg_ctrl_default;
> >
> > =A0 =A0 =A0 =A0u32 =A0 =A0 =A0 =A0 =A0 =A0 pseudo_palette[PALETTE_ENTRI=
ES_NO];
> > @@ -130,14 +144,19 @@ struct xilinxfb_drvdata {
> > =A0 =A0 =A0 =A0container_of(_info, struct xilinxfb_drvdata, info)
> >
> > =A0/*
> > - * The LCD controller has DCR interface to its registers, but all
> > - * the boards and configurations the driver has been tested with
> > - * use opb2dcr bridge. So the registers are seen as memory mapped.
> > - * This macro is to make it simple to add the direct DCR access
> > - * when it's needed.
> > + * The XPS TFT Controller can be accessed through PLB or DCR interface=
.
> > + * To perform the read/write on the registers we need to check on
> > + * which bus its connected and call the appropriate write API.
> > =A0*/
> > -#define xilinx_fb_out_be32(driverdata, offset, val) \
> > - =A0 =A0 =A0 dcr_write(driverdata->dcr_host, offset, val)
> > +static void xilinx_fb_out_be32(struct xilinxfb_drvdata *drvdata, u32 o=
ffset,
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 u32 val)
> > +{
> > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 out_be32(drvdata->regs + (offset << 2), v=
al);
> > + =A0 =A0 =A0 else
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_write(drvdata->dcr_host, offset, val)=
;
> > +
> > +}
> >
> > =A0static int
> > =A0xilinx_fb_setcolreg(unsigned regno, unsigned red, unsigned green, un=
signed blue,
> > @@ -175,7 +194,8 @@ xilinx_fb_blank(int blank_mode, struct fb_info *fbi=
)
> > =A0 =A0 =A0 =A0switch (blank_mode) {
> > =A0 =A0 =A0 =A0case FB_BLANK_UNBLANK:
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0/* turn on panel */
> > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL, drv=
data->reg_ctrl_default);
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL,
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 drvdata->reg_ctrl_default);
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0break;
> >
> > =A0 =A0 =A0 =A0case FB_BLANK_NORMAL:
> > @@ -191,8 +211,7 @@ xilinx_fb_blank(int blank_mode, struct fb_info *fbi=
)
> > =A0 =A0 =A0 =A0return 0; /* success */
> > =A0}
> >
> > -static struct fb_ops xilinxfb_ops =3D
> > -{
> > +static struct fb_ops xilinxfb_ops =3D {
> > =A0 =A0 =A0 =A0.owner =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=3D THIS_MODUL=
E,
> > =A0 =A0 =A0 =A0.fb_setcolreg =A0 =A0 =A0 =A0 =A0 =3D xilinx_fb_setcolre=
g,
> > =A0 =A0 =A0 =A0.fb_blank =A0 =A0 =A0 =A0 =A0 =A0 =A0 =3D xilinx_fb_blan=
k,
> > @@ -205,25 +224,35 @@ static struct fb_ops xilinxfb_ops =3D
> > =A0* Bus independent setup/teardown
> > =A0*/
> >
> > -static int xilinxfb_assign(struct device *dev, dcr_host_t dcr_host,
> > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0unsigned int dcr_s=
tart, unsigned int dcr_len,
> > +static int xilinxfb_assign(struct device *dev,
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0struct xilinxfb_dr=
vdata *drvdata,
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0unsigned long phys=
addr,
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 struct xilinxfb_pla=
tform_data *pdata)
> > =A0{
> > - =A0 =A0 =A0 struct xilinxfb_drvdata *drvdata;
> > =A0 =A0 =A0 =A0int rc;
> > =A0 =A0 =A0 =A0int fbsize =3D pdata->xvirt * pdata->yvirt * BYTES_PER_P=
IXEL;
> >
> > - =A0 =A0 =A0 /* Allocate the driver data region */
> > - =A0 =A0 =A0 drvdata =3D kzalloc(sizeof(*drvdata), GFP_KERNEL);
> > - =A0 =A0 =A0 if (!drvdata) {
> > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't allocate device pr=
ivate record\n");
> > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENOMEM;
> > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 /*
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0* Map the control registers in if the =
controller
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0* is on direct PLB interface.
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0*/
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!request_mem_region(physaddr, 8, DRIV=
ER_NAME)) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't lo=
ck memory region at 0x%08lX\n",
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 physaddr)=
;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D -ENODEV;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> > +
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->regs_phys =3D physaddr;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->regs =3D ioremap(physaddr, 8);
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!drvdata->regs) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't lo=
ck memory region at 0x%08lX\n",
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 physaddr)=
;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D -ENODEV;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_map;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> > =A0 =A0 =A0 =A0}
> > - =A0 =A0 =A0 dev_set_drvdata(dev, drvdata);
> > -
> > - =A0 =A0 =A0 drvdata->dcr_start =3D dcr_start;
> > - =A0 =A0 =A0 drvdata->dcr_len =3D dcr_len;
> > - =A0 =A0 =A0 drvdata->dcr_host =3D dcr_host;
> >
> > =A0 =A0 =A0 =A0/* Allocate the framebuffer memory */
> > =A0 =A0 =A0 =A0if (pdata->fb_phys) {
> > @@ -238,7 +267,10 @@ static int xilinxfb_assign(struct device *dev, dcr=
_host_t dcr_host,
> > =A0 =A0 =A0 =A0if (!drvdata->fb_virt) {
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dev_err(dev, "Could not allocate frame b=
uffer memory\n");
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0rc =3D -ENOMEM;
> > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_fbmem;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 else
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
> > =A0 =A0 =A0 =A0}
> >
> > =A0 =A0 =A0 =A0/* Clear (turn to black) the framebuffer */
> > @@ -251,7 +283,8 @@ static int xilinxfb_assign(struct device *dev, dcr_=
host_t dcr_host,
> > =A0 =A0 =A0 =A0drvdata->reg_ctrl_default =3D REG_CTRL_ENABLE;
> > =A0 =A0 =A0 =A0if (pdata->rotate_screen)
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvdata->reg_ctrl_default |=3D REG_CTRL_=
ROTATE;
> > - =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL, drvdata->reg_ctrl_d=
efault);
> > + =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL,
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 drvdata->reg_ctrl_default);
> >
> > =A0 =A0 =A0 =A0/* Fill struct fb_info */
> > =A0 =A0 =A0 =A0drvdata->info.device =3D dev;
> > @@ -287,9 +320,14 @@ static int xilinxfb_assign(struct device *dev, dcr=
_host_t dcr_host,
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0goto err_regfb;
> > =A0 =A0 =A0 =A0}
> >
> > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 /* Put a banner in the log (for DEBUG) */=

> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_dbg(dev, "regs: phys=3D%lx, virt=3D%p=
\n", physaddr,
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 drvdata->regs);
> > + =A0 =A0 =A0 }
> > =A0 =A0 =A0 =A0/* Put a banner in the log (for DEBUG) */
> > =A0 =A0 =A0 =A0dev_dbg(dev, "fb: phys=3D%p, virt=3D%p, size=3D%x\n",
> > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 (void*)drvdata->fb_phys, drvdata->fb_virt=
, fbsize);
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 (void *)drvdata->fb_phys, drvdata->fb_vir=
t, fbsize);
> >
> > =A0 =A0 =A0 =A0return 0; =A0 =A0 =A0 /* success */
> >
> > @@ -300,9 +338,20 @@ err_cmap:
> > =A0 =A0 =A0 =A0if (drvdata->fb_alloced)
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dma_free_coherent(dev, PAGE_ALIGN(fbsize=
), drvdata->fb_virt,
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvdata->fb_phys);
> > + =A0 =A0 =A0 else
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->fb_virt);
> > +
> > =A0 =A0 =A0 =A0/* Turn off the display */
> > =A0 =A0 =A0 =A0xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
> >
> > +err_fbmem:
> > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->regs);
> > +
> > +err_map:
> > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 release_mem_region(physaddr, 8);
> > +
> > =A0err_region:
> > =A0 =A0 =A0 =A0kfree(drvdata);
> > =A0 =A0 =A0 =A0dev_set_drvdata(dev, NULL);
> > @@ -325,11 +374,18 @@ static int xilinxfb_release(struct device *dev)
> > =A0 =A0 =A0 =A0if (drvdata->fb_alloced)
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dma_free_coherent(dev, PAGE_ALIGN(drvdat=
a->info.fix.smem_len),
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvd=
ata->fb_virt, drvdata->fb_phys);
> > + =A0 =A0 =A0 else
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->fb_virt);
> >
> > =A0 =A0 =A0 =A0/* Turn off the display */
> > =A0 =A0 =A0 =A0xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
> >
> > - =A0 =A0 =A0 dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
> > + =A0 =A0 =A0 /* Release the resources, as allocated based on interface=
 */
> > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->regs);
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 release_mem_region(drvdata->regs_phys, 8)=
;
> > + =A0 =A0 =A0 } else
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_unmap(drvdata->dcr_host, drvdata->dcr=
_len);
> >
> > =A0 =A0 =A0 =A0kfree(drvdata);
> > =A0 =A0 =A0 =A0dev_set_drvdata(dev, NULL);
> > @@ -341,27 +397,54 @@ static int xilinxfb_release(struct device *dev)
> > =A0* OF bus binding
> > =A0*/
> >
> > -#if defined(CONFIG_OF)
> > =A0static int __devinit
> > =A0xilinxfb_of_probe(struct of_device *op, const struct of_device_id *m=
atch)
> > =A0{
> > =A0 =A0 =A0 =A0const u32 *prop;
> > + =A0 =A0 =A0 u32 *p;
> > + =A0 =A0 =A0 u32 tft_access;
> > =A0 =A0 =A0 =A0struct xilinxfb_platform_data pdata;
> > + =A0 =A0 =A0 struct resource res;
> > =A0 =A0 =A0 =A0int size, rc;
> > - =A0 =A0 =A0 int start, len;
> > + =A0 =A0 =A0 int start =3D 0, len =3D 0;
> > =A0 =A0 =A0 =A0dcr_host_t dcr_host;
> > + =A0 =A0 =A0 struct xilinxfb_drvdata *drvdata;
> >
> > =A0 =A0 =A0 =A0/* Copy with the default pdata (not a ptr reference!) */=

> > =A0 =A0 =A0 =A0pdata =3D xilinx_fb_default_pdata;
> >
> > =A0 =A0 =A0 =A0dev_dbg(&op->dev, "xilinxfb_of_probe(%p, %p)\n", op, mat=
ch);
> >
> > - =A0 =A0 =A0 start =3D dcr_resource_start(op->node, 0);
> > - =A0 =A0 =A0 len =3D dcr_resource_len(op->node, 0);
> > - =A0 =A0 =A0 dcr_host =3D dcr_map(op->node, start, len);
> > - =A0 =A0 =A0 if (!DCR_MAP_OK(dcr_host)) {
> > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "invalid address\n");
> > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
> > + =A0 =A0 =A0 /*
> > + =A0 =A0 =A0 =A0* To check whether the core is connected directly to D=
CR or PLB
> > + =A0 =A0 =A0 =A0* interface and initialize the tft_access accordingly.=

> > + =A0 =A0 =A0 =A0*/
> > + =A0 =A0 =A0 p =3D (u32 *)of_get_property(op->node, "xlnx,dcr-splb-sla=
ve-if", NULL);
> > +
> > + =A0 =A0 =A0 if (p)
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 tft_access =3D *p;
> > + =A0 =A0 =A0 else
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 tft_access =3D 0; =A0 =A0 =A0 =A0 /* For =
backward compatibility */
> > +
> > + =A0 =A0 =A0 /*
> > + =A0 =A0 =A0 =A0* Fill the resource structure if its direct PLB interf=
ace
> > + =A0 =A0 =A0 =A0* otherwise fill the dcr_host structure.
> > + =A0 =A0 =A0 =A0*/
> > + =A0 =A0 =A0 if (tft_access) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D of_address_to_resource(op->node, 0=
, &res);
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (rc) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "invali=
d address\n");
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> > +
> > + =A0 =A0 =A0 } else {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 start =3D dcr_resource_start(op->node, 0)=
;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 len =3D dcr_resource_len(op->node, 0);
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_host =3D dcr_map(op->node, start, len=
);
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!DCR_MAP_OK(dcr_host)) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "invali=
d address\n");
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> > =A0 =A0 =A0 =A0}
> >
> > =A0 =A0 =A0 =A0prop =3D of_get_property(op->node, "phys-size", &size);
> > @@ -385,7 +468,26 @@ xilinxfb_of_probe(struct of_device *op, const stru=
ct of_device_id *match)
> > =A0 =A0 =A0 =A0if (of_find_property(op->node, "rotate-display", NULL))
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0pdata.rotate_screen =3D 1;
> >
> > - =A0 =A0 =A0 return xilinxfb_assign(&op->dev, dcr_host, start, len, &p=
data);
> > + =A0 =A0 =A0 /* Allocate the driver data region */
> > + =A0 =A0 =A0 drvdata =3D kzalloc(sizeof(*drvdata), GFP_KERNEL);
> > + =A0 =A0 =A0 if (!drvdata) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "Couldn't allocate devi=
ce private record\n");
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENOMEM;
> > + =A0 =A0 =A0 }
> > + =A0 =A0 =A0 dev_set_drvdata(&op->dev, drvdata);
> > +
> > + =A0 =A0 =A0 if (tft_access)
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->flags |=3D PLB_ACCESS_FLAG;
> > +
> > + =A0 =A0 =A0 /* Arguments are passed based on the interface */
> > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return xilinxfb_assign(&op->dev, drvdata,=
 res.start, &pdata);
> > + =A0 =A0 =A0 } else {
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_start =3D start;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_len =3D len;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_host =3D dcr_host;
> > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return xilinxfb_assign(&op->dev, drvdata,=
 0, &pdata);
> > + =A0 =A0 =A0 }
> > =A0}
> >
> > =A0static int __devexit xilinxfb_of_remove(struct of_device *op)
> > @@ -395,6 +497,7 @@ static int __devexit xilinxfb_of_remove(struct of_d=
evice *op)
> >
> > =A0/* Match table for of_platform binding */
> > =A0static struct of_device_id xilinxfb_of_match[] __devinitdata =3D {
> > + =A0 =A0 =A0 { .compatible =3D "xlnx,xps-tft-1.00.a", },
> > =A0 =A0 =A0 =A0{ .compatible =3D "xlnx,plb-tft-cntlr-ref-1.00.a", },
> > =A0 =A0 =A0 =A0{ .compatible =3D "xlnx,plb-dvi-cntlr-ref-1.00.c", },
> > =A0 =A0 =A0 =A0{},
> > @@ -412,22 +515,6 @@ static struct of_platform_driver xilinxfb_of_drive=
r =3D {
> > =A0 =A0 =A0 =A0},
> > =A0};
> >
> > -/* Registration helpers to keep the number of #ifdefs to a minimum */
> > -static inline int __init xilinxfb_of_register(void)
> > -{
> > - =A0 =A0 =A0 pr_debug("xilinxfb: calling of_register_platform_driver()=
\n");
> > - =A0 =A0 =A0 return of_register_platform_driver(&xilinxfb_of_driver);
> > -}
> > -
> > -static inline void __exit xilinxfb_of_unregister(void)
> > -{
> > - =A0 =A0 =A0 of_unregister_platform_driver(&xilinxfb_of_driver);
> > -}
> > -#else /* CONFIG_OF */
> > -/* CONFIG_OF not enabled; do nothing helpers */
> > -static inline int __init xilinxfb_of_register(void) { return 0; }
> > -static inline void __exit xilinxfb_of_unregister(void) { }
> > -#endif /* CONFIG_OF */
> >
> > =A0/* -----------------------------------------------------------------=
----
> > =A0* Module setup and teardown
> > @@ -436,18 +523,18 @@ static inline void __exit xilinxfb_of_unregister(=
void) { }
> > =A0static int __init
> > =A0xilinxfb_init(void)
> > =A0{
> > - =A0 =A0 =A0 return xilinxfb_of_register();
> > + =A0 =A0 =A0 return of_register_platform_driver(&xilinxfb_of_driver);
> > =A0}
> >
> > =A0static void __exit
> > =A0xilinxfb_cleanup(void)
> > =A0{
> > - =A0 =A0 =A0 xilinxfb_of_unregister();
> > + =A0 =A0 =A0 of_unregister_platform_driver(&xilinxfb_of_driver);
> > =A0}
> >
> > =A0module_init(xilinxfb_init);
> > =A0module_exit(xilinxfb_cleanup);
> >
> > =A0MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
> > -MODULE_DESCRIPTION(DRIVER_DESCRIPTION);
> > +MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
> > =A0MODULE_LICENSE("GPL");
> > --
> > 1.6.2.1
> >
> >
> >
> > This email and any attachments are intended for the sole use of the nam=
ed recipient(s) and
> contain(s) confidential information that may be proprietary, privileged o=
r copyrighted under
> applicable law. If you are not the intended recipient, do not read, copy,=
 or forward this email
> message or any attachments. Delete this email message and any attachments=
 immediately.
> >
> >
> >
> =

> =

> =

> --
> Grant Likely, B.Sc., P.Eng.
> Secret Lab Technologies Ltd.


This email and any attachments are intended for the sole use of the named r=
ecipient(s) and contain(s) confidential information that may be proprietary=
, privileged or copyrighted under applicable law. If you are not the intend=
ed recipient, do not read, copy, or forward this email message or any attac=
hments. Delete this email message and any attachments immediately.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support(non-DCR)
  2009-04-13 14:13   ` John Linn
@ 2009-04-13 16:49     ` Stephen Neuendorffer
  2009-04-13 16:58       ` Grant Likely
  0 siblings, 1 reply; 5+ messages in thread
From: Stephen Neuendorffer @ 2009-04-13 16:49 UTC (permalink / raw)
  To: John Linn, grant.likely
  Cc: Suneel Garapati, akonovalov, linux-fbdev-devel, adaplas,
	linuxppc-dev


I think the mainline driver might (still) assume the presence of a PLB->DCR=
 bridge?  =


So there are really 4 cases: =

Core has DCR access, accessed directly using DCR.
Core has DCR access, accessed indirectly using DCR.
Core has DCR access, accessed through plb->dcr bridge.
Core has PLB access.

Steve

> -----Original Message-----
> From: linuxppc-dev-bounces+stephen.neuendorffer=3Dxilinx.com@ozlabs.org [=
mailto:linuxppc-dev-
> bounces+stephen.neuendorffer=3Dxilinx.com@ozlabs.org] On Behalf Of John L=
inn
> Sent: Monday, April 13, 2009 7:13 AM
> To: grant.likely@secretlab.ca
> Cc: linux-fbdev-devel@lists.sourceforge.net; adaplas@gmail.com; Suneel Ga=
rapati; linuxppc-
> dev@ozlabs.org; akonovalov@ru.mvista.com
> Subject: RE: [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support(no=
n-DCR)
> =

> I thought it was based on mainline, but I now see the weirdness you're ta=
lking about.  I'll dig in on
> this and let you know more as I'm confused also.
> =

> -- John
> =

> > -----Original Message-----
> > From: Grant Likely [mailto:grant.likely@secretlab.ca]
> > Sent: Sunday, April 12, 2009 12:15 AM
> > To: John Linn
> > Cc: jwboyer@linux.vnet.ibm.com; linux-fbdev-devel@lists.sourceforge.net=
; linuxppc-dev@ozlabs.org;
> > akonovalov@ru.mvista.com; adaplas@gmail.com; Suneel Garapati
> > Subject: Re: [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support =
(non-DCR)
> >
> > What tree is this patch prepared against?  The version in mainline
> > already does PLB access, and doesn't support DCR at all.  It appears
> > that this driver is based on something that does the opposite.
> >
> > g.
> >
> > On Fri, Apr 10, 2009 at 3:17 PM, John Linn <john.linn@xilinx.com> wrote=
:
> > > From: Suneel <suneelg@xilinx.com>
> > >
> > > Added support for the new xps tft controller.
> > >
> > > The new core has PLB interface support in addition to existing
> > > DCR interface.
> > >
> > > The driver has been modified to support this new core which
> > > can be connected on PLB or DCR bus.
> > >
> > > Signed-off-by: Suneel <suneelg@xilinx.com>
> > > Signed-off-by: John Linn <john.linn@xilinx.com>
> > > ---
> > >
> > > V2 - Incorporated comments from Josh, Grant and others
> > >
> > > =A0drivers/video/xilinxfb.c | =A0213 ++++++++++++++++++++++++++++++++=
--------------
> > > =A01 files changed, 150 insertions(+), 63 deletions(-)
> > >
> > > diff --git a/drivers/video/xilinxfb.c b/drivers/video/xilinxfb.c
> > > index a82c530..d151237 100644
> > > --- a/drivers/video/xilinxfb.c
> > > +++ b/drivers/video/xilinxfb.c
> > > @@ -1,13 +1,13 @@
> > > =A0/*
> > > - * xilinxfb.c
> > > =A0*
> > > - * Xilinx TFT LCD frame buffer driver
> > > + * Xilinx TFT frame buffer driver
> > > =A0*
> > > =A0* Author: MontaVista Software, Inc.
> > > =A0* =A0 =A0 =A0 =A0 source@mvista.com
> > > =A0*
> > > =A0* 2002-2007 (c) MontaVista Software, Inc.
> > > =A0* 2007 (c) Secret Lab Technologies, Ltd.
> > > + * 2009 (c) Xilinx Inc.
> > > =A0*
> > > =A0* This file is licensed under the terms of the GNU General Public =
License
> > > =A0* version 2. =A0This program is licensed "as is" without any warra=
nty of any
> > > @@ -31,27 +31,31 @@
> > > =A0#include <linux/fb.h>
> > > =A0#include <linux/init.h>
> > > =A0#include <linux/dma-mapping.h>
> > > -#if defined(CONFIG_OF)
> > > =A0#include <linux/of_device.h>
> > > =A0#include <linux/of_platform.h>
> > > -#endif
> > > -#include <asm/io.h>
> > > +#include <linux/io.h>
> > > =A0#include <linux/xilinxfb.h>
> > > =A0#include <asm/dcr.h>
> > >
> > > =A0#define DRIVER_NAME =A0 =A0 =A0 =A0 =A0 =A0"xilinxfb"
> > > -#define DRIVER_DESCRIPTION =A0 =A0 "Xilinx TFT LCD frame buffer driv=
er"
> > > +
> > >
> > > =A0/*
> > > =A0* Xilinx calls it "PLB TFT LCD Controller" though it can also be u=
sed for
> > > - * the VGA port on the Xilinx ML40x board. This is a hardware displa=
y controller
> > > - * for a 640x480 resolution TFT or VGA screen.
> > > + * the VGA port on the Xilinx ML40x board. This is a hardware displa=
y
> > > + * controller for a 640x480 resolution TFT or VGA screen.
> > > =A0*
> > > =A0* The interface to the framebuffer is nice and simple. =A0There ar=
e two
> > > =A0* control registers. =A0The first tells the LCD interface where in=
 memory
> > > =A0* the frame buffer is (only the 11 most significant bits are used,=
 so
> > > =A0* don't start thinking about scrolling). =A0The second allows the =
LCD to
> > > =A0* be turned on or off as well as rotated 180 degrees.
> > > + *
> > > + * In case of direct PLB access the second control register will be =
at
> > > + * an offset of 4 as compared to the DCR access where the offset is =
1
> > > + * i.e. REG_CTRL. So this is taken care in the function
> > > + * xilinx_fb_out_be32 where it left shifts the offset 2 times in cas=
e of
> > > + * direct PLB access.
> > > =A0*/
> > > =A0#define NUM_REGS =A0 =A0 =A0 2
> > > =A0#define REG_FB_ADDR =A0 =A00
> > > @@ -108,10 +112,18 @@ static struct fb_var_screeninfo xilinx_fb_var =
=3D {
> > > =A0 =A0 =A0 =A0.activate =3D =A0 =A0 FB_ACTIVATE_NOW
> > > =A0};
> > >
> > > +
> > > +#define PLB_ACCESS_FLAG =A0 =A0 =A0 =A00x1 =A0 =A0 =A0 =A0 =A0 =A0 /=
* 1 =3D PLB, 0 =3D DCR */
> > > +
> > > =A0struct xilinxfb_drvdata {
> > >
> > > =A0 =A0 =A0 =A0struct fb_info =A0info; =A0 =A0 =A0 =A0 =A0 /* FB driv=
er info record */
> > >
> > > + =A0 =A0 =A0 phys_addr_t =A0 =A0 regs_phys; =A0 =A0 =A0/* phys. addr=
ess of the control
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 =A0 registers */
> > > + =A0 =A0 =A0 void __iomem =A0 =A0*regs; =A0 =A0 =A0 =A0 =A0/* virt. =
address of the control
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 =A0 registers */
> > > +
> > > =A0 =A0 =A0 =A0dcr_host_t =A0 =A0 =A0dcr_host;
> > > =A0 =A0 =A0 =A0unsigned int =A0 =A0dcr_start;
> > > =A0 =A0 =A0 =A0unsigned int =A0 =A0dcr_len;
> > > @@ -120,6 +132,8 @@ struct xilinxfb_drvdata {
> > > =A0 =A0 =A0 =A0dma_addr_t =A0 =A0 =A0fb_phys; =A0 =A0 =A0 =A0/* phys.=
 address of the frame buffer */
> > > =A0 =A0 =A0 =A0int =A0 =A0 =A0 =A0 =A0 =A0 fb_alloced; =A0 =A0 /* Fla=
g, was the fb memory alloced? */
> > >
> > > + =A0 =A0 =A0 u8 =A0 =A0 =A0 =A0 =A0 =A0 =A0flags; =A0 =A0 =A0 =A0 =
=A0/* features of the driver */
> > > +
> > > =A0 =A0 =A0 =A0u32 =A0 =A0 =A0 =A0 =A0 =A0 reg_ctrl_default;
> > >
> > > =A0 =A0 =A0 =A0u32 =A0 =A0 =A0 =A0 =A0 =A0 pseudo_palette[PALETTE_ENT=
RIES_NO];
> > > @@ -130,14 +144,19 @@ struct xilinxfb_drvdata {
> > > =A0 =A0 =A0 =A0container_of(_info, struct xilinxfb_drvdata, info)
> > >
> > > =A0/*
> > > - * The LCD controller has DCR interface to its registers, but all
> > > - * the boards and configurations the driver has been tested with
> > > - * use opb2dcr bridge. So the registers are seen as memory mapped.
> > > - * This macro is to make it simple to add the direct DCR access
> > > - * when it's needed.
> > > + * The XPS TFT Controller can be accessed through PLB or DCR interfa=
ce.
> > > + * To perform the read/write on the registers we need to check on
> > > + * which bus its connected and call the appropriate write API.
> > > =A0*/
> > > -#define xilinx_fb_out_be32(driverdata, offset, val) \
> > > - =A0 =A0 =A0 dcr_write(driverdata->dcr_host, offset, val)
> > > +static void xilinx_fb_out_be32(struct xilinxfb_drvdata *drvdata, u32=
 offset,
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 u32 val=
)
> > > +{
> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 out_be32(drvdata->regs + (offset << 2),=
 val);
> > > + =A0 =A0 =A0 else
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_write(drvdata->dcr_host, offset, va=
l);
> > > +
> > > +}
> > >
> > > =A0static int
> > > =A0xilinx_fb_setcolreg(unsigned regno, unsigned red, unsigned green, =
unsigned blue,
> > > @@ -175,7 +194,8 @@ xilinx_fb_blank(int blank_mode, struct fb_info *f=
bi)
> > > =A0 =A0 =A0 =A0switch (blank_mode) {
> > > =A0 =A0 =A0 =A0case FB_BLANK_UNBLANK:
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0/* turn on panel */
> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL, d=
rvdata->reg_ctrl_default);
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL,
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 drvdata->reg_ctrl_default);
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0break;
> > >
> > > =A0 =A0 =A0 =A0case FB_BLANK_NORMAL:
> > > @@ -191,8 +211,7 @@ xilinx_fb_blank(int blank_mode, struct fb_info *f=
bi)
> > > =A0 =A0 =A0 =A0return 0; /* success */
> > > =A0}
> > >
> > > -static struct fb_ops xilinxfb_ops =3D
> > > -{
> > > +static struct fb_ops xilinxfb_ops =3D {
> > > =A0 =A0 =A0 =A0.owner =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=3D THIS_MOD=
ULE,
> > > =A0 =A0 =A0 =A0.fb_setcolreg =A0 =A0 =A0 =A0 =A0 =3D xilinx_fb_setcol=
reg,
> > > =A0 =A0 =A0 =A0.fb_blank =A0 =A0 =A0 =A0 =A0 =A0 =A0 =3D xilinx_fb_bl=
ank,
> > > @@ -205,25 +224,35 @@ static struct fb_ops xilinxfb_ops =3D
> > > =A0* Bus independent setup/teardown
> > > =A0*/
> > >
> > > -static int xilinxfb_assign(struct device *dev, dcr_host_t dcr_host,
> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0unsigned int dcr=
_start, unsigned int dcr_len,
> > > +static int xilinxfb_assign(struct device *dev,
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0struct xilinxfb_=
drvdata *drvdata,
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0unsigned long ph=
ysaddr,
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 struct xilinxfb_p=
latform_data *pdata)
> > > =A0{
> > > - =A0 =A0 =A0 struct xilinxfb_drvdata *drvdata;
> > > =A0 =A0 =A0 =A0int rc;
> > > =A0 =A0 =A0 =A0int fbsize =3D pdata->xvirt * pdata->yvirt * BYTES_PER=
_PIXEL;
> > >
> > > - =A0 =A0 =A0 /* Allocate the driver data region */
> > > - =A0 =A0 =A0 drvdata =3D kzalloc(sizeof(*drvdata), GFP_KERNEL);
> > > - =A0 =A0 =A0 if (!drvdata) {
> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't allocate device =
private record\n");
> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENOMEM;
> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 /*
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0* Map the control registers in if th=
e controller
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0* is on direct PLB interface.
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0*/
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!request_mem_region(physaddr, 8, DR=
IVER_NAME)) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't =
lock memory region at 0x%08lX\n",
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 physadd=
r);
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D -ENODEV;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> > > +
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->regs_phys =3D physaddr;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->regs =3D ioremap(physaddr, 8);=

> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!drvdata->regs) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't =
lock memory region at 0x%08lX\n",
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 physadd=
r);
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D -ENODEV;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_map;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> > > =A0 =A0 =A0 =A0}
> > > - =A0 =A0 =A0 dev_set_drvdata(dev, drvdata);
> > > -
> > > - =A0 =A0 =A0 drvdata->dcr_start =3D dcr_start;
> > > - =A0 =A0 =A0 drvdata->dcr_len =3D dcr_len;
> > > - =A0 =A0 =A0 drvdata->dcr_host =3D dcr_host;
> > >
> > > =A0 =A0 =A0 =A0/* Allocate the framebuffer memory */
> > > =A0 =A0 =A0 =A0if (pdata->fb_phys) {
> > > @@ -238,7 +267,10 @@ static int xilinxfb_assign(struct device *dev, d=
cr_host_t dcr_host,
> > > =A0 =A0 =A0 =A0if (!drvdata->fb_virt) {
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dev_err(dev, "Could not allocate frame=
 buffer memory\n");
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0rc =3D -ENOMEM;
> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_fbmem;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 else
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
> > > =A0 =A0 =A0 =A0}
> > >
> > > =A0 =A0 =A0 =A0/* Clear (turn to black) the framebuffer */
> > > @@ -251,7 +283,8 @@ static int xilinxfb_assign(struct device *dev, dc=
r_host_t dcr_host,
> > > =A0 =A0 =A0 =A0drvdata->reg_ctrl_default =3D REG_CTRL_ENABLE;
> > > =A0 =A0 =A0 =A0if (pdata->rotate_screen)
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvdata->reg_ctrl_default |=3D REG_CTR=
L_ROTATE;
> > > - =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL, drvdata->reg_ctrl=
_default);
> > > + =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL,
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 drvdata->reg_ctrl_default);
> > >
> > > =A0 =A0 =A0 =A0/* Fill struct fb_info */
> > > =A0 =A0 =A0 =A0drvdata->info.device =3D dev;
> > > @@ -287,9 +320,14 @@ static int xilinxfb_assign(struct device *dev, d=
cr_host_t dcr_host,
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0goto err_regfb;
> > > =A0 =A0 =A0 =A0}
> > >
> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 /* Put a banner in the log (for DEBUG) =
*/
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_dbg(dev, "regs: phys=3D%lx, virt=3D=
%p\n", physaddr,
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 drvdata->regs);
> > > + =A0 =A0 =A0 }
> > > =A0 =A0 =A0 =A0/* Put a banner in the log (for DEBUG) */
> > > =A0 =A0 =A0 =A0dev_dbg(dev, "fb: phys=3D%p, virt=3D%p, size=3D%x\n",
> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 (void*)drvdata->fb_phys, drvdata->fb_vi=
rt, fbsize);
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 (void *)drvdata->fb_phys, drvdata->fb_v=
irt, fbsize);
> > >
> > > =A0 =A0 =A0 =A0return 0; =A0 =A0 =A0 /* success */
> > >
> > > @@ -300,9 +338,20 @@ err_cmap:
> > > =A0 =A0 =A0 =A0if (drvdata->fb_alloced)
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dma_free_coherent(dev, PAGE_ALIGN(fbsi=
ze), drvdata->fb_virt,
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvdata->fb_phys);
> > > + =A0 =A0 =A0 else
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->fb_virt);
> > > +
> > > =A0 =A0 =A0 =A0/* Turn off the display */
> > > =A0 =A0 =A0 =A0xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
> > >
> > > +err_fbmem:
> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->regs);
> > > +
> > > +err_map:
> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 release_mem_region(physaddr, 8);
> > > +
> > > =A0err_region:
> > > =A0 =A0 =A0 =A0kfree(drvdata);
> > > =A0 =A0 =A0 =A0dev_set_drvdata(dev, NULL);
> > > @@ -325,11 +374,18 @@ static int xilinxfb_release(struct device *dev)=

> > > =A0 =A0 =A0 =A0if (drvdata->fb_alloced)
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dma_free_coherent(dev, PAGE_ALIGN(drvd=
ata->info.fix.smem_len),
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dr=
vdata->fb_virt, drvdata->fb_phys);
> > > + =A0 =A0 =A0 else
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->fb_virt);
> > >
> > > =A0 =A0 =A0 =A0/* Turn off the display */
> > > =A0 =A0 =A0 =A0xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
> > >
> > > - =A0 =A0 =A0 dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
> > > + =A0 =A0 =A0 /* Release the resources, as allocated based on interfa=
ce */
> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->regs);
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 release_mem_region(drvdata->regs_phys, =
8);
> > > + =A0 =A0 =A0 } else
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_unmap(drvdata->dcr_host, drvdata->d=
cr_len);
> > >
> > > =A0 =A0 =A0 =A0kfree(drvdata);
> > > =A0 =A0 =A0 =A0dev_set_drvdata(dev, NULL);
> > > @@ -341,27 +397,54 @@ static int xilinxfb_release(struct device *dev)=

> > > =A0* OF bus binding
> > > =A0*/
> > >
> > > -#if defined(CONFIG_OF)
> > > =A0static int __devinit
> > > =A0xilinxfb_of_probe(struct of_device *op, const struct of_device_id =
*match)
> > > =A0{
> > > =A0 =A0 =A0 =A0const u32 *prop;
> > > + =A0 =A0 =A0 u32 *p;
> > > + =A0 =A0 =A0 u32 tft_access;
> > > =A0 =A0 =A0 =A0struct xilinxfb_platform_data pdata;
> > > + =A0 =A0 =A0 struct resource res;
> > > =A0 =A0 =A0 =A0int size, rc;
> > > - =A0 =A0 =A0 int start, len;
> > > + =A0 =A0 =A0 int start =3D 0, len =3D 0;
> > > =A0 =A0 =A0 =A0dcr_host_t dcr_host;
> > > + =A0 =A0 =A0 struct xilinxfb_drvdata *drvdata;
> > >
> > > =A0 =A0 =A0 =A0/* Copy with the default pdata (not a ptr reference!) =
*/
> > > =A0 =A0 =A0 =A0pdata =3D xilinx_fb_default_pdata;
> > >
> > > =A0 =A0 =A0 =A0dev_dbg(&op->dev, "xilinxfb_of_probe(%p, %p)\n", op, m=
atch);
> > >
> > > - =A0 =A0 =A0 start =3D dcr_resource_start(op->node, 0);
> > > - =A0 =A0 =A0 len =3D dcr_resource_len(op->node, 0);
> > > - =A0 =A0 =A0 dcr_host =3D dcr_map(op->node, start, len);
> > > - =A0 =A0 =A0 if (!DCR_MAP_OK(dcr_host)) {
> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "invalid address\n");=

> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
> > > + =A0 =A0 =A0 /*
> > > + =A0 =A0 =A0 =A0* To check whether the core is connected directly to=
 DCR or PLB
> > > + =A0 =A0 =A0 =A0* interface and initialize the tft_access accordingl=
y.
> > > + =A0 =A0 =A0 =A0*/
> > > + =A0 =A0 =A0 p =3D (u32 *)of_get_property(op->node, "xlnx,dcr-splb-s=
lave-if", NULL);
> > > +
> > > + =A0 =A0 =A0 if (p)
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 tft_access =3D *p;
> > > + =A0 =A0 =A0 else
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 tft_access =3D 0; =A0 =A0 =A0 =A0 /* Fo=
r backward compatibility */
> > > +
> > > + =A0 =A0 =A0 /*
> > > + =A0 =A0 =A0 =A0* Fill the resource structure if its direct PLB inte=
rface
> > > + =A0 =A0 =A0 =A0* otherwise fill the dcr_host structure.
> > > + =A0 =A0 =A0 =A0*/
> > > + =A0 =A0 =A0 if (tft_access) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D of_address_to_resource(op->node,=
 0, &res);
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (rc) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "inva=
lid address\n");
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> > > +
> > > + =A0 =A0 =A0 } else {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 start =3D dcr_resource_start(op->node, =
0);
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 len =3D dcr_resource_len(op->node, 0);
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_host =3D dcr_map(op->node, start, l=
en);
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!DCR_MAP_OK(dcr_host)) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "inva=
lid address\n");
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
> > > =A0 =A0 =A0 =A0}
> > >
> > > =A0 =A0 =A0 =A0prop =3D of_get_property(op->node, "phys-size", &size)=
;
> > > @@ -385,7 +468,26 @@ xilinxfb_of_probe(struct of_device *op, const st=
ruct of_device_id *match)
> > > =A0 =A0 =A0 =A0if (of_find_property(op->node, "rotate-display", NULL)=
)
> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0pdata.rotate_screen =3D 1;
> > >
> > > - =A0 =A0 =A0 return xilinxfb_assign(&op->dev, dcr_host, start, len, =
&pdata);
> > > + =A0 =A0 =A0 /* Allocate the driver data region */
> > > + =A0 =A0 =A0 drvdata =3D kzalloc(sizeof(*drvdata), GFP_KERNEL);
> > > + =A0 =A0 =A0 if (!drvdata) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "Couldn't allocate de=
vice private record\n");
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENOMEM;
> > > + =A0 =A0 =A0 }
> > > + =A0 =A0 =A0 dev_set_drvdata(&op->dev, drvdata);
> > > +
> > > + =A0 =A0 =A0 if (tft_access)
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->flags |=3D PLB_ACCESS_FLAG;
> > > +
> > > + =A0 =A0 =A0 /* Arguments are passed based on the interface */
> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return xilinxfb_assign(&op->dev, drvdat=
a, res.start, &pdata);
> > > + =A0 =A0 =A0 } else {
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_start =3D start;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_len =3D len;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_host =3D dcr_host;
> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return xilinxfb_assign(&op->dev, drvdat=
a, 0, &pdata);
> > > + =A0 =A0 =A0 }
> > > =A0}
> > >
> > > =A0static int __devexit xilinxfb_of_remove(struct of_device *op)
> > > @@ -395,6 +497,7 @@ static int __devexit xilinxfb_of_remove(struct of=
_device *op)
> > >
> > > =A0/* Match table for of_platform binding */
> > > =A0static struct of_device_id xilinxfb_of_match[] __devinitdata =3D {=

> > > + =A0 =A0 =A0 { .compatible =3D "xlnx,xps-tft-1.00.a", },
> > > =A0 =A0 =A0 =A0{ .compatible =3D "xlnx,plb-tft-cntlr-ref-1.00.a", },
> > > =A0 =A0 =A0 =A0{ .compatible =3D "xlnx,plb-dvi-cntlr-ref-1.00.c", },
> > > =A0 =A0 =A0 =A0{},
> > > @@ -412,22 +515,6 @@ static struct of_platform_driver xilinxfb_of_dri=
ver =3D {
> > > =A0 =A0 =A0 =A0},
> > > =A0};
> > >
> > > -/* Registration helpers to keep the number of #ifdefs to a minimum *=
/
> > > -static inline int __init xilinxfb_of_register(void)
> > > -{
> > > - =A0 =A0 =A0 pr_debug("xilinxfb: calling of_register_platform_driver=
()\n");
> > > - =A0 =A0 =A0 return of_register_platform_driver(&xilinxfb_of_driver)=
;
> > > -}
> > > -
> > > -static inline void __exit xilinxfb_of_unregister(void)
> > > -{
> > > - =A0 =A0 =A0 of_unregister_platform_driver(&xilinxfb_of_driver);
> > > -}
> > > -#else /* CONFIG_OF */
> > > -/* CONFIG_OF not enabled; do nothing helpers */
> > > -static inline int __init xilinxfb_of_register(void) { return 0; }
> > > -static inline void __exit xilinxfb_of_unregister(void) { }
> > > -#endif /* CONFIG_OF */
> > >
> > > =A0/* ---------------------------------------------------------------=
------
> > > =A0* Module setup and teardown
> > > @@ -436,18 +523,18 @@ static inline void __exit xilinxfb_of_unregiste=
r(void) { }
> > > =A0static int __init
> > > =A0xilinxfb_init(void)
> > > =A0{
> > > - =A0 =A0 =A0 return xilinxfb_of_register();
> > > + =A0 =A0 =A0 return of_register_platform_driver(&xilinxfb_of_driver)=
;
> > > =A0}
> > >
> > > =A0static void __exit
> > > =A0xilinxfb_cleanup(void)
> > > =A0{
> > > - =A0 =A0 =A0 xilinxfb_of_unregister();
> > > + =A0 =A0 =A0 of_unregister_platform_driver(&xilinxfb_of_driver);
> > > =A0}
> > >
> > > =A0module_init(xilinxfb_init);
> > > =A0module_exit(xilinxfb_cleanup);
> > >
> > > =A0MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
> > > -MODULE_DESCRIPTION(DRIVER_DESCRIPTION);
> > > +MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
> > > =A0MODULE_LICENSE("GPL");
> > > --
> > > 1.6.2.1
> > >
> > >
> > >
> > > This email and any attachments are intended for the sole use of the n=
amed recipient(s) and
> > contain(s) confidential information that may be proprietary, privileged=
 or copyrighted under
> > applicable law. If you are not the intended recipient, do not read, cop=
y, or forward this email
> > message or any attachments. Delete this email message and any attachmen=
ts immediately.
> > >
> > >
> > >
> >
> >
> >
> > --
> > Grant Likely, B.Sc., P.Eng.
> > Secret Lab Technologies Ltd.
> =

> =

> This email and any attachments are intended for the sole use of the named=
 recipient(s) and contain(s)
> confidential information that may be proprietary, privileged or copyright=
ed under applicable law. If
> you are not the intended recipient, do not read, copy, or forward this em=
ail message or any
> attachments. Delete this email message and any attachments immediately.
> =

> =

> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev


This email and any attachments are intended for the sole use of the named r=
ecipient(s) and contain(s) confidential information that may be proprietary=
, privileged or copyrighted under applicable law. If you are not the intend=
ed recipient, do not read, copy, or forward this email message or any attac=
hments. Delete this email message and any attachments immediately.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support(non-DCR)
  2009-04-13 16:49     ` [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support(non-DCR) Stephen Neuendorffer
@ 2009-04-13 16:58       ` Grant Likely
  0 siblings, 0 replies; 5+ messages in thread
From: Grant Likely @ 2009-04-13 16:58 UTC (permalink / raw)
  To: Stephen Neuendorffer
  Cc: linux-fbdev-devel, adaplas, Suneel Garapati, linuxppc-dev,
	akonovalov, John Linn

On Mon, Apr 13, 2009 at 10:49 AM, Stephen Neuendorffer
<stephen.neuendorffer@xilinx.com> wrote:
>
> I think the mainline driver might (still) assume the presence of a PLB->D=
CR bridge?

Correct.

> So there are really 4 cases:
> Core has DCR access, accessed directly using DCR.
> Core has DCR access, accessed indirectly using DCR.
> Core has DCR access, accessed through plb->dcr bridge.
> Core has PLB access.

sounds right to me.

g.

>
> Steve
>
>> -----Original Message-----
>> From: linuxppc-dev-bounces+stephen.neuendorffer=3Dxilinx.com@ozlabs.org =
[mailto:linuxppc-dev-
>> bounces+stephen.neuendorffer=3Dxilinx.com@ozlabs.org] On Behalf Of John =
Linn
>> Sent: Monday, April 13, 2009 7:13 AM
>> To: grant.likely@secretlab.ca
>> Cc: linux-fbdev-devel@lists.sourceforge.net; adaplas@gmail.com; Suneel G=
arapati; linuxppc-
>> dev@ozlabs.org; akonovalov@ru.mvista.com
>> Subject: RE: [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support(n=
on-DCR)
>>
>> I thought it was based on mainline, but I now see the weirdness you're t=
alking about. =A0I'll dig in on
>> this and let you know more as I'm confused also.
>>
>> -- John
>>
>> > -----Original Message-----
>> > From: Grant Likely [mailto:grant.likely@secretlab.ca]
>> > Sent: Sunday, April 12, 2009 12:15 AM
>> > To: John Linn
>> > Cc: jwboyer@linux.vnet.ibm.com; linux-fbdev-devel@lists.sourceforge.ne=
t; linuxppc-dev@ozlabs.org;
>> > akonovalov@ru.mvista.com; adaplas@gmail.com; Suneel Garapati
>> > Subject: Re: [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support=
 (non-DCR)
>> >
>> > What tree is this patch prepared against? =A0The version in mainline
>> > already does PLB access, and doesn't support DCR at all. =A0It appears
>> > that this driver is based on something that does the opposite.
>> >
>> > g.
>> >
>> > On Fri, Apr 10, 2009 at 3:17 PM, John Linn <john.linn@xilinx.com> wrot=
e:
>> > > From: Suneel <suneelg@xilinx.com>
>> > >
>> > > Added support for the new xps tft controller.
>> > >
>> > > The new core has PLB interface support in addition to existing
>> > > DCR interface.
>> > >
>> > > The driver has been modified to support this new core which
>> > > can be connected on PLB or DCR bus.
>> > >
>> > > Signed-off-by: Suneel <suneelg@xilinx.com>
>> > > Signed-off-by: John Linn <john.linn@xilinx.com>
>> > > ---
>> > >
>> > > V2 - Incorporated comments from Josh, Grant and others
>> > >
>> > > =A0drivers/video/xilinxfb.c | =A0213 +++++++++++++++++++++++++++++++=
+--------------
>> > > =A01 files changed, 150 insertions(+), 63 deletions(-)
>> > >
>> > > diff --git a/drivers/video/xilinxfb.c b/drivers/video/xilinxfb.c
>> > > index a82c530..d151237 100644
>> > > --- a/drivers/video/xilinxfb.c
>> > > +++ b/drivers/video/xilinxfb.c
>> > > @@ -1,13 +1,13 @@
>> > > =A0/*
>> > > - * xilinxfb.c
>> > > =A0*
>> > > - * Xilinx TFT LCD frame buffer driver
>> > > + * Xilinx TFT frame buffer driver
>> > > =A0*
>> > > =A0* Author: MontaVista Software, Inc.
>> > > =A0* =A0 =A0 =A0 =A0 source@mvista.com
>> > > =A0*
>> > > =A0* 2002-2007 (c) MontaVista Software, Inc.
>> > > =A0* 2007 (c) Secret Lab Technologies, Ltd.
>> > > + * 2009 (c) Xilinx Inc.
>> > > =A0*
>> > > =A0* This file is licensed under the terms of the GNU General Public=
 License
>> > > =A0* version 2. =A0This program is licensed "as is" without any warr=
anty of any
>> > > @@ -31,27 +31,31 @@
>> > > =A0#include <linux/fb.h>
>> > > =A0#include <linux/init.h>
>> > > =A0#include <linux/dma-mapping.h>
>> > > -#if defined(CONFIG_OF)
>> > > =A0#include <linux/of_device.h>
>> > > =A0#include <linux/of_platform.h>
>> > > -#endif
>> > > -#include <asm/io.h>
>> > > +#include <linux/io.h>
>> > > =A0#include <linux/xilinxfb.h>
>> > > =A0#include <asm/dcr.h>
>> > >
>> > > =A0#define DRIVER_NAME =A0 =A0 =A0 =A0 =A0 =A0"xilinxfb"
>> > > -#define DRIVER_DESCRIPTION =A0 =A0 "Xilinx TFT LCD frame buffer dri=
ver"
>> > > +
>> > >
>> > > =A0/*
>> > > =A0* Xilinx calls it "PLB TFT LCD Controller" though it can also be =
used for
>> > > - * the VGA port on the Xilinx ML40x board. This is a hardware displ=
ay controller
>> > > - * for a 640x480 resolution TFT or VGA screen.
>> > > + * the VGA port on the Xilinx ML40x board. This is a hardware displ=
ay
>> > > + * controller for a 640x480 resolution TFT or VGA screen.
>> > > =A0*
>> > > =A0* The interface to the framebuffer is nice and simple. =A0There a=
re two
>> > > =A0* control registers. =A0The first tells the LCD interface where i=
n memory
>> > > =A0* the frame buffer is (only the 11 most significant bits are used=
, so
>> > > =A0* don't start thinking about scrolling). =A0The second allows the=
 LCD to
>> > > =A0* be turned on or off as well as rotated 180 degrees.
>> > > + *
>> > > + * In case of direct PLB access the second control register will be=
 at
>> > > + * an offset of 4 as compared to the DCR access where the offset is=
 1
>> > > + * i.e. REG_CTRL. So this is taken care in the function
>> > > + * xilinx_fb_out_be32 where it left shifts the offset 2 times in ca=
se of
>> > > + * direct PLB access.
>> > > =A0*/
>> > > =A0#define NUM_REGS =A0 =A0 =A0 2
>> > > =A0#define REG_FB_ADDR =A0 =A00
>> > > @@ -108,10 +112,18 @@ static struct fb_var_screeninfo xilinx_fb_var =
=3D {
>> > > =A0 =A0 =A0 =A0.activate =3D =A0 =A0 FB_ACTIVATE_NOW
>> > > =A0};
>> > >
>> > > +
>> > > +#define PLB_ACCESS_FLAG =A0 =A0 =A0 =A00x1 =A0 =A0 =A0 =A0 =A0 =A0 =
/* 1 =3D PLB, 0 =3D DCR */
>> > > +
>> > > =A0struct xilinxfb_drvdata {
>> > >
>> > > =A0 =A0 =A0 =A0struct fb_info =A0info; =A0 =A0 =A0 =A0 =A0 /* FB dri=
ver info record */
>> > >
>> > > + =A0 =A0 =A0 phys_addr_t =A0 =A0 regs_phys; =A0 =A0 =A0/* phys. add=
ress of the control
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 registers */
>> > > + =A0 =A0 =A0 void __iomem =A0 =A0*regs; =A0 =A0 =A0 =A0 =A0/* virt.=
 address of the control
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 registers */
>> > > +
>> > > =A0 =A0 =A0 =A0dcr_host_t =A0 =A0 =A0dcr_host;
>> > > =A0 =A0 =A0 =A0unsigned int =A0 =A0dcr_start;
>> > > =A0 =A0 =A0 =A0unsigned int =A0 =A0dcr_len;
>> > > @@ -120,6 +132,8 @@ struct xilinxfb_drvdata {
>> > > =A0 =A0 =A0 =A0dma_addr_t =A0 =A0 =A0fb_phys; =A0 =A0 =A0 =A0/* phys=
. address of the frame buffer */
>> > > =A0 =A0 =A0 =A0int =A0 =A0 =A0 =A0 =A0 =A0 fb_alloced; =A0 =A0 /* Fl=
ag, was the fb memory alloced? */
>> > >
>> > > + =A0 =A0 =A0 u8 =A0 =A0 =A0 =A0 =A0 =A0 =A0flags; =A0 =A0 =A0 =A0 =
=A0/* features of the driver */
>> > > +
>> > > =A0 =A0 =A0 =A0u32 =A0 =A0 =A0 =A0 =A0 =A0 reg_ctrl_default;
>> > >
>> > > =A0 =A0 =A0 =A0u32 =A0 =A0 =A0 =A0 =A0 =A0 pseudo_palette[PALETTE_EN=
TRIES_NO];
>> > > @@ -130,14 +144,19 @@ struct xilinxfb_drvdata {
>> > > =A0 =A0 =A0 =A0container_of(_info, struct xilinxfb_drvdata, info)
>> > >
>> > > =A0/*
>> > > - * The LCD controller has DCR interface to its registers, but all
>> > > - * the boards and configurations the driver has been tested with
>> > > - * use opb2dcr bridge. So the registers are seen as memory mapped.
>> > > - * This macro is to make it simple to add the direct DCR access
>> > > - * when it's needed.
>> > > + * The XPS TFT Controller can be accessed through PLB or DCR interf=
ace.
>> > > + * To perform the read/write on the registers we need to check on
>> > > + * which bus its connected and call the appropriate write API.
>> > > =A0*/
>> > > -#define xilinx_fb_out_be32(driverdata, offset, val) \
>> > > - =A0 =A0 =A0 dcr_write(driverdata->dcr_host, offset, val)
>> > > +static void xilinx_fb_out_be32(struct xilinxfb_drvdata *drvdata, u3=
2 offset,
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 u32 va=
l)
>> > > +{
>> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 out_be32(drvdata->regs + (offset << 2)=
, val);
>> > > + =A0 =A0 =A0 else
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_write(drvdata->dcr_host, offset, v=
al);
>> > > +
>> > > +}
>> > >
>> > > =A0static int
>> > > =A0xilinx_fb_setcolreg(unsigned regno, unsigned red, unsigned green,=
 unsigned blue,
>> > > @@ -175,7 +194,8 @@ xilinx_fb_blank(int blank_mode, struct fb_info *=
fbi)
>> > > =A0 =A0 =A0 =A0switch (blank_mode) {
>> > > =A0 =A0 =A0 =A0case FB_BLANK_UNBLANK:
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0/* turn on panel */
>> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL, =
drvdata->reg_ctrl_default);
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL,
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 drvdata->reg_ctrl_default);
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0break;
>> > >
>> > > =A0 =A0 =A0 =A0case FB_BLANK_NORMAL:
>> > > @@ -191,8 +211,7 @@ xilinx_fb_blank(int blank_mode, struct fb_info *=
fbi)
>> > > =A0 =A0 =A0 =A0return 0; /* success */
>> > > =A0}
>> > >
>> > > -static struct fb_ops xilinxfb_ops =3D
>> > > -{
>> > > +static struct fb_ops xilinxfb_ops =3D {
>> > > =A0 =A0 =A0 =A0.owner =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=3D THIS_MO=
DULE,
>> > > =A0 =A0 =A0 =A0.fb_setcolreg =A0 =A0 =A0 =A0 =A0 =3D xilinx_fb_setco=
lreg,
>> > > =A0 =A0 =A0 =A0.fb_blank =A0 =A0 =A0 =A0 =A0 =A0 =A0 =3D xilinx_fb_b=
lank,
>> > > @@ -205,25 +224,35 @@ static struct fb_ops xilinxfb_ops =3D
>> > > =A0* Bus independent setup/teardown
>> > > =A0*/
>> > >
>> > > -static int xilinxfb_assign(struct device *dev, dcr_host_t dcr_host,
>> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0unsigned int dc=
r_start, unsigned int dcr_len,
>> > > +static int xilinxfb_assign(struct device *dev,
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0struct xilinxfb=
_drvdata *drvdata,
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0unsigned long p=
hysaddr,
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 struct xilinxfb_=
platform_data *pdata)
>> > > =A0{
>> > > - =A0 =A0 =A0 struct xilinxfb_drvdata *drvdata;
>> > > =A0 =A0 =A0 =A0int rc;
>> > > =A0 =A0 =A0 =A0int fbsize =3D pdata->xvirt * pdata->yvirt * BYTES_PE=
R_PIXEL;
>> > >
>> > > - =A0 =A0 =A0 /* Allocate the driver data region */
>> > > - =A0 =A0 =A0 drvdata =3D kzalloc(sizeof(*drvdata), GFP_KERNEL);
>> > > - =A0 =A0 =A0 if (!drvdata) {
>> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't allocate device=
 private record\n");
>> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENOMEM;
>> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 /*
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0* Map the control registers in if t=
he controller
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0* is on direct PLB interface.
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0*/
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!request_mem_region(physaddr, 8, D=
RIVER_NAME)) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't=
 lock memory region at 0x%08lX\n",
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 physad=
dr);
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D -ENODEV;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
>> > > +
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->regs_phys =3D physaddr;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->regs =3D ioremap(physaddr, 8)=
;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!drvdata->regs) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(dev, "Couldn't=
 lock memory region at 0x%08lX\n",
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 physad=
dr);
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D -ENODEV;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_map;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
>> > > =A0 =A0 =A0 =A0}
>> > > - =A0 =A0 =A0 dev_set_drvdata(dev, drvdata);
>> > > -
>> > > - =A0 =A0 =A0 drvdata->dcr_start =3D dcr_start;
>> > > - =A0 =A0 =A0 drvdata->dcr_len =3D dcr_len;
>> > > - =A0 =A0 =A0 drvdata->dcr_host =3D dcr_host;
>> > >
>> > > =A0 =A0 =A0 =A0/* Allocate the framebuffer memory */
>> > > =A0 =A0 =A0 =A0if (pdata->fb_phys) {
>> > > @@ -238,7 +267,10 @@ static int xilinxfb_assign(struct device *dev, =
dcr_host_t dcr_host,
>> > > =A0 =A0 =A0 =A0if (!drvdata->fb_virt) {
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dev_err(dev, "Could not allocate fram=
e buffer memory\n");
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0rc =3D -ENOMEM;
>> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_fbmem;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 else
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 goto err_region;
>> > > =A0 =A0 =A0 =A0}
>> > >
>> > > =A0 =A0 =A0 =A0/* Clear (turn to black) the framebuffer */
>> > > @@ -251,7 +283,8 @@ static int xilinxfb_assign(struct device *dev, d=
cr_host_t dcr_host,
>> > > =A0 =A0 =A0 =A0drvdata->reg_ctrl_default =3D REG_CTRL_ENABLE;
>> > > =A0 =A0 =A0 =A0if (pdata->rotate_screen)
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvdata->reg_ctrl_default |=3D REG_CT=
RL_ROTATE;
>> > > - =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL, drvdata->reg_ctr=
l_default);
>> > > + =A0 =A0 =A0 xilinx_fb_out_be32(drvdata, REG_CTRL,
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 drvdata->reg_ctrl_default);
>> > >
>> > > =A0 =A0 =A0 =A0/* Fill struct fb_info */
>> > > =A0 =A0 =A0 =A0drvdata->info.device =3D dev;
>> > > @@ -287,9 +320,14 @@ static int xilinxfb_assign(struct device *dev, =
dcr_host_t dcr_host,
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0goto err_regfb;
>> > > =A0 =A0 =A0 =A0}
>> > >
>> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 /* Put a banner in the log (for DEBUG)=
 */
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_dbg(dev, "regs: phys=3D%lx, virt=
=3D%p\n", physaddr,
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 drvdata->regs);
>> > > + =A0 =A0 =A0 }
>> > > =A0 =A0 =A0 =A0/* Put a banner in the log (for DEBUG) */
>> > > =A0 =A0 =A0 =A0dev_dbg(dev, "fb: phys=3D%p, virt=3D%p, size=3D%x\n",
>> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 (void*)drvdata->fb_phys, drvdata->fb_v=
irt, fbsize);
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 (void *)drvdata->fb_phys, drvdata->fb_=
virt, fbsize);
>> > >
>> > > =A0 =A0 =A0 =A0return 0; =A0 =A0 =A0 /* success */
>> > >
>> > > @@ -300,9 +338,20 @@ err_cmap:
>> > > =A0 =A0 =A0 =A0if (drvdata->fb_alloced)
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dma_free_coherent(dev, PAGE_ALIGN(fbs=
ize), drvdata->fb_virt,
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0drvdata->fb_phys);
>> > > + =A0 =A0 =A0 else
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->fb_virt);
>> > > +
>> > > =A0 =A0 =A0 =A0/* Turn off the display */
>> > > =A0 =A0 =A0 =A0xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
>> > >
>> > > +err_fbmem:
>> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->regs);
>> > > +
>> > > +err_map:
>> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG)
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 release_mem_region(physaddr, 8);
>> > > +
>> > > =A0err_region:
>> > > =A0 =A0 =A0 =A0kfree(drvdata);
>> > > =A0 =A0 =A0 =A0dev_set_drvdata(dev, NULL);
>> > > @@ -325,11 +374,18 @@ static int xilinxfb_release(struct device *dev=
)
>> > > =A0 =A0 =A0 =A0if (drvdata->fb_alloced)
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0dma_free_coherent(dev, PAGE_ALIGN(drv=
data->info.fix.smem_len),
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0d=
rvdata->fb_virt, drvdata->fb_phys);
>> > > + =A0 =A0 =A0 else
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->fb_virt);
>> > >
>> > > =A0 =A0 =A0 =A0/* Turn off the display */
>> > > =A0 =A0 =A0 =A0xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
>> > >
>> > > - =A0 =A0 =A0 dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
>> > > + =A0 =A0 =A0 /* Release the resources, as allocated based on interf=
ace */
>> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 iounmap(drvdata->regs);
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 release_mem_region(drvdata->regs_phys,=
 8);
>> > > + =A0 =A0 =A0 } else
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_unmap(drvdata->dcr_host, drvdata->=
dcr_len);
>> > >
>> > > =A0 =A0 =A0 =A0kfree(drvdata);
>> > > =A0 =A0 =A0 =A0dev_set_drvdata(dev, NULL);
>> > > @@ -341,27 +397,54 @@ static int xilinxfb_release(struct device *dev=
)
>> > > =A0* OF bus binding
>> > > =A0*/
>> > >
>> > > -#if defined(CONFIG_OF)
>> > > =A0static int __devinit
>> > > =A0xilinxfb_of_probe(struct of_device *op, const struct of_device_id=
 *match)
>> > > =A0{
>> > > =A0 =A0 =A0 =A0const u32 *prop;
>> > > + =A0 =A0 =A0 u32 *p;
>> > > + =A0 =A0 =A0 u32 tft_access;
>> > > =A0 =A0 =A0 =A0struct xilinxfb_platform_data pdata;
>> > > + =A0 =A0 =A0 struct resource res;
>> > > =A0 =A0 =A0 =A0int size, rc;
>> > > - =A0 =A0 =A0 int start, len;
>> > > + =A0 =A0 =A0 int start =3D 0, len =3D 0;
>> > > =A0 =A0 =A0 =A0dcr_host_t dcr_host;
>> > > + =A0 =A0 =A0 struct xilinxfb_drvdata *drvdata;
>> > >
>> > > =A0 =A0 =A0 =A0/* Copy with the default pdata (not a ptr reference!)=
 */
>> > > =A0 =A0 =A0 =A0pdata =3D xilinx_fb_default_pdata;
>> > >
>> > > =A0 =A0 =A0 =A0dev_dbg(&op->dev, "xilinxfb_of_probe(%p, %p)\n", op, =
match);
>> > >
>> > > - =A0 =A0 =A0 start =3D dcr_resource_start(op->node, 0);
>> > > - =A0 =A0 =A0 len =3D dcr_resource_len(op->node, 0);
>> > > - =A0 =A0 =A0 dcr_host =3D dcr_map(op->node, start, len);
>> > > - =A0 =A0 =A0 if (!DCR_MAP_OK(dcr_host)) {
>> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "invalid address\n")=
;
>> > > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
>> > > + =A0 =A0 =A0 /*
>> > > + =A0 =A0 =A0 =A0* To check whether the core is connected directly t=
o DCR or PLB
>> > > + =A0 =A0 =A0 =A0* interface and initialize the tft_access according=
ly.
>> > > + =A0 =A0 =A0 =A0*/
>> > > + =A0 =A0 =A0 p =3D (u32 *)of_get_property(op->node, "xlnx,dcr-splb-=
slave-if", NULL);
>> > > +
>> > > + =A0 =A0 =A0 if (p)
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 tft_access =3D *p;
>> > > + =A0 =A0 =A0 else
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 tft_access =3D 0; =A0 =A0 =A0 =A0 /* F=
or backward compatibility */
>> > > +
>> > > + =A0 =A0 =A0 /*
>> > > + =A0 =A0 =A0 =A0* Fill the resource structure if its direct PLB int=
erface
>> > > + =A0 =A0 =A0 =A0* otherwise fill the dcr_host structure.
>> > > + =A0 =A0 =A0 =A0*/
>> > > + =A0 =A0 =A0 if (tft_access) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 rc =3D of_address_to_resource(op->node=
, 0, &res);
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (rc) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "inv=
alid address\n");
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
>> > > +
>> > > + =A0 =A0 =A0 } else {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 start =3D dcr_resource_start(op->node,=
 0);
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 len =3D dcr_resource_len(op->node, 0);
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dcr_host =3D dcr_map(op->node, start, =
len);
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (!DCR_MAP_OK(dcr_host)) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "inv=
alid address\n");
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENODEV;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 }
>> > > =A0 =A0 =A0 =A0}
>> > >
>> > > =A0 =A0 =A0 =A0prop =3D of_get_property(op->node, "phys-size", &size=
);
>> > > @@ -385,7 +468,26 @@ xilinxfb_of_probe(struct of_device *op, const s=
truct of_device_id *match)
>> > > =A0 =A0 =A0 =A0if (of_find_property(op->node, "rotate-display", NULL=
))
>> > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0pdata.rotate_screen =3D 1;
>> > >
>> > > - =A0 =A0 =A0 return xilinxfb_assign(&op->dev, dcr_host, start, len,=
 &pdata);
>> > > + =A0 =A0 =A0 /* Allocate the driver data region */
>> > > + =A0 =A0 =A0 drvdata =3D kzalloc(sizeof(*drvdata), GFP_KERNEL);
>> > > + =A0 =A0 =A0 if (!drvdata) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 dev_err(&op->dev, "Couldn't allocate d=
evice private record\n");
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return -ENOMEM;
>> > > + =A0 =A0 =A0 }
>> > > + =A0 =A0 =A0 dev_set_drvdata(&op->dev, drvdata);
>> > > +
>> > > + =A0 =A0 =A0 if (tft_access)
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->flags |=3D PLB_ACCESS_FLAG;
>> > > +
>> > > + =A0 =A0 =A0 /* Arguments are passed based on the interface */
>> > > + =A0 =A0 =A0 if (drvdata->flags & PLB_ACCESS_FLAG) {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return xilinxfb_assign(&op->dev, drvda=
ta, res.start, &pdata);
>> > > + =A0 =A0 =A0 } else {
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_start =3D start;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_len =3D len;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 drvdata->dcr_host =3D dcr_host;
>> > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return xilinxfb_assign(&op->dev, drvda=
ta, 0, &pdata);
>> > > + =A0 =A0 =A0 }
>> > > =A0}
>> > >
>> > > =A0static int __devexit xilinxfb_of_remove(struct of_device *op)
>> > > @@ -395,6 +497,7 @@ static int __devexit xilinxfb_of_remove(struct o=
f_device *op)
>> > >
>> > > =A0/* Match table for of_platform binding */
>> > > =A0static struct of_device_id xilinxfb_of_match[] __devinitdata =3D =
{
>> > > + =A0 =A0 =A0 { .compatible =3D "xlnx,xps-tft-1.00.a", },
>> > > =A0 =A0 =A0 =A0{ .compatible =3D "xlnx,plb-tft-cntlr-ref-1.00.a", },
>> > > =A0 =A0 =A0 =A0{ .compatible =3D "xlnx,plb-dvi-cntlr-ref-1.00.c", },
>> > > =A0 =A0 =A0 =A0{},
>> > > @@ -412,22 +515,6 @@ static struct of_platform_driver xilinxfb_of_dr=
iver =3D {
>> > > =A0 =A0 =A0 =A0},
>> > > =A0};
>> > >
>> > > -/* Registration helpers to keep the number of #ifdefs to a minimum =
*/
>> > > -static inline int __init xilinxfb_of_register(void)
>> > > -{
>> > > - =A0 =A0 =A0 pr_debug("xilinxfb: calling of_register_platform_drive=
r()\n");
>> > > - =A0 =A0 =A0 return of_register_platform_driver(&xilinxfb_of_driver=
);
>> > > -}
>> > > -
>> > > -static inline void __exit xilinxfb_of_unregister(void)
>> > > -{
>> > > - =A0 =A0 =A0 of_unregister_platform_driver(&xilinxfb_of_driver);
>> > > -}
>> > > -#else /* CONFIG_OF */
>> > > -/* CONFIG_OF not enabled; do nothing helpers */
>> > > -static inline int __init xilinxfb_of_register(void) { return 0; }
>> > > -static inline void __exit xilinxfb_of_unregister(void) { }
>> > > -#endif /* CONFIG_OF */
>> > >
>> > > =A0/* --------------------------------------------------------------=
-------
>> > > =A0* Module setup and teardown
>> > > @@ -436,18 +523,18 @@ static inline void __exit xilinxfb_of_unregist=
er(void) { }
>> > > =A0static int __init
>> > > =A0xilinxfb_init(void)
>> > > =A0{
>> > > - =A0 =A0 =A0 return xilinxfb_of_register();
>> > > + =A0 =A0 =A0 return of_register_platform_driver(&xilinxfb_of_driver=
);
>> > > =A0}
>> > >
>> > > =A0static void __exit
>> > > =A0xilinxfb_cleanup(void)
>> > > =A0{
>> > > - =A0 =A0 =A0 xilinxfb_of_unregister();
>> > > + =A0 =A0 =A0 of_unregister_platform_driver(&xilinxfb_of_driver);
>> > > =A0}
>> > >
>> > > =A0module_init(xilinxfb_init);
>> > > =A0module_exit(xilinxfb_cleanup);
>> > >
>> > > =A0MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
>> > > -MODULE_DESCRIPTION(DRIVER_DESCRIPTION);
>> > > +MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
>> > > =A0MODULE_LICENSE("GPL");
>> > > --
>> > > 1.6.2.1
>> > >
>> > >
>> > >
>> > > This email and any attachments are intended for the sole use of the =
named recipient(s) and
>> > contain(s) confidential information that may be proprietary, privilege=
d or copyrighted under
>> > applicable law. If you are not the intended recipient, do not read, co=
py, or forward this email
>> > message or any attachments. Delete this email message and any attachme=
nts immediately.
>> > >
>> > >
>> > >
>> >
>> >
>> >
>> > --
>> > Grant Likely, B.Sc., P.Eng.
>> > Secret Lab Technologies Ltd.
>>
>>
>> This email and any attachments are intended for the sole use of the name=
d recipient(s) and contain(s)
>> confidential information that may be proprietary, privileged or copyrigh=
ted under applicable law. If
>> you are not the intended recipient, do not read, copy, or forward this e=
mail message or any
>> attachments. Delete this email message and any attachments immediately.
>>
>>
>> _______________________________________________
>> Linuxppc-dev mailing list
>> Linuxppc-dev@ozlabs.org
>> https://ozlabs.org/mailman/listinfo/linuxppc-dev
>
>
> This email and any attachments are intended for the sole use of the named=
 recipient(s) and contain(s) confidential information that may be proprieta=
ry, privileged or copyrighted under applicable law. If you are not the inte=
nded recipient, do not read, copy, or forward this email message or any att=
achments. Delete this email message and any attachments immediately.
>
>
>



--=20
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-04-13 17:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-10 21:17 [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support (non-DCR) John Linn
2009-04-12  6:15 ` Grant Likely
2009-04-13 14:13   ` John Linn
2009-04-13 16:49     ` [PATCH] [V2] Xilinx : Framebuffer Driver: Add PLB support(non-DCR) Stephen Neuendorffer
2009-04-13 16:58       ` Grant Likely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).