Re: [PATCH v3 3/3] mtd/nand : workaround for Freescale FCM to supportlarge-page Nand chip

From: Scott Wood
Date: Mon Nov 28 2011 - 16:41:36 EST


On 11/23/2011 06:14 AM, LiuShuo wrote:
> ä 2011å11æ23æ 07:55, Scott Wood åé:
>> On 11/15/2011 03:29 AM, b35362@xxxxxxxxxxxxx wrote:
>>> From: Liu Shuo<b35362@xxxxxxxxxxxxx>
>>>
>>> - if (elbc_fcm_ctrl->oob || elbc_fcm_ctrl->column != 0 ||
>>> + if (elbc_fcm_ctrl->column>= mtd->writesize) {
>>> + /* write oob */
>>> + if (priv->page_size> 1) {
>>> + /* when pagesize of chip is greater than 2048,
>>> + * we have to write full page to write spare
>>> + * region, so we fill '0xff' to main region
>>> + * and some bytes of spare region which we
>>> + * don't want to rewrite.
>>> + * (write '1' won't change the original value)
>>> + */
>>> + memset(elbc_fcm_ctrl->buffer, 0xff,
>>> + elbc_fcm_ctrl->column);
>> I don't like relying on this -- can we use RNDIN instead to do a
>> discontiguous write?
>>
> I have no better way to implement it now.
> Some chips have 'NOP' limitation, so I don't use the FIR_OP_UA to do a
> oob write.

I don't think each RNDIN counts separately against NOP (someone correct
me if I'm wrong). You're writing discontiguous regions of the page in
one operation.

-Scott

--
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/