P
Peter Monta
Guest
I'm having trouble accessing OCM peripherals from Linux.
The symptom is a machine check exception whenever the
OCM address space is read or written.
This code is run from a kernel module:
unsigned int* p = (unsigned int*)ioremap(0x40000000,0x1000);
printk("%08x\n",p[0]);
When the OCM address of 0x40000000 is replaced with, say,
the UART at 0xA0000000, things work as expected: can peek
and poke the UART registers with no problem. How is
the OCM different from a PLB peripheral from Linux's
point of view? The cacheability registers, DCCR and ICCR,
are correctly set by Linux to 0xf0000000, so only addresses
under 512 MByte are cacheable (currently occupied by DRAM),
and OCM is well outside this range. (We use only DSOCM.)
If the ioremap() address is replaced with something
nonexistent, such as 0x50000000, then the same type of
machine exception occurs. It's as if the OCM didn't exist.
But running in real mode works fine: a small test application
running from PLB block RAM can see all of the OCM resources.
This is a 2VP20, processor version number 0x200108a0.
I plan to open a Xilinx hotline case, but thought I'd ask
in the newsgroup for good measure.
Cheers,
Peter Monta
RGB Networks, Inc.
The symptom is a machine check exception whenever the
OCM address space is read or written.
This code is run from a kernel module:
unsigned int* p = (unsigned int*)ioremap(0x40000000,0x1000);
printk("%08x\n",p[0]);
When the OCM address of 0x40000000 is replaced with, say,
the UART at 0xA0000000, things work as expected: can peek
and poke the UART registers with no problem. How is
the OCM different from a PLB peripheral from Linux's
point of view? The cacheability registers, DCCR and ICCR,
are correctly set by Linux to 0xf0000000, so only addresses
under 512 MByte are cacheable (currently occupied by DRAM),
and OCM is well outside this range. (We use only DSOCM.)
If the ioremap() address is replaced with something
nonexistent, such as 0x50000000, then the same type of
machine exception occurs. It's as if the OCM didn't exist.
But running in real mode works fine: a small test application
running from PLB block RAM can see all of the OCM resources.
This is a 2VP20, processor version number 0x200108a0.
I plan to open a Xilinx hotline case, but thought I'd ask
in the newsgroup for good measure.
Cheers,
Peter Monta
RGB Networks, Inc.