forked from Imagelibrary/rtems
committed by
Sebastian Huber
parent
9b2b389e8d
commit
c1dcd6af56
@@ -121,6 +121,9 @@ RTEMS_INLINE_ROUTINE unsigned int grlib_read_uncached32(unsigned int address)
|
||||
);
|
||||
return tmp;
|
||||
}
|
||||
|
||||
#define GRLIB_DMA_IS_CACHE_COHERENT CPU_SPARC_HAS_SNOOPING
|
||||
|
||||
#else
|
||||
|
||||
static unsigned char __inline__ grlib_read_uncached8(unsigned int address)
|
||||
@@ -140,6 +143,8 @@ RTEMS_INLINE_ROUTINE unsigned int grlib_read_uncached32(unsigned int address)
|
||||
return tmp;
|
||||
}
|
||||
|
||||
#define GRLIB_DMA_IS_CACHE_COHERENT 1
|
||||
|
||||
#endif
|
||||
|
||||
extern struct ambapp_bus ambapp_plb;
|
||||
|
||||
@@ -1893,7 +1893,7 @@ static int grspw_hw_receive(GRSPW_DEV *pDev, char *b, int c) {
|
||||
if (rxlen > c) {
|
||||
rxlen = c;
|
||||
}
|
||||
if (CPU_SPARC_HAS_SNOOPING) {
|
||||
if (GRLIB_DMA_IS_CACHE_COHERENT) {
|
||||
/* if ( 1 ) {*/
|
||||
/*printf("RX_MEMCPY(0x%x, 0x%x, 0x%x)\n", (unsigned int)b, (unsigned int)(rxb+pDev->rxbufcur), (unsigned int)rxlen);*/
|
||||
memcpy(b, rxb+pDev->rxbufcur, rxlen);
|
||||
|
||||
Reference in New Issue
Block a user