ecm_ipa.c 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2013-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/debugfs.h>
  6. #include <linux/errno.h>
  7. #include <linux/etherdevice.h>
  8. #include <linux/if_vlan.h>
  9. #include <linux/fs.h>
  10. #include <linux/module.h>
  11. #include <linux/netdevice.h>
  12. #include <linux/skbuff.h>
  13. #include <linux/sched.h>
  14. #include <linux/atomic.h>
  15. #include <linux/ecm_ipa.h>
  16. #include "../ipa_common_i.h"
  17. #include "../ipa_v3/ipa_pm.h"
  18. #define DRIVER_NAME "ecm_ipa"
  19. #define ECM_IPA_IPV4_HDR_NAME "ecm_eth_ipv4"
  20. #define ECM_IPA_IPV6_HDR_NAME "ecm_eth_ipv6"
  21. #define INACTIVITY_MSEC_DELAY 100
  22. #define DEFAULT_OUTSTANDING_HIGH 64
  23. #define DEFAULT_OUTSTANDING_LOW 32
  24. #define DEBUGFS_TEMP_BUF_SIZE 4
  25. #define TX_TIMEOUT (5 * HZ)
  26. #define IPA_ECM_IPC_LOG_PAGES 50
  27. #define IPA_ECM_IPC_LOGGING(buf, fmt, args...) \
  28. do { \
  29. if (buf) \
  30. ipc_log_string((buf), fmt, __func__, __LINE__, \
  31. ## args); \
  32. } while (0)
  33. static void *ipa_ecm_logbuf;
  34. #define ECM_IPA_DEBUG(fmt, args...) \
  35. do { \
  36. pr_debug(DRIVER_NAME " %s:%d "\
  37. fmt, __func__, __LINE__, ## args);\
  38. if (ipa_ecm_logbuf) { \
  39. IPA_ECM_IPC_LOGGING(ipa_ecm_logbuf, \
  40. DRIVER_NAME " %s:%d " fmt, ## args); \
  41. } \
  42. } while (0)
  43. #define ECM_IPA_DEBUG_XMIT(fmt, args...) \
  44. pr_debug(DRIVER_NAME " %s:%d " fmt, __func__, __LINE__, ## args)
  45. #define ECM_IPA_INFO(fmt, args...) \
  46. do { \
  47. pr_info(DRIVER_NAME "@%s@%d@ctx:%s: "\
  48. fmt, __func__, __LINE__, current->comm, ## args);\
  49. if (ipa_ecm_logbuf) { \
  50. IPA_ECM_IPC_LOGGING(ipa_ecm_logbuf, \
  51. DRIVER_NAME " %s:%d " fmt, ## args); \
  52. } \
  53. } while (0)
  54. #define ECM_IPA_ERROR(fmt, args...) \
  55. do { \
  56. pr_err(DRIVER_NAME "@%s@%d@ctx:%s: "\
  57. fmt, __func__, __LINE__, current->comm, ## args);\
  58. if (ipa_ecm_logbuf) { \
  59. IPA_ECM_IPC_LOGGING(ipa_ecm_logbuf, \
  60. DRIVER_NAME " %s:%d " fmt, ## args); \
  61. } \
  62. } while (0)
  63. #define NULL_CHECK(ptr) \
  64. do { \
  65. if (!(ptr)) { \
  66. ECM_IPA_ERROR("null pointer #ptr\n"); \
  67. ret = -EINVAL; \
  68. } \
  69. } \
  70. while (0)
  71. #define ECM_IPA_LOG_ENTRY() ECM_IPA_DEBUG("begin\n")
  72. #define ECM_IPA_LOG_EXIT() ECM_IPA_DEBUG("end\n")
  73. /**
  74. * enum ecm_ipa_state - specify the current driver internal state
  75. * which is guarded by a state machine.
  76. *
  77. * The driver internal state changes due to its external API usage.
  78. * The driver saves its internal state to guard from caller illegal
  79. * call sequence.
  80. * states:
  81. * UNLOADED is the first state which is the default one and is also the state
  82. * after the driver gets unloaded(cleanup).
  83. * INITIALIZED is the driver state once it finished registering
  84. * the network device and all internal data struct were initialized
  85. * CONNECTED is the driver state once the USB pipes were connected to IPA
  86. * UP is the driver state after the interface mode was set to UP but the
  87. * pipes are not connected yet - this state is meta-stable state.
  88. * CONNECTED_AND_UP is the driver state when the pipe were connected and
  89. * the interface got UP request from the network stack. this is the driver
  90. * idle operation state which allows it to transmit/receive data.
  91. * INVALID is a state which is not allowed.
  92. */
  93. enum ecm_ipa_state {
  94. ECM_IPA_UNLOADED = 0,
  95. ECM_IPA_INITIALIZED,
  96. ECM_IPA_CONNECTED,
  97. ECM_IPA_UP,
  98. ECM_IPA_CONNECTED_AND_UP,
  99. ECM_IPA_INVALID,
  100. };
  101. /**
  102. * enum ecm_ipa_operation - enumerations used to describe the API operation
  103. *
  104. * Those enums are used as input for the driver state machine.
  105. */
  106. enum ecm_ipa_operation {
  107. ECM_IPA_INITIALIZE,
  108. ECM_IPA_CONNECT,
  109. ECM_IPA_OPEN,
  110. ECM_IPA_STOP,
  111. ECM_IPA_DISCONNECT,
  112. ECM_IPA_CLEANUP,
  113. };
  114. #define ECM_IPA_STATE_DEBUG(ecm_ipa_ctx) \
  115. ECM_IPA_DEBUG("Driver state - %s\n",\
  116. ecm_ipa_state_string((ecm_ipa_ctx)->state))
  117. /**
  118. * struct ecm_ipa_dev - main driver context parameters
  119. * @net: network interface struct implemented by this driver
  120. * @directory: debugfs directory for various debuging switches
  121. * @eth_ipv4_hdr_hdl: saved handle for ipv4 header-insertion table
  122. * @eth_ipv6_hdr_hdl: saved handle for ipv6 header-insertion table
  123. * @usb_to_ipa_hdl: save handle for IPA pipe operations
  124. * @ipa_to_usb_hdl: save handle for IPA pipe operations
  125. * @outstanding_pkts: number of packets sent to IPA without TX complete ACKed
  126. * @outstanding_high: number of outstanding packets allowed
  127. * @outstanding_low: number of outstanding packets which shall cause
  128. * to netdev queue start (after stopped due to outstanding_high reached)
  129. * @state: current state of ecm_ipa driver
  130. * @device_ready_notify: callback supplied by USB core driver
  131. * This callback shall be called by the Netdev once the Netdev internal
  132. * state is changed to RNDIS_IPA_CONNECTED_AND_UP
  133. * @ipa_to_usb_client: consumer client
  134. * @usb_to_ipa_client: producer client
  135. * @pm_hdl: handle for IPA PM
  136. * @is_vlan_mode: does the driver need to work in VLAN mode?
  137. */
  138. struct ecm_ipa_dev {
  139. struct net_device *net;
  140. struct dentry *directory;
  141. u32 eth_ipv4_hdr_hdl;
  142. u32 eth_ipv6_hdr_hdl;
  143. u32 usb_to_ipa_hdl;
  144. u32 ipa_to_usb_hdl;
  145. atomic_t outstanding_pkts;
  146. u8 outstanding_high;
  147. u8 outstanding_low;
  148. enum ecm_ipa_state state;
  149. void (*device_ready_notify)(void);
  150. enum ipa_client_type ipa_to_usb_client;
  151. enum ipa_client_type usb_to_ipa_client;
  152. u32 pm_hdl;
  153. bool is_vlan_mode;
  154. };
  155. static int ecm_ipa_open(struct net_device *net);
  156. static void ecm_ipa_packet_receive_notify
  157. (void *priv, enum ipa_dp_evt_type evt, unsigned long data);
  158. static void ecm_ipa_tx_complete_notify
  159. (void *priv, enum ipa_dp_evt_type evt, unsigned long data);
  160. static void ecm_ipa_tx_timeout(struct net_device *net);
  161. static int ecm_ipa_stop(struct net_device *net);
  162. static void ecm_ipa_enable_data_path(struct ecm_ipa_dev *ecm_ipa_ctx);
  163. static int ecm_ipa_rules_cfg
  164. (struct ecm_ipa_dev *ecm_ipa_ctx, const void *dst_mac,
  165. const void *src_mac);
  166. static void ecm_ipa_rules_destroy(struct ecm_ipa_dev *ecm_ipa_ctx);
  167. static int ecm_ipa_register_properties(struct ecm_ipa_dev *ecm_ipa_ctx);
  168. static void ecm_ipa_deregister_properties(void);
  169. static struct net_device_stats *ecm_ipa_get_stats(struct net_device *net);
  170. static int ecm_ipa_register_pm_client(struct ecm_ipa_dev *ecm_ipa_ctx);
  171. static void ecm_ipa_deregister_pm_client(struct ecm_ipa_dev *ecm_ipa_ctx);
  172. static netdev_tx_t ecm_ipa_start_xmit
  173. (struct sk_buff *skb, struct net_device *net);
  174. static int ecm_ipa_debugfs_atomic_open(struct inode *inode, struct file *file);
  175. static ssize_t ecm_ipa_debugfs_atomic_read
  176. (struct file *file, char __user *ubuf, size_t count, loff_t *ppos);
  177. static void ecm_ipa_debugfs_init(struct ecm_ipa_dev *ecm_ipa_ctx);
  178. static void ecm_ipa_debugfs_destroy(struct ecm_ipa_dev *ecm_ipa_ctx);
  179. static int ecm_ipa_ep_registers_cfg(u32 usb_to_ipa_hdl, u32 ipa_to_usb_hdl,
  180. bool is_vlan_mode);
  181. static int ecm_ipa_set_device_ethernet_addr
  182. (u8 *dev_ethaddr, u8 device_ethaddr[]);
  183. static enum ecm_ipa_state ecm_ipa_next_state
  184. (enum ecm_ipa_state current_state, enum ecm_ipa_operation operation);
  185. static const char *ecm_ipa_state_string(enum ecm_ipa_state state);
  186. static int ecm_ipa_init_module(void);
  187. static void ecm_ipa_cleanup_module(void);
  188. static const struct net_device_ops ecm_ipa_netdev_ops = {
  189. .ndo_open = ecm_ipa_open,
  190. .ndo_stop = ecm_ipa_stop,
  191. .ndo_start_xmit = ecm_ipa_start_xmit,
  192. .ndo_set_mac_address = eth_mac_addr,
  193. .ndo_tx_timeout = ecm_ipa_tx_timeout,
  194. .ndo_get_stats = ecm_ipa_get_stats,
  195. };
  196. const struct file_operations ecm_ipa_debugfs_atomic_ops = {
  197. .open = ecm_ipa_debugfs_atomic_open,
  198. .read = ecm_ipa_debugfs_atomic_read,
  199. };
  200. static void ecm_ipa_msg_free_cb(void *buff, u32 len, u32 type)
  201. {
  202. kfree(buff);
  203. }
  204. /**
  205. * ecm_ipa_init() - create network device and initializes internal
  206. * data structures
  207. * @params: in/out parameters required for ecm_ipa initialization
  208. *
  209. * Shall be called prior to pipe connection.
  210. * The out parameters (the callbacks) shall be supplied to ipa_connect.
  211. * Detailed description:
  212. * - allocate the network device
  213. * - set default values for driver internals
  214. * - create debugfs folder and files
  215. * - add header insertion rules for IPA driver (based on host/device
  216. * Ethernet addresses given in input params)
  217. * - register tx/rx properties to IPA driver (will be later used
  218. * by IPA configuration manager to configure reset of the IPA rules)
  219. * - set the carrier state to "off" (until ecm_ipa_connect is called)
  220. * - register the network device
  221. * - set the out parameters
  222. *
  223. * Returns negative errno, or zero on success
  224. */
  225. int ecm_ipa_init(struct ecm_ipa_params *params)
  226. {
  227. int result = 0;
  228. struct net_device *net;
  229. struct ecm_ipa_dev *ecm_ipa_ctx;
  230. int ret;
  231. ECM_IPA_LOG_ENTRY();
  232. ECM_IPA_DEBUG("%s initializing\n", DRIVER_NAME);
  233. ret = 0;
  234. NULL_CHECK(params);
  235. if (ret)
  236. return ret;
  237. ECM_IPA_DEBUG
  238. ("host_ethaddr=%pM, device_ethaddr=%pM\n",
  239. params->host_ethaddr,
  240. params->device_ethaddr);
  241. net = alloc_etherdev(sizeof(struct ecm_ipa_dev));
  242. if (!net) {
  243. result = -ENOMEM;
  244. ECM_IPA_ERROR("fail to allocate etherdev\n");
  245. goto fail_alloc_etherdev;
  246. }
  247. ECM_IPA_DEBUG("network device was successfully allocated\n");
  248. ecm_ipa_ctx = netdev_priv(net);
  249. if (!ecm_ipa_ctx) {
  250. ECM_IPA_ERROR("fail to extract netdev priv\n");
  251. result = -ENOMEM;
  252. goto fail_netdev_priv;
  253. }
  254. memset(ecm_ipa_ctx, 0, sizeof(*ecm_ipa_ctx));
  255. ECM_IPA_DEBUG("ecm_ipa_ctx (private) = %pK\n", ecm_ipa_ctx);
  256. ecm_ipa_ctx->net = net;
  257. ecm_ipa_ctx->outstanding_high = DEFAULT_OUTSTANDING_HIGH;
  258. ecm_ipa_ctx->outstanding_low = DEFAULT_OUTSTANDING_LOW;
  259. atomic_set(&ecm_ipa_ctx->outstanding_pkts, 0);
  260. snprintf(net->name, sizeof(net->name), "%s%%d", "ecm");
  261. net->netdev_ops = &ecm_ipa_netdev_ops;
  262. net->watchdog_timeo = TX_TIMEOUT;
  263. ECM_IPA_DEBUG("internal data structures were initialized\n");
  264. if (!params->device_ready_notify)
  265. ECM_IPA_DEBUG("device_ready_notify() was not supplied");
  266. ecm_ipa_ctx->device_ready_notify = params->device_ready_notify;
  267. ecm_ipa_debugfs_init(ecm_ipa_ctx);
  268. result = ecm_ipa_set_device_ethernet_addr
  269. (net->dev_addr, params->device_ethaddr);
  270. if (result) {
  271. ECM_IPA_ERROR("set device MAC failed\n");
  272. goto fail_set_device_ethernet;
  273. }
  274. ECM_IPA_DEBUG("Device Ethernet address set %pM\n", net->dev_addr);
  275. if (ipa_is_vlan_mode(IPA_VLAN_IF_ECM, &ecm_ipa_ctx->is_vlan_mode)) {
  276. ECM_IPA_ERROR("couldn't acquire vlan mode, is ipa ready?\n");
  277. goto fail_get_vlan_mode;
  278. }
  279. ECM_IPA_DEBUG("is vlan mode %d\n", ecm_ipa_ctx->is_vlan_mode);
  280. result = ecm_ipa_rules_cfg
  281. (ecm_ipa_ctx, params->host_ethaddr, params->device_ethaddr);
  282. if (result) {
  283. ECM_IPA_ERROR("fail on ipa rules set\n");
  284. goto fail_rules_cfg;
  285. }
  286. ECM_IPA_DEBUG("Ethernet header insertion set\n");
  287. netif_carrier_off(net);
  288. ECM_IPA_DEBUG("netif_carrier_off() was called\n");
  289. netif_stop_queue(ecm_ipa_ctx->net);
  290. ECM_IPA_DEBUG("netif_stop_queue() was called");
  291. result = register_netdev(net);
  292. if (result) {
  293. ECM_IPA_ERROR("register_netdev failed: %d\n", result);
  294. goto fail_register_netdev;
  295. }
  296. ECM_IPA_DEBUG("register_netdev succeeded\n");
  297. params->ecm_ipa_rx_dp_notify = ecm_ipa_packet_receive_notify;
  298. params->ecm_ipa_tx_dp_notify = ecm_ipa_tx_complete_notify;
  299. params->private = (void *)ecm_ipa_ctx;
  300. params->skip_ep_cfg = false;
  301. ecm_ipa_ctx->state = ECM_IPA_INITIALIZED;
  302. ECM_IPA_STATE_DEBUG(ecm_ipa_ctx);
  303. ECM_IPA_INFO("ECM_IPA was initialized successfully\n");
  304. ECM_IPA_LOG_EXIT();
  305. return 0;
  306. fail_register_netdev:
  307. ecm_ipa_rules_destroy(ecm_ipa_ctx);
  308. fail_rules_cfg:
  309. fail_get_vlan_mode:
  310. fail_set_device_ethernet:
  311. ecm_ipa_debugfs_destroy(ecm_ipa_ctx);
  312. fail_netdev_priv:
  313. free_netdev(net);
  314. fail_alloc_etherdev:
  315. return result;
  316. }
  317. EXPORT_SYMBOL(ecm_ipa_init);
  318. /**
  319. * ecm_ipa_connect() - notify ecm_ipa for IPA<->USB pipes connection
  320. * @usb_to_ipa_hdl: handle of IPA driver client for USB->IPA
  321. * @ipa_to_usb_hdl: handle of IPA driver client for IPA->USB
  322. * @priv: same value that was set by ecm_ipa_init(), this
  323. * parameter holds the network device pointer.
  324. *
  325. * Once USB driver finishes the pipe connection between IPA core
  326. * and USB core this method shall be called in order to
  327. * allow ecm_ipa complete the data path configurations.
  328. * Caller should make sure that it is calling this function
  329. * from a context that allows it to handle device_ready_notify().
  330. * Detailed description:
  331. * - configure the IPA end-points register
  332. * - notify the Linux kernel for "carrier_on"
  333. * After this function is done the driver state changes to "Connected".
  334. * This API is expected to be called after ecm_ipa_init() or
  335. * after a call to ecm_ipa_disconnect.
  336. */
  337. int ecm_ipa_connect(u32 usb_to_ipa_hdl, u32 ipa_to_usb_hdl, void *priv)
  338. {
  339. struct ecm_ipa_dev *ecm_ipa_ctx = priv;
  340. int next_state;
  341. struct ipa_ecm_msg *ecm_msg;
  342. struct ipa_msg_meta msg_meta;
  343. int retval;
  344. int ret;
  345. ECM_IPA_LOG_ENTRY();
  346. ret = 0;
  347. NULL_CHECK(priv);
  348. if (ret)
  349. return ret;
  350. ECM_IPA_DEBUG("usb_to_ipa_hdl = %d, ipa_to_usb_hdl = %d, priv=0x%pK\n",
  351. usb_to_ipa_hdl, ipa_to_usb_hdl, priv);
  352. next_state = ecm_ipa_next_state(ecm_ipa_ctx->state, ECM_IPA_CONNECT);
  353. if (next_state == ECM_IPA_INVALID) {
  354. ECM_IPA_ERROR("can't call connect before calling initialize\n");
  355. return -EPERM;
  356. }
  357. ecm_ipa_ctx->state = next_state;
  358. ECM_IPA_STATE_DEBUG(ecm_ipa_ctx);
  359. if (!ipa_is_client_handle_valid(usb_to_ipa_hdl)) {
  360. ECM_IPA_ERROR
  361. ("usb_to_ipa_hdl(%d) is not a valid ipa handle\n",
  362. usb_to_ipa_hdl);
  363. return -EINVAL;
  364. }
  365. if (!ipa_is_client_handle_valid(ipa_to_usb_hdl)) {
  366. ECM_IPA_ERROR
  367. ("ipa_to_usb_hdl(%d) is not a valid ipa handle\n",
  368. ipa_to_usb_hdl);
  369. return -EINVAL;
  370. }
  371. ecm_ipa_ctx->ipa_to_usb_hdl = ipa_to_usb_hdl;
  372. ecm_ipa_ctx->usb_to_ipa_hdl = usb_to_ipa_hdl;
  373. ecm_ipa_ctx->ipa_to_usb_client = ipa_get_client_mapping(ipa_to_usb_hdl);
  374. if (ecm_ipa_ctx->ipa_to_usb_client < 0) {
  375. ECM_IPA_ERROR(
  376. "Error getting IPA->USB client from handle %d\n",
  377. ecm_ipa_ctx->ipa_to_usb_client);
  378. return -EINVAL;
  379. }
  380. ECM_IPA_DEBUG("ipa_to_usb_client = %d\n",
  381. ecm_ipa_ctx->ipa_to_usb_client);
  382. ecm_ipa_ctx->usb_to_ipa_client = ipa_get_client_mapping(usb_to_ipa_hdl);
  383. if (ecm_ipa_ctx->usb_to_ipa_client < 0) {
  384. ECM_IPA_ERROR(
  385. "Error getting USB->IPA client from handle %d\n",
  386. ecm_ipa_ctx->usb_to_ipa_client);
  387. return -EINVAL;
  388. }
  389. ECM_IPA_DEBUG("usb_to_ipa_client = %d\n",
  390. ecm_ipa_ctx->usb_to_ipa_client);
  391. retval = ecm_ipa_register_pm_client(ecm_ipa_ctx);
  392. if (retval) {
  393. ECM_IPA_ERROR("fail register PM client\n");
  394. return retval;
  395. }
  396. ECM_IPA_DEBUG("PM client registered\n");
  397. retval = ecm_ipa_register_properties(ecm_ipa_ctx);
  398. if (retval) {
  399. ECM_IPA_ERROR("fail on properties set\n");
  400. goto fail_register_pm;
  401. }
  402. ECM_IPA_DEBUG("ecm_ipa 2 Tx and 2 Rx properties were registered\n");
  403. retval = ecm_ipa_ep_registers_cfg(usb_to_ipa_hdl, ipa_to_usb_hdl,
  404. ecm_ipa_ctx->is_vlan_mode);
  405. if (retval) {
  406. ECM_IPA_ERROR("fail on ep cfg\n");
  407. goto fail;
  408. }
  409. ECM_IPA_DEBUG("end-point configured\n");
  410. netif_carrier_on(ecm_ipa_ctx->net);
  411. ecm_msg = kzalloc(sizeof(*ecm_msg), GFP_KERNEL);
  412. if (!ecm_msg) {
  413. retval = -ENOMEM;
  414. goto fail;
  415. }
  416. memset(&msg_meta, 0, sizeof(struct ipa_msg_meta));
  417. msg_meta.msg_type = ECM_CONNECT;
  418. msg_meta.msg_len = sizeof(struct ipa_ecm_msg);
  419. strlcpy(ecm_msg->name, ecm_ipa_ctx->net->name,
  420. IPA_RESOURCE_NAME_MAX);
  421. ecm_msg->ifindex = ecm_ipa_ctx->net->ifindex;
  422. retval = ipa_send_msg(&msg_meta, ecm_msg, ecm_ipa_msg_free_cb);
  423. if (retval) {
  424. ECM_IPA_ERROR("fail to send ECM_CONNECT message\n");
  425. kfree(ecm_msg);
  426. goto fail;
  427. }
  428. if (!netif_carrier_ok(ecm_ipa_ctx->net)) {
  429. ECM_IPA_ERROR("netif_carrier_ok error\n");
  430. retval = -EBUSY;
  431. goto fail;
  432. }
  433. ECM_IPA_DEBUG("carrier_on notified\n");
  434. if (ecm_ipa_ctx->state == ECM_IPA_CONNECTED_AND_UP)
  435. ecm_ipa_enable_data_path(ecm_ipa_ctx);
  436. else
  437. ECM_IPA_DEBUG("data path was not enabled yet\n");
  438. ECM_IPA_INFO("ECM_IPA was connected successfully\n");
  439. ECM_IPA_LOG_EXIT();
  440. return 0;
  441. fail:
  442. ecm_ipa_deregister_properties();
  443. fail_register_pm:
  444. ecm_ipa_deregister_pm_client(ecm_ipa_ctx);
  445. return retval;
  446. }
  447. EXPORT_SYMBOL(ecm_ipa_connect);
  448. /**
  449. * ecm_ipa_open() - notify Linux network stack to start sending packets
  450. * @net: the network interface supplied by the network stack
  451. *
  452. * Linux uses this API to notify the driver that the network interface
  453. * transitions to the up state.
  454. * The driver will instruct the Linux network stack to start
  455. * delivering data packets.
  456. */
  457. static int ecm_ipa_open(struct net_device *net)
  458. {
  459. struct ecm_ipa_dev *ecm_ipa_ctx;
  460. int next_state;
  461. ECM_IPA_LOG_ENTRY();
  462. ecm_ipa_ctx = netdev_priv(net);
  463. next_state = ecm_ipa_next_state(ecm_ipa_ctx->state, ECM_IPA_OPEN);
  464. if (next_state == ECM_IPA_INVALID) {
  465. ECM_IPA_ERROR("can't bring driver up before initialize\n");
  466. return -EPERM;
  467. }
  468. ecm_ipa_ctx->state = next_state;
  469. ECM_IPA_STATE_DEBUG(ecm_ipa_ctx);
  470. if (ecm_ipa_ctx->state == ECM_IPA_CONNECTED_AND_UP)
  471. ecm_ipa_enable_data_path(ecm_ipa_ctx);
  472. else
  473. ECM_IPA_DEBUG("data path was not enabled yet\n");
  474. ECM_IPA_LOG_EXIT();
  475. return 0;
  476. }
  477. /**
  478. * ecm_ipa_start_xmit() - send data from APPs to USB core via IPA core
  479. * @skb: packet received from Linux network stack
  480. * @net: the network device being used to send this packet
  481. *
  482. * Several conditions needed in order to send the packet to IPA:
  483. * - Transmit queue for the network driver is currently
  484. * in "send" state
  485. * - The driver internal state is in "UP" state.
  486. * - Filter Tx switch is turned off
  487. * - Outstanding high boundary did not reach.
  488. *
  489. * In case all of the above conditions are met, the network driver will
  490. * send the packet by using the IPA API for Tx.
  491. * In case the outstanding packet high boundary is reached, the driver will
  492. * stop the send queue until enough packet were proceeded by the IPA core.
  493. */
  494. static netdev_tx_t ecm_ipa_start_xmit
  495. (struct sk_buff *skb, struct net_device *net)
  496. {
  497. int ret;
  498. netdev_tx_t status = NETDEV_TX_BUSY;
  499. struct ecm_ipa_dev *ecm_ipa_ctx = netdev_priv(net);
  500. netif_trans_update(net);
  501. ECM_IPA_DEBUG_XMIT
  502. ("Tx, len=%d, skb->protocol=%d, outstanding=%d\n",
  503. skb->len, skb->protocol,
  504. atomic_read(&ecm_ipa_ctx->outstanding_pkts));
  505. if (unlikely(netif_queue_stopped(net))) {
  506. ECM_IPA_ERROR("interface queue is stopped\n");
  507. goto out;
  508. }
  509. if (unlikely(ecm_ipa_ctx->state != ECM_IPA_CONNECTED_AND_UP)) {
  510. ECM_IPA_ERROR("Missing pipe connected and/or iface up\n");
  511. return NETDEV_TX_BUSY;
  512. }
  513. ret = ipa_pm_activate(ecm_ipa_ctx->pm_hdl);
  514. if (ret) {
  515. ECM_IPA_DEBUG("Failed to activate PM client\n");
  516. netif_stop_queue(net);
  517. goto fail_pm_activate;
  518. }
  519. if (atomic_read(&ecm_ipa_ctx->outstanding_pkts) >=
  520. ecm_ipa_ctx->outstanding_high) {
  521. ECM_IPA_DEBUG
  522. ("outstanding high (%d)- stopping\n",
  523. ecm_ipa_ctx->outstanding_high);
  524. netif_stop_queue(net);
  525. status = NETDEV_TX_BUSY;
  526. goto out;
  527. }
  528. if (ecm_ipa_ctx->is_vlan_mode)
  529. if (unlikely(skb->protocol != htons(ETH_P_8021Q)))
  530. ECM_IPA_DEBUG(
  531. "ether_type != ETH_P_8021Q && vlan, prot = 0x%X\n"
  532. , skb->protocol);
  533. ret = ipa_tx_dp(ecm_ipa_ctx->ipa_to_usb_client, skb, NULL);
  534. if (ret) {
  535. ECM_IPA_ERROR("ipa transmit failed (%d)\n", ret);
  536. goto fail_tx_packet;
  537. }
  538. atomic_inc(&ecm_ipa_ctx->outstanding_pkts);
  539. status = NETDEV_TX_OK;
  540. goto out;
  541. fail_tx_packet:
  542. out:
  543. ipa_pm_deferred_deactivate(ecm_ipa_ctx->pm_hdl);
  544. fail_pm_activate:
  545. return status;
  546. }
  547. /**
  548. * ecm_ipa_packet_receive_notify() - Rx notify
  549. *
  550. * @priv: ecm driver context
  551. * @evt: event type
  552. * @data: data provided with event
  553. *
  554. * IPA will pass a packet to the Linux network stack with skb->data pointing
  555. * to Ethernet packet frame.
  556. */
  557. static void ecm_ipa_packet_receive_notify
  558. (void *priv, enum ipa_dp_evt_type evt, unsigned long data)
  559. {
  560. struct sk_buff *skb = (struct sk_buff *)data;
  561. struct ecm_ipa_dev *ecm_ipa_ctx = priv;
  562. int result;
  563. unsigned int packet_len;
  564. if (!skb) {
  565. ECM_IPA_ERROR("Bad SKB received from IPA driver\n");
  566. return;
  567. }
  568. packet_len = skb->len;
  569. ECM_IPA_DEBUG("packet RX, len=%d\n", skb->len);
  570. if (unlikely(ecm_ipa_ctx->state != ECM_IPA_CONNECTED_AND_UP)) {
  571. ECM_IPA_DEBUG("Missing pipe connected and/or iface up\n");
  572. return;
  573. }
  574. if (evt != IPA_RECEIVE) {
  575. ECM_IPA_ERROR("A none IPA_RECEIVE event in ecm_ipa_receive\n");
  576. return;
  577. }
  578. skb->dev = ecm_ipa_ctx->net;
  579. skb->protocol = eth_type_trans(skb, ecm_ipa_ctx->net);
  580. result = netif_rx(skb);
  581. if (result)
  582. ECM_IPA_ERROR("fail on netif_rx\n");
  583. ecm_ipa_ctx->net->stats.rx_packets++;
  584. ecm_ipa_ctx->net->stats.rx_bytes += packet_len;
  585. }
  586. /** ecm_ipa_stop() - called when network device transitions to the down
  587. * state.
  588. * @net: the network device being stopped.
  589. *
  590. * This API is used by Linux network stack to notify the network driver that
  591. * its state was changed to "down"
  592. * The driver will stop the "send" queue and change its internal
  593. * state to "Connected".
  594. */
  595. static int ecm_ipa_stop(struct net_device *net)
  596. {
  597. struct ecm_ipa_dev *ecm_ipa_ctx = netdev_priv(net);
  598. int next_state;
  599. ECM_IPA_LOG_ENTRY();
  600. next_state = ecm_ipa_next_state(ecm_ipa_ctx->state, ECM_IPA_STOP);
  601. if (next_state == ECM_IPA_INVALID) {
  602. ECM_IPA_ERROR("can't do network interface down without up\n");
  603. return -EPERM;
  604. }
  605. ecm_ipa_ctx->state = next_state;
  606. ECM_IPA_STATE_DEBUG(ecm_ipa_ctx);
  607. netif_stop_queue(net);
  608. ECM_IPA_DEBUG("network device stopped\n");
  609. ECM_IPA_LOG_EXIT();
  610. return 0;
  611. }
  612. /** ecm_ipa_disconnect() - called when the USB cable is unplugged.
  613. * @priv: same value that was set by ecm_ipa_init(), this
  614. * parameter holds the network device pointer.
  615. *
  616. * Once the USB cable is unplugged the USB driver will notify the network
  617. * interface driver.
  618. * The internal driver state will returned to its initialized state and
  619. * Linux network stack will be informed for carrier off and the send queue
  620. * will be stopped.
  621. */
  622. int ecm_ipa_disconnect(void *priv)
  623. {
  624. struct ecm_ipa_dev *ecm_ipa_ctx = priv;
  625. int next_state;
  626. struct ipa_ecm_msg *ecm_msg;
  627. struct ipa_msg_meta msg_meta;
  628. int retval;
  629. int outstanding_dropped_pkts;
  630. int ret;
  631. ECM_IPA_LOG_ENTRY();
  632. ret = 0;
  633. NULL_CHECK(ecm_ipa_ctx);
  634. if (ret)
  635. return ret;
  636. ECM_IPA_DEBUG("priv=0x%pK\n", priv);
  637. next_state = ecm_ipa_next_state(ecm_ipa_ctx->state, ECM_IPA_DISCONNECT);
  638. if (next_state == ECM_IPA_INVALID) {
  639. ECM_IPA_ERROR("can't disconnect before connect\n");
  640. return -EPERM;
  641. }
  642. ecm_ipa_ctx->state = next_state;
  643. ECM_IPA_STATE_DEBUG(ecm_ipa_ctx);
  644. netif_carrier_off(ecm_ipa_ctx->net);
  645. ECM_IPA_DEBUG("carrier_off notifcation was sent\n");
  646. ecm_msg = kzalloc(sizeof(*ecm_msg), GFP_KERNEL);
  647. if (!ecm_msg)
  648. return -ENOMEM;
  649. memset(&msg_meta, 0, sizeof(struct ipa_msg_meta));
  650. msg_meta.msg_type = ECM_DISCONNECT;
  651. msg_meta.msg_len = sizeof(struct ipa_ecm_msg);
  652. strlcpy(ecm_msg->name, ecm_ipa_ctx->net->name,
  653. IPA_RESOURCE_NAME_MAX);
  654. ecm_msg->ifindex = ecm_ipa_ctx->net->ifindex;
  655. retval = ipa_send_msg(&msg_meta, ecm_msg, ecm_ipa_msg_free_cb);
  656. if (retval) {
  657. ECM_IPA_ERROR("fail to send ECM_DISCONNECT message\n");
  658. kfree(ecm_msg);
  659. return -EPERM;
  660. }
  661. netif_stop_queue(ecm_ipa_ctx->net);
  662. ECM_IPA_DEBUG("queue stopped\n");
  663. ecm_ipa_deregister_pm_client(ecm_ipa_ctx);
  664. outstanding_dropped_pkts =
  665. atomic_read(&ecm_ipa_ctx->outstanding_pkts);
  666. ecm_ipa_ctx->net->stats.tx_errors += outstanding_dropped_pkts;
  667. atomic_set(&ecm_ipa_ctx->outstanding_pkts, 0);
  668. ECM_IPA_INFO("ECM_IPA was disconnected successfully\n");
  669. ECM_IPA_LOG_EXIT();
  670. return 0;
  671. }
  672. EXPORT_SYMBOL(ecm_ipa_disconnect);
  673. /**
  674. * ecm_ipa_cleanup() - unregister the network interface driver and free
  675. * internal data structs.
  676. * @priv: same value that was set by ecm_ipa_init(), this
  677. * parameter holds the network device pointer.
  678. *
  679. * This function shall be called once the network interface is not
  680. * needed anymore, e.g: when the USB composition does not support ECM.
  681. * This function shall be called after the pipes were disconnected.
  682. * Detailed description:
  683. * - remove the debugfs entries
  684. * - deregister the network interface from Linux network stack
  685. * - free all internal data structs
  686. */
  687. void ecm_ipa_cleanup(void *priv)
  688. {
  689. struct ecm_ipa_dev *ecm_ipa_ctx = priv;
  690. int next_state;
  691. ECM_IPA_LOG_ENTRY();
  692. ECM_IPA_DEBUG("priv=0x%pK\n", priv);
  693. if (!ecm_ipa_ctx) {
  694. ECM_IPA_ERROR("ecm_ipa_ctx NULL pointer\n");
  695. return;
  696. }
  697. next_state = ecm_ipa_next_state(ecm_ipa_ctx->state, ECM_IPA_CLEANUP);
  698. if (next_state == ECM_IPA_INVALID) {
  699. ECM_IPA_ERROR("can't clean driver without cable disconnect\n");
  700. return;
  701. }
  702. ecm_ipa_ctx->state = next_state;
  703. ECM_IPA_STATE_DEBUG(ecm_ipa_ctx);
  704. ecm_ipa_rules_destroy(ecm_ipa_ctx);
  705. ecm_ipa_debugfs_destroy(ecm_ipa_ctx);
  706. unregister_netdev(ecm_ipa_ctx->net);
  707. free_netdev(ecm_ipa_ctx->net);
  708. ECM_IPA_INFO("ECM_IPA was destroyed successfully\n");
  709. ECM_IPA_LOG_EXIT();
  710. }
  711. EXPORT_SYMBOL(ecm_ipa_cleanup);
  712. static void ecm_ipa_enable_data_path(struct ecm_ipa_dev *ecm_ipa_ctx)
  713. {
  714. if (ecm_ipa_ctx->device_ready_notify) {
  715. ecm_ipa_ctx->device_ready_notify();
  716. ECM_IPA_DEBUG("USB device_ready_notify() was called\n");
  717. } else {
  718. ECM_IPA_DEBUG("device_ready_notify() not supplied\n");
  719. }
  720. netif_start_queue(ecm_ipa_ctx->net);
  721. ECM_IPA_DEBUG("queue started\n");
  722. }
  723. static void ecm_ipa_prepare_header_insertion(
  724. int eth_type,
  725. const char *hdr_name, struct ipa_hdr_add *add_hdr,
  726. const void *dst_mac, const void *src_mac, bool is_vlan_mode)
  727. {
  728. struct ethhdr *eth_hdr;
  729. struct vlan_ethhdr *eth_vlan_hdr;
  730. ECM_IPA_LOG_ENTRY();
  731. add_hdr->is_partial = 0;
  732. strlcpy(add_hdr->name, hdr_name, IPA_RESOURCE_NAME_MAX);
  733. add_hdr->is_eth2_ofst_valid = true;
  734. add_hdr->eth2_ofst = 0;
  735. if (is_vlan_mode) {
  736. eth_vlan_hdr = (struct vlan_ethhdr *)add_hdr->hdr;
  737. memcpy(eth_vlan_hdr->h_dest, dst_mac, ETH_ALEN);
  738. memcpy(eth_vlan_hdr->h_source, src_mac, ETH_ALEN);
  739. eth_vlan_hdr->h_vlan_encapsulated_proto =
  740. htons(eth_type);
  741. eth_vlan_hdr->h_vlan_proto = htons(ETH_P_8021Q);
  742. add_hdr->hdr_len = VLAN_ETH_HLEN;
  743. add_hdr->type = IPA_HDR_L2_802_1Q;
  744. } else {
  745. eth_hdr = (struct ethhdr *)add_hdr->hdr;
  746. memcpy(eth_hdr->h_dest, dst_mac, ETH_ALEN);
  747. memcpy(eth_hdr->h_source, src_mac, ETH_ALEN);
  748. eth_hdr->h_proto = htons(eth_type);
  749. add_hdr->hdr_len = ETH_HLEN;
  750. add_hdr->type = IPA_HDR_L2_ETHERNET_II;
  751. }
  752. ECM_IPA_LOG_EXIT();
  753. }
  754. /**
  755. * ecm_ipa_rules_cfg() - set header insertion and register Tx/Rx properties
  756. * Headers will be committed to HW
  757. * @ecm_ipa_ctx: main driver context parameters
  758. * @dst_mac: destination MAC address
  759. * @src_mac: source MAC address
  760. *
  761. * Returns negative errno, or zero on success
  762. */
  763. static int ecm_ipa_rules_cfg
  764. (struct ecm_ipa_dev *ecm_ipa_ctx,
  765. const void *dst_mac, const void *src_mac)
  766. {
  767. struct ipa_ioc_add_hdr *hdrs;
  768. struct ipa_hdr_add *ipv4_hdr;
  769. struct ipa_hdr_add *ipv6_hdr;
  770. int result = 0;
  771. ECM_IPA_LOG_ENTRY();
  772. hdrs = kzalloc
  773. (sizeof(*hdrs) + sizeof(*ipv4_hdr) + sizeof(*ipv6_hdr),
  774. GFP_KERNEL);
  775. if (!hdrs) {
  776. result = -ENOMEM;
  777. goto out;
  778. }
  779. ipv4_hdr = &hdrs->hdr[0];
  780. ecm_ipa_prepare_header_insertion(
  781. ETH_P_IP, ECM_IPA_IPV4_HDR_NAME,
  782. ipv4_hdr, dst_mac, src_mac, ecm_ipa_ctx->is_vlan_mode);
  783. ipv6_hdr = &hdrs->hdr[1];
  784. ecm_ipa_prepare_header_insertion(
  785. ETH_P_IPV6, ECM_IPA_IPV6_HDR_NAME,
  786. ipv6_hdr, dst_mac, src_mac, ecm_ipa_ctx->is_vlan_mode);
  787. hdrs->commit = 1;
  788. hdrs->num_hdrs = 2;
  789. result = ipa_add_hdr(hdrs);
  790. if (result) {
  791. ECM_IPA_ERROR("Fail on Header-Insertion(%d)\n", result);
  792. goto out_free_mem;
  793. }
  794. if (ipv4_hdr->status) {
  795. ECM_IPA_ERROR
  796. ("Fail on Header-Insertion ipv4(%d)\n",
  797. ipv4_hdr->status);
  798. result = ipv4_hdr->status;
  799. goto out_free_mem;
  800. }
  801. if (ipv6_hdr->status) {
  802. ECM_IPA_ERROR
  803. ("Fail on Header-Insertion ipv6(%d)\n",
  804. ipv6_hdr->status);
  805. result = ipv6_hdr->status;
  806. goto out_free_mem;
  807. }
  808. ecm_ipa_ctx->eth_ipv4_hdr_hdl = ipv4_hdr->hdr_hdl;
  809. ecm_ipa_ctx->eth_ipv6_hdr_hdl = ipv6_hdr->hdr_hdl;
  810. ECM_IPA_LOG_EXIT();
  811. out_free_mem:
  812. kfree(hdrs);
  813. out:
  814. return result;
  815. }
  816. /**
  817. * ecm_ipa_rules_destroy() - remove the IPA core configuration done for
  818. * the driver data path.
  819. * @ecm_ipa_ctx: the driver context
  820. *
  821. * Revert the work done on ecm_ipa_rules_cfg.
  822. */
  823. static void ecm_ipa_rules_destroy(struct ecm_ipa_dev *ecm_ipa_ctx)
  824. {
  825. struct ipa_ioc_del_hdr *del_hdr;
  826. struct ipa_hdr_del *ipv4;
  827. struct ipa_hdr_del *ipv6;
  828. int result;
  829. del_hdr = kzalloc(sizeof(*del_hdr) + sizeof(*ipv4) +
  830. sizeof(*ipv6), GFP_KERNEL);
  831. if (!del_hdr)
  832. return;
  833. del_hdr->commit = 1;
  834. del_hdr->num_hdls = 2;
  835. ipv4 = &del_hdr->hdl[0];
  836. ipv4->hdl = ecm_ipa_ctx->eth_ipv4_hdr_hdl;
  837. ipv6 = &del_hdr->hdl[1];
  838. ipv6->hdl = ecm_ipa_ctx->eth_ipv6_hdr_hdl;
  839. result = ipa_del_hdr(del_hdr);
  840. if (result || ipv4->status || ipv6->status)
  841. ECM_IPA_ERROR("ipa_del_hdr failed\n");
  842. kfree(del_hdr);
  843. }
  844. /* ecm_ipa_register_properties() - set Tx/Rx properties for ipacm
  845. *
  846. * Register ecm0 interface with 2 Tx properties and 2 Rx properties:
  847. * The 2 Tx properties are for data flowing from IPA to USB, they
  848. * have Header-Insertion properties both for Ipv4 and Ipv6 Ethernet framing.
  849. * The 2 Rx properties are for data flowing from USB to IPA, they have
  850. * simple rule which always "hit".
  851. *
  852. */
  853. static int ecm_ipa_register_properties(struct ecm_ipa_dev *ecm_ipa_ctx)
  854. {
  855. struct ipa_tx_intf tx_properties = {0};
  856. struct ipa_ioc_tx_intf_prop properties[2] = { {0}, {0} };
  857. struct ipa_ioc_tx_intf_prop *ipv4_property;
  858. struct ipa_ioc_tx_intf_prop *ipv6_property;
  859. struct ipa_ioc_rx_intf_prop rx_ioc_properties[2] = { {0}, {0} };
  860. struct ipa_rx_intf rx_properties = {0};
  861. struct ipa_ioc_rx_intf_prop *rx_ipv4_property;
  862. struct ipa_ioc_rx_intf_prop *rx_ipv6_property;
  863. enum ipa_hdr_l2_type hdr_l2_type = IPA_HDR_L2_ETHERNET_II;
  864. int result = 0;
  865. ECM_IPA_LOG_ENTRY();
  866. if (ecm_ipa_ctx->is_vlan_mode)
  867. hdr_l2_type = IPA_HDR_L2_802_1Q;
  868. tx_properties.prop = properties;
  869. ipv4_property = &tx_properties.prop[0];
  870. ipv4_property->ip = IPA_IP_v4;
  871. ipv4_property->dst_pipe = ecm_ipa_ctx->ipa_to_usb_client;
  872. strlcpy
  873. (ipv4_property->hdr_name, ECM_IPA_IPV4_HDR_NAME,
  874. IPA_RESOURCE_NAME_MAX);
  875. ipv4_property->hdr_l2_type = hdr_l2_type;
  876. ipv6_property = &tx_properties.prop[1];
  877. ipv6_property->ip = IPA_IP_v6;
  878. ipv6_property->dst_pipe = ecm_ipa_ctx->ipa_to_usb_client;
  879. ipv6_property->hdr_l2_type = hdr_l2_type;
  880. strlcpy
  881. (ipv6_property->hdr_name, ECM_IPA_IPV6_HDR_NAME,
  882. IPA_RESOURCE_NAME_MAX);
  883. tx_properties.num_props = 2;
  884. rx_properties.prop = rx_ioc_properties;
  885. rx_ipv4_property = &rx_properties.prop[0];
  886. rx_ipv4_property->ip = IPA_IP_v4;
  887. rx_ipv4_property->attrib.attrib_mask = 0;
  888. rx_ipv4_property->src_pipe = ecm_ipa_ctx->usb_to_ipa_client;
  889. rx_ipv4_property->hdr_l2_type = hdr_l2_type;
  890. rx_ipv6_property = &rx_properties.prop[1];
  891. rx_ipv6_property->ip = IPA_IP_v6;
  892. rx_ipv6_property->attrib.attrib_mask = 0;
  893. rx_ipv6_property->src_pipe = ecm_ipa_ctx->usb_to_ipa_client;
  894. rx_ipv6_property->hdr_l2_type = hdr_l2_type;
  895. rx_properties.num_props = 2;
  896. result = ipa_register_intf("ecm0", &tx_properties, &rx_properties);
  897. if (result)
  898. ECM_IPA_ERROR("fail on Tx/Rx properties registration\n");
  899. ECM_IPA_LOG_EXIT();
  900. return result;
  901. }
  902. static void ecm_ipa_deregister_properties(void)
  903. {
  904. int result;
  905. ECM_IPA_LOG_ENTRY();
  906. result = ipa_deregister_intf("ecm0");
  907. if (result)
  908. ECM_IPA_DEBUG("Fail on Tx prop deregister\n");
  909. ECM_IPA_LOG_EXIT();
  910. }
  911. /**
  912. * ecm_ipa_configure() - make IPA core end-point specific configuration
  913. * @usb_to_ipa_hdl: handle of usb_to_ipa end-point for IPA driver
  914. * @ipa_to_usb_hdl: handle of ipa_to_usb end-point for IPA driver
  915. * @host_ethaddr: host Ethernet address in network order
  916. * @device_ethaddr: device Ethernet address in network order
  917. *
  918. * Configure the usb_to_ipa and ipa_to_usb end-point registers
  919. * - USB->IPA end-point: disable de-aggregation, enable link layer
  920. * header removal (Ethernet removal), source NATing and default routing.
  921. * - IPA->USB end-point: disable aggregation, add link layer header (Ethernet)
  922. * - allocate Ethernet device
  923. * - register to Linux network stack
  924. *
  925. * Returns negative errno, or zero on success
  926. */
  927. static struct net_device_stats *ecm_ipa_get_stats(struct net_device *net)
  928. {
  929. return &net->stats;
  930. }
  931. static void ecm_ipa_pm_cb(void *p, enum ipa_pm_cb_event event)
  932. {
  933. struct ecm_ipa_dev *ecm_ipa_ctx = p;
  934. ECM_IPA_LOG_ENTRY();
  935. if (event != IPA_PM_CLIENT_ACTIVATED) {
  936. ECM_IPA_ERROR("unexpected event %d\n", event);
  937. WARN_ON(1);
  938. return;
  939. }
  940. if (netif_queue_stopped(ecm_ipa_ctx->net)) {
  941. ECM_IPA_DEBUG("Resource Granted - starting queue\n");
  942. netif_start_queue(ecm_ipa_ctx->net);
  943. }
  944. ECM_IPA_LOG_EXIT();
  945. }
  946. static int ecm_ipa_register_pm_client(struct ecm_ipa_dev *ecm_ipa_ctx)
  947. {
  948. int result;
  949. struct ipa_pm_register_params pm_reg;
  950. memset(&pm_reg, 0, sizeof(pm_reg));
  951. pm_reg.name = ecm_ipa_ctx->net->name;
  952. pm_reg.user_data = ecm_ipa_ctx;
  953. pm_reg.callback = ecm_ipa_pm_cb;
  954. pm_reg.group = IPA_PM_GROUP_APPS;
  955. result = ipa_pm_register(&pm_reg, &ecm_ipa_ctx->pm_hdl);
  956. if (result) {
  957. ECM_IPA_ERROR("failed to create IPA PM client %d\n", result);
  958. return result;
  959. }
  960. return 0;
  961. }
  962. static void ecm_ipa_deregister_pm_client(struct ecm_ipa_dev *ecm_ipa_ctx)
  963. {
  964. ipa_pm_deactivate_sync(ecm_ipa_ctx->pm_hdl);
  965. ipa_pm_deregister(ecm_ipa_ctx->pm_hdl);
  966. ecm_ipa_ctx->pm_hdl = ~0;
  967. }
  968. /**
  969. * ecm_ipa_tx_complete_notify() - Rx notify
  970. *
  971. * @priv: ecm driver context
  972. * @evt: event type
  973. * @data: data provided with event
  974. *
  975. * Check that the packet is the one we sent and release it
  976. * This function will be called in defered context in IPA wq.
  977. */
  978. static void ecm_ipa_tx_complete_notify
  979. (void *priv,
  980. enum ipa_dp_evt_type evt,
  981. unsigned long data)
  982. {
  983. struct sk_buff *skb = (struct sk_buff *)data;
  984. struct ecm_ipa_dev *ecm_ipa_ctx = priv;
  985. if (!skb) {
  986. ECM_IPA_ERROR("Bad SKB received from IPA driver\n");
  987. return;
  988. }
  989. if (!ecm_ipa_ctx) {
  990. ECM_IPA_ERROR("ecm_ipa_ctx is NULL pointer\n");
  991. return;
  992. }
  993. ECM_IPA_DEBUG
  994. ("Tx-complete, len=%d, skb->prot=%d, outstanding=%d\n",
  995. skb->len, skb->protocol,
  996. atomic_read(&ecm_ipa_ctx->outstanding_pkts));
  997. if (evt != IPA_WRITE_DONE) {
  998. ECM_IPA_ERROR("unsupported event on Tx callback\n");
  999. return;
  1000. }
  1001. if (unlikely(ecm_ipa_ctx->state != ECM_IPA_CONNECTED_AND_UP)) {
  1002. ECM_IPA_DEBUG
  1003. ("dropping Tx-complete pkt, state=%s",
  1004. ecm_ipa_state_string(ecm_ipa_ctx->state));
  1005. goto out;
  1006. }
  1007. ecm_ipa_ctx->net->stats.tx_packets++;
  1008. ecm_ipa_ctx->net->stats.tx_bytes += skb->len;
  1009. if (atomic_read(&ecm_ipa_ctx->outstanding_pkts) > 0)
  1010. atomic_dec(&ecm_ipa_ctx->outstanding_pkts);
  1011. if
  1012. (netif_queue_stopped(ecm_ipa_ctx->net) &&
  1013. netif_carrier_ok(ecm_ipa_ctx->net) &&
  1014. atomic_read(&ecm_ipa_ctx->outstanding_pkts)
  1015. < (ecm_ipa_ctx->outstanding_low)) {
  1016. ECM_IPA_DEBUG
  1017. ("outstanding low (%d) - waking up queue\n",
  1018. ecm_ipa_ctx->outstanding_low);
  1019. netif_wake_queue(ecm_ipa_ctx->net);
  1020. }
  1021. out:
  1022. dev_kfree_skb_any(skb);
  1023. }
  1024. static void ecm_ipa_tx_timeout(struct net_device *net)
  1025. {
  1026. struct ecm_ipa_dev *ecm_ipa_ctx = netdev_priv(net);
  1027. ECM_IPA_ERROR
  1028. ("possible IPA stall was detected, %d outstanding",
  1029. atomic_read(&ecm_ipa_ctx->outstanding_pkts));
  1030. net->stats.tx_errors++;
  1031. }
  1032. static int ecm_ipa_debugfs_atomic_open(struct inode *inode, struct file *file)
  1033. {
  1034. struct ecm_ipa_dev *ecm_ipa_ctx = inode->i_private;
  1035. ECM_IPA_LOG_ENTRY();
  1036. file->private_data = &ecm_ipa_ctx->outstanding_pkts;
  1037. ECM_IPA_LOG_EXIT();
  1038. return 0;
  1039. }
  1040. static ssize_t ecm_ipa_debugfs_atomic_read
  1041. (struct file *file, char __user *ubuf, size_t count, loff_t *ppos)
  1042. {
  1043. int nbytes;
  1044. u8 atomic_str[DEBUGFS_TEMP_BUF_SIZE] = {0};
  1045. atomic_t *atomic_var = file->private_data;
  1046. nbytes = scnprintf
  1047. (atomic_str, sizeof(atomic_str), "%d\n",
  1048. atomic_read(atomic_var));
  1049. return simple_read_from_buffer(ubuf, count, ppos, atomic_str, nbytes);
  1050. }
  1051. #ifdef CONFIG_DEBUG_FS
  1052. static void ecm_ipa_debugfs_init(struct ecm_ipa_dev *ecm_ipa_ctx)
  1053. {
  1054. const mode_t flags_read_write = 0666;
  1055. const mode_t flags_read_only = 0444;
  1056. struct dentry *file;
  1057. ECM_IPA_LOG_ENTRY();
  1058. if (!ecm_ipa_ctx)
  1059. return;
  1060. ecm_ipa_ctx->directory = debugfs_create_dir("ecm_ipa", NULL);
  1061. if (!ecm_ipa_ctx->directory) {
  1062. ECM_IPA_ERROR("could not create debugfs directory entry\n");
  1063. goto fail_directory;
  1064. }
  1065. file = debugfs_create_u8
  1066. ("outstanding_high", flags_read_write,
  1067. ecm_ipa_ctx->directory, &ecm_ipa_ctx->outstanding_high);
  1068. if (!file) {
  1069. ECM_IPA_ERROR("could not create outstanding_high file\n");
  1070. goto fail_file;
  1071. }
  1072. file = debugfs_create_u8
  1073. ("outstanding_low", flags_read_write,
  1074. ecm_ipa_ctx->directory, &ecm_ipa_ctx->outstanding_low);
  1075. if (!file) {
  1076. ECM_IPA_ERROR("could not create outstanding_low file\n");
  1077. goto fail_file;
  1078. }
  1079. file = debugfs_create_file
  1080. ("outstanding", flags_read_only,
  1081. ecm_ipa_ctx->directory,
  1082. ecm_ipa_ctx, &ecm_ipa_debugfs_atomic_ops);
  1083. if (!file) {
  1084. ECM_IPA_ERROR("could not create outstanding file\n");
  1085. goto fail_file;
  1086. }
  1087. file = debugfs_create_bool("is_vlan_mode", flags_read_only,
  1088. ecm_ipa_ctx->directory, &ecm_ipa_ctx->is_vlan_mode);
  1089. if (!file) {
  1090. ECM_IPA_ERROR("could not create is_vlan_mode file\n");
  1091. goto fail_file;
  1092. }
  1093. ECM_IPA_DEBUG("debugfs entries were created\n");
  1094. ECM_IPA_LOG_EXIT();
  1095. return;
  1096. fail_file:
  1097. debugfs_remove_recursive(ecm_ipa_ctx->directory);
  1098. fail_directory:
  1099. return;
  1100. }
  1101. static void ecm_ipa_debugfs_destroy(struct ecm_ipa_dev *ecm_ipa_ctx)
  1102. {
  1103. debugfs_remove_recursive(ecm_ipa_ctx->directory);
  1104. }
  1105. #else /* !CONFIG_DEBUG_FS*/
  1106. static void ecm_ipa_debugfs_init(struct ecm_ipa_dev *ecm_ipa_ctx) {}
  1107. static void ecm_ipa_debugfs_destroy(struct ecm_ipa_dev *ecm_ipa_ctx) {}
  1108. #endif /* CONFIG_DEBUG_FS */
  1109. /**
  1110. * ecm_ipa_ep_cfg() - configure the USB endpoints for ECM
  1111. *
  1112. * @usb_to_ipa_hdl: handle received from ipa_connect
  1113. * @ipa_to_usb_hdl: handle received from ipa_connect
  1114. * @is_vlan_mode - should driver work in vlan mode?
  1115. *
  1116. * USB to IPA pipe:
  1117. * - No de-aggregation
  1118. * - Remove Ethernet header
  1119. * - SRC NAT
  1120. * - Default routing(0)
  1121. * IPA to USB Pipe:
  1122. * - No aggregation
  1123. * - Add Ethernet header
  1124. */
  1125. static int ecm_ipa_ep_registers_cfg(u32 usb_to_ipa_hdl, u32 ipa_to_usb_hdl,
  1126. bool is_vlan_mode)
  1127. {
  1128. int result = 0;
  1129. struct ipa_ep_cfg usb_to_ipa_ep_cfg;
  1130. struct ipa_ep_cfg ipa_to_usb_ep_cfg;
  1131. uint8_t hdr_add = 0;
  1132. ECM_IPA_LOG_ENTRY();
  1133. if (is_vlan_mode)
  1134. hdr_add = VLAN_HLEN;
  1135. memset(&usb_to_ipa_ep_cfg, 0, sizeof(struct ipa_ep_cfg));
  1136. usb_to_ipa_ep_cfg.aggr.aggr_en = IPA_BYPASS_AGGR;
  1137. usb_to_ipa_ep_cfg.hdr.hdr_len = ETH_HLEN + hdr_add;
  1138. usb_to_ipa_ep_cfg.nat.nat_en = IPA_SRC_NAT;
  1139. usb_to_ipa_ep_cfg.route.rt_tbl_hdl = 0;
  1140. usb_to_ipa_ep_cfg.mode.dst = IPA_CLIENT_A5_LAN_WAN_CONS;
  1141. usb_to_ipa_ep_cfg.mode.mode = IPA_BASIC;
  1142. /* enable hdr_metadata_reg_valid */
  1143. usb_to_ipa_ep_cfg.hdr.hdr_metadata_reg_valid = true;
  1144. result = ipa_cfg_ep(usb_to_ipa_hdl, &usb_to_ipa_ep_cfg);
  1145. if (result) {
  1146. ECM_IPA_ERROR("failed to configure USB to IPA point\n");
  1147. goto out;
  1148. }
  1149. memset(&ipa_to_usb_ep_cfg, 0, sizeof(struct ipa_ep_cfg));
  1150. ipa_to_usb_ep_cfg.aggr.aggr_en = IPA_BYPASS_AGGR;
  1151. ipa_to_usb_ep_cfg.hdr.hdr_len = ETH_HLEN + hdr_add;
  1152. ipa_to_usb_ep_cfg.nat.nat_en = IPA_BYPASS_NAT;
  1153. result = ipa_cfg_ep(ipa_to_usb_hdl, &ipa_to_usb_ep_cfg);
  1154. if (result) {
  1155. ECM_IPA_ERROR("failed to configure IPA to USB end-point\n");
  1156. goto out;
  1157. }
  1158. ECM_IPA_DEBUG("end-point registers successfully configured\n");
  1159. out:
  1160. ECM_IPA_LOG_EXIT();
  1161. return result;
  1162. }
  1163. /**
  1164. * ecm_ipa_set_device_ethernet_addr() - set device etherenet address
  1165. * @dev_ethaddr: device etherenet address
  1166. *
  1167. * Returns 0 for success, negative otherwise
  1168. */
  1169. static int ecm_ipa_set_device_ethernet_addr
  1170. (u8 *dev_ethaddr, u8 device_ethaddr[])
  1171. {
  1172. if (!is_valid_ether_addr(device_ethaddr))
  1173. return -EINVAL;
  1174. memcpy(dev_ethaddr, device_ethaddr, ETH_ALEN);
  1175. ECM_IPA_DEBUG("device ethernet address: %pM\n", dev_ethaddr);
  1176. return 0;
  1177. }
  1178. /** ecm_ipa_next_state - return the next state of the driver
  1179. * @current_state: the current state of the driver
  1180. * @operation: an enum which represent the operation being made on the driver
  1181. * by its API.
  1182. *
  1183. * This function implements the driver internal state machine.
  1184. * Its decisions are based on the driver current state and the operation
  1185. * being made.
  1186. * In case the operation is invalid this state machine will return
  1187. * the value ECM_IPA_INVALID to inform the caller for a forbidden sequence.
  1188. */
  1189. static enum ecm_ipa_state ecm_ipa_next_state
  1190. (enum ecm_ipa_state current_state, enum ecm_ipa_operation operation)
  1191. {
  1192. int next_state = ECM_IPA_INVALID;
  1193. switch (current_state) {
  1194. case ECM_IPA_UNLOADED:
  1195. if (operation == ECM_IPA_INITIALIZE)
  1196. next_state = ECM_IPA_INITIALIZED;
  1197. break;
  1198. case ECM_IPA_INITIALIZED:
  1199. if (operation == ECM_IPA_CONNECT)
  1200. next_state = ECM_IPA_CONNECTED;
  1201. else if (operation == ECM_IPA_OPEN)
  1202. next_state = ECM_IPA_UP;
  1203. else if (operation == ECM_IPA_CLEANUP)
  1204. next_state = ECM_IPA_UNLOADED;
  1205. break;
  1206. case ECM_IPA_CONNECTED:
  1207. if (operation == ECM_IPA_DISCONNECT)
  1208. next_state = ECM_IPA_INITIALIZED;
  1209. else if (operation == ECM_IPA_OPEN)
  1210. next_state = ECM_IPA_CONNECTED_AND_UP;
  1211. break;
  1212. case ECM_IPA_UP:
  1213. if (operation == ECM_IPA_STOP)
  1214. next_state = ECM_IPA_INITIALIZED;
  1215. else if (operation == ECM_IPA_CONNECT)
  1216. next_state = ECM_IPA_CONNECTED_AND_UP;
  1217. else if (operation == ECM_IPA_CLEANUP)
  1218. next_state = ECM_IPA_UNLOADED;
  1219. break;
  1220. case ECM_IPA_CONNECTED_AND_UP:
  1221. if (operation == ECM_IPA_STOP)
  1222. next_state = ECM_IPA_CONNECTED;
  1223. else if (operation == ECM_IPA_DISCONNECT)
  1224. next_state = ECM_IPA_UP;
  1225. break;
  1226. default:
  1227. ECM_IPA_ERROR("State is not supported\n");
  1228. break;
  1229. }
  1230. ECM_IPA_DEBUG
  1231. ("state transition ( %s -> %s )- %s\n",
  1232. ecm_ipa_state_string(current_state),
  1233. ecm_ipa_state_string(next_state),
  1234. next_state == ECM_IPA_INVALID ? "Forbidden" : "Allowed");
  1235. return next_state;
  1236. }
  1237. /**
  1238. * ecm_ipa_state_string - return the state string representation
  1239. * @state: enum which describe the state
  1240. */
  1241. static const char *ecm_ipa_state_string(enum ecm_ipa_state state)
  1242. {
  1243. switch (state) {
  1244. case ECM_IPA_UNLOADED:
  1245. return "ECM_IPA_UNLOADED";
  1246. case ECM_IPA_INITIALIZED:
  1247. return "ECM_IPA_INITIALIZED";
  1248. case ECM_IPA_CONNECTED:
  1249. return "ECM_IPA_CONNECTED";
  1250. case ECM_IPA_UP:
  1251. return "ECM_IPA_UP";
  1252. case ECM_IPA_CONNECTED_AND_UP:
  1253. return "ECM_IPA_CONNECTED_AND_UP";
  1254. default:
  1255. return "Not supported";
  1256. }
  1257. }
  1258. /**
  1259. * ecm_ipa_init_module() - module initialization
  1260. *
  1261. */
  1262. static int ecm_ipa_init_module(void)
  1263. {
  1264. ECM_IPA_LOG_ENTRY();
  1265. ipa_ecm_logbuf = ipc_log_context_create(IPA_ECM_IPC_LOG_PAGES,
  1266. "ipa_ecm", 0);
  1267. if (ipa_ecm_logbuf == NULL)
  1268. ECM_IPA_DEBUG("failed to create IPC log, continue...\n");
  1269. ECM_IPA_LOG_EXIT();
  1270. return 0;
  1271. }
  1272. /**
  1273. * ecm_ipa_cleanup_module() - module cleanup
  1274. *
  1275. */
  1276. static void ecm_ipa_cleanup_module(void)
  1277. {
  1278. ECM_IPA_LOG_ENTRY();
  1279. if (ipa_ecm_logbuf)
  1280. ipc_log_context_destroy(ipa_ecm_logbuf);
  1281. ipa_ecm_logbuf = NULL;
  1282. ECM_IPA_LOG_EXIT();
  1283. }
  1284. MODULE_LICENSE("GPL v2");
  1285. MODULE_DESCRIPTION("ECM IPA network interface");
  1286. late_initcall(ecm_ipa_init_module);
  1287. module_exit(ecm_ipa_cleanup_module);