Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

  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
/*	$NetBSD: pci_machdep.c,v 1.58 2019/05/04 08:30:06 tsutsui Exp $	*/

/*
 * Copyright (c) 1996 Leo Weppelman.  All rights reserved.
 * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
 * Copyright (c) 1994 Charles M. Hannum.  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. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by Charles M. Hannum.
 * 4. 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.
 */

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.58 2019/05/04 08:30:06 tsutsui Exp $");

#include "opt_mbtype.h"

#include <sys/types.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/device.h>
#include <sys/malloc.h>

#define _ATARI_BUS_DMA_PRIVATE
#include <sys/bus.h>

#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcidevs.h>

#include <uvm/uvm_extern.h>

#include <machine/cpu.h>
#include <machine/iomap.h>
#include <machine/mfp.h>

#include <atari/atari/device.h>
#include <atari/pci/pci_vga.h>

/*
 * Sizes of pci memory and I/O area.
 */
#define PCI_MEM_END     0x10000000      /* 256 MByte */
#define PCI_IO_END      0x10000000      /* 256 MByte */

/*
 * We preserve some space at the begin of the pci area for 32BIT_1M
 * devices and standard vga.
 */
#define PCI_MEM_START   0x00100000      /*   1 MByte */
#define PCI_IO_START    0x00004000      /*  16 kByte (some PCI cards allow only
					    I/O addresses up to 0xffff) */

/*
 * PCI memory and IO should be aligned acording to this masks
 */
#define PCI_MACHDEP_IO_ALIGN_MASK	0xffffff00
#define PCI_MACHDEP_MEM_ALIGN_MASK	0xfffff000

/*
 * Convert a PCI 'device' number to a slot number.
 */
#define	DEV2SLOT(dev)	(3 - dev)

/*
 * Struct to hold the memory and I/O datas of the pci devices
 */
struct pci_memreg {
	LIST_ENTRY(pci_memreg) link;
	int dev;
	pcitag_t tag;
	pcireg_t reg, address, mask;
	uint32_t size;
	uint32_t csr;
};

typedef LIST_HEAD(pci_memreg_head, pci_memreg) PCI_MEMREG;

/*
 * Entry points for PCI DMA.  Use only the 'standard' functions.
 */
int	_bus_dmamap_create(bus_dma_tag_t, bus_size_t, int, bus_size_t,
	    bus_size_t, int, bus_dmamap_t *);
struct atari_bus_dma_tag pci_bus_dma_tag = {
	0,
#if defined(_ATARIHW_)
	0x80000000, /* On the Hades, CPU memory starts here PCI-wise */
#else
	0,
#endif
	_bus_dmamap_create,
	_bus_dmamap_destroy,
	_bus_dmamap_load,
	_bus_dmamap_load_mbuf,
	_bus_dmamap_load_uio,
	_bus_dmamap_load_raw,
	_bus_dmamap_unload,
	_bus_dmamap_sync,
};

int	ataripcibusprint(void *, const char *);
int	pcibusmatch(device_t, cfdata_t, void *);
void	pcibusattach(device_t, device_t, void *);

static void enable_pci_devices(void);
static void insert_into_list(PCI_MEMREG *head, struct pci_memreg *elem);
static int overlap_pci_areas(struct pci_memreg *p,
    struct pci_memreg *self, u_int addr, u_int size, u_int what);

CFATTACH_DECL_NEW(pcib, 0,
    pcibusmatch, pcibusattach, NULL, NULL);

/*
 * We need some static storage to probe pci-busses for VGA cards during
 * early console init.
 */
static struct atari_bus_space	bs_storage[2];	/* 1 iot, 1 memt */

int
pcibusmatch(device_t parent, cfdata_t cf, void *aux)
{
	static int nmatched = 0;

	if (strcmp((char *)aux, "pcib"))
		return 0;	/* Wrong number... */

	if (atari_realconfig == 0)
		return 1;

	if ((machineid & (ATARI_HADES|ATARI_MILAN)) != 0) {
		/*
		 * Both Hades and Milan have only one pci bus
		 */
		if (nmatched)
			return 0;
		nmatched++;
		return 1;
	}
	return 0;
}

void
pcibusattach(device_t parent, device_t self, void *aux)
{
	struct pcibus_attach_args pba;

	pba.pba_pc      = NULL;
	pba.pba_bus     = 0;
	pba.pba_bridgetag = NULL;
	pba.pba_flags	= PCI_FLAGS_IO_OKAY | PCI_FLAGS_MEM_OKAY;
	pba.pba_dmat	= &pci_bus_dma_tag;
	pba.pba_iot     = leb_alloc_bus_space_tag(&bs_storage[0]);
	pba.pba_memt    = leb_alloc_bus_space_tag(&bs_storage[1]);
	if ((pba.pba_iot == NULL) || (pba.pba_memt == NULL)) {
		printf("leb_alloc_bus_space_tag failed!\n");
		return;
	}
	pba.pba_iot->base  = PCI_IO_PHYS;
	pba.pba_memt->base = PCI_MEM_PHYS;

	if (self == NULL) {
		/*
		 * Scan the bus for a VGA-card that we support. If we
		 * find one, try to initialize it to a 'standard' text
		 * mode (80x25).
		 */
		check_for_vga(pba.pba_iot, pba.pba_memt);
		return;
	}

	enable_pci_devices();

#if defined(_ATARIHW_)
	MFP2->mf_aer &= ~(0x27); /* PCI interrupts: HIGH -> LOW */
#endif

	printf("\n");

	config_found_ia(self, "pcibus", &pba, ataripcibusprint);
}

int
ataripcibusprint(void *aux, const char *name)
{

	if (name == NULL)
		return UNCONF;
	return QUIET;
}

void
pci_attach_hook(device_t parent, device_t self, struct pcibus_attach_args *pba)
{
}

/*
 * Initialize the PCI-bus. The Atari-BIOS does not do this, so....
 * We only disable all devices here. Memory and I/O enabling is done
 * later at pcibusattach.
 */
void
init_pci_bus(void)
{
	pci_chipset_tag_t	pc = NULL; /* XXX */
	pcitag_t		tag;
	pcireg_t		csr;
	int			device, maxndevs;
	uint32_t		id;

	tag   = 0;
	id    = 0;
	
	maxndevs = pci_bus_maxdevs(pc, 0);

	for (device = 0; device < maxndevs; device++) {

		tag = pci_make_tag(pc, 0, device, 0);
		id  = pci_conf_read(pc, tag, PCI_ID_REG);
		if (id == 0 || id == 0xffffffff)
			continue;

		csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
		csr &= ~(PCI_COMMAND_MEM_ENABLE|PCI_COMMAND_IO_ENABLE);
		csr &= ~PCI_COMMAND_MASTER_ENABLE;
		pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr);
	}
}

/*
 * insert a new element in an existing list that the ID's (size in struct
 * pci_memreg) are sorted.
 */
static void
insert_into_list(PCI_MEMREG *head, struct pci_memreg *elem)
{
	struct pci_memreg *p, *q;

	p = LIST_FIRST(head);
	q = NULL;

	for (; p != NULL && p->size < elem->size;
	    q = p, p = LIST_NEXT(p, link))
		;

	if (q == NULL) {
		LIST_INSERT_HEAD(head, elem, link);
	} else {
		LIST_INSERT_AFTER(q, elem, link);
	}
}

/*
 * Test if a new selected area overlaps with an already (probably preselected)
 * pci area.
 */
static int
overlap_pci_areas(struct pci_memreg *p, struct pci_memreg *self, u_int addr,
    u_int size, u_int what)
{
	struct pci_memreg *q;

	if (p == NULL)
		return 0;
    
	q = p;
	while (q != NULL) {
		if ((q != self) && (q->csr & what)) {
			if ((addr >= q->address) &&
			    (addr < (q->address + q->size))) {
#ifdef DEBUG_PCI_MACHDEP
				printf("\noverlap area dev %d reg 0x%02x "
				    "with dev %d reg 0x%02x",
				    self->dev, self->reg, q->dev, q->reg);
#endif
				return 1;
			}
			if ((q->address >= addr) &&
			    (q->address < (addr + size))) {
#ifdef DEBUG_PCI_MACHDEP
				printf("\noverlap area dev %d reg 0x%02x "
				    "with dev %d reg 0x%02x",
				    self->dev, self->reg, q->dev, q->reg);
#endif
				return 1;
			}
		}
		q = LIST_NEXT(q, link);
	}
	return 0;
}

/*
 * Enable memory and I/O on pci devices. Care about already enabled devices
 * (probabaly by the console driver).
 *
 * The idea behind the following code is:
 * We build a by sizes sorted list of the requirements of the different
 * pci devices. After that we choose the start addresses of that areas
 * in such a way that they are placed as closed as possible together.
 */
static void
enable_pci_devices(void)
{
	PCI_MEMREG memlist;
	PCI_MEMREG iolist;
	struct pci_memreg *p, *q;
	int dev, reg;
	uint32_t id, class;
	pcitag_t tag;
	pcireg_t csr, address, mask;
	pci_chipset_tag_t pc;
	int sizecnt, membase_1m;

	pc = 0;
	csr = 0;
	tag = 0;

	LIST_INIT(&memlist);
	LIST_INIT(&iolist);

	/*
	 * first step: go through all devices and gather memory and I/O
	 * sizes
	 */
	for (dev = 0; dev < pci_bus_maxdevs(pc,0); dev++) {

		tag = pci_make_tag(pc, 0, dev, 0);
		id  = pci_conf_read(pc, tag, PCI_ID_REG);
		if (id == 0 || id == 0xffffffff)
			continue;

		csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);

		/*
		 * special case: if a display card is found and memory is
		 * enabled preserve 128k at 0xa0000 as vga memory.
		 * XXX: if a display card is found without being enabled,
		 * leave it alone! You will usually only create conflicts
		 * by enabeling it.
		 */
		class = pci_conf_read(pc, tag, PCI_CLASS_REG);
		switch (PCI_CLASS(class)) {
		case PCI_CLASS_PREHISTORIC:
		case PCI_CLASS_DISPLAY:
			if (csr & (PCI_COMMAND_MEM_ENABLE |
			    PCI_COMMAND_MASTER_ENABLE)) {
				p = malloc(sizeof(struct pci_memreg),
				    M_TEMP, M_WAITOK);
				memset(p, 0, sizeof(struct pci_memreg));
				p->dev = dev;
				p->csr = csr;
				p->tag = tag;
				p->reg = 0;	/* there is no register
						   about this */
				p->size = 0x20000; /* 128kByte */
				p->mask = 0xfffe0000;
				p->address = 0xa0000;

				insert_into_list(&memlist, p);
			} else
				continue;
		}

		for (reg = PCI_MAPREG_START; reg < PCI_MAPREG_END; reg += 4) {
			address = pci_conf_read(pc, tag, reg);
			pci_conf_write(pc, tag, reg, 0xffffffff);
			mask    = pci_conf_read(pc, tag, reg);
			pci_conf_write(pc, tag, reg, address);
			if (mask == 0)
				continue; /* Register unused */

			p = malloc(sizeof(struct pci_memreg),
			    M_TEMP, M_WAITOK);
			memset(p, 0, sizeof(struct pci_memreg));
			p->dev = dev;
			p->csr = csr;
			p->tag = tag;
			p->reg = reg;
			p->mask = mask;
			p->address = 0;

			if ((mask & PCI_MAPREG_TYPE_IO) != 0) {
				p->size = PCI_MAPREG_IO_SIZE(mask);

				/*
				 * Align IO if necessary
				 */
				if (p->size < PCI_MAPREG_IO_SIZE(
				    PCI_MACHDEP_IO_ALIGN_MASK)) {
					p->mask = PCI_MACHDEP_IO_ALIGN_MASK;
					p->size = PCI_MAPREG_IO_SIZE(p->mask);
				}

				/*
				 * if I/O is already enabled
				 * (probably by the console driver)
				 * save the address in order to take care
				 * about it later.
				 */
				if ((csr & PCI_COMMAND_IO_ENABLE) != 0)
					p->address = address;

				insert_into_list(&iolist, p);
			} else {
				p->size = PCI_MAPREG_MEM_SIZE(mask);

				/*
				 * Align memory if necessary
				 */
				if (p->size < PCI_MAPREG_IO_SIZE(
				    PCI_MACHDEP_MEM_ALIGN_MASK)) {
					p->mask = PCI_MACHDEP_MEM_ALIGN_MASK;
					p->size = PCI_MAPREG_MEM_SIZE(p->mask);
				}

				/*
				 * if memory is already enabled
				 * (probably by the console driver)
				 * save the address in order to take care
				 * about it later.
				 */
				if ((csr & PCI_COMMAND_MEM_ENABLE) != 0)
					p->address = address;

				insert_into_list(&memlist, p);

				if (PCI_MAPREG_MEM_TYPE(mask) ==
				    PCI_MAPREG_MEM_TYPE_64BIT)
					reg++;
			}
		}

#if defined(_ATARIHW_)
		/*
		 * Both interrupt pin & line are set to the device (== slot)
		 * number. This makes sense on the atari Hades because the
		 * individual slots are hard-wired to a specific MFP-pin.
		 */
		csr  = (DEV2SLOT(dev) << PCI_INTERRUPT_PIN_SHIFT);
		csr |= (DEV2SLOT(dev) << PCI_INTERRUPT_LINE_SHIFT);
		pci_conf_write(pc, tag, PCI_INTERRUPT_REG, csr);
#else
		/*
		 * On the Milan, we accept the BIOS's choice.
		 */
		/*
		 * ..except the secondary IDE interrupt that
		 * the BIOS doesn't setup.
		 */
#define PIIX_PCIB_MBIRQ0	0x70
		if ((PCI_VENDOR(id) == PCI_VENDOR_INTEL) &&
		    (PCI_PRODUCT(id) == PCI_PRODUCT_INTEL_82371FB_ISA)) {
			/*
			 * Set Interrupt Routing for MBIRQ0 to IRQ15.
			 * Note Milan's ROM bootloader v1.2 and v1.4
			 * incorrectly set MBIRQ0 to IRQ14 (not 15)
			 * and unused MBIRQ1 to IRQ 15,
			 * so explicitly disable MBIRQ1.
			 */
			csr = pci_conf_read(pc, tag, PIIX_PCIB_MBIRQ0);
			csr &= ~0x0000ffff;
			/* MBIRQ1: disable, MBIRQ0: IRQ15 */
			csr |=  0x0000800f;
			pci_conf_write(pc, tag, PIIX_PCIB_MBIRQ0, csr);
#ifdef DEBUG_PCI_MACHDEP
			printf("\npcib0: enable and route MBIRQ0 to irq 15\n");
#endif
		}
#endif
	}

	/*
	 * second step: calculate the memory and I/O addresses beginning from
	 * PCI_MEM_START and PCI_IO_START. Care about already mapped areas.
	 *
	 * begin with memory list
	 */

	address = PCI_MEM_START;
	sizecnt = 0;
	membase_1m = 0;
	p = LIST_FIRST(&memlist);
	while (p != NULL) {
		if ((p->csr & PCI_COMMAND_MEM_ENABLE) == 0) {
			if (PCI_MAPREG_MEM_TYPE(p->mask) ==
			    PCI_MAPREG_MEM_TYPE_32BIT_1M) {
				if (p->size > membase_1m)
					membase_1m = p->size;
				do {
					p->address = membase_1m;
					membase_1m += p->size;
				} while (overlap_pci_areas(LIST_FIRST(&memlist),
				    p, p->address, p->size,
				    PCI_COMMAND_MEM_ENABLE));
				if (membase_1m > 0x00100000) {
					/*
					 * Should we panic here?
					 */
					printf("\npcibus0: dev %d reg %d:"
					    " memory not configured",
					    p->dev, p->reg);
					p->reg = 0;
				}
			} else {
				if (sizecnt && (p->size > sizecnt))
					sizecnt =
					    ((p->size + sizecnt) & p->mask) &
					    PCI_MAPREG_MEM_ADDR_MASK;
				if (sizecnt > address) {
					address = sizecnt;
					sizecnt = 0;
				}

				do {
					p->address = address + sizecnt;
					sizecnt += p->size;
				} while (overlap_pci_areas(LIST_FIRST(&memlist),
				    p, p->address, p->size,
				    PCI_COMMAND_MEM_ENABLE));

				if ((address + sizecnt) > PCI_MEM_END) {
					/*
					 * Should we panic here?
					 */
					printf("\npcibus0: dev %d reg %d:"
					    " memory not configured",
					    p->dev, p->reg);
					p->reg = 0;
				}
			}
			if (p->reg > 0) {
				pci_conf_write(pc, p->tag, p->reg, p->address);
				csr = pci_conf_read(pc, p->tag,
				    PCI_COMMAND_STATUS_REG);
				csr |= PCI_COMMAND_MEM_ENABLE |
				    PCI_COMMAND_MASTER_ENABLE;
				pci_conf_write(pc, p->tag,
				    PCI_COMMAND_STATUS_REG, csr);
				p->csr = csr;
			}
		}
		p = LIST_NEXT(p, link);
	}

	/*
	 * now the I/O list
	 */

	address = PCI_IO_START;
	sizecnt = 0;
	p = LIST_FIRST(&iolist);
	while (p != NULL) {
		if (!(p->csr & PCI_COMMAND_IO_ENABLE)) {

			if (sizecnt && (p->size > sizecnt))
				sizecnt = ((p->size + sizecnt) & p->mask) &
				    PCI_MAPREG_IO_ADDR_MASK;
			if (sizecnt > address) {
				address = sizecnt;
				sizecnt = 0;
			}

			do {
				p->address = address + sizecnt;
				sizecnt += p->size;
			} while (overlap_pci_areas(LIST_FIRST(&iolist), p,
			    p->address, p->size, PCI_COMMAND_IO_ENABLE));

			if ((address + sizecnt) > PCI_IO_END) {
				/*
				 * Should we panic here?
				 */
				printf("\npcibus0: dev %d reg %d:"
				    " io not configured",
				    p->dev, p->reg);
			} else {
				pci_conf_write(pc, p->tag, p->reg, p->address);
				csr = pci_conf_read(pc, p->tag,
				    PCI_COMMAND_STATUS_REG);
				csr |= PCI_COMMAND_IO_ENABLE |
				    PCI_COMMAND_MASTER_ENABLE;
				pci_conf_write(pc, p->tag,
				    PCI_COMMAND_STATUS_REG, csr);
				p->csr = csr;
			}
		}
		p = LIST_NEXT(p, link);
	}

#ifdef DEBUG_PCI_MACHDEP
	printf("\nI/O List:\n");
	p = LIST_FIRST(&iolist);

	while (p != NULL) {
		printf("\ndev: %d, reg: 0x%02x, size: 0x%08x, addr: 0x%08x",
		    p->dev, p->reg, p->size, p->address);
		p = LIST_NEXT(p, link);
	}
	printf("\nMemlist:");
	p = LIST_FIRST(&memlist);

	while (p != NULL) {
		printf("\ndev: %d, reg: 0x%02x, size: 0x%08x, addr: 0x%08x",
		    p->dev, p->reg, p->size, p->address);
		p = LIST_NEXT(p, link);
	}
#endif

	/*
	 * Free the lists
	 */
	p = LIST_FIRST(&iolist);
	while (p != NULL) {
		q = p;
		LIST_REMOVE(q, link);
		free(p, M_WAITOK);
		p = LIST_FIRST(&iolist);
	}
	p = LIST_FIRST(&memlist);
	while (p != NULL) {
		q = p;
		LIST_REMOVE(q, link);
		free(p, M_WAITOK);
		p = LIST_FIRST(&memlist);
	}
}

pcitag_t
pci_make_tag(pci_chipset_tag_t pc, int bus, int device, int function)
{

	return (bus << 16) | (device << 11) | (function << 8);
}

void
pci_decompose_tag(pci_chipset_tag_t pc, pcitag_t tag, int *bp, int *dp, int *fp)
{

	if (bp != NULL)
		*bp = (tag >> 16) & 0xff;
	if (dp != NULL)
		*dp = (tag >> 11) & 0x1f;
	if (fp != NULL)
		*fp = (tag >> 8) & 0x7;
}

int
pci_intr_map(const struct pci_attach_args *pa, pci_intr_handle_t *ihp)
{
	int line = pa->pa_intrline;

#if defined(_MILANHW_)
	/*
	 * On the Hades, the 'pin' info is useless.
	 */
	{
		int pin = pa->pa_intrpin;

		if (pin == 0) {
			/* No IRQ used. */
			goto bad;
		}
		if (pin > PCI_INTERRUPT_PIN_MAX) {
			printf("pci_intr_map: bad interrupt pin %d\n", pin);
			goto bad;
		}
	}
#endif /* _MILANHW_ */

	/*
	 * According to the PCI-spec, 255 means `unknown' or `no connection'.
	 * Interpret this as 'no interrupt assigned'.
	 */
	if (line == 255)
		goto bad;

	/*
	 * Values are pretty useless on the Hades since all interrupt
	 * lines for a card are tied together and hardwired to a
	 * specific TT-MFP I/O port.
	 * On the Milan, they are tied to the ICU.
	 */
#if defined(_MILANHW_)
	if (line >= 16) {
		printf("pci_intr_map: bad interrupt line %d\n", line);
		goto bad;
	}
	if (line == 2) {
		printf("pci_intr_map: changed line 2 to line 9\n");
		line = 9;
	}
	/* Assume line == 0 means unassigned */
	if (line == 0)
		goto bad;
#endif
	*ihp = line;
	return 0;

bad:
	*ihp = -1;
	return 1;
}

const char *
pci_intr_string(pci_chipset_tag_t pc, pci_intr_handle_t ih, char *buf,
    size_t len)
{

	if (ih == -1)
		panic("pci_intr_string: bogus handle 0x%x", ih);

	snprintf(buf, len, "irq %d", ih);
	return buf;
	
}

const struct evcnt *
pci_intr_evcnt(pci_chipset_tag_t pc, pci_intr_handle_t ih)
{

	/* XXX for now, no evcnt parent reported */
	return NULL;
}