33 lines
		
	
	
		
			481 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			481 B
		
	
	
	
		
			C
		
	
	
	
/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/shared/xf86Axp.h,v 1.3 2001/02/15 19:46:03 eich Exp $ */
 | 
						|
 | 
						|
#ifndef _XF86_AXP_H_
 | 
						|
#define _XF86_AXP_H_
 | 
						|
 | 
						|
typedef enum {
 | 
						|
  SYS_NONE,
 | 
						|
  TSUNAMI,
 | 
						|
  LCA,
 | 
						|
  APECS,
 | 
						|
  T2,
 | 
						|
  T2_GAMMA,
 | 
						|
  CIA,
 | 
						|
  MCPCIA,
 | 
						|
  JENSEN,
 | 
						|
  POLARIS,
 | 
						|
  PYXIS,
 | 
						|
  PYXIS_CIA,
 | 
						|
  IRONGATE
 | 
						|
} axpDevice;
 | 
						|
  
 | 
						|
typedef struct {
 | 
						|
  axpDevice id;
 | 
						|
  unsigned long hae_thresh;
 | 
						|
  unsigned long hae_mask;
 | 
						|
  unsigned long size;
 | 
						|
} axpParams;
 | 
						|
 | 
						|
extern axpParams xf86AXPParams[];
 | 
						|
 | 
						|
#endif
 | 
						|
 |