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
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
|
/* $Id: pcmcia_pcic.c,v 1.10 1996/11/29 22:55:06 niklas Exp $ */
/*
* Copyright (c) 1995, 1996 John T. Kohl
* 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.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR `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 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.
*
*/
/*
* Device Driver for Intel 82365 based pcmcia slots
*
* Copyright (c) 1994 Stefan Grefen. This software may be used, modified,
* copied, distributed, and sold, in both source and binary form provided that
* the above copyright and these terms are retained. Under no circumstances is
* the author responsible for the proper functioning of this software, nor does
* the author assume any responsibility for damages incurred with its use.
*
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/mbuf.h>
#include <sys/device.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <machine/bus.h>
#include <dev/isa/isavar.h>
#include <dev/ic/i82365reg.h>
#include <dev/pcmcia/pcmciavar.h>
#include <dev/pcmcia/pcmciareg.h>
#ifdef IBM_WD
#define PCIC_DEBUG 0xf
#endif
#if PCIC_DEBUG
#define PCDMEM 0x01
#define PCDIO 0x02
#define PCDINTR 0x04
#define PCDSERV 0x08
#define PCDRW 0x10
#define PCDCONF 0x20
int pcic_debug = PCIC_DEBUG;
#define PDEBUG(a) (pcic_debug & (a))
#else
#define PDEBUG(a) (0)
#endif
/*
* pcic_softc: per line info and status
*/
#define MAX_IOSECTION 2
#define MAX_MEMSECTION 5
struct slot {
int status;
#define SLOT_EMPTY 0x01
#define SLOT_PROBING 0x02
#define SLOT_INUSE 0x04
u_short io_addr[MAX_IOSECTION], io_len[MAX_IOSECTION];
u_short io_used[MAX_IOSECTION];
caddr_t mem_caddr[MAX_MEMSECTION];
u_int mem_haddr[MAX_MEMSECTION];
u_int mem_len[MAX_MEMSECTION], mem_used[MAX_MEMSECTION];
u_short region_flag;
u_short ioctl_flag;
u_short irq;
u_short pow;
u_short irqt;
u_short reg_off;/* 2 chips share an address */
void (*handler)(struct slot *, void *);
void * handle_arg;
struct pcmcia_link *link;
struct pcic_softc *chip;
};
struct pcic_softc {
struct device sc_dev;
bus_space_tag_t sc_iot;
bus_space_tag_t sc_memt;
struct pcmcia_adapter sc_adapter;
void *sc_ih;
int sc_polltimo;
int sc_pcic_irq;
bus_space_handle_t sc_ioh;
bus_space_handle_t sc_memh;
u_short pcic_base; /* base port for each board */
u_char chip_inf;
struct slot slot[4]; /* treat up to 4 as on the same pcic */
};
#define pcic_parent(sc) ((struct pcicmaster_softc *)(sc)->sc_dev.dv_parent)
int pcic_map_io __P((struct pcmcia_link *, u_int, u_int, int));
int pcic_map_mem __P((struct pcmcia_link *, bus_space_tag_t, caddr_t,
u_int, u_int, int));
int pcic_map_intr __P((struct pcmcia_link *, int, int));
int pcic_service __P((struct pcmcia_link *, int, void *, int));
static struct pcmcia_funcs pcic_funcs = {
pcic_map_io,
pcic_map_mem,
pcic_map_intr,
pcic_service
};
int pcic_probe __P((struct device *, void *, void *));
void pcic_attach __P((struct device *, struct device *, void *));
int pcic_print __P((void *, const char *));
int pcicmaster_probe __P((struct device *, void *, void *));
void pcicmaster_attach __P((struct device *, struct device *, void *));
int pcicmaster_print __P((void *, const char *));
int pcic_intr __P((void *));
extern struct pcmciabus_link pcmcia_isa_link;
struct cfattach pcic_ca = {
sizeof(struct pcic_softc), pcic_probe, pcic_attach,
};
struct cfdriver pcic_cd = {
NULL, "pcic", DV_DULL
};
struct pcicmaster_softc {
struct device sc_dev;
isa_chipset_tag_t sc_ic;
bus_space_tag_t sc_iot;
bus_space_tag_t sc_memt;
bus_space_handle_t sc_ioh;
struct pcic_softc *sc_ctlrs[2];
char sc_slavestate[2];
#define SLAVE_NOTPRESENT 0
#define SLAVE_FOUND 1
#define SLAVE_CONFIGURED 2
};
struct cfattach pcicmaster_ca = {
sizeof(struct pcicmaster_softc), pcicmaster_probe, pcicmaster_attach,
};
struct cfdriver pcicmaster_cd = {
NULL, "pcicmaster", DV_DULL, 1
};
struct pcic_attach_args {
int pia_ctlr; /* pcic ctlr number */
isa_chipset_tag_t pia_ic; /* isa chipset tag */
bus_space_tag_t pia_iot; /* bus chipset tag */
bus_space_tag_t pia_memt; /* bus chipset tag */
bus_space_handle_t pia_ioh; /* base i/o address */
int pia_iosize; /* span of ports used */
int pia_irq; /* interrupt request */
int pia_drq; /* DMA request */
int pia_maddr; /* physical i/o mem addr */
u_int pia_msize; /* size of i/o memory */
};
static __inline u_char pcic_rd __P((struct slot *, int));
static __inline void pcic_wr __P((struct slot *, int, int));
static __inline int pcic_wait __P((struct slot *, int));
static __inline u_char
pcic_rd(slot, reg)
struct slot *slot;
int reg;
{
u_char res;
bus_space_tag_t iot = slot->chip->sc_iot;
bus_space_handle_t ioh = slot->chip->sc_ioh;
if (PDEBUG(PCDRW))
printf("pcic_rd(%x [%x %x]) = ", reg, slot->reg_off, ioh);
bus_space_write_1(iot, ioh, 0, slot->reg_off + reg);
delay(1);
res = bus_space_read_1(iot, ioh, 1);
if (PDEBUG(PCDRW))
printf("%x\n", res);
return res;
}
static __inline void
pcic_wr(slot, reg, val)
struct slot *slot;
int reg, val;
{
bus_space_tag_t iot = slot->chip->sc_iot;
bus_space_handle_t ioh = slot->chip->sc_ioh;
bus_space_write_1(iot, ioh, 0, slot->reg_off + reg);
delay(1);
bus_space_write_1(iot, ioh, 1, val);
if (PDEBUG(PCDRW)) {
int res;
delay(1);
bus_space_write_1(iot, ioh, 0, slot->reg_off + reg);
delay(1);
res = bus_space_read_1(iot, ioh, 1);
printf("pcic_wr(%x %x) = %x\n", reg, val, res);
}
}
static __inline int
pcic_wait(slot, i)
struct slot *slot;
int i;
{
while (i-- && ((pcic_rd(slot, PCIC_STATUS) & PCIC_READY) == 0))
delay(500);
return i;
}
int
pcic_probe(parent, self, aux)
struct device *parent;
void *self;
void *aux;
{
struct pcic_softc *pcic = self;
struct pcicmaster_softc *pcicm = (struct pcicmaster_softc *) parent;
struct pcic_attach_args *pia = aux;
bus_space_handle_t memh;
u_int chip_inf = 0, ochip_inf = 0;
int first = 1;
int i, j, maxslot;
bzero(pcic->slot, sizeof(pcic->slot));
if (PDEBUG(PCDCONF)) {
printf("pcic_probe controller %d unit %d\n", pia->pia_ctlr,
pcic->sc_dev.dv_unit);
delay(2000000);
}
if (pcicm->sc_slavestate[pia->pia_ctlr] != SLAVE_FOUND)
return 0;
if (pcic->sc_dev.dv_cfdata->cf_loc[1] == -1 ||
pcic->sc_dev.dv_cfdata->cf_loc[2] == 0)
return 0;
/*
* select register offsets based on which controller we are.
* 2 pcic controllers (w/ 2 slots each) possible at each
* IO port location, for a total of 8 possible PCMCIA slots.
*
* for VLSI controllers, we probe up to 4 slots for the same chip type,
* and handle them on one controller. This is slightly
* cheating (two separate pcic's are required for 4 slots, according
* to the i82365 spec).
*
* For other controllers, we only take up to 2 slots.
*/
pcic->sc_ioh = pia->pia_ioh;
pcic->sc_iot = pia->pia_iot;
pcic->sc_adapter.nslots = 0;
maxslot = 2;
for (i = j = 0; i < maxslot; i++) {
pcic->slot[j].reg_off = 0x80 * pia->pia_ctlr + 0x40 * i;
pcic->slot[j].chip = pcic;
chip_inf = pcic_rd(&pcic->slot[j], PCIC_ID_REV);
if (PDEBUG(PCDCONF)) {
printf("pcic_probe read info %x\n", chip_inf);
delay(2000000);
}
if (!first && ochip_inf != chip_inf)
continue; /* don't attach, it's different */
ochip_inf = chip_inf;
switch (chip_inf) {
case PCIC_INTEL0:
pcic->chip_inf = PCMICA_CHIP_82365_0;
goto ok;
case PCIC_INTEL1:
pcic->chip_inf = PCMICA_CHIP_82365_1;
goto ok;
case PCIC_IBM1:
pcic->chip_inf = PCMICA_CHIP_IBM_1;
goto ok;
case PCIC_146FC6:
pcic->chip_inf = PCMICA_CHIP_146FC6;
maxslot = 4;
goto ok;
case PCIC_146FC7:
pcic->chip_inf = PCMICA_CHIP_146FC7;
maxslot = 4;
goto ok;
case PCIC_IBM2:
pcic->chip_inf = PCMICA_CHIP_IBM_2;
ok:
if (first) {
pcic->sc_adapter.adapter_softc = (void *)pcic;
pcic->sc_adapter.chip_link = &pcic_funcs;
pcic->sc_adapter.bus_link = &pcmcia_isa_link;
pcicm->sc_ctlrs[pia->pia_ctlr] = pcic;
pcicm->sc_slavestate[pia->pia_ctlr] = SLAVE_CONFIGURED;
first = 0;
}
pcic->sc_adapter.nslots++;
j++;
default:
if (PDEBUG(PCDCONF)) {
printf("found ID %x at pcic%d position\n",
chip_inf & 0xff, pcic->sc_dev.dv_unit);
}
continue;
}
}
if (pcic->sc_adapter.nslots != 0) {
pcic->sc_memh = memh;
return 1;
}
if (PDEBUG(PCDCONF)) {
printf("pcic_probe failed\n");
delay(2000000);
}
bus_space_unmap(pia->pia_memt, memh, pia->pia_msize);
return 0;
}
int
pcic_print(aux, name)
void *aux;
const char *name;
{
if (name != NULL)
printf("%s: pcmciabus ", name);
return UNCONF;
}
void
pcic_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct pcic_softc *pcic = (void *) self;
struct pcic_attach_args *pia = aux;
struct pcmciabus_attach_args pba;
struct slot *slot;
int i;
static char *pcic_names[] = {
"Intel 82365sl Rev. 0",
"Intel 82365sl Rev. 1",
"IBM 82365sl clone Rev. 1",
"IBM 82365sl clone Rev. 2",
"VL82146 (82365sl clone) Rev. 6",
"VL82146 (82365sl clone) Rev. 7" };
if (PDEBUG(PCDCONF)) {
printf("pcic_attach found\n");
delay(2000000);
}
pia->pia_irq = self->dv_cfdata->cf_loc[0];
pia->pia_maddr = self->dv_cfdata->cf_loc[1];
pia->pia_msize = self->dv_cfdata->cf_loc[2];
printf(": %s slots %d-%d iomem %x-%x",
pcic_names[pcic->chip_inf - PCMICA_CHIP_82365_0],
pcic->sc_dev.dv_unit * 2,
pcic->sc_dev.dv_unit * 2 + pcic->sc_adapter.nslots - 1,
pia->pia_maddr, pia->pia_maddr + pia->pia_msize - 1);
if (pia->pia_irq != IRQUNK)
printf(" irq %d\n", pia->pia_irq);
else
printf("\n");
if (PDEBUG(PCDCONF))
delay(2000000);
#ifdef PCMCIA_ISA_DEBUG
printf("pcic %p slots %p,%p\nisaaddr %p ports %x size %d irq %d drq %d maddr %x msize %x\n",
pcic, &pcic->slot[0], &pcic->slot[1],
pia, pia->pia_ioh, pia->pia_iosize,
pia->pia_irq, pia->pia_drq, pia->pia_maddr, pia->pia_msize);
if (PDEBUG(PCDCONF))
delay(2000000);
#endif
/* enable interrupts on events */
if (pia->pia_irq != IRQUNK)
pcic->sc_pcic_irq = pia->pia_irq;
else
pcic->sc_pcic_irq = 0;
for (i = 0; i < pcic->sc_adapter.nslots; i++) {
slot = &pcic->slot[i];
/*
* Arrange for card status change interrupts
* to be steered to specified IRQ.
* Treat all cards as I/O cards for the moment so we get
* sensible card change interrupt codes (besides, we don't
* support memory cards :)
*/
pcic_wr(slot, PCIC_STAT_INT,
(pcic->sc_pcic_irq << 4) |
PCIC_CDTCH | PCIC_IOCARD);
slot->irq = pcic_rd(slot, PCIC_INT_GEN) & ~PCIC_INTR_ENA;
pcic_wr(slot, PCIC_INT_GEN, slot->irq);
(void) pcic_rd(slot, PCIC_STAT_CHG);
}
if (pia->pia_irq == IRQUNK) {
pcic->sc_polltimo = hz/2;
timeout((void (*)(void *))pcic_intr, pcic, pcic->sc_polltimo);
} else {
pcic->sc_ih = isa_intr_establish(pia->pia_ic, pia->pia_irq,
IST_EDGE, IPL_PCMCIA, pcic_intr, pcic, pcic->sc_dev.dv_xname);
pcic->sc_polltimo = 0;
}
/*
* Probe the pcmciabus at this controller.
*/
pba.pba_iot = pia->pia_iot;
pba.pba_memt = pia->pia_memt;
pba.pba_maddr = pia->pia_maddr;
pba.pba_msize = pia->pia_msize;
pba.pba_aux = &pcic->sc_adapter;
#ifdef PCMCIA_DEBUG
printf("config_found(%p, %p, %p)\n",
self, &pba, pcic_print);
#endif
config_found(self, (void *)&pba, pcic_print);
}
int
pcic_intr(arg)
void *arg;
{
struct pcic_softc *pcic = arg;
u_char statchg, intgen;
register int i;
#ifdef PCMCIA_PCIC_DEBUG
if (pcic->sc_polltimo == 0)
printf("%s: interrupt:", pcic->sc_dev.dv_xname);
#endif
for (i = 0; i < pcic->sc_adapter.nslots; i++) {
struct pcmcia_link *link = pcic->slot[i].link;
statchg = pcic_rd(&pcic->slot[i], PCIC_STAT_CHG);
if (statchg == 0)
continue;
intgen = pcic_rd(&pcic->slot[i], PCIC_INT_GEN);
#ifdef PCMCIA_PCIC_DEBUG
if (intgen & PCIC_IOCARD) {
printf("%s: slot %d iocard status %s%s\n",
pcic->sc_dev.dv_xname, i,
statchg & PCIC_STCH ? "statchange " : "",
statchg & PCIC_CDTCH ? "cardchange" : "");
} else {
printf("%s: slot %d memcard status %x\n",
pcic->sc_dev.dv_xname, i, statchg);
}
#endif
if ((statchg & PCIC_CDTCH) &&
(link->flags & PCMCIA_SLOT_OPEN) == 0) {
#if 0
if (pcic->slot[i].status & SLOT_INUSE) {
pcmcia_unconfigure(link);
} else {
if (link) {
link->fordriver = NULL;
pcmcia_probe_bus(link, 0, link->slot,
NULL);
}
}
#endif
}
if (link && (link->flags & PCMCIA_SLOT_OPEN)) {
link->flags |= PCMCIA_SLOT_EVENT;
selwakeup(&link->pcmcialink_sel);
}
if (pcic->slot[i].handler == NULL)
continue;
(*pcic->slot[i].handler)(&pcic->slot[i],
pcic->slot[i].handle_arg);
}
if (pcic->sc_polltimo)
timeout((void (*)(void *))pcic_intr, pcic, pcic->sc_polltimo);
return 1;
}
int
pcic_map_io(link, start, len, flags)
struct pcmcia_link *link;
u_int start, len;
int flags;
{
struct pcic_softc *sc = link->adapter->adapter_softc;
struct slot *slot;
if (link->slot >= sc->sc_adapter.nslots)
return ENXIO;
slot = &sc->slot[link->slot];
len--;
if (PDEBUG(PCDIO)) {
printf("pcic_map_io %x %x %x\n", start, len, flags);
}
if (!(flags & PCMCIA_UNMAP)) {
u_int stop;
int window;
int winid;
int ioflags;
if (flags & PCMCIA_LAST_WIN) {
window = MAX_IOSECTION - 1;
} else if (flags & PCMCIA_FIRST_WIN) {
window = 0;
} else if (flags & PCMCIA_ANY_WIN) {
for (window = 0; window < MAX_IOSECTION; window++) {
if (slot->io_used[window] == 0)
break;
if (window >= MAX_IOSECTION)
return EBUSY;
}
} else {
window = flags & 0xf;
if (window >= MAX_IOSECTION)
return EINVAL;
}
slot->status |= SLOT_INUSE;
slot->io_used[window] = 1;
winid = window * 0x4 + 0x08;
stop = start + len;
pcic_wr(slot, winid | PCIC_START | PCIC_ADDR_LOW,
(u_long) start & 0xff);
pcic_wr(slot, winid | PCIC_START | PCIC_ADDR_HIGH,
((u_long) start >> 8) & 0xff);
pcic_wr(slot, winid | PCIC_END | PCIC_ADDR_LOW,
stop & 0xff);
pcic_wr(slot, winid | PCIC_END | PCIC_ADDR_HIGH,
(stop >> 8) & 0xff);
flags &= (PCMCIA_MAP_8 | PCMCIA_MAP_16);
switch (flags) {
case PCMCIA_MAP_8:
ioflags = PCIC_IO0_0WS;
break;
case PCMCIA_MAP_16:
ioflags = PCIC_IO0_16BIT;
break;
default:
ioflags = PCIC_IO0_CS16;
break;
}
if (window == 1) {
ioflags <<= 4;
slot->ioctl_flag &= ~(3 << 4);
}
else {
slot->ioctl_flag &= ~3;
}
delay(1000);
pcic_wr(slot, PCIC_IOCTL, slot->ioctl_flag |= ioflags);
pcic_wr(slot, PCIC_ADDRWINE,
slot->region_flag |= (0x40 << window));
slot->io_addr[window] = start;
slot->io_len[window] = len;
delay(1000);
return 0;
} else {
int window;
int winid;
if (flags & PCMCIA_LAST_WIN) {
window = MAX_IOSECTION - 1;
} else if (flags & PCMCIA_FIRST_WIN) {
window = 0;
} else if (flags & PCMCIA_ANY_WIN) {
for (window = 0; window < MAX_IOSECTION; window++) {
if (slot->io_addr[window] == start)
if (len == -1 ||
slot->io_len[window] == len)
break;
}
if (window >= MAX_IOSECTION)
return EINVAL;
} else {
window = flags & 0xf;
if (window >= MAX_IOSECTION)
return EINVAL;
}
slot->status &= ~SLOT_INUSE;
winid = window * 0x4 + 0x08;
pcic_wr(slot, PCIC_ADDRWINE,
slot->region_flag &= ~(0x40 << window));
delay(1000);
pcic_wr(slot, PCIC_IOCTL,
slot->ioctl_flag &= ~(0xf << window));
pcic_wr(slot, winid | PCIC_START | PCIC_ADDR_LOW, 0);
pcic_wr(slot, winid | PCIC_START | PCIC_ADDR_HIGH, 0);
pcic_wr(slot, winid | PCIC_END | PCIC_ADDR_LOW, 0);
pcic_wr(slot, winid | PCIC_END | PCIC_ADDR_HIGH, 0);
slot->io_addr[window] = start;
slot->io_len[window] = len;
return 0;
}
}
int
pcic_map_mem(link, memt, haddr, start, len, flags)
struct pcmcia_link *link;
bus_space_tag_t memt;
caddr_t haddr;
u_int start, len;
int flags;
{
vm_offset_t physaddr;
struct pcic_softc *sc = link->adapter->adapter_softc;
struct slot *slot;
if (link->slot >= sc->sc_adapter.nslots)
return ENXIO;
slot = &sc->slot[link->slot];
if (flags & PCMCIA_PHYSICAL_ADDR)
physaddr = (vm_offset_t) haddr;
else
physaddr = pmap_extract(pmap_kernel(), (vm_offset_t) haddr);
if (PDEBUG(PCDMEM))
printf("pcic_map_mem %p %lx %x %x %x\n", haddr, physaddr,
start, len, flags);
(u_long) physaddr >>= 12;
start >>= 12;
len = (len - 1) >> 12;
if (!(flags & PCMCIA_UNMAP)) {
u_int offs;
u_int stop;
int window;
int winid;
if (flags & PCMCIA_LAST_WIN) {
window = MAX_MEMSECTION - 1;
} else if (flags & PCMCIA_FIRST_WIN) {
window = 0;
} else if (flags & PCMCIA_ANY_WIN) {
for (window = 0; window < MAX_MEMSECTION; window++) {
if (slot->mem_used[window] == 0)
break;
if (window >= MAX_MEMSECTION)
return EBUSY;
}
} else {
window = flags & 0xf;
if (window >= MAX_MEMSECTION)
return EINVAL;
}
slot->mem_used[window] = 1;
offs = (start - (u_long) physaddr) & 0x3fff;
if (PDEBUG(PCDMEM))
printf("mapmem 2:%x %lx %x\n", offs, physaddr + offs,
start);
stop = (u_long) physaddr + len;
winid = window * 0x8 + 0x10;
pcic_wr(slot, winid | PCIC_START | PCIC_ADDR_LOW,
(u_long) physaddr & 0xff);
pcic_wr(slot, winid | PCIC_START | PCIC_ADDR_HIGH,
(((u_long) physaddr >> 8) & 0x3f) |
/* PCIC_ZEROWS| */
((flags & PCMCIA_MAP_16) ? PCIC_DATA16 : 0));
pcic_wr(slot, winid | PCIC_END | PCIC_ADDR_LOW,
stop & 0xff);
pcic_wr(slot, winid | PCIC_END | PCIC_ADDR_HIGH,
PCIC_MW1 | ((stop >> 8) & 0x3f));
pcic_wr(slot, winid | PCIC_MOFF | PCIC_ADDR_LOW,
offs & 0xff);
pcic_wr(slot, winid | PCIC_MOFF | PCIC_ADDR_HIGH,
((offs >> 8) & 0x3f) |
((flags & PCMCIA_MAP_ATTR) ? PCIC_REG : 0));
delay(1000);
pcic_wr(slot, PCIC_ADDRWINE,
slot->region_flag |= ((1 << window) | PCIC_MEMCS16));
slot->mem_caddr[window] = (caddr_t) physaddr;
slot->mem_haddr[window] = start;
slot->mem_len[window] = len;
delay(1000);
return 0;
} else {
int window;
int winid;
if (flags & PCMCIA_LAST_WIN) {
window = MAX_MEMSECTION - 1;
} else if (flags & PCMCIA_FIRST_WIN) {
window = 0;
} else if (flags & PCMCIA_ANY_WIN) {
for (window = 0; window < MAX_MEMSECTION; window++) {
if ((slot->mem_caddr[window] ==
(caddr_t) physaddr) &&
((start == -1) ||
(slot->mem_haddr[window] == start)) &&
((len == -1) ||
(slot->mem_len[window] == len)))
break;
}
if (window >= MAX_MEMSECTION)
return EINVAL;
} else {
window = flags & 0xf;
if (window >= MAX_MEMSECTION)
return EINVAL;
}
winid = window * 0x8 + 0x10;
slot->region_flag &= (~(1 << window));
pcic_wr(slot, PCIC_ADDRWINE, slot->region_flag);
delay(1000);
pcic_wr(slot, winid | PCIC_START | PCIC_ADDR_LOW, 0);
pcic_wr(slot, winid | PCIC_START | PCIC_ADDR_HIGH, 0);
pcic_wr(slot, winid | PCIC_END | PCIC_ADDR_LOW, 0);
pcic_wr(slot, winid | PCIC_END | PCIC_ADDR_HIGH, 0);
pcic_wr(slot, winid | PCIC_MOFF | PCIC_ADDR_LOW, 0);
pcic_wr(slot, winid | PCIC_MOFF | PCIC_ADDR_HIGH, 0);
slot->mem_caddr[window] = 0;
slot->mem_haddr[window] = 0;
slot->mem_len[window] = 0;
slot->mem_used[window] = 0;
return 0;
}
}
int
pcic_map_intr(link, irq, flags)
struct pcmcia_link *link;
int irq, flags;
{
struct pcic_softc *sc = link->adapter->adapter_softc;
struct slot *slot;
if (link->slot >= sc->sc_adapter.nslots)
return ENXIO;
slot = &sc->slot[link->slot];
if (PDEBUG(PCDINTR))
printf("pcic_map_intr %x %x\n", irq, flags);
if (flags & PCMCIA_UNMAP) {
slot->irq &= ~(PCIC_INT_MASK|PCIC_INTR_ENA);
pcic_wr(slot, PCIC_INT_GEN, slot->irq);
}
else {
if (irq < 2 || irq > 15 || irq == 6 || irq == 8 || irq == 13)
return EINVAL;
if(irq==2)
irq=9;
slot->irq &= ~(PCIC_INTR_ENA|PCIC_INT_MASK);
slot->irq |= irq | PCIC_CARDRESET; /* reset is inverted */
pcic_wr(slot, PCIC_INT_GEN, slot->irq);
}
return 0;
}
int
pcic_service(link, opcode, arg, flags)
struct pcmcia_link *link;
int opcode;
void *arg;
int flags;
{
struct pcic_softc *sc = link->adapter->adapter_softc;
struct slot *slot;
if (link->slot >= sc->sc_adapter.nslots)
return ENXIO;
slot = &sc->slot[link->slot];
slot->link = link; /* save it for later :) */
switch (opcode) {
case PCMCIA_OP_STATUS:{
u_char cp;
int *iarg = arg;
if (PDEBUG(PCDSERV))
printf("pcic_service(status)\n");
cp = pcic_rd(slot, PCIC_STATUS);
if (PDEBUG(PCDSERV))
printf("status for slot %d %b\n",
link->slot, cp, PCIC_STATUSBITS);
*iarg = 0;
#define DO_STATUS(cp, val, map) ((cp & val) == val ? map : 0)
*iarg |= DO_STATUS(cp, PCIC_CD, PCMCIA_CARD_PRESENT);
*iarg |= DO_STATUS(cp, PCIC_BVD, PCMCIA_BATTERY);
*iarg |= DO_STATUS(cp, PCIC_MWP, PCMCIA_WRITE_PROT);
*iarg |= DO_STATUS(cp, PCIC_READY, PCMCIA_READY);
*iarg |= DO_STATUS(cp, PCIC_POW, PCMCIA_POWER);
*iarg |= DO_STATUS(cp, PCIC_VPPV, PCMCIA_POWER_PP);
return 0;
}
case PCMCIA_OP_WAIT:{
int iarg = (int) arg;
int i = iarg * 4;
if (PDEBUG(PCDSERV))
printf("pcic_service(wait)\n");
i = pcic_wait(slot, i);
if (PDEBUG(PCDSERV))
printf("op99 %b %d\n",
pcic_rd(slot, PCIC_STATUS),
PCIC_STATUSBITS, i);
if (i <= 0)
return EIO;
else
return 0;
}
case PCMCIA_OP_RESET:{
int force = ((int) arg) < 0;
int iarg = abs((int) arg);
int i = iarg * 4;
if (PDEBUG(PCDSERV))
printf("pcic_service(reset)\n");
if (flags)
slot->irq |= PCIC_IOCARD;
else
slot->irq &= ~PCIC_IOCARD; /* XXX? */
pcic_wr(slot, PCIC_POWER, slot->pow &= ~PCIC_DISRST);
slot->irq &= ~PCIC_CARDRESET;
pcic_wr(slot, PCIC_INT_GEN, slot->irq);
if (iarg == 0)
return 0;
delay(iarg);
pcic_wr(slot, PCIC_POWER, slot->pow |= PCIC_DISRST);
slot->irq |= PCIC_CARDRESET;
pcic_wr(slot, PCIC_INT_GEN, slot->irq);
delay(iarg);
i = pcic_wait(slot, i);
if (PDEBUG(PCDSERV))
printf("opreset %d %b %d\n", force,
pcic_rd(slot, PCIC_STATUS),
PCIC_STATUSBITS, i);
if (i <= 0)
return EIO;
else
return 0;
}
case PCMCIA_OP_POWER:{
int iarg = (int) arg;
if (PDEBUG(PCDSERV))
printf("pcic_service(power): ");
if (flags & PCMCIA_POWER_ON) {
int nv = (PCIC_DISRST|PCIC_OUTENA);
pcic_wr(slot, PCIC_INT_GEN,
slot->irq = PCIC_IOCARD);
if(flags & PCMCIA_POWER_3V)
nv |= PCIC_VCC3V;
if(flags & PCMCIA_POWER_5V)
nv |= PCIC_VCC5V;
if(flags & PCMCIA_POWER_AUTO)
nv |= PCIC_APSENA|
PCIC_VCC5V|PCIC_VCC3V;
slot->pow &= ~(PCIC_APSENA|PCIC_VCC5V|
PCIC_VCC3V|PCIC_VPP12V|
PCIC_VPP5V);
slot->pow |= nv;
pcic_wr(slot, PCIC_POWER, slot->pow);
#if 0
delay(iarg);
slot->pow |= PCIC_OUTENA;
pcic_wr(slot, PCIC_POWER, slot->pow);
#endif
delay(iarg);
if (PDEBUG(PCDSERV))
printf("on\n");
} else {
slot->pow &= ~(PCIC_APSENA|PCIC_VCC5V|
PCIC_VCC3V);
slot->pow &= ~(PCIC_DISRST|PCIC_OUTENA);
pcic_wr(slot,PCIC_POWER, slot->pow);
if (PDEBUG(PCDSERV))
printf("off\n");
}
return 0;
}
case PCMCIA_OP_GETREGS:{
struct pcic_regs *pi = arg;
int i;
if (PDEBUG(PCDSERV))
printf("pcic_service(getregs)\n");
pi->chip_vers = sc->chip_inf;
for (i = 0; i < pi->cnt; i++)
pi->reg[i].val =
pcic_rd(slot, pi->reg[i].addr);
return 0;
}
default:
if (PDEBUG(PCDSERV))
printf("pcic_service(%x)\n", opcode);
return EINVAL;
}
}
/*
* Handle I/O space mapping for children. Thin layer.
*/
int
pcicmaster_probe(parent, self, aux)
struct device *parent;
void *self;
void *aux;
{
struct pcicmaster_softc *pcicm = self;
struct isa_attach_args *ia = aux;
struct cfdata *cf = pcicm->sc_dev.dv_cfdata;
bus_space_tag_t iot;
bus_space_handle_t ioh;
u_int chip_inf = 0;
int i, j;
int rval = 0;
struct pcic_softc pcic; /* faked up for probing only */
if (PDEBUG(PCDCONF)) {
printf("pcicmaster_probe\n");
delay(2000000);
}
iot = ia->ia_iot;
if (bus_space_map(iot, ia->ia_iobase, PCIC_NPORTS, 0, &ioh))
return (0);
/*
* Probe the slots for each of the possible child controllers,
* and if any are there we return a positive indication.
*/
pcic.sc_ioh = ioh;
for (i = 0; i < 2; i++) {
bzero(pcic.slot, sizeof(pcic.slot));
pcic.slot[0].chip = &pcic;
pcic.slot[0].reg_off = i * 0x80;
chip_inf = pcic_rd(&pcic.slot[0], PCIC_ID_REV);
switch (chip_inf) {
case PCIC_INTEL0:
case PCIC_INTEL1:
case PCIC_IBM1:
case PCIC_146FC6:
case PCIC_146FC7:
case PCIC_IBM2:
if (PDEBUG(PCDCONF)) {
printf("pcicmaster_probe found, cf=%p\n", cf);
delay(2000000);
}
pcicm->sc_slavestate[i] = SLAVE_FOUND;
rval++;
break;
default:
pcicm->sc_slavestate[i] = SLAVE_NOTPRESENT;
if (PDEBUG(PCDCONF)) {
printf("found ID %x at slave %d\n",
chip_inf & 0xff, i);
}
break;
}
if (pcicm->sc_slavestate[i] != SLAVE_FOUND) {
/* reset mappings .... */
pcic_wr(&pcic.slot[0], PCIC_POWER,
pcic.slot[0].pow=PCIC_DISRST);
delay(1000);
for (j = PCIC_INT_GEN; j < 0x40; j++) {
pcic_wr(&pcic.slot[0], j, 0);
}
delay(10000);
}
}
if (rval) {
ia->ia_iosize = 2;
pcicm->sc_ic = ia->ia_ic;
pcicm->sc_iot = iot;
pcicm->sc_memt = ia->ia_memt;
pcicm->sc_ioh = ioh;
} else
bus_space_unmap(iot, ioh, PCIC_NPORTS);
return rval;
}
void
pcicmaster_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct pcicmaster_softc *pcicm = (void *)self;
struct isa_attach_args *ia = aux;
struct pcic_attach_args pia;
int i;
printf("\n");
if (PDEBUG(PCDCONF)) {
printf("pcicmaster_attach\n");
delay(2000000);
}
#ifdef PCMCIA_ISA_DEBUG
printf("pcicm %p isaaddr %p ports %x size %d irq %d drq %d maddr %x msize %x\n",
pcicm, ia, ia->ia_iobase, ia->ia_iosize,
ia->ia_irq, ia->ia_drq, ia->ia_maddr, ia->ia_msize);
if (PDEBUG(PCDCONF))
delay(2000000);
#endif
/* attach up to two PCICs at this I/O address */
for (i = 0; i < 2; i++) {
if (pcicm->sc_slavestate[i] == SLAVE_FOUND) {
pia.pia_ctlr = i;
/*
* share the I/O space and memory mapping space.
*/
pia.pia_ic = pcicm->sc_ic;
pia.pia_iot = pcicm->sc_iot;
pia.pia_memt = pcicm->sc_memt;
pia.pia_ioh = pcicm->sc_ioh;
pia.pia_iosize = ia->ia_iosize;
pia.pia_drq = ia->ia_drq;
#if 0
pia.pia_irq = ia->ia_irq;
pia.pia_irq = cf->cf_loc[0]; /* irq from master attach */
pia.pia_maddr = ia->ia_maddr + (ia->ia_msize / 2) * i;
pia.pia_msize = ia->ia_msize / 2;
#endif
config_found(self, &pia, pcicmaster_print);
}
}
}
int
pcicmaster_print(aux, name)
void *aux;
const char *name;
{
if (name != NULL)
printf("%s: master controller ", name);
return UNCONF;
}
|