drp-ie.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*
  2. * UWB DRP IE management.
  3. *
  4. * Copyright (C) 2005-2006 Intel Corporation
  5. * Copyright (C) 2008 Cambridge Silicon Radio Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License version
  9. * 2 as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <linux/kernel.h>
  20. #include <linux/random.h>
  21. #include <linux/uwb.h>
  22. #include "uwb-internal.h"
  23. /*
  24. * Allocate a DRP IE.
  25. *
  26. * To save having to free/allocate a DRP IE when its MAS changes,
  27. * enough memory is allocated for the maxiumum number of DRP
  28. * allocation fields. This gives an overhead per reservation of up to
  29. * (UWB_NUM_ZONES - 1) * 4 = 60 octets.
  30. */
  31. static struct uwb_ie_drp *uwb_drp_ie_alloc(void)
  32. {
  33. struct uwb_ie_drp *drp_ie;
  34. unsigned tiebreaker;
  35. drp_ie = kzalloc(sizeof(struct uwb_ie_drp) +
  36. UWB_NUM_ZONES * sizeof(struct uwb_drp_alloc),
  37. GFP_KERNEL);
  38. if (drp_ie) {
  39. drp_ie->hdr.element_id = UWB_IE_DRP;
  40. get_random_bytes(&tiebreaker, sizeof(unsigned));
  41. uwb_ie_drp_set_tiebreaker(drp_ie, tiebreaker & 1);
  42. }
  43. return drp_ie;
  44. }
  45. /*
  46. * Fill a DRP IE's allocation fields from a MAS bitmap.
  47. */
  48. static void uwb_drp_ie_from_bm(struct uwb_ie_drp *drp_ie,
  49. struct uwb_mas_bm *mas)
  50. {
  51. int z, i, num_fields = 0, next = 0;
  52. struct uwb_drp_alloc *zones;
  53. __le16 current_bmp;
  54. DECLARE_BITMAP(tmp_bmp, UWB_NUM_MAS);
  55. DECLARE_BITMAP(tmp_mas_bm, UWB_MAS_PER_ZONE);
  56. zones = drp_ie->allocs;
  57. bitmap_copy(tmp_bmp, mas->bm, UWB_NUM_MAS);
  58. /* Determine unique MAS bitmaps in zones from bitmap. */
  59. for (z = 0; z < UWB_NUM_ZONES; z++) {
  60. bitmap_copy(tmp_mas_bm, tmp_bmp, UWB_MAS_PER_ZONE);
  61. if (bitmap_weight(tmp_mas_bm, UWB_MAS_PER_ZONE) > 0) {
  62. bool found = false;
  63. current_bmp = (__le16) *tmp_mas_bm;
  64. for (i = 0; i < next; i++) {
  65. if (current_bmp == zones[i].mas_bm) {
  66. zones[i].zone_bm |= 1 << z;
  67. found = true;
  68. break;
  69. }
  70. }
  71. if (!found) {
  72. num_fields++;
  73. zones[next].zone_bm = 1 << z;
  74. zones[next].mas_bm = current_bmp;
  75. next++;
  76. }
  77. }
  78. bitmap_shift_right(tmp_bmp, tmp_bmp, UWB_MAS_PER_ZONE, UWB_NUM_MAS);
  79. }
  80. /* Store in format ready for transmission (le16). */
  81. for (i = 0; i < num_fields; i++) {
  82. drp_ie->allocs[i].zone_bm = cpu_to_le16(zones[i].zone_bm);
  83. drp_ie->allocs[i].mas_bm = cpu_to_le16(zones[i].mas_bm);
  84. }
  85. drp_ie->hdr.length = sizeof(struct uwb_ie_drp) - sizeof(struct uwb_ie_hdr)
  86. + num_fields * sizeof(struct uwb_drp_alloc);
  87. }
  88. /**
  89. * uwb_drp_ie_update - update a reservation's DRP IE
  90. * @rsv: the reservation
  91. */
  92. int uwb_drp_ie_update(struct uwb_rsv *rsv)
  93. {
  94. struct device *dev = &rsv->rc->uwb_dev.dev;
  95. struct uwb_ie_drp *drp_ie;
  96. int reason_code, status;
  97. switch (rsv->state) {
  98. case UWB_RSV_STATE_NONE:
  99. kfree(rsv->drp_ie);
  100. rsv->drp_ie = NULL;
  101. return 0;
  102. case UWB_RSV_STATE_O_INITIATED:
  103. reason_code = UWB_DRP_REASON_ACCEPTED;
  104. status = 0;
  105. break;
  106. case UWB_RSV_STATE_O_PENDING:
  107. reason_code = UWB_DRP_REASON_ACCEPTED;
  108. status = 0;
  109. break;
  110. case UWB_RSV_STATE_O_MODIFIED:
  111. reason_code = UWB_DRP_REASON_MODIFIED;
  112. status = 1;
  113. break;
  114. case UWB_RSV_STATE_O_ESTABLISHED:
  115. reason_code = UWB_DRP_REASON_ACCEPTED;
  116. status = 1;
  117. break;
  118. case UWB_RSV_STATE_T_ACCEPTED:
  119. reason_code = UWB_DRP_REASON_ACCEPTED;
  120. status = 1;
  121. break;
  122. case UWB_RSV_STATE_T_DENIED:
  123. reason_code = UWB_DRP_REASON_DENIED;
  124. status = 0;
  125. break;
  126. default:
  127. dev_dbg(dev, "rsv with unhandled state (%d)\n", rsv->state);
  128. return -EINVAL;
  129. }
  130. if (rsv->drp_ie == NULL) {
  131. rsv->drp_ie = uwb_drp_ie_alloc();
  132. if (rsv->drp_ie == NULL)
  133. return -ENOMEM;
  134. }
  135. drp_ie = rsv->drp_ie;
  136. uwb_ie_drp_set_owner(drp_ie, uwb_rsv_is_owner(rsv));
  137. uwb_ie_drp_set_status(drp_ie, status);
  138. uwb_ie_drp_set_reason_code(drp_ie, reason_code);
  139. uwb_ie_drp_set_stream_index(drp_ie, rsv->stream);
  140. uwb_ie_drp_set_type(drp_ie, rsv->type);
  141. if (uwb_rsv_is_owner(rsv)) {
  142. switch (rsv->target.type) {
  143. case UWB_RSV_TARGET_DEV:
  144. drp_ie->dev_addr = rsv->target.dev->dev_addr;
  145. break;
  146. case UWB_RSV_TARGET_DEVADDR:
  147. drp_ie->dev_addr = rsv->target.devaddr;
  148. break;
  149. }
  150. } else
  151. drp_ie->dev_addr = rsv->owner->dev_addr;
  152. uwb_drp_ie_from_bm(drp_ie, &rsv->mas);
  153. rsv->ie_valid = true;
  154. return 0;
  155. }
  156. /*
  157. * Set MAS bits from given MAS bitmap in a single zone of large bitmap.
  158. *
  159. * We are given a zone id and the MAS bitmap of bits that need to be set in
  160. * this zone. Note that this zone may already have bits set and this only
  161. * adds settings - we cannot simply assign the MAS bitmap contents to the
  162. * zone contents. We iterate over the the bits (MAS) in the zone and set the
  163. * bits that are set in the given MAS bitmap.
  164. */
  165. static
  166. void uwb_drp_ie_single_zone_to_bm(struct uwb_mas_bm *bm, u8 zone, u16 mas_bm)
  167. {
  168. int mas;
  169. u16 mas_mask;
  170. for (mas = 0; mas < UWB_MAS_PER_ZONE; mas++) {
  171. mas_mask = 1 << mas;
  172. if (mas_bm & mas_mask)
  173. set_bit(zone * UWB_NUM_ZONES + mas, bm->bm);
  174. }
  175. }
  176. /**
  177. * uwb_drp_ie_zones_to_bm - convert DRP allocation fields to a bitmap
  178. * @mas: MAS bitmap that will be populated to correspond to the
  179. * allocation fields in the DRP IE
  180. * @drp_ie: the DRP IE that contains the allocation fields.
  181. *
  182. * The input format is an array of MAS allocation fields (16 bit Zone
  183. * bitmap, 16 bit MAS bitmap) as described in [ECMA-368] section
  184. * 16.8.6. The output is a full 256 bit MAS bitmap.
  185. *
  186. * We go over all the allocation fields, for each allocation field we
  187. * know which zones are impacted. We iterate over all the zones
  188. * impacted and call a function that will set the correct MAS bits in
  189. * each zone.
  190. */
  191. void uwb_drp_ie_to_bm(struct uwb_mas_bm *bm, const struct uwb_ie_drp *drp_ie)
  192. {
  193. int numallocs = (drp_ie->hdr.length - 4) / 4;
  194. const struct uwb_drp_alloc *alloc;
  195. int cnt;
  196. u16 zone_bm, mas_bm;
  197. u8 zone;
  198. u16 zone_mask;
  199. for (cnt = 0; cnt < numallocs; cnt++) {
  200. alloc = &drp_ie->allocs[cnt];
  201. zone_bm = le16_to_cpu(alloc->zone_bm);
  202. mas_bm = le16_to_cpu(alloc->mas_bm);
  203. for (zone = 0; zone < UWB_NUM_ZONES; zone++) {
  204. zone_mask = 1 << zone;
  205. if (zone_bm & zone_mask)
  206. uwb_drp_ie_single_zone_to_bm(bm, zone, mas_bm);
  207. }
  208. }
  209. }