odu_bridge.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2014-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/debugfs.h>
  6. #include <linux/export.h>
  7. #include <linux/fs.h>
  8. #include <linux/if_ether.h>
  9. #include <linux/ioctl.h>
  10. #include <linux/kernel.h>
  11. #include <linux/module.h>
  12. #include <linux/msm_ipa.h>
  13. #include <linux/mutex.h>
  14. #include <linux/skbuff.h>
  15. #include <linux/types.h>
  16. #include <linux/ipv6.h>
  17. #include <net/addrconf.h>
  18. #include <linux/ipa.h>
  19. #include <linux/cdev.h>
  20. #include <linux/ipa_odu_bridge.h>
  21. #include "../ipa_common_i.h"
  22. #include "../ipa_v3/ipa_pm.h"
  23. #define ODU_BRIDGE_DRV_NAME "odu_ipa_bridge"
  24. #define ODU_BRIDGE_DBG(fmt, args...) \
  25. do { \
  26. pr_debug(ODU_BRIDGE_DRV_NAME " %s:%d " fmt, \
  27. __func__, __LINE__, ## args); \
  28. IPA_IPC_LOGGING(ipa_get_ipc_logbuf(), \
  29. ODU_BRIDGE_DRV_NAME " %s:%d " fmt, ## args); \
  30. IPA_IPC_LOGGING(ipa_get_ipc_logbuf_low(), \
  31. ODU_BRIDGE_DRV_NAME " %s:%d " fmt, ## args); \
  32. } while (0)
  33. #define ODU_BRIDGE_DBG_LOW(fmt, args...) \
  34. do { \
  35. pr_debug(ODU_BRIDGE_DRV_NAME " %s:%d " fmt, \
  36. __func__, __LINE__, ## args); \
  37. IPA_IPC_LOGGING(ipa_get_ipc_logbuf_low(), \
  38. ODU_BRIDGE_DRV_NAME " %s:%d " fmt, ## args); \
  39. } while (0)
  40. #define ODU_BRIDGE_ERR(fmt, args...) \
  41. do { \
  42. pr_err(ODU_BRIDGE_DRV_NAME " %s:%d " fmt, \
  43. __func__, __LINE__, ## args); \
  44. IPA_IPC_LOGGING(ipa_get_ipc_logbuf(), \
  45. ODU_BRIDGE_DRV_NAME " %s:%d " fmt, ## args); \
  46. IPA_IPC_LOGGING(ipa_get_ipc_logbuf_low(), \
  47. ODU_BRIDGE_DRV_NAME " %s:%d " fmt, ## args); \
  48. } while (0)
  49. #define ODU_BRIDGE_FUNC_ENTRY() \
  50. ODU_BRIDGE_DBG_LOW("ENTRY\n")
  51. #define ODU_BRIDGE_FUNC_EXIT() \
  52. ODU_BRIDGE_DBG_LOW("EXIT\n")
  53. #define ODU_BRIDGE_IS_QMI_ADDR(daddr) \
  54. (memcmp(&(daddr), &odu_bridge_ctx->llv6_addr, sizeof((daddr))) \
  55. == 0)
  56. #define ODU_BRIDGE_IPV4_HDR_NAME "odu_br_ipv4"
  57. #define ODU_BRIDGE_IPV6_HDR_NAME "odu_br_ipv6"
  58. #define IPA_ODU_SYS_DESC_FIFO_SZ 0x800
  59. #ifdef CONFIG_COMPAT
  60. #define ODU_BRIDGE_IOC_SET_LLV6_ADDR32 _IOW(ODU_BRIDGE_IOC_MAGIC, \
  61. ODU_BRIDGE_IOCTL_SET_LLV6_ADDR, \
  62. compat_uptr_t)
  63. #endif
  64. #define IPA_ODU_VER_CHECK() \
  65. do { \
  66. ret = 0;\
  67. if (ipa_get_hw_type() == IPA_HW_None) { \
  68. pr_err("IPA HW is unknown\n"); \
  69. ret = -EFAULT; \
  70. } \
  71. else if (ipa_get_hw_type() < IPA_HW_v3_0) \
  72. ret = 1; \
  73. } while (0)
  74. /**
  75. * struct stats - driver statistics, viewable using debugfs
  76. * @num_ul_packets: number of packets bridged in uplink direction
  77. * @num_dl_packets: number of packets bridged in downink direction
  78. * bridge
  79. * @num_lan_packets: number of packets bridged to APPS on bridge mode
  80. */
  81. struct stats {
  82. u64 num_ul_packets;
  83. u64 num_dl_packets;
  84. u64 num_lan_packets;
  85. };
  86. /**
  87. * struct odu_bridge_ctx - ODU bridge driver context information
  88. * @class: kernel class pointer
  89. * @dev_num: kernel device number
  90. * @dev: kernel device struct pointer
  91. * @cdev: kernel character device struct
  92. * @netdev_name: network interface name
  93. * @device_ethaddr: network interface ethernet address
  94. * @priv: client's private data. to be used in client's callbacks
  95. * @tx_dp_notify: client callback for handling IPA ODU_PROD callback
  96. * @send_dl_skb: client callback for sending skb in downlink direction
  97. * @stats: statistics, how many packets were transmitted using the SW bridge
  98. * @is_conencted: is bridge connected ?
  99. * @is_suspended: is bridge suspended ?
  100. * @mode: ODU mode (router/bridge)
  101. * @lock: for the initialization, connect and disconnect synchronization
  102. * @llv6_addr: link local IPv6 address of ODU network interface
  103. * @odu_br_ipv4_hdr_hdl: handle for partial ipv4 ethernet header
  104. * @odu_br_ipv6_hdr_hdl: handle for partial ipv6 ethernet header
  105. * @odu_prod_hdl: handle for IPA_CLIENT_ODU_PROD pipe
  106. * @odu_emb_cons_hdl: handle for IPA_CLIENT_ODU_EMB_CONS pipe
  107. * @odu_teth_cons_hdl: handle for IPA_CLIENT_ODU_TETH_CONS pipe
  108. * @rm_comp: completion object for IP RM
  109. * @wakeup_request: client callback to wakeup
  110. */
  111. struct odu_bridge_ctx {
  112. struct class *class;
  113. dev_t dev_num;
  114. struct device *dev;
  115. struct cdev cdev;
  116. char netdev_name[IPA_RESOURCE_NAME_MAX];
  117. u8 device_ethaddr[ETH_ALEN];
  118. void *priv;
  119. ipa_notify_cb tx_dp_notify;
  120. int (*send_dl_skb)(void *priv, struct sk_buff *skb);
  121. struct stats stats;
  122. bool is_connected;
  123. bool is_suspended;
  124. enum odu_bridge_mode mode;
  125. struct mutex lock;
  126. struct in6_addr llv6_addr;
  127. uint32_t odu_br_ipv4_hdr_hdl;
  128. uint32_t odu_br_ipv6_hdr_hdl;
  129. u32 odu_prod_hdl;
  130. u32 odu_emb_cons_hdl;
  131. u32 odu_teth_cons_hdl;
  132. u32 ipa_sys_desc_size;
  133. void *logbuf;
  134. void *logbuf_low;
  135. struct completion rm_comp;
  136. void (*wakeup_request)(void *cl_priv);
  137. u32 pm_hdl;
  138. };
  139. static struct odu_bridge_ctx *odu_bridge_ctx;
  140. #ifdef CONFIG_DEBUG_FS
  141. #define ODU_MAX_MSG_LEN 512
  142. static char dbg_buff[ODU_MAX_MSG_LEN];
  143. #endif
  144. static void odu_bridge_emb_cons_cb(void *priv, enum ipa_dp_evt_type evt,
  145. unsigned long data)
  146. {
  147. ODU_BRIDGE_FUNC_ENTRY();
  148. if (evt != IPA_RECEIVE) {
  149. ODU_BRIDGE_ERR("unexpected event\n");
  150. WARN_ON(1);
  151. return;
  152. }
  153. odu_bridge_ctx->send_dl_skb(priv, (struct sk_buff *)data);
  154. odu_bridge_ctx->stats.num_dl_packets++;
  155. ODU_BRIDGE_FUNC_EXIT();
  156. }
  157. static void odu_bridge_teth_cons_cb(void *priv, enum ipa_dp_evt_type evt,
  158. unsigned long data)
  159. {
  160. struct ipv6hdr *ipv6hdr;
  161. struct sk_buff *skb = (struct sk_buff *)data;
  162. struct sk_buff *skb_copied;
  163. ODU_BRIDGE_FUNC_ENTRY();
  164. if (evt != IPA_RECEIVE) {
  165. ODU_BRIDGE_ERR("unexpected event\n");
  166. WARN_ON(1);
  167. return;
  168. }
  169. ipv6hdr = (struct ipv6hdr *)(skb->data + ETH_HLEN);
  170. if (ipv6hdr->version == 6 &&
  171. ipv6_addr_is_multicast(&ipv6hdr->daddr)) {
  172. ODU_BRIDGE_DBG_LOW("Multicast pkt, send to APPS and adapter\n");
  173. skb_copied = skb_clone(skb, GFP_KERNEL);
  174. if (skb_copied) {
  175. odu_bridge_ctx->tx_dp_notify(odu_bridge_ctx->priv,
  176. IPA_RECEIVE,
  177. (unsigned long) skb_copied);
  178. odu_bridge_ctx->stats.num_lan_packets++;
  179. } else {
  180. ODU_BRIDGE_ERR("No memory\n");
  181. }
  182. }
  183. odu_bridge_ctx->send_dl_skb(priv, skb);
  184. odu_bridge_ctx->stats.num_dl_packets++;
  185. ODU_BRIDGE_FUNC_EXIT();
  186. }
  187. static int odu_bridge_connect_router(void)
  188. {
  189. struct ipa_sys_connect_params odu_prod_params;
  190. struct ipa_sys_connect_params odu_emb_cons_params;
  191. int res;
  192. ODU_BRIDGE_FUNC_ENTRY();
  193. memset(&odu_prod_params, 0, sizeof(odu_prod_params));
  194. memset(&odu_emb_cons_params, 0, sizeof(odu_emb_cons_params));
  195. /* configure RX (ODU->IPA) EP */
  196. odu_prod_params.client = IPA_CLIENT_ODU_PROD;
  197. odu_prod_params.ipa_ep_cfg.hdr.hdr_len = ETH_HLEN;
  198. odu_prod_params.ipa_ep_cfg.nat.nat_en = IPA_SRC_NAT;
  199. odu_prod_params.desc_fifo_sz = odu_bridge_ctx->ipa_sys_desc_size;
  200. odu_prod_params.priv = odu_bridge_ctx->priv;
  201. odu_prod_params.notify = odu_bridge_ctx->tx_dp_notify;
  202. res = ipa_setup_sys_pipe(&odu_prod_params,
  203. &odu_bridge_ctx->odu_prod_hdl);
  204. if (res) {
  205. ODU_BRIDGE_ERR("fail to setup sys pipe ODU_PROD %d\n", res);
  206. goto fail_odu_prod;
  207. }
  208. /* configure TX (IPA->ODU) EP */
  209. odu_emb_cons_params.client = IPA_CLIENT_ODU_EMB_CONS;
  210. odu_emb_cons_params.ipa_ep_cfg.hdr.hdr_len = ETH_HLEN;
  211. odu_emb_cons_params.ipa_ep_cfg.nat.nat_en = IPA_BYPASS_NAT;
  212. odu_emb_cons_params.desc_fifo_sz = odu_bridge_ctx->ipa_sys_desc_size;
  213. odu_emb_cons_params.priv = odu_bridge_ctx->priv;
  214. odu_emb_cons_params.notify = odu_bridge_emb_cons_cb;
  215. res = ipa_setup_sys_pipe(&odu_emb_cons_params,
  216. &odu_bridge_ctx->odu_emb_cons_hdl);
  217. if (res) {
  218. ODU_BRIDGE_ERR("fail to setup sys pipe ODU_EMB_CONS %d\n", res);
  219. goto fail_odu_emb_cons;
  220. }
  221. ODU_BRIDGE_DBG("odu_prod_hdl = %d, odu_emb_cons_hdl = %d\n",
  222. odu_bridge_ctx->odu_prod_hdl, odu_bridge_ctx->odu_emb_cons_hdl);
  223. ODU_BRIDGE_FUNC_EXIT();
  224. return 0;
  225. fail_odu_emb_cons:
  226. ipa_teardown_sys_pipe(odu_bridge_ctx->odu_prod_hdl);
  227. odu_bridge_ctx->odu_prod_hdl = 0;
  228. fail_odu_prod:
  229. return res;
  230. }
  231. static int odu_bridge_connect_bridge(void)
  232. {
  233. struct ipa_sys_connect_params odu_prod_params;
  234. struct ipa_sys_connect_params odu_emb_cons_params;
  235. struct ipa_sys_connect_params odu_teth_cons_params;
  236. int res;
  237. ODU_BRIDGE_FUNC_ENTRY();
  238. memset(&odu_prod_params, 0, sizeof(odu_prod_params));
  239. memset(&odu_emb_cons_params, 0, sizeof(odu_emb_cons_params));
  240. if (!ipa_pm_is_used()) {
  241. /* Build IPA Resource manager dependency graph */
  242. ODU_BRIDGE_DBG_LOW("build dependency graph\n");
  243. res = ipa_rm_add_dependency(IPA_RM_RESOURCE_ODU_ADAPT_PROD,
  244. IPA_RM_RESOURCE_Q6_CONS);
  245. if (res && res != -EINPROGRESS) {
  246. ODU_BRIDGE_ERR("ipa_rm_add_dependency() failed\n");
  247. goto fail_add_dependency_1;
  248. }
  249. res = ipa_rm_add_dependency(IPA_RM_RESOURCE_Q6_PROD,
  250. IPA_RM_RESOURCE_ODU_ADAPT_CONS);
  251. if (res && res != -EINPROGRESS) {
  252. ODU_BRIDGE_ERR("ipa_rm_add_dependency() failed\n");
  253. goto fail_add_dependency_2;
  254. }
  255. }
  256. /* configure RX (ODU->IPA) EP */
  257. odu_prod_params.client = IPA_CLIENT_ODU_PROD;
  258. odu_prod_params.desc_fifo_sz = IPA_ODU_SYS_DESC_FIFO_SZ;
  259. odu_prod_params.priv = odu_bridge_ctx->priv;
  260. odu_prod_params.notify = odu_bridge_ctx->tx_dp_notify;
  261. odu_prod_params.skip_ep_cfg = true;
  262. res = ipa_setup_sys_pipe(&odu_prod_params,
  263. &odu_bridge_ctx->odu_prod_hdl);
  264. if (res) {
  265. ODU_BRIDGE_ERR("fail to setup sys pipe ODU_PROD %d\n", res);
  266. goto fail_odu_prod;
  267. }
  268. /* configure TX tethered (IPA->ODU) EP */
  269. odu_teth_cons_params.client = IPA_CLIENT_ODU_TETH_CONS;
  270. odu_teth_cons_params.desc_fifo_sz = IPA_ODU_SYS_DESC_FIFO_SZ;
  271. odu_teth_cons_params.priv = odu_bridge_ctx->priv;
  272. odu_teth_cons_params.notify = odu_bridge_teth_cons_cb;
  273. odu_teth_cons_params.skip_ep_cfg = true;
  274. res = ipa_setup_sys_pipe(&odu_teth_cons_params,
  275. &odu_bridge_ctx->odu_teth_cons_hdl);
  276. if (res) {
  277. ODU_BRIDGE_ERR("fail to setup sys pipe ODU_TETH_CONS %d\n",
  278. res);
  279. goto fail_odu_teth_cons;
  280. }
  281. /* configure TX embedded(IPA->ODU) EP */
  282. odu_emb_cons_params.client = IPA_CLIENT_ODU_EMB_CONS;
  283. odu_emb_cons_params.ipa_ep_cfg.hdr.hdr_len = ETH_HLEN;
  284. odu_emb_cons_params.ipa_ep_cfg.nat.nat_en = IPA_BYPASS_NAT;
  285. odu_emb_cons_params.desc_fifo_sz = IPA_ODU_SYS_DESC_FIFO_SZ;
  286. odu_emb_cons_params.priv = odu_bridge_ctx->priv;
  287. odu_emb_cons_params.notify = odu_bridge_emb_cons_cb;
  288. res = ipa_setup_sys_pipe(&odu_emb_cons_params,
  289. &odu_bridge_ctx->odu_emb_cons_hdl);
  290. if (res) {
  291. ODU_BRIDGE_ERR("fail to setup sys pipe ODU_EMB_CONS %d\n", res);
  292. goto fail_odu_emb_cons;
  293. }
  294. ODU_BRIDGE_DBG_LOW("odu_prod_hdl = %d, odu_emb_cons_hdl = %d\n",
  295. odu_bridge_ctx->odu_prod_hdl, odu_bridge_ctx->odu_emb_cons_hdl);
  296. ODU_BRIDGE_DBG_LOW("odu_teth_cons_hdl = %d\n",
  297. odu_bridge_ctx->odu_teth_cons_hdl);
  298. ODU_BRIDGE_FUNC_EXIT();
  299. return 0;
  300. fail_odu_emb_cons:
  301. ipa_teardown_sys_pipe(odu_bridge_ctx->odu_teth_cons_hdl);
  302. odu_bridge_ctx->odu_teth_cons_hdl = 0;
  303. fail_odu_teth_cons:
  304. ipa_teardown_sys_pipe(odu_bridge_ctx->odu_prod_hdl);
  305. odu_bridge_ctx->odu_prod_hdl = 0;
  306. fail_odu_prod:
  307. if (!ipa_pm_is_used())
  308. ipa_rm_delete_dependency(IPA_RM_RESOURCE_Q6_PROD,
  309. IPA_RM_RESOURCE_ODU_ADAPT_CONS);
  310. fail_add_dependency_2:
  311. if (!ipa_pm_is_used())
  312. ipa_rm_delete_dependency(IPA_RM_RESOURCE_ODU_ADAPT_PROD,
  313. IPA_RM_RESOURCE_Q6_CONS);
  314. fail_add_dependency_1:
  315. return res;
  316. }
  317. static int odu_bridge_disconnect_router(void)
  318. {
  319. int res;
  320. ODU_BRIDGE_FUNC_ENTRY();
  321. res = ipa_teardown_sys_pipe(odu_bridge_ctx->odu_prod_hdl);
  322. if (res)
  323. ODU_BRIDGE_ERR("teardown ODU PROD failed\n");
  324. odu_bridge_ctx->odu_prod_hdl = 0;
  325. res = ipa_teardown_sys_pipe(odu_bridge_ctx->odu_emb_cons_hdl);
  326. if (res)
  327. ODU_BRIDGE_ERR("teardown ODU EMB CONS failed\n");
  328. odu_bridge_ctx->odu_emb_cons_hdl = 0;
  329. ODU_BRIDGE_FUNC_EXIT();
  330. return 0;
  331. }
  332. static int odu_bridge_disconnect_bridge(void)
  333. {
  334. int res;
  335. ODU_BRIDGE_FUNC_ENTRY();
  336. res = ipa_teardown_sys_pipe(odu_bridge_ctx->odu_prod_hdl);
  337. if (res)
  338. ODU_BRIDGE_ERR("teardown ODU PROD failed\n");
  339. odu_bridge_ctx->odu_prod_hdl = 0;
  340. res = ipa_teardown_sys_pipe(odu_bridge_ctx->odu_teth_cons_hdl);
  341. if (res)
  342. ODU_BRIDGE_ERR("teardown ODU TETH CONS failed\n");
  343. odu_bridge_ctx->odu_teth_cons_hdl = 0;
  344. res = ipa_teardown_sys_pipe(odu_bridge_ctx->odu_emb_cons_hdl);
  345. if (res)
  346. ODU_BRIDGE_ERR("teardown ODU EMB CONS failed\n");
  347. odu_bridge_ctx->odu_emb_cons_hdl = 0;
  348. if (!ipa_pm_is_used()) {
  349. /* Delete IPA Resource manager dependency graph */
  350. ODU_BRIDGE_DBG("deleting dependency graph\n");
  351. res = ipa_rm_delete_dependency(IPA_RM_RESOURCE_ODU_ADAPT_PROD,
  352. IPA_RM_RESOURCE_Q6_CONS);
  353. if (res && res != -EINPROGRESS)
  354. ODU_BRIDGE_ERR("ipa_rm_delete_dependency() failed\n");
  355. res = ipa_rm_delete_dependency(IPA_RM_RESOURCE_Q6_PROD,
  356. IPA_RM_RESOURCE_ODU_ADAPT_CONS);
  357. if (res && res != -EINPROGRESS)
  358. ODU_BRIDGE_ERR("ipa_rm_delete_dependency() failed\n");
  359. }
  360. return 0;
  361. }
  362. /**
  363. * odu_bridge_disconnect() - Disconnect odu bridge
  364. *
  365. * Disconnect all pipes and deletes IPA RM dependencies on bridge mode
  366. *
  367. * Return codes: 0- success, error otherwise
  368. */
  369. int odu_bridge_disconnect(void)
  370. {
  371. int res;
  372. ODU_BRIDGE_FUNC_ENTRY();
  373. if (!odu_bridge_ctx) {
  374. ODU_BRIDGE_ERR("Not initialized\n");
  375. return -EFAULT;
  376. }
  377. if (!odu_bridge_ctx->is_connected) {
  378. ODU_BRIDGE_ERR("Not connected\n");
  379. return -EFAULT;
  380. }
  381. mutex_lock(&odu_bridge_ctx->lock);
  382. if (odu_bridge_ctx->mode == ODU_BRIDGE_MODE_ROUTER) {
  383. res = odu_bridge_disconnect_router();
  384. if (res) {
  385. ODU_BRIDGE_ERR("disconnect_router failed %d\n", res);
  386. goto out;
  387. }
  388. } else {
  389. res = odu_bridge_disconnect_bridge();
  390. if (res) {
  391. ODU_BRIDGE_ERR("disconnect_bridge failed %d\n", res);
  392. goto out;
  393. }
  394. }
  395. odu_bridge_ctx->is_connected = false;
  396. res = 0;
  397. out:
  398. mutex_unlock(&odu_bridge_ctx->lock);
  399. ODU_BRIDGE_FUNC_EXIT();
  400. return res;
  401. }
  402. EXPORT_SYMBOL(odu_bridge_disconnect);
  403. /**
  404. * odu_bridge_connect() - Connect odu bridge.
  405. *
  406. * Call to the mode-specific connect function for connection IPA pipes
  407. * and adding IPA RM dependencies
  408. * Return codes: 0: success
  409. * -EINVAL: invalid parameters
  410. * -EPERM: Operation not permitted as the bridge is already
  411. * connected
  412. */
  413. int odu_bridge_connect(void)
  414. {
  415. int res;
  416. ODU_BRIDGE_FUNC_ENTRY();
  417. if (!odu_bridge_ctx) {
  418. ODU_BRIDGE_ERR("Not initialized\n");
  419. return -EFAULT;
  420. }
  421. if (odu_bridge_ctx->is_connected) {
  422. ODU_BRIDGE_ERR("already connected\n");
  423. return -EFAULT;
  424. }
  425. mutex_lock(&odu_bridge_ctx->lock);
  426. if (odu_bridge_ctx->mode == ODU_BRIDGE_MODE_ROUTER) {
  427. res = odu_bridge_connect_router();
  428. if (res) {
  429. ODU_BRIDGE_ERR("connect_router failed\n");
  430. goto bail;
  431. }
  432. } else {
  433. res = odu_bridge_connect_bridge();
  434. if (res) {
  435. ODU_BRIDGE_ERR("connect_bridge failed\n");
  436. goto bail;
  437. }
  438. }
  439. odu_bridge_ctx->is_connected = true;
  440. res = 0;
  441. bail:
  442. mutex_unlock(&odu_bridge_ctx->lock);
  443. ODU_BRIDGE_FUNC_EXIT();
  444. return res;
  445. }
  446. EXPORT_SYMBOL(odu_bridge_connect);
  447. /**
  448. * odu_bridge_set_mode() - Set bridge mode to Router/Bridge
  449. * @mode: mode to be set
  450. */
  451. static int odu_bridge_set_mode(enum odu_bridge_mode mode)
  452. {
  453. int res;
  454. ODU_BRIDGE_FUNC_ENTRY();
  455. if (mode < 0 || mode >= ODU_BRIDGE_MODE_MAX) {
  456. ODU_BRIDGE_ERR("Unsupported mode: %d\n", mode);
  457. return -EFAULT;
  458. }
  459. ODU_BRIDGE_DBG_LOW("setting mode: %d\n", mode);
  460. mutex_lock(&odu_bridge_ctx->lock);
  461. if (odu_bridge_ctx->mode == mode) {
  462. ODU_BRIDGE_DBG_LOW("same mode\n");
  463. res = 0;
  464. goto bail;
  465. }
  466. if (odu_bridge_ctx->is_connected) {
  467. /* first disconnect the old configuration */
  468. if (odu_bridge_ctx->mode == ODU_BRIDGE_MODE_ROUTER) {
  469. res = odu_bridge_disconnect_router();
  470. if (res) {
  471. ODU_BRIDGE_ERR("disconnect_router failed\n");
  472. goto bail;
  473. }
  474. } else {
  475. res = odu_bridge_disconnect_bridge();
  476. if (res) {
  477. ODU_BRIDGE_ERR("disconnect_bridge failed\n");
  478. goto bail;
  479. }
  480. }
  481. /* connect the new configuration */
  482. if (mode == ODU_BRIDGE_MODE_ROUTER) {
  483. res = odu_bridge_connect_router();
  484. if (res) {
  485. ODU_BRIDGE_ERR("connect_router failed\n");
  486. goto bail;
  487. }
  488. } else {
  489. res = odu_bridge_connect_bridge();
  490. if (res) {
  491. ODU_BRIDGE_ERR("connect_bridge failed\n");
  492. goto bail;
  493. }
  494. }
  495. }
  496. odu_bridge_ctx->mode = mode;
  497. res = 0;
  498. bail:
  499. mutex_unlock(&odu_bridge_ctx->lock);
  500. ODU_BRIDGE_FUNC_EXIT();
  501. return res;
  502. };
  503. /**
  504. * odu_bridge_set_llv6_addr() - Set link local ipv6 address
  505. * @llv6_addr: odu network interface link local address
  506. *
  507. * This function sets the link local ipv6 address provided by IOCTL
  508. */
  509. static int odu_bridge_set_llv6_addr(struct in6_addr *llv6_addr)
  510. {
  511. struct in6_addr llv6_addr_host;
  512. ODU_BRIDGE_FUNC_ENTRY();
  513. llv6_addr_host.s6_addr32[0] = ntohl(llv6_addr->s6_addr32[0]);
  514. llv6_addr_host.s6_addr32[1] = ntohl(llv6_addr->s6_addr32[1]);
  515. llv6_addr_host.s6_addr32[2] = ntohl(llv6_addr->s6_addr32[2]);
  516. llv6_addr_host.s6_addr32[3] = ntohl(llv6_addr->s6_addr32[3]);
  517. memcpy(&odu_bridge_ctx->llv6_addr, &llv6_addr_host,
  518. sizeof(odu_bridge_ctx->llv6_addr));
  519. ODU_BRIDGE_DBG_LOW("LLV6 addr: %pI6c\n", &odu_bridge_ctx->llv6_addr);
  520. ODU_BRIDGE_FUNC_EXIT();
  521. return 0;
  522. };
  523. static long odu_bridge_ioctl(struct file *filp,
  524. unsigned int cmd,
  525. unsigned long arg)
  526. {
  527. int res = 0;
  528. struct in6_addr llv6_addr;
  529. ODU_BRIDGE_DBG("cmd=%x nr=%d\n", cmd, _IOC_NR(cmd));
  530. if ((_IOC_TYPE(cmd) != ODU_BRIDGE_IOC_MAGIC) ||
  531. (_IOC_NR(cmd) >= ODU_BRIDGE_IOCTL_MAX)) {
  532. ODU_BRIDGE_ERR("Invalid ioctl\n");
  533. return -ENOIOCTLCMD;
  534. }
  535. switch (cmd) {
  536. case ODU_BRIDGE_IOC_SET_MODE:
  537. ODU_BRIDGE_DBG("ODU_BRIDGE_IOC_SET_MODE ioctl called\n");
  538. res = odu_bridge_set_mode(arg);
  539. if (res) {
  540. ODU_BRIDGE_ERR("Error, res = %d\n", res);
  541. break;
  542. }
  543. break;
  544. case ODU_BRIDGE_IOC_SET_LLV6_ADDR:
  545. ODU_BRIDGE_DBG("ODU_BRIDGE_IOC_SET_LLV6_ADDR ioctl called\n");
  546. res = copy_from_user(&llv6_addr,
  547. (struct in6_addr *)arg,
  548. sizeof(llv6_addr));
  549. if (res) {
  550. ODU_BRIDGE_ERR("Error, res = %d\n", res);
  551. res = -EFAULT;
  552. break;
  553. }
  554. res = odu_bridge_set_llv6_addr(&llv6_addr);
  555. if (res) {
  556. ODU_BRIDGE_ERR("Error, res = %d\n", res);
  557. break;
  558. }
  559. break;
  560. default:
  561. ODU_BRIDGE_ERR("Unknown ioctl: %d\n", cmd);
  562. WARN_ON(1);
  563. }
  564. return res;
  565. }
  566. #ifdef CONFIG_COMPAT
  567. static long compat_odu_bridge_ioctl(struct file *file,
  568. unsigned int cmd, unsigned long arg)
  569. {
  570. switch (cmd) {
  571. case ODU_BRIDGE_IOC_SET_LLV6_ADDR32:
  572. cmd = ODU_BRIDGE_IOC_SET_LLV6_ADDR;
  573. break;
  574. case ODU_BRIDGE_IOC_SET_MODE:
  575. break;
  576. default:
  577. return -ENOIOCTLCMD;
  578. }
  579. return odu_bridge_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
  580. }
  581. #endif
  582. #ifdef CONFIG_DEBUG_FS
  583. static struct dentry *dent;
  584. static struct dentry *dfile_stats;
  585. static struct dentry *dfile_mode;
  586. static ssize_t odu_debugfs_stats(struct file *file,
  587. char __user *ubuf,
  588. size_t count,
  589. loff_t *ppos)
  590. {
  591. int nbytes = 0;
  592. nbytes += scnprintf(&dbg_buff[nbytes],
  593. ODU_MAX_MSG_LEN - nbytes,
  594. "UL packets: %lld\n",
  595. odu_bridge_ctx->stats.num_ul_packets);
  596. nbytes += scnprintf(&dbg_buff[nbytes],
  597. ODU_MAX_MSG_LEN - nbytes,
  598. "DL packets: %lld\n",
  599. odu_bridge_ctx->stats.num_dl_packets);
  600. nbytes += scnprintf(&dbg_buff[nbytes],
  601. ODU_MAX_MSG_LEN - nbytes,
  602. "LAN packets: %lld\n",
  603. odu_bridge_ctx->stats.num_lan_packets);
  604. return simple_read_from_buffer(ubuf, count, ppos, dbg_buff, nbytes);
  605. }
  606. static ssize_t odu_debugfs_hw_bridge_mode_write(struct file *file,
  607. const char __user *ubuf,
  608. size_t count,
  609. loff_t *ppos)
  610. {
  611. unsigned long missing;
  612. enum odu_bridge_mode mode;
  613. if (count >= sizeof(dbg_buff))
  614. return -EFAULT;
  615. missing = copy_from_user(dbg_buff, ubuf, count);
  616. if (missing)
  617. return -EFAULT;
  618. if (count > 0)
  619. dbg_buff[count-1] = '\0';
  620. if (strcmp(dbg_buff, "router") == 0) {
  621. mode = ODU_BRIDGE_MODE_ROUTER;
  622. } else if (strcmp(dbg_buff, "bridge") == 0) {
  623. mode = ODU_BRIDGE_MODE_BRIDGE;
  624. } else {
  625. ODU_BRIDGE_ERR("Bad mode, got %s,\n"
  626. "Use <router> or <bridge>.\n", dbg_buff);
  627. return count;
  628. }
  629. odu_bridge_set_mode(mode);
  630. return count;
  631. }
  632. static ssize_t odu_debugfs_hw_bridge_mode_read(struct file *file,
  633. char __user *ubuf,
  634. size_t count,
  635. loff_t *ppos)
  636. {
  637. int nbytes = 0;
  638. switch (odu_bridge_ctx->mode) {
  639. case ODU_BRIDGE_MODE_ROUTER:
  640. nbytes += scnprintf(&dbg_buff[nbytes],
  641. ODU_MAX_MSG_LEN - nbytes,
  642. "router\n");
  643. break;
  644. case ODU_BRIDGE_MODE_BRIDGE:
  645. nbytes += scnprintf(&dbg_buff[nbytes],
  646. ODU_MAX_MSG_LEN - nbytes,
  647. "bridge\n");
  648. break;
  649. default:
  650. nbytes += scnprintf(&dbg_buff[nbytes],
  651. ODU_MAX_MSG_LEN - nbytes,
  652. "mode error\n");
  653. break;
  654. }
  655. return simple_read_from_buffer(ubuf, count, ppos, dbg_buff, nbytes);
  656. }
  657. const struct file_operations odu_stats_ops = {
  658. .read = odu_debugfs_stats,
  659. };
  660. const struct file_operations odu_hw_bridge_mode_ops = {
  661. .read = odu_debugfs_hw_bridge_mode_read,
  662. .write = odu_debugfs_hw_bridge_mode_write,
  663. };
  664. static void odu_debugfs_init(void)
  665. {
  666. const mode_t read_only_mode = 0444;
  667. const mode_t read_write_mode = 0666;
  668. dent = debugfs_create_dir("odu_ipa_bridge", 0);
  669. if (IS_ERR(dent)) {
  670. ODU_BRIDGE_ERR("fail to create folder odu_ipa_bridge\n");
  671. return;
  672. }
  673. dfile_stats =
  674. debugfs_create_file("stats", read_only_mode, dent,
  675. 0, &odu_stats_ops);
  676. if (!dfile_stats || IS_ERR(dfile_stats)) {
  677. ODU_BRIDGE_ERR("fail to create file stats\n");
  678. goto fail;
  679. }
  680. dfile_mode =
  681. debugfs_create_file("mode", read_write_mode,
  682. dent, 0, &odu_hw_bridge_mode_ops);
  683. if (!dfile_mode ||
  684. IS_ERR(dfile_mode)) {
  685. ODU_BRIDGE_ERR("fail to create file dfile_mode\n");
  686. goto fail;
  687. }
  688. return;
  689. fail:
  690. debugfs_remove_recursive(dent);
  691. }
  692. static void odu_debugfs_destroy(void)
  693. {
  694. debugfs_remove_recursive(dent);
  695. }
  696. #else
  697. static void odu_debugfs_init(void) {}
  698. static void odu_debugfs_destroy(void) {}
  699. #endif /* CONFIG_DEBUG_FS */
  700. static const struct file_operations odu_bridge_drv_fops = {
  701. .owner = THIS_MODULE,
  702. .unlocked_ioctl = odu_bridge_ioctl,
  703. #ifdef CONFIG_COMPAT
  704. .compat_ioctl = compat_odu_bridge_ioctl,
  705. #endif
  706. };
  707. /**
  708. * odu_bridge_tx_dp() - Send skb to ODU bridge
  709. * @skb: skb to send
  710. * @metadata: metadata on packet
  711. *
  712. * This function handles uplink packet.
  713. * In Router Mode:
  714. * packet is sent directly to IPA.
  715. * In Router Mode:
  716. * packet is classified if it should arrive to network stack.
  717. * QMI IP packet should arrive to APPS network stack
  718. * IPv6 Multicast packet should arrive to APPS network stack and Q6
  719. *
  720. * Return codes: 0- success, error otherwise
  721. */
  722. int odu_bridge_tx_dp(struct sk_buff *skb, struct ipa_tx_meta *metadata)
  723. {
  724. struct sk_buff *skb_copied = NULL;
  725. struct ipv6hdr *ipv6hdr;
  726. int res;
  727. ODU_BRIDGE_FUNC_ENTRY();
  728. switch (odu_bridge_ctx->mode) {
  729. case ODU_BRIDGE_MODE_ROUTER:
  730. /* Router mode - pass skb to IPA */
  731. res = ipa_tx_dp(IPA_CLIENT_ODU_PROD, skb, metadata);
  732. if (res) {
  733. ODU_BRIDGE_DBG("tx dp failed %d\n", res);
  734. goto out;
  735. }
  736. odu_bridge_ctx->stats.num_ul_packets++;
  737. goto out;
  738. case ODU_BRIDGE_MODE_BRIDGE:
  739. ipv6hdr = (struct ipv6hdr *)(skb->data + ETH_HLEN);
  740. if (ipv6hdr->version == 6 &&
  741. ODU_BRIDGE_IS_QMI_ADDR(ipv6hdr->daddr)) {
  742. ODU_BRIDGE_DBG_LOW("QMI packet\n");
  743. skb_copied = skb_clone(skb, GFP_KERNEL);
  744. if (!skb_copied) {
  745. ODU_BRIDGE_ERR("No memory\n");
  746. return -ENOMEM;
  747. }
  748. odu_bridge_ctx->tx_dp_notify(odu_bridge_ctx->priv,
  749. IPA_RECEIVE,
  750. (unsigned long)skb_copied);
  751. odu_bridge_ctx->tx_dp_notify(odu_bridge_ctx->priv,
  752. IPA_WRITE_DONE,
  753. (unsigned long)skb);
  754. odu_bridge_ctx->stats.num_ul_packets++;
  755. odu_bridge_ctx->stats.num_lan_packets++;
  756. res = 0;
  757. goto out;
  758. }
  759. if (ipv6hdr->version == 6 &&
  760. ipv6_addr_is_multicast(&ipv6hdr->daddr)) {
  761. ODU_BRIDGE_DBG_LOW(
  762. "Multicast pkt, send to APPS and IPA\n");
  763. skb_copied = skb_clone(skb, GFP_KERNEL);
  764. if (!skb_copied) {
  765. ODU_BRIDGE_ERR("No memory\n");
  766. return -ENOMEM;
  767. }
  768. res = ipa_tx_dp(IPA_CLIENT_ODU_PROD, skb, metadata);
  769. if (res) {
  770. ODU_BRIDGE_DBG("tx dp failed %d\n", res);
  771. dev_kfree_skb(skb_copied);
  772. goto out;
  773. }
  774. odu_bridge_ctx->tx_dp_notify(odu_bridge_ctx->priv,
  775. IPA_RECEIVE,
  776. (unsigned long)skb_copied);
  777. odu_bridge_ctx->stats.num_ul_packets++;
  778. odu_bridge_ctx->stats.num_lan_packets++;
  779. goto out;
  780. }
  781. res = ipa_tx_dp(IPA_CLIENT_ODU_PROD, skb, metadata);
  782. if (res) {
  783. ODU_BRIDGE_DBG("tx dp failed %d\n", res);
  784. goto out;
  785. }
  786. odu_bridge_ctx->stats.num_ul_packets++;
  787. goto out;
  788. default:
  789. ODU_BRIDGE_ERR("Unsupported mode: %d\n", odu_bridge_ctx->mode);
  790. WARN_ON(1);
  791. res = -EFAULT;
  792. }
  793. out:
  794. ODU_BRIDGE_FUNC_EXIT();
  795. return res;
  796. }
  797. EXPORT_SYMBOL(odu_bridge_tx_dp);
  798. static int odu_bridge_add_hdrs(void)
  799. {
  800. struct ipa_ioc_add_hdr *hdrs;
  801. struct ipa_hdr_add *ipv4_hdr;
  802. struct ipa_hdr_add *ipv6_hdr;
  803. struct ethhdr *eth_ipv4;
  804. struct ethhdr *eth_ipv6;
  805. int res;
  806. ODU_BRIDGE_FUNC_ENTRY();
  807. hdrs = kzalloc(sizeof(*hdrs) + sizeof(*ipv4_hdr) + sizeof(*ipv6_hdr),
  808. GFP_KERNEL);
  809. if (!hdrs) {
  810. ODU_BRIDGE_ERR("no mem\n");
  811. res = -ENOMEM;
  812. goto out;
  813. }
  814. ipv4_hdr = &hdrs->hdr[0];
  815. eth_ipv4 = (struct ethhdr *)(ipv4_hdr->hdr);
  816. ipv6_hdr = &hdrs->hdr[1];
  817. eth_ipv6 = (struct ethhdr *)(ipv6_hdr->hdr);
  818. strlcpy(ipv4_hdr->name, ODU_BRIDGE_IPV4_HDR_NAME,
  819. IPA_RESOURCE_NAME_MAX);
  820. memcpy(eth_ipv4->h_source, odu_bridge_ctx->device_ethaddr, ETH_ALEN);
  821. eth_ipv4->h_proto = htons(ETH_P_IP);
  822. ipv4_hdr->hdr_len = ETH_HLEN;
  823. ipv4_hdr->is_partial = 1;
  824. ipv4_hdr->is_eth2_ofst_valid = 1;
  825. ipv4_hdr->eth2_ofst = 0;
  826. strlcpy(ipv6_hdr->name, ODU_BRIDGE_IPV6_HDR_NAME,
  827. IPA_RESOURCE_NAME_MAX);
  828. memcpy(eth_ipv6->h_source, odu_bridge_ctx->device_ethaddr, ETH_ALEN);
  829. eth_ipv6->h_proto = htons(ETH_P_IPV6);
  830. ipv6_hdr->hdr_len = ETH_HLEN;
  831. ipv6_hdr->is_partial = 1;
  832. ipv6_hdr->is_eth2_ofst_valid = 1;
  833. ipv6_hdr->eth2_ofst = 0;
  834. hdrs->commit = 1;
  835. hdrs->num_hdrs = 2;
  836. res = ipa_add_hdr(hdrs);
  837. if (res) {
  838. ODU_BRIDGE_ERR("Fail on Header-Insertion(%d)\n", res);
  839. goto out_free_mem;
  840. }
  841. if (ipv4_hdr->status) {
  842. ODU_BRIDGE_ERR("Fail on Header-Insertion ipv4(%d)\n",
  843. ipv4_hdr->status);
  844. res = ipv4_hdr->status;
  845. goto out_free_mem;
  846. }
  847. if (ipv6_hdr->status) {
  848. ODU_BRIDGE_ERR("Fail on Header-Insertion ipv6(%d)\n",
  849. ipv6_hdr->status);
  850. res = ipv6_hdr->status;
  851. goto out_free_mem;
  852. }
  853. odu_bridge_ctx->odu_br_ipv4_hdr_hdl = ipv4_hdr->hdr_hdl;
  854. odu_bridge_ctx->odu_br_ipv6_hdr_hdl = ipv6_hdr->hdr_hdl;
  855. res = 0;
  856. out_free_mem:
  857. kfree(hdrs);
  858. out:
  859. ODU_BRIDGE_FUNC_EXIT();
  860. return res;
  861. }
  862. static void odu_bridge_del_hdrs(void)
  863. {
  864. struct ipa_ioc_del_hdr *del_hdr;
  865. struct ipa_hdr_del *ipv4;
  866. struct ipa_hdr_del *ipv6;
  867. int result;
  868. del_hdr = kzalloc(sizeof(*del_hdr) + sizeof(*ipv4) +
  869. sizeof(*ipv6), GFP_KERNEL);
  870. if (!del_hdr)
  871. return;
  872. del_hdr->commit = 1;
  873. del_hdr->num_hdls = 2;
  874. ipv4 = &del_hdr->hdl[0];
  875. ipv4->hdl = odu_bridge_ctx->odu_br_ipv4_hdr_hdl;
  876. ipv6 = &del_hdr->hdl[1];
  877. ipv6->hdl = odu_bridge_ctx->odu_br_ipv6_hdr_hdl;
  878. result = ipa_del_hdr(del_hdr);
  879. if (result || ipv4->status || ipv6->status)
  880. ODU_BRIDGE_ERR("ipa_del_hdr failed");
  881. kfree(del_hdr);
  882. }
  883. /**
  884. * odu_bridge_register_properties() - set Tx/Rx properties for ipacm
  885. *
  886. * Register the network interface interface with Tx and Rx properties
  887. * Tx properties are for data flowing from IPA to adapter, they
  888. * have Header-Insertion properties both for Ipv4 and Ipv6 Ethernet framing.
  889. * Rx properties are for data flowing from adapter to IPA, they have
  890. * simple rule which always "hit".
  891. *
  892. */
  893. static int odu_bridge_register_properties(void)
  894. {
  895. struct ipa_tx_intf tx_properties = {0};
  896. struct ipa_ioc_tx_intf_prop properties[2] = { {0}, {0} };
  897. struct ipa_ioc_tx_intf_prop *ipv4_property;
  898. struct ipa_ioc_tx_intf_prop *ipv6_property;
  899. struct ipa_ioc_rx_intf_prop rx_ioc_properties[2] = { {0}, {0} };
  900. struct ipa_rx_intf rx_properties = {0};
  901. struct ipa_ioc_rx_intf_prop *rx_ipv4_property;
  902. struct ipa_ioc_rx_intf_prop *rx_ipv6_property;
  903. int res = 0;
  904. ODU_BRIDGE_FUNC_ENTRY();
  905. tx_properties.prop = properties;
  906. ipv4_property = &tx_properties.prop[0];
  907. ipv4_property->ip = IPA_IP_v4;
  908. ipv4_property->dst_pipe = IPA_CLIENT_ODU_EMB_CONS;
  909. ipv4_property->hdr_l2_type = IPA_HDR_L2_ETHERNET_II;
  910. strlcpy(ipv4_property->hdr_name, ODU_BRIDGE_IPV4_HDR_NAME,
  911. IPA_RESOURCE_NAME_MAX);
  912. ipv6_property = &tx_properties.prop[1];
  913. ipv6_property->ip = IPA_IP_v6;
  914. ipv6_property->dst_pipe = IPA_CLIENT_ODU_EMB_CONS;
  915. ipv6_property->hdr_l2_type = IPA_HDR_L2_ETHERNET_II;
  916. strlcpy(ipv6_property->hdr_name, ODU_BRIDGE_IPV6_HDR_NAME,
  917. IPA_RESOURCE_NAME_MAX);
  918. tx_properties.num_props = 2;
  919. rx_properties.prop = rx_ioc_properties;
  920. rx_ipv4_property = &rx_properties.prop[0];
  921. rx_ipv4_property->ip = IPA_IP_v4;
  922. rx_ipv4_property->attrib.attrib_mask = 0;
  923. rx_ipv4_property->src_pipe = IPA_CLIENT_ODU_PROD;
  924. rx_ipv4_property->hdr_l2_type = IPA_HDR_L2_ETHERNET_II;
  925. rx_ipv6_property = &rx_properties.prop[1];
  926. rx_ipv6_property->ip = IPA_IP_v6;
  927. rx_ipv6_property->attrib.attrib_mask = 0;
  928. rx_ipv6_property->src_pipe = IPA_CLIENT_ODU_PROD;
  929. rx_ipv6_property->hdr_l2_type = IPA_HDR_L2_ETHERNET_II;
  930. rx_properties.num_props = 2;
  931. res = ipa_register_intf(odu_bridge_ctx->netdev_name, &tx_properties,
  932. &rx_properties);
  933. if (res) {
  934. ODU_BRIDGE_ERR("fail on Tx/Rx properties registration %d\n",
  935. res);
  936. }
  937. ODU_BRIDGE_FUNC_EXIT();
  938. return res;
  939. }
  940. static void odu_bridge_deregister_properties(void)
  941. {
  942. int res;
  943. ODU_BRIDGE_FUNC_ENTRY();
  944. res = ipa_deregister_intf(odu_bridge_ctx->netdev_name);
  945. if (res)
  946. ODU_BRIDGE_ERR("Fail on Tx prop deregister %d\n", res);
  947. ODU_BRIDGE_FUNC_EXIT();
  948. }
  949. /**
  950. * odu_bridge_init() - Initialize the ODU bridge driver
  951. * @params: initialization parameters
  952. *
  953. * This function initialize all bridge internal data and register odu bridge to
  954. * kernel for IOCTL and debugfs.
  955. * Header addition and properties are registered to IPA driver.
  956. *
  957. * Return codes: 0: success,
  958. * -EINVAL - Bad parameter
  959. * Other negative value - Failure
  960. */
  961. int odu_bridge_init(struct odu_bridge_params *params)
  962. {
  963. int res;
  964. ODU_BRIDGE_FUNC_ENTRY();
  965. if (!params) {
  966. ODU_BRIDGE_ERR("null pointer params\n");
  967. return -EINVAL;
  968. }
  969. if (!params->netdev_name) {
  970. ODU_BRIDGE_ERR("null pointer params->netdev_name\n");
  971. return -EINVAL;
  972. }
  973. if (!params->tx_dp_notify) {
  974. ODU_BRIDGE_ERR("null pointer params->tx_dp_notify\n");
  975. return -EINVAL;
  976. }
  977. if (!params->send_dl_skb) {
  978. ODU_BRIDGE_ERR("null pointer params->send_dl_skb\n");
  979. return -EINVAL;
  980. }
  981. if (odu_bridge_ctx) {
  982. ODU_BRIDGE_ERR("Already initialized\n");
  983. return -EFAULT;
  984. }
  985. if (!ipa_is_ready()) {
  986. ODU_BRIDGE_ERR("IPA is not ready\n");
  987. return -EFAULT;
  988. }
  989. ODU_BRIDGE_DBG("device_ethaddr=%pM\n", params->device_ethaddr);
  990. odu_bridge_ctx = kzalloc(sizeof(*odu_bridge_ctx), GFP_KERNEL);
  991. if (!odu_bridge_ctx) {
  992. ODU_BRIDGE_ERR("kzalloc err.\n");
  993. return -ENOMEM;
  994. }
  995. odu_bridge_ctx->class = class_create(THIS_MODULE, ODU_BRIDGE_DRV_NAME);
  996. if (!odu_bridge_ctx->class) {
  997. ODU_BRIDGE_ERR("Class_create err.\n");
  998. res = -ENODEV;
  999. goto fail_class_create;
  1000. }
  1001. res = alloc_chrdev_region(&odu_bridge_ctx->dev_num, 0, 1,
  1002. ODU_BRIDGE_DRV_NAME);
  1003. if (res) {
  1004. ODU_BRIDGE_ERR("alloc_chrdev_region err.\n");
  1005. res = -ENODEV;
  1006. goto fail_alloc_chrdev_region;
  1007. }
  1008. odu_bridge_ctx->dev = device_create(odu_bridge_ctx->class, NULL,
  1009. odu_bridge_ctx->dev_num, odu_bridge_ctx, ODU_BRIDGE_DRV_NAME);
  1010. if (IS_ERR(odu_bridge_ctx->dev)) {
  1011. ODU_BRIDGE_ERR(":device_create err.\n");
  1012. res = -ENODEV;
  1013. goto fail_device_create;
  1014. }
  1015. cdev_init(&odu_bridge_ctx->cdev, &odu_bridge_drv_fops);
  1016. odu_bridge_ctx->cdev.owner = THIS_MODULE;
  1017. odu_bridge_ctx->cdev.ops = &odu_bridge_drv_fops;
  1018. res = cdev_add(&odu_bridge_ctx->cdev, odu_bridge_ctx->dev_num, 1);
  1019. if (res) {
  1020. ODU_BRIDGE_ERR(":cdev_add err=%d\n", -res);
  1021. res = -ENODEV;
  1022. goto fail_cdev_add;
  1023. }
  1024. odu_debugfs_init();
  1025. strlcpy(odu_bridge_ctx->netdev_name, params->netdev_name,
  1026. IPA_RESOURCE_NAME_MAX);
  1027. odu_bridge_ctx->priv = params->priv;
  1028. odu_bridge_ctx->tx_dp_notify = params->tx_dp_notify;
  1029. odu_bridge_ctx->send_dl_skb = params->send_dl_skb;
  1030. memcpy(odu_bridge_ctx->device_ethaddr, params->device_ethaddr,
  1031. ETH_ALEN);
  1032. odu_bridge_ctx->ipa_sys_desc_size = params->ipa_desc_size;
  1033. odu_bridge_ctx->mode = ODU_BRIDGE_MODE_ROUTER;
  1034. mutex_init(&odu_bridge_ctx->lock);
  1035. res = odu_bridge_add_hdrs();
  1036. if (res) {
  1037. ODU_BRIDGE_ERR("fail on odu_bridge_add_hdr %d\n", res);
  1038. goto fail_add_hdrs;
  1039. }
  1040. res = odu_bridge_register_properties();
  1041. if (res) {
  1042. ODU_BRIDGE_ERR("fail on register properties %d\n", res);
  1043. goto fail_register_properties;
  1044. }
  1045. ODU_BRIDGE_FUNC_EXIT();
  1046. return 0;
  1047. fail_register_properties:
  1048. odu_bridge_del_hdrs();
  1049. fail_add_hdrs:
  1050. odu_debugfs_destroy();
  1051. fail_cdev_add:
  1052. device_destroy(odu_bridge_ctx->class, odu_bridge_ctx->dev_num);
  1053. fail_device_create:
  1054. unregister_chrdev_region(odu_bridge_ctx->dev_num, 1);
  1055. fail_alloc_chrdev_region:
  1056. class_destroy(odu_bridge_ctx->class);
  1057. fail_class_create:
  1058. kfree(odu_bridge_ctx);
  1059. odu_bridge_ctx = NULL;
  1060. return res;
  1061. }
  1062. EXPORT_SYMBOL(odu_bridge_init);
  1063. /**
  1064. * odu_bridge_cleanup() - De-Initialize the ODU bridge driver
  1065. *
  1066. * Return codes: 0: success,
  1067. * -EINVAL - Bad parameter
  1068. * Other negative value - Failure
  1069. */
  1070. int odu_bridge_cleanup(void)
  1071. {
  1072. ODU_BRIDGE_FUNC_ENTRY();
  1073. if (!odu_bridge_ctx) {
  1074. ODU_BRIDGE_ERR("Not initialized\n");
  1075. return -EFAULT;
  1076. }
  1077. if (odu_bridge_ctx->is_connected) {
  1078. ODU_BRIDGE_ERR("cannot deinit while bridge is conncetd\n");
  1079. return -EFAULT;
  1080. }
  1081. odu_bridge_deregister_properties();
  1082. odu_bridge_del_hdrs();
  1083. odu_debugfs_destroy();
  1084. cdev_del(&odu_bridge_ctx->cdev);
  1085. device_destroy(odu_bridge_ctx->class, odu_bridge_ctx->dev_num);
  1086. unregister_chrdev_region(odu_bridge_ctx->dev_num, 1);
  1087. class_destroy(odu_bridge_ctx->class);
  1088. ipc_log_context_destroy(odu_bridge_ctx->logbuf);
  1089. ipc_log_context_destroy(odu_bridge_ctx->logbuf_low);
  1090. kfree(odu_bridge_ctx);
  1091. odu_bridge_ctx = NULL;
  1092. ODU_BRIDGE_FUNC_EXIT();
  1093. return 0;
  1094. }
  1095. EXPORT_SYMBOL(odu_bridge_cleanup);
  1096. MODULE_LICENSE("GPL v2");
  1097. MODULE_DESCRIPTION("ODU bridge driver");