123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- #ifndef __WWAN_H
- #define __WWAN_H
- #include <linux/poll.h>
- #include <linux/netdevice.h>
- #include <linux/types.h>
- #include <linux/android_kabi.h>
- enum wwan_port_type {
- WWAN_PORT_AT,
- WWAN_PORT_MBIM,
- WWAN_PORT_QMI,
- WWAN_PORT_QCDM,
- WWAN_PORT_FIREHOSE,
-
- __WWAN_PORT_MAX,
- WWAN_PORT_MAX = __WWAN_PORT_MAX - 1,
- WWAN_PORT_UNKNOWN,
- };
- struct device;
- struct file;
- struct netlink_ext_ack;
- struct sk_buff;
- struct wwan_port;
- struct wwan_port_ops {
- int (*start)(struct wwan_port *port);
- void (*stop)(struct wwan_port *port);
- int (*tx)(struct wwan_port *port, struct sk_buff *skb);
-
- int (*tx_blocking)(struct wwan_port *port, struct sk_buff *skb);
- __poll_t (*tx_poll)(struct wwan_port *port, struct file *filp,
- poll_table *wait);
- ANDROID_KABI_RESERVE(1);
- ANDROID_KABI_RESERVE(2);
- };
- struct wwan_port *wwan_create_port(struct device *parent,
- enum wwan_port_type type,
- const struct wwan_port_ops *ops,
- void *drvdata);
- void wwan_remove_port(struct wwan_port *port);
- void wwan_port_rx(struct wwan_port *port, struct sk_buff *skb);
- void wwan_port_txoff(struct wwan_port *port);
- void wwan_port_txon(struct wwan_port *port);
- void *wwan_port_get_drvdata(struct wwan_port *port);
- struct wwan_netdev_priv {
- u32 link_id;
-
- u8 drv_priv[] __aligned(sizeof(void *));
- };
- static inline void *wwan_netdev_drvpriv(struct net_device *dev)
- {
- return ((struct wwan_netdev_priv *)netdev_priv(dev))->drv_priv;
- }
- #define WWAN_NO_DEFAULT_LINK U32_MAX
- struct wwan_ops {
- unsigned int priv_size;
- void (*setup)(struct net_device *dev);
- int (*newlink)(void *ctxt, struct net_device *dev,
- u32 if_id, struct netlink_ext_ack *extack);
- void (*dellink)(void *ctxt, struct net_device *dev,
- struct list_head *head);
- ANDROID_KABI_RESERVE(1);
- ANDROID_KABI_RESERVE(2);
- };
- int wwan_register_ops(struct device *parent, const struct wwan_ops *ops,
- void *ctxt, u32 def_link_id);
- void wwan_unregister_ops(struct device *parent);
- #ifdef CONFIG_WWAN_DEBUGFS
- struct dentry *wwan_get_debugfs_dir(struct device *parent);
- void wwan_put_debugfs_dir(struct dentry *dir);
- #else
- static inline struct dentry *wwan_get_debugfs_dir(struct device *parent)
- {
- return ERR_PTR(-ENODEV);
- }
- static inline void wwan_put_debugfs_dir(struct dentry *dir) {}
- #endif
- #endif
|