summaryrefslogtreecommitdiffstats
path: root/sys/dev/sr/if_sr_pci.c
blob: 04d0db82c418f58848d0a7389f664cc0c84577fa (plain)
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
/*
 * Copyright (c) 1996 John Hay.
 * Copyright (c) 1996 SDL Communications, Inc.
 * 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. Neither the name of the author nor the names of any co-contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * 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.
 *
 * $FreeBSD$
 */

#include "sr.h"

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>

#include <pci/pcivar.h>

#ifndef BUGGY
#define BUGGY		0
#endif

/*
 * The must match with the real functions in if_sr.c
 */
extern void *srattach_pci(int unit,
			  vm_offset_t plx_vaddr,
			  vm_offset_t sca_vaddr);
extern void srintr_hc(void *hc);

static const char *sr_pci_probe(pcici_t tag, pcidi_t type);
static void sr_pci_attach(pcici_t config_id, int unit);

static u_long src_count = NSR;

static struct pci_device sr_pci_driver =
{
	"src",
	sr_pci_probe,
	sr_pci_attach,
	&src_count,
	NULL
};

COMPAT_PCI_DRIVER (sr_pci, sr_pci_driver);

static const char *
sr_pci_probe(pcici_t tag, pcidi_t type)
{
	switch(type) {
	case 0x556812aa:
		return ("RISCom/N2pci");
		break;
	case 0x55684778:
	case 0x55684877:
		/*
		 * XXX This can probably be removed sometime.
		 */
		return ("RISCom/N2pci (old id)");
		break;
	default:
		break;
	}
	return (0);
}

static void
sr_pci_attach(pcici_t config_id, int unit)
{
	void *hc;
#if BUGGY > 0
	u_int *fecr;
#endif
	vm_offset_t plx_vaddr, plx_paddr, sca_vaddr, sca_paddr;

#if BUGGY > 0
	printf("srp: ID %x\n", pci_conf_read(config_id, 0));
	printf("srp: BADR0 %x\n", pci_conf_read(config_id, 0x10));
	printf("srp: BADR1 %x\n", pci_conf_read(config_id, 0x18));
#endif
	if(!pci_map_mem(config_id, 0x10, &plx_vaddr, &plx_paddr)) {
		printf("srp: map failed.\n");
		return;
	}
#if BUGGY > 0
	printf("srp: vaddr %x, paddr %x\n", plx_vaddr, plx_paddr);
#endif
	if(!pci_map_mem(config_id, 0x18, &sca_vaddr, &sca_paddr)) {
		printf("srp: map failed.\n");
		return;
	}
#if BUGGY > 0
	printf("srp: vaddr %x, paddr %x\n", sca_vaddr, sca_paddr);
	fecr = (u_int *)(sca_vaddr + 0x200);
	printf("srp: FECR  %x\n", *fecr);
#endif

	hc = srattach_pci(unit, plx_vaddr, sca_vaddr);
	if(!hc)
		return;

	if(!pci_map_int(config_id, srintr_hc, (void *)hc, &net_imask)) {
		free(hc, M_DEVBUF);
		return;
	}
}
OpenPOWER on IntegriCloud