hppa.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. * Derived from the corresponding header file for gcc.
  23. */
  24. #include "../loadstore/atomic_load.h"
  25. #include "../loadstore/atomic_store.h"
  26. /* Some architecture set descriptions include special "ordered" memory */
  27. /* operations. As far as we can tell, no existing processors actually */
  28. /* require those. Nor does it appear likely that future processors */
  29. /* will. */
  30. /* FIXME: The PA emulator on Itanium may obey weaker restrictions. */
  31. /* There should be a mode in which we don't assume sequential */
  32. /* consistency here. */
  33. #include "../ordered.h"
  34. #include <machine/inline.h>
  35. /* GCC will not guarantee the alignment we need, use four lock words */
  36. /* and select the correctly aligned datum. See the glibc 2.3.2 */
  37. /* linuxthread port for the original implementation. */
  38. struct AO_pa_clearable_loc {
  39. int data[4];
  40. };
  41. #undef AO_TS_INITIALIZER
  42. #define AO_TS_t struct AO_pa_clearable_loc
  43. #define AO_TS_INITIALIZER {1,1,1,1}
  44. /* Switch meaning of set and clear, since we only have an atomic clear */
  45. /* instruction. */
  46. typedef enum {AO_PA_TS_set = 0, AO_PA_TS_clear = 1} AO_PA_TS_val;
  47. #define AO_TS_VAL_t AO_PA_TS_val
  48. #define AO_TS_CLEAR AO_PA_TS_clear
  49. #define AO_TS_SET AO_PA_TS_set
  50. /* The hppa only has one atomic read and modify memory operation, */
  51. /* load and clear, so hppa spinlocks must use zero to signify that */
  52. /* someone is holding the lock. The address used for the ldcw */
  53. /* semaphore must be 16-byte aligned. */
  54. #define AO_ldcw(a, ret) \
  55. _LDCWX(0 /* index */, 0 /* s */, a /* base */, ret)
  56. /* Because malloc only guarantees 8-byte alignment for malloc'd data, */
  57. /* and GCC only guarantees 8-byte alignment for stack locals, we can't */
  58. /* be assured of 16-byte alignment for atomic lock data even if we */
  59. /* specify "__attribute ((aligned(16)))" in the type declaration. So, */
  60. /* we use a struct containing an array of four ints for the atomic lock */
  61. /* type and dynamically select the 16-byte aligned int from the array */
  62. /* for the semaphore. */
  63. #define AO_PA_LDCW_ALIGNMENT 16
  64. #define AO_ldcw_align(addr) \
  65. ((volatile unsigned *)(((unsigned long)(addr) \
  66. + (AO_PA_LDCW_ALIGNMENT - 1)) \
  67. & ~(AO_PA_LDCW_ALIGNMENT - 1)))
  68. /* Works on PA 1.1 and PA 2.0 systems */
  69. AO_INLINE AO_TS_VAL_t
  70. AO_test_and_set_full(volatile AO_TS_t * addr)
  71. {
  72. register unsigned int ret;
  73. register unsigned long a = (unsigned long)AO_ldcw_align(addr);
  74. AO_ldcw(a, ret);
  75. return (AO_TS_VAL_t)ret;
  76. }
  77. #define AO_HAVE_test_and_set_full
  78. AO_INLINE void
  79. AO_pa_clear(volatile AO_TS_t * addr)
  80. {
  81. volatile unsigned *a = AO_ldcw_align(addr);
  82. AO_compiler_barrier();
  83. *a = 1;
  84. }
  85. #define AO_CLEAR(addr) AO_pa_clear(addr)