llc_nop.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * nop (passthrough) Link Layer Control
  3. *
  4. * Copyright (C) 2012 Intel Corporation. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the
  17. * Free Software Foundation, Inc.,
  18. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. */
  20. #include <linux/types.h>
  21. #include <linux/export.h>
  22. #include "llc.h"
  23. struct llc_nop {
  24. struct nfc_hci_dev *hdev;
  25. xmit_to_drv_t xmit_to_drv;
  26. rcv_to_hci_t rcv_to_hci;
  27. int tx_headroom;
  28. int tx_tailroom;
  29. llc_failure_t llc_failure;
  30. };
  31. static void *llc_nop_init(struct nfc_hci_dev *hdev, xmit_to_drv_t xmit_to_drv,
  32. rcv_to_hci_t rcv_to_hci, int tx_headroom,
  33. int tx_tailroom, int *rx_headroom, int *rx_tailroom,
  34. llc_failure_t llc_failure)
  35. {
  36. struct llc_nop *llc_nop;
  37. *rx_headroom = 0;
  38. *rx_tailroom = 0;
  39. llc_nop = kzalloc(sizeof(struct llc_nop), GFP_KERNEL);
  40. if (llc_nop == NULL)
  41. return NULL;
  42. llc_nop->hdev = hdev;
  43. llc_nop->xmit_to_drv = xmit_to_drv;
  44. llc_nop->rcv_to_hci = rcv_to_hci;
  45. llc_nop->tx_headroom = tx_headroom;
  46. llc_nop->tx_tailroom = tx_tailroom;
  47. llc_nop->llc_failure = llc_failure;
  48. return llc_nop;
  49. }
  50. static void llc_nop_deinit(struct nfc_llc *llc)
  51. {
  52. kfree(nfc_llc_get_data(llc));
  53. }
  54. static int llc_nop_start(struct nfc_llc *llc)
  55. {
  56. return 0;
  57. }
  58. static int llc_nop_stop(struct nfc_llc *llc)
  59. {
  60. return 0;
  61. }
  62. static void llc_nop_rcv_from_drv(struct nfc_llc *llc, struct sk_buff *skb)
  63. {
  64. struct llc_nop *llc_nop = nfc_llc_get_data(llc);
  65. llc_nop->rcv_to_hci(llc_nop->hdev, skb);
  66. }
  67. static int llc_nop_xmit_from_hci(struct nfc_llc *llc, struct sk_buff *skb)
  68. {
  69. struct llc_nop *llc_nop = nfc_llc_get_data(llc);
  70. return llc_nop->xmit_to_drv(llc_nop->hdev, skb);
  71. }
  72. static struct nfc_llc_ops llc_nop_ops = {
  73. .init = llc_nop_init,
  74. .deinit = llc_nop_deinit,
  75. .start = llc_nop_start,
  76. .stop = llc_nop_stop,
  77. .rcv_from_drv = llc_nop_rcv_from_drv,
  78. .xmit_from_hci = llc_nop_xmit_from_hci,
  79. };
  80. int nfc_llc_nop_register()
  81. {
  82. return nfc_llc_register(LLC_NOP_NAME, &llc_nop_ops);
  83. }
  84. EXPORT_SYMBOL(nfc_llc_nop_register);