developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
| 2 | /* |
| 3 | * Copyright (C) 2023 MediaTek Inc. |
| 4 | * |
| 5 | * Author: Chris.Chou <chris.chou@mediatek.com> |
| 6 | * Ren-Ting Wang <ren-ting.wang@mediatek.com> |
| 7 | */ |
| 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/netdevice.h> |
| 11 | #include <linux/of.h> |
| 12 | #include <linux/of_address.h> |
| 13 | #include <linux/of_platform.h> |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 14 | #include <linux/crypto.h> |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 15 | #include <linux/platform_device.h> |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 16 | #include <crypto/internal/skcipher.h> |
| 17 | #include <crypto/internal/aead.h> |
| 18 | #include <crypto/internal/hash.h> |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 19 | |
| 20 | #include <mtk_eth_soc.h> |
| 21 | #include <mtk_hnat/hnat.h> |
| 22 | |
| 23 | #include <crypto-eip/ddk/configs/cs_hwpal_ext.h> |
| 24 | |
| 25 | #include "crypto-eip/crypto-eip.h" |
| 26 | #include "crypto-eip/ddk-wrapper.h" |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 27 | #include "crypto-eip/lookaside.h" |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 28 | #include "crypto-eip/internal.h" |
developer | 1baf13c | 2024-07-05 15:43:05 +0800 | [diff] [blame] | 29 | #include "crypto-eip/debugfs.h" |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 30 | |
| 31 | #define DRIVER_AUTHOR "Ren-Ting Wang <ren-ting.wang@mediatek.com, " \ |
| 32 | "Chris.Chou <chris.chou@mediatek.com" |
| 33 | |
| 34 | struct mtk_crypto mcrypto; |
| 35 | struct device *crypto_dev; |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 36 | struct mtk_crypto_priv *priv; |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 37 | |
| 38 | static struct mtk_crypto_alg_template *mtk_crypto_algs[] = { |
| 39 | &mtk_crypto_cbc_aes, |
| 40 | &mtk_crypto_ecb_aes, |
| 41 | &mtk_crypto_cfb_aes, |
| 42 | &mtk_crypto_ofb_aes, |
| 43 | &mtk_crypto_ctr_aes, |
| 44 | &mtk_crypto_cbc_des, |
| 45 | &mtk_crypto_ecb_des, |
| 46 | &mtk_crypto_cbc_des3_ede, |
| 47 | &mtk_crypto_ecb_des3_ede, |
| 48 | &mtk_crypto_sha1, |
| 49 | &mtk_crypto_hmac_sha1, |
| 50 | &mtk_crypto_sha224, |
| 51 | &mtk_crypto_hmac_sha224, |
| 52 | &mtk_crypto_sha256, |
| 53 | &mtk_crypto_hmac_sha256, |
| 54 | &mtk_crypto_sha384, |
| 55 | &mtk_crypto_hmac_sha384, |
| 56 | &mtk_crypto_sha512, |
| 57 | &mtk_crypto_hmac_sha512, |
| 58 | &mtk_crypto_md5, |
| 59 | &mtk_crypto_hmac_md5, |
| 60 | &mtk_crypto_xcbcmac, |
| 61 | &mtk_crypto_cmac, |
| 62 | &mtk_crypto_hmac_sha1_cbc_aes, |
| 63 | &mtk_crypto_hmac_sha224_cbc_aes, |
| 64 | &mtk_crypto_hmac_sha256_cbc_aes, |
| 65 | &mtk_crypto_hmac_sha384_cbc_aes, |
| 66 | &mtk_crypto_hmac_sha512_cbc_aes, |
| 67 | &mtk_crypto_hmac_md5_cbc_aes, |
| 68 | &mtk_crypto_hmac_sha1_cbc_des3_ede, |
| 69 | &mtk_crypto_hmac_sha224_cbc_des3_ede, |
| 70 | &mtk_crypto_hmac_sha256_cbc_des3_ede, |
| 71 | &mtk_crypto_hmac_sha384_cbc_des3_ede, |
| 72 | &mtk_crypto_hmac_sha512_cbc_des3_ede, |
| 73 | &mtk_crypto_hmac_md5_cbc_des3_ede, |
| 74 | &mtk_crypto_hmac_sha1_cbc_des, |
| 75 | &mtk_crypto_hmac_sha224_cbc_des, |
| 76 | &mtk_crypto_hmac_sha256_cbc_des, |
| 77 | &mtk_crypto_hmac_sha384_cbc_des, |
| 78 | &mtk_crypto_hmac_sha512_cbc_des, |
| 79 | //&mtk_crypto_hmac_sha1_ctr_aes, /* no testcase, todo */ |
| 80 | //&mtk_crypto_hmac_sha256_ctr_aes, /* no testcase, todo */ |
| 81 | &mtk_crypto_gcm, |
| 82 | &mtk_crypto_rfc4106_gcm, |
| 83 | &mtk_crypto_rfc4543_gcm, |
| 84 | &mtk_crypto_rfc4309_ccm, |
| 85 | }; |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 86 | |
| 87 | inline void crypto_eth_write(u32 reg, u32 val) |
| 88 | { |
| 89 | writel(val, mcrypto.eth_base + reg); |
| 90 | } |
| 91 | |
| 92 | static inline void crypto_eip_write(u32 reg, u32 val) |
| 93 | { |
| 94 | writel(val, mcrypto.crypto_base + reg); |
| 95 | } |
| 96 | |
| 97 | static inline void crypto_eip_set(u32 reg, u32 mask) |
| 98 | { |
| 99 | setbits(mcrypto.crypto_base + reg, mask); |
| 100 | } |
| 101 | |
| 102 | static inline void crypto_eip_clr(u32 reg, u32 mask) |
| 103 | { |
| 104 | clrbits(mcrypto.crypto_base + reg, mask); |
| 105 | } |
| 106 | |
| 107 | static inline void crypto_eip_rmw(u32 reg, u32 mask, u32 val) |
| 108 | { |
| 109 | clrsetbits(mcrypto.crypto_base + reg, mask, val); |
| 110 | } |
| 111 | |
| 112 | static inline u32 crypto_eip_read(u32 reg) |
| 113 | { |
| 114 | return readl(mcrypto.crypto_base + reg); |
| 115 | } |
| 116 | |
developer | 49489b8 | 2024-03-28 15:18:08 +0800 | [diff] [blame] | 117 | #if IS_ENABLED(CONFIG_NET_MEDIATEK_HNAT) |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 118 | static bool mtk_crypto_eip_offloadable(struct sk_buff *skb) |
| 119 | { |
| 120 | /* TODO: check is esp */ |
| 121 | return true; |
| 122 | } |
developer | 49489b8 | 2024-03-28 15:18:08 +0800 | [diff] [blame] | 123 | #endif // HNAT |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 124 | |
developer | 5922d4d | 2024-02-26 19:01:58 +0800 | [diff] [blame] | 125 | u32 mtk_crypto_ppe_get_num(void) |
| 126 | { |
| 127 | return mcrypto.ppe_num; |
| 128 | } |
| 129 | |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 130 | static const struct xfrmdev_ops mtk_xfrmdev_ops = { |
| 131 | .xdo_dev_state_add = mtk_xfrm_offload_state_add, |
| 132 | .xdo_dev_state_delete = mtk_xfrm_offload_state_delete, |
| 133 | .xdo_dev_state_free = mtk_xfrm_offload_state_free, |
| 134 | .xdo_dev_offload_ok = mtk_xfrm_offload_ok, |
| 135 | |
| 136 | /* Not support at v5.4*/ |
| 137 | .xdo_dev_policy_add = mtk_xfrm_offload_policy_add, |
| 138 | }; |
| 139 | |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 140 | static int mtk_crypto_register_algorithms(struct mtk_crypto_priv *priv) |
| 141 | { |
| 142 | int i; |
| 143 | int j; |
| 144 | int ret; |
| 145 | |
| 146 | for (i = 0; i < ARRAY_SIZE(mtk_crypto_algs); i++) { |
| 147 | mtk_crypto_algs[i]->priv = priv; |
| 148 | |
| 149 | if (mtk_crypto_algs[i]->type == MTK_CRYPTO_ALG_TYPE_SKCIPHER) |
| 150 | ret = crypto_register_skcipher(&mtk_crypto_algs[i]->alg.skcipher); |
| 151 | else if (mtk_crypto_algs[i]->type == MTK_CRYPTO_ALG_TYPE_AEAD) |
| 152 | ret = crypto_register_aead(&mtk_crypto_algs[i]->alg.aead); |
| 153 | else |
| 154 | ret = crypto_register_ahash(&mtk_crypto_algs[i]->alg.ahash); |
| 155 | |
| 156 | if (ret) |
| 157 | goto fail; |
| 158 | } |
| 159 | |
| 160 | return 0; |
| 161 | |
| 162 | fail: |
| 163 | for (j = 0; j < i; j++) { |
| 164 | if (mtk_crypto_algs[j]->type == MTK_CRYPTO_ALG_TYPE_SKCIPHER) |
| 165 | crypto_unregister_skcipher(&mtk_crypto_algs[j]->alg.skcipher); |
| 166 | else if (mtk_crypto_algs[j]->type == MTK_CRYPTO_ALG_TYPE_AEAD) |
| 167 | crypto_unregister_aead(&mtk_crypto_algs[j]->alg.aead); |
| 168 | else |
| 169 | crypto_unregister_ahash(&mtk_crypto_algs[j]->alg.ahash); |
| 170 | } |
| 171 | |
| 172 | return ret; |
| 173 | } |
| 174 | |
| 175 | static void mtk_crypto_unregister_algorithms(void) |
| 176 | { |
| 177 | int i; |
| 178 | |
| 179 | for (i = 0; i < ARRAY_SIZE(mtk_crypto_algs); i++) { |
| 180 | if (mtk_crypto_algs[i]->type == MTK_CRYPTO_ALG_TYPE_SKCIPHER) |
| 181 | crypto_unregister_skcipher(&mtk_crypto_algs[i]->alg.skcipher); |
| 182 | else if (mtk_crypto_algs[i]->type == MTK_CRYPTO_ALG_TYPE_AEAD) |
| 183 | crypto_unregister_aead(&mtk_crypto_algs[i]->alg.aead); |
| 184 | else |
| 185 | crypto_unregister_ahash(&mtk_crypto_algs[i]->alg.ahash); |
| 186 | } |
| 187 | } |
| 188 | |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 189 | static void mtk_crypto_xfrm_offload_deinit(struct mtk_eth *eth) |
| 190 | { |
| 191 | int i; |
| 192 | |
developer | 49489b8 | 2024-03-28 15:18:08 +0800 | [diff] [blame] | 193 | #if IS_ENABLED(CONFIG_NET_MEDIATEK_HNAT) |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 194 | mtk_crypto_offloadable = NULL; |
developer | 49489b8 | 2024-03-28 15:18:08 +0800 | [diff] [blame] | 195 | #endif // HNAT |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 196 | |
| 197 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
| 198 | eth->netdev[i]->xfrmdev_ops = NULL; |
| 199 | eth->netdev[i]->features &= (~NETIF_F_HW_ESP); |
| 200 | eth->netdev[i]->hw_enc_features &= (~NETIF_F_HW_ESP); |
| 201 | rtnl_lock(); |
| 202 | netdev_change_features(eth->netdev[i]); |
| 203 | rtnl_unlock(); |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | static void mtk_crypto_xfrm_offload_init(struct mtk_eth *eth) |
| 208 | { |
| 209 | int i; |
| 210 | |
| 211 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
| 212 | eth->netdev[i]->xfrmdev_ops = &mtk_xfrmdev_ops; |
| 213 | eth->netdev[i]->features |= NETIF_F_HW_ESP; |
| 214 | eth->netdev[i]->hw_enc_features |= NETIF_F_HW_ESP; |
| 215 | rtnl_lock(); |
| 216 | netdev_change_features(eth->netdev[i]); |
| 217 | rtnl_unlock(); |
| 218 | } |
| 219 | |
developer | 49489b8 | 2024-03-28 15:18:08 +0800 | [diff] [blame] | 220 | #if IS_ENABLED(CONFIG_NET_MEDIATEK_HNAT) |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 221 | mtk_crypto_offloadable = mtk_crypto_eip_offloadable; |
developer | 49489b8 | 2024-03-28 15:18:08 +0800 | [diff] [blame] | 222 | #endif // HNAT |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | static int __init mtk_crypto_eth_dts_init(struct platform_device *pdev) |
| 226 | { |
| 227 | struct platform_device *eth_pdev; |
| 228 | struct device_node *crypto_node; |
| 229 | struct device_node *eth_node; |
| 230 | struct resource res; |
| 231 | int ret = 0; |
| 232 | |
| 233 | crypto_node = pdev->dev.of_node; |
| 234 | |
| 235 | eth_node = of_parse_phandle(crypto_node, "eth", 0); |
| 236 | if (!eth_node) |
| 237 | return -ENODEV; |
| 238 | |
| 239 | eth_pdev = of_find_device_by_node(eth_node); |
| 240 | if (!eth_pdev) { |
| 241 | ret = -ENODEV; |
| 242 | goto out; |
| 243 | } |
| 244 | |
| 245 | if (!eth_pdev->dev.driver) { |
| 246 | ret = -EFAULT; |
| 247 | goto out; |
| 248 | } |
| 249 | |
| 250 | if (of_address_to_resource(eth_node, 0, &res)) { |
| 251 | ret = -ENXIO; |
| 252 | goto out; |
| 253 | } |
| 254 | |
| 255 | mcrypto.eth_base = devm_ioremap(&pdev->dev, |
| 256 | res.start, resource_size(&res)); |
| 257 | if (!mcrypto.eth_base) { |
| 258 | ret = -ENOMEM; |
| 259 | goto out; |
| 260 | } |
| 261 | |
| 262 | mcrypto.eth = platform_get_drvdata(eth_pdev); |
| 263 | |
| 264 | out: |
| 265 | of_node_put(eth_node); |
| 266 | |
| 267 | return ret; |
| 268 | } |
| 269 | |
developer | 5922d4d | 2024-02-26 19:01:58 +0800 | [diff] [blame] | 270 | static int __init mtk_crypto_ppe_num_dts_init(struct platform_device *pdev) |
| 271 | { |
| 272 | struct device_node *hnat = NULL; |
| 273 | u32 val = 0; |
| 274 | int ret = 0; |
| 275 | |
| 276 | hnat = of_parse_phandle(pdev->dev.of_node, "hnat", 0); |
| 277 | if (!hnat) { |
| 278 | CRYPTO_ERR("can not find hnat node\n"); |
| 279 | return -ENODEV; |
| 280 | } |
| 281 | |
| 282 | ret = of_property_read_u32(hnat, "mtketh-ppe-num", &val); |
| 283 | if (ret) |
| 284 | mcrypto.ppe_num = 1; |
| 285 | else |
| 286 | mcrypto.ppe_num = val; |
| 287 | |
| 288 | of_node_put(hnat); |
| 289 | |
| 290 | return 0; |
| 291 | } |
| 292 | |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 293 | static int __init mtk_crypto_lookaside_data_init(struct platform_device *pdev) |
| 294 | { |
| 295 | struct device *dev = &pdev->dev; |
developer | b3c41cd | 2024-06-04 17:52:08 +0800 | [diff] [blame^] | 296 | int i; |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 297 | |
| 298 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); |
| 299 | if (!priv) |
| 300 | return -ENOMEM; |
| 301 | |
| 302 | platform_set_drvdata(pdev, priv); |
| 303 | |
developer | b3c41cd | 2024-06-04 17:52:08 +0800 | [diff] [blame^] | 304 | priv->mtk_eip_ring = devm_kcalloc(dev, PEC_MAX_INTERFACE_NUM, |
| 305 | sizeof(*priv->mtk_eip_ring), GFP_KERNEL); |
| 306 | if (!priv->mtk_eip_ring) |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 307 | return -ENOMEM; |
| 308 | |
developer | b3c41cd | 2024-06-04 17:52:08 +0800 | [diff] [blame^] | 309 | for (i = 0; i < PEC_MAX_INTERFACE_NUM; i++) { |
| 310 | char wq_name[17] = {0}; |
| 311 | char irq_name[6] = {0}; |
| 312 | int irq, cpu; |
| 313 | |
| 314 | // init workqueue for all rings |
| 315 | priv->mtk_eip_ring[i].work_data.priv = priv; |
| 316 | priv->mtk_eip_ring[i].work_data.ring = i; |
| 317 | INIT_WORK(&priv->mtk_eip_ring[i].work_data.work, mtk_crypto_dequeue_work); |
| 318 | |
| 319 | snprintf(wq_name, 17, "mtk_crypto_work%d", i); |
| 320 | priv->mtk_eip_ring[i].workqueue = create_singlethread_workqueue(wq_name); |
| 321 | if (!priv->mtk_eip_ring[i].workqueue) |
| 322 | return -ENOMEM; |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 323 | |
developer | b3c41cd | 2024-06-04 17:52:08 +0800 | [diff] [blame^] | 324 | crypto_init_queue(&priv->mtk_eip_ring[i].queue, EIP197_DEFAULT_RING_SIZE); |
| 325 | |
| 326 | spin_lock_init(&priv->mtk_eip_ring[i].ring_lock); |
| 327 | spin_lock_init(&priv->mtk_eip_ring[i].queue_lock); |
| 328 | INIT_LIST_HEAD(&priv->mtk_eip_ring[i].list); |
| 329 | |
| 330 | // setup irq affinity |
| 331 | snprintf(irq_name, 6, "ring%d", i); |
| 332 | irq = platform_get_irq_byname(pdev, irq_name); |
| 333 | if (irq < 0) |
| 334 | return irq; |
| 335 | |
| 336 | cpu = cpumask_local_spread(i, NUMA_NO_NODE); |
| 337 | irq_set_affinity_hint(irq, get_cpu_mask(cpu)); |
| 338 | } |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 339 | |
| 340 | return 0; |
| 341 | }; |
| 342 | |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 343 | static int __init mtk_crypto_eip_dts_init(void) |
| 344 | { |
| 345 | struct platform_device *crypto_pdev; |
| 346 | struct device_node *crypto_node; |
| 347 | struct resource res; |
| 348 | int ret; |
| 349 | |
| 350 | crypto_node = of_find_compatible_node(NULL, NULL, HWPAL_PLATFORM_DEVICE_NAME); |
| 351 | if (!crypto_node) |
| 352 | return -ENODEV; |
| 353 | |
| 354 | crypto_pdev = of_find_device_by_node(crypto_node); |
| 355 | if (!crypto_pdev) { |
| 356 | ret = -ENODEV; |
| 357 | goto out; |
| 358 | } |
| 359 | |
| 360 | /* check crypto platform device is ready */ |
| 361 | if (!crypto_pdev->dev.driver) { |
| 362 | ret = -EFAULT; |
| 363 | goto out; |
| 364 | } |
| 365 | |
| 366 | if (of_address_to_resource(crypto_node, 0, &res)) { |
| 367 | ret = -ENXIO; |
| 368 | goto out; |
| 369 | } |
| 370 | |
| 371 | mcrypto.crypto_base = devm_ioremap(&crypto_pdev->dev, |
| 372 | res.start, resource_size(&res)); |
| 373 | if (!mcrypto.crypto_base) { |
| 374 | ret = -ENOMEM; |
| 375 | goto out; |
| 376 | } |
| 377 | |
| 378 | ret = mtk_crypto_eth_dts_init(crypto_pdev); |
| 379 | if (ret) |
| 380 | goto out; |
| 381 | |
developer | 5922d4d | 2024-02-26 19:01:58 +0800 | [diff] [blame] | 382 | ret = mtk_crypto_ppe_num_dts_init(crypto_pdev); |
| 383 | if (ret) |
| 384 | goto out; |
| 385 | |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 386 | crypto_dev = &crypto_pdev->dev; |
| 387 | |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 388 | ret = mtk_crypto_lookaside_data_init(crypto_pdev); |
| 389 | if (ret) |
| 390 | goto out; |
| 391 | |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 392 | out: |
| 393 | of_node_put(crypto_node); |
| 394 | |
| 395 | return ret; |
| 396 | } |
| 397 | |
| 398 | static int __init mtk_crypto_eip_hw_init(void) |
| 399 | { |
| 400 | crypto_eip_write(EIP197_FORCE_CLK_ON, 0xffffffff); |
| 401 | |
| 402 | crypto_eip_write(EIP197_FORCE_CLK_ON2, 0xffffffff); |
| 403 | |
| 404 | /* TODO: adjust AXI burst? */ |
| 405 | |
| 406 | mtk_ddk_pec_init(); |
| 407 | |
| 408 | return 0; |
| 409 | } |
| 410 | |
| 411 | static void __exit mtk_crypto_eip_hw_deinit(void) |
| 412 | { |
| 413 | mtk_ddk_pec_deinit(); |
| 414 | |
| 415 | crypto_eip_write(EIP197_FORCE_CLK_ON, 0); |
| 416 | |
| 417 | crypto_eip_write(EIP197_FORCE_CLK_ON2, 0); |
| 418 | } |
| 419 | |
| 420 | static int __init mtk_crypto_eip_init(void) |
| 421 | { |
| 422 | int ret; |
| 423 | |
| 424 | ret = mtk_crypto_eip_dts_init(); |
| 425 | if (ret) { |
| 426 | CRYPTO_ERR("crypto-eip dts init failed: %d\n", ret); |
| 427 | return ret; |
| 428 | } |
| 429 | |
| 430 | ret = mtk_crypto_eip_hw_init(); |
| 431 | if (ret) { |
| 432 | CRYPTO_ERR("crypto-eip hw init failed: %d\n", ret); |
| 433 | return ret; |
| 434 | } |
| 435 | |
| 436 | mtk_crypto_xfrm_offload_init(mcrypto.eth); |
developer | 1baf13c | 2024-07-05 15:43:05 +0800 | [diff] [blame] | 437 | mtk_crypto_debugfs_init(); |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 438 | mtk_crypto_register_algorithms(priv); |
developer | 49489b8 | 2024-03-28 15:18:08 +0800 | [diff] [blame] | 439 | #if defined(CONFIG_MTK_TOPS_CAPWAP_DTLS) |
| 440 | mtk_dtls_capwap_init(); |
| 441 | #endif |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 442 | |
| 443 | CRYPTO_INFO("crypto-eip init done\n"); |
| 444 | |
| 445 | return ret; |
| 446 | } |
| 447 | |
| 448 | static void __exit mtk_crypto_eip_exit(void) |
| 449 | { |
| 450 | /* TODO: deactivate all tunnel */ |
developer | 49489b8 | 2024-03-28 15:18:08 +0800 | [diff] [blame] | 451 | #if defined(CONFIG_MTK_TOPS_CAPWAP_DTLS) |
| 452 | mtk_dtls_capwap_deinit(); |
| 453 | #endif |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 454 | mtk_crypto_unregister_algorithms(); |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 455 | mtk_crypto_xfrm_offload_deinit(mcrypto.eth); |
| 456 | |
| 457 | mtk_crypto_eip_hw_deinit(); |
developer | ebe38fd | 2024-03-22 14:36:06 +0800 | [diff] [blame] | 458 | |
developer | 94c513e | 2023-08-21 17:33:25 +0800 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | module_init(mtk_crypto_eip_init); |
| 462 | module_exit(mtk_crypto_eip_exit); |
| 463 | |
| 464 | MODULE_LICENSE("GPL"); |
| 465 | MODULE_DESCRIPTION("MediaTek Crypto EIP Control Driver"); |
| 466 | MODULE_AUTHOR(DRIVER_AUTHOR); |