Re: [PATCH 9/9] powerpc/pm: support deep sleep feature on T1040
From: Scott Wood <hidden>
Date: 2014-03-20 23:33:20
Also in:
lkml
On Wed, 2014-03-19 at 08:56 +0800, Chenhui Zhao wrote:
On Tue, Mar 18, 2014 at 05:42:09PM -0500, Scott Wood wrote:quoted
On Mon, 2014-03-17 at 19:19 +0800, Chenhui Zhao wrote:quoted
On Fri, Mar 14, 2014 at 06:18:27PM -0500, Scott Wood wrote:quoted
Why do you need the entry mapping on 32-bit but not 64-bit?fsl_booke_entry_mapping.S is for 32-bit. 64-bit calls initial_tlb_book3e() in exceptions-64e.S.The answer I was looking for is that __entry_deep_sleep calls start_initialization_book3e which calls the code to handle it. But why is it driven from sleep.S on 64-bit but not on 32-bit? Why can't you make it so that the 32-bit TLB setup can be called into in a similar manner?Yes. I also wish to do like this. As I mentioned, the problem in 32-bit is that the TLB setup code in fsl_booke_entry_mapping.S only setups a temp mapping of 4KB, so these code only can run in this 4KB address space. But the code in sleep.S is outside of the 4KB space. So can't put the TLB setup code in sleep.S. There are two method to solve it. 1) The current method is running the TLB setup code of fsl_booke_entry_mapping.S in the 4KB space, then jump to the code of sleep.S. 2) extend the temp mapping space in the TLB setup code to cover kernel, say 4MB or 8MB. But not sure if there are any side effects.
fsl_booke_entry_mapping.S creates a 64M entry. The 4K entry is only temporary while in AS1 -- it shouldn't matter if the address you return to when leaving fsl_booke_entry_mapping.S is outside the 4K, as long as it's within the 64M entry. Or am I missing something?
quoted
quoted
quoted
quoted
quoted
quoted
+#define FSLDELAY(count) \ + li r3, (count)@l; \ + slwi r3, r3, 10; \ + mtctr r3; \ +101: nop; \ + bdnz 101b;You don't need a namespace prefix on local macros in a non-header file. Is the timebase stopped where you're calling this from?No. My purpose is to avoid jump in the last stage of entering deep sleep. Jump may cause problem at that time."bdnz" is a jump. What problems do you think a jump will cause?I mean a far jump which can jump to an address which has not been prefetched in advance. I wish the code is executed in a restricted environment (predictable code and address).Why would a timebase loop require a "far" jump?I mean there is far jump in udely(). Do you mean using a timebase loop in the macro FSLDELAY? If so, I agree.
Yes, I meant a timebase loop, not udelay().
quoted
quoted
quoted
quoted
quoted
You also probably want to do a "sync, readback, data dependency, isync" sequence to make sure that the store has hit CCSR before you begin your delay (or is a delay required at all if you do that?).Yes. It is safer with a sync sequence. The DDR controller need some time to signal the external DDR modules to enter self refresh mode.Is it documented how much time it requires? -ScottNo.How do you know the current delay is adequate in all circumstances (e.g clock speeds), much less on future chips? Is it documented that a delay is needed at all, or is this just something that appeared to make it work? If the latter, what happens if you put the synchronization in, but leave out the delay? -ScottThe code controls external parts (FPGA/CPLD, DDR module) to act, and the sequent code must wait until external parts complete. We can't get an ack from external parts, so use delay to make sure the sequence and insert enough time to wait.
It would be good if you could get the hardware designers to provide an upper bound for how long we need to wait. -Scott