On Tue, May 05, 2020 at 06:07:46PM +0000, Vineet Gupta wrote: > On 5/5/20 2:19 AM, Mike Rapoport wrote: > > From the code I've got the impression that it is either one of them. I.e > > the physical memory is either at > > > > 0x8000_0000 - <end of DDR 0 bank> > > 0x0000_0000 - <end of DDR 1 bank> > > > > or > > > > 0x0_8000_0000 - <end of DDR 0 bank> > > 0x1_0000_0000 - <end of DDR 1 bank> > > > > Is this possible to have a system with three live ranges? Like > > > > 0x0_0000_0000 - <end of DDR 1 bank> > > 0x0_8000_0000 - <end of DDR 0 bank> > > 0x1_0000_0000 - <end of DDR 2 bank> > > We don't have such a system, but it is indeed possible in theory. The question is > - Can other arches have such a setup too At the moment all architectures that support HIGHMEM have it above DMA/NORMAL. I'm not sure if such a setup is theoretically possible for other architectures, but as of now none of them support it in Linux. The general case is somewhat like max_dma_pfn <= max_normal_pfn < max_high_pfn And of course, either max_dma_pfn or max_high_pfn or both may be not needed for an architecture. > - Is it not better to have the core retain the flexibility just in case Hmm, there is indeed flexibility in the nodes and zones initialization, but if you'd look more closely to free_area_init*() and friends, there is a lot of cruft and retrofitting ;-) What we have is two mutually exclusive paths, one that relies on the architecture to calculate zone sizes and find the holes between the zones (!CONFIG_HAVE_MEMBLOCK_NODE_MAP) and the other one that only requires the architectures to pass possible limit for each zone and detects the actual zone spans based on the knowlegde about the actual physical memory layout that comes from memblock. These patches attempt to drop the older method and switch all the architectures to use newer and simpler one. If the requirement to have support for 3-banks is a theoretical possibility, I would prefer to adjust ARC's version of arch_has_descending_max_zone_pfns() to cope with either of 2-banks configuration (PAE40 and non-PAE40) and deal with the third bank when/if it actually materializes. > Thx, > -Vineet -- Sincerely yours, Mike.