hppa.h 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * Copyright (c) 2003 Hewlett-Packard Development Company, L.P.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. * SOFTWARE.
  21. */
  22. #include "../all_atomic_load_store.h"
  23. /* Some architecture set descriptions include special "ordered" memory */
  24. /* operations. As far as we can tell, no existing processors actually */
  25. /* require those. Nor does it appear likely that future processors */
  26. /* will. */
  27. #include "../ordered.h"
  28. /* GCC will not guarantee the alignment we need, use four lock words */
  29. /* and select the correctly aligned datum. See the glibc 2.3.2 */
  30. /* linuxthread port for the original implementation. */
  31. struct AO_pa_clearable_loc {
  32. int data[4];
  33. };
  34. #undef AO_TS_INITIALIZER
  35. #define AO_TS_t struct AO_pa_clearable_loc
  36. #define AO_TS_INITIALIZER {1,1,1,1}
  37. /* Switch meaning of set and clear, since we only have an atomic clear */
  38. /* instruction. */
  39. typedef enum {AO_PA_TS_set = 0, AO_PA_TS_clear = 1} AO_PA_TS_val;
  40. #define AO_TS_VAL_t AO_PA_TS_val
  41. #define AO_TS_CLEAR AO_PA_TS_clear
  42. #define AO_TS_SET AO_PA_TS_set
  43. /* The hppa only has one atomic read and modify memory operation, */
  44. /* load and clear, so hppa spinlocks must use zero to signify that */
  45. /* someone is holding the lock. The address used for the ldcw */
  46. /* semaphore must be 16-byte aligned. */
  47. #define AO_ldcw(a, ret) \
  48. __asm__ __volatile__("ldcw 0(%2), %0" \
  49. : "=r" (ret), "=m" (*(a)) : "r" (a))
  50. /* Because malloc only guarantees 8-byte alignment for malloc'd data, */
  51. /* and GCC only guarantees 8-byte alignment for stack locals, we can't */
  52. /* be assured of 16-byte alignment for atomic lock data even if we */
  53. /* specify "__attribute ((aligned(16)))" in the type declaration. So, */
  54. /* we use a struct containing an array of four ints for the atomic lock */
  55. /* type and dynamically select the 16-byte aligned int from the array */
  56. /* for the semaphore. */
  57. #define AO_PA_LDCW_ALIGNMENT 16
  58. #define AO_ldcw_align(addr) \
  59. ((volatile unsigned *)(((unsigned long)(addr) \
  60. + (AO_PA_LDCW_ALIGNMENT - 1)) \
  61. & ~(AO_PA_LDCW_ALIGNMENT - 1)))
  62. /* Works on PA 1.1 and PA 2.0 systems */
  63. AO_INLINE AO_TS_VAL_t
  64. AO_test_and_set_full(volatile AO_TS_t * addr)
  65. {
  66. volatile unsigned int ret;
  67. volatile unsigned *a = AO_ldcw_align(addr);
  68. AO_ldcw(a, ret);
  69. return (AO_TS_VAL_t)ret;
  70. }
  71. #define AO_HAVE_test_and_set_full
  72. AO_INLINE void
  73. AO_pa_clear(volatile AO_TS_t * addr)
  74. {
  75. volatile unsigned *a = AO_ldcw_align(addr);
  76. AO_compiler_barrier();
  77. *a = 1;
  78. }
  79. #define AO_CLEAR(addr) AO_pa_clear(addr)