Re: [U-Boot] [PATCH] mvebu_mmc: Driver addition

2014-08-25 Thread Stefan Roese
On 24.08.2014 21:31, Mario Schuknecht wrote: In function mvebu_mmc_write notice command timeout. It is possible that a command is done, but a timeout occurred. Enable timeout in set bus function. Set window registers. Without that I could not use the driver on a Kirkwood 88F6282 SoC. Set high

Re: [U-Boot] [PATCH] mvebu_mmc: Driver addition

2014-08-25 Thread Stefan Roese
On 25.08.2014 12:53, Mario Schuknecht wrote: +/* + * Set window register. + */ +static void mvebu_window_setup(void) +{ + int i; + +for (i = 0; i 4; i++) { + mvebu_mmc_write(WINDOW_CTRL(i)__, 0);

Re: [U-Boot] [PATCH] mvebu_mmc: Driver addition

2014-08-25 Thread Mario Schuknecht
2014-08-25 11:55 GMT+02:00 Stefan Roese s...@denx.de: On 24.08.2014 21:31, Mario Schuknecht wrote: In function mvebu_mmc_write notice command timeout. It is possible that a command is done, but a timeout occurred. Enable timeout in set bus function. Set window registers. Without that I

[U-Boot] [PATCH] mvebu_mmc: Driver addition

2014-08-24 Thread Mario Schuknecht
In function mvebu_mmc_write notice command timeout. It is possible that a command is done, but a timeout occurred. Enable timeout in set bus function. Set window registers. Without that I could not use the driver on a Kirkwood 88F6282 SoC. Set high capacity and 52MHz driver feature.