1. 29 12月, 2022 1 次提交
  2. 28 12月, 2022 1 次提交
  3. 26 12月, 2022 2 次提交
  4. 22 12月, 2022 1 次提交
  5. 20 12月, 2022 1 次提交
  6. 16 12月, 2022 1 次提交
  7. 14 12月, 2022 1 次提交
  8. 12 12月, 2022 1 次提交
    • mysterywolf's avatar
      [rtdef] use lower-case to define attributes (#6728) · 99bdf978
      mysterywolf 提交于
      * [rtdef] rename RT_WEAK attribute as rt_weak
      
      * [rtdef] rename RT_USED attribute as rt_used
      
      * [rtdef] rename RT_SECTION attribute as rt_section
      
      * [rtdef] rename ALIGN attribute as rt_align
      
      * [legacy] add RT_USED ALIGN RT_SECTION RT_WEAK as legacy support
      99bdf978
  9. 10 12月, 2022 2 次提交
  10. 09 12月, 2022 1 次提交
  11. 03 12月, 2022 1 次提交
  12. 25 11月, 2022 1 次提交
    • X
      [bsp] faster startup for cortex-a · 16f6157b
      xiaoguang_ma 提交于
      If the application defines dozens of global variables,
      the speed of clearing the bss segment will be slower.
      
      Because icache can be enabled before the mmu enabled.
      Therefore, in order to speed up the process of clearing the BSS segment,
      enable icache needs to be put ahead.
      16f6157b
  13. 20 10月, 2022 1 次提交
  14. 11 10月, 2022 2 次提交
  15. 22 9月, 2022 1 次提交
    • taiexinleni's avatar
      bsp beaglebone: add IAR support (#6443) · 50cb4be8
      taiexinleni 提交于
      * bsp beaglebone: add IAR template files and fix it's build error
      
      ATTENTION:
      project.* was generated by scons, so I add it to gitignore.
      rtconfig.py *FLAGS located in "PLATFORM == 'iccarm'" are unverified and maybe wrong.
      (我只是从STM32里面抄来,然后根据自己的理解改了一下,并没有验证这些参数的正确性,
      我也不知道怎么用命令行调用这些参数来编译)
      
      * bsp beaglebone: add beaglebone_ram.icf ROM address from uboot_cmd.txt
      
      am335x_DDR.icf use 0x82000000, different to uboot_cmd.txt & gcc beaglebone_ram.lds,
      the difference will easy cause later developer got below error:
      
      => go 0x80200000
      ## Starting application at 0x80200000 ...
      undefined instruction
      pc : [<8200956c>]	   lr : [<8ff62497>]
      reloc pc : [<728a956c>]	   lr : [<80802497>]
      sp : 8df37358  ip : 00000000	 fp : 00000002
      r10: 8df4d448  r9 : 8df3feb8	 r8 : 8ffd30f8
      r7 : 8ff78089  r6 : 00000002	 r5 : 80200000  r4 : 8df4d44c
      r3 : 80200000  r2 : 8df4d44c	 r1 : 8df4d44c  r0 : 00000001
      Flags: nzCv  IRQs off  FIQs on  Mode SVC_32
      Code: 5dbffcdd bb9bdf7f abf85423 eff1f77f (7ed7daaf)
      Resetting CPU ...
      
      resetting ...
      
      * libcpu am335x: context_iar.S rt_hw_context_switch: add thumb mode support
      
      IAR new project defualt Processor mode is Thumb, this will cause user
      easy occur the following error:
      ...
      msh />Execption:
      r00:0x8800aaa8 r01:0x802080c5 r02:0x00000000 r03:0x88009b4c
      r04:0x00001000 r05:0x00000000 r06:0x00001403 r07:0x00100000
      r08:0x00000000 r09:0x00000000 r10:0x0000000a
      fp :0x0000000a ip :0x65687374
      sp :0x00006c6c lr :0x0000008a pc :0x88008be0
      cpsr:0x880001bc
      software interrupt
      shutdown...
      (0) assertion failed at function:rt_hw_cpu_shutdown, line number:160
      
      * bsp beaglebone: change IAR template.ewp code use Arm mode
      
      Arm mode bin size will bigger than Thumb mode
      
      * libcpu am335x: IAR: use rt_hw_cpu_dcache_enable instead of rt_cpu_dcache_enable
      
      Reviewer mysterywolf say:
      麻烦把rt_cpu_icache_enable 和 rt_cpu_dcache_enable, 统一改成 rt_hw_cpu_icache_enable 和 rt_hw_cpu_dcache_enable
      rt_hw_cpu_icache_enable 和 rt_hw_cpu_dcache_enable 是其他bsp也是这么命名的 这是个命名统一的函数
      50cb4be8
  16. 16 9月, 2022 1 次提交
    • mysterywolf's avatar
      完善bsp beaglebone的基本使用 (#6434) · 1249bc45
      mysterywolf 提交于
      * bsp beaglebone: rerun menuconfg
      
      * bsp beaglebone: add uart0 support
      
      * bsp beaglebone: use uart0 as console
      
      * bsp beaglebone: add heap init
      
      fix rt_application_init() error:
      (m != RT_NULL) assertion failed at function:rt_smem_alloc, line number:288
      
      * bsp beaglebone: add mmu & interrupt init
      
      must init mmu, otherwise no interrupt is generated, cause scheduler can't work.
      I don't know why need mmu, just seen: bsp/rockchip/rk3568/driver/board.c
      
      * libcpu am335x: reset interrupt controller before init vector
      
      I think reset before init is more better
      
      AM335X_StarterWare_02_00_01_01\system_config\armv7a\am335x\interrupt.c
      IntAINTCInit()
      
      * bsp beaglebone: full gpio driver support
      
      * bsp beaglebone: add tftpboot way to uboot_cmd.txt
      
      * bsp beaglebone: optimize am33xx_gpio_hdr, check irqstatus is the last one
      Co-authored-by: taiexinleni's avatarYangZhongQing <vipox@qq.com>
      1249bc45
  17. 06 9月, 2022 1 次提交
  18. 05 9月, 2022 1 次提交
  19. 30 8月, 2022 1 次提交
    • wannomore's avatar
      tms320f28379d fix init (#6343) · b11cb41a
      wannomore 提交于
      解决 tms320f28379d bsp 启动的问题。主要改动如下。
      
      修正context.s中汇编代码错误。在旧版的代码中,操作数为32位而汇编命令却使用了针对16位数据的命令MOV,导致程序在某些情况无法正常启动线程。
      由于C28x的平台下,SP只支持16bit寻址,所以用于线程空间存放的heap以及ebss段都需要放在低16位的空间,针对这个问题修改了CMD文件。此外还增加基于CMD文件基于RAM的支持,方便调试。
      新增rtdef.h中RT_SECTION,RT_USED,ALIGN和RT_WEAK的定义。旧版bsp中这些定义为空,导致INIT_EXPORT注册的函数失效。
      修改程序启动代码,在程序入口直接调用原生启动代码
      以上改动在LAUNCHXL-F28379D 通过了测试。
      b11cb41a
  20. 23 8月, 2022 2 次提交
  21. 21 8月, 2022 1 次提交
    • Y
      [bsp][tms320f28379d] Fix compile ti (#6254) · b43f0e72
      Yunjie Gu 提交于
      * compile_ok
      
      Issues fixed:
      (1) update .config: select FINSH_USING_SYMTAB
      (2) add rt_size_t in rtconfig_project.h
      (3) fix finsh problems of using sym table
      (4) update .project to include ipc source codes.
      Todo list:
      (1) automate the build source selection of ccs and reconcile it with scons
      
      * change compiler
      
      * msh can run now
      
      the key step is to swap the order of rt_interrupt_nest -- and RT_OBJECT_HOOK_CALL(rt_interrupt_leave_hook,()) in irq.c. This is an improvised solution and an issue has been raised.
      
      * Update 2837x_FLASH_lnk_cpu1.cmd
      
      The original one is also fine. Just to make it more rigorous since FSymTab is in data section.
      
      * update readme.md
      
      Complier selection and maintainer update.
      Co-authored-by: wannomore's avatarYuQi <qiyu_sjtu@163.com>
      b43f0e72
  22. 14 8月, 2022 1 次提交
  23. 11 8月, 2022 1 次提交
  24. 03 8月, 2022 1 次提交
  25. 30 7月, 2022 1 次提交
    • E
      WCH CH569W-R0-1v0 evt board bsp port, first version (#6167) · c802fcdc
      emuzit 提交于
      WCH CH569W-R0-1v0 evt board bsp port, first version
      
      dev/test under Ubuntu 20.04
      toolchain from MounRiver_Studio_Community_Linux_x64_V120
      
      tested drivers : SysTick, gpio, gpio interrupt, uart1 (RX interrupt, TX polling)
      
      libcpu/risc-v/SConscript :
      group includes rtconfig.CPU only if folder exists
      
      libcpu/risc-v/common/cpuport.c/rt_hw_context_switch_interrupt() :
      make it RT_WEAK for customization
      c802fcdc
  26. 27 7月, 2022 1 次提交
  27. 10 7月, 2022 1 次提交
  28. 29 6月, 2022 1 次提交
  29. 22 6月, 2022 1 次提交
  30. 15 6月, 2022 1 次提交
  31. 09 6月, 2022 2 次提交
  32. 13 5月, 2022 1 次提交
  33. 24 4月, 2022 1 次提交
  34. 20 4月, 2022 2 次提交