You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/11/23 18:52:20 UTC

[57/70] [abbrv] incubator-mynewt-core git commit: This closes #123.

This closes #123.

Merge branch 'julian_dev' of https://github.com/IMGJulian/incubator-mynewt-core into develop


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/f8877700
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/f8877700
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/f8877700

Branch: refs/heads/master
Commit: f8877700cd69f46a1e80821729945a0416e44b40
Parents: 55570f1 0c25b70
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Tue Nov 22 08:06:17 2016 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Tue Nov 22 08:06:17 2016 -0800

----------------------------------------------------------------------
 compiler/mips/compiler.yml                      |  34 ++
 compiler/mips/pkg.yml                           |  28 ++
 compiler/sim-mips/compiler.yml                  |  38 ++
 compiler/sim-mips/pkg.yml                       |  29 ++
 hw/bsp/ci40/bsp.yml                             |  54 +++
 hw/bsp/ci40/include/bsp/bsp.h                   |  55 +++
 hw/bsp/ci40/include/bsp/bsp_sysid.h             |  36 ++
 hw/bsp/ci40/pkg.yml                             |  33 ++
 hw/bsp/ci40/src/hal_bsp.c                       |  28 ++
 hw/bsp/ci40/src/os_bsp.c                        |  57 +++
 hw/bsp/ci40/src/sbrk.c                          |  51 ++
 hw/bsp/ci40/syscfg.yml                          |  14 +
 hw/bsp/ci40/uhi32.ld                            | 307 ++++++++++++
 hw/hal/include/hal/hal_uart.h                   |   1 +
 hw/mcu/mips/danube/include/mcu/mips.h           |  25 +
 hw/mcu/mips/danube/include/mcu/mips_bsp.h       |  24 +
 hw/mcu/mips/danube/include/mcu/mips_hal.h       |  38 ++
 hw/mcu/mips/danube/pkg.yml                      |  30 ++
 hw/mcu/mips/danube/src/gic.c                    | 124 +++++
 hw/mcu/mips/danube/src/gic.h                    |  16 +
 hw/mcu/mips/danube/src/hal_os_tick.c            |  36 ++
 hw/mcu/mips/danube/src/hal_system.c             |  35 ++
 hw/mcu/mips/danube/src/hal_uart.c               | 306 ++++++++++++
 hw/mcu/mips/danube/src/hal_watchdog.c           |  39 ++
 kernel/os/include/os/arch/mips/os/os_arch.h     |  80 ++++
 kernel/os/include/os/arch/sim-mips/os/os_arch.h |  74 +++
 kernel/os/src/arch/mips/asm/ctx.S               | 197 ++++++++
 kernel/os/src/arch/mips/asm/excpt_isr.S         | 100 ++++
 kernel/os/src/arch/mips/os_arch_mips.c          | 183 ++++++++
 kernel/os/src/arch/mips/os_fault.c              | 123 +++++
 kernel/os/src/arch/sim-mips/os_arch_sim.c       | 463 +++++++++++++++++++
 .../os/src/arch/sim-mips/os_arch_stack_frame.s  |  65 +++
 kernel/os/src/arch/sim-mips/os_fault.c          |  34 ++
 33 files changed, 2757 insertions(+)
----------------------------------------------------------------------