Re: [PATCH v13 0/6] flexcan: Add support for powerpc flexcan (freescale p1010)

2011-08-17 Thread David Miller
From: Robin Holt Date: Tue, 16 Aug 2011 22:32:18 -0500 > The following set of patches have been reviewed by the above parties and > all comments have been integrated. Although the patches stray from the > drivers/net/can directory, the diversions are related to changes for > the flexcan driver.

[PATCH v3] mtd/nand : workaround for Freescale FCM to support large-page Nand chip

2011-08-17 Thread b35362
From: Liu Shuo Freescale FCM controller has a 2K size limitation of buffer RAM. In order to support the Nand flash chip whose page size is larger than 2K bytes, we divide a page into multi-2K pages for MTD layer driver. In that case, we force to set the page size to 2K bytes. We convert the page

Re: [PATCH] mtd-utils: fix corrupt cleanmarker with flash_erase -j command

2011-08-17 Thread Brian Norris
On Wed, Aug 17, 2011 at 12:39 AM, Artem Bityutskiy wrote: > I think the OOB mode should not be a global MTD device state. Each > ioctl invocation should just specify the mode. I agree. This brings up some questions, though. See below. > Brian's idea of having a completely new ioctl or a set of n

RE: [PATCH] RapidIO: Add mport driver for Tsi721 bridge

2011-08-17 Thread Bounine, Alexandre
Andrew Morton wrote: > On Fri, 12 Aug 2011 15:45:34 -0400 > Alexandre Bounine wrote: > > > Add RapidIO mport driver for IDT TSI721 PCI Express-to-SRIO bridge device. > > What a huge driver. It is not over yet. We have plans to add more stuff later. > > > > ... > > +config RAPIDIO_TSI721 > >

Networkinterface on MPC5200b

2011-08-17 Thread Bjoern Slotkowski
Hello, We have two problems when using the fec of the MPC5200b. The occurence of both problems is very seldom. 1. Sometimes the first two octets of the MAC-Adress are wrong. Removing/inserting the driver does not help. 2. Sometimes the communication stops. When Removing the driver following mess

[PATCH] powerpc/mm: fix the call trace when resumed from hibernation

2011-08-17 Thread b29983
From: Tang Yuantian In SMP mode, the kernel would produce call trace when resumed from hibernation. The reason is when the function destroy_context is called to drop the resuming mm context, the mm->context.active is 1 which is wrong and should be zero. We

RE: [PATCH] rio: Use discovered bit to test if enumeration is complete

2011-08-17 Thread Liu Gang-B34182
Hi, Andrew, Could you please apply this patch into your tree? Thanks a lot! Regards, Liu Gang -Original Message- From: Bounine, Alexandre [mailto:alexandre.boun...@idt.com] Sent: Tuesday, August 09, 2011 8:36 PM To: Liu Gang-B34182; linux-ker...@vger.kernel.org Cc: Li Yang-R58472; Zan

Re: [PATCH] mtd-utils: fix corrupt cleanmarker with flash_erase -j command

2011-08-17 Thread Artem Bityutskiy
On Wed, 2011-08-17 at 15:35 +0800, LiuShuo wrote: > I think We can add a new ioctl MEMSETOOBMODE for selecting a mode to > access the OOB area. > > Add new member into struct mtd_info: > > struct mtd_info { > .. > > enum { > MTD_OOB_PLACE, > MTD_OOB_AUTO, >

Re: [PATCH] mtd-utils: fix corrupt cleanmarker with flash_erase -j command

2011-08-17 Thread LiuShuo
于 2011年08月16日 23:06, Artem Bityutskiy 写道: On Wed, 2011-08-03 at 13:50 +0800, b35...@freescale.com wrote: From: Liu Shuo Flash_erase -j should fill discrete freeoob areas with required bytes of JFFS2 cleanmarker in jffs2_check_nand_cleanmarker(). Not just fill the first freeoob area. Signed-off