blob: 6ab40ea17662c60cb4e99e10e5e2b8e12503206e [file] [log] [blame]
Thomas Gleixner46fe7772019-05-31 01:09:57 -07001// SPDX-License-Identifier: GPL-2.0-only
Eric Lapuyade67cccfe2012-09-13 17:10:00 +02002/*
3 * Link Layer Control manager
4 *
5 * Copyright (C) 2012 Intel Corporation. All rights reserved.
Eric Lapuyade67cccfe2012-09-13 17:10:00 +02006 */
7
Eric Lapuyade67cccfe2012-09-13 17:10:00 +02008#include <net/nfc/llc.h>
Samuel Ortizf4f20d02012-09-18 19:17:33 +02009
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020010#include "llc.h"
11
Axel Lin0b51fc52014-02-22 22:14:18 +080012static LIST_HEAD(llc_engines);
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020013
14int nfc_llc_init(void)
15{
Eric Lapuyade4a61cd62012-09-13 17:11:37 +020016 int r;
17
Eric Lapuyade4a61cd62012-09-13 17:11:37 +020018 r = nfc_llc_nop_register();
19 if (r)
20 goto exit;
21
22 r = nfc_llc_shdlc_register();
23 if (r)
24 goto exit;
25
26 return 0;
27
28exit:
29 nfc_llc_exit();
30 return r;
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020031}
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020032
33void nfc_llc_exit(void)
34{
35 struct nfc_llc_engine *llc_engine, *n;
36
37 list_for_each_entry_safe(llc_engine, n, &llc_engines, entry) {
38 list_del(&llc_engine->entry);
39 kfree(llc_engine->name);
40 kfree(llc_engine);
41 }
42}
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020043
44int nfc_llc_register(const char *name, struct nfc_llc_ops *ops)
45{
46 struct nfc_llc_engine *llc_engine;
47
48 llc_engine = kzalloc(sizeof(struct nfc_llc_engine), GFP_KERNEL);
49 if (llc_engine == NULL)
50 return -ENOMEM;
51
52 llc_engine->name = kstrdup(name, GFP_KERNEL);
53 if (llc_engine->name == NULL) {
54 kfree(llc_engine);
55 return -ENOMEM;
56 }
57 llc_engine->ops = ops;
58
59 INIT_LIST_HEAD(&llc_engine->entry);
Szymon Janc0f450772012-10-17 15:23:39 +020060 list_add_tail(&llc_engine->entry, &llc_engines);
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020061
62 return 0;
63}
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020064
65static struct nfc_llc_engine *nfc_llc_name_to_engine(const char *name)
66{
67 struct nfc_llc_engine *llc_engine;
68
69 list_for_each_entry(llc_engine, &llc_engines, entry) {
70 if (strcmp(llc_engine->name, name) == 0)
71 return llc_engine;
72 }
73
74 return NULL;
75}
76
77void nfc_llc_unregister(const char *name)
78{
79 struct nfc_llc_engine *llc_engine;
80
81 llc_engine = nfc_llc_name_to_engine(name);
82 if (llc_engine == NULL)
83 return;
84
85 list_del(&llc_engine->entry);
86 kfree(llc_engine->name);
87 kfree(llc_engine);
88}
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020089
90struct nfc_llc *nfc_llc_allocate(const char *name, struct nfc_hci_dev *hdev,
91 xmit_to_drv_t xmit_to_drv,
92 rcv_to_hci_t rcv_to_hci, int tx_headroom,
93 int tx_tailroom, llc_failure_t llc_failure)
94{
95 struct nfc_llc_engine *llc_engine;
96 struct nfc_llc *llc;
97
98 llc_engine = nfc_llc_name_to_engine(name);
99 if (llc_engine == NULL)
100 return NULL;
101
102 llc = kzalloc(sizeof(struct nfc_llc), GFP_KERNEL);
103 if (llc == NULL)
104 return NULL;
105
106 llc->data = llc_engine->ops->init(hdev, xmit_to_drv, rcv_to_hci,
107 tx_headroom, tx_tailroom,
108 &llc->rx_headroom, &llc->rx_tailroom,
109 llc_failure);
110 if (llc->data == NULL) {
111 kfree(llc);
112 return NULL;
113 }
114 llc->ops = llc_engine->ops;
115
116 return llc;
117}
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200118
119void nfc_llc_free(struct nfc_llc *llc)
120{
121 llc->ops->deinit(llc);
122 kfree(llc);
123}
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200124
Denys Vlasenkof86dec92016-04-15 18:14:25 +0200125int nfc_llc_start(struct nfc_llc *llc)
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200126{
127 return llc->ops->start(llc);
128}
Christophe Ricard15d17172015-10-26 07:50:11 +0100129EXPORT_SYMBOL(nfc_llc_start);
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200130
Denys Vlasenkof86dec92016-04-15 18:14:25 +0200131int nfc_llc_stop(struct nfc_llc *llc)
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200132{
133 return llc->ops->stop(llc);
134}
Christophe Ricard15d17172015-10-26 07:50:11 +0100135EXPORT_SYMBOL(nfc_llc_stop);
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200136
Denys Vlasenkof86dec92016-04-15 18:14:25 +0200137void nfc_llc_rcv_from_drv(struct nfc_llc *llc, struct sk_buff *skb)
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200138{
139 llc->ops->rcv_from_drv(llc, skb);
140}
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200141
Denys Vlasenkof86dec92016-04-15 18:14:25 +0200142int nfc_llc_xmit_from_hci(struct nfc_llc *llc, struct sk_buff *skb)
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200143{
144 return llc->ops->xmit_from_hci(llc, skb);
145}
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200146
Denys Vlasenkof86dec92016-04-15 18:14:25 +0200147void *nfc_llc_get_data(struct nfc_llc *llc)
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200148{
149 return llc->data;
150}