Re: [PATCH 1/1] [Video/Framebuffer]: Hitachi TX09D70VM1CDA TFT LCD framebuffer driver

From: Paul Mundt
Date: Mon May 12 2008 - 07:20:11 EST


On Mon, May 12, 2008 at 06:49:07PM +0800, Bryan Wu wrote:
> +config FB_HITACHI_TX09_REFRESHRATE
> + int "Refresh rate"
> + depends on FB_HITACHI_TX09
> + range 25 70
> + default 52
> + help
> + Refresh rate of the LCD in Hz. According to data sheet, must
> + be in the interval [52...68].
> +
25..70 != 52..68, pick one and stick with it. If there's a reason for the
discrepency, then document that, too. ie, "data sheet has no relation to
hardware".

> +static void stop_timers(void)
> +{
> + unsigned long flags;
> + long old_value = 0, new_value = 0;
> +
> + local_irq_save(flags);
> +
[snip]

> + while (1) {
> + old_value = new_value;
> + new_value = BFIN_READ(TIMER_VSYNC, COUNTER) ();
> + if ((old_value - new_value) > 45000) {

The only way to break out of here is dependent on the timer. You have no
timeout in the case of the timer getting stuck.

> +static int tx09_fb_open(struct fb_info *info, int user)
> +{
> + unsigned long flags;
> +
> + pr_debug("%s\n", __FUNCTION__);
> +
> + spin_lock_irqsave(&tx09_lock, flags);
> + tx09_open_cnt++; /* increase counter */
> + spin_unlock_irqrestore(&tx09_lock, flags);
> +
> + if (tx09_open_cnt <= 1) { /* opened the first time */
> +
> + /* stop PPI */
> + WRITE_PPI_CONTROL(0);
> + SSYNC();
> +
> + /* configure dma stuff */
> + config_dma();
> +
> + config_ppi();
> +
> + /* start dma */
> + enable_dma(CH_PPI);
> + SSYNC();
> +
> + /* start PPI */
> + WRITE_PPI_CONTROL(READ_PPI_CONTROL() | PORT_EN);
> + SSYNC();
> +
> + if (!t_conf_done)
> + config_timers();
> +
> + start_timers();
> + }
> +

Presumably this should be done in the probe path, rather than lazily.
Though you don't bother doing any error checking, so I suppose it doesn't
really matter.

> +static int tx09_fb_mmap(struct fb_info *info, struct vm_area_struct *vma)
> +{
> + unsigned long flags;
> +
> + pr_debug("%s\n", __FUNCTION__);
> +
> + if (tx09_mmap)
> + return -1; /* already mmap'ed */
> +
> + spin_lock_irqsave(&tx09_lock, flags);
> + tx09_mmap = 1;
> + spin_unlock_irqrestore(&tx09_lock, flags);
> +
> + vma->vm_start = (unsigned long)fb_buffer;
> + vma->vm_end = vma->vm_start + 320 * 240 * 2;
> + vma->vm_flags |= VM_MAYSHARE | VM_SHARED;
> +
> + return 0;
> +}
> +
This is equally bizarre. If you can never support more than one opener of
this device, then have your open() reflect that, rather than trying to do
these lame hacks in every file op.

Beyond that, the size of the VMA is reflected in info->fix.mmio_len,
which the generic fb_mmap() takes care of for you. Other than the
questionable VMA flags, it's not obvious why you rolled your own mmap.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/