tic54x.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* TI COFF information for Texas Instruments TMS320C54X.
  2. This file customizes the settings in coff/ti.h.
  3. Copyright (C) 2000-2015 Free Software Foundation, Inc.
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  15. MA 02110-1301, USA. */
  16. #ifndef COFF_TIC54X_H
  17. #define COFF_TIC54X_H
  18. #define TIC54X_TARGET_ID 0x98
  19. #define TIC54XALGMAGIC 0x009B /* c54x algebraic assembler output */
  20. #define TIC5X_TARGET_ID 0x92
  21. #define TI_TARGET_ID TIC54X_TARGET_ID
  22. #define OCTETS_PER_BYTE_POWER 1 /* octets per byte, as a power of two */
  23. #define HOWTO_BANK 6 /* add to howto to get absolute/sect-relative version */
  24. #define TICOFF_TARGET_ARCH bfd_arch_tic54x
  25. #define TICOFF_DEFAULT_MAGIC TICOFF1MAGIC /* we use COFF1 for compatibility */
  26. /* Page macros
  27. The first GDB port requires flags in its remote memory access commands to
  28. distinguish between data/prog space. Hopefully we can make this go away
  29. eventually. Stuff the page in the upper bits of a 32-bit address, since
  30. the c5x family only uses 16 or 23 bits.
  31. c2x, c5x and most c54x devices have 16-bit addresses, but the c548 has
  32. 23-bit program addresses. Make sure the page flags don't interfere.
  33. These flags are used by GDB to identify the destination page for
  34. addresses.
  35. */
  36. /* Recognized load pages (by common convention). */
  37. #define PG_PROG 0x0 /* PROG page */
  38. #define PG_DATA 0x1 /* DATA page */
  39. #define PG_IO 0x2 /* I/O page */
  40. /** Indicate whether the given storage class requires a page flag. */
  41. #define NEEDS_PAGE(X) ((X)==C_EXT)
  42. #define PAGE_MASK 0xFF000000
  43. #define ADDR_MASK 0x00FFFFFF
  44. #define PG_TO_FLAG(p) (((unsigned long)(p) & 0xFF) << 24)
  45. #define FLAG_TO_PG(f) (((f) >> 24) & 0xFF)
  46. #include "coff/ti.h"
  47. #endif /* COFF_TIC54X_H */