summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Monkman <jtm@smoothsmoothie.com>2005-02-25 05:18:49 +0000
committerJay Monkman <jtm@smoothsmoothie.com>2005-02-25 05:18:49 +0000
commit74fb4e1f1d66b129bb144a1b90590bcb1c11332c (patch)
treee3fb1cd3233360bd91cdc9184bd219358f9c4d3f
parent2005-02-24 Jay Monkman <jtm@lopingdog.com> (diff)
downloadrtems-74fb4e1f1d66b129bb144a1b90590bcb1c11332c.tar.bz2
2005-02-24 Jay Monkman <jtm@lopingdog.com>
* Makefile.am, configure.ac: New CPU. * shared/interrupts/installisrentries.c, shared/interrupts/isr_entries.S: Added CPU32 support. * au1x00/Makefile.am, au1x00/include/au1x00.h, au1x00/vectorisrs/maxvectors.c, au1x00/vectorisrs/vectorisrs.c: New CPU.
-rw-r--r--c/src/lib/libcpu/mips/ChangeLog8
-rw-r--r--c/src/lib/libcpu/mips/Makefile.am2
-rw-r--r--c/src/lib/libcpu/mips/au1x00/Makefile.am49
-rw-r--r--c/src/lib/libcpu/mips/au1x00/include/au1x00.h520
-rw-r--r--c/src/lib/libcpu/mips/au1x00/vectorisrs/maxvectors.c23
-rw-r--r--c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c174
-rw-r--r--c/src/lib/libcpu/mips/configure.ac3
-rw-r--r--c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c11
-rw-r--r--c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S30
9 files changed, 819 insertions, 1 deletions
diff --git a/c/src/lib/libcpu/mips/ChangeLog b/c/src/lib/libcpu/mips/ChangeLog
index 541f045b0e..7c438663b0 100644
--- a/c/src/lib/libcpu/mips/ChangeLog
+++ b/c/src/lib/libcpu/mips/ChangeLog
@@ -1,3 +1,11 @@
+2005-02-24 Jay Monkman <jtm@lopingdog.com>
+
+ * Makefile.am, configure.ac: New CPU.
+ * shared/interrupts/installisrentries.c,
+ shared/interrupts/isr_entries.S: Added CPU32 support.
+ * au1x00/Makefile.am, au1x00/include/au1x00.h,
+ au1x00/vectorisrs/maxvectors.c, au1x00/vectorisrs/vectorisrs.c: New CPU.
+
2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org>
* mongoosev/Makefile.am, r46xx/Makefile.am, shared/Makefile.am,
diff --git a/c/src/lib/libcpu/mips/Makefile.am b/c/src/lib/libcpu/mips/Makefile.am
index 4fe6da9381..e14b6a3c93 100644
--- a/c/src/lib/libcpu/mips/Makefile.am
+++ b/c/src/lib/libcpu/mips/Makefile.am
@@ -4,7 +4,7 @@
ACLOCAL_AMFLAGS = -I ../../../aclocal
-SUBDIRS = shared mongoosev tx39 r46xx
+SUBDIRS = shared mongoosev tx39 r46xx au1x00
include $(top_srcdir)/../../../automake/subdirs.am
include $(top_srcdir)/../../../automake/local.am
diff --git a/c/src/lib/libcpu/mips/au1x00/Makefile.am b/c/src/lib/libcpu/mips/au1x00/Makefile.am
new file mode 100644
index 0000000000..46cfc41649
--- /dev/null
+++ b/c/src/lib/libcpu/mips/au1x00/Makefile.am
@@ -0,0 +1,49 @@
+##
+## $Id$
+##
+
+EXTRA_PROGRAMS =
+CLEANFILES =
+noinst_DATA =
+
+include $(top_srcdir)/../../../automake/compile.am
+
+if au1x00
+include_libcpudir = $(includedir)/libcpu
+include_libcpu_HEADERS = include/au1x00.h
+
+EXTRA_PROGRAMS += vectorisrs.rel
+CLEANFILES += vectorisrs.rel
+vectorisrs_rel_SOURCES = vectorisrs/maxvectors.c vectorisrs/vectorisrs.c
+vectorisrs_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
+vectorisrs_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
+
+EXTRA_PROGRAMS += vectorisrs_g.rel
+CLEANFILES += vectorisrs_g.rel
+vectorisrs_g_rel_SOURCES = $(vectorisrs_rel_SOURCES)
+vectorisrs_g_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
+vectorisrs_g_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
+
+noinst_DATA += vectorisrs$(LIB_VARIANT).rel
+endif
+
+all-local: $(PREINSTALL_FILES)
+
+PREINSTALL_DIRS =
+PREINSTALL_FILES =
+
+if au1x00
+$(PROJECT_INCLUDE)/libcpu/$(dirstamp):
+ @$(mkdir_p) $(PROJECT_INCLUDE)/libcpu
+ @: > $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
+PREINSTALL_DIRS += $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
+
+$(PROJECT_INCLUDE)/libcpu/au1x00.h: include/au1x00.h $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
+ $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/libcpu/au1x00.h
+PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/au1x00.h
+endif
+
+CLEANFILES += $(PREINSTALL_FILES)
+DISTCLEANFILES = $(PREINSTALL_DIRS)
+
+include $(top_srcdir)/../../../automake/local.am
diff --git a/c/src/lib/libcpu/mips/au1x00/include/au1x00.h b/c/src/lib/libcpu/mips/au1x00/include/au1x00.h
new file mode 100644
index 0000000000..96e4047779
--- /dev/null
+++ b/c/src/lib/libcpu/mips/au1x00/include/au1x00.h
@@ -0,0 +1,520 @@
+/*
+ * AMD AU1X00 specific information
+ *
+ * Copyright (c) 2005 by Cogent Computer Systems
+ * Written by Jay Monkman <jtm@lopingdog.com>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ *
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ *
+ */
+
+#ifndef __AU1X00_H__
+#define __AU1X00_H__
+
+#define bit(x) (1 << (x))
+
+/* Au1x00 CP0 registers
+ */
+#define CP0_Index $0
+#define CP0_Random $1
+#define CP0_EntryLo0 $2
+#define CP0_EntryLo1 $3
+#define CP0_Context $4
+#define CP0_PageMask $5
+#define CP0_Wired $6
+#define CP0_BadVAddr $8
+#define CP0_Count $9
+#define CP0_EntryHi $10
+#define CP0_Compare $11
+#define CP0_Status $12
+#define CP0_Cause $13
+#define CP0_EPC $14
+#define CP0_PRId $15
+#define CP0_Config $16
+#define CP0_Config0 $16
+#define CP0_Config1 $16,1
+#define CP0_LLAddr $17
+#define CP0_WatchLo $18
+#define CP0_IWatchLo $18,1
+#define CP0_WatchHi $19
+#define CP0_IWatchHi $19,1
+#define CP0_Scratch $22
+#define CP0_Debug $23
+#define CP0_DEPC $24
+#define CP0_PerfCnt $25
+#define CP0_PerfCtrl $25,1
+#define CP0_DTag $28
+#define CP0_DData $28,1
+#define CP0_ITag $29
+#define CP0_IData $29,1
+#define CP0_ErrorEPC $30
+#define CP0_DESave $31
+
+/* Addresses common to all AU1x00 CPUs */
+#define AU1X00_MEM_ADDR 0xB4000000
+#define AU1X00_AC97_ADDR 0xB0000000
+#define AU1X00_USBH_ADDR 0xB0100000
+#define AU1X00_USBD_ADDR 0xB0200000
+#define AU1X00_MACDMA0_ADDR 0xB4004000
+#define AU1X00_MACDMA1_ADDR 0xB4004200
+#define AU1X00_UART0_ADDR 0xB1100000
+#define AU1X00_UART3_ADDR 0xB1400000
+#define AU1X00_SYS_ADDR 0xB1900000
+#define AU1X00_GPIO2_ADDR 0xB1700000
+#define AU1X00_IC0_ADDR 0xB0400000
+#define AU1X00_IC1_ADDR 0xB1800000
+
+/* Au1100 base addresses (in KSEG1 region) */
+#define AU1100_MAC0_ADDR 0xB0500000
+#define AU1100_MACEN_ADDR 0xB0520000
+
+/* Au1500 base addresses (in KSEG1 region) */
+#define AU1500_MAC0_ADDR 0xB1500000
+#define AU1500_MAC1_ADDR 0xB1510000
+#define AU1500_MACEN_ADDR 0xB1520000
+#define AU1500_PCI_ADDR 0xB4005000
+
+/* Au1x00 gpio2 register offsets
+ */
+#define gpio2_dir 0x0000
+#define gpio2_output 0x0008
+#define gpio2_pinstate 0x000c
+#define gpio2_inten 0x0010
+#define gpio2_enable 0x0014
+
+/* Au1x00 memory controller register offsets
+ */
+#define mem_sdmode0 0x0000
+#define mem_sdmode1 0x0004
+#define mem_sdmode2 0x0008
+#define mem_sdaddr0 0x000C
+#define mem_sdaddr1 0x0010
+#define mem_sdaddr2 0x0014
+#define mem_sdrefcfg 0x0018
+#define mem_sdprecmd 0x001C
+#define mem_sdautoref 0x0020
+#define mem_sdwrmd0 0x0024
+#define mem_sdwrmd1 0x0028
+#define mem_sdwrmd2 0x002C
+#define mem_sdsleep 0x0030
+#define mem_sdsmcke 0x0034
+
+#define mem_stcfg0 0x1000
+#define mem_sttime0 0x1004
+#define mem_staddr0 0x1008
+#define mem_stcfg1 0x1010
+#define mem_sttime1 0x1014
+#define mem_staddr1 0x1018
+#define mem_stcfg2 0x1020
+#define mem_sttime2 0x1024
+#define mem_staddr2 0x1028
+#define mem_stcfg3 0x1030
+#define mem_sttime3 0x1034
+#define mem_staddr3 0x1038
+
+/*
+ * Au1x00 peripheral register offsets
+ */
+#define ac97_enable 0x0010
+#define usbh_enable 0x0007FFFC
+#define usbd_enable 0x0058
+#define irda_enable 0x0040
+#define macen_mac0 0x0000
+#define macen_mac1 0x0004
+#define i2s_enable 0x0008
+#define uart_enable 0x0100
+#define ssi_enable 0x0100
+
+#define sys_scratch0 0x0018
+#define sys_scratch1 0x001c
+#define sys_cntctrl 0x0014
+#define sys_freqctrl0 0x0020
+#define sys_freqctrl1 0x0024
+#define sys_clksrc 0x0028
+#define sys_pinfunc 0x002C
+#define sys_powerctrl 0x003C
+#define sys_endian 0x0038
+#define sys_wakesrc 0x005C
+#define sys_cpupll 0x0060
+#define sys_auxpll 0x0064
+#define sys_pininputen 0x0110
+
+#define pci_cmem 0x0000
+#define pci_config 0x0004
+#define pci_b2bmask_cch 0x0008
+#define pci_b2bbase0_venid 0x000C
+#define pci_b2bbase1_id 0x0010
+#define pci_mwmask_dev 0x0014
+#define pci_mwbase_rev_ccl 0x0018
+#define pci_err_addr 0x001C
+#define pci_spec_intack 0x0020
+#define pci_id 0x0100
+#define pci_statcmd 0x0104
+#define pci_classrev 0x0108
+#define pci_hdrtype 0x010C
+#define pci_mbar 0x0110
+
+/*
+ * CSB250-specific values
+ */
+
+#define SYS_CPUPLL 33
+#define SYS_POWERCTRL 1
+#define SYS_AUXPLL 8
+#define SYS_CNTCTRL 256
+
+/* RCE0: */
+#define MEM_STCFG0 0x00000203
+#define MEM_STTIME0 0x22080b20
+#define MEM_STADDR0 0x11f03fc0
+
+/* RCE1: */
+#define MEM_STCFG1 0x00000203
+#define MEM_STTIME1 0x22080b20
+#define MEM_STADDR1 0x11e03fc0
+
+/* RCE2: */
+#define MEM_STCFG2 0x00000244
+#define MEM_STTIME2 0x22080a20
+#define MEM_STADDR2 0x11803f00
+
+/* RCE3: */
+#define MEM_STCFG3 0x00000201
+#define MEM_STTIME3 0x22080b20
+#define MEM_STADDR3 0x11003f00
+
+/*
+ * SDCS0 -
+ * SDCS1 -
+ * SDCS2 -
+ */
+#define MEM_SDMODE0 0x00552229
+#define MEM_SDMODE1 0x00552229
+#define MEM_SDMODE2 0x00552229
+
+#define MEM_SDADDR0 0x001003F8
+#define MEM_SDADDR1 0x001023F8
+#define MEM_SDADDR2 0x001043F8
+
+#define MEM_SDREFCFG_D 0x74000c30 /* disable */
+#define MEM_SDREFCFG_E 0x76000c30 /* enable */
+#define MEM_SDWRMD0 0x00000023
+#define MEM_SDWRMD1 0x00000023
+#define MEM_SDWRMD2 0x00000023
+
+#define MEM_1MS ((396000000/1000000) * 1000)
+
+#define AU1X00_IC_CFG0RD(x) (*(volatile unsigned32*)(x + 0x40))
+#define AU1X00_IC_CFG0SET(x) (*(volatile unsigned32*)(x + 0x40))
+#define AU1X00_IC_CFG0CLR(x) (*(volatile unsigned32*)(x + 0x44))
+#define AU1X00_IC_CFG1RD(x) (*(volatile unsigned32*)(x + 0x48))
+#define AU1X00_IC_CFG1SET(x) (*(volatile unsigned32*)(x + 0x48))
+#define AU1X00_IC_CFG1CLR(x) (*(volatile unsigned32*)(x + 0x4c))
+#define AU1X00_IC_CFG2RD(x) (*(volatile unsigned32*)(x + 0x50))
+#define AU1X00_IC_CFG2SET(x) (*(volatile unsigned32*)(x + 0x50))
+#define AU1X00_IC_CFG2CLR(x) (*(volatile unsigned32*)(x + 0x54))
+#define AU1X00_IC_REQ0INT(x) (*(volatile unsigned32*)(x + 0x54))
+#define AU1X00_IC_SRCRD(x) (*(volatile unsigned32*)(x + 0x58))
+#define AU1X00_IC_SRCSET(x) (*(volatile unsigned32*)(x + 0x58))
+#define AU1X00_IC_SRCCLR(x) (*(volatile unsigned32*)(x + 0x5c))
+#define AU1X00_IC_REQ1INT(x) (*(volatile unsigned32*)(x + 0x5c))
+#define AU1X00_IC_ASSIGNRD(x) (*(volatile unsigned32*)(x + 0x60))
+#define AU1X00_IC_ASSIGNSET(x) (*(volatile unsigned32*)(x + 0x60))
+#define AU1X00_IC_ASSIGNCLR(x) (*(volatile unsigned32*)(x + 0x64))
+#define AU1X00_IC_WAKERD(x) (*(volatile unsigned32*)(x + 0x68))
+#define AU1X00_IC_WAKESET(x) (*(volatile unsigned32*)(x + 0x68))
+#define AU1X00_IC_WAKECLR(x) (*(volatile unsigned32*)(x + 0x6c))
+#define AU1X00_IC_MASKRD(x) (*(volatile unsigned32*)(x + 0x70))
+#define AU1X00_IC_MASKSET(x) (*(volatile unsigned32*)(x + 0x70))
+#define AU1X00_IC_MASKCLR(x) (*(volatile unsigned32*)(x + 0x74))
+#define AU1X00_IC_RISINGRD(x) (*(volatile unsigned32*)(x + 0x78))
+#define AU1X00_IC_RISINGCLR(x) (*(volatile unsigned32*)(x + 0x78))
+#define AU1X00_IC_FALLINGRD(x) (*(volatile unsigned32*)(x + 0x7c))
+#define AU1X00_IC_FALLINGCLR(x) (*(volatile unsigned32*)(x + 0x7c))
+#define AU1X00_IC_TESTBIT(x) (*(volatile unsigned32*)(x + 0x80))
+#define AU1X00_IC_IRQ_MAC0 (bit(28))
+#define AU1X00_IC_IRQ_MAC1 (bit(29))
+#define AU1X00_IC_IRQ_TOY_MATCH0 (bit(15))
+#define AU1X00_IC_IRQ_TOY_MATCH1 (bit(16))
+#define AU1X00_IC_IRQ_TOY_MATCH2 (bit(17))
+
+
+
+#define AU1X00_SYS_TOYTRIM(x) (*(volatile unsigned32*)(x + 0x00))
+#define AU1X00_SYS_TOYWRITE(x) (*(volatile unsigned32*)(x + 0x04))
+#define AU1X00_SYS_TOYMATCH0(x) (*(volatile unsigned32*)(x + 0x08))
+#define AU1X00_SYS_TOYMATCH1(x) (*(volatile unsigned32*)(x + 0x0c))
+#define AU1X00_SYS_TOYMATCH2(x) (*(volatile unsigned32*)(x + 0x10))
+#define AU1X00_SYS_CNTCTRL(x) (*(volatile unsigned32*)(x + 0x14))
+#define AU1X00_SYS_SCRATCH0(x) (*(volatile unsigned32*)(x + 0x18))
+#define AU1X00_SYS_SCRATCH1(x) (*(volatile unsigned32*)(x + 0x1c))
+#define AU1X00_SYS_WAKEMSK(x) (*(volatile unsigned32*)(x + 0x34))
+#define AU1X00_SYS_ENDIAN(x) (*(volatile unsigned32*)(x + 0x38))
+#define AU1X00_SYS_POWERCTRL(x) (*(volatile unsigned32*)(x + 0x3c))
+#define AU1X00_SYS_TOYREAD(x) (*(volatile unsigned32*)(x + 0x40))
+#define AU1X00_SYS_RTCTRIM(x) (*(volatile unsigned32*)(x + 0x44))
+#define AU1X00_SYS_RTCWRITE(x) (*(volatile unsigned32*)(x + 0x48))
+#define AU1X00_SYS_RTCMATCH0(x) (*(volatile unsigned32*)(x + 0x4c))
+#define AU1X00_SYS_RTCMATCH1(x) (*(volatile unsigned32*)(x + 0x50))
+#define AU1X00_SYS_RTCMATCH2(x) (*(volatile unsigned32*)(x + 0x54))
+#define AU1X00_SYS_RTCREAD(x) (*(volatile unsigned32*)(x + 0x58))
+#define AU1X00_SYS_WAKESRC(x) (*(volatile unsigned32*)(x + 0x5c))
+#define AU1X00_SYS_SLPPWR(x) (*(volatile unsigned32*)(x + 0x78))
+#define AU1X00_SYS_SLEEP(x) (*(volatile unsigned32*)(x + 0x7c))
+
+#define AU1X00_SYS_CNTCTRL_ERS (bit(23))
+#define AU1X00_SYS_CNTCTRL_RTS (bit(20))
+#define AU1X00_SYS_CNTCTRL_RM2 (bit(19))
+#define AU1X00_SYS_CNTCTRL_RM1 (bit(18))
+#define AU1X00_SYS_CNTCTRL_RM0 (bit(17))
+#define AU1X00_SYS_CNTCTRL_RS (bit(16))
+#define AU1X00_SYS_CNTCTRL_BP (bit(14))
+#define AU1X00_SYS_CNTCTRL_REN (bit(13))
+#define AU1X00_SYS_CNTCTRL_BRT (bit(12))
+#define AU1X00_SYS_CNTCTRL_TEN (bit(11))
+#define AU1X00_SYS_CNTCTRL_BTT (bit(10))
+#define AU1X00_SYS_CNTCTRL_E0 (bit(8))
+#define AU1X00_SYS_CNTCTRL_ETS (bit(7))
+#define AU1X00_SYS_CNTCTRL_32S (bit(5))
+#define AU1X00_SYS_CNTCTRL_TTS (bit(4))
+#define AU1X00_SYS_CNTCTRL_TM2 (bit(3))
+#define AU1X00_SYS_CNTCTRL_TM1 (bit(2))
+#define AU1X00_SYS_CNTCTRL_TM0 (bit(1))
+#define AU1X00_SYS_CNTCTRL_TS (bit(0))
+#define AU1X00_SYS_WAKEMSK_M20 (bit(8))
+
+#define AU1X00_MAC_CONTROL(x) (*(volatile unsigned32*)(x + 0x00))
+#define AU1X00_MAC_ADDRHIGH(x) (*(volatile unsigned32*)(x + 0x04))
+#define AU1X00_MAC_ADDRLOW(x) (*(volatile unsigned32*)(x + 0x08))
+#define AU1X00_MAC_HASHHIGH(x) (*(volatile unsigned32*)(x + 0x0c))
+#define AU1X00_MAC_HASHLOW(x) (*(volatile unsigned32*)(x + 0x10))
+#define AU1X00_MAC_MIICTRL(x) (*(volatile unsigned32*)(x + 0x14))
+#define AU1X00_MAC_MIIDATA(x) (*(volatile unsigned32*)(x + 0x18))
+#define AU1X00_MAC_FLOWCTRL(x) (*(volatile unsigned32*)(x + 0x1c))
+#define AU1X00_MAC_VLAN1(x) (*(volatile unsigned32*)(x + 0x20))
+#define AU1X00_MAC_VLAN2(x) (*(volatile unsigned32*)(x + 0x24))
+#define AU1X00_MAC_EN0 (*(volatile unsigned32*)(AU1X00_MACEN_ADDR + 0x0))
+#define AU1X00_MAC_EN1 (*(volatile unsigned32*)(AU1X00_MACEN_ADDR + 0x4))
+#define AU1X00_MAC_DMA_TX0_ADDR(x) (*(volatile unsigned32*)(x + 0x000))
+#define AU1X00_MAC_DMA_TX1_ADDR(x) (*(volatile unsigned32*)(x + 0x010))
+#define AU1X00_MAC_DMA_TX2_ADDR(x) (*(volatile unsigned32*)(x + 0x020))
+#define AU1X00_MAC_DMA_TX3_ADDR(x) (*(volatile unsigned32*)(x + 0x030))
+#define AU1X00_MAC_DMA_RX0_ADDR(x) (*(volatile unsigned32*)(x + 0x100))
+#define AU1X00_MAC_DMA_RX0_ADDR(x) (*(volatile unsigned32*)(x + 0x110))
+#define AU1X00_MAC_DMA_RX0_ADDR(x) (*(volatile unsigned32*)(x + 0x120))
+#define AU1X00_MAC_DMA_RX0_ADDR(x) (*(volatile unsigned32*)(x + 0x130))
+
+typedef struct {
+ volatile unsigned32 stat;
+ volatile unsigned32 addr;
+ unsigned32 _rsv0;
+ unsigned32 _rsv1;
+} au1x00_macdma_rx_t;
+
+
+typedef struct {
+ volatile unsigned32 stat;
+ volatile unsigned32 addr;
+ volatile unsigned32 len;
+ unsigned32 _rsv0;
+} au1x00_macdma_tx_t;
+
+#define AU1X00_MAC_CTRL_RA (bit(31))
+#define AU1X00_MAC_CTRL_EM (bit(30))
+#define AU1X00_MAC_CTRL_DO (bit(23))
+#define AU1X00_MAC_CTRL_LM(x) ((x) << 21)
+#define AU1X00_MAC_CTRL_LM_NORMAL ((0) << 21)
+#define AU1X00_MAC_CTRL_LM_INTERNAL ((1) << 21)
+#define AU1X00_MAC_CTRL_LM_EXTERNAL ((2) << 21)
+#define AU1X00_MAC_CTRL_F (bit(20))
+#define AU1X00_MAC_CTRL_PM (bit(19))
+#define AU1X00_MAC_CTRL_PR (bit(18))
+#define AU1X00_MAC_CTRL_IF (bit(17))
+#define AU1X00_MAC_CTRL_PB (bit(16))
+#define AU1X00_MAC_CTRL_HO (bit(15))
+#define AU1X00_MAC_CTRL_HP (bit(13))
+#define AU1X00_MAC_CTRL_LC (bit(12))
+#define AU1X00_MAC_CTRL_DB (bit(11))
+#define AU1X00_MAC_CTRL_DR (bit(10))
+#define AU1X00_MAC_CTRL_AP (bit(8))
+#define AU1X00_MAC_CTRL_BL(x) ((x) << 6)
+#define AU1X00_MAC_CTRL_DC (bit(5))
+#define AU1X00_MAC_CTRL_TE (bit(3))
+#define AU1X00_MAC_CTRL_RE (bit(2))
+
+#define AU1X00_MAC_EN_JP (bit(6))
+#define AU1X00_MAC_EN_E2 (bit(5))
+#define AU1X00_MAC_EN_E1 (bit(4))
+#define AU1X00_MAC_EN_C (bit(3))
+#define AU1X00_MAC_EN_TS (bit(2))
+#define AU1X00_MAC_EN_E0 (bit(1))
+#define AU1X00_MAC_EN_CE (bit(0))
+
+#define AU1X00_MAC_ADDRHIGH_MASK (0xffff)_
+#define AU1X00_MAC_MIICTRL_PHYADDR(x) ((x & 0x1f) << 11)
+#define AU1X00_MAC_MIICTRL_MIIREG(x) ((x & 0x1f) << 6)
+#define AU1X00_MAC_MIICTRL_MW (bit(1))
+#define AU1X00_MAC_MIICTRL_MB (bit(0))
+#define AU1X00_MAC_MIIDATA_MASK (0xffff)
+#define AU1X00_MAC_FLOWCTRL_PT(x) (((x) & 0xffff) << 16)
+#define AU1X00_MAC_FLOWCTRL_PC (bit(2))
+#define AU1X00_MAC_FLOWCTRL_FE (bit(1))
+#define AU1X00_MAC_FLOWCTRL_FB (bit(0))
+
+#define AU1X00_MAC_DMA_RXSTAT_MI (bit(31))
+#define AU1X00_MAC_DMA_RXSTAT_PF (bit(30))
+#define AU1X00_MAC_DMA_RXSTAT_FF (bit(29))
+#define AU1X00_MAC_DMA_RXSTAT_BF (bit(28))
+#define AU1X00_MAC_DMA_RXSTAT_MF (bit(27))
+#define AU1X00_MAC_DMA_RXSTAT_UC (bit(26))
+#define AU1X00_MAC_DMA_RXSTAT_CF (bit(25))
+#define AU1X00_MAC_DMA_RXSTAT_LE (bit(24))
+#define AU1X00_MAC_DMA_RXSTAT_V2 (bit(23))
+#define AU1X00_MAC_DMA_RXSTAT_V1 (bit(22))
+#define AU1X00_MAC_DMA_RXSTAT_CR (bit(21))
+#define AU1X00_MAC_DMA_RXSTAT_DB (bit(20))
+#define AU1X00_MAC_DMA_RXSTAT_ME (bit(19))
+#define AU1X00_MAC_DMA_RXSTAT_FT (bit(18))
+#define AU1X00_MAC_DMA_RXSTAT_CS (bit(17))
+#define AU1X00_MAC_DMA_RXSTAT_FL (bit(16))
+#define AU1X00_MAC_DMA_RXSTAT_RF (bit(15))
+#define AU1X00_MAC_DMA_RXSTAT_WT (bit(14))
+#define AU1X00_MAC_DMA_RXSTAT_LEN(x) ((x) & 0x3fff)
+#define AU1X00_MAC_DMA_RXADDR_ADDR(x) ((x) & ~0x1f)
+#define AU1X00_MAC_DMA_RXADDR_CB_MASK (0x3 << 0x2)
+#define AU1X00_MAC_DMA_RXADDR_DN (bit(1))
+#define AU1X00_MAC_DMA_RXADDR_EN (bit(0))
+
+
+#define AU1X00_MAC_DMA_TXSTAT_PR (bit(31))
+#define AU1X00_MAC_DMA_TXSTAT_CC_MASK (0xf << 10)
+#define AU1X00_MAC_DMA_TXSTAT_LO (bit(9))
+#define AU1X00_MAC_DMA_TXSTAT_DF (bit(8))
+#define AU1X00_MAC_DMA_TXSTAT_UR (bit(7))
+#define AU1X00_MAC_DMA_TXSTAT_EC (bit(6))
+#define AU1X00_MAC_DMA_TXSTAT_LC (bit(5))
+#define AU1X00_MAC_DMA_TXSTAT_ED (bit(4))
+#define AU1X00_MAC_DMA_TXSTAT_LS (bit(3))
+#define AU1X00_MAC_DMA_TXSTAT_NC (bit(2))
+#define AU1X00_MAC_DMA_TXSTAT_JT (bit(1))
+#define AU1X00_MAC_DMA_TXSTAT_FA (bit(0))
+#define AU1X00_MAC_DMA_TXADDR_ADDR(x) ((x) & ~0x1f)
+#define AU1X00_MAC_DMA_TXADDR_CB_MASK (0x3 << 0x2)
+#define AU1X00_MAC_DMA_TXADDR_DN (bit(1))
+#define AU1X00_MAC_DMA_TXADDR_EN (bit(0))
+
+
+
+typedef struct {
+ volatile unsigned long rxdata;
+ volatile unsigned long txdata;
+ volatile unsigned long inten;
+ volatile unsigned long intcause;
+ volatile unsigned long fifoctrl;
+ volatile unsigned long linectrl;
+ volatile unsigned long mdmctrl;
+ volatile unsigned long linestat;
+ volatile unsigned long mdmstat;
+ volatile unsigned long clkdiv;
+ volatile unsigned long _resv[54];
+ volatile unsigned long enable;
+} au1x00_uart_t;
+
+extern au1x00_uart_t *uart0;
+extern au1x00_uart_t *uart3;
+
+/*
+ * Interrupt Vector Numbers
+ *
+ */
+/* MIPS_INTERRUPT_BASE should be 32 (0x20) */
+#define AU1X00_IRQ_SW0 (MIPS_INTERRUPT_BASE + 0)
+#define AU1X00_IRQ_SW1 (MIPS_INTERRUPT_BASE + 1)
+#define AU1X00_IRQ_IC0_REQ0 (MIPS_INTERRUPT_BASE + 2)
+#define AU1X00_IRQ_IC0_REQ1 (MIPS_INTERRUPT_BASE + 3)
+#define AU1X00_IRQ_IC1_REQ0 (MIPS_INTERRUPT_BASE + 4)
+#define AU1X00_IRQ_IC1_REQ1 (MIPS_INTERRUPT_BASE + 5)
+#define AU1X00_IRQ_PERF (MIPS_INTERRUPT_BASE + 6)
+#define AU1X00_IRQ_CNT (MIPS_INTERRUPT_BASE + 7)
+
+#define AU1X00_IRQ_IC0_BASE (MIPS_INTERRUPT_BASE + 8)
+#define AU1X00_IRQ_UART0 (MIPS_INTERRUPT_BASE + 8)
+#define AU1X00_IRQ_INTA (MIPS_INTERRUPT_BASE + 9)
+#define AU1X00_IRQ_INTB (MIPS_INTERRUPT_BASE + 10)
+#define AU1X00_IRQ_UART3 (MIPS_INTERRUPT_BASE + 11)
+#define AU1X00_IRQ_INTC (MIPS_INTERRUPT_BASE + 12)
+#define AU1X00_IRQ_INTD (MIPS_INTERRUPT_BASE + 13)
+#define AU1X00_IRQ_DMA0 (MIPS_INTERRUPT_BASE + 14)
+#define AU1X00_IRQ_DMA1 (MIPS_INTERRUPT_BASE + 15)
+#define AU1X00_IRQ_DMA2 (MIPS_INTERRUPT_BASE + 16)
+#define AU1X00_IRQ_DMA3 (MIPS_INTERRUPT_BASE + 17)
+#define AU1X00_IRQ_DMA4 (MIPS_INTERRUPT_BASE + 18)
+#define AU1X00_IRQ_DMA5 (MIPS_INTERRUPT_BASE + 19)
+#define AU1X00_IRQ_DMA6 (MIPS_INTERRUPT_BASE + 20)
+#define AU1X00_IRQ_DMA7 (MIPS_INTERRUPT_BASE + 21)
+#define AU1X00_IRQ_TOY_TICK (MIPS_INTERRUPT_BASE + 22)
+#define AU1X00_IRQ_TOY_MATCH0 (MIPS_INTERRUPT_BASE + 23)
+#define AU1X00_IRQ_TOY_MATCH1 (MIPS_INTERRUPT_BASE + 24)
+#define AU1X00_IRQ_TOY_MATCH2 (MIPS_INTERRUPT_BASE + 25)
+#define AU1X00_IRQ_RTC_TICK (MIPS_INTERRUPT_BASE + 26)
+#define AU1X00_IRQ_RTC_MATCH0 (MIPS_INTERRUPT_BASE + 27)
+#define AU1X00_IRQ_RTC_MATCH1 (MIPS_INTERRUPT_BASE + 28)
+#define AU1X00_IRQ_RTC_MATCH2 (MIPS_INTERRUPT_BASE + 29)
+#define AU1X00_IRQ_PCI_ERR (MIPS_INTERRUPT_BASE + 30)
+#define AU1X00_IRQ_RSV0 (MIPS_INTERRUPT_BASE + 31)
+#define AU1X00_IRQ_USB_DEV (MIPS_INTERRUPT_BASE + 32)
+#define AU1X00_IRQ_USB_SUSPEND (MIPS_INTERRUPT_BASE + 33)
+#define AU1X00_IRQ_USB_HOST (MIPS_INTERRUPT_BASE + 34)
+#define AU1X00_IRQ_AC97_ACSYNC (MIPS_INTERRUPT_BASE + 35)
+#define AU1X00_IRQ_MAC0 (MIPS_INTERRUPT_BASE + 36)
+#define AU1X00_IRQ_MAC1 (MIPS_INTERRUPT_BASE + 37)
+#define AU1X00_IRQ_RSV1 (MIPS_INTERRUPT_BASE + 38)
+#define AU1X00_IRQ_AC97_CMD (MIPS_INTERRUPT_BASE + 39)
+
+#define AU1X00_IRQ_IC1_BASE (MIPS_INTERRUPT_BASE + 40)
+#define AU1X00_IRQ_GPIO0 (MIPS_INTERRUPT_BASE + 40)
+#define AU1X00_IRQ_GPIO1 (MIPS_INTERRUPT_BASE + 41)
+#define AU1X00_IRQ_GPIO2 (MIPS_INTERRUPT_BASE + 42)
+#define AU1X00_IRQ_GPIO3 (MIPS_INTERRUPT_BASE + 43)
+#define AU1X00_IRQ_GPIO4 (MIPS_INTERRUPT_BASE + 44)
+#define AU1X00_IRQ_GPIO5 (MIPS_INTERRUPT_BASE + 45)
+#define AU1X00_IRQ_GPIO6 (MIPS_INTERRUPT_BASE + 46)
+#define AU1X00_IRQ_GPIO7 (MIPS_INTERRUPT_BASE + 47)
+#define AU1X00_IRQ_GPIO8 (MIPS_INTERRUPT_BASE + 48)
+#define AU1X00_IRQ_GPIO9 (MIPS_INTERRUPT_BASE + 49)
+#define AU1X00_IRQ_GPIO10 (MIPS_INTERRUPT_BASE + 50)
+#define AU1X00_IRQ_GPIO11 (MIPS_INTERRUPT_BASE + 51)
+#define AU1X00_IRQ_GPIO12 (MIPS_INTERRUPT_BASE + 52)
+#define AU1X00_IRQ_GPIO13 (MIPS_INTERRUPT_BASE + 53)
+#define AU1X00_IRQ_GPIO14 (MIPS_INTERRUPT_BASE + 54)
+#define AU1X00_IRQ_GPIO15 (MIPS_INTERRUPT_BASE + 55)
+#define AU1X00_IRQ_GPIO200 (MIPS_INTERRUPT_BASE + 56)
+#define AU1X00_IRQ_GPIO201 (MIPS_INTERRUPT_BASE + 57)
+#define AU1X00_IRQ_GPIO202 (MIPS_INTERRUPT_BASE + 58)
+#define AU1X00_IRQ_GPIO203 (MIPS_INTERRUPT_BASE + 59)
+#define AU1X00_IRQ_GPIO20 (MIPS_INTERRUPT_BASE + 60)
+#define AU1X00_IRQ_GPIO204 (MIPS_INTERRUPT_BASE + 61)
+#define AU1X00_IRQ_GPIO205 (MIPS_INTERRUPT_BASE + 62)
+#define AU1X00_IRQ_GPIO23 (MIPS_INTERRUPT_BASE + 63)
+#define AU1X00_IRQ_GPIO24 (MIPS_INTERRUPT_BASE + 64)
+#define AU1X00_IRQ_GPIO25 (MIPS_INTERRUPT_BASE + 65)
+#define AU1X00_IRQ_GPIO26 (MIPS_INTERRUPT_BASE + 66)
+#define AU1X00_IRQ_GPIO27 (MIPS_INTERRUPT_BASE + 67)
+#define AU1X00_IRQ_GPIO28 (MIPS_INTERRUPT_BASE + 68)
+#define AU1X00_IRQ_GPIO206 (MIPS_INTERRUPT_BASE + 69)
+#define AU1X00_IRQ_GPIO207 (MIPS_INTERRUPT_BASE + 70)
+#define AU1X00_IRQ_GPIO208_215 (MIPS_INTERRUPT_BASE + 71)
+
+#define AU1X00_MAXIMUM_VECTORS (MIPS_INTERRUPT_BASE + 72)
+
+void static inline au_sync(void)
+{
+ __asm__ volatile ("sync");
+}
+
+#endif
diff --git a/c/src/lib/libcpu/mips/au1x00/vectorisrs/maxvectors.c b/c/src/lib/libcpu/mips/au1x00/vectorisrs/maxvectors.c
new file mode 100644
index 0000000000..8355ebae63
--- /dev/null
+++ b/c/src/lib/libcpu/mips/au1x00/vectorisrs/maxvectors.c
@@ -0,0 +1,23 @@
+/*
+ * This file contains the maximum number of vectors. This can not
+ * be determined without knowing the RTEMS CPU model.
+ *
+ * COPYRIGHT (c) 1989-2000.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * maxvectors.c,v 1.1 2001/05/24 19:54:22 joel Exp
+ */
+
+/*
+ * Reserve first 32 for exceptions.
+ */
+
+#include <rtems.h>
+#include <libcpu/au1x00.h>
+
+unsigned int mips_interrupt_number_of_vectors = AU1X00_MAXIMUM_VECTORS;
+
diff --git a/c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c b/c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c
new file mode 100644
index 0000000000..01256e38ad
--- /dev/null
+++ b/c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c
@@ -0,0 +1,174 @@
+/*
+ * Au1x00 Interrupt Vectoring
+ *
+ * Copyright (c) 2005 by Cogent Computer Systems
+ * Written by Jay Monkman <jtm@lopingdog.com>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ *
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
+#include <rtems.h>
+#include <stdlib.h>
+#include <libcpu/au1x00.h>
+
+void mips_default_isr( int vector );
+static void call_vectored_isr(CPU_Interrupt_frame *, unsigned32 , void *);
+
+#define CALL_ISR(_vector,_frame) \
+ do { \
+ if ( _ISR_Vector_table[_vector] ) \
+ (_ISR_Vector_table[_vector])(_vector,_frame); \
+ else \
+ mips_default_isr(_vector); \
+ } while (0)
+
+#include <rtems/bspIo.h> /* for printk */
+
+void mips_vector_isr_handlers( CPU_Interrupt_frame *frame )
+{
+ unsigned int sr;
+ unsigned int cause;
+
+ mips_get_sr( sr );
+ mips_get_cause( cause );
+
+ cause &= (sr & SR_IMASK);
+ cause >>= CAUSE_IPSHIFT;
+
+ /* count/compare interrupt */
+ if ( cause & 0x80 ) {
+ unsigned long zero = 0;
+ /*
+ * I don't see a good way to disable the compare
+ * interrupt, so let's just ignore it.
+ */
+ asm volatile ("mtc0 %0, $11\n" :: "r" (zero));
+
+/* CALL_ISR( AU1X00_IRQ_CNT, frame ); */
+ }
+
+ /* Performance counter */
+ if ( cause & 0x40 ) {
+ CALL_ISR( AU1X00_IRQ_PERF, frame );
+ }
+
+ /* Interrupt controller 0 */
+ if ( cause & 0x0c ) {
+ call_vectored_isr(frame, cause, (void *)AU1X00_IC0_ADDR);
+ }
+
+ /* Interrupt controller 1 */
+ if ( cause & 0x30 ) {
+ call_vectored_isr(frame, cause, (void *)AU1X00_IC1_ADDR);
+ }
+
+ /* SW[0] */
+ if ( cause & 0x01 )
+ CALL_ISR( AU1X00_IRQ_SW0, frame );
+
+ /* SW[1] */
+ if ( cause & 0x02 )
+ CALL_ISR( AU1X00_IRQ_SW1, frame );
+}
+
+void mips_default_isr( int vector )
+{
+ unsigned int sr;
+ unsigned int cause;
+
+ mips_get_sr( sr );
+ mips_get_cause( cause );
+
+ printk( "Unhandled isr exception: vector 0x%02x, cause 0x%08X, sr 0x%08X\n",
+ vector, cause, sr );
+ rtems_fatal_error_occurred(1);
+}
+
+static void call_vectored_isr(
+ CPU_Interrupt_frame *frame,
+ unsigned32 cause,
+ void *ctrlr
+ )
+{
+ unsigned32 src;
+ unsigned32 mask;
+ int index;
+
+ /* get mask register */
+ mask = AU1X00_IC_MASKRD(ctrlr);
+
+ /* check request 0 */
+ src = AU1X00_IC_REQ0INT(ctrlr);
+ src = src & mask;
+ index = 0;
+ while (src) {
+ /* check LSB */
+ if (src & 1) {
+ /* clear rising/falling edge detects */
+ AU1X00_IC_RISINGCLR(ctrlr) = (1 << index);
+ AU1X00_IC_FALLINGCLR(ctrlr) = (1 << index);
+ au_sync();
+ CALL_ISR(AU1X00_IRQ_IC0_BASE + index, frame);
+ }
+ index ++;
+
+ /* shift, and make sure MSB is clear */
+ src = (src >> 1) & 0x7fffffff;
+ }
+
+ /* check request 1 */
+ src = AU1X00_IC_REQ1INT(ctrlr);
+ src = src & mask;
+ index = 0;
+ while (src) {
+ /* check LSB */
+ if (src & 1) {
+ /* clear rising/falling edge detects */
+ AU1X00_IC_RISINGCLR(ctrlr) = (1 << index);
+ AU1X00_IC_FALLINGCLR(ctrlr) = (1 << index);
+ au_sync();
+ CALL_ISR(AU1X00_IRQ_IC0_BASE + index, frame);
+ }
+ index ++;
+
+ /* shift, and make sure MSB is clear */
+ src = (src >> 1) & 0x7fffffff;
+ }
+}
+
+/* Generate a software interrupt */
+int assert_sw_irq(unsigned32 irqnum)
+{
+ unsigned32 cause;
+
+ if (irqnum <= 1) {
+ mips_get_cause(cause);
+ cause = cause | ((irqnum + 1) << CAUSE_IPSHIFT);
+ mips_set_cause(cause);
+
+ return irqnum;
+ } else {
+ return -1;
+ }
+}
+
+/* Clear a software interrupt */
+int negate_sw_irq(unsigned32 irqnum)
+{
+ unsigned32 cause;
+
+ if (irqnum <= 1) {
+ mips_get_cause(cause);
+ cause = cause & ~((irqnum + 1) << CAUSE_IPSHIFT);
+ mips_set_cause(cause);
+
+ return irqnum;
+ } else {
+ return -1;
+ }
+}
diff --git a/c/src/lib/libcpu/mips/configure.ac b/c/src/lib/libcpu/mips/configure.ac
index dcf74a4789..06c65fa256 100644
--- a/c/src/lib/libcpu/mips/configure.ac
+++ b/c/src/lib/libcpu/mips/configure.ac
@@ -30,8 +30,11 @@ AM_CONDITIONAL(tx39, test "$RTEMS_CPU_MODEL" = "tx3904")
AM_CONDITIONAL(mongoosev, test "$RTEMS_CPU_MODEL" = "mongoosev")
+AM_CONDITIONAL(au1x00, test "$RTEMS_CPU_MODEL" = "au1x00")
+
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile
+au1x00/Makefile
mongoosev/Makefile
shared/Makefile
r46xx/Makefile
diff --git a/c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c b/c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c
index 5c2fb62abc..1be985a8b4 100644
--- a/c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c
+++ b/c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c
@@ -18,6 +18,17 @@ void mips_install_isr_entries( void )
memcpy( (void *)DB_VEC, exc_dbg_code, 40 );
memcpy( (void *)E_VEC, exc_norm_code, 40 ); /* exception vevtor */
+#elif __mips == 32
+ void exc_tlb_code(void);
+ void exc_xtlb_code(void);
+ void exc_cache_code(void);
+ void exc_norm_code(void);
+
+ memcpy( (void *)T_VEC, exc_tlb_code, 40 ); /* tlbmiss vector */
+ memcpy( (void *)X_VEC, exc_xtlb_code, 40 ); /* xtlbmiss vector */
+ memcpy( (void *)C_VEC, exc_cache_code, 40 ); /* cache error vector */
+ memcpy( (void *)E_VEC, exc_norm_code, 40 ); /* exception vector */
+
#elif __mips == 3
void exc_tlb_code(void);
void exc_xtlb_code(void);
diff --git a/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S b/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S
index 43351dd1d4..89fc538e49 100644
--- a/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S
+++ b/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S
@@ -41,6 +41,36 @@ FRAME(exc_utlb_code,sp,0,ra)
ENDFRAME(exc_utlb_code)
/*
+ * MIPS ISA Level 32
+ * XXX Again, reliance on SIM. Not good.??????????
+ */
+#elif __mips == 32
+FRAME(exc_tlb_code,sp,0,ra)
+ la k0, _ISR_Handler
+ j k0
+ nop
+ENDFRAME(exc_tlb_code)
+
+FRAME(exc_xtlb_code,sp,0,ra)
+ la k0, _ISR_Handler
+ j k0
+ nop
+
+ENDFRAME(exc_xtlb_code)
+
+FRAME(exc_cache_code,sp,0,ra)
+ la k0, _ISR_Handler
+ j k0
+ nop
+ENDFRAME(exc_cache_code)
+
+FRAME(exc_norm_code,sp,0,ra)
+ la k0, _ISR_Handler /* generic external int hndlr */
+ j k0
+ nop
+ENDFRAME(exc_norm_code)
+
+/*
* MIPS ISA Level 3
* XXX Again, reliance on SIM. Not good.
*/