setting up AGP module use (not finished)

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8379 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rudolf Cornelissen
2004-07-12 12:25:41 +00:00
parent 36ca3a48b2
commit 663294ccbb
6 changed files with 131 additions and 88 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
/ For more information, see "AGP interface specification", Revision 2.0 and 3.0,
/ Intel Corporation, 1998-2002.
/
/ Rudolf Cornelissen 6/2004.
/ Rudolf Cornelissen 6/2004-7/2004.
/
*******************************************************************************/
@@ -16,6 +16,7 @@
#include <Drivers.h>
#include <PCI.h>
#include <OS.h>
#include "AGP.h"
#define DRIVER_PREFIX "nv" // apsed
@@ -64,7 +65,9 @@ enum {
NV_GET_PCI,
NV_SET_PCI,
NV_DEVICE_NAME,
NV_RUN_INTERRUPTS
NV_RUN_INTERRUPTS,
NV_GET_NTH_AGP_INFO,
NV_ENABLE_AGP
};
/* max. number of overlay buffers */
@@ -319,6 +322,21 @@ typedef struct {
char *name; /* The name of the device, less the /dev root */
} nv_device_name;
/* Retrieve an AGP device interface if there. Usefull to find the AGP speed scheme
used (pre 3.x or 3.x) */
typedef struct {
uint32 magic; /* magic number to make sure the caller groks us */
uint8 index; /* device index in list of devices found */
bool exist; /* we got AGP device info */
agp_info agpi; /* AGP interface info of a device */
} nv_nth_agp_info;
/* Execute an AGP command */
typedef struct {
uint32 magic; /* magic number to make sure the caller groks us */
uint32 cmd; /* actual command to execute */
} nv_cmd_agp;
enum {
_WAIT_FOR_VBLANK = (1 << 0)