@@ -1,24 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
shelltools.export("LC_ALL", "C")
|
||||
#autotools.autoreconf("-vif")
|
||||
autotools.configure("\
|
||||
--disable-static \
|
||||
--enable-visibility\
|
||||
")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
pisitools.dodoc("COPYING", "ChangeLog", "README")
|
||||
@@ -1,243 +0,0 @@
|
||||
diff --git a/src/gx_driver.c b/src/gx_driver.c
|
||||
index 7f44e19..ab57df1 100644
|
||||
--- a/src/gx_driver.c
|
||||
+++ b/src/gx_driver.c
|
||||
@@ -32,6 +32,9 @@
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
+#include <fcntl.h>
|
||||
+#include <unistd.h>
|
||||
+#include <sys/mman.h>
|
||||
|
||||
#include "xf86.h"
|
||||
#include "xf86_OSproc.h"
|
||||
@@ -322,7 +325,6 @@ map_pci_mem(ScrnInfoPtr pScrni, int vram,
|
||||
struct pci_device *dev, int bar, int size)
|
||||
{
|
||||
void *ptr;
|
||||
- void **result = (void **) &ptr;
|
||||
int map_size = size ? size : dev->regions[bar].size;
|
||||
|
||||
int err = pci_device_map_range(dev,
|
||||
@@ -330,12 +332,18 @@ map_pci_mem(ScrnInfoPtr pScrni, int vram,
|
||||
map_size,
|
||||
PCI_DEV_MAP_FLAG_WRITABLE |
|
||||
(vram ? PCI_DEV_MAP_FLAG_WRITE_COMBINE : 0),
|
||||
- result);
|
||||
+ &ptr);
|
||||
|
||||
if (err)
|
||||
return NULL;
|
||||
return ptr;
|
||||
}
|
||||
+
|
||||
+static inline int
|
||||
+unmap_pci_mem(ScrnInfoPtr pScrni, struct pci_device *dev, void *ptr, int size)
|
||||
+{
|
||||
+ return pci_device_unmap_range(dev, ptr, size);
|
||||
+}
|
||||
#endif
|
||||
|
||||
extern unsigned long gfx_gx2_scratch_base;
|
||||
@@ -373,8 +381,19 @@ GXMapMem(ScrnInfoPtr pScrni)
|
||||
|
||||
gfx_gx2_scratch_base = pGeode->FBAvail - 0x4000;
|
||||
|
||||
+#ifndef XSERVER_LIBPCIACCESS
|
||||
XpressROMPtr = xf86MapVidMem(index, VIDMEM_FRAMEBUFFER, 0xF0000, 0x10000);
|
||||
-
|
||||
+#else
|
||||
+ {
|
||||
+ int fd = open("/dev/mem", O_RDWR);
|
||||
+ if (fd < 0) {
|
||||
+ xf86DrvMsg(index, X_ERROR, "Failed to open /dev/mem: %m\n");
|
||||
+ return FALSE;
|
||||
+ }
|
||||
+ XpressROMPtr = mmap(NULL, 0x10000, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0xF0000);
|
||||
+ close(fd);
|
||||
+ }
|
||||
+#endif
|
||||
pGeode->FBBase = gfx_virt_fbptr;
|
||||
|
||||
if ((!gfx_virt_regptr) || (!gfx_virt_gpptr) ||
|
||||
@@ -395,9 +414,9 @@ GXMapMem(ScrnInfoPtr pScrni)
|
||||
*/
|
||||
|
||||
static Bool
|
||||
-GXCheckVGA(ScrnInfoPtr pScrni)
|
||||
+GXCheckVGA(ScrnInfoPtr pScrni, EntityInfoPtr pEnt)
|
||||
{
|
||||
-
|
||||
+#ifndef XSERVER_LIBPCIACCESS
|
||||
unsigned char *ptr;
|
||||
const char *vgasig = "IBM VGA Compatible";
|
||||
int ret;
|
||||
@@ -413,6 +432,11 @@ GXCheckVGA(ScrnInfoPtr pScrni)
|
||||
xf86UnMapVidMem(pScrni->scrnIndex, (pointer) ptr, strlen(vgasig));
|
||||
|
||||
return ret ? FALSE : TRUE;
|
||||
+#else
|
||||
+ pciVideoPtr pci = xf86GetPciInfoForEntity(pEnt->index);
|
||||
+
|
||||
+ return pci_device_is_boot_vga(pci);
|
||||
+#endif
|
||||
}
|
||||
|
||||
static Bool
|
||||
@@ -443,7 +467,7 @@ GXPreInit(ScrnInfoPtr pScrni, int flags)
|
||||
if (pGeode == NULL)
|
||||
return FALSE;
|
||||
|
||||
- useVGA = GXCheckVGA(pScrni);
|
||||
+ useVGA = GXCheckVGA(pScrni, pEnt);
|
||||
|
||||
if (flags & PROBE_DETECT) {
|
||||
GeodeProbeDDC(pScrni, pEnt->index);
|
||||
@@ -591,12 +615,18 @@ GXPreInit(ScrnInfoPtr pScrni, int flags)
|
||||
panelgeo = xf86GetOptValString(GeodeOptions, GX_OPTION_PANEL_GEOMETRY);
|
||||
|
||||
if ((s = xf86GetOptValString(GeodeOptions, GX_OPTION_ACCEL_METHOD))) {
|
||||
+#if defined(XF86XAA) && defined(XF86EXA)
|
||||
if (!xf86NameCmp(s, "XAA"))
|
||||
pGeode->useEXA = FALSE;
|
||||
else if (xf86NameCmp(s, "EXA"))
|
||||
xf86DrvMsg(pScrni->scrnIndex, X_ERROR,
|
||||
"Unknown accleration method %s. Defaulting to XAA.\n",
|
||||
s);
|
||||
+#elif defined(XF86EXA)
|
||||
+ pGeode->useEXA = TRUE;
|
||||
+#else
|
||||
+ pGeode->useEXA = FALSE;
|
||||
+#endif
|
||||
}
|
||||
|
||||
xf86DrvMsg(pScrni->scrnIndex, X_INFO,
|
||||
@@ -752,11 +782,21 @@ GXUnmapMem(ScrnInfoPtr pScrni)
|
||||
GeodeRec *pGeode = GEODEPTR(pScrni);
|
||||
|
||||
/* unmap all the memory map's */
|
||||
-
|
||||
+#ifndef XSERVER_LIBPCIACCESS
|
||||
xf86UnMapVidMem(pScrni->scrnIndex, gfx_virt_regptr, GX_CPU_REG_SIZE);
|
||||
xf86UnMapVidMem(pScrni->scrnIndex, gfx_virt_gpptr, GX_GP_REG_SIZE);
|
||||
xf86UnMapVidMem(pScrni->scrnIndex, gfx_virt_vidptr, GX_VID_REG_SIZE);
|
||||
xf86UnMapVidMem(pScrni->scrnIndex, gfx_virt_fbptr, pGeode->FBAvail);
|
||||
+#else
|
||||
+ pciVideoPtr pci = xf86GetPciInfoForEntity(pGeode->pEnt->index);
|
||||
+
|
||||
+ unmap_pci_mem(pScrni, pci, gfx_virt_regptr, GX_CPU_REG_SIZE);
|
||||
+ unmap_pci_mem(pScrni, pci, gfx_virt_gpptr, GX_GP_REG_SIZE);
|
||||
+ unmap_pci_mem(pScrni, pci, gfx_virt_vidptr, GX_VID_REG_SIZE);
|
||||
+ unmap_pci_mem(pScrni, pci, gfx_virt_fbptr, pGeode->FBAvail);
|
||||
+
|
||||
+ munmap(XpressROMPtr, 0x10000);
|
||||
+#endif
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
diff --git a/src/lx_driver.c b/src/lx_driver.c
|
||||
index 146578e..c68f715 100644
|
||||
--- a/src/lx_driver.c
|
||||
+++ b/src/lx_driver.c
|
||||
@@ -33,6 +33,9 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
+#include <fcntl.h>
|
||||
+#include <unistd.h>
|
||||
+#include <sys/mman.h>
|
||||
|
||||
#include "xf86.h"
|
||||
#include "xf86_OSproc.h"
|
||||
@@ -155,7 +158,6 @@ map_pci_mem(ScrnInfoPtr pScrni, int vram,
|
||||
struct pci_device *dev, int bar, int size)
|
||||
{
|
||||
void *ptr;
|
||||
- void **result = (void **) &ptr;
|
||||
int map_size = size ? size : dev->regions[bar].size;
|
||||
|
||||
int err = pci_device_map_range(dev,
|
||||
@@ -163,7 +165,7 @@ map_pci_mem(ScrnInfoPtr pScrni, int vram,
|
||||
map_size,
|
||||
PCI_DEV_MAP_FLAG_WRITABLE |
|
||||
(vram ? PCI_DEV_MAP_FLAG_WRITE_COMBINE : 0),
|
||||
- result);
|
||||
+ &ptr);
|
||||
|
||||
if (err)
|
||||
return NULL;
|
||||
@@ -235,7 +237,19 @@ LXMapMem(ScrnInfoPtr pScrni)
|
||||
pGeode->FBAvail);
|
||||
gp_set_command_buffer_base(cmd_bfr_phys, 0, pGeode->CmdBfrSize);
|
||||
|
||||
+#ifndef XSERVER_LIBPCIACCESS
|
||||
XpressROMPtr = xf86MapVidMem(index, VIDMEM_FRAMEBUFFER, 0xF0000, 0x10000);
|
||||
+#else
|
||||
+ {
|
||||
+ int fd = open("/dev/mem", O_RDWR);
|
||||
+ if (fd < 0) {
|
||||
+ xf86DrvMsg(index, X_ERROR, "Failed to open /dev/mem: %m\n");
|
||||
+ return FALSE;
|
||||
+ }
|
||||
+ XpressROMPtr = mmap(NULL, 0x10000, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0xF0000);
|
||||
+ close(fd);
|
||||
+ }
|
||||
+#endif
|
||||
|
||||
pGeode->FBBase = cim_fb_ptr;
|
||||
|
||||
@@ -253,9 +267,9 @@ LXMapMem(ScrnInfoPtr pScrni)
|
||||
*/
|
||||
|
||||
static Bool
|
||||
-LXCheckVGA(ScrnInfoPtr pScrni)
|
||||
+LXCheckVGA(ScrnInfoPtr pScrni, EntityInfoPtr pEnt)
|
||||
{
|
||||
-
|
||||
+#ifndef XSERVER_LIBPCIACCESS
|
||||
unsigned char *ptr;
|
||||
const char *vgasig = "IBM VGA Compatible";
|
||||
int ret;
|
||||
@@ -271,6 +285,11 @@ LXCheckVGA(ScrnInfoPtr pScrni)
|
||||
xf86UnMapVidMem(pScrni->scrnIndex, (pointer) ptr, strlen(vgasig));
|
||||
|
||||
return ret ? FALSE : TRUE;
|
||||
+#else
|
||||
+ pciVideoPtr pci = xf86GetPciInfoForEntity(pEnt->index);
|
||||
+
|
||||
+ return pci_device_is_boot_vga(pci);
|
||||
+#endif
|
||||
}
|
||||
|
||||
static Bool
|
||||
@@ -310,7 +329,7 @@ LXPreInit(ScrnInfoPtr pScrni, int flags)
|
||||
if (pGeode == NULL)
|
||||
return FALSE;
|
||||
|
||||
- pGeode->useVGA = LXCheckVGA(pScrni);
|
||||
+ pGeode->useVGA = LXCheckVGA(pScrni, pEnt);
|
||||
pGeode->VGAActive = FALSE;
|
||||
pGeode->pEnt = pEnt;
|
||||
|
||||
@@ -611,6 +630,8 @@ LXUnmapMem(ScrnInfoPtr pScrni)
|
||||
xf86UnMapVidMem(pScrni->scrnIndex, (pointer) cim_vg_ptr, LX_VG_REG_SIZE);
|
||||
xf86UnMapVidMem(pScrni->scrnIndex, (pointer) cim_vid_ptr, LX_VID_REG_SIZE);
|
||||
xf86UnMapVidMem(pScrni->scrnIndex, (pointer) cim_vip_ptr, LX_VIP_REG_SIZE);
|
||||
+
|
||||
+ xf86UnMapVidMem(pScrni->scrnIndex, XpressROMPtr, 0x10000);
|
||||
#else
|
||||
GeodeRec *pGeode = GEODEPTR(pScrni);
|
||||
pciVideoPtr pci = xf86GetPciInfoForEntity(pGeode->pEnt->index);
|
||||
@@ -620,9 +641,9 @@ LXUnmapMem(ScrnInfoPtr pScrni)
|
||||
unmap_pci_mem(pScrni, pci, cim_vid_ptr, LX_VID_REG_SIZE);
|
||||
unmap_pci_mem(pScrni, pci, cim_vip_ptr, LX_VIP_REG_SIZE);
|
||||
unmap_pci_mem(pScrni, pci, cim_fb_ptr, pGeode->FBAvail + CIM_CMD_BFR_SZ);
|
||||
-#endif
|
||||
|
||||
- xf86UnMapVidMem(pScrni->scrnIndex, XpressROMPtr, 0x10000);
|
||||
+ munmap(XpressROMPtr, 0x10000);
|
||||
+#endif
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
--- xf86-video-geode-2.11.16/src/lx_memory.c.orig 2014-10-16 21:48:40.794858194 -0400
|
||||
+++ xf86-video-geode-2.11.16/src/lx_memory.c 2014-10-16 21:49:10.025007547 -0400
|
||||
@@ -23,6 +23,10 @@
|
||||
* software without specific prior written permission.
|
||||
*/
|
||||
|
||||
+#if HAVE_CONFIG_H
|
||||
+#include "config.h"
|
||||
+#endif
|
||||
+
|
||||
#include "xf86.h"
|
||||
#include "geode.h"
|
||||
#include "cim/cim_regs.h"
|
||||
|
||||
@@ -1,47 +0,0 @@
|
||||
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xorg-video-geode</Name>
|
||||
<Homepage>http://www.x.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>driver</IsA>
|
||||
<Summary>X.Org geode video driver</Summary>
|
||||
<Description>xorg-video-geode contains the X.Org driver for AMD Geode video cards.</Description>
|
||||
<Archive sha1sum="f69f7cdbe5e9594a581349411ffe2dfe944e4e0a" type="tarbz2">mirrors://xorg/individual/driver/xf86-video-geode-2.11.16.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>xorg-server-devel</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">xf86-video-geode-2.11.16-glibc-2.20.patch</Patch>
|
||||
<Patch level="1">build-fix-1.17.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xorg-video-geode</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>xorg-server</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/xorg</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2015-05-10</Date>
|
||||
<Version>2.11.16</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Burak Ertürk</Name>
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xorg-video-geode</Name>
|
||||
<Summary xml:lang="tr">X.Org geode ekran kartı sürücüsü</Summary>
|
||||
<Description xml:lang="tr">xorg-video-geode, AMD Geode ekran kartları için X.Org sürücüsünü içerir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user