You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2019/04/12 08:26:45 UTC

[mynewt-core] branch master updated (280bf99 -> 6d46d02)

This is an automated email from the ASF dual-hosted git repository.

andk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git.


    from 280bf99  Merge pull request #1750 from iandmorris/ian-dev1
     new 521e03e  hw/mcu/dialog: Add PDC helper to ack all M33 pending entries
     new f449a34  hw/mcu/dialog: Add PDC helper to check if PDC entry is pending
     new 6544b04  hw/mcu/dialog: Add API to control power domains
     new 69930c0  hw/mcu/dialog: Remap intvect to 0x0
     new 284eac3  hw/mcu/dialog: Add support for M33 deep sleep
     new fd49a58  hw/mcu/dialog: Enable cache retainability
     new 4d07ff0  hw/mcu/dialog: Put OTPC to deep standby
     new 7655c94  hw/mcu/dialog: Disable QSPI clock in deep sleep
     new f191d20  hw/mcu/dialog: Remove redundant PDC ack in CMAC driver
     new 176a3cc  hw/mcu/dialog: Configure power rails
     new 8222e46  hw/mcu/dialog: Add option to enable DCDC
     new 7e164b4  hw/bsp/dialog: Enable DCDC by default
     new 8391c5e  hw/mcu/dialog: Add hal_gpio_deinit
     new 44ffb51  hw/mcu/dialog: Improve GPIO latching
     new 6d46d02  hw/mcu/dialog: Fix FPU state store/restore

The 8792 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../dialog_da1469x-dk-pro_download.sh              |   1 +
 .../src/arch/cortex_m33/gcc_startup_da1469x.S      |  51 ++--
 hw/bsp/dialog_da1469x-dk-pro/syscfg.yml            |   1 +
 hw/mcu/dialog/da1469x/da1469x.ld                   |  13 +-
 hw/mcu/dialog/da1469x/da1469x_ram_resident.ld      |   6 +-
 .../include/mcu/{cortex_m33.h => da1469x_pd.h}     |  20 +-
 hw/mcu/dialog/da1469x/include/mcu/da1469x_pdc.h    |  19 ++
 .../mcu/dialog/da1469x/include/mcu/da1469x_prail.h |  27 ++-
 hw/mcu/dialog/da1469x/include/mcu/mcu.h            |   2 +
 .../src/arch/cortex_m33/da1469x_m33_sleep.S        | 259 +++++++++++++++++++++
 hw/mcu/dialog/da1469x/src/da1469x_cmac.c           |  29 +--
 hw/mcu/dialog/da1469x/src/da1469x_pd.c             | 126 ++++++++++
 hw/mcu/dialog/da1469x/src/da1469x_pdc.c            |  12 +
 hw/mcu/dialog/da1469x/src/da1469x_prail.c          | 155 ++++++++++++
 .../dialog/da1469x/src/da1469x_priv.h}             |  16 +-
 hw/mcu/dialog/da1469x/src/da1469x_sleep.c          | 107 +++++++++
 hw/mcu/dialog/da1469x/src/hal_gpio.c               |  29 +++
 hw/mcu/dialog/da1469x/src/hal_os_tick.c            |   4 +-
 hw/mcu/dialog/da1469x/src/hal_system.c             |  16 +-
 hw/mcu/dialog/da1469x/src/system_da1469x.c         |  72 +++++-
 hw/mcu/dialog/da1469x/syscfg.yml                   |  13 ++
 21 files changed, 897 insertions(+), 81 deletions(-)
 copy hw/mcu/dialog/da1469x/include/mcu/{cortex_m33.h => da1469x_pd.h} (65%)
 copy kernel/os/include/os/os_fault.h => hw/mcu/dialog/da1469x/include/mcu/da1469x_prail.h (72%)
 create mode 100644 hw/mcu/dialog/da1469x/src/arch/cortex_m33/da1469x_m33_sleep.S
 create mode 100644 hw/mcu/dialog/da1469x/src/da1469x_pd.c
 create mode 100644 hw/mcu/dialog/da1469x/src/da1469x_prail.c
 copy hw/{bsp/frdm-k64f/include/bsp/bsp.h => mcu/dialog/da1469x/src/da1469x_priv.h} (79%)
 mode change 100644 => 100755
 create mode 100644 hw/mcu/dialog/da1469x/src/da1469x_sleep.c