--- /dev/null
+#ifndef __INTERRUPT_H
+#define __INTERRUPT_H
+
+#define UART_INTERRUPT 0
+#define TIMER0_INTERRUPT 1
+#define MINIMAC_INTERRUPT 2
+
+#endif /* __INTERRUPT_H */
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <hw/interrupts.h>
#include <hw/uart.h>
+#include <interrupt.h>
#include <irq.h>
#include <uart.h>
irqs = irq_pending() & irq_getmask();
- if(irqs & IRQ_UART)
+ if(irqs & (1 << UART_INTERRUPT))
uart_isr();
}
+++ /dev/null
-/*
- * Milkymist SoC (Software)
- * Copyright (C) 2007, 2008, 2009, 2010 Sebastien Bourdeauducq
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, version 3 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#ifndef __HW_INTERRUPTS_H
-#define __HW_INTERRUPTS_H
-
-#define IRQ_UART (0x00000001) /* 0 */
-
-#endif /* __HW_INTERRUPTS_H */
#include <uart.h>
#include <irq.h>
#include <hw/uart.h>
-#include <hw/interrupts.h>
+#include <interrupt.h>
/*
* Buffer sizes must be a power of 2 so that modulos can be computed
CSR_UART_EV_ENABLE = UART_EV_TX | UART_EV_RX;
mask = irq_getmask();
- mask |= IRQ_UART;
+ mask |= UART_INTERRUPT;
irq_setmask(mask);
}
assert((base >= 0xe0000000) and (base <= 0xe0010000))
return (base - 0xe0000000)//0x800
+interrupt_macros = get_macros("common/interrupt.h")
+def interrupt_n(name):
+ return int(interrupt_macros[name + "_INTERRUPT"], 0)
+
version = get_macros("common/version.h")["VERSION"][1:-1]
def get():
# Interrupts
#
interrupts = Fragment([
- cpu0.interrupt[0].eq(uart0.events.irq),
- cpu0.interrupt[1].eq(timer0.events.irq),
- cpu0.interrupt[2].eq(minimac0.events.irq)
+ cpu0.interrupt[interrupt_n("UART")].eq(uart0.events.irq),
+ cpu0.interrupt[interrupt_n("TIMER0")].eq(timer0.events.irq),
+ cpu0.interrupt[interrupt_n("MINIMAC")].eq(minimac0.events.irq)
])
#