Subversion Repositories Kolibri OS

Rev

Rev 3031 | Rev 3039 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3031 serge 1
#include 
2
#include 
3
#include 
2338 Serge 4
#include "i915_drv.h"
3031 serge 5
//#include "intel_drv.h"
2338 Serge 6
 
2325 Serge 7
#include 
8
#include 
9
#include 
10
#include 
11
#include 
12
#include 
13
 
2342 Serge 14
#include "bitmap.h"
2340 Serge 15
 
3033 serge 16
extern struct drm_device *main_device;
17
 
2344 Serge 18
void cpu_detect();
19
 
2340 Serge 20
void parse_cmdline(char *cmdline, char *log);
2338 Serge 21
int _stdcall display_handler(ioctl_t *io);
2325 Serge 22
int init_agp(void);
23
 
2351 Serge 24
int blit_video(u32 hbitmap, int  dst_x, int dst_y,
25
               int src_x, int src_y, u32 w, u32 h);
2340 Serge 26
 
2351 Serge 27
int blit_textured(u32 hbitmap, int  dst_x, int dst_y,
28
               int src_x, int src_y, u32 w, u32 h);
29
 
2361 Serge 30
int blit_tex(u32 hbitmap, int  dst_x, int dst_y,
31
             int src_x, int src_y, u32 w, u32 h);
32
 
2325 Serge 33
static char  log[256];
34
 
2344 Serge 35
int x86_clflush_size;
36
 
2338 Serge 37
int i915_modeset = 1;
38
 
2325 Serge 39
u32_t drvEntry(int action, char *cmdline)
40
{
41
    struct pci_device_id  *ent;
42
 
43
    int     err = 0;
44
 
45
    if(action != 1)
46
        return 0;
47
 
48
    if( GetService("DISPLAY") != 0 )
49
        return 0;
50
 
2340 Serge 51
    if( cmdline && *cmdline )
52
        parse_cmdline(cmdline, log);
2325 Serge 53
 
54
    if(!dbg_open(log))
55
    {
3031 serge 56
        strcpy(log, "/RD/1/DRIVERS/i915.log");
57
//        strcpy(log, "/BD1/2/i915.log");
2325 Serge 58
 
59
        if(!dbg_open(log))
60
        {
61
            printf("Can't open %s\nExit\n", log);
62
            return 0;
63
        };
64
    }
3031 serge 65
    dbgprintf("i915 preview #08\n cmdline: %s\n", cmdline);
2325 Serge 66
 
2351 Serge 67
    cpu_detect();
68
    dbgprintf("\ncache line size %d\n", x86_clflush_size);
69
 
2325 Serge 70
    enum_pci_devices();
71
 
72
    err = i915_init();
73
 
2338 Serge 74
    if(err)
75
    {
76
        dbgprintf("Epic Fail :(/n");
77
    };
2325 Serge 78
 
2338 Serge 79
    err = RegService("DISPLAY", display_handler);
2325 Serge 80
 
2338 Serge 81
    if( err != 0)
82
        dbgprintf("Set DISPLAY handler\n");
83
 
2325 Serge 84
    return err;
85
};
86
 
2344 Serge 87
#define CURRENT_API     0x0200      /*      2.00     */
88
#define COMPATIBLE_API  0x0100      /*      1.00     */
2338 Serge 89
 
2344 Serge 90
#define API_VERSION     (COMPATIBLE_API << 16) | CURRENT_API
2351 Serge 91
#define DISPLAY_VERSION  API_VERSION
2338 Serge 92
 
93
 
2352 Serge 94
#define SRV_GETVERSION          0
95
#define SRV_ENUM_MODES          1
96
#define SRV_SET_MODE            2
97
#define SRV_GET_CAPS            3
2342 Serge 98
 
2352 Serge 99
#define SRV_CREATE_SURFACE      10
100
#define SRV_DESTROY_SURFACE     11
101
#define SRV_LOCK_SURFACE        12
102
#define SRV_UNLOCK_SURFACE      13
2344 Serge 103
 
2352 Serge 104
#define SRV_BLIT_VIDEO          20
2344 Serge 105
 
2338 Serge 106
#define check_input(size) \
107
    if( unlikely((inp==NULL)||(io->inp_size != (size))) )   \
108
        break;
109
 
110
#define check_output(size) \
111
    if( unlikely((outp==NULL)||(io->out_size != (size))) )   \
112
        break;
113
 
114
int _stdcall display_handler(ioctl_t *io)
115
{
116
    int    retval = -1;
117
    u32_t *inp;
118
    u32_t *outp;
119
 
120
    inp = io->input;
121
    outp = io->output;
122
 
123
    switch(io->io_code)
124
    {
125
        case SRV_GETVERSION:
126
            check_output(4);
2344 Serge 127
            *outp  = DISPLAY_VERSION;
2338 Serge 128
            retval = 0;
129
            break;
130
 
131
        case SRV_ENUM_MODES:
3031 serge 132
//            dbgprintf("SRV_ENUM_MODES inp %x inp_size %x out_size %x\n",
133
//                       inp, io->inp_size, io->out_size );
2340 Serge 134
            check_output(4);
2338 Serge 135
//            check_input(*outp * sizeof(videomode_t));
136
            if( i915_modeset)
137
                retval = get_videomodes((videomode_t*)inp, outp);
138
            break;
139
 
140
        case SRV_SET_MODE:
3031 serge 141
//            dbgprintf("SRV_SET_MODE inp %x inp_size %x\n",
142
//                       inp, io->inp_size);
2338 Serge 143
            check_input(sizeof(videomode_t));
144
            if( i915_modeset )
145
                retval = set_user_mode((videomode_t*)inp);
146
            break;
3033 serge 147
 
2351 Serge 148
        case SRV_GET_CAPS:
149
            retval = get_driver_caps((hwcaps_t*)inp);
150
            break;
151
 
2344 Serge 152
        case SRV_CREATE_SURFACE:
153
//            check_input(8);
3033 serge 154
            retval = create_surface(main_device, (struct io_call_10*)inp);
2338 Serge 155
            break;
156
 
2352 Serge 157
        case SRV_LOCK_SURFACE:
158
            retval = lock_surface((struct io_call_12*)inp);
159
            break;
2342 Serge 160
 
2338 Serge 161
        case SRV_BLIT_VIDEO:
3033 serge 162
            blit_video( inp[0], inp[1], inp[2],
163
                        inp[3], inp[4], inp[5], inp[6]);
164
 
165
//            blit_tex( inp[0], inp[1], inp[2],
2351 Serge 166
//                    inp[3], inp[4], inp[5], inp[6]);
167
 
2338 Serge 168
 
169
            retval = 0;
170
            break;
3031 serge 171
 
2338 Serge 172
    };
173
 
174
    return retval;
175
}
176
 
177
 
2325 Serge 178
#define PCI_CLASS_REVISION      0x08
179
#define PCI_CLASS_DISPLAY_VGA   0x0300
180
#define PCI_CLASS_BRIDGE_HOST   0x0600
2326 Serge 181
#define PCI_CLASS_BRIDGE_ISA    0x0601
2325 Serge 182
 
183
int pci_scan_filter(u32_t id, u32_t busnr, u32_t devfn)
184
{
185
    u16_t vendor, device;
186
    u32_t class;
187
    int   ret = 0;
188
 
189
    vendor   = id & 0xffff;
190
    device   = (id >> 16) & 0xffff;
191
 
192
    if(vendor == 0x8086)
193
    {
194
        class = PciRead32(busnr, devfn, PCI_CLASS_REVISION);
195
        class >>= 16;
196
 
197
        if( (class == PCI_CLASS_DISPLAY_VGA) ||
2326 Serge 198
            (class == PCI_CLASS_BRIDGE_HOST) ||
199
            (class == PCI_CLASS_BRIDGE_ISA))
2325 Serge 200
            ret = 1;
201
    }
202
    return ret;
203
};
2340 Serge 204
 
205
 
206
static char* parse_path(char *p, char *log)
207
{
208
    char  c;
209
 
210
    while( (c = *p++) == ' ');
211
        p--;
212
    while( (c = *log++ = *p++) && (c != ' '));
213
    *log = 0;
214
 
215
    return p;
216
};
217
 
218
void parse_cmdline(char *cmdline, char *log)
219
{
220
    char *p = cmdline;
221
 
222
    char c = *p++;
223
 
224
    while( c )
225
    {
226
        if( c == '-')
227
        {
228
            switch(*p++)
229
            {
230
                case 'l':
231
                    p = parse_path(p, log);
232
                    break;
233
            };
234
        };
235
        c = *p++;
236
    };
237
};
238
 
2351 Serge 239
 
2344 Serge 240
static inline void __cpuid(unsigned int *eax, unsigned int *ebx,
2351 Serge 241
                unsigned int *ecx, unsigned int *edx)
2344 Serge 242
{
243
    /* ecx is often an input as well as an output. */
2351 Serge 244
    asm volatile("cpuid"
2344 Serge 245
        : "=a" (*eax),
246
          "=b" (*ebx),
247
          "=c" (*ecx),
248
          "=d" (*edx)
2351 Serge 249
        : "0" (*eax), "2" (*ecx)
250
        : "memory");
2344 Serge 251
}
252
 
2351 Serge 253
 
254
 
2344 Serge 255
static inline void cpuid(unsigned int op,
256
                         unsigned int *eax, unsigned int *ebx,
257
                         unsigned int *ecx, unsigned int *edx)
258
{
259
        *eax = op;
260
        *ecx = 0;
261
        __cpuid(eax, ebx, ecx, edx);
262
}
263
 
264
void cpu_detect()
265
{
266
    u32 junk, tfms, cap0, misc;
267
 
268
    cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
269
 
270
    if (cap0 & (1<<19))
271
    {
272
        x86_clflush_size = ((misc >> 8) & 0xff) * 8;
273
    }
274
}
275