retarget.c
上传用户:yyyd609
上传日期:2022-07-18
资源大小:183k
文件大小:3k
源码类别:

微处理器开发

开发平台:

C/C++

  1. /*
  2.  * Copyright (C) ARM Limited, 1999. All rights reserved.
  3.  */
  4. /*
  5. This implements a 'retarget' layer for low-level IO.  Typically, this would 
  6. contain your own target-dependent implementations of fputc(), ferror(), etc.
  7. This example provides implementations of fputc(), ferror(), _sys_exit(), 
  8. _ttywrch() and __user_initial_stackheap().
  9. Here, semi-hosting SWIs are used to display text onto the console of the host debugger.
  10. This mechanism is portable across ARMulator, Angel, Multi-ICE and EmbeddedICE.
  11. Alternatively, to output characters from the serial port of an ARM Development (PID) Board
  12. (see serial.c), use '#define USE_SERIAL_PORT' or compile with '-DUSE_SERIAL_PORT'.
  13. */
  14. #include <stdio.h>
  15. #include "71x_conf.h"
  16. /* #define USE_SERIAL_PORT */
  17. #ifdef __thumb
  18. /* Thumb Semihosting SWI */
  19. #define SemiSWI 0xAB
  20. #else
  21. /* ARM Semihosting SWI */
  22. #define SemiSWI 0x123456
  23. #endif
  24. /* Write a character */ 
  25. __swi(SemiSWI) void _WriteC(unsigned op, char *c);
  26. #define WriteC(c) _WriteC (0x3,c)
  27. /* Exit */
  28. __swi(SemiSWI) void _Exit(unsigned op, unsigned except);
  29. #define Exit() _Exit (0x18,0x20026)
  30. struct __FILE { int handle;   /* Add whatever you need here */};
  31. FILE __stdout;
  32. extern void sendchar( char *ch );    /* in serial.c */
  33. int fputc(int ch, FILE *f)
  34. {
  35.     /* Place your implementation of fputc here */
  36.     /* e.g. write a character to a UART, or to the debugger console with SWI WriteC */
  37.     char tempch = ch;
  38. #ifdef USE_SERIAL_PORT
  39.     sendchar( &tempch );
  40. #else
  41.     WriteC( &tempch );
  42. #endif
  43.     return ch;
  44. }
  45. int ferror(FILE *f)
  46. {   /* Your implementation of ferror */
  47.     return EOF;
  48. }
  49. void _sys_exit(int return_code)
  50. {
  51.     Exit();         /* for debugging */
  52. label:  goto label; /* endless loop */
  53. }
  54. void _ttywrch(int ch)
  55. {
  56.     char tempch = ch;
  57. #ifdef USE_SERIAL_PORT
  58.     sendchar( &tempch );
  59. #else
  60.     WriteC( &tempch );
  61. #endif
  62. }
  63. __value_in_regs struct R0_R3 {unsigned heap_base, stack_base, heap_limit, stack_limit;} 
  64.     __user_initial_stackheap(unsigned int R0, unsigned int SP, unsigned int R2, unsigned int SL)
  65. {
  66.     struct R0_R3 config;
  67.     config.heap_base = 0x00030000;
  68.     config.stack_base = SP;
  69. /*
  70. To place heap_base directly above the ZI area, use:
  71.     extern unsigned int Image$$ZI$$Limit;
  72.     config.heap_base = (unsigned int)&Image$$ZI$$Limit;
  73. (or &Image$$region_name$$ZI$$Limit for scatterloaded images)
  74. To specify the limits for the heap & stack, use e.g:
  75.     config.heap_limit = SL;
  76.     config.stack_limit = SL;
  77. */
  78.     return config;
  79. }