Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/powerpc/ibm4xx Switch to intr_establish_xname().
details: https://anonhg.NetBSD.org/src/rev/448e2e52612c
branches: trunk
changeset: 953149:448e2e52612c
user: rin <rin%NetBSD.org@localhost>
date: Sat Feb 27 20:43:58 2021 +0000
description:
Switch to intr_establish_xname().
diffstat:
sys/arch/powerpc/ibm4xx/dev/com_opb.c | 7 ++++---
sys/arch/powerpc/ibm4xx/dev/dwctwo_plb.c | 7 ++++---
sys/arch/powerpc/ibm4xx/dev/ecc_plb.c | 7 ++++---
sys/arch/powerpc/ibm4xx/dev/if_emac.c | 7 ++++---
sys/arch/powerpc/ibm4xx/dev/mal.c | 24 ++++++++++++------------
sys/arch/powerpc/ibm4xx/pic_uic.c | 10 ++++++----
6 files changed, 34 insertions(+), 28 deletions(-)
diffs (195 lines):
diff -r 194de81dece7 -r 448e2e52612c sys/arch/powerpc/ibm4xx/dev/com_opb.c
--- a/sys/arch/powerpc/ibm4xx/dev/com_opb.c Sat Feb 27 18:29:38 2021 +0000
+++ b/sys/arch/powerpc/ibm4xx/dev/com_opb.c Sat Feb 27 20:43:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: com_opb.c,v 1.24 2020/07/06 09:34:17 rin Exp $ */
+/* $NetBSD: com_opb.c,v 1.25 2021/02/27 20:43:58 rin Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: com_opb.c,v 1.24 2020/07/06 09:34:17 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: com_opb.c,v 1.25 2021/02/27 20:43:58 rin Exp $");
#include "com.h"
@@ -133,7 +133,8 @@
com_attach_subr(sc);
- intr_establish(oaa->opb_irq, IST_LEVEL, IPL_SERIAL, comintr, sc);
+ intr_establish_xname(oaa->opb_irq, IST_LEVEL, IPL_SERIAL, comintr, sc,
+ device_xname(self));
}
/*
diff -r 194de81dece7 -r 448e2e52612c sys/arch/powerpc/ibm4xx/dev/dwctwo_plb.c
--- a/sys/arch/powerpc/ibm4xx/dev/dwctwo_plb.c Sat Feb 27 18:29:38 2021 +0000
+++ b/sys/arch/powerpc/ibm4xx/dev/dwctwo_plb.c Sat Feb 27 20:43:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dwctwo_plb.c,v 1.5 2016/04/23 10:15:30 skrll Exp $ */
+/* $NetBSD: dwctwo_plb.c,v 1.6 2021/02/27 20:43:58 rin Exp $ */
/*
* Copyright (c) 2013 KIYOHARA Takashi
* All rights reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dwctwo_plb.c,v 1.5 2016/04/23 10:15:30 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dwctwo_plb.c,v 1.6 2021/02/27 20:43:58 rin Exp $");
#include <sys/param.h>
#include <sys/bus.h>
@@ -112,7 +112,8 @@
bus_space_map(sc->sc_iot, paa->plb_addr, DWCTWO_SIZE, 0, &sc->sc_ioh);
sc->sc_bus.ub_dmatag = paa->plb_dmat;
- intr_establish(paa->plb_irq, IST_LEVEL, IPL_VM, dwc2_intr, sc);
+ intr_establish_xname(paa->plb_irq, IST_LEVEL, IPL_VM, dwc2_intr, sc,
+ device_xname(self));
/* Enable the USB interface. */
mtsdr(DCR_SDR0_PFC1, mfsdr(DCR_SDR0_PFC1) | SDR0_PFC1_USBEN);
diff -r 194de81dece7 -r 448e2e52612c sys/arch/powerpc/ibm4xx/dev/ecc_plb.c
--- a/sys/arch/powerpc/ibm4xx/dev/ecc_plb.c Sat Feb 27 18:29:38 2021 +0000
+++ b/sys/arch/powerpc/ibm4xx/dev/ecc_plb.c Sat Feb 27 20:43:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ecc_plb.c,v 1.15 2014/02/25 14:09:13 martin Exp $ */
+/* $NetBSD: ecc_plb.c,v 1.16 2021/02/27 20:43:58 rin Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ecc_plb.c,v 1.15 2014/02/25 14:09:13 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ecc_plb.c,v 1.16 2021/02/27 20:43:58 rin Exp $");
#include "locators.h"
@@ -127,7 +127,8 @@
{
struct ecc_plb_softc *sc = device_private(self);
- intr_establish(sc->sc_irq, IST_LEVEL, IPL_SERIAL, ecc_plb_intr, sc);
+ intr_establish_xname(sc->sc_irq, IST_LEVEL, IPL_SERIAL, ecc_plb_intr,
+ sc, device_xname(self));
}
/*
diff -r 194de81dece7 -r 448e2e52612c sys/arch/powerpc/ibm4xx/dev/if_emac.c
--- a/sys/arch/powerpc/ibm4xx/dev/if_emac.c Sat Feb 27 18:29:38 2021 +0000
+++ b/sys/arch/powerpc/ibm4xx/dev/if_emac.c Sat Feb 27 20:43:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_emac.c,v 1.54 2021/01/24 05:22:21 rin Exp $ */
+/* $NetBSD: if_emac.c,v 1.55 2021/02/27 20:43:58 rin Exp $ */
/*
* Copyright 2001, 2002 Wasabi Systems, Inc.
@@ -52,7 +52,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_emac.c,v 1.54 2021/01/24 05:22:21 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_emac.c,v 1.55 2021/02/27 20:43:58 rin Exp $");
#ifdef _KERNEL_OPT
#include "opt_emac.h"
@@ -507,7 +507,8 @@
sc->sc_stacr_completed = true;
}
- intr_establish(oaa->opb_irq, IST_LEVEL, IPL_NET, emac_intr, sc);
+ intr_establish_xname(oaa->opb_irq, IST_LEVEL, IPL_NET, emac_intr, sc,
+ device_xname(self));
mal_intr_establish(sc->sc_instance, sc);
if (oaa->opb_flags & OPB_FLAGS_EMAC_HT256)
diff -r 194de81dece7 -r 448e2e52612c sys/arch/powerpc/ibm4xx/dev/mal.c
--- a/sys/arch/powerpc/ibm4xx/dev/mal.c Sat Feb 27 18:29:38 2021 +0000
+++ b/sys/arch/powerpc/ibm4xx/dev/mal.c Sat Feb 27 20:43:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: mal.c,v 1.3 2011/06/18 08:17:58 matt Exp $ */
+/* $NetBSD: mal.c,v 1.4 2021/02/27 20:43:58 rin Exp $ */
/*
* Copyright (c) 2010 KIYOHARA Takashi
* All rights reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mal.c,v 1.3 2011/06/18 08:17:58 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mal.c,v 1.4 2021/02/27 20:43:58 rin Exp $");
#include <sys/param.h>
#include <sys/device.h>
@@ -93,16 +93,16 @@
}
/* establish MAL interrupts */
- intr_establish(maltbl[i].intrs[0], IST_LEVEL, IPL_NET,
- mal_txeob_intr, NULL);
- intr_establish(maltbl[i].intrs[1], IST_LEVEL, IPL_NET,
- mal_rxeob_intr, NULL);
- intr_establish(maltbl[i].intrs[2], IST_LEVEL, IPL_NET,
- mal_txde_intr, NULL);
- intr_establish(maltbl[i].intrs[3], IST_LEVEL, IPL_NET,
- mal_rxde_intr, NULL);
- intr_establish(maltbl[i].intrs[4], IST_LEVEL, IPL_NET,
- mal_serr_intr, NULL);
+ intr_establish_xname(maltbl[i].intrs[0], IST_LEVEL, IPL_NET,
+ mal_txeob_intr, NULL, "mal txeob");
+ intr_establish_xname(maltbl[i].intrs[1], IST_LEVEL, IPL_NET,
+ mal_rxeob_intr, NULL, "mal rxeob");
+ intr_establish_xname(maltbl[i].intrs[2], IST_LEVEL, IPL_NET,
+ mal_txde_intr, NULL, "mal txde");
+ intr_establish_xname(maltbl[i].intrs[3], IST_LEVEL, IPL_NET,
+ mal_rxde_intr, NULL, "mal rxde");
+ intr_establish_xname(maltbl[i].intrs[4], IST_LEVEL, IPL_NET,
+ mal_serr_intr, NULL, "mal serr");
/* Set the MAL configuration register */
if (maltbl[i].flags & MAL_GEN2)
diff -r 194de81dece7 -r 448e2e52612c sys/arch/powerpc/ibm4xx/pic_uic.c
--- a/sys/arch/powerpc/ibm4xx/pic_uic.c Sat Feb 27 18:29:38 2021 +0000
+++ b/sys/arch/powerpc/ibm4xx/pic_uic.c Sat Feb 27 20:43:58 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pic_uic.c,v 1.7 2020/07/06 10:35:28 rin Exp $ */
+/* $NetBSD: pic_uic.c,v 1.8 2021/02/27 20:43:58 rin Exp $ */
/*
* Copyright 2002 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pic_uic.c,v 1.7 2020/07/06 10:35:28 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pic_uic.c,v 1.8 2021/02/27 20:43:58 rin Exp $");
#ifdef _KERNEL_OPT
#include "opt_ppcarch.h"
@@ -217,7 +217,8 @@
static void
uic1_finish_setup(struct pic_ops *pic)
{
- intr_establish(30, IST_LEVEL, IPL_HIGH, pic_handle_intr, &pic_uic1);
+ intr_establish_xname(30, IST_LEVEL, IPL_HIGH, pic_handle_intr,
+ &pic_uic1, "uic1");
}
struct uic uic1 = {
@@ -272,7 +273,8 @@
static void
uic2_finish_setup(struct pic_ops *pic)
{
- intr_establish(28, IST_LEVEL, IPL_HIGH, pic_handle_intr, &pic_uic2);
+ intr_establish_xname(28, IST_LEVEL, IPL_HIGH, pic_handle_intr,
+ &pic_uic2, "uic2");
}
static struct uic uic2 = {
Home |
Main Index |
Thread Index |
Old Index