1 /* $NetBSD: pcctwo.c,v 1.8 2008/04/28 20:23:54 martin Exp $ */
4 * Copyright (c) 1999, 2002 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Steve C. Woodford.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 * PCCchip2 and MCchip Driver
36 #include <sys/cdefs.h>
37 __KERNEL_RCSID(0, "$NetBSD: pcctwo.c,v 1.8 2008/04/28 20:23:54 martin Exp $");
39 #include <sys/param.h>
40 #include <sys/kernel.h>
41 #include <sys/systm.h>
42 #include <sys/device.h>
47 #include <dev/mvme/pcctworeg.h>
48 #include <dev/mvme/pcctwovar.h>
51 * Global Pointer to the PCCChip2/MCchip soft state, and chip ID
53 struct pcctwo_softc
*sys_pcctwo
;
55 int pcctwoprint(void *, const char *);
60 pcctwo_init(struct pcctwo_softc
*sc
, const struct pcctwo_device
*pd
, int devoff
)
62 struct pcctwo_attach_args npa
;
66 * Fix up the vector base for PCCChip2 Interrupts
68 pcc2_reg_write(sc
, PCC2REG_VECTOR_BASE
, sc
->sc_vecbase
);
71 * Enable PCCChip2 Interrupts
73 pcc2_reg_write(sc
, PCC2REG_GENERAL_CONTROL
,
74 pcc2_reg_read(sc
, PCC2REG_GENERAL_CONTROL
) | PCCTWO_GEN_CTRL_MIEN
);
77 cid
= pcc2_reg_read(sc
, PCC2REG_CHIP_ID
);
80 * Announce ourselves to the world in general
82 if (cid
== PCCTWO_CHIP_ID_PCC2
)
83 printf(": Peripheral Channel Controller (PCCchip2), Rev %d\n",
84 pcc2_reg_read(sc
, PCC2REG_CHIP_REVISION
));
86 if (cid
== PCCTWO_CHIP_ID_MCCHIP
)
87 printf(": Memory Controller ASIC (MCchip), Rev %d\n",
88 pcc2_reg_read(sc
, PCC2REG_CHIP_REVISION
));
91 * Attach configured children.
93 npa
._pa_base
= devoff
;
94 while (pd
->pcc_name
!= NULL
) {
96 * Note that IPL is filled in by match function.
98 npa
.pa_name
= pd
->pcc_name
;
100 npa
.pa_dmat
= sc
->sc_dmat
;
101 npa
.pa_bust
= sc
->sc_bust
;
102 npa
.pa_offset
= pd
->pcc_offset
+ devoff
;
105 /* Attach the device if configured. */
106 (void) config_found(&sc
->sc_dev
, &npa
, pcctwoprint
);
111 pcctwoprint(void *aux
, const char *cp
)
113 struct pcctwo_attach_args
*pa
;
118 aprint_normal("%s at %s", pa
->pa_name
, cp
);
120 aprint_normal(" offset 0x%lx", pa
->pa_offset
- pa
->_pa_base
);
121 if (pa
->pa_ipl
!= -1)
122 aprint_normal(" ipl %d", pa
->pa_ipl
);
128 * pcctwointr_establish: Establish PCCChip2 Interrupt
131 pcctwointr_establish(vec
, hand
, lvl
, arg
, evcnt
)
133 int (*hand
)(void *), lvl
;
140 if (vec
< 0 || vec
>= PCCTWOV_MAX
) {
141 printf("pcctwo: illegal vector offset: 0x%x\n", vec
);
142 panic("pcctwointr_establish");
144 if (lvl
< 1 || lvl
> 7) {
145 printf("pcctwo: illegal interrupt level: %d\n", lvl
);
146 panic("pcctwointr_establish");
148 if (sys_pcctwo
->sc_vec2icsr
[vec
] == -1) {
149 printf("pcctwo: unsupported vector: %d\n", vec
);
150 panic("pcctwointr_establish");
154 vec2icsr
= sys_pcctwo
->sc_vec2icsr
[vec
];
155 pcc2_reg_write(sys_pcctwo
, VEC2ICSR_REG(vec2icsr
), 0);
157 /* Hook the interrupt */
158 (*sys_pcctwo
->sc_isrlink
)(sys_pcctwo
->sc_isrcookie
, hand
, arg
,
159 lvl
, vec
+ sys_pcctwo
->sc_vecbase
, evcnt
);
161 /* Enable it in hardware */
162 pcc2_reg_write(sys_pcctwo
, VEC2ICSR_REG(vec2icsr
),
163 VEC2ICSR_INIT(vec2icsr
) | lvl
);
167 pcctwointr_disestablish(int vec
)
171 if (vec
< 0 || vec
>= PCCTWOV_MAX
) {
172 printf("pcctwo: illegal vector offset: 0x%x\n", vec
);
173 panic("pcctwointr_disestablish");
175 if (sys_pcctwo
->sc_vec2icsr
[vec
] == -1) {
176 printf("pcctwo: unsupported vector: %d\n", vec
);
177 panic("pcctwointr_establish");
181 /* Disable it in hardware */
182 pcc2_reg_write(sys_pcctwo
, sys_pcctwo
->sc_vec2icsr
[vec
], 0);
184 (*sys_pcctwo
->sc_isrunlink
)(sys_pcctwo
->sc_isrcookie
,
185 vec
+ sys_pcctwo
->sc_vecbase
);
189 pcctwointr_evcnt(int lev
)
192 return ((*sys_pcctwo
->sc_isrevcnt
)(sys_pcctwo
->sc_isrcookie
, lev
));