Re: [PATCH v6 3/7] hw/acpi/aml-build: Improve scalability of PPTT generation

2022-01-03 Thread wangyanan (Y)
Hi Drew, Thanks for your review. On 2022/1/3 19:24, Andrew Jones wrote: On Mon, Jan 03, 2022 at 04:46:32PM +0800, Yanan Wang wrote: Currently we generate a PPTT table of n-level processor hierarchy with n-level loops in build_pptt(). It works fine as now there are only three CPU topology paramet

Re: [PATCH v6 3/7] hw/acpi/aml-build: Improve scalability of PPTT generation

2022-01-03 Thread Andrew Jones
On Mon, Jan 03, 2022 at 04:46:32PM +0800, Yanan Wang wrote: > Currently we generate a PPTT table of n-level processor hierarchy > with n-level loops in build_pptt(). It works fine as now there are > only three CPU topology parameters. But the code may become less > scalable with the processor hiera

[PATCH v6 3/7] hw/acpi/aml-build: Improve scalability of PPTT generation

2022-01-03 Thread Yanan Wang via
Currently we generate a PPTT table of n-level processor hierarchy with n-level loops in build_pptt(). It works fine as now there are only three CPU topology parameters. But the code may become less scalable with the processor hierarchy levels increasing. This patch only improves the scalability of