summaryrefslogtreecommitdiff
path: root/src/nv50_type.h
blob: e3cba74910a844887e80b303aa7c716f706e048a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __NV50_TYPE_H__
#define __NV50_TYPE_H__

typedef enum Head {
    HEAD0 = 0,
    HEAD1
} Head;

typedef enum ORType {
   DAC,
   SOR
} ORType;

typedef enum ORNum {
   DAC0 = 0,
   DAC1 = 1,
   DAC2 = 2,
   SOR0 = 0,
   SOR1 = 1
} ORNum;

#endif