tcm.h 937 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. *
  3. * Copyright (C) 2008-2009 ST-Ericsson AB
  4. * License terms: GNU General Public License (GPL) version 2
  5. *
  6. * Author: Rickard Andersson <rickard.andersson@stericsson.com>
  7. * Author: Linus Walleij <linus.walleij@stericsson.com>
  8. *
  9. */
  10. #ifndef __ASMARM_TCM_H
  11. #define __ASMARM_TCM_H
  12. #ifndef CONFIG_HAVE_TCM
  13. #error "You should not be including tcm.h unless you have a TCM!"
  14. #endif
  15. #include <linux/compiler.h>
  16. /* Tag variables with this */
  17. #define __tcmdata __section(.tcm.data)
  18. /* Tag constants with this */
  19. #define __tcmconst __section(.tcm.rodata)
  20. /* Tag functions inside TCM called from outside TCM with this */
  21. #define __tcmfunc __attribute__((long_call)) __section(.tcm.text) noinline
  22. /* Tag function inside TCM called from inside TCM with this */
  23. #define __tcmlocalfunc __section(.tcm.text)
  24. void *tcm_alloc(size_t len);
  25. void tcm_free(void *addr, size_t len);
  26. bool tcm_dtcm_present(void);
  27. bool tcm_itcm_present(void);
  28. #endif