Re: [PATCH V4 2/3] powerpc/swiotlb: Enable at early stage and disable if not necessary
From: Kumar Gala <hidden>
Date: 2012-08-03 12:38:39
On Aug 2, 2012, at 9:21 PM, Jia Hongtao-B38951 wrote:
quoted
=20 -----Original Message----- From: Kumar Gala [mailto:galak@kernel.crashing.org] Sent: Thursday, August 02, 2012 8:55 PM To: Jia Hongtao-B38951 Cc: linuxppc-dev@lists.ozlabs.org; Wood Scott-B07421; Li Yang-R58472 Subject: Re: [PATCH V4 2/3] powerpc/swiotlb: Enable at early stage =
and
quoted
disable if not necessary =20 =20 On Aug 2, 2012, at 6:42 AM, Jia Hongtao wrote: =20quoted
Remove the dependency on PCI initialization for SWIOTLB =
initialization.
quoted
quoted
So that PCI can be initialized at proper time. =20 SWIOTLB is partly determined by PCI inbound/outbound map which isassignedquoted
in PCI initialization. But swiotlb_init() should be done at the =
stage
quoted
ofquoted
mem_init() which is much earlier than PCI initialization. So we =
reserve
quoted
thequoted
memory for SWIOTLB first and free it if not necessary. =20 All boards are converted to fit this change. =20 Signed-off-by: Jia Hongtao <redacted> Signed-off-by: Li Yang <redacted> ---=20 This doesn't seem like it addresses our issue w/regards to not being =
able
quoted
to map all of memory from PCI.=20 PCI init will determine ppc_swiotlb_enable due to PCI map. =
swiotlb_late_init
will handle all swiotlb things depend on the result of pci init.
Think about the case that we have 4095M of memory & 1G of PCI memory = mapped space. The old code would enable swiotlb for this case since we = would NOT be able to DMA to all 4095M of memory. The patch does not = handle this case correctly. - k