From: Yan Seiner <yan@seiner.com>
To: linux-media@vger.kernel.org
Subject: Re: cx231xx kernel oops
Date: Tue, 13 Dec 2011 06:47:11 -0800 [thread overview]
Message-ID: <4EE7656F.4070309@seiner.com> (raw)
In-Reply-To: <4EE6D7A9.6030905@seiner.com>
Yan Seiner wrote:
> Yan Seiner wrote:
>> Andy Walls wrote:
>>> 800 MB for 320x420 frames? It sounds like your app has gooned its
>>> requested buffer size.
>>>
>>
>> That's an understatement. :-)
>>
>>> <wild speculation>
>>> This might be due to endianess differences between MIPS abd x86 and
>>> your app only being written and tested on x86.
>>> </wild speculation>
>>>
>>
>> My speculation too. I don't know where that number comes from; the
>> same app works fine with the saa7115 driver if I switch frame
>> grabbers. I'll have to do some fiddling with the code to figure out
>> where the problem lies. It's some interaction between the app and
>> the cx231xx driver.
>
> HAH!
>
> This simple patch fixes it on my MIPS platform - not tested on other
> architectures as I don't have them readily available running a newer
> kernel:
>
OK, too groggy last night with my own success... Here's the better
solution. Should work on all architectures.
diff -U3
/data10/home/yan/openwrt/backfire/trunk/build_dir/linux-brcm47xx/linux-3.0.3/drivers/media/video/cx231xx/cx231xx-pcb-cfg.c
cx231xx-pcb-cfg.c
---
/data10/home/yan/openwrt/backfire/trunk/build_dir/linux-brcm47xx/linux-3.0.3/drivers/media/video/cx231xx/cx231xx-pcb-cfg.c
2011-08-17 10:57:16.000000000 -0700
+++ cx231xx-pcb-cfg.c 2011-12-13 05:50:36.000000000 -0800
@@ -672,7 +672,9 @@
pcb config it is related to */
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, BOARD_CFG_STAT, data, 4);
- config_info = *((u32 *) data);
+ //config_info = *((u32 *) data);
+ config_info = ((u32)(*(data))) + (((u32)(*(data+1))) << 8) +
(((u32)(*(data+2))) << 16) + (((u32)(*(data+3))) << 24);
+ cx231xx_info("config_info %x\n",config_info);
usb_speed = (u8) (config_info & 0x1);
/* Verify this device belongs to Bus power or Self power device */
--
Few people are capable of expressing with equanimity opinions which differ from the prejudices of their social environment. Most people are even incapable of forming such opinions.
Albert Einstein
next prev parent reply other threads:[~2011-12-13 14:47 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-05 2:01 cx231xx kernel oops Yan Seiner
2011-12-05 4:15 ` Andy Walls
2011-12-05 4:21 ` Yan Seiner
2011-12-05 4:45 ` Yan Seiner
2011-12-05 4:54 ` Yan Seiner
2011-12-05 12:19 ` Yan Seiner
2011-12-05 12:31 ` Yan Seiner
2011-12-05 15:18 ` Andy Walls
2011-12-05 15:28 ` Yan Seiner
2011-12-12 1:04 ` Yan Seiner
2011-12-12 12:34 ` Andy Walls
2011-12-12 12:46 ` Yan Seiner
2011-12-12 14:23 ` Devin Heitmueller
2011-12-12 15:58 ` Yan Seiner
2011-12-12 16:22 ` Devin Heitmueller
2011-12-12 16:29 ` Yan Seiner
2011-12-13 4:42 ` Yan Seiner
2011-12-13 14:47 ` Yan Seiner [this message]
2011-12-05 15:06 ` Andy Walls
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=4EE7656F.4070309@seiner.com \
--to=yan@seiner.com \
--cc=linux-media@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.