summaryrefslogtreecommitdiff
path: root/src/generic_bus.h
blob: a04baa1591c96054f154d7439ba254bdea2cb5ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef __GENERIC_BUS_H__
#define __GENERIC_BUS_H__

/* this is meant to be used for proprietary buses where abstraction is needed
   but they don't occur often enough to warrant a separate helper library */

#include <stdint.h>

#define GB_IOCTL_GET_NAME	1
          /* third argument is size of the buffer, fourth argument is pointer
	     to the buffer. Returns the name of the bus */
#define GB_IOCTL_GET_TYPE	2
          /* third argument is size of the buffer, fourth argument is pointer
	     to the buffer. Returns the type of the bus, driver should check
	     this at initialization time to find out whether they are compatible
	      */


typedef struct _GENERIC_BUS_Rec *GENERIC_BUS_Ptr;

typedef struct _GENERIC_BUS_Rec{
        int scrnIndex;
        DevUnion  DriverPrivate;
	Bool (*ioctl)(GENERIC_BUS_Ptr, long, long, char *);
	Bool (*read)(GENERIC_BUS_Ptr, uint32_t,  uint32_t, uint8_t *);
	Bool (*write)(GENERIC_BUS_Ptr, uint32_t,  uint32_t, uint8_t *);
	Bool (*fifo_read)(GENERIC_BUS_Ptr, uint32_t,  uint32_t, uint8_t *);
	Bool (*fifo_write)(GENERIC_BUS_Ptr, uint32_t,  uint32_t, uint8_t *);

	} GENERIC_BUS_Rec;





#endif