blob: 1f699cb178ca4efd927e36c4527a55ff1ef1c731 [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 public interface
4 *
5 * Copyright (C) 2012 Intel Corporation. All rights reserved.
Eric Lapuyade67cccfe2012-09-13 17:10:00 +02006 */
7
8#ifndef __NFC_LLC_H_
9#define __NFC_LLC_H_
10
11#include <net/nfc/hci.h>
12#include <linux/skbuff.h>
13
Eric Lapuyade8af00d42012-09-13 17:10:48 +020014#define LLC_NOP_NAME "nop"
Eric Lapuyade4a61cd62012-09-13 17:11:37 +020015#define LLC_SHDLC_NAME "shdlc"
Eric Lapuyade8af00d42012-09-13 17:10:48 +020016
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020017typedef void (*rcv_to_hci_t) (struct nfc_hci_dev *hdev, struct sk_buff *skb);
18typedef int (*xmit_to_drv_t) (struct nfc_hci_dev *hdev, struct sk_buff *skb);
19typedef void (*llc_failure_t) (struct nfc_hci_dev *hdev, int err);
20
21struct nfc_llc;
22
23struct nfc_llc *nfc_llc_allocate(const char *name, struct nfc_hci_dev *hdev,
24 xmit_to_drv_t xmit_to_drv,
25 rcv_to_hci_t rcv_to_hci, int tx_headroom,
26 int tx_tailroom, llc_failure_t llc_failure);
27void nfc_llc_free(struct nfc_llc *llc);
28
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020029int nfc_llc_start(struct nfc_llc *llc);
30int nfc_llc_stop(struct nfc_llc *llc);
31void nfc_llc_rcv_from_drv(struct nfc_llc *llc, struct sk_buff *skb);
32int nfc_llc_xmit_from_hci(struct nfc_llc *llc, struct sk_buff *skb);
33
34int nfc_llc_init(void);
35void nfc_llc_exit(void);
36
37#endif /* __NFC_LLC_H_ */