Hi,
Looking at northbridge/amd/amdk8/coherent_ht.c:
setup_remote_node() copies the routing table and the resource map to the "remote"/freshly setup cpu.
This function is called for cpu1, but never for cpu2 and cpu3. This implies we should either drop it for cpu1 as well or add it to the cpu2/3 setup..
Stefan
* Stefan Reinauer stepan@openbios.org [041211 18:19]:
setup_remote_node() copies the routing table and the resource map to the "remote"/freshly setup cpu.
This function is called for cpu1, but never for cpu2 and cpu3. This implies we should either drop it for cpu1 as well or add it to the cpu2/3 setup..
cpu 2 and 3 use setup_temp_node instead which is basically the same except that it does not copy the resource map. So we can drop either one in favour of the other.
Stefan