2006-11-26 11:13:41 -07:00
|
|
|
/*******************************************************************************
|
|
|
|
for Alpha Linux
|
|
|
|
*******************************************************************************/
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2015-09-16 13:10:19 -06:00
|
|
|
/*
|
2006-11-26 11:13:41 -07:00
|
|
|
* Create a dependency that should be immune from the effect of register
|
|
|
|
* renaming as is commonly seen in superscalar processors. This should
|
|
|
|
* insert a minimum of 100-ns delays between reads/writes at clock rates
|
|
|
|
* up to 100 MHz---GGL
|
2015-09-16 13:10:19 -06:00
|
|
|
*
|
|
|
|
* Slowbcopy(char *src, char *dst, int count)
|
|
|
|
*
|
2012-06-10 07:21:05 -06:00
|
|
|
*/
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#ifdef HAVE_XORG_CONFIG_H
|
|
|
|
#include <xorg-config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <X11/X.h>
|
|
|
|
#include "xf86.h"
|
|
|
|
#include "xf86Priv.h"
|
|
|
|
#include "xf86_OSlib.h"
|
|
|
|
#include "compiler.h"
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
static int really_slow_bcopy;
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2007-11-24 10:55:21 -07:00
|
|
|
xf86SetReallySlowBcopy(void)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
really_slow_bcopy = 1;
|
2007-11-24 10:55:21 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
#if defined(__i386__) || defined(__amd64__)
|
2012-06-10 07:21:05 -06:00
|
|
|
static void
|
|
|
|
xf86_really_slow_bcopy(unsigned char *src, unsigned char *dst, int len)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
while (len--) {
|
|
|
|
*dst++ = *src++;
|
|
|
|
outb(0x80, 0x00);
|
2007-11-24 10:55:21 -07:00
|
|
|
}
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2007-11-24 10:55:21 -07:00
|
|
|
|
|
|
|
/* The outb() isn't needed on my machine, but who knows ... -- ost */
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2007-11-24 10:55:21 -07:00
|
|
|
xf86SlowBcopy(unsigned char *src, unsigned char *dst, int len)
|
|
|
|
{
|
2009-09-06 13:44:18 -06:00
|
|
|
#if defined(__i386__) || defined(__amd64__)
|
2007-11-24 10:55:21 -07:00
|
|
|
if (really_slow_bcopy) {
|
2012-06-10 07:21:05 -06:00
|
|
|
xf86_really_slow_bcopy(src, dst, len);
|
|
|
|
return;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2007-11-24 10:55:21 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
while (len--)
|
|
|
|
*dst++ = *src++;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __alpha__
|
|
|
|
|
|
|
|
#ifdef linux
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
unsigned long _bus_base(void);
|
|
|
|
|
|
|
|
#define useSparse() (!_bus_base())
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#define SPARSE (7)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
#define useSparse() 0
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#define SPARSE 0
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2006-11-26 11:13:41 -07:00
|
|
|
xf86SlowBCopyFromBus(unsigned char *src, unsigned char *dst, int count)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
if (useSparse()) {
|
|
|
|
unsigned long addr;
|
|
|
|
long result;
|
|
|
|
|
|
|
|
addr = (unsigned long) src;
|
|
|
|
while (count) {
|
|
|
|
result = *(volatile int *) addr;
|
|
|
|
result >>= ((addr >> SPARSE) & 3) * 8;
|
|
|
|
*dst++ = (unsigned char) (0xffUL & result);
|
|
|
|
addr += 1 << SPARSE;
|
|
|
|
count--;
|
|
|
|
outb(0x80, 0x00);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xf86SlowBcopy(src, dst, count);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
void
|
2006-11-26 11:13:41 -07:00
|
|
|
xf86SlowBCopyToBus(unsigned char *src, unsigned char *dst, int count)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
if (useSparse()) {
|
|
|
|
unsigned long addr;
|
|
|
|
|
|
|
|
addr = (unsigned long) dst;
|
|
|
|
while (count) {
|
|
|
|
*(volatile unsigned int *) addr =
|
|
|
|
(unsigned short) (*src) * 0x01010101;
|
|
|
|
src++;
|
|
|
|
addr += 1 << SPARSE;
|
|
|
|
count--;
|
|
|
|
outb(0x80, 0x00);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xf86SlowBcopy(src, dst, count);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
#endif
|