Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a routine to flush the PowerPC750 data cache before turning it off when using write back mode.

I've found the IBM application note on programming the caches which includes a flush routine, but I am confused by the example code. I think it might be a mistake in the example but thought I'd check. In Listing 2 there are two loops which include and instruction to "move to next block". Moving to the next block is achieved by adding 0x10 to the current address. I would have expected this to be an add of 0x20 (32) since I think the cache lines are 32 bytes wide. Can anyone confirm or repudiate my thinking?!

share|improve this question
1  
I would have expected it to be 0x20 as well ... you could email IBM and ask if thats a mistake? – Goz Aug 24 '09 at 15:22
1  

2 Answers

You appear to be right. With their math stated at the top of the listing:

! CTR - the number of data blocks needed to fill the cache - save it in r3
!       32K (size of cache) / 32 (bytes per block) = 0x400

They always set the count register to 0x400 and it states that there are 32bytes per block a few places in that document. So following that math you would need to increment 0x20 not 0x10. As with any assembly you should definitely test it both ways in case there is some weird silicon errata of sorts.

share|improve this answer
up vote 2 down vote accepted

Following confirmation from other SO users I e-mailed the application note's author. He agreed that 0x10 should be 0x20 and may update the note in future.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.