Re: [PATCH v5 00/31] Unified CPU type check

2023-11-17 Thread Gavin Shan
On 11/17/23 17:34, Philippe Mathieu-Daudé wrote: On 17/11/23 00:26, Gavin Shan wrote: On 11/17/23 02:20, Philippe Mathieu-Daudé wrote: On 16/11/23 14:35, Philippe Mathieu-Daudé wrote: I'm queuing patches 1-3 & 5-23 to my cpus-next tree. No need to repost them, please base them on my tree. I

Re: [PATCH v5 00/31] Unified CPU type check

2023-11-16 Thread Philippe Mathieu-Daudé
On 17/11/23 00:26, Gavin Shan wrote: Hi Phil, On 11/17/23 02:20, Philippe Mathieu-Daudé wrote: On 16/11/23 14:35, Philippe Mathieu-Daudé wrote: I'm queuing patches 1-3 & 5-23 to my cpus-next tree. No need to repost them, please base them on my tree. I'll follow up with the branch link when I

Re: [PATCH v5 00/31] Unified CPU type check

2023-11-16 Thread Gavin Shan
Hi Phil, On 11/17/23 02:20, Philippe Mathieu-Daudé wrote: On 16/11/23 14:35, Philippe Mathieu-Daudé wrote: I'm queuing patches 1-3 & 5-23 to my cpus-next tree. No need to repost them, please base them on my tree. I'll follow up with the branch link when I finish my testing and push it. Here

Re: [PATCH v5 00/31] Unified CPU type check

2023-11-16 Thread Philippe Mathieu-Daudé
On 16/11/23 14:35, Philippe Mathieu-Daudé wrote: Hi Gavin, On 15/11/23 00:55, Gavin Shan wrote: There are two places where the user specified CPU type is checked to see if it's supported or allowed by the board: machine_run_board_init() and mc->init(). We don't have to maintain two duplicate se

Re: [PATCH v5 00/31] Unified CPU type check

2023-11-16 Thread Philippe Mathieu-Daudé
Hi Gavin, On 15/11/23 00:55, Gavin Shan wrote: There are two places where the user specified CPU type is checked to see if it's supported or allowed by the board: machine_run_board_init() and mc->init(). We don't have to maintain two duplicate sets of logic. This series intends to move the check

Re: [PATCH v5 00/31] Unified CPU type check

2023-11-16 Thread Gavin Shan
Hi Phil, On 11/16/23 20:01, Philippe Mathieu-Daudé wrote: On 15/11/23 00:55, Gavin Shan wrote: There are two places where the user specified CPU type is checked to see if it's supported or allowed by the board: machine_run_board_init() and mc->init(). We don't have to maintain two duplicate set

Re: [PATCH v5 00/31] Unified CPU type check

2023-11-16 Thread Philippe Mathieu-Daudé
Hi Gavin, On 15/11/23 00:55, Gavin Shan wrote: There are two places where the user specified CPU type is checked to see if it's supported or allowed by the board: machine_run_board_init() and mc->init(). We don't have to maintain two duplicate sets of logic. This series intends to move the check

[PATCH v5 00/31] Unified CPU type check

2023-11-14 Thread Gavin Shan
There are two places where the user specified CPU type is checked to see if it's supported or allowed by the board: machine_run_board_init() and mc->init(). We don't have to maintain two duplicate sets of logic. This series intends to move the check to machine_run_board_init() so that we have unifi