This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.
from 565964a driver: add clk framework
add 073c988 phyplus first submit
add c39ef44 1.phyplus update files to accord with the requirement of
chcekpatch.sh
No new revisions were added by this update.
Summary of changes:
arch/arm/Kconfig | 10 +
arch/arm/include/phy62xx/chip.h | 40 +
arch/arm/include/phy62xx/irq.h | 107 ++
arch/arm/include/phy62xx/phy62xx_irq.h | 104 ++
arch/arm/src/phy62xx/Kconfig | 27 +
arch/arm/src/phy62xx/Make.defs | 123 ++
arch/arm/src/phy62xx/bb_rom_sym_m0.gdbsym | 988 ++++++++++++++++
arch/arm/src/phy62xx/ble/ble_controller.h | 729 ++++++++++++
arch/arm/src/phy62xx/bus_dev.h | 133 +++
arch/arm/src/phy62xx/chip.h | 41 +
arch/arm/src/phy62xx/clock.c | 230 ++++
arch/arm/src/phy62xx/clock.h | 121 ++
arch/arm/src/phy62xx/core_bumbee_m0.h | 105 ++
arch/arm/src/phy62xx/error.h | 96 ++
arch/arm/src/phy62xx/flash.c | 328 ++++++
arch/arm/src/phy62xx/flash.h | 156 +++
arch/arm/src/phy62xx/global_config.h | 184 +++
arch/arm/src/phy62xx/gpio.c | 720 ++++++++++++
arch/arm/src/phy62xx/gpio.h | 209 ++++
arch/arm/src/phy62xx/idle.c | 95 ++
arch/arm/src/phy62xx/irq.c | 421 +++++++
arch/arm/src/phy62xx/jump_function.h | 627 +++++++++++
arch/arm/src/phy62xx/jump_table.c | 118 ++
arch/arm/src/phy62xx/log.h | 141 +++
arch/arm/src/phy62xx/mcu.h | 105 ++
arch/arm/src/phy62xx/mcu_phy_bumbee.h | 840 ++++++++++++++
arch/arm/src/phy62xx/my_printf.c | 477 ++++++++
arch/arm/src/phy62xx/phy6222_irq.h | 372 ++++++
arch/arm/src/phy62xx/phy62xx_ble.c | 330 ++++++
arch/arm/src/phy62xx/phy62xx_ble.h | 61 +
arch/arm/src/phy62xx/phy62xx_exception.S | 351 ++++++
arch/arm/src/phy62xx/phy62xx_hardfault.c | 130 +++
arch/arm/src/phy62xx/phy62xx_start.S | 51 +
arch/arm/src/phy62xx/phyplus_gpio.c | 416 +++++++
arch/arm/src/phy62xx/phyplus_gpio.h | 62 +
arch/arm/src/phy62xx/phyplus_stub.c | 820 ++++++++++++++
arch/arm/src/phy62xx/phyplus_stub.h | 37 +
arch/arm/src/phy62xx/phyplus_tim.c | 581 ++++++++++
arch/arm/src/phy62xx/phyplus_tim.h | 126 +++
arch/arm/src/phy62xx/phyplus_timer_lowerhalf.c | 621 ++++++++++
arch/arm/src/phy62xx/phyplus_timer_lowerhalf.h | 37 +
arch/arm/src/phy62xx/phyplus_timerisr.c | 98 ++
arch/arm/src/phy62xx/phyplus_timerisr.h | 19 +
arch/arm/src/phy62xx/pplus_mtd_flash.c | 384 +++++++
arch/arm/src/phy62xx/pplus_mtd_flash.h | 55 +
arch/arm/src/phy62xx/pwrmgr.c | 552 +++++++++
arch/arm/src/phy62xx/pwrmgr.h | 89 ++
arch/arm/src/phy62xx/rom_sym_def.h | 978 ++++++++++++++++
arch/arm/src/phy62xx/start.c | 199 ++++
arch/arm/src/phy62xx/start.h | 62 +
arch/arm/src/phy62xx/systick.c | 58 +
arch/arm/src/phy62xx/timer.c | 214 ++++
arch/arm/src/phy62xx/timer.h | 81 ++
arch/arm/src/phy62xx/types.h | 176 +++
arch/arm/src/phy62xx/uart.c | 1184 ++++++++++++++++++++
arch/arm/src/phy62xx/uart.h | 177 +++
arch/arm/src/phy62xx/version.h | 41 +
boards/Kconfig | 10 +
boards/arm/phy62xx/phy6222/Kconfig | 8 +
.../phy6222}/README.txt | 0
boards/arm/phy62xx/phy6222/configs/nsh/defconfig | 49 +
.../arm/phy62xx/phy6222/configs/phy_sbp/defconfig | 79 ++
boards/arm/phy62xx/phy6222/include/board.h | 36 +
boards/arm/phy62xx/phy6222/include/nsh_romfsimg.h | 110 ++
boards/arm/phy62xx/phy6222/scripts/Make.defs | 65 ++
boards/arm/phy62xx/phy6222/scripts/flash.ld | 185 +++
.../phy6222}/scripts/gnu-elf.ld | 0
boards/arm/phy62xx/phy6222/src/Makefile | 33 +
boards/arm/phy62xx/phy6222/src/appinit.c | 71 ++
boards/arm/phy62xx/phy6222/src/boot.c | 79 ++
boards/arm/phy62xx/phy6222/src/bringup.c | 150 +++
boards/arm/phy62xx/phy6222/src/buttons.c | 106 ++
boards/arm/phy62xx/phy6222/src/phy6222.h | 119 ++
boards/arm/phy62xx/phy6222/src/userleds.c | 66 ++
74 files changed, 16803 insertions(+)
create mode 100644 arch/arm/include/phy62xx/chip.h
create mode 100644 arch/arm/include/phy62xx/irq.h
create mode 100644 arch/arm/include/phy62xx/phy62xx_irq.h
create mode 100644 arch/arm/src/phy62xx/Kconfig
create mode 100644 arch/arm/src/phy62xx/Make.defs
create mode 100644 arch/arm/src/phy62xx/bb_rom_sym_m0.gdbsym
create mode 100644 arch/arm/src/phy62xx/ble/ble_controller.h
create mode 100644 arch/arm/src/phy62xx/bus_dev.h
create mode 100644 arch/arm/src/phy62xx/chip.h
create mode 100644 arch/arm/src/phy62xx/clock.c
create mode 100644 arch/arm/src/phy62xx/clock.h
create mode 100644 arch/arm/src/phy62xx/core_bumbee_m0.h
create mode 100644 arch/arm/src/phy62xx/error.h
create mode 100644 arch/arm/src/phy62xx/flash.c
create mode 100644 arch/arm/src/phy62xx/flash.h
create mode 100644 arch/arm/src/phy62xx/global_config.h
create mode 100644 arch/arm/src/phy62xx/gpio.c
create mode 100644 arch/arm/src/phy62xx/gpio.h
create mode 100644 arch/arm/src/phy62xx/idle.c
create mode 100644 arch/arm/src/phy62xx/irq.c
create mode 100644 arch/arm/src/phy62xx/jump_function.h
create mode 100644 arch/arm/src/phy62xx/jump_table.c
create mode 100644 arch/arm/src/phy62xx/log.h
create mode 100644 arch/arm/src/phy62xx/mcu.h
create mode 100644 arch/arm/src/phy62xx/mcu_phy_bumbee.h
create mode 100644 arch/arm/src/phy62xx/my_printf.c
create mode 100644 arch/arm/src/phy62xx/phy6222_irq.h
create mode 100644 arch/arm/src/phy62xx/phy62xx_ble.c
create mode 100644 arch/arm/src/phy62xx/phy62xx_ble.h
create mode 100644 arch/arm/src/phy62xx/phy62xx_exception.S
create mode 100644 arch/arm/src/phy62xx/phy62xx_hardfault.c
create mode 100644 arch/arm/src/phy62xx/phy62xx_start.S
create mode 100644 arch/arm/src/phy62xx/phyplus_gpio.c
create mode 100644 arch/arm/src/phy62xx/phyplus_gpio.h
create mode 100644 arch/arm/src/phy62xx/phyplus_stub.c
create mode 100644 arch/arm/src/phy62xx/phyplus_stub.h
create mode 100644 arch/arm/src/phy62xx/phyplus_tim.c
create mode 100644 arch/arm/src/phy62xx/phyplus_tim.h
create mode 100644 arch/arm/src/phy62xx/phyplus_timer_lowerhalf.c
create mode 100644 arch/arm/src/phy62xx/phyplus_timer_lowerhalf.h
create mode 100644 arch/arm/src/phy62xx/phyplus_timerisr.c
create mode 100644 arch/arm/src/phy62xx/phyplus_timerisr.h
create mode 100644 arch/arm/src/phy62xx/pplus_mtd_flash.c
create mode 100644 arch/arm/src/phy62xx/pplus_mtd_flash.h
create mode 100644 arch/arm/src/phy62xx/pwrmgr.c
create mode 100644 arch/arm/src/phy62xx/pwrmgr.h
create mode 100644 arch/arm/src/phy62xx/rom_sym_def.h
create mode 100644 arch/arm/src/phy62xx/start.c
create mode 100644 arch/arm/src/phy62xx/start.h
create mode 100644 arch/arm/src/phy62xx/systick.c
create mode 100644 arch/arm/src/phy62xx/timer.c
create mode 100644 arch/arm/src/phy62xx/timer.h
create mode 100644 arch/arm/src/phy62xx/types.h
create mode 100644 arch/arm/src/phy62xx/uart.c
create mode 100644 arch/arm/src/phy62xx/uart.h
create mode 100644 arch/arm/src/phy62xx/version.h
create mode 100644 boards/arm/phy62xx/phy6222/Kconfig
copy boards/arm/{stm32f0l0g0/stm32f072-discovery =>
phy62xx/phy6222}/README.txt (100%)
create mode 100644 boards/arm/phy62xx/phy6222/configs/nsh/defconfig
create mode 100644 boards/arm/phy62xx/phy6222/configs/phy_sbp/defconfig
create mode 100644 boards/arm/phy62xx/phy6222/include/board.h
create mode 100644 boards/arm/phy62xx/phy6222/include/nsh_romfsimg.h
create mode 100644 boards/arm/phy62xx/phy6222/scripts/Make.defs
create mode 100644 boards/arm/phy62xx/phy6222/scripts/flash.ld
copy boards/arm/{stm32f0l0g0/stm32f051-discovery =>
phy62xx/phy6222}/scripts/gnu-elf.ld (100%)
create mode 100644 boards/arm/phy62xx/phy6222/src/Makefile
create mode 100644 boards/arm/phy62xx/phy6222/src/appinit.c
create mode 100644 boards/arm/phy62xx/phy6222/src/boot.c
create mode 100644 boards/arm/phy62xx/phy6222/src/bringup.c
create mode 100644 boards/arm/phy62xx/phy6222/src/buttons.c
create mode 100644 boards/arm/phy62xx/phy6222/src/phy6222.h
create mode 100644 boards/arm/phy62xx/phy6222/src/userleds.c