2003-11-14 16:48:57 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 1992 by Rich Murphey <Rich@Rice.edu>
|
|
|
|
|
* Copyright 1993 by David Wexelblat <dwex@goblin.org>
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
2014-10-31 09:45:12 +10:00
|
|
|
* documentation, and that the names of Rich Murphey and David Wexelblat
|
|
|
|
|
* not be used in advertising or publicity pertaining to distribution of
|
2003-11-14 16:48:57 +00:00
|
|
|
* the software without specific, written prior permission. Rich Murphey and
|
2014-10-31 09:45:12 +10:00
|
|
|
* David Wexelblat make no representations about the suitability of this
|
|
|
|
|
* software for any purpose. It is provided "as is" without express or
|
2003-11-14 16:48:57 +00:00
|
|
|
* implied warranty.
|
|
|
|
|
*
|
2014-10-31 09:45:12 +10:00
|
|
|
* RICH MURPHEY AND DAVID WEXELBLAT DISCLAIM ALL WARRANTIES WITH REGARD TO
|
|
|
|
|
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS, IN NO EVENT SHALL RICH MURPHEY OR DAVID WEXELBLAT BE LIABLE FOR
|
|
|
|
|
* ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
|
|
|
|
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
2003-11-14 16:48:57 +00:00
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2005-07-03 07:02:09 +00:00
|
|
|
#ifdef HAVE_XORG_CONFIG_H
|
|
|
|
|
#include <xorg-config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-20 12:25:48 +00:00
|
|
|
#include <X11/X.h>
|
2003-11-14 16:48:57 +00:00
|
|
|
#include "xf86.h"
|
|
|
|
|
#include "xf86Priv.h"
|
|
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
#ifndef __NetBSD__
|
2011-10-03 23:03:31 +06:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
#endif
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
#include "xf86_OSlib.h"
|
|
|
|
|
#include "xf86OSpriv.h"
|
|
|
|
|
|
|
|
|
|
#if defined(__NetBSD__) && !defined(MAP_FILE)
|
|
|
|
|
#define MAP_FLAGS MAP_SHARED
|
|
|
|
|
#else
|
|
|
|
|
#define MAP_FLAGS (MAP_FILE | MAP_SHARED)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef __NetBSD__
|
|
|
|
|
extern unsigned long dense_base(void);
|
2012-03-21 12:55:09 -07:00
|
|
|
#else /* __NetBSD__ */
|
2003-11-14 16:48:57 +00:00
|
|
|
static struct alpha_bus_window *abw;
|
|
|
|
|
static int abw_count = -1;
|
|
|
|
|
|
|
|
|
|
static void
|
2005-01-28 16:13:00 +00:00
|
|
|
init_abw(void)
|
2003-11-14 16:48:57 +00:00
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
if (abw_count < 0) {
|
|
|
|
|
abw_count = alpha_bus_getwindows(ALPHA_BUS_TYPE_PCI_MEM, &abw);
|
|
|
|
|
if (abw_count <= 0)
|
|
|
|
|
FatalError("init_abw: alpha_bus_getwindows failed\n");
|
|
|
|
|
}
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static unsigned long
|
2005-01-28 16:13:00 +00:00
|
|
|
dense_base(void)
|
2003-11-14 16:48:57 +00:00
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
if (abw_count < 0)
|
|
|
|
|
init_abw();
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
/* XXX check abst_flags for ABST_DENSE just to be safe? */
|
|
|
|
|
xf86Msg(X_INFO, "dense base = %#lx\n", abw[0].abw_abst.abst_sys_start); /* XXXX */
|
|
|
|
|
return abw[0].abw_abst.abst_sys_start;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
#endif /* __NetBSD__ */
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
#define BUS_BASE dense_base()
|
|
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
/* Video Memory Mapping section */
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifdef __OpenBSD__
|
|
|
|
|
#define SYSCTL_MSG "\tCheck that you have set 'machdep.allowaperture=1'\n"\
|
|
|
|
|
"\tin /etc/sysctl.conf and reboot your machine\n" \
|
|
|
|
|
"\trefer to xf86(4) for details"
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
static int devMemFd = -1;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
#ifdef HAS_APERTURE_DRV
|
|
|
|
|
#define DEV_APERTURE "/dev/xf86"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Check if /dev/mem can be mmap'd. If it can't print a warning when
|
|
|
|
|
* "warn" is TRUE.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
checkDevMem(Bool warn)
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
static Bool devMemChecked = FALSE;
|
|
|
|
|
int fd;
|
2013-12-15 01:05:51 -08:00
|
|
|
void *base;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
if (devMemChecked)
|
|
|
|
|
return;
|
|
|
|
|
devMemChecked = TRUE;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
#ifdef HAS_APERTURE_DRV
|
2012-03-21 12:55:09 -07:00
|
|
|
/* Try the aperture driver first */
|
|
|
|
|
if ((fd = open(DEV_APERTURE, O_RDWR)) >= 0) {
|
|
|
|
|
/* Try to map a page at the VGA address */
|
|
|
|
|
base = mmap((caddr_t) 0, 4096, PROT_READ | PROT_WRITE,
|
|
|
|
|
MAP_FLAGS, fd, (off_t) 0xA0000 + BUS_BASE);
|
|
|
|
|
|
|
|
|
|
if (base != MAP_FAILED) {
|
|
|
|
|
munmap((caddr_t) base, 4096);
|
|
|
|
|
devMemFd = fd;
|
|
|
|
|
xf86Msg(X_INFO, "checkDevMem: using aperture driver %s\n",
|
|
|
|
|
DEV_APERTURE);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (warn) {
|
|
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to mmap %s (%s)\n",
|
|
|
|
|
DEV_APERTURE, strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-11-14 16:48:57 +00:00
|
|
|
#endif
|
2012-03-21 12:55:09 -07:00
|
|
|
if ((fd = open(DEV_MEM, O_RDWR)) >= 0) {
|
|
|
|
|
/* Try to map a page at the VGA address */
|
|
|
|
|
base = mmap((caddr_t) 0, 4096, PROT_READ | PROT_WRITE,
|
|
|
|
|
MAP_FLAGS, fd, (off_t) 0xA0000 + BUS_BASE);
|
|
|
|
|
|
|
|
|
|
if (base != MAP_FAILED) {
|
|
|
|
|
munmap((caddr_t) base, 4096);
|
|
|
|
|
devMemFd = fd;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (warn) {
|
|
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to mmap %s (%s)\n",
|
|
|
|
|
DEV_MEM, strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (warn) {
|
2003-11-14 16:48:57 +00:00
|
|
|
#ifndef HAS_APERTURE_DRV
|
2012-03-21 12:55:09 -07:00
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to open/mmap %s (%s)\n",
|
|
|
|
|
DEV_MEM, strerror(errno));
|
2003-11-14 16:48:57 +00:00
|
|
|
#else
|
|
|
|
|
#ifndef __OpenBSD__
|
2012-03-21 12:55:09 -07:00
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to open %s and %s\n"
|
|
|
|
|
"\t(%s)\n", DEV_APERTURE, DEV_MEM, strerror(errno));
|
|
|
|
|
#else /* __OpenBSD__ */
|
|
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to open %s and %s\n"
|
|
|
|
|
"\t(%s)\n%s", DEV_APERTURE, DEV_MEM, strerror(errno),
|
|
|
|
|
SYSCTL_MSG);
|
|
|
|
|
#endif /* __OpenBSD__ */
|
2003-11-14 16:48:57 +00:00
|
|
|
#endif
|
2012-03-21 12:55:09 -07:00
|
|
|
xf86ErrorF("\tlinear framebuffer access unavailable\n");
|
|
|
|
|
}
|
|
|
|
|
return;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
xf86OSInitVidMem(VidMemInfoPtr pVidMem)
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
checkDevMem(TRUE);
|
|
|
|
|
|
|
|
|
|
pVidMem->initialised = TRUE;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
2005-10-03 16:46:14 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__)
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
extern int ioperm(unsigned long from, unsigned long num, int on);
|
|
|
|
|
|
Rework symbol visibility for easier maintenance
Save in a few special cases, _X_EXPORT should not be used in C source
files. Instead, it should be used in headers, and the proper C source
include that header. Some special cases are symbols that need to be
shared between modules, but not expected to be used by external drivers,
and symbols that are accessible via LoaderSymbol/dlopen.
This patch also adds conditionally some new sdk header files, depending
on extensions enabled. These files were added to match pattern for
other extensions/modules, that is, have the headers "deciding" symbol
visibility in the sdk. These headers are:
o Xext/panoramiXsrv.h, Xext/panoramiX.h
o fbpict.h (unconditionally)
o vidmodeproc.h
o mioverlay.h (unconditionally, used only by xaa)
o xfixes.h (unconditionally, symbols required by dri2)
LoaderSymbol and similar functions now don't have different prototypes,
in loaderProcs.h and xf86Module.h, so that both headers can be included,
without the need of defining IN_LOADER.
xf86NewInputDevice() device prototype readded to xf86Xinput.h, but
not exported (and with a comment about it).
2008-12-03 05:43:34 -02:00
|
|
|
Bool
|
2003-11-14 16:48:57 +00:00
|
|
|
xf86EnableIO()
|
|
|
|
|
{
|
2005-01-28 16:13:00 +00:00
|
|
|
if (!ioperm(0, 65536, TRUE))
|
2012-03-21 12:55:09 -07:00
|
|
|
return TRUE;
|
2005-01-28 16:13:00 +00:00
|
|
|
return FALSE;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
Rework symbol visibility for easier maintenance
Save in a few special cases, _X_EXPORT should not be used in C source
files. Instead, it should be used in headers, and the proper C source
include that header. Some special cases are symbols that need to be
shared between modules, but not expected to be used by external drivers,
and symbols that are accessible via LoaderSymbol/dlopen.
This patch also adds conditionally some new sdk header files, depending
on extensions enabled. These files were added to match pattern for
other extensions/modules, that is, have the headers "deciding" symbol
visibility in the sdk. These headers are:
o Xext/panoramiXsrv.h, Xext/panoramiX.h
o fbpict.h (unconditionally)
o vidmodeproc.h
o mioverlay.h (unconditionally, used only by xaa)
o xfixes.h (unconditionally, symbols required by dri2)
LoaderSymbol and similar functions now don't have different prototypes,
in loaderProcs.h and xf86Module.h, so that both headers can be included,
without the need of defining IN_LOADER.
xf86NewInputDevice() device prototype readded to xf86Xinput.h, but
not exported (and with a comment about it).
2008-12-03 05:43:34 -02:00
|
|
|
void
|
2003-11-14 16:48:57 +00:00
|
|
|
xf86DisableIO()
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
return;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
#endif /* __FreeBSD_kernel__ || __OpenBSD__ */
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
#ifdef USE_ALPHA_PIO
|
|
|
|
|
|
2005-01-28 16:13:00 +00:00
|
|
|
Bool
|
2003-11-14 16:48:57 +00:00
|
|
|
xf86EnableIO()
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
alpha_pci_io_enable(1);
|
|
|
|
|
return TRUE;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
xf86DisableIO()
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
alpha_pci_io_enable(0);
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
#endif /* USE_ALPHA_PIO */
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2013-12-15 01:05:51 -08:00
|
|
|
extern int readDense8(void *Base, register unsigned long Offset);
|
|
|
|
|
extern int readDense16(void *Base, register unsigned long Offset);
|
|
|
|
|
extern int readDense32(void *Base, register unsigned long Offset);
|
2003-11-14 16:48:57 +00:00
|
|
|
extern void
|
2013-12-15 01:05:51 -08:00
|
|
|
writeDense8(int Value, void *Base, register unsigned long Offset);
|
2003-11-14 16:48:57 +00:00
|
|
|
extern void
|
2013-12-15 01:05:51 -08:00
|
|
|
writeDense16(int Value, void *Base, register unsigned long Offset);
|
2003-11-14 16:48:57 +00:00
|
|
|
extern void
|
2013-12-15 01:05:51 -08:00
|
|
|
writeDense32(int Value, void *Base, register unsigned long Offset);
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2013-12-15 01:05:51 -08:00
|
|
|
void (*xf86WriteMmio8) (int Value, void *Base, unsigned long Offset)
|
2012-03-21 12:55:09 -07:00
|
|
|
= writeDense8;
|
2013-12-15 01:05:51 -08:00
|
|
|
void (*xf86WriteMmio16) (int Value, void *Base, unsigned long Offset)
|
2012-03-21 12:55:09 -07:00
|
|
|
= writeDense16;
|
2013-12-15 01:05:51 -08:00
|
|
|
void (*xf86WriteMmio32) (int Value, void *Base, unsigned long Offset)
|
2012-03-21 12:55:09 -07:00
|
|
|
= writeDense32;
|
2013-12-15 01:05:51 -08:00
|
|
|
int (*xf86ReadMmio8) (void *Base, unsigned long Offset)
|
2012-03-21 12:55:09 -07:00
|
|
|
= readDense8;
|
2013-12-15 01:05:51 -08:00
|
|
|
int (*xf86ReadMmio16) (void *Base, unsigned long Offset)
|
2012-03-21 12:55:09 -07:00
|
|
|
= readDense16;
|
2013-12-15 01:05:51 -08:00
|
|
|
int (*xf86ReadMmio32) (void *Base, unsigned long Offset)
|
2012-03-21 12:55:09 -07:00
|
|
|
= readDense32;
|