1 1.8 martin /* $NetBSD: hd6446xintc.c,v 1.8 2008/04/28 20:23:22 martin Exp $ */ 2 1.1 uch 3 1.1 uch /*- 4 1.1 uch * Copyright (c) 2002 The NetBSD Foundation, Inc. 5 1.1 uch * All rights reserved. 6 1.1 uch * 7 1.1 uch * This code is derived from software contributed to The NetBSD Foundation 8 1.1 uch * by UCHIYAMA Yasushi. 9 1.1 uch * 10 1.1 uch * Redistribution and use in source and binary forms, with or without 11 1.1 uch * modification, are permitted provided that the following conditions 12 1.1 uch * are met: 13 1.1 uch * 1. Redistributions of source code must retain the above copyright 14 1.1 uch * notice, this list of conditions and the following disclaimer. 15 1.1 uch * 2. Redistributions in binary form must reproduce the above copyright 16 1.1 uch * notice, this list of conditions and the following disclaimer in the 17 1.1 uch * documentation and/or other materials provided with the distribution. 18 1.1 uch * 19 1.1 uch * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.1 uch * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.1 uch * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.1 uch * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.1 uch * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.1 uch * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.1 uch * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.1 uch * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.1 uch * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.1 uch * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.1 uch * POSSIBILITY OF SUCH DAMAGE. 30 1.1 uch */ 31 1.2 lukem 32 1.2 lukem #include <sys/cdefs.h> 33 1.8 martin __KERNEL_RCSID(0, "$NetBSD: hd6446xintc.c,v 1.8 2008/04/28 20:23:22 martin Exp $"); 34 1.1 uch 35 1.1 uch #include <sys/param.h> 36 1.1 uch #include <sys/systm.h> 37 1.1 uch 38 1.1 uch #include <sh3/devreg.h> 39 1.4 uwe #include <hpcsh/dev/hd6446x/hd6446xintcreg.h> 40 1.1 uch #include <hpcsh/dev/hd6446x/hd6446xintcvar.h> 41 1.1 uch 42 1.1 uch struct hd6446x_intrhand hd6446x_intrhand[_HD6446X_INTR_N]; 43 1.4 uwe uint16_t hd6446x_imask[_IPL_N]; 44 1.4 uwe uint16_t hd6446x_ienable; 45 1.4 uwe 46 1.4 uwe static void hd6446x_intr_priority_update(void); 47 1.4 uwe 48 1.1 uch 49 1.1 uch void 50 1.4 uwe hd6446x_intr_init(void) 51 1.1 uch { 52 1.1 uch 53 1.1 uch /* Initialize interrupt priority masks. */ 54 1.1 uch hd6446x_intr_priority_update(); 55 1.1 uch } 56 1.1 uch 57 1.1 uch void * 58 1.1 uch hd6446x_intr_establish(int irq, int mode, int level, 59 1.1 uch int (*func)(void *), void *arg) 60 1.1 uch { 61 1.1 uch struct hd6446x_intrhand *hh = &hd6446x_intrhand[ffs(irq) - 1]; 62 1.1 uch int s; 63 1.1 uch 64 1.1 uch s = splhigh(); 65 1.1 uch 66 1.1 uch /* Register interrupt handler */ 67 1.1 uch hh->hh_func = func; 68 1.1 uch hh->hh_arg = arg; 69 1.1 uch hh->hh_ipl = level << 4; 70 1.1 uch hh->hh_imask = irq; 71 1.1 uch hd6446x_ienable |= hh->hh_imask; 72 1.1 uch 73 1.1 uch /* Update interrupt priority masks. */ 74 1.1 uch hd6446x_intr_priority_update(); 75 1.1 uch 76 1.1 uch splx(s); 77 1.1 uch 78 1.1 uch return (hh); 79 1.1 uch } 80 1.1 uch 81 1.1 uch void 82 1.1 uch hd6446x_intr_disestablish(void *handle) 83 1.1 uch { 84 1.1 uch struct hd6446x_intrhand *hh = handle; 85 1.1 uch int s; 86 1.1 uch 87 1.1 uch s = splhigh(); 88 1.1 uch 89 1.1 uch /* Update interrupt priority masks */ 90 1.1 uch hd6446x_ienable &= ~hh->hh_imask; 91 1.1 uch memset(hh, 0, sizeof(*hh)); 92 1.1 uch hd6446x_intr_priority_update(); 93 1.1 uch 94 1.1 uch splx(s); 95 1.1 uch } 96 1.1 uch 97 1.1 uch void 98 1.1 uch hd6446x_intr_priority(int irq, int level) 99 1.1 uch { 100 1.1 uch struct hd6446x_intrhand *hh = &hd6446x_intrhand[ffs(irq) - 1]; 101 1.1 uch int s; 102 1.1 uch 103 1.1 uch KDASSERT(hh->hh_func != NULL); 104 1.1 uch s = splhigh(); 105 1.1 uch hh->hh_ipl = level << 4; 106 1.1 uch hd6446x_intr_priority_update(); 107 1.1 uch splx(s); 108 1.1 uch } 109 1.1 uch 110 1.4 uwe static void 111 1.4 uwe hd6446x_intr_priority_update(void) 112 1.1 uch { 113 1.7 uwe int ipl, src; 114 1.5 uwe 115 1.1 uch for (ipl = 0; ipl < _IPL_N; ipl++) { 116 1.5 uwe uint16_t mask = ~hd6446x_ienable; /* mask disabled */ 117 1.5 uwe 118 1.5 uwe /* mask sources interrupting at <= ipl */ 119 1.7 uwe for (src = 0; src < _HD6446X_INTR_N; ++src) { 120 1.7 uwe struct hd6446x_intrhand *hh = &hd6446x_intrhand[src]; 121 1.5 uwe 122 1.5 uwe if (hh->hh_func != NULL && hh->hh_ipl <= (ipl << 4)) 123 1.7 uwe mask |= 1 << src; 124 1.1 uch } 125 1.5 uwe 126 1.5 uwe hd6446x_imask[ipl] = mask; 127 1.1 uch } 128 1.1 uch } 129