Re: [U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-07-02 Thread Minkyu Kang
On 01/07/14 23:36, Przemyslaw Marczak wrote: Hello Minkyu, On 06/27/2014 01:34 PM, Przemyslaw Marczak wrote: On 06/27/2014 11:40 AM, Minkyu Kang wrote: Dear Przemyslaw Marczak, On 26/06/14 23:15, Przemyslaw Marczak wrote: On an Odroid U3 board, the SOC is unable to reset the eMMC card in

Re: [U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-07-02 Thread Przemyslaw Marczak
Hello Minkyu, On 07/02/2014 09:03 AM, Minkyu Kang wrote: On 01/07/14 23:36, Przemyslaw Marczak wrote: Hello Minkyu, On 06/27/2014 01:34 PM, Przemyslaw Marczak wrote: On 06/27/2014 11:40 AM, Minkyu Kang wrote: Dear Przemyslaw Marczak, On 26/06/14 23:15, Przemyslaw Marczak wrote: On an

Re: [U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-07-01 Thread Przemyslaw Marczak
Hello Jeroen, On 06/30/2014 08:30 PM, Jeroen Hofstee wrote: Hello Przemyslaw. [...] #include common.h +void __reset_misc(void) {} + +void reset_misc(void) +__attribute((weak, alias(__reset_misc))); + can you please use __weak here and provide a prototype, wherever it ends up in the

Re: [U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-07-01 Thread Przemyslaw Marczak
Hello Minkyu, On 06/27/2014 01:34 PM, Przemyslaw Marczak wrote: On 06/27/2014 11:40 AM, Minkyu Kang wrote: Dear Przemyslaw Marczak, On 26/06/14 23:15, Przemyslaw Marczak wrote: On an Odroid U3 board, the SOC is unable to reset the eMMC card in the DWMMC mode by the cpu software reset. Manual

Re: [U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-06-30 Thread Przemyslaw Marczak
Hello Jeroen, On 06/27/2014 10:20 PM, Jeroen Hofstee wrote: Hello Przemyslaw, On 27-06-14 13:34, Przemyslaw Marczak wrote: On 06/27/2014 11:40 AM, Minkyu Kang wrote: Dear Przemyslaw Marczak, On 26/06/14 23:15, Przemyslaw Marczak wrote: On an Odroid U3 board, the SOC is unable to reset the

Re: [U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-06-30 Thread Jeroen Hofstee
Hello Przemyslaw. [...] #include common.h +void __reset_misc(void) {} + +void reset_misc(void) +__attribute((weak, alias(__reset_misc))); + can you please use __weak here and provide a prototype, wherever it ends up in the end. It prevents 3 warnings and makes it type safe.. Thanks,

Re: [U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-06-27 Thread Minkyu Kang
Dear Przemyslaw Marczak, On 26/06/14 23:15, Przemyslaw Marczak wrote: On an Odroid U3 board, the SOC is unable to reset the eMMC card in the DWMMC mode by the cpu software reset. Manual reset of the card by switching proper gpio pin - fixes this issue. Such solution needs to add a call to

Re: [U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-06-27 Thread Przemyslaw Marczak
On 06/27/2014 11:40 AM, Minkyu Kang wrote: Dear Przemyslaw Marczak, On 26/06/14 23:15, Przemyslaw Marczak wrote: On an Odroid U3 board, the SOC is unable to reset the eMMC card in the DWMMC mode by the cpu software reset. Manual reset of the card by switching proper gpio pin - fixes this

Re: [U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-06-27 Thread Jeroen Hofstee
Hello Przemyslaw, On 27-06-14 13:34, Przemyslaw Marczak wrote: On 06/27/2014 11:40 AM, Minkyu Kang wrote: Dear Przemyslaw Marczak, On 26/06/14 23:15, Przemyslaw Marczak wrote: On an Odroid U3 board, the SOC is unable to reset the eMMC card in the DWMMC mode by the cpu software reset. Manual