Re: [U-Boot] [PATCH v2 1/2] mtd: OMAP: Enable GPMC prefetch mode

2014-12-20 Thread Guido Martínez
Hi Daniel, While trying to enable GPMC prefetch myself I ran into your patch and tested it. Here's some comments. On Wed, Jun 25, 2014 at 02:43:32PM +0200, Daniel Mack wrote: Enable GPMC's prefetch feature for NAND access. This speeds up NAND read access a lot by pre-fetching contents in the

Re: [U-Boot] [PATCH v2 1/2] mtd: OMAP: Enable GPMC prefetch mode

2014-12-20 Thread Daniel Mack
Hi Guido, thanks for your feedback! On 12/19/2014 05:27 PM, Guido Martínez wrote: +/** + * omap_prefetch_enable - configures and starts prefetch transfer + * @fifo_th: fifo threshold to be used for read/ write + * @count: number of bytes to be transferred + * @is_write: prefetch read(0) or

[U-Boot] [PATCH v2 1/2] mtd: OMAP: Enable GPMC prefetch mode

2014-06-25 Thread Daniel Mack
Enable GPMC's prefetch feature for NAND access. This speeds up NAND read access a lot by pre-fetching contents in the background and reading them through the FIFO address. The current implementation has two limitations: a) it only works in 8-bit mode b) it only supports read access Both is