init_itc.S 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * init_itc.S
  3. *
  4. * Common Inter Thread Communicaton initialization
  5. */
  6. /*
  7. Copyright (c) 2007-2018, MIPS Tech, LLC and/or its affiliated group companies or licensors
  8. All rights reserved.
  9. Redistribution and use in source and binary forms, with or without modification, are
  10. permitted provided that the following conditions are met:
  11. 1. Redistributions of source code must retain the above copyright notice, this list of
  12. conditions and the following disclaimer.
  13. 2. Redistributions in binary form must reproduce the above copyright notice, this list
  14. of conditions and the following disclaimer in the documentation and/or other materials
  15. provided with the distribution.
  16. 3. Neither the name of the copyright holder nor the names of its contributors may be
  17. used to endorse or promote products derived from this software without specific prior
  18. written permission.
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
  20. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  21. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  22. SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  24. OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  26. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  27. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #include <mips/asm.h>
  30. #include <core_config.h>
  31. #include <mips/regdef.h>
  32. .set noat # Don't allow the assembler to use r1(at) for synthetic instr.
  33. /**************************************************************************************
  34. **************************************************************************************/
  35. LEAF(init_itc)
  36. nop
  37. // enhanceme: Add ITC init.
  38. done_init_itc:
  39. jr ra
  40. END(init_itc)