qspinlock_types.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Queued spinlock
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.
  15. *
  16. * Authors: Waiman Long <waiman.long@hp.com>
  17. */
  18. #ifndef __ASM_GENERIC_QSPINLOCK_TYPES_H
  19. #define __ASM_GENERIC_QSPINLOCK_TYPES_H
  20. /*
  21. * Including atomic.h with PARAVIRT on will cause compilation errors because
  22. * of recursive header file incluson via paravirt_types.h. So don't include
  23. * it if PARAVIRT is on.
  24. */
  25. #ifndef CONFIG_PARAVIRT
  26. #include <linux/types.h>
  27. #include <linux/atomic.h>
  28. #endif
  29. typedef struct qspinlock {
  30. atomic_t val;
  31. } arch_spinlock_t;
  32. /*
  33. * Bitfields in the atomic value:
  34. *
  35. * When NR_CPUS < 16K
  36. * 0- 7: locked byte
  37. * 8: pending
  38. * 9-15: not used
  39. * 16-17: tail index
  40. * 18-31: tail cpu (+1)
  41. *
  42. * When NR_CPUS >= 16K
  43. * 0- 7: locked byte
  44. * 8: pending
  45. * 9-10: tail index
  46. * 11-31: tail cpu (+1)
  47. */
  48. #define _Q_SET_MASK(type) (((1U << _Q_ ## type ## _BITS) - 1)\
  49. << _Q_ ## type ## _OFFSET)
  50. #define _Q_LOCKED_OFFSET 0
  51. #define _Q_LOCKED_BITS 8
  52. #define _Q_LOCKED_MASK _Q_SET_MASK(LOCKED)
  53. #define _Q_PENDING_OFFSET (_Q_LOCKED_OFFSET + _Q_LOCKED_BITS)
  54. #if CONFIG_NR_CPUS < (1U << 14)
  55. #define _Q_PENDING_BITS 8
  56. #else
  57. #define _Q_PENDING_BITS 1
  58. #endif
  59. #define _Q_PENDING_MASK _Q_SET_MASK(PENDING)
  60. #define _Q_TAIL_IDX_OFFSET (_Q_PENDING_OFFSET + _Q_PENDING_BITS)
  61. #define _Q_TAIL_IDX_BITS 2
  62. #define _Q_TAIL_IDX_MASK _Q_SET_MASK(TAIL_IDX)
  63. #define _Q_TAIL_CPU_OFFSET (_Q_TAIL_IDX_OFFSET + _Q_TAIL_IDX_BITS)
  64. #define _Q_TAIL_CPU_BITS (32 - _Q_TAIL_CPU_OFFSET)
  65. #define _Q_TAIL_CPU_MASK _Q_SET_MASK(TAIL_CPU)
  66. #define _Q_TAIL_OFFSET _Q_TAIL_IDX_OFFSET
  67. #define _Q_TAIL_MASK (_Q_TAIL_IDX_MASK | _Q_TAIL_CPU_MASK)
  68. #define _Q_LOCKED_VAL (1U << _Q_LOCKED_OFFSET)
  69. #define _Q_PENDING_VAL (1U << _Q_PENDING_OFFSET)
  70. #endif /* __ASM_GENERIC_QSPINLOCK_TYPES_H */