Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
1117 serge 1
 
1403 serge 2
#include 
1117 serge 3
#include 
4
#include 
5
6
 
1120 serge 7
1117 serge 8
 
1403 serge 9
1117 serge 10
 
11
 
12
#define IORESOURCE_PCI_FIXED            (1<<4)  /* Do not move resource */
13
14
 
15
16
 
17
 * Translate the low bits of the PCI base
18
 * to the resource type
19
 */
20
static inline unsigned int pci_calc_resource_flags(unsigned int flags)
21
{
22
    if (flags & PCI_BASE_ADDRESS_SPACE_IO)
23
        return IORESOURCE_IO;
24
25
 
26
        return IORESOURCE_MEM | IORESOURCE_PREFETCH;
27
28
 
29
}
30
31
 
32
 
33
{
34
    u32_t size = mask & maxbase;      /* Find the significant bits */
35
36
 
37
        return 0;
38
39
 
40
       from that the extent.  */
41
    size = (size & ~(size-1)) - 1;
42
43
 
44
       already been programmed with all 1s.  */
45
    if (base == maxbase && ((base | size) & mask) != mask)
46
        return 0;
47
48
 
49
}
50
51
 
52
{
53
    u64_t size = mask & maxbase;      /* Find the significant bits */
54
55
 
56
        return 0;
57
58
 
59
       from that the extent.  */
60
    size = (size & ~(size-1)) - 1;
61
62
 
63
       already been programmed with all 1s.  */
64
    if (base == maxbase && ((base | size) & mask) != mask)
65
        return 0;
66
67
 
68
}
69
70
 
71
{
72
    if ((mask & (PCI_BASE_ADDRESS_SPACE|PCI_BASE_ADDRESS_MEM_TYPE_MASK)) ==
73
        (PCI_BASE_ADDRESS_SPACE_MEMORY|PCI_BASE_ADDRESS_MEM_TYPE_64))
74
        return 1;
75
    return 0;
76
}
77
78
 
79
{
80
    u32_t  pos, reg, next;
81
    u32_t  l, sz;
82
    struct resource *res;
83
84
 
85
    {
86
        u64_t  l64;
87
        u64_t  sz64;
88
        u32_t  raw_sz;
89
90
 
91
92
 
93
94
 
95
        l = PciRead32(dev->bus, dev->devfn, reg);
96
        PciWrite32(dev->bus, dev->devfn, reg, ~0);
97
        sz = PciRead32(dev->bus, dev->devfn, reg);
98
        PciWrite32(dev->bus, dev->devfn, reg, l);
99
100
 
101
            continue;
102
103
 
104
            l = 0;
105
106
 
107
        if ((l & PCI_BASE_ADDRESS_SPACE) ==
108
                        PCI_BASE_ADDRESS_SPACE_MEMORY)
109
        {
110
            sz = pci_size(l, sz, (u32_t)PCI_BASE_ADDRESS_MEM_MASK);
111
            /*
112
             * For 64bit prefetchable memory sz could be 0, if the
113
             * real size is bigger than 4G, so we need to check
114
             * szhi for that.
115
             */
116
            if (!is_64bit_memory(l) && !sz)
117
                    continue;
118
            res->start = l & PCI_BASE_ADDRESS_MEM_MASK;
119
            res->flags |= l & ~PCI_BASE_ADDRESS_MEM_MASK;
120
        }
121
        else {
122
            sz = pci_size(l, sz, PCI_BASE_ADDRESS_IO_MASK & 0xffff);
123
            if (!sz)
124
                continue;
125
            res->start = l & PCI_BASE_ADDRESS_IO_MASK;
126
            res->flags |= l & ~PCI_BASE_ADDRESS_IO_MASK;
127
        }
128
        res->end = res->start + (unsigned long) sz;
129
        res->flags |= pci_calc_resource_flags(l);
130
        if (is_64bit_memory(l))
131
        {
132
            u32_t szhi, lhi;
133
134
 
135
            PciWrite32(dev->bus, dev->devfn, reg+4, ~0);
136
            szhi = PciRead32(dev->bus, dev->devfn, reg+4);
137
            PciWrite32(dev->bus, dev->devfn, reg+4, lhi);
138
            sz64 = ((u64_t)szhi << 32) | raw_sz;
139
            l64 = ((u64_t)lhi << 32) | l;
140
            sz64 = pci_size64(l64, sz64, PCI_BASE_ADDRESS_MEM_MASK);
141
            next++;
142
143
 
144
            if (!sz64) {
145
                res->start = 0;
146
                res->end = 0;
147
                res->flags = 0;
148
                continue;
149
            }
150
            res->start = l64 & PCI_BASE_ADDRESS_MEM_MASK;
151
            res->end = res->start + sz64;
152
#else
153
            if (sz64 > 0x100000000ULL) {
154
                printk(KERN_ERR "PCI: Unable to handle 64-bit "
155
                                "BAR for device %s\n", pci_name(dev));
156
                res->start = 0;
157
                res->flags = 0;
158
            }
159
            else if (lhi)
160
            {
161
                /* 64-bit wide address, treat as disabled */
162
                PciWrite32(dev->bus, dev->devfn, reg,
163
                        l & ~(u32_t)PCI_BASE_ADDRESS_MEM_MASK);
164
                PciWrite32(dev->bus, dev->devfn, reg+4, 0);
165
                res->start = 0;
166
                res->end = sz;
167
            }
168
#endif
169
        }
170
    }
171
172
 
173
    {
174
        dev->rom_base_reg = rom;
175
        res = &dev->resource[PCI_ROM_RESOURCE];
176
177
 
178
        PciWrite32(dev->bus, dev->devfn, rom, ~PCI_ROM_ADDRESS_ENABLE);
179
        sz = PciRead32(dev->bus, dev->devfn, rom);
180
        PciWrite32(dev->bus, dev->devfn, rom, l);
181
182
 
183
            l = 0;
184
185
 
186
        {
187
            sz = pci_size(l, sz, (u32_t)PCI_ROM_ADDRESS_MASK);
188
189
 
190
            {
191
                res->flags = (l & IORESOURCE_ROM_ENABLE) |
192
                                  IORESOURCE_MEM | IORESOURCE_PREFETCH |
193
                                  IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
194
                res->start = l & PCI_ROM_ADDRESS_MASK;
195
                res->end = res->start + (unsigned long) sz;
196
            }
197
        }
198
    }
199
}
200
201
 
202
{
203
    u8_t irq;
204
205
 
206
    dev->pin = irq;
207
    if (irq)
208
        PciRead8(dev->bus, dev->devfn, PCI_INTERRUPT_LINE);
209
    dev->irq = irq;
210
};
211
212
 
213
 
214
{
215
    u32_t  class;
216
217
 
218
    dev->revision = class & 0xff;
219
    class >>= 8;                                /* upper 3 bytes */
220
    dev->class = class;
221
222
 
223
//    dev->current_state = PCI_UNKNOWN;
224
225
 
226
 //   pci_fixup_device(pci_fixup_early, dev);
227
    class = dev->class >> 8;
228
229
 
230
    {
231
        case PCI_HEADER_TYPE_NORMAL:                /* standard header */
232
            if (class == PCI_CLASS_BRIDGE_PCI)
233
                goto bad;
234
            pci_read_irq(dev);
235
            pci_read_bases(dev, 6, PCI_ROM_ADDRESS);
236
            dev->subsystem_vendor = PciRead16(dev->bus, dev->devfn,PCI_SUBSYSTEM_VENDOR_ID);
237
            dev->subsystem_device = PciRead16(dev->bus, dev->devfn, PCI_SUBSYSTEM_ID);
238
239
 
240
             *      Do the ugly legacy mode stuff here rather than broken chip
241
             *      quirk code. Legacy mode ATA controllers have fixed
242
             *      addresses. These are not always echoed in BAR0-3, and
243
             *      BAR0-3 in a few cases contain junk!
244
             */
245
            if (class == PCI_CLASS_STORAGE_IDE)
246
            {
247
                u8_t progif;
248
249
 
250
                if ((progif & 1) == 0)
251
                {
252
                    dev->resource[0].start = 0x1F0;
253
                    dev->resource[0].end = 0x1F7;
254
                    dev->resource[0].flags = LEGACY_IO_RESOURCE;
255
                    dev->resource[1].start = 0x3F6;
256
                    dev->resource[1].end = 0x3F6;
257
                    dev->resource[1].flags = LEGACY_IO_RESOURCE;
258
                }
259
                if ((progif & 4) == 0)
260
                {
261
                    dev->resource[2].start = 0x170;
262
                    dev->resource[2].end = 0x177;
263
                    dev->resource[2].flags = LEGACY_IO_RESOURCE;
264
                    dev->resource[3].start = 0x376;
265
                    dev->resource[3].end = 0x376;
266
                    dev->resource[3].flags = LEGACY_IO_RESOURCE;
267
                };
268
            }
269
            break;
270
271
 
272
                if (class != PCI_CLASS_BRIDGE_PCI)
273
                        goto bad;
274
                /* The PCI-to-PCI bridge spec requires that subtractive
275
                   decoding (i.e. transparent) bridge must have programming
276
                   interface code of 0x01. */
277
                pci_read_irq(dev);
278
                dev->transparent = ((dev->class & 0xff) == 1);
279
                pci_read_bases(dev, 2, PCI_ROM_ADDRESS1);
280
                break;
281
282
 
283
                if (class != PCI_CLASS_BRIDGE_CARDBUS)
284
                        goto bad;
285
                pci_read_irq(dev);
286
                pci_read_bases(dev, 1, 0);
287
                dev->subsystem_vendor = PciRead16(dev->bus,
288
                                                  dev->devfn,
289
                                                  PCI_CB_SUBSYSTEM_VENDOR_ID);
290
291
 
292
                                                  dev->devfn,
293
                                                  PCI_CB_SUBSYSTEM_ID);
294
                break;
295
296
 
297
                printk(KERN_ERR "PCI: device %s has unknown header type %02x, ignoring.\n",
298
                        pci_name(dev), dev->hdr_type);
299
                return -1;
300
301
 
302
                printk(KERN_ERR "PCI: %s: class %x doesn't match header type %02x. Ignoring class.\n",
303
                       pci_name(dev), class, dev->hdr_type);
304
                dev->class = PCI_CLASS_NOT_DEFINED;
305
    }
306
307
 
308
309
 
310
};
311
312
 
1403 serge 313
{
1117 serge 314
    pci_dev_t  *dev;
1403 serge 315
1117 serge 316
 
317
    u8_t    hdr;
318
319
 
320
321
 
322
323
 
324
    if (id == 0xffffffff || id == 0x00000000 ||
325
        id == 0x0000ffff || id == 0xffff0000)
326
        return NULL;
327
328
 
329
    {
330
331
 
332
        timeout *= 2;
333
334
 
335
336
 
337
        if (timeout > 60 * 100)
338
        {
339
            printk(KERN_WARNING "Device %04x:%02x:%02x.%d not "
340
                   "responding\n", bus,PCI_SLOT(devfn),PCI_FUNC(devfn));
341
            return NULL;
342
        }
343
    };
344
345
 
346
347
 
1404 serge 348
1117 serge 349
 
1120 serge 350
1117 serge 351
 
352
        return NULL;
353
354
 
355
    dev->pci_dev.devfn    = devfn;
356
    dev->pci_dev.hdr_type = hdr & 0x7f;
357
    dev->pci_dev.multifunction    = !!(hdr & 0x80);
358
    dev->pci_dev.vendor   = id & 0xffff;
359
    dev->pci_dev.device   = (id >> 16) & 0xffff;
360
361
 
362
363
 
364
365
 
366
367
 
368
{
369
    int  func, nr = 0;
370
371
 
372
    {
373
        pci_dev_t  *dev;
1403 serge 374
1117 serge 375
 
376
        if( dev )
377
        {
378
            list_add(&dev->link, &devices);
1120 serge 379
1117 serge 380
 
381
382
 
383
             * If this is a single function device,
384
             * don't scan past the first function.
385
             */
386
            if (!dev->pci_dev.multifunction)
387
            {
388
                if (func > 0) {
389
                    dev->pci_dev.multifunction = 1;
390
                }
391
                else {
392
                    break;
393
                }
394
             }
395
        }
396
        else {
397
            if (func == 0)
398
                break;
399
        }
400
    };
401
402
 
403
};
404
405
 
406
 
407
{
408
    u32_t devfn;
409
    pci_dev_t *dev;
1404 serge 410
1117 serge 411
 
412
 
413
        pci_scan_slot(bus, devfn);
414
415
 
416
417
 
418
{
419
    pci_dev_t  *dev;
1403 serge 420
    u32_t       last_bus;
421
    u32_t       bus = 0 , devfn = 0;
422
1117 serge 423
 
1120 serge 424
1117 serge 425
 
426
427
 
428
 
429
        return -1;
430
431
 
432
        pci_scan_bus(bus);
433
434
 
435
//        &dev->link != &devices;
436
//        dev = (dev_t*)dev->link.next)
437
//    {
438
//        dbgprintf("PCI device %x:%x bus:%x devfn:%x\n",
439
//                dev->pci_dev.vendor,
440
//                dev->pci_dev.device,
441
//                dev->pci_dev.bus,
442
//                dev->pci_dev.devfn);
443
//
444
//    }
445
    return 0;
446
}
447
448
 
1239 serge 449
450
 
451
                   u8 pos, int cap, int *ttl)
452
{
453
    u8 id;
454
455
 
456
        pos = PciRead8(bus, devfn, pos);
457
        if (pos < 0x40)
458
            break;
459
        pos &= ~3;
460
        id = PciRead8(bus, devfn, pos + PCI_CAP_LIST_ID);
461
        if (id == 0xff)
462
            break;
463
        if (id == cap)
464
            return pos;
465
        pos += PCI_CAP_LIST_NEXT;
466
    }
467
    return 0;
468
}
469
470
 
471
                   u8 pos, int cap)
472
{
473
    int ttl = PCI_FIND_CAP_TTL;
474
475
 
476
}
477
478
 
479
                    unsigned int devfn, u8 hdr_type)
480
{
481
    u16 status;
482
483
 
484
    if (!(status & PCI_STATUS_CAP_LIST))
485
        return 0;
486
487
 
488
    case PCI_HEADER_TYPE_NORMAL:
489
    case PCI_HEADER_TYPE_BRIDGE:
490
        return PCI_CAPABILITY_LIST;
491
    case PCI_HEADER_TYPE_CARDBUS:
492
        return PCI_CB_CAPABILITY_LIST;
493
    default:
494
        return 0;
495
    }
496
497
 
498
}
499
500
 
501
 
502
{
503
    int pos;
504
505
 
506
    if (pos)
507
        pos = __pci_find_next_cap(dev->bus, dev->devfn, pos, cap);
508
509
 
510
}
511
512
 
513
 
1117 serge 514
/**
515
 * pci_set_power_state - Set the power state of a PCI device
516
 * @dev: PCI device to be suspended
517
 * @state: PCI power state (D0, D1, D2, D3hot, D3cold) we're entering
518
 *
519
 * Transition a device to a new power state, using the Power Management
520
 * Capabilities in the device's config space.
521
 *
522
 * RETURN VALUE:
523
 * -EINVAL if trying to enter a lower state than we're already in.
524
 * 0 if we're already in the requested state.
525
 * -EIO if device does not support PCI PM.
526
 * 0 if we can successfully change the power state.
527
 */
528
int
529
pci_set_power_state(struct pci_dev *dev, pci_power_t state)
530
{
531
        int pm, need_restore = 0;
532
        u16 pmcsr, pmc;
533
534
 
535
        if (state > PCI_D3hot)
536
                state = PCI_D3hot;
537
538
 
539
         * If the device or the parent bridge can't support PCI PM, ignore
540
         * the request if we're doing anything besides putting it into D0
541
         * (which would only happen on boot).
542
         */
543
        if ((state == PCI_D1 || state == PCI_D2) && pci_no_d1d2(dev))
544
                return 0;
545
546
 
547
        pm = pci_find_capability(dev, PCI_CAP_ID_PM);
548
549
 
550
        if (!pm)
551
                return -EIO;
552
553
 
554
         * Can enter D0 from any state, but if we can only go deeper
555
         * to sleep if we're already in a low power state
556
         */
557
        if (state != PCI_D0 && dev->current_state > state) {
558
                printk(KERN_ERR "%s(): %s: state=%d, current state=%d\n",
559
                        __FUNCTION__, pci_name(dev), state, dev->current_state);
560
                return -EINVAL;
561
        } else if (dev->current_state == state)
562
                return 0;        /* we're already there */
563
564
 
565
 
566
        if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
567
                printk(KERN_DEBUG
568
                       "PCI: %s has unsupported PM cap regs version (%u)\n",
569
                       pci_name(dev), pmc & PCI_PM_CAP_VER_MASK);
570
                return -EIO;
571
        }
572
573
 
574
        if (state == PCI_D1 && !(pmc & PCI_PM_CAP_D1))
575
                return -EIO;
576
        else if (state == PCI_D2 && !(pmc & PCI_PM_CAP_D2))
577
                return -EIO;
578
579
 
580
581
 
582
         * This doesn't affect PME_Status, disables PME_En, and
583
         * sets PowerState to 0.
584
         */
585
        switch (dev->current_state) {
586
        case PCI_D0:
587
        case PCI_D1:
588
        case PCI_D2:
589
                pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
590
                pmcsr |= state;
591
                break;
592
        case PCI_UNKNOWN: /* Boot-up */
593
                if ((pmcsr & PCI_PM_CTRL_STATE_MASK) == PCI_D3hot
594
                 && !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET))
595
                        need_restore = 1;
596
                /* Fall-through: force to D0 */
597
        default:
598
                pmcsr = 0;
599
                break;
600
        }
601
602
 
603
        pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
604
605
 
606
        /* see PCI PM 1.1 5.6.1 table 18 */
607
        if (state == PCI_D3hot || dev->current_state == PCI_D3hot)
608
                msleep(pci_pm_d3_delay);
609
        else if (state == PCI_D2 || dev->current_state == PCI_D2)
610
                udelay(200);
611
612
 
613
         * Give firmware a chance to be called, such as ACPI _PRx, _PSx
614
         * Firmware method after native method ?
615
         */
616
        if (platform_pci_set_power_state)
617
                platform_pci_set_power_state(dev, state);
618
619
 
620
621
 
622
         * INTERFACE SPECIFICATION, REV. 1.2", a device transitioning
623
         * from D3hot to D0 _may_ perform an internal reset, thereby
624
         * going to "D0 Uninitialized" rather than "D0 Initialized".
625
         * For example, at least some versions of the 3c905B and the
626
         * 3c556B exhibit this behaviour.
627
         *
628
         * At least some laptop BIOSen (e.g. the Thinkpad T21) leave
629
         * devices in a D3hot state at boot.  Consequently, we need to
630
         * restore at least the BARs so that the device will be
631
         * accessible to its driver.
632
         */
633
        if (need_restore)
634
                pci_restore_bars(dev);
635
636
 
637
}
638
#endif
639
640
 
641
{
642
    u16_t cmd, old_cmd;
643
    int  idx;
644
    struct resource *r;
645
646
 
647
    old_cmd = cmd;
648
    for (idx = 0; idx < PCI_NUM_RESOURCES; idx++)
649
    {
650
        /* Only set up the requested stuff */
651
        if (!(mask & (1 << idx)))
652
                continue;
653
654
 
655
        if (!(r->flags & (IORESOURCE_IO | IORESOURCE_MEM)))
656
                continue;
657
        if ((idx == PCI_ROM_RESOURCE) &&
658
                        (!(r->flags & IORESOURCE_ROM_ENABLE)))
659
                continue;
660
        if (!r->start && r->end) {
661
                printk(KERN_ERR "PCI: Device %s not available "
662
                        "because of resource %d collisions\n",
663
                        pci_name(dev), idx);
664
                return -EINVAL;
665
        }
666
        if (r->flags & IORESOURCE_IO)
667
                cmd |= PCI_COMMAND_IO;
668
        if (r->flags & IORESOURCE_MEM)
669
                cmd |= PCI_COMMAND_MEMORY;
670
    }
671
    if (cmd != old_cmd) {
672
        printk("PCI: Enabling device %s (%04x -> %04x)\n",
673
                pci_name(dev), old_cmd, cmd);
674
        PciWrite16(dev->bus, dev->devfn, PCI_COMMAND, cmd);
675
    }
676
    return 0;
677
}
678
679
 
680
 
681
{
682
        int err;
683
684
 
685
                return err;
686
687
 
688
//                return pcibios_enable_irq(dev);
689
        return 0;
690
}
691
692
 
693
 
694
{
695
        int err;
696
697
 
698
//        if (err < 0 && err != -EIO)
699
//                return err;
700
        err = pcibios_enable_device(dev, bars);
701
//        if (err < 0)
702
//                return err;
703
//        pci_fixup_device(pci_fixup_enable, dev);
704
705
 
706
}
707
708
 
709
 
710
                                     resource_size_t flags)
711
{
712
        int err;
713
        int i, bars = 0;
714
715
 
716
//                return 0;               /* already enabled */
717
718
 
719
                if (dev->resource[i].flags & flags)
720
                        bars |= (1 << i);
721
722
 
723
//        if (err < 0)
724
//                atomic_dec(&dev->enable_cnt);
725
        return err;
726
}
727
728
 
729
 
730
 * pci_enable_device - Initialize device before it's used by a driver.
731
 * @dev: PCI device to be initialized
732
 *
733
 *  Initialize device before it's used by a driver. Ask low-level code
734
 *  to enable I/O and memory. Wake up the device if it was suspended.
735
 *  Beware, this function can fail.
736
 *
737
 *  Note we don't actually enable the device many times if we call
738
 *  this function repeatedly (we just increment the count).
739
 */
740
int pci_enable_device(struct pci_dev *dev)
741
{
742
        return __pci_enable_device_flags(dev, IORESOURCE_MEM | IORESOURCE_IO);
743
}
744
745
 
746
 
747
 
1403 serge 748
{
1117 serge 749
    pci_dev_t *dev;
1403 serge 750
    struct pci_device_id *ent;
1117 serge 751
752
 
1403 serge 753
        &dev->link != &devices;
1117 serge 754
        dev = (pci_dev_t*)dev->link.next)
1403 serge 755
    {
1117 serge 756
        if( dev->pci_dev.vendor != idlist->vendor )
757
            continue;
758
759
 
760
        {
761
            if(unlikely(ent->device == dev->pci_dev.device))
762
            {
763
                pdev->pci_dev = dev->pci_dev;
764
                return  ent;
765
            }
766
        };
767
    }
768
769
 
770
};
771
772
 
773
 
774
 
775
 * pci_map_rom - map a PCI ROM to kernel space
776
 * @pdev: pointer to pci device struct
777
 * @size: pointer to receive size of pci window over ROM
778
 * @return: kernel virtual pointer to image of ROM
779
 *
780
 * Map a PCI ROM into kernel space. If ROM is boot video ROM,
781
 * the shadow BIOS copy will be returned instead of the
782
 * actual ROM.
783
 */
784
785
 
786
#define OS_BASE   0x80000000
787
788
 
789
{
790
    struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
791
    u32_t start;
792
    void  *rom;
793
794
 
795
    /*
796
     * IORESOURCE_ROM_SHADOW set on x86, x86_64 and IA64 supports legacy
797
     * memory map if the VGA enable bit of the Bridge Control register is
798
     * set for embedded VGA.
799
     */
800
    if (res->flags & IORESOURCE_ROM_SHADOW) {
801
        /* primary video rom always starts here */
802
        start = (u32_t)0xC0000;
803
        *size = 0x20000; /* cover C000:0 through E000:0 */
804
    } else {
805
        if (res->flags & (IORESOURCE_ROM_COPY | IORESOURCE_ROM_BIOS_COPY)) {
806
            *size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
807
             return (void *)(unsigned long)
808
                     pci_resource_start(pdev, PCI_ROM_RESOURCE);
809
        } else {
810
                /* assign the ROM an address if it doesn't have one */
811
            //if (res->parent == NULL &&
812
            //     pci_assign_resource(pdev,PCI_ROM_RESOURCE))
813
            //         return NULL;
814
             start = pci_resource_start(pdev, PCI_ROM_RESOURCE);
815
             *size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
816
             if (*size == 0)
817
                     return NULL;
818
819
 
820
             if (pci_enable_rom(pdev))
821
                     return NULL;
822
        }
823
    }
824
825
 
826
    if (!rom) {
827
            /* restore enable if ioremap fails */
828
            if (!(res->flags & (IORESOURCE_ROM_ENABLE |
829
                                IORESOURCE_ROM_SHADOW |
830
                                IORESOURCE_ROM_COPY)))
831
                    pci_disable_rom(pdev);
832
            return NULL;
833
    }
834
835
 
836
     * Try to find the true size of the ROM since sometimes the PCI window
837
     * size is much larger than the actual size of the ROM.
838
     * True size is important if the ROM is going to be copied.
839
     */
840
    *size = pci_get_rom_size(rom, *size);
841
842
 
843
844
 
845
    rom = NULL;
846
847
 
848
    memcpy(tmp,(char*)(OS_BASE+legacyBIOSLocation), 32);
849
    *size = tmp[2] * 512;
850
    if (*size > 0x10000 )
851
    {
852
        *size = 0;
853
        dbgprintf("Invalid BIOS length field\n");
854
    }
855
    else
856
        rom = (void*)( OS_BASE+legacyBIOSLocation);
857
858
 
859
}
860
861
 
1119 serge 862
 
863
pci_set_dma_mask(struct pci_dev *dev, u64 mask)
864
{
865
//        if (!pci_dma_supported(dev, mask))
866
//                return -EIO;
867
868
 
869
870
 
871
}
872