Re: [U-Boot] [PATCH v5] mx6: add support of multi-processor command

2014-07-15 Thread Stefano Babic
Hi Gabriel, On 13/07/2014 00:31, Gabriel Huau wrote: This allows u-boot to load different OS or Bare Metal application on the different cores of the i.MX6DQ. For example: we can run Android on cpu0 and a RT OS like QNX/FreeRTOS on cpu1. Signed-off-by: Gabriel Huau cont...@huau-gabriel.fr

Re: [U-Boot] [PATCH v5] mx6: add support of multi-processor command

2014-07-15 Thread gabriel huau
On 07/15/2014 12:49 AM, Stefano Babic wrote: Hi Gabriel, On 13/07/2014 00:31, Gabriel Huau wrote: This allows u-boot to load different OS or Bare Metal application on the different cores of the i.MX6DQ. For example: we can run Android on cpu0 and a RT OS like QNX/FreeRTOS on cpu1.

Re: [U-Boot] [PATCH v5] mx6: add support of multi-processor command

2014-07-15 Thread Stefano Babic
Hi Gabriel, On 15/07/2014 16:13, gabriel huau wrote: I have just investigate a bit. The file is included by common/board_f.c but it is, frankly, quite not used. There are several prototype inside it: void setup_mp(void); void cpu_mp_lmb_reserve(struct lmb *lmb); int is_core_disabled(int

Re: [U-Boot] [PATCH v5] mx6: add support of multi-processor command

2014-07-15 Thread Gabriel Huau
Agreed, I misunderstood sorry. I'll do the modification for the next version of the patch. Thanks! Regards, Gabriel On 07/15/2014 12:35 PM, Stefano Babic wrote: Hi Gabriel, On 15/07/2014 16:13, gabriel huau wrote: I have just investigate a bit. The file is included by common/board_f.c but

Re: [U-Boot] [PATCH v5] mx6: add support of multi-processor command

2014-07-13 Thread Wolfgang Denk
Dear Gabriel Huau, In message 1405204264-10922-1-git-send-email-cont...@huau-gabriel.fr you wrote: This allows u-boot to load different OS or Bare Metal application on the different cores of the i.MX6DQ. For example: we can run Android on cpu0 and a RT OS like QNX/FreeRTOS on cpu1. Has this

Re: [U-Boot] [PATCH v5] mx6: add support of multi-processor command

2014-07-13 Thread gabriel huau
Hi Wolfgang, On 07/13/2014 02:58 AM, Wolfgang Denk wrote: Dear Gabriel Huau, In message 1405204264-10922-1-git-send-email-cont...@huau-gabriel.fr you wrote: This allows u-boot to load different OS or Bare Metal application on the different cores of the i.MX6DQ. For example: we can run

[U-Boot] [PATCH v5] mx6: add support of multi-processor command

2014-07-12 Thread Gabriel Huau
This allows u-boot to load different OS or Bare Metal application on the different cores of the i.MX6DQ. For example: we can run Android on cpu0 and a RT OS like QNX/FreeRTOS on cpu1. Signed-off-by: Gabriel Huau cont...@huau-gabriel.fr --- Changes for v2: - Add a commit log message to