Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rt_MemBox.c 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*----------------------------------------------------------------------------
  2. * RL-ARM - RTX
  3. *----------------------------------------------------------------------------
  4. * Name: RT_MEMBOX.C
  5. * Purpose: Interface functions for fixed memory block management system
  6. * Rev.: V4.60
  7. *----------------------------------------------------------------------------
  8. *
  9. * Copyright (c) 1999-2009 KEIL, 2009-2012 ARM Germany GmbH
  10. * All rights reserved.
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions are met:
  13. * - Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * - Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. * - Neither the name of ARM nor the names of its contributors may be used
  19. * to endorse or promote products derived from this software without
  20. * specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  23. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25. * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
  26. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  27. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  28. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  29. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  30. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  31. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  32. * POSSIBILITY OF SUCH DAMAGE.
  33. *---------------------------------------------------------------------------*/
  34. #include "rt_TypeDef.h"
  35. #include "RTX_Conf.h"
  36. #include "rt_System.h"
  37. #include "rt_MemBox.h"
  38. #include "rt_HAL_CM.h"
  39. /*----------------------------------------------------------------------------
  40. * Global Functions
  41. *---------------------------------------------------------------------------*/
  42. /*--------------------------- _init_box -------------------------------------*/
  43. int _init_box (void *box_mem, U32 box_size, U32 blk_size) {
  44. /* Initialize memory block system, returns 0 if OK, 1 if fails. */
  45. void *end;
  46. void *blk;
  47. void *next;
  48. U32 sizeof_bm;
  49. /* Create memory structure. */
  50. if (blk_size & BOX_ALIGN_8) {
  51. /* Memory blocks 8-byte aligned. */
  52. blk_size = ((blk_size & ~BOX_ALIGN_8) + 7) & ~7;
  53. sizeof_bm = (sizeof (struct OS_BM) + 7) & ~7;
  54. }
  55. else {
  56. /* Memory blocks 4-byte aligned. */
  57. blk_size = (blk_size + 3) & ~3;
  58. sizeof_bm = sizeof (struct OS_BM);
  59. }
  60. if (blk_size == 0) {
  61. return (1);
  62. }
  63. if ((blk_size + sizeof_bm) > box_size) {
  64. return (1);
  65. }
  66. /* Create a Memory structure. */
  67. blk = ((U8 *) box_mem) + sizeof_bm;
  68. ((P_BM) box_mem)->free = blk;
  69. end = ((U8 *) box_mem) + box_size;
  70. ((P_BM) box_mem)->end = end;
  71. ((P_BM) box_mem)->blk_size = blk_size;
  72. /* Link all free blocks using offsets. */
  73. end = ((U8 *) end) - blk_size;
  74. while (1) {
  75. next = ((U8 *) blk) + blk_size;
  76. if (next > end) break;
  77. *((void **)blk) = next;
  78. blk = next;
  79. }
  80. /* end marker */
  81. *((void **)blk) = 0;
  82. return (0);
  83. }
  84. /*--------------------------- rt_alloc_box ----------------------------------*/
  85. void *rt_alloc_box (void *box_mem) {
  86. /* Allocate a memory block and return start address. */
  87. void **free;
  88. #ifndef __USE_EXCLUSIVE_ACCESS
  89. int irq_dis;
  90. irq_dis = __disable_irq ();
  91. free = ((P_BM) box_mem)->free;
  92. if (free) {
  93. ((P_BM) box_mem)->free = *free;
  94. }
  95. if (!irq_dis) __enable_irq ();
  96. #else
  97. do {
  98. if ((free = (void **)__ldrex(&((P_BM) box_mem)->free)) == 0) {
  99. __clrex();
  100. break;
  101. }
  102. } while (__strex((U32)*free, &((P_BM) box_mem)->free));
  103. #endif
  104. return (free);
  105. }
  106. /*--------------------------- _calloc_box -----------------------------------*/
  107. void *_calloc_box (void *box_mem) {
  108. /* Allocate a 0-initialized memory block and return start address. */
  109. void *free;
  110. U32 *p;
  111. U32 i;
  112. free = _alloc_box (box_mem);
  113. if (free) {
  114. p = free;
  115. for (i = ((P_BM) box_mem)->blk_size; i; i -= 4) {
  116. *p = 0;
  117. p++;
  118. }
  119. }
  120. return (free);
  121. }
  122. /*--------------------------- rt_free_box -----------------------------------*/
  123. int rt_free_box (void *box_mem, void *box) {
  124. /* Free a memory block, returns 0 if OK, 1 if box does not belong to box_mem */
  125. #ifndef __USE_EXCLUSIVE_ACCESS
  126. int irq_dis;
  127. #endif
  128. if (box < box_mem || box >= ((P_BM) box_mem)->end) {
  129. return (1);
  130. }
  131. #ifndef __USE_EXCLUSIVE_ACCESS
  132. irq_dis = __disable_irq ();
  133. *((void **)box) = ((P_BM) box_mem)->free;
  134. ((P_BM) box_mem)->free = box;
  135. if (!irq_dis) __enable_irq ();
  136. #else
  137. do {
  138. *((void **)box) = (void *)__ldrex(&((P_BM) box_mem)->free);
  139. } while (__strex ((U32)box, &((P_BM) box_mem)->free));
  140. #endif
  141. return (0);
  142. }
  143. /*----------------------------------------------------------------------------
  144. * end of file
  145. *---------------------------------------------------------------------------*/