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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
|
/* $OpenBSD: agp_i810.c,v 1.71 2012/09/25 10:19:46 jsg Exp $ */
/*-
* Copyright (c) 2000 Doug Rabson
* Copyright (c) 2000 Ruslan Ermilov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/lock.h>
#include <sys/device.h>
#include <sys/conf.h>
#include <sys/agpio.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcidevs.h>
#include <dev/pci/agpvar.h>
#include <dev/pci/agpreg.h>
#include <dev/pci/vga_pcivar.h>
#include <machine/bus.h>
#define READ1(off) bus_space_read_1(isc->map->bst, isc->map->bsh, off)
#define READ4(off) bus_space_read_4(isc->map->bst, isc->map->bsh, off)
#define WRITE4(off,v) bus_space_write_4(isc->map->bst, isc->map->bsh, off, v)
/*
* Intel IGP gtt bits.
*/
/* PTE is enabled */
#define INTEL_ENABLED 0x1
/* I810/I815 only, memory is in dcache */
#define INTEL_LOCAL 0x2
/* Memory is snooped, must not be accessed through gtt from the cpu. */
#define INTEL_COHERENT 0x6
#define GEN6_PTE_UNCACHED (1 << 1)
#define GEN6_PTE_CACHE_LLC (2 << 1)
#define GEN6_PTE_CACHE_LLC_MLC (3 << 1)
enum {
CHIP_NONE = 0, /* not integrated graphics */
CHIP_I810 = 1, /* i810/i815 */
CHIP_I830 = 2, /* i830/i845 */
CHIP_I855 = 3, /* i852GM/i855GM/i865G */
CHIP_I915 = 4, /* i915G/i915GM */
CHIP_I965 = 5, /* i965/i965GM */
CHIP_G33 = 6, /* G33/Q33/Q35 */
CHIP_G4X = 7, /* G4X */
CHIP_PINEVIEW = 8, /* Pineview/Pineview M */
CHIP_IRONLAKE = 9, /* Clarkdale/Arrandale */
CHIP_SANDYBRIDGE=10, /* Sandybridge */
CHIP_IVYBRIDGE =11, /* Ivybridge */
};
struct agp_i810_softc {
struct device dev;
bus_dma_segment_t scrib_seg;
struct agp_softc *agpdev;
struct agp_gatt *gatt;
struct vga_pci_bar *map;
struct vga_pci_bar *gtt_map;
bus_dmamap_t scrib_dmamap;
bus_addr_t isc_apaddr;
bus_size_t isc_apsize; /* current aperture size */
int chiptype; /* i810-like or i830 */
u_int32_t dcache_size; /* i810 only */
u_int32_t stolen; /* number of i830/845 gtt
entries for stolen memory */
};
void agp_i810_attach(struct device *, struct device *, void *);
int agp_i810_activate(struct device *, int);
void agp_i810_configure(struct agp_i810_softc *);
int agp_i810_probe(struct device *, void *, void *);
int agp_i810_get_chiptype(struct pci_attach_args *);
void agp_i810_bind_page(void *, bus_size_t, paddr_t, int);
void agp_i810_unbind_page(void *, bus_size_t);
void agp_i810_flush_tlb(void *);
int agp_i810_enable(void *, u_int32_t mode);
struct agp_memory * agp_i810_alloc_memory(void *, int, vsize_t);
int agp_i810_free_memory(void *, struct agp_memory *);
int agp_i810_bind_memory(void *, struct agp_memory *, bus_size_t);
int agp_i810_unbind_memory(void *, struct agp_memory *);
void intagp_write_gtt(struct agp_i810_softc *, bus_size_t, paddr_t);
int intagp_gmch_match(struct pci_attach_args *);
extern void intagp_dma_sync(bus_dma_tag_t, bus_dmamap_t,
bus_addr_t, bus_size_t, int);
struct cfattach intagp_ca = {
sizeof(struct agp_i810_softc), agp_i810_probe, agp_i810_attach,
NULL, agp_i810_activate,
};
struct cfdriver intagp_cd = {
NULL, "intagp", DV_DULL
};
struct agp_methods agp_i810_methods = {
agp_i810_bind_page,
agp_i810_unbind_page,
agp_i810_flush_tlb,
intagp_dma_sync,
agp_i810_enable,
agp_i810_alloc_memory,
agp_i810_free_memory,
agp_i810_bind_memory,
agp_i810_unbind_memory,
};
int
agp_i810_get_chiptype(struct pci_attach_args *pa)
{
switch (PCI_PRODUCT(pa->pa_id)) {
case PCI_PRODUCT_INTEL_82810_IGD:
case PCI_PRODUCT_INTEL_82810_DC100_IGD:
case PCI_PRODUCT_INTEL_82810E_IGD:
case PCI_PRODUCT_INTEL_82815_IGD:
return (CHIP_I810);
break;
case PCI_PRODUCT_INTEL_82830M_IGD:
case PCI_PRODUCT_INTEL_82845G_IGD:
return (CHIP_I830);
break;
case PCI_PRODUCT_INTEL_82855GM_IGD:
case PCI_PRODUCT_INTEL_82865G_IGD:
return (CHIP_I855);
break;
case PCI_PRODUCT_INTEL_82915G_IGD_1:
case PCI_PRODUCT_INTEL_82915G_IGD_2:
case PCI_PRODUCT_INTEL_82915GM_IGD_1:
case PCI_PRODUCT_INTEL_82915GM_IGD_2:
case PCI_PRODUCT_INTEL_82945G_IGD_1:
case PCI_PRODUCT_INTEL_82945G_IGD_2:
case PCI_PRODUCT_INTEL_82945GM_IGD_1:
case PCI_PRODUCT_INTEL_82945GM_IGD_2:
case PCI_PRODUCT_INTEL_82945GME_IGD_1:
return (CHIP_I915);
break;
case PCI_PRODUCT_INTEL_82946GZ_IGD_1:
case PCI_PRODUCT_INTEL_82946GZ_IGD_2:
case PCI_PRODUCT_INTEL_82Q965_IGD_1:
case PCI_PRODUCT_INTEL_82Q965_IGD_2:
case PCI_PRODUCT_INTEL_82G965_IGD_1:
case PCI_PRODUCT_INTEL_82G965_IGD_2:
case PCI_PRODUCT_INTEL_82GM965_IGD_1:
case PCI_PRODUCT_INTEL_82GM965_IGD_2:
case PCI_PRODUCT_INTEL_82GME965_IGD_1:
case PCI_PRODUCT_INTEL_82GME965_IGD_2:
case PCI_PRODUCT_INTEL_82G35_IGD_1:
case PCI_PRODUCT_INTEL_82G35_IGD_2:
return (CHIP_I965);
break;
case PCI_PRODUCT_INTEL_82G33_IGD_1:
case PCI_PRODUCT_INTEL_82G33_IGD_2:
case PCI_PRODUCT_INTEL_82Q35_IGD_1:
case PCI_PRODUCT_INTEL_82Q35_IGD_2:
return (CHIP_G33);
break;
case PCI_PRODUCT_INTEL_82GM45_IGD_1:
case PCI_PRODUCT_INTEL_82Q45_IGD_1:
case PCI_PRODUCT_INTEL_82G45_IGD_1:
case PCI_PRODUCT_INTEL_82G41_IGD_1:
return (CHIP_G4X);
break;
case PCI_PRODUCT_INTEL_PINEVIEW_IGC_1:
case PCI_PRODUCT_INTEL_PINEVIEW_M_IGC_1:
return (CHIP_PINEVIEW);
break;
case PCI_PRODUCT_INTEL_CLARKDALE_IGD:
case PCI_PRODUCT_INTEL_ARRANDALE_IGD:
return (CHIP_IRONLAKE);
break;
case PCI_PRODUCT_INTEL_CORE2G_GT1:
case PCI_PRODUCT_INTEL_CORE2G_M_GT1:
case PCI_PRODUCT_INTEL_CORE2G_GT2:
case PCI_PRODUCT_INTEL_CORE2G_M_GT2:
case PCI_PRODUCT_INTEL_CORE2G_GT2_PLUS:
case PCI_PRODUCT_INTEL_CORE2G_M_GT2_PLUS:
return (CHIP_SANDYBRIDGE);
break;
case PCI_PRODUCT_INTEL_CORE3G_D_GT1:
case PCI_PRODUCT_INTEL_CORE3G_M_GT1:
case PCI_PRODUCT_INTEL_CORE3G_S_GT1:
case PCI_PRODUCT_INTEL_CORE3G_D_GT2:
case PCI_PRODUCT_INTEL_CORE3G_M_GT2:
case PCI_PRODUCT_INTEL_CORE3G_S_GT2:
return (CHIP_IVYBRIDGE);
break;
}
return (CHIP_NONE);
}
/*
* We're intel IGD, bus 0 function 0 dev 0 should be the GMCH, so it should
* be Intel
*/
int
intagp_gmch_match(struct pci_attach_args *pa)
{
if (pa->pa_bus == 0 && pa->pa_device == 0 && pa->pa_function == 0 &&
PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL &&
PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_HOST)
return (1);
return (0);
}
int
agp_i810_probe(struct device *parent, void *match, void *aux)
{
struct pci_attach_args *pa = aux;
if (PCI_CLASS(pa->pa_class) != PCI_CLASS_DISPLAY ||
PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_DISPLAY_VGA)
return (0);
return (agp_i810_get_chiptype(pa) != CHIP_NONE);
}
void
agp_i810_attach(struct device *parent, struct device *self, void *aux)
{
struct agp_i810_softc *isc = (struct agp_i810_softc *)self;
struct agp_gatt *gatt;
struct pci_attach_args *pa = aux, bpa;
struct vga_pci_softc *vga = (struct vga_pci_softc *)parent;
bus_addr_t mmaddr, gmaddr, tmp;
pcireg_t memtype, reg;
u_int32_t stolen;
u_int16_t gcc1;
isc->chiptype = agp_i810_get_chiptype(pa);
switch (isc->chiptype) {
case CHIP_I915:
case CHIP_G33:
case CHIP_PINEVIEW:
gmaddr = AGP_I915_GMADR;
mmaddr = AGP_I915_MMADR;
memtype = PCI_MAPREG_TYPE_MEM;
break;
case CHIP_I965:
case CHIP_G4X:
case CHIP_IRONLAKE:
case CHIP_SANDYBRIDGE:
case CHIP_IVYBRIDGE:
gmaddr = AGP_I965_GMADR;
mmaddr = AGP_I965_MMADR;
memtype = PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT;
break;
default:
gmaddr = AGP_APBASE;
mmaddr = AGP_I810_MMADR;
memtype = PCI_MAPREG_TYPE_MEM;
break;
}
if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, gmaddr, memtype,
&isc->isc_apaddr, &isc->isc_apsize, NULL) != 0) {
printf("can't get aperture info\n");
return;
}
isc->map = vga_pci_bar_map(vga, mmaddr, 0, BUS_SPACE_MAP_LINEAR);
if (isc->map == NULL) {
printf("can't map mmadr registers\n");
return;
}
if (isc->chiptype == CHIP_I915 || isc->chiptype == CHIP_G33 ||
isc->chiptype == CHIP_PINEVIEW) {
isc->gtt_map = vga_pci_bar_map(vga, AGP_I915_GTTADR, 0,
BUS_SPACE_MAP_LINEAR);
if (isc->gtt_map == NULL) {
printf("can't map gatt registers\n");
goto out;
}
}
gatt = malloc(sizeof(*gatt), M_AGP, M_NOWAIT | M_ZERO);
if (gatt == NULL) {
printf("can't alloc gatt\n");
goto out;
}
isc->gatt = gatt;
gatt->ag_entries = isc->isc_apsize >> AGP_PAGE_SHIFT;
/*
* Find the GMCH, some of the registers we need to read for
* configuration purposes are on there. it's always at
* 0/0/0 (bus/dev/func).
*/
if (pci_find_device(&bpa, intagp_gmch_match) == 0) {
printf("can't find GMCH\n");
goto out;
}
switch (isc->chiptype) {
case CHIP_I810:
/* Some i810s have on-chip memory called dcache */
if (READ1(AGP_I810_DRT) & AGP_I810_DRT_POPULATED)
isc->dcache_size = 4 * 1024 * 1024;
else
isc->dcache_size = 0;
/* According to the specs the gatt on the i810 must be 64k */
if (agp_alloc_dmamem(pa->pa_dmat, 64 * 1024, &gatt->ag_dmamap,
&gatt->ag_physical, &gatt->ag_dmaseg) != 0) {
goto out;
}
gatt->ag_size = gatt->ag_entries * sizeof(u_int32_t);
if (bus_dmamem_map(pa->pa_dmat, &gatt->ag_dmaseg, 1, 64 * 1024,
(caddr_t *)&gatt->ag_virtual, BUS_DMA_NOWAIT) != 0)
goto out;
break;
case CHIP_I830:
/* The i830 automatically initializes the 128k gatt on boot. */
reg = pci_conf_read(bpa.pa_pc, bpa.pa_tag, AGP_I830_GCC0);
gcc1 = (u_int16_t)(reg >> 16);
switch (gcc1 & AGP_I830_GCC1_GMS) {
case AGP_I830_GCC1_GMS_STOLEN_512:
isc->stolen = (512 - 132) * 1024 / 4096;
break;
case AGP_I830_GCC1_GMS_STOLEN_1024:
isc->stolen = (1024 - 132) * 1024 / 4096;
break;
case AGP_I830_GCC1_GMS_STOLEN_8192:
isc->stolen = (8192 - 132) * 1024 / 4096;
break;
default:
isc->stolen = 0;
printf("unknown memory configuration, disabling\n");
goto out;
}
#ifdef DEBUG
if (isc->stolen > 0) {
printf(": detected %dk stolen memory",
isc->stolen * 4);
} else
printf(": no preallocated video memory\n");
#endif
/* GATT address is already in there, make sure it's enabled */
gatt->ag_physical = READ4(AGP_I810_PGTBL_CTL) & ~1;
break;
case CHIP_I855:
/* FALLTHROUGH */
case CHIP_I915:
/* FALLTHROUGH */
case CHIP_I965:
/* FALLTHROUGH */
case CHIP_G33:
/* FALLTHROUGH */
case CHIP_G4X:
case CHIP_PINEVIEW:
case CHIP_IRONLAKE:
/* Stolen memory is set up at the beginning of the aperture by
* the BIOS, consisting of the GATT followed by 4kb for the
* BIOS display.
*/
reg = pci_conf_read(bpa.pa_pc, bpa.pa_tag, AGP_I855_GCC1);
gcc1 = (u_int16_t)(reg >> 16);
switch (isc->chiptype) {
case CHIP_I855:
/* The 855GM automatically initializes the 128k gatt on boot. */
stolen = 128 + 4;
break;
case CHIP_I915:
/* The 915G automatically initializes the 256k gatt on boot. */
stolen = 256 + 4;
break;
case CHIP_I965:
switch (READ4(AGP_I810_PGTBL_CTL) &
AGP_I810_PGTBL_SIZE_MASK) {
case AGP_I810_PGTBL_SIZE_512KB:
stolen = 512 + 4;
break;
case AGP_I810_PGTBL_SIZE_256KB:
stolen = 256 + 4;
break;
case AGP_I810_PGTBL_SIZE_128KB:
default:
stolen = 128 + 4;
break;
}
break;
case CHIP_G33:
switch (gcc1 & AGP_G33_PGTBL_SIZE_MASK) {
case AGP_G33_PGTBL_SIZE_2M:
stolen = 2048 + 4;
break;
case AGP_G33_PGTBL_SIZE_1M:
default:
stolen = 1024 + 4;
break;
}
break;
case CHIP_G4X:
case CHIP_PINEVIEW:
case CHIP_IRONLAKE:
/*
* GTT stolen is separate from graphics stolen on
* 4 series hardware. so ignore it in stolen gtt entries
* counting. However, 4Kb of stolen memory isn't mapped
* to the GTT.
*/
stolen = 4;
break;
default:
printf("bad chiptype\n");
goto out;
}
switch (gcc1 & AGP_I855_GCC1_GMS) {
case AGP_I855_GCC1_GMS_STOLEN_1M:
isc->stolen = (1024 - stolen) * 1024 / 4096;
break;
case AGP_I855_GCC1_GMS_STOLEN_4M:
isc->stolen = (4096 - stolen) * 1024 / 4096;
break;
case AGP_I855_GCC1_GMS_STOLEN_8M:
isc->stolen = (8192 - stolen) * 1024 / 4096;
break;
case AGP_I855_GCC1_GMS_STOLEN_16M:
isc->stolen = (16384 - stolen) * 1024 / 4096;
break;
case AGP_I855_GCC1_GMS_STOLEN_32M:
isc->stolen = (32768 - stolen) * 1024 / 4096;
break;
case AGP_I915_GCC1_GMS_STOLEN_48M:
isc->stolen = (49152 - stolen) * 1024 / 4096;
break;
case AGP_I915_GCC1_GMS_STOLEN_64M:
isc->stolen = (65536 - stolen) * 1024 / 4096;
break;
case AGP_G33_GCC1_GMS_STOLEN_128M:
isc->stolen = (131072 - stolen) * 1024 / 4096;
break;
case AGP_G33_GCC1_GMS_STOLEN_256M:
isc->stolen = (262144 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_GMCH_GMS_STOLEN_96M:
isc->stolen = (98304 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_GMCH_GMS_STOLEN_160M:
isc->stolen = (163840 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_GMCH_GMS_STOLEN_224M:
isc->stolen = (229376 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_GMCH_GMS_STOLEN_352M:
isc->stolen = (360448 - stolen) * 1024 / 4096;
break;
default:
isc->stolen = 0;
printf("unknown memory configuration, disabling\n");
goto out;
}
#ifdef DEBUG
if (isc->stolen > 0) {
printf(": detected %dk stolen memory",
isc->stolen * 4);
} else
printf(": no preallocated video memory\n");
#endif
/* GATT address is already in there, make sure it's enabled */
gatt->ag_physical = READ4(AGP_I810_PGTBL_CTL) & ~1;
break;
case CHIP_SANDYBRIDGE:
case CHIP_IVYBRIDGE:
/* Stolen memory is set up at the beginning of the aperture by
* the BIOS, consisting of the GATT followed by 4kb for the
* BIOS display.
*/
gcc1 = (u_int16_t)pci_conf_read(bpa.pa_pc, bpa.pa_tag,
AGP_INTEL_SNB_GMCH_CTRL);
stolen = 4;
switch (gcc1 & AGP_INTEL_SNB_GMCH_GMS_STOLEN_MASK) {
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_32M:
isc->stolen = (32768 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_64M:
isc->stolen = (65536 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_96M:
isc->stolen = (98304 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_128M:
isc->stolen = (131072 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_160M:
isc->stolen = (163840 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_192M:
isc->stolen = (196608 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_224M:
isc->stolen = (229376 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_256M:
isc->stolen = (262144 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_288M:
isc->stolen = (294912 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_320M:
isc->stolen = (327680 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_352M:
isc->stolen = (360448 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_384M:
isc->stolen = (393216 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_416M:
isc->stolen = (425984 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_448M:
isc->stolen = (458752 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_480M:
isc->stolen = (491520 - stolen) * 1024 / 4096;
break;
case AGP_INTEL_SNB_GMCH_GMS_STOLEN_512M:
isc->stolen = (524288 - stolen) * 1024 / 4096;
break;
default:
isc->stolen = 0;
printf("unknown memory configuration, disabling\n");
goto out;
}
#ifdef DEBUG
if (isc->stolen > 0) {
printf(": detected %dk stolen memory",
isc->stolen * 4);
} else
printf(": no preallocated video memory\n");
#endif
/* GATT address is already in there, make sure it's enabled */
gatt->ag_physical = READ4(AGP_I810_PGTBL_CTL) & ~1;
break;
default:
printf(": unknown initialisation\n");
return;
}
/* Intel recommends that you have a fake page bound to the gtt always */
if (agp_alloc_dmamem(pa->pa_dmat, AGP_PAGE_SIZE, &isc->scrib_dmamap,
&tmp, &isc->scrib_seg) != 0) {
printf(": can't get scribble page\n");
return;
}
agp_i810_configure(isc);
isc->agpdev = (struct agp_softc *)agp_attach_bus(pa, &agp_i810_methods,
isc->isc_apaddr, isc->isc_apsize, &isc->dev);
isc->agpdev->sc_stolen_entries = isc->stolen;
return;
out:
if (isc->gatt) {
if (isc->gatt->ag_size != 0)
agp_free_dmamem(pa->pa_dmat, isc->gatt->ag_size,
isc->gatt->ag_dmamap, &isc->gatt->ag_dmaseg);
free(isc->gatt, M_AGP);
}
if (isc->gtt_map != NULL)
vga_pci_bar_unmap(isc->gtt_map);
if (isc->map != NULL)
vga_pci_bar_unmap(isc->map);
}
int
agp_i810_activate(struct device *arg, int act)
{
struct agp_i810_softc *isc = (struct agp_i810_softc *)arg;
bus_space_tag_t bst = isc->map->bst;
bus_space_handle_t bsh = isc->map->bsh;
bus_size_t offset;
if (isc->chiptype == CHIP_I915 ||
isc->chiptype == CHIP_G33 ||
isc->chiptype == CHIP_PINEVIEW) {
bst = isc->gtt_map->bst;
bsh = isc->gtt_map->bsh;
}
switch(isc->chiptype) {
case CHIP_I915:
case CHIP_G33:
case CHIP_PINEVIEW:
offset = 0;
break;
case CHIP_I965:
offset = AGP_I965_GTT;
break;
case CHIP_G4X:
case CHIP_IRONLAKE:
case CHIP_SANDYBRIDGE:
case CHIP_IVYBRIDGE:
offset = AGP_G4X_GTT;
break;
default:
offset = AGP_I810_GTT;
break;
}
/*
* Anything kept in agp over a suspend/resume cycle (and thus by X
* over a vt switch cycle) is undefined upon resume.
*/
switch (act) {
case DVACT_RESUME:
agp_i810_configure(isc);
break;
}
return (0);
}
void
agp_i810_configure(struct agp_i810_softc *isc)
{
agp_flush_cache();
/* Install the GATT. */
WRITE4(AGP_I810_PGTBL_CTL, isc->gatt->ag_physical | 1);
/*
* First time around, we initialise all GTT entries to point
* to a scribble page. For suspend/resume, we hope the
* contents will be preserved by the BIOS. What about
* hibernate?
*/
if (isc->agpdev == NULL) {
bus_addr_t tmp = isc->isc_apaddr;
if (isc->chiptype == CHIP_I810)
tmp += isc->dcache_size;
else
tmp += isc->stolen << AGP_PAGE_SHIFT;
for (; tmp < (isc->isc_apaddr + isc->isc_apsize);
tmp += AGP_PAGE_SIZE)
agp_i810_unbind_page(isc, tmp);
}
/*
* Make sure the chipset can see everything.
*/
agp_flush_cache();
}
#if 0
int
agp_i810_detach(struct agp_softc *sc)
{
int error;
struct agp_i810_softc *isc = sc->sc_chipc;
error = agp_generic_detach(sc);
if (error)
return (error);
/* Clear the GATT base. */
if (sc->chiptype == CHIP_I810) {
WRITE4(AGP_I810_PGTBL_CTL, 0);
} else {
unsigned int pgtblctl;
pgtblctl = READ4(AGP_I810_PGTBL_CTL);
pgtblctl &= ~1;
WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
}
if (sc->chiptype == CHIP_I810) {
bus_dmamem_unmap(pa->pa_dmat, isc->gatt->ag_virtual,
gatt->ag_size);
agp_free_dmamem(sc->sc_dmat, gatt->ag_size, gatt->ag_dmamap,
&gatt->ag_dmaseg);
}
free(sc->gatt, M_AGP);
return (0);
}
#endif
void
agp_i810_bind_page(void *sc, bus_addr_t offset, paddr_t physical, int flags)
{
struct agp_i810_softc *isc = sc;
/*
* COHERENT mappings mean set the snoop bit. this should never be
* accessed by the gpu through the gtt.
*/
switch (isc->chiptype) {
case CHIP_SANDYBRIDGE:
case CHIP_IVYBRIDGE:
if (flags & BUS_DMA_GTT_NOCACHE)
physical |= GEN6_PTE_UNCACHED;
if (flags & BUS_DMA_GTT_CACHE_LLC)
physical |= GEN6_PTE_CACHE_LLC;
if (flags & BUS_DMA_GTT_CACHE_LLC_MLC)
physical |= GEN6_PTE_CACHE_LLC_MLC;
break;
default:
if (flags & BUS_DMA_COHERENT)
physical |= INTEL_COHERENT;
break;
}
intagp_write_gtt(isc, offset - isc->isc_apaddr, physical);
}
void
agp_i810_unbind_page(void *sc, bus_size_t offset)
{
struct agp_i810_softc *isc = sc;
intagp_write_gtt(isc, offset - isc->isc_apaddr,
isc->scrib_dmamap->dm_segs[0].ds_addr);
}
/*
* Writing via memory mapped registers already flushes all TLBs.
*/
void
agp_i810_flush_tlb(void *sc)
{
}
int
agp_i810_enable(void *sc, u_int32_t mode)
{
return (0);
}
struct agp_memory *
agp_i810_alloc_memory(void *softc, int type, vsize_t size)
{
struct agp_i810_softc *isc = softc;
struct agp_softc *sc = isc->agpdev;
struct agp_memory *mem;
int error;
if ((size & (AGP_PAGE_SIZE - 1)) != 0)
return (NULL);
if (sc->sc_allocated + size > sc->sc_maxmem)
return (NULL);
if (type == 1) {
/*
* Mapping local DRAM into GATT.
*/
if (isc->chiptype != CHIP_I810 || size != isc->dcache_size)
return (NULL);
} else if (type == 2) {
/*
* Bogus mapping of 1 or 4 pages for the hardware cursor.
*/
if (size != AGP_PAGE_SIZE && size != 4 * AGP_PAGE_SIZE) {
#ifdef DEBUG
printf("agp: trying to map %lu for hw cursor\n", size);
#endif
return (NULL);
}
}
mem = malloc(sizeof *mem, M_AGP, M_WAITOK | M_ZERO);
mem->am_id = sc->sc_nextid++;
mem->am_size = size;
mem->am_type = type;
if (type == 2) {
/*
* Allocate and wire down the pages now so that we can
* get their physical address.
*/
if ((mem->am_dmaseg = malloc(sizeof (*mem->am_dmaseg), M_AGP,
M_WAITOK | M_CANFAIL)) == NULL) {
free(mem, M_AGP);
return (NULL);
}
if ((error = agp_alloc_dmamem(sc->sc_dmat, size,
&mem->am_dmamap, &mem->am_physical, mem->am_dmaseg)) != 0) {
free(mem->am_dmaseg, M_AGP);
free(mem, M_AGP);
printf("agp: agp_alloc_dmamem(%d)\n", error);
return (NULL);
}
} else if (type != 1) {
if ((error = bus_dmamap_create(sc->sc_dmat, size,
size / PAGE_SIZE + 1, size, 0, BUS_DMA_NOWAIT,
&mem->am_dmamap)) != 0) {
free(mem, M_AGP);
printf("agp: bus_dmamap_create(%d)\n", error);
return (NULL);
}
}
TAILQ_INSERT_TAIL(&sc->sc_memory, mem, am_link);
sc->sc_allocated += size;
return (mem);
}
int
agp_i810_free_memory(void *softc, struct agp_memory *mem)
{
struct agp_i810_softc *isc = softc;
struct agp_softc *sc = isc->agpdev;
if (mem->am_is_bound)
return (EBUSY);
if (mem->am_type == 2) {
agp_free_dmamem(sc->sc_dmat, mem->am_size, mem->am_dmamap,
mem->am_dmaseg);
free(mem->am_dmaseg, M_AGP);
} else if (mem->am_type != 1) {
bus_dmamap_destroy(sc->sc_dmat, mem->am_dmamap);
}
sc->sc_allocated -= mem->am_size;
TAILQ_REMOVE(&sc->sc_memory, mem, am_link);
free(mem, M_AGP);
return (0);
}
int
agp_i810_bind_memory(void *sc, struct agp_memory *mem, bus_size_t offset)
{
struct agp_i810_softc *isc = sc;
u_int32_t regval, i;
if (mem->am_is_bound != 0)
return (EINVAL);
if (isc->chiptype != CHIP_I810 && (offset >> AGP_PAGE_SHIFT) <
isc->stolen) {
#ifdef DEBUG
printf("agp: trying to bind into stolen memory\n");
#endif
return (EINVAL);
}
/*
* XXX evil hack: the PGTBL_CTL appearently gets overwritten by the
* X server for mysterious reasons which leads to crashes if we write
* to the GTT through the MMIO window.
* Until the issue is solved, simply restore it.
*/
regval = READ4(AGP_I810_PGTBL_CTL);
if (regval != (isc->gatt->ag_physical | 1)) {
printf("agp_i810_bind_memory: PGTBL_CTL is 0x%x - fixing\n",
regval);
WRITE4(AGP_I810_PGTBL_CTL, isc->gatt->ag_physical |
INTEL_ENABLED);
}
if (mem->am_type == 2) {
for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
agp_i810_bind_page(isc, isc->isc_apaddr + offset + i,
mem->am_physical + i, 0);
mem->am_offset = offset;
mem->am_is_bound = 1;
return (0);
}
if (mem->am_type != 1)
return (agp_generic_bind_memory(isc->agpdev, mem, offset));
if (isc->chiptype != CHIP_I810)
return (EINVAL);
for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
intagp_write_gtt(isc, i, i | INTEL_ENABLED | INTEL_LOCAL);
mem->am_is_bound = 1;
return (0);
}
int
agp_i810_unbind_memory(void *sc, struct agp_memory *mem)
{
struct agp_i810_softc *isc = sc;
u_int32_t i;
if (mem->am_is_bound == 0)
return (EINVAL);
if (mem->am_type == 2) {
for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
agp_i810_unbind_page(isc, isc->isc_apaddr +
mem->am_offset + i);
mem->am_offset = 0;
mem->am_is_bound = 0;
return (0);
}
if (mem->am_type != 1)
return (agp_generic_unbind_memory(isc->agpdev, mem));
if (isc->chiptype != CHIP_I810)
return (EINVAL);
for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
intagp_write_gtt(isc, i, 0);
mem->am_is_bound = 0;
return (0);
}
void
intagp_write_gtt(struct agp_i810_softc *isc, bus_size_t off, paddr_t v)
{
u_int32_t pte = 0;
bus_size_t baseoff, wroff;
if (isc->chiptype != CHIP_I810 &&
(off >> AGP_PAGE_SHIFT) < isc->stolen) {
printf("intagp: binding into stolen memory! (0x%lx)\n",
(off >> AGP_PAGE_SHIFT));
}
if (v != 0) {
pte = v | INTEL_ENABLED;
/* 965+ can do 36-bit addressing, add in the extra bits */
switch (isc->chiptype) {
case CHIP_I965:
case CHIP_G4X:
case CHIP_PINEVIEW:
case CHIP_G33:
case CHIP_IRONLAKE:
pte |= (v & 0x0000000f00000000ULL) >> 28;
break;
/* gen6+ can do 40 bit addressing */
case CHIP_SANDYBRIDGE:
case CHIP_IVYBRIDGE:
pte |= (v & 0x000000ff00000000ULL) >> 28;
break;
}
}
wroff = (off >> AGP_PAGE_SHIFT) * 4;
switch(isc->chiptype) {
case CHIP_I915:
/* FALLTHROUGH */
case CHIP_G33:
case CHIP_PINEVIEW:
bus_space_write_4(isc->gtt_map->bst, isc->gtt_map->bsh,
wroff, pte);
return;
case CHIP_I965:
baseoff = AGP_I965_GTT;
break;
case CHIP_G4X:
case CHIP_IRONLAKE:
case CHIP_SANDYBRIDGE:
case CHIP_IVYBRIDGE:
baseoff = AGP_G4X_GTT;
break;
default:
baseoff = AGP_I810_GTT;
break;
}
bus_space_write_4(isc->map->bst, isc->map->bsh, baseoff + wroff, pte);
}
|