├── .gitignore ├── LICENSE ├── Makefile.am ├── README.md ├── configure.ac ├── include ├── Makefile.am └── xtensa │ ├── cacheasm.h │ ├── cacheattrasm.h │ ├── config │ ├── core-isa.h │ ├── core-matmap.h │ ├── core.h │ ├── defs.h │ ├── specreg.h │ ├── system.h │ ├── tie-asm.h │ └── tie.h │ ├── coreasm.h │ ├── corebits.h │ ├── hal.h │ └── xtensa-xer.h └── src ├── Makefile.am ├── attribute.c ├── cache.c ├── cache_asm.S ├── clock.S ├── coherence.c ├── debug.c ├── debug_hndlr.S ├── disass.c ├── int_asm.S ├── interrupts.c ├── mem_ecc_parity.S ├── memcopy.S ├── misc.c ├── mmu.c ├── mp_asm.S ├── state.c ├── state_asm.S ├── syscache_asm.S └── windowspill_asm.S /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/configure.ac -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/xtensa/cacheasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/cacheasm.h -------------------------------------------------------------------------------- /include/xtensa/cacheattrasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/cacheattrasm.h -------------------------------------------------------------------------------- /include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /include/xtensa/config/core-matmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/config/core-matmap.h -------------------------------------------------------------------------------- /include/xtensa/config/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/config/core.h -------------------------------------------------------------------------------- /include/xtensa/config/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/config/defs.h -------------------------------------------------------------------------------- /include/xtensa/config/specreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/config/specreg.h -------------------------------------------------------------------------------- /include/xtensa/config/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/config/system.h -------------------------------------------------------------------------------- /include/xtensa/config/tie-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/config/tie-asm.h -------------------------------------------------------------------------------- /include/xtensa/config/tie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/config/tie.h -------------------------------------------------------------------------------- /include/xtensa/coreasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/coreasm.h -------------------------------------------------------------------------------- /include/xtensa/corebits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/corebits.h -------------------------------------------------------------------------------- /include/xtensa/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/hal.h -------------------------------------------------------------------------------- /include/xtensa/xtensa-xer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/include/xtensa/xtensa-xer.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/attribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/attribute.c -------------------------------------------------------------------------------- /src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/cache.c -------------------------------------------------------------------------------- /src/cache_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/cache_asm.S -------------------------------------------------------------------------------- /src/clock.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/clock.S -------------------------------------------------------------------------------- /src/coherence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/coherence.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/debug_hndlr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/debug_hndlr.S -------------------------------------------------------------------------------- /src/disass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/disass.c -------------------------------------------------------------------------------- /src/int_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/int_asm.S -------------------------------------------------------------------------------- /src/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/interrupts.c -------------------------------------------------------------------------------- /src/mem_ecc_parity.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/mem_ecc_parity.S -------------------------------------------------------------------------------- /src/memcopy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/memcopy.S -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/mmu.c -------------------------------------------------------------------------------- /src/mp_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/mp_asm.S -------------------------------------------------------------------------------- /src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/state.c -------------------------------------------------------------------------------- /src/state_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/state_asm.S -------------------------------------------------------------------------------- /src/syscache_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/syscache_asm.S -------------------------------------------------------------------------------- /src/windowspill_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/lx106-hal/HEAD/src/windowspill_asm.S --------------------------------------------------------------------------------