peak_canfd_user.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * CAN driver for PEAK System micro-CAN based adapters
  3. *
  4. * Copyright (C) 2003-2011 PEAK System-Technik GmbH
  5. * Copyright (C) 2011-2013 Stephane Grosjean <s.grosjean@peak-system.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published
  9. * by the Free Software Foundation; version 2 of the License.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. */
  16. #ifndef PEAK_CANFD_USER_H
  17. #define PEAK_CANFD_USER_H
  18. #include <linux/can/dev/peak_canfd.h>
  19. #define PCANFD_ECHO_SKB_DEF -1
  20. /* data structure private to each uCAN interface */
  21. struct peak_canfd_priv {
  22. struct can_priv can; /* socket-can private data */
  23. struct net_device *ndev; /* network device */
  24. int index; /* channel index */
  25. struct can_berr_counter bec; /* rx/tx err counters */
  26. int echo_idx; /* echo skb free slot index */
  27. spinlock_t echo_lock;
  28. int cmd_len;
  29. void *cmd_buffer;
  30. int cmd_maxlen;
  31. int (*pre_cmd)(struct peak_canfd_priv *priv);
  32. int (*write_cmd)(struct peak_canfd_priv *priv);
  33. int (*post_cmd)(struct peak_canfd_priv *priv);
  34. int (*enable_tx_path)(struct peak_canfd_priv *priv);
  35. void *(*alloc_tx_msg)(struct peak_canfd_priv *priv, u16 msg_size,
  36. int *room_left);
  37. int (*write_tx_msg)(struct peak_canfd_priv *priv,
  38. struct pucan_tx_msg *msg);
  39. };
  40. struct net_device *alloc_peak_canfd_dev(int sizeof_priv, int index,
  41. int echo_skb_max);
  42. int peak_canfd_handle_msg(struct peak_canfd_priv *priv,
  43. struct pucan_rx_msg *msg);
  44. int peak_canfd_handle_msgs_list(struct peak_canfd_priv *priv,
  45. struct pucan_rx_msg *rx_msg, int rx_count);
  46. #endif