From: Andrew Morton <akpm@linux-foundation.org>
To: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Cc: linux-fbdev-devel@lists.sourceforge.net
Subject: Re: patch - bitblt 2D acceleration for s1d13xxxfb
Date: Fri, 5 Jun 2009 13:59:16 -0700 [thread overview]
Message-ID: <20090605135916.34dc2c71.akpm@linux-foundation.org> (raw)
In-Reply-To: <20090605193853.d235e679.kristoffer.ericson@gmail.com>
On Fri, 5 Jun 2009 19:38:53 +0200
Kristoffer Ericson <kristoffer.ericson@gmail.com> wrote:
> Greetings,
>
> Just wanted some feedback since this patch is quite large. Any comments are
> appreciated. It patches, compiles and runs like a fox on fire.
we like firey foxes.
> This patch:
> enables 2D rectfill and copyarea acceleration for 13506, need to look
> at hardware sheets before I can say it works on other version but at minimal
> 13806.
>
> Also some cleans up the code.
>
>
> ...
>
> +/**
> + * we make sure only one bitblt operation is running
> + */
> +static DEFINE_SPINLOCK(s1d13xxxfb_bitblt_lock);
> +
> +/**
> + * list of card production ids
> */
> static const int s1d13xxxfb_prod_ids[] = {
> S1D13505_PROD_ID,
> @@ -59,7 +71,7 @@ static const int s1d13xxxfb_prod_ids[] = {
> S1D13806_PROD_ID,
> };
>
> -/*
> +/**
> * List of card strings
> */
> static const char *s1d13xxxfb_prod_names[] = {
> @@ -68,8 +80,8 @@ static const char *s1d13xxxfb_prod_names[] = {
> "S1D13806",
> };
>
> -/*
> - * Here we define the default struct fb_fix_screeninfo
> +/**
> + * here we define the default struct fb_fix_screeninfo
> */
The /** token is reserved for introducing a kerneldoc-formatted
comment, but none of the above three comments are kerneldoc comments.
> +/**
> + * bltbit_wait_bitset - waits for change in register value
> + * @info : framebuffer structure
> + * @bit : value expected in register
> + * @timeout : ...
> + *
> + * waits until value changes INTO bit
> + */
That one is kerneldoc.
> +u8 bltbit_wait_bitset(struct fb_info *info, u8 bit, int timeout)
The patch adds lots of global functions. Please make symbols static
where possible.
> +{
> + while (!(s1d13xxxfb_readreg(info->par, S1DREG_BBLT_CTL0) & bit)) {
> + udelay(10);
> + if (!--timeout) {
> + dbg_blit("wait_bitset timeout\n");
> + break;
> + }
> + }
> +
> + return timeout;
> +}
> +
>
> ...
>
It otherwise looks OK to my inexpert eye.
------------------------------------------------------------------------------
OpenSolaris 2009.06 is a cutting edge operating system for enterprises
looking to deploy the next generation of Solaris that includes the latest
innovations from Sun and the OpenSource community. Download a copy and
enjoy capabilities such as Networking, Storage and Virtualization.
Go to: http://p.sf.net/sfu/opensolaris-get
next prev parent reply other threads:[~2009-06-05 21:00 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-05 17:38 patch - bitblt 2D acceleration for s1d13xxxfb Kristoffer Ericson
2009-06-05 20:59 ` Andrew Morton [this message]
2009-06-08 13:19 ` Kristoffer Ericson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090605135916.34dc2c71.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=kristoffer.ericson@gmail.com \
--cc=linux-fbdev-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).