chip select weirdness
Posted: Fri Aug 01, 2008 5:35 pm
I've got a device I've mapped using cs[1].
//Code excerpt
//The netburner puts 16-bit values out on address lines
[16:32], bit 0 corresponds to address line 16.
static volatile unsigned short* inlatch = (volatile unsigned
short*)0xc0000018;
sim.cs[1].csar = REMOTE_MANAGER_BASE_ADDR>>16;
sim.cs[1].cscr = 0x0180;
sim.cs[1].csmr = 0x001f0001;
I can read *inlatch just fine, but only in normal user code. When I
try to read from it from an ISR, I always get 0. I've tried
re-reading it, disabling cache, all manner of volatile variables, and
my special variable-reading dance. Now, I see that the csmr register
has some settings that regulate access control, and the CPU
space/interrupt acknowledge cycle mask looks really guilty. However,
I'm certain it's set correctly, and I've compared it against other
csmr settings (from google, and ioboard.c), and it's consistent. I
also scanned the errata, and didn't see anything relevant.
Does anyone have some ideas on what I'm doing wrong?
relevant interrupt setup snippets
INTERRUPT(ple_handler,0x2600) { ... }
SetIntc( 0, ( long ) & ple_handler, 1, 1, 1 );
//Code excerpt
//The netburner puts 16-bit values out on address lines
[16:32], bit 0 corresponds to address line 16.
static volatile unsigned short* inlatch = (volatile unsigned
short*)0xc0000018;
sim.cs[1].csar = REMOTE_MANAGER_BASE_ADDR>>16;
sim.cs[1].cscr = 0x0180;
sim.cs[1].csmr = 0x001f0001;
I can read *inlatch just fine, but only in normal user code. When I
try to read from it from an ISR, I always get 0. I've tried
re-reading it, disabling cache, all manner of volatile variables, and
my special variable-reading dance. Now, I see that the csmr register
has some settings that regulate access control, and the CPU
space/interrupt acknowledge cycle mask looks really guilty. However,
I'm certain it's set correctly, and I've compared it against other
csmr settings (from google, and ioboard.c), and it's consistent. I
also scanned the errata, and didn't see anything relevant.
Does anyone have some ideas on what I'm doing wrong?
relevant interrupt setup snippets
INTERRUPT(ple_handler,0x2600) { ... }
SetIntc( 0, ( long ) & ple_handler, 1, 1, 1 );