162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * Glue Code for assembler optimized version of Camellia
462306a36Sopenharmony_ci *
562306a36Sopenharmony_ci * Copyright (c) 2012 Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
662306a36Sopenharmony_ci *
762306a36Sopenharmony_ci * Camellia parts based on code by:
862306a36Sopenharmony_ci *  Copyright (C) 2006 NTT (Nippon Telegraph and Telephone Corporation)
962306a36Sopenharmony_ci */
1062306a36Sopenharmony_ci
1162306a36Sopenharmony_ci#include <asm/unaligned.h>
1262306a36Sopenharmony_ci#include <linux/crypto.h>
1362306a36Sopenharmony_ci#include <linux/init.h>
1462306a36Sopenharmony_ci#include <linux/module.h>
1562306a36Sopenharmony_ci#include <linux/types.h>
1662306a36Sopenharmony_ci#include <crypto/algapi.h>
1762306a36Sopenharmony_ci
1862306a36Sopenharmony_ci#include "camellia.h"
1962306a36Sopenharmony_ci#include "ecb_cbc_helpers.h"
2062306a36Sopenharmony_ci
2162306a36Sopenharmony_ci/* regular block cipher functions */
2262306a36Sopenharmony_ciasmlinkage void __camellia_enc_blk(const void *ctx, u8 *dst, const u8 *src,
2362306a36Sopenharmony_ci				   bool xor);
2462306a36Sopenharmony_ciEXPORT_SYMBOL_GPL(__camellia_enc_blk);
2562306a36Sopenharmony_ciasmlinkage void camellia_dec_blk(const void *ctx, u8 *dst, const u8 *src);
2662306a36Sopenharmony_ciEXPORT_SYMBOL_GPL(camellia_dec_blk);
2762306a36Sopenharmony_ci
2862306a36Sopenharmony_ci/* 2-way parallel cipher functions */
2962306a36Sopenharmony_ciasmlinkage void __camellia_enc_blk_2way(const void *ctx, u8 *dst, const u8 *src,
3062306a36Sopenharmony_ci					bool xor);
3162306a36Sopenharmony_ciEXPORT_SYMBOL_GPL(__camellia_enc_blk_2way);
3262306a36Sopenharmony_ciasmlinkage void camellia_dec_blk_2way(const void *ctx, u8 *dst, const u8 *src);
3362306a36Sopenharmony_ciEXPORT_SYMBOL_GPL(camellia_dec_blk_2way);
3462306a36Sopenharmony_ci
3562306a36Sopenharmony_cistatic void camellia_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
3662306a36Sopenharmony_ci{
3762306a36Sopenharmony_ci	camellia_enc_blk(crypto_tfm_ctx(tfm), dst, src);
3862306a36Sopenharmony_ci}
3962306a36Sopenharmony_ci
4062306a36Sopenharmony_cistatic void camellia_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
4162306a36Sopenharmony_ci{
4262306a36Sopenharmony_ci	camellia_dec_blk(crypto_tfm_ctx(tfm), dst, src);
4362306a36Sopenharmony_ci}
4462306a36Sopenharmony_ci
4562306a36Sopenharmony_ci/* camellia sboxes */
4662306a36Sopenharmony_ci__visible const u64 camellia_sp10011110[256] = {
4762306a36Sopenharmony_ci	0x7000007070707000ULL, 0x8200008282828200ULL, 0x2c00002c2c2c2c00ULL,
4862306a36Sopenharmony_ci	0xec0000ecececec00ULL, 0xb30000b3b3b3b300ULL, 0x2700002727272700ULL,
4962306a36Sopenharmony_ci	0xc00000c0c0c0c000ULL, 0xe50000e5e5e5e500ULL, 0xe40000e4e4e4e400ULL,
5062306a36Sopenharmony_ci	0x8500008585858500ULL, 0x5700005757575700ULL, 0x3500003535353500ULL,
5162306a36Sopenharmony_ci	0xea0000eaeaeaea00ULL, 0x0c00000c0c0c0c00ULL, 0xae0000aeaeaeae00ULL,
5262306a36Sopenharmony_ci	0x4100004141414100ULL, 0x2300002323232300ULL, 0xef0000efefefef00ULL,
5362306a36Sopenharmony_ci	0x6b00006b6b6b6b00ULL, 0x9300009393939300ULL, 0x4500004545454500ULL,
5462306a36Sopenharmony_ci	0x1900001919191900ULL, 0xa50000a5a5a5a500ULL, 0x2100002121212100ULL,
5562306a36Sopenharmony_ci	0xed0000edededed00ULL, 0x0e00000e0e0e0e00ULL, 0x4f00004f4f4f4f00ULL,
5662306a36Sopenharmony_ci	0x4e00004e4e4e4e00ULL, 0x1d00001d1d1d1d00ULL, 0x6500006565656500ULL,
5762306a36Sopenharmony_ci	0x9200009292929200ULL, 0xbd0000bdbdbdbd00ULL, 0x8600008686868600ULL,
5862306a36Sopenharmony_ci	0xb80000b8b8b8b800ULL, 0xaf0000afafafaf00ULL, 0x8f00008f8f8f8f00ULL,
5962306a36Sopenharmony_ci	0x7c00007c7c7c7c00ULL, 0xeb0000ebebebeb00ULL, 0x1f00001f1f1f1f00ULL,
6062306a36Sopenharmony_ci	0xce0000cececece00ULL, 0x3e00003e3e3e3e00ULL, 0x3000003030303000ULL,
6162306a36Sopenharmony_ci	0xdc0000dcdcdcdc00ULL, 0x5f00005f5f5f5f00ULL, 0x5e00005e5e5e5e00ULL,
6262306a36Sopenharmony_ci	0xc50000c5c5c5c500ULL, 0x0b00000b0b0b0b00ULL, 0x1a00001a1a1a1a00ULL,
6362306a36Sopenharmony_ci	0xa60000a6a6a6a600ULL, 0xe10000e1e1e1e100ULL, 0x3900003939393900ULL,
6462306a36Sopenharmony_ci	0xca0000cacacaca00ULL, 0xd50000d5d5d5d500ULL, 0x4700004747474700ULL,
6562306a36Sopenharmony_ci	0x5d00005d5d5d5d00ULL, 0x3d00003d3d3d3d00ULL, 0xd90000d9d9d9d900ULL,
6662306a36Sopenharmony_ci	0x0100000101010100ULL, 0x5a00005a5a5a5a00ULL, 0xd60000d6d6d6d600ULL,
6762306a36Sopenharmony_ci	0x5100005151515100ULL, 0x5600005656565600ULL, 0x6c00006c6c6c6c00ULL,
6862306a36Sopenharmony_ci	0x4d00004d4d4d4d00ULL, 0x8b00008b8b8b8b00ULL, 0x0d00000d0d0d0d00ULL,
6962306a36Sopenharmony_ci	0x9a00009a9a9a9a00ULL, 0x6600006666666600ULL, 0xfb0000fbfbfbfb00ULL,
7062306a36Sopenharmony_ci	0xcc0000cccccccc00ULL, 0xb00000b0b0b0b000ULL, 0x2d00002d2d2d2d00ULL,
7162306a36Sopenharmony_ci	0x7400007474747400ULL, 0x1200001212121200ULL, 0x2b00002b2b2b2b00ULL,
7262306a36Sopenharmony_ci	0x2000002020202000ULL, 0xf00000f0f0f0f000ULL, 0xb10000b1b1b1b100ULL,
7362306a36Sopenharmony_ci	0x8400008484848400ULL, 0x9900009999999900ULL, 0xdf0000dfdfdfdf00ULL,
7462306a36Sopenharmony_ci	0x4c00004c4c4c4c00ULL, 0xcb0000cbcbcbcb00ULL, 0xc20000c2c2c2c200ULL,
7562306a36Sopenharmony_ci	0x3400003434343400ULL, 0x7e00007e7e7e7e00ULL, 0x7600007676767600ULL,
7662306a36Sopenharmony_ci	0x0500000505050500ULL, 0x6d00006d6d6d6d00ULL, 0xb70000b7b7b7b700ULL,
7762306a36Sopenharmony_ci	0xa90000a9a9a9a900ULL, 0x3100003131313100ULL, 0xd10000d1d1d1d100ULL,
7862306a36Sopenharmony_ci	0x1700001717171700ULL, 0x0400000404040400ULL, 0xd70000d7d7d7d700ULL,
7962306a36Sopenharmony_ci	0x1400001414141400ULL, 0x5800005858585800ULL, 0x3a00003a3a3a3a00ULL,
8062306a36Sopenharmony_ci	0x6100006161616100ULL, 0xde0000dededede00ULL, 0x1b00001b1b1b1b00ULL,
8162306a36Sopenharmony_ci	0x1100001111111100ULL, 0x1c00001c1c1c1c00ULL, 0x3200003232323200ULL,
8262306a36Sopenharmony_ci	0x0f00000f0f0f0f00ULL, 0x9c00009c9c9c9c00ULL, 0x1600001616161600ULL,
8362306a36Sopenharmony_ci	0x5300005353535300ULL, 0x1800001818181800ULL, 0xf20000f2f2f2f200ULL,
8462306a36Sopenharmony_ci	0x2200002222222200ULL, 0xfe0000fefefefe00ULL, 0x4400004444444400ULL,
8562306a36Sopenharmony_ci	0xcf0000cfcfcfcf00ULL, 0xb20000b2b2b2b200ULL, 0xc30000c3c3c3c300ULL,
8662306a36Sopenharmony_ci	0xb50000b5b5b5b500ULL, 0x7a00007a7a7a7a00ULL, 0x9100009191919100ULL,
8762306a36Sopenharmony_ci	0x2400002424242400ULL, 0x0800000808080800ULL, 0xe80000e8e8e8e800ULL,
8862306a36Sopenharmony_ci	0xa80000a8a8a8a800ULL, 0x6000006060606000ULL, 0xfc0000fcfcfcfc00ULL,
8962306a36Sopenharmony_ci	0x6900006969696900ULL, 0x5000005050505000ULL, 0xaa0000aaaaaaaa00ULL,
9062306a36Sopenharmony_ci	0xd00000d0d0d0d000ULL, 0xa00000a0a0a0a000ULL, 0x7d00007d7d7d7d00ULL,
9162306a36Sopenharmony_ci	0xa10000a1a1a1a100ULL, 0x8900008989898900ULL, 0x6200006262626200ULL,
9262306a36Sopenharmony_ci	0x9700009797979700ULL, 0x5400005454545400ULL, 0x5b00005b5b5b5b00ULL,
9362306a36Sopenharmony_ci	0x1e00001e1e1e1e00ULL, 0x9500009595959500ULL, 0xe00000e0e0e0e000ULL,
9462306a36Sopenharmony_ci	0xff0000ffffffff00ULL, 0x6400006464646400ULL, 0xd20000d2d2d2d200ULL,
9562306a36Sopenharmony_ci	0x1000001010101000ULL, 0xc40000c4c4c4c400ULL, 0x0000000000000000ULL,
9662306a36Sopenharmony_ci	0x4800004848484800ULL, 0xa30000a3a3a3a300ULL, 0xf70000f7f7f7f700ULL,
9762306a36Sopenharmony_ci	0x7500007575757500ULL, 0xdb0000dbdbdbdb00ULL, 0x8a00008a8a8a8a00ULL,
9862306a36Sopenharmony_ci	0x0300000303030300ULL, 0xe60000e6e6e6e600ULL, 0xda0000dadadada00ULL,
9962306a36Sopenharmony_ci	0x0900000909090900ULL, 0x3f00003f3f3f3f00ULL, 0xdd0000dddddddd00ULL,
10062306a36Sopenharmony_ci	0x9400009494949400ULL, 0x8700008787878700ULL, 0x5c00005c5c5c5c00ULL,
10162306a36Sopenharmony_ci	0x8300008383838300ULL, 0x0200000202020200ULL, 0xcd0000cdcdcdcd00ULL,
10262306a36Sopenharmony_ci	0x4a00004a4a4a4a00ULL, 0x9000009090909000ULL, 0x3300003333333300ULL,
10362306a36Sopenharmony_ci	0x7300007373737300ULL, 0x6700006767676700ULL, 0xf60000f6f6f6f600ULL,
10462306a36Sopenharmony_ci	0xf30000f3f3f3f300ULL, 0x9d00009d9d9d9d00ULL, 0x7f00007f7f7f7f00ULL,
10562306a36Sopenharmony_ci	0xbf0000bfbfbfbf00ULL, 0xe20000e2e2e2e200ULL, 0x5200005252525200ULL,
10662306a36Sopenharmony_ci	0x9b00009b9b9b9b00ULL, 0xd80000d8d8d8d800ULL, 0x2600002626262600ULL,
10762306a36Sopenharmony_ci	0xc80000c8c8c8c800ULL, 0x3700003737373700ULL, 0xc60000c6c6c6c600ULL,
10862306a36Sopenharmony_ci	0x3b00003b3b3b3b00ULL, 0x8100008181818100ULL, 0x9600009696969600ULL,
10962306a36Sopenharmony_ci	0x6f00006f6f6f6f00ULL, 0x4b00004b4b4b4b00ULL, 0x1300001313131300ULL,
11062306a36Sopenharmony_ci	0xbe0000bebebebe00ULL, 0x6300006363636300ULL, 0x2e00002e2e2e2e00ULL,
11162306a36Sopenharmony_ci	0xe90000e9e9e9e900ULL, 0x7900007979797900ULL, 0xa70000a7a7a7a700ULL,
11262306a36Sopenharmony_ci	0x8c00008c8c8c8c00ULL, 0x9f00009f9f9f9f00ULL, 0x6e00006e6e6e6e00ULL,
11362306a36Sopenharmony_ci	0xbc0000bcbcbcbc00ULL, 0x8e00008e8e8e8e00ULL, 0x2900002929292900ULL,
11462306a36Sopenharmony_ci	0xf50000f5f5f5f500ULL, 0xf90000f9f9f9f900ULL, 0xb60000b6b6b6b600ULL,
11562306a36Sopenharmony_ci	0x2f00002f2f2f2f00ULL, 0xfd0000fdfdfdfd00ULL, 0xb40000b4b4b4b400ULL,
11662306a36Sopenharmony_ci	0x5900005959595900ULL, 0x7800007878787800ULL, 0x9800009898989800ULL,
11762306a36Sopenharmony_ci	0x0600000606060600ULL, 0x6a00006a6a6a6a00ULL, 0xe70000e7e7e7e700ULL,
11862306a36Sopenharmony_ci	0x4600004646464600ULL, 0x7100007171717100ULL, 0xba0000babababa00ULL,
11962306a36Sopenharmony_ci	0xd40000d4d4d4d400ULL, 0x2500002525252500ULL, 0xab0000abababab00ULL,
12062306a36Sopenharmony_ci	0x4200004242424200ULL, 0x8800008888888800ULL, 0xa20000a2a2a2a200ULL,
12162306a36Sopenharmony_ci	0x8d00008d8d8d8d00ULL, 0xfa0000fafafafa00ULL, 0x7200007272727200ULL,
12262306a36Sopenharmony_ci	0x0700000707070700ULL, 0xb90000b9b9b9b900ULL, 0x5500005555555500ULL,
12362306a36Sopenharmony_ci	0xf80000f8f8f8f800ULL, 0xee0000eeeeeeee00ULL, 0xac0000acacacac00ULL,
12462306a36Sopenharmony_ci	0x0a00000a0a0a0a00ULL, 0x3600003636363600ULL, 0x4900004949494900ULL,
12562306a36Sopenharmony_ci	0x2a00002a2a2a2a00ULL, 0x6800006868686800ULL, 0x3c00003c3c3c3c00ULL,
12662306a36Sopenharmony_ci	0x3800003838383800ULL, 0xf10000f1f1f1f100ULL, 0xa40000a4a4a4a400ULL,
12762306a36Sopenharmony_ci	0x4000004040404000ULL, 0x2800002828282800ULL, 0xd30000d3d3d3d300ULL,
12862306a36Sopenharmony_ci	0x7b00007b7b7b7b00ULL, 0xbb0000bbbbbbbb00ULL, 0xc90000c9c9c9c900ULL,
12962306a36Sopenharmony_ci	0x4300004343434300ULL, 0xc10000c1c1c1c100ULL, 0x1500001515151500ULL,
13062306a36Sopenharmony_ci	0xe30000e3e3e3e300ULL, 0xad0000adadadad00ULL, 0xf40000f4f4f4f400ULL,
13162306a36Sopenharmony_ci	0x7700007777777700ULL, 0xc70000c7c7c7c700ULL, 0x8000008080808000ULL,
13262306a36Sopenharmony_ci	0x9e00009e9e9e9e00ULL,
13362306a36Sopenharmony_ci};
13462306a36Sopenharmony_ci
13562306a36Sopenharmony_ci__visible const u64 camellia_sp22000222[256] = {
13662306a36Sopenharmony_ci	0xe0e0000000e0e0e0ULL, 0x0505000000050505ULL, 0x5858000000585858ULL,
13762306a36Sopenharmony_ci	0xd9d9000000d9d9d9ULL, 0x6767000000676767ULL, 0x4e4e0000004e4e4eULL,
13862306a36Sopenharmony_ci	0x8181000000818181ULL, 0xcbcb000000cbcbcbULL, 0xc9c9000000c9c9c9ULL,
13962306a36Sopenharmony_ci	0x0b0b0000000b0b0bULL, 0xaeae000000aeaeaeULL, 0x6a6a0000006a6a6aULL,
14062306a36Sopenharmony_ci	0xd5d5000000d5d5d5ULL, 0x1818000000181818ULL, 0x5d5d0000005d5d5dULL,
14162306a36Sopenharmony_ci	0x8282000000828282ULL, 0x4646000000464646ULL, 0xdfdf000000dfdfdfULL,
14262306a36Sopenharmony_ci	0xd6d6000000d6d6d6ULL, 0x2727000000272727ULL, 0x8a8a0000008a8a8aULL,
14362306a36Sopenharmony_ci	0x3232000000323232ULL, 0x4b4b0000004b4b4bULL, 0x4242000000424242ULL,
14462306a36Sopenharmony_ci	0xdbdb000000dbdbdbULL, 0x1c1c0000001c1c1cULL, 0x9e9e0000009e9e9eULL,
14562306a36Sopenharmony_ci	0x9c9c0000009c9c9cULL, 0x3a3a0000003a3a3aULL, 0xcaca000000cacacaULL,
14662306a36Sopenharmony_ci	0x2525000000252525ULL, 0x7b7b0000007b7b7bULL, 0x0d0d0000000d0d0dULL,
14762306a36Sopenharmony_ci	0x7171000000717171ULL, 0x5f5f0000005f5f5fULL, 0x1f1f0000001f1f1fULL,
14862306a36Sopenharmony_ci	0xf8f8000000f8f8f8ULL, 0xd7d7000000d7d7d7ULL, 0x3e3e0000003e3e3eULL,
14962306a36Sopenharmony_ci	0x9d9d0000009d9d9dULL, 0x7c7c0000007c7c7cULL, 0x6060000000606060ULL,
15062306a36Sopenharmony_ci	0xb9b9000000b9b9b9ULL, 0xbebe000000bebebeULL, 0xbcbc000000bcbcbcULL,
15162306a36Sopenharmony_ci	0x8b8b0000008b8b8bULL, 0x1616000000161616ULL, 0x3434000000343434ULL,
15262306a36Sopenharmony_ci	0x4d4d0000004d4d4dULL, 0xc3c3000000c3c3c3ULL, 0x7272000000727272ULL,
15362306a36Sopenharmony_ci	0x9595000000959595ULL, 0xabab000000abababULL, 0x8e8e0000008e8e8eULL,
15462306a36Sopenharmony_ci	0xbaba000000bababaULL, 0x7a7a0000007a7a7aULL, 0xb3b3000000b3b3b3ULL,
15562306a36Sopenharmony_ci	0x0202000000020202ULL, 0xb4b4000000b4b4b4ULL, 0xadad000000adadadULL,
15662306a36Sopenharmony_ci	0xa2a2000000a2a2a2ULL, 0xacac000000acacacULL, 0xd8d8000000d8d8d8ULL,
15762306a36Sopenharmony_ci	0x9a9a0000009a9a9aULL, 0x1717000000171717ULL, 0x1a1a0000001a1a1aULL,
15862306a36Sopenharmony_ci	0x3535000000353535ULL, 0xcccc000000ccccccULL, 0xf7f7000000f7f7f7ULL,
15962306a36Sopenharmony_ci	0x9999000000999999ULL, 0x6161000000616161ULL, 0x5a5a0000005a5a5aULL,
16062306a36Sopenharmony_ci	0xe8e8000000e8e8e8ULL, 0x2424000000242424ULL, 0x5656000000565656ULL,
16162306a36Sopenharmony_ci	0x4040000000404040ULL, 0xe1e1000000e1e1e1ULL, 0x6363000000636363ULL,
16262306a36Sopenharmony_ci	0x0909000000090909ULL, 0x3333000000333333ULL, 0xbfbf000000bfbfbfULL,
16362306a36Sopenharmony_ci	0x9898000000989898ULL, 0x9797000000979797ULL, 0x8585000000858585ULL,
16462306a36Sopenharmony_ci	0x6868000000686868ULL, 0xfcfc000000fcfcfcULL, 0xecec000000ecececULL,
16562306a36Sopenharmony_ci	0x0a0a0000000a0a0aULL, 0xdada000000dadadaULL, 0x6f6f0000006f6f6fULL,
16662306a36Sopenharmony_ci	0x5353000000535353ULL, 0x6262000000626262ULL, 0xa3a3000000a3a3a3ULL,
16762306a36Sopenharmony_ci	0x2e2e0000002e2e2eULL, 0x0808000000080808ULL, 0xafaf000000afafafULL,
16862306a36Sopenharmony_ci	0x2828000000282828ULL, 0xb0b0000000b0b0b0ULL, 0x7474000000747474ULL,
16962306a36Sopenharmony_ci	0xc2c2000000c2c2c2ULL, 0xbdbd000000bdbdbdULL, 0x3636000000363636ULL,
17062306a36Sopenharmony_ci	0x2222000000222222ULL, 0x3838000000383838ULL, 0x6464000000646464ULL,
17162306a36Sopenharmony_ci	0x1e1e0000001e1e1eULL, 0x3939000000393939ULL, 0x2c2c0000002c2c2cULL,
17262306a36Sopenharmony_ci	0xa6a6000000a6a6a6ULL, 0x3030000000303030ULL, 0xe5e5000000e5e5e5ULL,
17362306a36Sopenharmony_ci	0x4444000000444444ULL, 0xfdfd000000fdfdfdULL, 0x8888000000888888ULL,
17462306a36Sopenharmony_ci	0x9f9f0000009f9f9fULL, 0x6565000000656565ULL, 0x8787000000878787ULL,
17562306a36Sopenharmony_ci	0x6b6b0000006b6b6bULL, 0xf4f4000000f4f4f4ULL, 0x2323000000232323ULL,
17662306a36Sopenharmony_ci	0x4848000000484848ULL, 0x1010000000101010ULL, 0xd1d1000000d1d1d1ULL,
17762306a36Sopenharmony_ci	0x5151000000515151ULL, 0xc0c0000000c0c0c0ULL, 0xf9f9000000f9f9f9ULL,
17862306a36Sopenharmony_ci	0xd2d2000000d2d2d2ULL, 0xa0a0000000a0a0a0ULL, 0x5555000000555555ULL,
17962306a36Sopenharmony_ci	0xa1a1000000a1a1a1ULL, 0x4141000000414141ULL, 0xfafa000000fafafaULL,
18062306a36Sopenharmony_ci	0x4343000000434343ULL, 0x1313000000131313ULL, 0xc4c4000000c4c4c4ULL,
18162306a36Sopenharmony_ci	0x2f2f0000002f2f2fULL, 0xa8a8000000a8a8a8ULL, 0xb6b6000000b6b6b6ULL,
18262306a36Sopenharmony_ci	0x3c3c0000003c3c3cULL, 0x2b2b0000002b2b2bULL, 0xc1c1000000c1c1c1ULL,
18362306a36Sopenharmony_ci	0xffff000000ffffffULL, 0xc8c8000000c8c8c8ULL, 0xa5a5000000a5a5a5ULL,
18462306a36Sopenharmony_ci	0x2020000000202020ULL, 0x8989000000898989ULL, 0x0000000000000000ULL,
18562306a36Sopenharmony_ci	0x9090000000909090ULL, 0x4747000000474747ULL, 0xefef000000efefefULL,
18662306a36Sopenharmony_ci	0xeaea000000eaeaeaULL, 0xb7b7000000b7b7b7ULL, 0x1515000000151515ULL,
18762306a36Sopenharmony_ci	0x0606000000060606ULL, 0xcdcd000000cdcdcdULL, 0xb5b5000000b5b5b5ULL,
18862306a36Sopenharmony_ci	0x1212000000121212ULL, 0x7e7e0000007e7e7eULL, 0xbbbb000000bbbbbbULL,
18962306a36Sopenharmony_ci	0x2929000000292929ULL, 0x0f0f0000000f0f0fULL, 0xb8b8000000b8b8b8ULL,
19062306a36Sopenharmony_ci	0x0707000000070707ULL, 0x0404000000040404ULL, 0x9b9b0000009b9b9bULL,
19162306a36Sopenharmony_ci	0x9494000000949494ULL, 0x2121000000212121ULL, 0x6666000000666666ULL,
19262306a36Sopenharmony_ci	0xe6e6000000e6e6e6ULL, 0xcece000000cececeULL, 0xeded000000edededULL,
19362306a36Sopenharmony_ci	0xe7e7000000e7e7e7ULL, 0x3b3b0000003b3b3bULL, 0xfefe000000fefefeULL,
19462306a36Sopenharmony_ci	0x7f7f0000007f7f7fULL, 0xc5c5000000c5c5c5ULL, 0xa4a4000000a4a4a4ULL,
19562306a36Sopenharmony_ci	0x3737000000373737ULL, 0xb1b1000000b1b1b1ULL, 0x4c4c0000004c4c4cULL,
19662306a36Sopenharmony_ci	0x9191000000919191ULL, 0x6e6e0000006e6e6eULL, 0x8d8d0000008d8d8dULL,
19762306a36Sopenharmony_ci	0x7676000000767676ULL, 0x0303000000030303ULL, 0x2d2d0000002d2d2dULL,
19862306a36Sopenharmony_ci	0xdede000000dededeULL, 0x9696000000969696ULL, 0x2626000000262626ULL,
19962306a36Sopenharmony_ci	0x7d7d0000007d7d7dULL, 0xc6c6000000c6c6c6ULL, 0x5c5c0000005c5c5cULL,
20062306a36Sopenharmony_ci	0xd3d3000000d3d3d3ULL, 0xf2f2000000f2f2f2ULL, 0x4f4f0000004f4f4fULL,
20162306a36Sopenharmony_ci	0x1919000000191919ULL, 0x3f3f0000003f3f3fULL, 0xdcdc000000dcdcdcULL,
20262306a36Sopenharmony_ci	0x7979000000797979ULL, 0x1d1d0000001d1d1dULL, 0x5252000000525252ULL,
20362306a36Sopenharmony_ci	0xebeb000000ebebebULL, 0xf3f3000000f3f3f3ULL, 0x6d6d0000006d6d6dULL,
20462306a36Sopenharmony_ci	0x5e5e0000005e5e5eULL, 0xfbfb000000fbfbfbULL, 0x6969000000696969ULL,
20562306a36Sopenharmony_ci	0xb2b2000000b2b2b2ULL, 0xf0f0000000f0f0f0ULL, 0x3131000000313131ULL,
20662306a36Sopenharmony_ci	0x0c0c0000000c0c0cULL, 0xd4d4000000d4d4d4ULL, 0xcfcf000000cfcfcfULL,
20762306a36Sopenharmony_ci	0x8c8c0000008c8c8cULL, 0xe2e2000000e2e2e2ULL, 0x7575000000757575ULL,
20862306a36Sopenharmony_ci	0xa9a9000000a9a9a9ULL, 0x4a4a0000004a4a4aULL, 0x5757000000575757ULL,
20962306a36Sopenharmony_ci	0x8484000000848484ULL, 0x1111000000111111ULL, 0x4545000000454545ULL,
21062306a36Sopenharmony_ci	0x1b1b0000001b1b1bULL, 0xf5f5000000f5f5f5ULL, 0xe4e4000000e4e4e4ULL,
21162306a36Sopenharmony_ci	0x0e0e0000000e0e0eULL, 0x7373000000737373ULL, 0xaaaa000000aaaaaaULL,
21262306a36Sopenharmony_ci	0xf1f1000000f1f1f1ULL, 0xdddd000000ddddddULL, 0x5959000000595959ULL,
21362306a36Sopenharmony_ci	0x1414000000141414ULL, 0x6c6c0000006c6c6cULL, 0x9292000000929292ULL,
21462306a36Sopenharmony_ci	0x5454000000545454ULL, 0xd0d0000000d0d0d0ULL, 0x7878000000787878ULL,
21562306a36Sopenharmony_ci	0x7070000000707070ULL, 0xe3e3000000e3e3e3ULL, 0x4949000000494949ULL,
21662306a36Sopenharmony_ci	0x8080000000808080ULL, 0x5050000000505050ULL, 0xa7a7000000a7a7a7ULL,
21762306a36Sopenharmony_ci	0xf6f6000000f6f6f6ULL, 0x7777000000777777ULL, 0x9393000000939393ULL,
21862306a36Sopenharmony_ci	0x8686000000868686ULL, 0x8383000000838383ULL, 0x2a2a0000002a2a2aULL,
21962306a36Sopenharmony_ci	0xc7c7000000c7c7c7ULL, 0x5b5b0000005b5b5bULL, 0xe9e9000000e9e9e9ULL,
22062306a36Sopenharmony_ci	0xeeee000000eeeeeeULL, 0x8f8f0000008f8f8fULL, 0x0101000000010101ULL,
22162306a36Sopenharmony_ci	0x3d3d0000003d3d3dULL,
22262306a36Sopenharmony_ci};
22362306a36Sopenharmony_ci
22462306a36Sopenharmony_ci__visible const u64 camellia_sp03303033[256] = {
22562306a36Sopenharmony_ci	0x0038380038003838ULL, 0x0041410041004141ULL, 0x0016160016001616ULL,
22662306a36Sopenharmony_ci	0x0076760076007676ULL, 0x00d9d900d900d9d9ULL, 0x0093930093009393ULL,
22762306a36Sopenharmony_ci	0x0060600060006060ULL, 0x00f2f200f200f2f2ULL, 0x0072720072007272ULL,
22862306a36Sopenharmony_ci	0x00c2c200c200c2c2ULL, 0x00abab00ab00ababULL, 0x009a9a009a009a9aULL,
22962306a36Sopenharmony_ci	0x0075750075007575ULL, 0x0006060006000606ULL, 0x0057570057005757ULL,
23062306a36Sopenharmony_ci	0x00a0a000a000a0a0ULL, 0x0091910091009191ULL, 0x00f7f700f700f7f7ULL,
23162306a36Sopenharmony_ci	0x00b5b500b500b5b5ULL, 0x00c9c900c900c9c9ULL, 0x00a2a200a200a2a2ULL,
23262306a36Sopenharmony_ci	0x008c8c008c008c8cULL, 0x00d2d200d200d2d2ULL, 0x0090900090009090ULL,
23362306a36Sopenharmony_ci	0x00f6f600f600f6f6ULL, 0x0007070007000707ULL, 0x00a7a700a700a7a7ULL,
23462306a36Sopenharmony_ci	0x0027270027002727ULL, 0x008e8e008e008e8eULL, 0x00b2b200b200b2b2ULL,
23562306a36Sopenharmony_ci	0x0049490049004949ULL, 0x00dede00de00dedeULL, 0x0043430043004343ULL,
23662306a36Sopenharmony_ci	0x005c5c005c005c5cULL, 0x00d7d700d700d7d7ULL, 0x00c7c700c700c7c7ULL,
23762306a36Sopenharmony_ci	0x003e3e003e003e3eULL, 0x00f5f500f500f5f5ULL, 0x008f8f008f008f8fULL,
23862306a36Sopenharmony_ci	0x0067670067006767ULL, 0x001f1f001f001f1fULL, 0x0018180018001818ULL,
23962306a36Sopenharmony_ci	0x006e6e006e006e6eULL, 0x00afaf00af00afafULL, 0x002f2f002f002f2fULL,
24062306a36Sopenharmony_ci	0x00e2e200e200e2e2ULL, 0x0085850085008585ULL, 0x000d0d000d000d0dULL,
24162306a36Sopenharmony_ci	0x0053530053005353ULL, 0x00f0f000f000f0f0ULL, 0x009c9c009c009c9cULL,
24262306a36Sopenharmony_ci	0x0065650065006565ULL, 0x00eaea00ea00eaeaULL, 0x00a3a300a300a3a3ULL,
24362306a36Sopenharmony_ci	0x00aeae00ae00aeaeULL, 0x009e9e009e009e9eULL, 0x00ecec00ec00ececULL,
24462306a36Sopenharmony_ci	0x0080800080008080ULL, 0x002d2d002d002d2dULL, 0x006b6b006b006b6bULL,
24562306a36Sopenharmony_ci	0x00a8a800a800a8a8ULL, 0x002b2b002b002b2bULL, 0x0036360036003636ULL,
24662306a36Sopenharmony_ci	0x00a6a600a600a6a6ULL, 0x00c5c500c500c5c5ULL, 0x0086860086008686ULL,
24762306a36Sopenharmony_ci	0x004d4d004d004d4dULL, 0x0033330033003333ULL, 0x00fdfd00fd00fdfdULL,
24862306a36Sopenharmony_ci	0x0066660066006666ULL, 0x0058580058005858ULL, 0x0096960096009696ULL,
24962306a36Sopenharmony_ci	0x003a3a003a003a3aULL, 0x0009090009000909ULL, 0x0095950095009595ULL,
25062306a36Sopenharmony_ci	0x0010100010001010ULL, 0x0078780078007878ULL, 0x00d8d800d800d8d8ULL,
25162306a36Sopenharmony_ci	0x0042420042004242ULL, 0x00cccc00cc00ccccULL, 0x00efef00ef00efefULL,
25262306a36Sopenharmony_ci	0x0026260026002626ULL, 0x00e5e500e500e5e5ULL, 0x0061610061006161ULL,
25362306a36Sopenharmony_ci	0x001a1a001a001a1aULL, 0x003f3f003f003f3fULL, 0x003b3b003b003b3bULL,
25462306a36Sopenharmony_ci	0x0082820082008282ULL, 0x00b6b600b600b6b6ULL, 0x00dbdb00db00dbdbULL,
25562306a36Sopenharmony_ci	0x00d4d400d400d4d4ULL, 0x0098980098009898ULL, 0x00e8e800e800e8e8ULL,
25662306a36Sopenharmony_ci	0x008b8b008b008b8bULL, 0x0002020002000202ULL, 0x00ebeb00eb00ebebULL,
25762306a36Sopenharmony_ci	0x000a0a000a000a0aULL, 0x002c2c002c002c2cULL, 0x001d1d001d001d1dULL,
25862306a36Sopenharmony_ci	0x00b0b000b000b0b0ULL, 0x006f6f006f006f6fULL, 0x008d8d008d008d8dULL,
25962306a36Sopenharmony_ci	0x0088880088008888ULL, 0x000e0e000e000e0eULL, 0x0019190019001919ULL,
26062306a36Sopenharmony_ci	0x0087870087008787ULL, 0x004e4e004e004e4eULL, 0x000b0b000b000b0bULL,
26162306a36Sopenharmony_ci	0x00a9a900a900a9a9ULL, 0x000c0c000c000c0cULL, 0x0079790079007979ULL,
26262306a36Sopenharmony_ci	0x0011110011001111ULL, 0x007f7f007f007f7fULL, 0x0022220022002222ULL,
26362306a36Sopenharmony_ci	0x00e7e700e700e7e7ULL, 0x0059590059005959ULL, 0x00e1e100e100e1e1ULL,
26462306a36Sopenharmony_ci	0x00dada00da00dadaULL, 0x003d3d003d003d3dULL, 0x00c8c800c800c8c8ULL,
26562306a36Sopenharmony_ci	0x0012120012001212ULL, 0x0004040004000404ULL, 0x0074740074007474ULL,
26662306a36Sopenharmony_ci	0x0054540054005454ULL, 0x0030300030003030ULL, 0x007e7e007e007e7eULL,
26762306a36Sopenharmony_ci	0x00b4b400b400b4b4ULL, 0x0028280028002828ULL, 0x0055550055005555ULL,
26862306a36Sopenharmony_ci	0x0068680068006868ULL, 0x0050500050005050ULL, 0x00bebe00be00bebeULL,
26962306a36Sopenharmony_ci	0x00d0d000d000d0d0ULL, 0x00c4c400c400c4c4ULL, 0x0031310031003131ULL,
27062306a36Sopenharmony_ci	0x00cbcb00cb00cbcbULL, 0x002a2a002a002a2aULL, 0x00adad00ad00adadULL,
27162306a36Sopenharmony_ci	0x000f0f000f000f0fULL, 0x00caca00ca00cacaULL, 0x0070700070007070ULL,
27262306a36Sopenharmony_ci	0x00ffff00ff00ffffULL, 0x0032320032003232ULL, 0x0069690069006969ULL,
27362306a36Sopenharmony_ci	0x0008080008000808ULL, 0x0062620062006262ULL, 0x0000000000000000ULL,
27462306a36Sopenharmony_ci	0x0024240024002424ULL, 0x00d1d100d100d1d1ULL, 0x00fbfb00fb00fbfbULL,
27562306a36Sopenharmony_ci	0x00baba00ba00babaULL, 0x00eded00ed00ededULL, 0x0045450045004545ULL,
27662306a36Sopenharmony_ci	0x0081810081008181ULL, 0x0073730073007373ULL, 0x006d6d006d006d6dULL,
27762306a36Sopenharmony_ci	0x0084840084008484ULL, 0x009f9f009f009f9fULL, 0x00eeee00ee00eeeeULL,
27862306a36Sopenharmony_ci	0x004a4a004a004a4aULL, 0x00c3c300c300c3c3ULL, 0x002e2e002e002e2eULL,
27962306a36Sopenharmony_ci	0x00c1c100c100c1c1ULL, 0x0001010001000101ULL, 0x00e6e600e600e6e6ULL,
28062306a36Sopenharmony_ci	0x0025250025002525ULL, 0x0048480048004848ULL, 0x0099990099009999ULL,
28162306a36Sopenharmony_ci	0x00b9b900b900b9b9ULL, 0x00b3b300b300b3b3ULL, 0x007b7b007b007b7bULL,
28262306a36Sopenharmony_ci	0x00f9f900f900f9f9ULL, 0x00cece00ce00ceceULL, 0x00bfbf00bf00bfbfULL,
28362306a36Sopenharmony_ci	0x00dfdf00df00dfdfULL, 0x0071710071007171ULL, 0x0029290029002929ULL,
28462306a36Sopenharmony_ci	0x00cdcd00cd00cdcdULL, 0x006c6c006c006c6cULL, 0x0013130013001313ULL,
28562306a36Sopenharmony_ci	0x0064640064006464ULL, 0x009b9b009b009b9bULL, 0x0063630063006363ULL,
28662306a36Sopenharmony_ci	0x009d9d009d009d9dULL, 0x00c0c000c000c0c0ULL, 0x004b4b004b004b4bULL,
28762306a36Sopenharmony_ci	0x00b7b700b700b7b7ULL, 0x00a5a500a500a5a5ULL, 0x0089890089008989ULL,
28862306a36Sopenharmony_ci	0x005f5f005f005f5fULL, 0x00b1b100b100b1b1ULL, 0x0017170017001717ULL,
28962306a36Sopenharmony_ci	0x00f4f400f400f4f4ULL, 0x00bcbc00bc00bcbcULL, 0x00d3d300d300d3d3ULL,
29062306a36Sopenharmony_ci	0x0046460046004646ULL, 0x00cfcf00cf00cfcfULL, 0x0037370037003737ULL,
29162306a36Sopenharmony_ci	0x005e5e005e005e5eULL, 0x0047470047004747ULL, 0x0094940094009494ULL,
29262306a36Sopenharmony_ci	0x00fafa00fa00fafaULL, 0x00fcfc00fc00fcfcULL, 0x005b5b005b005b5bULL,
29362306a36Sopenharmony_ci	0x0097970097009797ULL, 0x00fefe00fe00fefeULL, 0x005a5a005a005a5aULL,
29462306a36Sopenharmony_ci	0x00acac00ac00acacULL, 0x003c3c003c003c3cULL, 0x004c4c004c004c4cULL,
29562306a36Sopenharmony_ci	0x0003030003000303ULL, 0x0035350035003535ULL, 0x00f3f300f300f3f3ULL,
29662306a36Sopenharmony_ci	0x0023230023002323ULL, 0x00b8b800b800b8b8ULL, 0x005d5d005d005d5dULL,
29762306a36Sopenharmony_ci	0x006a6a006a006a6aULL, 0x0092920092009292ULL, 0x00d5d500d500d5d5ULL,
29862306a36Sopenharmony_ci	0x0021210021002121ULL, 0x0044440044004444ULL, 0x0051510051005151ULL,
29962306a36Sopenharmony_ci	0x00c6c600c600c6c6ULL, 0x007d7d007d007d7dULL, 0x0039390039003939ULL,
30062306a36Sopenharmony_ci	0x0083830083008383ULL, 0x00dcdc00dc00dcdcULL, 0x00aaaa00aa00aaaaULL,
30162306a36Sopenharmony_ci	0x007c7c007c007c7cULL, 0x0077770077007777ULL, 0x0056560056005656ULL,
30262306a36Sopenharmony_ci	0x0005050005000505ULL, 0x001b1b001b001b1bULL, 0x00a4a400a400a4a4ULL,
30362306a36Sopenharmony_ci	0x0015150015001515ULL, 0x0034340034003434ULL, 0x001e1e001e001e1eULL,
30462306a36Sopenharmony_ci	0x001c1c001c001c1cULL, 0x00f8f800f800f8f8ULL, 0x0052520052005252ULL,
30562306a36Sopenharmony_ci	0x0020200020002020ULL, 0x0014140014001414ULL, 0x00e9e900e900e9e9ULL,
30662306a36Sopenharmony_ci	0x00bdbd00bd00bdbdULL, 0x00dddd00dd00ddddULL, 0x00e4e400e400e4e4ULL,
30762306a36Sopenharmony_ci	0x00a1a100a100a1a1ULL, 0x00e0e000e000e0e0ULL, 0x008a8a008a008a8aULL,
30862306a36Sopenharmony_ci	0x00f1f100f100f1f1ULL, 0x00d6d600d600d6d6ULL, 0x007a7a007a007a7aULL,
30962306a36Sopenharmony_ci	0x00bbbb00bb00bbbbULL, 0x00e3e300e300e3e3ULL, 0x0040400040004040ULL,
31062306a36Sopenharmony_ci	0x004f4f004f004f4fULL,
31162306a36Sopenharmony_ci};
31262306a36Sopenharmony_ci
31362306a36Sopenharmony_ci__visible const u64 camellia_sp00444404[256] = {
31462306a36Sopenharmony_ci	0x0000707070700070ULL, 0x00002c2c2c2c002cULL, 0x0000b3b3b3b300b3ULL,
31562306a36Sopenharmony_ci	0x0000c0c0c0c000c0ULL, 0x0000e4e4e4e400e4ULL, 0x0000575757570057ULL,
31662306a36Sopenharmony_ci	0x0000eaeaeaea00eaULL, 0x0000aeaeaeae00aeULL, 0x0000232323230023ULL,
31762306a36Sopenharmony_ci	0x00006b6b6b6b006bULL, 0x0000454545450045ULL, 0x0000a5a5a5a500a5ULL,
31862306a36Sopenharmony_ci	0x0000edededed00edULL, 0x00004f4f4f4f004fULL, 0x00001d1d1d1d001dULL,
31962306a36Sopenharmony_ci	0x0000929292920092ULL, 0x0000868686860086ULL, 0x0000afafafaf00afULL,
32062306a36Sopenharmony_ci	0x00007c7c7c7c007cULL, 0x00001f1f1f1f001fULL, 0x00003e3e3e3e003eULL,
32162306a36Sopenharmony_ci	0x0000dcdcdcdc00dcULL, 0x00005e5e5e5e005eULL, 0x00000b0b0b0b000bULL,
32262306a36Sopenharmony_ci	0x0000a6a6a6a600a6ULL, 0x0000393939390039ULL, 0x0000d5d5d5d500d5ULL,
32362306a36Sopenharmony_ci	0x00005d5d5d5d005dULL, 0x0000d9d9d9d900d9ULL, 0x00005a5a5a5a005aULL,
32462306a36Sopenharmony_ci	0x0000515151510051ULL, 0x00006c6c6c6c006cULL, 0x00008b8b8b8b008bULL,
32562306a36Sopenharmony_ci	0x00009a9a9a9a009aULL, 0x0000fbfbfbfb00fbULL, 0x0000b0b0b0b000b0ULL,
32662306a36Sopenharmony_ci	0x0000747474740074ULL, 0x00002b2b2b2b002bULL, 0x0000f0f0f0f000f0ULL,
32762306a36Sopenharmony_ci	0x0000848484840084ULL, 0x0000dfdfdfdf00dfULL, 0x0000cbcbcbcb00cbULL,
32862306a36Sopenharmony_ci	0x0000343434340034ULL, 0x0000767676760076ULL, 0x00006d6d6d6d006dULL,
32962306a36Sopenharmony_ci	0x0000a9a9a9a900a9ULL, 0x0000d1d1d1d100d1ULL, 0x0000040404040004ULL,
33062306a36Sopenharmony_ci	0x0000141414140014ULL, 0x00003a3a3a3a003aULL, 0x0000dededede00deULL,
33162306a36Sopenharmony_ci	0x0000111111110011ULL, 0x0000323232320032ULL, 0x00009c9c9c9c009cULL,
33262306a36Sopenharmony_ci	0x0000535353530053ULL, 0x0000f2f2f2f200f2ULL, 0x0000fefefefe00feULL,
33362306a36Sopenharmony_ci	0x0000cfcfcfcf00cfULL, 0x0000c3c3c3c300c3ULL, 0x00007a7a7a7a007aULL,
33462306a36Sopenharmony_ci	0x0000242424240024ULL, 0x0000e8e8e8e800e8ULL, 0x0000606060600060ULL,
33562306a36Sopenharmony_ci	0x0000696969690069ULL, 0x0000aaaaaaaa00aaULL, 0x0000a0a0a0a000a0ULL,
33662306a36Sopenharmony_ci	0x0000a1a1a1a100a1ULL, 0x0000626262620062ULL, 0x0000545454540054ULL,
33762306a36Sopenharmony_ci	0x00001e1e1e1e001eULL, 0x0000e0e0e0e000e0ULL, 0x0000646464640064ULL,
33862306a36Sopenharmony_ci	0x0000101010100010ULL, 0x0000000000000000ULL, 0x0000a3a3a3a300a3ULL,
33962306a36Sopenharmony_ci	0x0000757575750075ULL, 0x00008a8a8a8a008aULL, 0x0000e6e6e6e600e6ULL,
34062306a36Sopenharmony_ci	0x0000090909090009ULL, 0x0000dddddddd00ddULL, 0x0000878787870087ULL,
34162306a36Sopenharmony_ci	0x0000838383830083ULL, 0x0000cdcdcdcd00cdULL, 0x0000909090900090ULL,
34262306a36Sopenharmony_ci	0x0000737373730073ULL, 0x0000f6f6f6f600f6ULL, 0x00009d9d9d9d009dULL,
34362306a36Sopenharmony_ci	0x0000bfbfbfbf00bfULL, 0x0000525252520052ULL, 0x0000d8d8d8d800d8ULL,
34462306a36Sopenharmony_ci	0x0000c8c8c8c800c8ULL, 0x0000c6c6c6c600c6ULL, 0x0000818181810081ULL,
34562306a36Sopenharmony_ci	0x00006f6f6f6f006fULL, 0x0000131313130013ULL, 0x0000636363630063ULL,
34662306a36Sopenharmony_ci	0x0000e9e9e9e900e9ULL, 0x0000a7a7a7a700a7ULL, 0x00009f9f9f9f009fULL,
34762306a36Sopenharmony_ci	0x0000bcbcbcbc00bcULL, 0x0000292929290029ULL, 0x0000f9f9f9f900f9ULL,
34862306a36Sopenharmony_ci	0x00002f2f2f2f002fULL, 0x0000b4b4b4b400b4ULL, 0x0000787878780078ULL,
34962306a36Sopenharmony_ci	0x0000060606060006ULL, 0x0000e7e7e7e700e7ULL, 0x0000717171710071ULL,
35062306a36Sopenharmony_ci	0x0000d4d4d4d400d4ULL, 0x0000abababab00abULL, 0x0000888888880088ULL,
35162306a36Sopenharmony_ci	0x00008d8d8d8d008dULL, 0x0000727272720072ULL, 0x0000b9b9b9b900b9ULL,
35262306a36Sopenharmony_ci	0x0000f8f8f8f800f8ULL, 0x0000acacacac00acULL, 0x0000363636360036ULL,
35362306a36Sopenharmony_ci	0x00002a2a2a2a002aULL, 0x00003c3c3c3c003cULL, 0x0000f1f1f1f100f1ULL,
35462306a36Sopenharmony_ci	0x0000404040400040ULL, 0x0000d3d3d3d300d3ULL, 0x0000bbbbbbbb00bbULL,
35562306a36Sopenharmony_ci	0x0000434343430043ULL, 0x0000151515150015ULL, 0x0000adadadad00adULL,
35662306a36Sopenharmony_ci	0x0000777777770077ULL, 0x0000808080800080ULL, 0x0000828282820082ULL,
35762306a36Sopenharmony_ci	0x0000ecececec00ecULL, 0x0000272727270027ULL, 0x0000e5e5e5e500e5ULL,
35862306a36Sopenharmony_ci	0x0000858585850085ULL, 0x0000353535350035ULL, 0x00000c0c0c0c000cULL,
35962306a36Sopenharmony_ci	0x0000414141410041ULL, 0x0000efefefef00efULL, 0x0000939393930093ULL,
36062306a36Sopenharmony_ci	0x0000191919190019ULL, 0x0000212121210021ULL, 0x00000e0e0e0e000eULL,
36162306a36Sopenharmony_ci	0x00004e4e4e4e004eULL, 0x0000656565650065ULL, 0x0000bdbdbdbd00bdULL,
36262306a36Sopenharmony_ci	0x0000b8b8b8b800b8ULL, 0x00008f8f8f8f008fULL, 0x0000ebebebeb00ebULL,
36362306a36Sopenharmony_ci	0x0000cececece00ceULL, 0x0000303030300030ULL, 0x00005f5f5f5f005fULL,
36462306a36Sopenharmony_ci	0x0000c5c5c5c500c5ULL, 0x00001a1a1a1a001aULL, 0x0000e1e1e1e100e1ULL,
36562306a36Sopenharmony_ci	0x0000cacacaca00caULL, 0x0000474747470047ULL, 0x00003d3d3d3d003dULL,
36662306a36Sopenharmony_ci	0x0000010101010001ULL, 0x0000d6d6d6d600d6ULL, 0x0000565656560056ULL,
36762306a36Sopenharmony_ci	0x00004d4d4d4d004dULL, 0x00000d0d0d0d000dULL, 0x0000666666660066ULL,
36862306a36Sopenharmony_ci	0x0000cccccccc00ccULL, 0x00002d2d2d2d002dULL, 0x0000121212120012ULL,
36962306a36Sopenharmony_ci	0x0000202020200020ULL, 0x0000b1b1b1b100b1ULL, 0x0000999999990099ULL,
37062306a36Sopenharmony_ci	0x00004c4c4c4c004cULL, 0x0000c2c2c2c200c2ULL, 0x00007e7e7e7e007eULL,
37162306a36Sopenharmony_ci	0x0000050505050005ULL, 0x0000b7b7b7b700b7ULL, 0x0000313131310031ULL,
37262306a36Sopenharmony_ci	0x0000171717170017ULL, 0x0000d7d7d7d700d7ULL, 0x0000585858580058ULL,
37362306a36Sopenharmony_ci	0x0000616161610061ULL, 0x00001b1b1b1b001bULL, 0x00001c1c1c1c001cULL,
37462306a36Sopenharmony_ci	0x00000f0f0f0f000fULL, 0x0000161616160016ULL, 0x0000181818180018ULL,
37562306a36Sopenharmony_ci	0x0000222222220022ULL, 0x0000444444440044ULL, 0x0000b2b2b2b200b2ULL,
37662306a36Sopenharmony_ci	0x0000b5b5b5b500b5ULL, 0x0000919191910091ULL, 0x0000080808080008ULL,
37762306a36Sopenharmony_ci	0x0000a8a8a8a800a8ULL, 0x0000fcfcfcfc00fcULL, 0x0000505050500050ULL,
37862306a36Sopenharmony_ci	0x0000d0d0d0d000d0ULL, 0x00007d7d7d7d007dULL, 0x0000898989890089ULL,
37962306a36Sopenharmony_ci	0x0000979797970097ULL, 0x00005b5b5b5b005bULL, 0x0000959595950095ULL,
38062306a36Sopenharmony_ci	0x0000ffffffff00ffULL, 0x0000d2d2d2d200d2ULL, 0x0000c4c4c4c400c4ULL,
38162306a36Sopenharmony_ci	0x0000484848480048ULL, 0x0000f7f7f7f700f7ULL, 0x0000dbdbdbdb00dbULL,
38262306a36Sopenharmony_ci	0x0000030303030003ULL, 0x0000dadadada00daULL, 0x00003f3f3f3f003fULL,
38362306a36Sopenharmony_ci	0x0000949494940094ULL, 0x00005c5c5c5c005cULL, 0x0000020202020002ULL,
38462306a36Sopenharmony_ci	0x00004a4a4a4a004aULL, 0x0000333333330033ULL, 0x0000676767670067ULL,
38562306a36Sopenharmony_ci	0x0000f3f3f3f300f3ULL, 0x00007f7f7f7f007fULL, 0x0000e2e2e2e200e2ULL,
38662306a36Sopenharmony_ci	0x00009b9b9b9b009bULL, 0x0000262626260026ULL, 0x0000373737370037ULL,
38762306a36Sopenharmony_ci	0x00003b3b3b3b003bULL, 0x0000969696960096ULL, 0x00004b4b4b4b004bULL,
38862306a36Sopenharmony_ci	0x0000bebebebe00beULL, 0x00002e2e2e2e002eULL, 0x0000797979790079ULL,
38962306a36Sopenharmony_ci	0x00008c8c8c8c008cULL, 0x00006e6e6e6e006eULL, 0x00008e8e8e8e008eULL,
39062306a36Sopenharmony_ci	0x0000f5f5f5f500f5ULL, 0x0000b6b6b6b600b6ULL, 0x0000fdfdfdfd00fdULL,
39162306a36Sopenharmony_ci	0x0000595959590059ULL, 0x0000989898980098ULL, 0x00006a6a6a6a006aULL,
39262306a36Sopenharmony_ci	0x0000464646460046ULL, 0x0000babababa00baULL, 0x0000252525250025ULL,
39362306a36Sopenharmony_ci	0x0000424242420042ULL, 0x0000a2a2a2a200a2ULL, 0x0000fafafafa00faULL,
39462306a36Sopenharmony_ci	0x0000070707070007ULL, 0x0000555555550055ULL, 0x0000eeeeeeee00eeULL,
39562306a36Sopenharmony_ci	0x00000a0a0a0a000aULL, 0x0000494949490049ULL, 0x0000686868680068ULL,
39662306a36Sopenharmony_ci	0x0000383838380038ULL, 0x0000a4a4a4a400a4ULL, 0x0000282828280028ULL,
39762306a36Sopenharmony_ci	0x00007b7b7b7b007bULL, 0x0000c9c9c9c900c9ULL, 0x0000c1c1c1c100c1ULL,
39862306a36Sopenharmony_ci	0x0000e3e3e3e300e3ULL, 0x0000f4f4f4f400f4ULL, 0x0000c7c7c7c700c7ULL,
39962306a36Sopenharmony_ci	0x00009e9e9e9e009eULL,
40062306a36Sopenharmony_ci};
40162306a36Sopenharmony_ci
40262306a36Sopenharmony_ci__visible const u64 camellia_sp02220222[256] = {
40362306a36Sopenharmony_ci	0x00e0e0e000e0e0e0ULL, 0x0005050500050505ULL, 0x0058585800585858ULL,
40462306a36Sopenharmony_ci	0x00d9d9d900d9d9d9ULL, 0x0067676700676767ULL, 0x004e4e4e004e4e4eULL,
40562306a36Sopenharmony_ci	0x0081818100818181ULL, 0x00cbcbcb00cbcbcbULL, 0x00c9c9c900c9c9c9ULL,
40662306a36Sopenharmony_ci	0x000b0b0b000b0b0bULL, 0x00aeaeae00aeaeaeULL, 0x006a6a6a006a6a6aULL,
40762306a36Sopenharmony_ci	0x00d5d5d500d5d5d5ULL, 0x0018181800181818ULL, 0x005d5d5d005d5d5dULL,
40862306a36Sopenharmony_ci	0x0082828200828282ULL, 0x0046464600464646ULL, 0x00dfdfdf00dfdfdfULL,
40962306a36Sopenharmony_ci	0x00d6d6d600d6d6d6ULL, 0x0027272700272727ULL, 0x008a8a8a008a8a8aULL,
41062306a36Sopenharmony_ci	0x0032323200323232ULL, 0x004b4b4b004b4b4bULL, 0x0042424200424242ULL,
41162306a36Sopenharmony_ci	0x00dbdbdb00dbdbdbULL, 0x001c1c1c001c1c1cULL, 0x009e9e9e009e9e9eULL,
41262306a36Sopenharmony_ci	0x009c9c9c009c9c9cULL, 0x003a3a3a003a3a3aULL, 0x00cacaca00cacacaULL,
41362306a36Sopenharmony_ci	0x0025252500252525ULL, 0x007b7b7b007b7b7bULL, 0x000d0d0d000d0d0dULL,
41462306a36Sopenharmony_ci	0x0071717100717171ULL, 0x005f5f5f005f5f5fULL, 0x001f1f1f001f1f1fULL,
41562306a36Sopenharmony_ci	0x00f8f8f800f8f8f8ULL, 0x00d7d7d700d7d7d7ULL, 0x003e3e3e003e3e3eULL,
41662306a36Sopenharmony_ci	0x009d9d9d009d9d9dULL, 0x007c7c7c007c7c7cULL, 0x0060606000606060ULL,
41762306a36Sopenharmony_ci	0x00b9b9b900b9b9b9ULL, 0x00bebebe00bebebeULL, 0x00bcbcbc00bcbcbcULL,
41862306a36Sopenharmony_ci	0x008b8b8b008b8b8bULL, 0x0016161600161616ULL, 0x0034343400343434ULL,
41962306a36Sopenharmony_ci	0x004d4d4d004d4d4dULL, 0x00c3c3c300c3c3c3ULL, 0x0072727200727272ULL,
42062306a36Sopenharmony_ci	0x0095959500959595ULL, 0x00ababab00abababULL, 0x008e8e8e008e8e8eULL,
42162306a36Sopenharmony_ci	0x00bababa00bababaULL, 0x007a7a7a007a7a7aULL, 0x00b3b3b300b3b3b3ULL,
42262306a36Sopenharmony_ci	0x0002020200020202ULL, 0x00b4b4b400b4b4b4ULL, 0x00adadad00adadadULL,
42362306a36Sopenharmony_ci	0x00a2a2a200a2a2a2ULL, 0x00acacac00acacacULL, 0x00d8d8d800d8d8d8ULL,
42462306a36Sopenharmony_ci	0x009a9a9a009a9a9aULL, 0x0017171700171717ULL, 0x001a1a1a001a1a1aULL,
42562306a36Sopenharmony_ci	0x0035353500353535ULL, 0x00cccccc00ccccccULL, 0x00f7f7f700f7f7f7ULL,
42662306a36Sopenharmony_ci	0x0099999900999999ULL, 0x0061616100616161ULL, 0x005a5a5a005a5a5aULL,
42762306a36Sopenharmony_ci	0x00e8e8e800e8e8e8ULL, 0x0024242400242424ULL, 0x0056565600565656ULL,
42862306a36Sopenharmony_ci	0x0040404000404040ULL, 0x00e1e1e100e1e1e1ULL, 0x0063636300636363ULL,
42962306a36Sopenharmony_ci	0x0009090900090909ULL, 0x0033333300333333ULL, 0x00bfbfbf00bfbfbfULL,
43062306a36Sopenharmony_ci	0x0098989800989898ULL, 0x0097979700979797ULL, 0x0085858500858585ULL,
43162306a36Sopenharmony_ci	0x0068686800686868ULL, 0x00fcfcfc00fcfcfcULL, 0x00ececec00ecececULL,
43262306a36Sopenharmony_ci	0x000a0a0a000a0a0aULL, 0x00dadada00dadadaULL, 0x006f6f6f006f6f6fULL,
43362306a36Sopenharmony_ci	0x0053535300535353ULL, 0x0062626200626262ULL, 0x00a3a3a300a3a3a3ULL,
43462306a36Sopenharmony_ci	0x002e2e2e002e2e2eULL, 0x0008080800080808ULL, 0x00afafaf00afafafULL,
43562306a36Sopenharmony_ci	0x0028282800282828ULL, 0x00b0b0b000b0b0b0ULL, 0x0074747400747474ULL,
43662306a36Sopenharmony_ci	0x00c2c2c200c2c2c2ULL, 0x00bdbdbd00bdbdbdULL, 0x0036363600363636ULL,
43762306a36Sopenharmony_ci	0x0022222200222222ULL, 0x0038383800383838ULL, 0x0064646400646464ULL,
43862306a36Sopenharmony_ci	0x001e1e1e001e1e1eULL, 0x0039393900393939ULL, 0x002c2c2c002c2c2cULL,
43962306a36Sopenharmony_ci	0x00a6a6a600a6a6a6ULL, 0x0030303000303030ULL, 0x00e5e5e500e5e5e5ULL,
44062306a36Sopenharmony_ci	0x0044444400444444ULL, 0x00fdfdfd00fdfdfdULL, 0x0088888800888888ULL,
44162306a36Sopenharmony_ci	0x009f9f9f009f9f9fULL, 0x0065656500656565ULL, 0x0087878700878787ULL,
44262306a36Sopenharmony_ci	0x006b6b6b006b6b6bULL, 0x00f4f4f400f4f4f4ULL, 0x0023232300232323ULL,
44362306a36Sopenharmony_ci	0x0048484800484848ULL, 0x0010101000101010ULL, 0x00d1d1d100d1d1d1ULL,
44462306a36Sopenharmony_ci	0x0051515100515151ULL, 0x00c0c0c000c0c0c0ULL, 0x00f9f9f900f9f9f9ULL,
44562306a36Sopenharmony_ci	0x00d2d2d200d2d2d2ULL, 0x00a0a0a000a0a0a0ULL, 0x0055555500555555ULL,
44662306a36Sopenharmony_ci	0x00a1a1a100a1a1a1ULL, 0x0041414100414141ULL, 0x00fafafa00fafafaULL,
44762306a36Sopenharmony_ci	0x0043434300434343ULL, 0x0013131300131313ULL, 0x00c4c4c400c4c4c4ULL,
44862306a36Sopenharmony_ci	0x002f2f2f002f2f2fULL, 0x00a8a8a800a8a8a8ULL, 0x00b6b6b600b6b6b6ULL,
44962306a36Sopenharmony_ci	0x003c3c3c003c3c3cULL, 0x002b2b2b002b2b2bULL, 0x00c1c1c100c1c1c1ULL,
45062306a36Sopenharmony_ci	0x00ffffff00ffffffULL, 0x00c8c8c800c8c8c8ULL, 0x00a5a5a500a5a5a5ULL,
45162306a36Sopenharmony_ci	0x0020202000202020ULL, 0x0089898900898989ULL, 0x0000000000000000ULL,
45262306a36Sopenharmony_ci	0x0090909000909090ULL, 0x0047474700474747ULL, 0x00efefef00efefefULL,
45362306a36Sopenharmony_ci	0x00eaeaea00eaeaeaULL, 0x00b7b7b700b7b7b7ULL, 0x0015151500151515ULL,
45462306a36Sopenharmony_ci	0x0006060600060606ULL, 0x00cdcdcd00cdcdcdULL, 0x00b5b5b500b5b5b5ULL,
45562306a36Sopenharmony_ci	0x0012121200121212ULL, 0x007e7e7e007e7e7eULL, 0x00bbbbbb00bbbbbbULL,
45662306a36Sopenharmony_ci	0x0029292900292929ULL, 0x000f0f0f000f0f0fULL, 0x00b8b8b800b8b8b8ULL,
45762306a36Sopenharmony_ci	0x0007070700070707ULL, 0x0004040400040404ULL, 0x009b9b9b009b9b9bULL,
45862306a36Sopenharmony_ci	0x0094949400949494ULL, 0x0021212100212121ULL, 0x0066666600666666ULL,
45962306a36Sopenharmony_ci	0x00e6e6e600e6e6e6ULL, 0x00cecece00cececeULL, 0x00ededed00edededULL,
46062306a36Sopenharmony_ci	0x00e7e7e700e7e7e7ULL, 0x003b3b3b003b3b3bULL, 0x00fefefe00fefefeULL,
46162306a36Sopenharmony_ci	0x007f7f7f007f7f7fULL, 0x00c5c5c500c5c5c5ULL, 0x00a4a4a400a4a4a4ULL,
46262306a36Sopenharmony_ci	0x0037373700373737ULL, 0x00b1b1b100b1b1b1ULL, 0x004c4c4c004c4c4cULL,
46362306a36Sopenharmony_ci	0x0091919100919191ULL, 0x006e6e6e006e6e6eULL, 0x008d8d8d008d8d8dULL,
46462306a36Sopenharmony_ci	0x0076767600767676ULL, 0x0003030300030303ULL, 0x002d2d2d002d2d2dULL,
46562306a36Sopenharmony_ci	0x00dedede00dededeULL, 0x0096969600969696ULL, 0x0026262600262626ULL,
46662306a36Sopenharmony_ci	0x007d7d7d007d7d7dULL, 0x00c6c6c600c6c6c6ULL, 0x005c5c5c005c5c5cULL,
46762306a36Sopenharmony_ci	0x00d3d3d300d3d3d3ULL, 0x00f2f2f200f2f2f2ULL, 0x004f4f4f004f4f4fULL,
46862306a36Sopenharmony_ci	0x0019191900191919ULL, 0x003f3f3f003f3f3fULL, 0x00dcdcdc00dcdcdcULL,
46962306a36Sopenharmony_ci	0x0079797900797979ULL, 0x001d1d1d001d1d1dULL, 0x0052525200525252ULL,
47062306a36Sopenharmony_ci	0x00ebebeb00ebebebULL, 0x00f3f3f300f3f3f3ULL, 0x006d6d6d006d6d6dULL,
47162306a36Sopenharmony_ci	0x005e5e5e005e5e5eULL, 0x00fbfbfb00fbfbfbULL, 0x0069696900696969ULL,
47262306a36Sopenharmony_ci	0x00b2b2b200b2b2b2ULL, 0x00f0f0f000f0f0f0ULL, 0x0031313100313131ULL,
47362306a36Sopenharmony_ci	0x000c0c0c000c0c0cULL, 0x00d4d4d400d4d4d4ULL, 0x00cfcfcf00cfcfcfULL,
47462306a36Sopenharmony_ci	0x008c8c8c008c8c8cULL, 0x00e2e2e200e2e2e2ULL, 0x0075757500757575ULL,
47562306a36Sopenharmony_ci	0x00a9a9a900a9a9a9ULL, 0x004a4a4a004a4a4aULL, 0x0057575700575757ULL,
47662306a36Sopenharmony_ci	0x0084848400848484ULL, 0x0011111100111111ULL, 0x0045454500454545ULL,
47762306a36Sopenharmony_ci	0x001b1b1b001b1b1bULL, 0x00f5f5f500f5f5f5ULL, 0x00e4e4e400e4e4e4ULL,
47862306a36Sopenharmony_ci	0x000e0e0e000e0e0eULL, 0x0073737300737373ULL, 0x00aaaaaa00aaaaaaULL,
47962306a36Sopenharmony_ci	0x00f1f1f100f1f1f1ULL, 0x00dddddd00ddddddULL, 0x0059595900595959ULL,
48062306a36Sopenharmony_ci	0x0014141400141414ULL, 0x006c6c6c006c6c6cULL, 0x0092929200929292ULL,
48162306a36Sopenharmony_ci	0x0054545400545454ULL, 0x00d0d0d000d0d0d0ULL, 0x0078787800787878ULL,
48262306a36Sopenharmony_ci	0x0070707000707070ULL, 0x00e3e3e300e3e3e3ULL, 0x0049494900494949ULL,
48362306a36Sopenharmony_ci	0x0080808000808080ULL, 0x0050505000505050ULL, 0x00a7a7a700a7a7a7ULL,
48462306a36Sopenharmony_ci	0x00f6f6f600f6f6f6ULL, 0x0077777700777777ULL, 0x0093939300939393ULL,
48562306a36Sopenharmony_ci	0x0086868600868686ULL, 0x0083838300838383ULL, 0x002a2a2a002a2a2aULL,
48662306a36Sopenharmony_ci	0x00c7c7c700c7c7c7ULL, 0x005b5b5b005b5b5bULL, 0x00e9e9e900e9e9e9ULL,
48762306a36Sopenharmony_ci	0x00eeeeee00eeeeeeULL, 0x008f8f8f008f8f8fULL, 0x0001010100010101ULL,
48862306a36Sopenharmony_ci	0x003d3d3d003d3d3dULL,
48962306a36Sopenharmony_ci};
49062306a36Sopenharmony_ci
49162306a36Sopenharmony_ci__visible const u64 camellia_sp30333033[256] = {
49262306a36Sopenharmony_ci	0x3800383838003838ULL, 0x4100414141004141ULL, 0x1600161616001616ULL,
49362306a36Sopenharmony_ci	0x7600767676007676ULL, 0xd900d9d9d900d9d9ULL, 0x9300939393009393ULL,
49462306a36Sopenharmony_ci	0x6000606060006060ULL, 0xf200f2f2f200f2f2ULL, 0x7200727272007272ULL,
49562306a36Sopenharmony_ci	0xc200c2c2c200c2c2ULL, 0xab00ababab00ababULL, 0x9a009a9a9a009a9aULL,
49662306a36Sopenharmony_ci	0x7500757575007575ULL, 0x0600060606000606ULL, 0x5700575757005757ULL,
49762306a36Sopenharmony_ci	0xa000a0a0a000a0a0ULL, 0x9100919191009191ULL, 0xf700f7f7f700f7f7ULL,
49862306a36Sopenharmony_ci	0xb500b5b5b500b5b5ULL, 0xc900c9c9c900c9c9ULL, 0xa200a2a2a200a2a2ULL,
49962306a36Sopenharmony_ci	0x8c008c8c8c008c8cULL, 0xd200d2d2d200d2d2ULL, 0x9000909090009090ULL,
50062306a36Sopenharmony_ci	0xf600f6f6f600f6f6ULL, 0x0700070707000707ULL, 0xa700a7a7a700a7a7ULL,
50162306a36Sopenharmony_ci	0x2700272727002727ULL, 0x8e008e8e8e008e8eULL, 0xb200b2b2b200b2b2ULL,
50262306a36Sopenharmony_ci	0x4900494949004949ULL, 0xde00dedede00dedeULL, 0x4300434343004343ULL,
50362306a36Sopenharmony_ci	0x5c005c5c5c005c5cULL, 0xd700d7d7d700d7d7ULL, 0xc700c7c7c700c7c7ULL,
50462306a36Sopenharmony_ci	0x3e003e3e3e003e3eULL, 0xf500f5f5f500f5f5ULL, 0x8f008f8f8f008f8fULL,
50562306a36Sopenharmony_ci	0x6700676767006767ULL, 0x1f001f1f1f001f1fULL, 0x1800181818001818ULL,
50662306a36Sopenharmony_ci	0x6e006e6e6e006e6eULL, 0xaf00afafaf00afafULL, 0x2f002f2f2f002f2fULL,
50762306a36Sopenharmony_ci	0xe200e2e2e200e2e2ULL, 0x8500858585008585ULL, 0x0d000d0d0d000d0dULL,
50862306a36Sopenharmony_ci	0x5300535353005353ULL, 0xf000f0f0f000f0f0ULL, 0x9c009c9c9c009c9cULL,
50962306a36Sopenharmony_ci	0x6500656565006565ULL, 0xea00eaeaea00eaeaULL, 0xa300a3a3a300a3a3ULL,
51062306a36Sopenharmony_ci	0xae00aeaeae00aeaeULL, 0x9e009e9e9e009e9eULL, 0xec00ececec00ececULL,
51162306a36Sopenharmony_ci	0x8000808080008080ULL, 0x2d002d2d2d002d2dULL, 0x6b006b6b6b006b6bULL,
51262306a36Sopenharmony_ci	0xa800a8a8a800a8a8ULL, 0x2b002b2b2b002b2bULL, 0x3600363636003636ULL,
51362306a36Sopenharmony_ci	0xa600a6a6a600a6a6ULL, 0xc500c5c5c500c5c5ULL, 0x8600868686008686ULL,
51462306a36Sopenharmony_ci	0x4d004d4d4d004d4dULL, 0x3300333333003333ULL, 0xfd00fdfdfd00fdfdULL,
51562306a36Sopenharmony_ci	0x6600666666006666ULL, 0x5800585858005858ULL, 0x9600969696009696ULL,
51662306a36Sopenharmony_ci	0x3a003a3a3a003a3aULL, 0x0900090909000909ULL, 0x9500959595009595ULL,
51762306a36Sopenharmony_ci	0x1000101010001010ULL, 0x7800787878007878ULL, 0xd800d8d8d800d8d8ULL,
51862306a36Sopenharmony_ci	0x4200424242004242ULL, 0xcc00cccccc00ccccULL, 0xef00efefef00efefULL,
51962306a36Sopenharmony_ci	0x2600262626002626ULL, 0xe500e5e5e500e5e5ULL, 0x6100616161006161ULL,
52062306a36Sopenharmony_ci	0x1a001a1a1a001a1aULL, 0x3f003f3f3f003f3fULL, 0x3b003b3b3b003b3bULL,
52162306a36Sopenharmony_ci	0x8200828282008282ULL, 0xb600b6b6b600b6b6ULL, 0xdb00dbdbdb00dbdbULL,
52262306a36Sopenharmony_ci	0xd400d4d4d400d4d4ULL, 0x9800989898009898ULL, 0xe800e8e8e800e8e8ULL,
52362306a36Sopenharmony_ci	0x8b008b8b8b008b8bULL, 0x0200020202000202ULL, 0xeb00ebebeb00ebebULL,
52462306a36Sopenharmony_ci	0x0a000a0a0a000a0aULL, 0x2c002c2c2c002c2cULL, 0x1d001d1d1d001d1dULL,
52562306a36Sopenharmony_ci	0xb000b0b0b000b0b0ULL, 0x6f006f6f6f006f6fULL, 0x8d008d8d8d008d8dULL,
52662306a36Sopenharmony_ci	0x8800888888008888ULL, 0x0e000e0e0e000e0eULL, 0x1900191919001919ULL,
52762306a36Sopenharmony_ci	0x8700878787008787ULL, 0x4e004e4e4e004e4eULL, 0x0b000b0b0b000b0bULL,
52862306a36Sopenharmony_ci	0xa900a9a9a900a9a9ULL, 0x0c000c0c0c000c0cULL, 0x7900797979007979ULL,
52962306a36Sopenharmony_ci	0x1100111111001111ULL, 0x7f007f7f7f007f7fULL, 0x2200222222002222ULL,
53062306a36Sopenharmony_ci	0xe700e7e7e700e7e7ULL, 0x5900595959005959ULL, 0xe100e1e1e100e1e1ULL,
53162306a36Sopenharmony_ci	0xda00dadada00dadaULL, 0x3d003d3d3d003d3dULL, 0xc800c8c8c800c8c8ULL,
53262306a36Sopenharmony_ci	0x1200121212001212ULL, 0x0400040404000404ULL, 0x7400747474007474ULL,
53362306a36Sopenharmony_ci	0x5400545454005454ULL, 0x3000303030003030ULL, 0x7e007e7e7e007e7eULL,
53462306a36Sopenharmony_ci	0xb400b4b4b400b4b4ULL, 0x2800282828002828ULL, 0x5500555555005555ULL,
53562306a36Sopenharmony_ci	0x6800686868006868ULL, 0x5000505050005050ULL, 0xbe00bebebe00bebeULL,
53662306a36Sopenharmony_ci	0xd000d0d0d000d0d0ULL, 0xc400c4c4c400c4c4ULL, 0x3100313131003131ULL,
53762306a36Sopenharmony_ci	0xcb00cbcbcb00cbcbULL, 0x2a002a2a2a002a2aULL, 0xad00adadad00adadULL,
53862306a36Sopenharmony_ci	0x0f000f0f0f000f0fULL, 0xca00cacaca00cacaULL, 0x7000707070007070ULL,
53962306a36Sopenharmony_ci	0xff00ffffff00ffffULL, 0x3200323232003232ULL, 0x6900696969006969ULL,
54062306a36Sopenharmony_ci	0x0800080808000808ULL, 0x6200626262006262ULL, 0x0000000000000000ULL,
54162306a36Sopenharmony_ci	0x2400242424002424ULL, 0xd100d1d1d100d1d1ULL, 0xfb00fbfbfb00fbfbULL,
54262306a36Sopenharmony_ci	0xba00bababa00babaULL, 0xed00ededed00ededULL, 0x4500454545004545ULL,
54362306a36Sopenharmony_ci	0x8100818181008181ULL, 0x7300737373007373ULL, 0x6d006d6d6d006d6dULL,
54462306a36Sopenharmony_ci	0x8400848484008484ULL, 0x9f009f9f9f009f9fULL, 0xee00eeeeee00eeeeULL,
54562306a36Sopenharmony_ci	0x4a004a4a4a004a4aULL, 0xc300c3c3c300c3c3ULL, 0x2e002e2e2e002e2eULL,
54662306a36Sopenharmony_ci	0xc100c1c1c100c1c1ULL, 0x0100010101000101ULL, 0xe600e6e6e600e6e6ULL,
54762306a36Sopenharmony_ci	0x2500252525002525ULL, 0x4800484848004848ULL, 0x9900999999009999ULL,
54862306a36Sopenharmony_ci	0xb900b9b9b900b9b9ULL, 0xb300b3b3b300b3b3ULL, 0x7b007b7b7b007b7bULL,
54962306a36Sopenharmony_ci	0xf900f9f9f900f9f9ULL, 0xce00cecece00ceceULL, 0xbf00bfbfbf00bfbfULL,
55062306a36Sopenharmony_ci	0xdf00dfdfdf00dfdfULL, 0x7100717171007171ULL, 0x2900292929002929ULL,
55162306a36Sopenharmony_ci	0xcd00cdcdcd00cdcdULL, 0x6c006c6c6c006c6cULL, 0x1300131313001313ULL,
55262306a36Sopenharmony_ci	0x6400646464006464ULL, 0x9b009b9b9b009b9bULL, 0x6300636363006363ULL,
55362306a36Sopenharmony_ci	0x9d009d9d9d009d9dULL, 0xc000c0c0c000c0c0ULL, 0x4b004b4b4b004b4bULL,
55462306a36Sopenharmony_ci	0xb700b7b7b700b7b7ULL, 0xa500a5a5a500a5a5ULL, 0x8900898989008989ULL,
55562306a36Sopenharmony_ci	0x5f005f5f5f005f5fULL, 0xb100b1b1b100b1b1ULL, 0x1700171717001717ULL,
55662306a36Sopenharmony_ci	0xf400f4f4f400f4f4ULL, 0xbc00bcbcbc00bcbcULL, 0xd300d3d3d300d3d3ULL,
55762306a36Sopenharmony_ci	0x4600464646004646ULL, 0xcf00cfcfcf00cfcfULL, 0x3700373737003737ULL,
55862306a36Sopenharmony_ci	0x5e005e5e5e005e5eULL, 0x4700474747004747ULL, 0x9400949494009494ULL,
55962306a36Sopenharmony_ci	0xfa00fafafa00fafaULL, 0xfc00fcfcfc00fcfcULL, 0x5b005b5b5b005b5bULL,
56062306a36Sopenharmony_ci	0x9700979797009797ULL, 0xfe00fefefe00fefeULL, 0x5a005a5a5a005a5aULL,
56162306a36Sopenharmony_ci	0xac00acacac00acacULL, 0x3c003c3c3c003c3cULL, 0x4c004c4c4c004c4cULL,
56262306a36Sopenharmony_ci	0x0300030303000303ULL, 0x3500353535003535ULL, 0xf300f3f3f300f3f3ULL,
56362306a36Sopenharmony_ci	0x2300232323002323ULL, 0xb800b8b8b800b8b8ULL, 0x5d005d5d5d005d5dULL,
56462306a36Sopenharmony_ci	0x6a006a6a6a006a6aULL, 0x9200929292009292ULL, 0xd500d5d5d500d5d5ULL,
56562306a36Sopenharmony_ci	0x2100212121002121ULL, 0x4400444444004444ULL, 0x5100515151005151ULL,
56662306a36Sopenharmony_ci	0xc600c6c6c600c6c6ULL, 0x7d007d7d7d007d7dULL, 0x3900393939003939ULL,
56762306a36Sopenharmony_ci	0x8300838383008383ULL, 0xdc00dcdcdc00dcdcULL, 0xaa00aaaaaa00aaaaULL,
56862306a36Sopenharmony_ci	0x7c007c7c7c007c7cULL, 0x7700777777007777ULL, 0x5600565656005656ULL,
56962306a36Sopenharmony_ci	0x0500050505000505ULL, 0x1b001b1b1b001b1bULL, 0xa400a4a4a400a4a4ULL,
57062306a36Sopenharmony_ci	0x1500151515001515ULL, 0x3400343434003434ULL, 0x1e001e1e1e001e1eULL,
57162306a36Sopenharmony_ci	0x1c001c1c1c001c1cULL, 0xf800f8f8f800f8f8ULL, 0x5200525252005252ULL,
57262306a36Sopenharmony_ci	0x2000202020002020ULL, 0x1400141414001414ULL, 0xe900e9e9e900e9e9ULL,
57362306a36Sopenharmony_ci	0xbd00bdbdbd00bdbdULL, 0xdd00dddddd00ddddULL, 0xe400e4e4e400e4e4ULL,
57462306a36Sopenharmony_ci	0xa100a1a1a100a1a1ULL, 0xe000e0e0e000e0e0ULL, 0x8a008a8a8a008a8aULL,
57562306a36Sopenharmony_ci	0xf100f1f1f100f1f1ULL, 0xd600d6d6d600d6d6ULL, 0x7a007a7a7a007a7aULL,
57662306a36Sopenharmony_ci	0xbb00bbbbbb00bbbbULL, 0xe300e3e3e300e3e3ULL, 0x4000404040004040ULL,
57762306a36Sopenharmony_ci	0x4f004f4f4f004f4fULL,
57862306a36Sopenharmony_ci};
57962306a36Sopenharmony_ci
58062306a36Sopenharmony_ci__visible const u64 camellia_sp44044404[256] = {
58162306a36Sopenharmony_ci	0x7070007070700070ULL, 0x2c2c002c2c2c002cULL, 0xb3b300b3b3b300b3ULL,
58262306a36Sopenharmony_ci	0xc0c000c0c0c000c0ULL, 0xe4e400e4e4e400e4ULL, 0x5757005757570057ULL,
58362306a36Sopenharmony_ci	0xeaea00eaeaea00eaULL, 0xaeae00aeaeae00aeULL, 0x2323002323230023ULL,
58462306a36Sopenharmony_ci	0x6b6b006b6b6b006bULL, 0x4545004545450045ULL, 0xa5a500a5a5a500a5ULL,
58562306a36Sopenharmony_ci	0xeded00ededed00edULL, 0x4f4f004f4f4f004fULL, 0x1d1d001d1d1d001dULL,
58662306a36Sopenharmony_ci	0x9292009292920092ULL, 0x8686008686860086ULL, 0xafaf00afafaf00afULL,
58762306a36Sopenharmony_ci	0x7c7c007c7c7c007cULL, 0x1f1f001f1f1f001fULL, 0x3e3e003e3e3e003eULL,
58862306a36Sopenharmony_ci	0xdcdc00dcdcdc00dcULL, 0x5e5e005e5e5e005eULL, 0x0b0b000b0b0b000bULL,
58962306a36Sopenharmony_ci	0xa6a600a6a6a600a6ULL, 0x3939003939390039ULL, 0xd5d500d5d5d500d5ULL,
59062306a36Sopenharmony_ci	0x5d5d005d5d5d005dULL, 0xd9d900d9d9d900d9ULL, 0x5a5a005a5a5a005aULL,
59162306a36Sopenharmony_ci	0x5151005151510051ULL, 0x6c6c006c6c6c006cULL, 0x8b8b008b8b8b008bULL,
59262306a36Sopenharmony_ci	0x9a9a009a9a9a009aULL, 0xfbfb00fbfbfb00fbULL, 0xb0b000b0b0b000b0ULL,
59362306a36Sopenharmony_ci	0x7474007474740074ULL, 0x2b2b002b2b2b002bULL, 0xf0f000f0f0f000f0ULL,
59462306a36Sopenharmony_ci	0x8484008484840084ULL, 0xdfdf00dfdfdf00dfULL, 0xcbcb00cbcbcb00cbULL,
59562306a36Sopenharmony_ci	0x3434003434340034ULL, 0x7676007676760076ULL, 0x6d6d006d6d6d006dULL,
59662306a36Sopenharmony_ci	0xa9a900a9a9a900a9ULL, 0xd1d100d1d1d100d1ULL, 0x0404000404040004ULL,
59762306a36Sopenharmony_ci	0x1414001414140014ULL, 0x3a3a003a3a3a003aULL, 0xdede00dedede00deULL,
59862306a36Sopenharmony_ci	0x1111001111110011ULL, 0x3232003232320032ULL, 0x9c9c009c9c9c009cULL,
59962306a36Sopenharmony_ci	0x5353005353530053ULL, 0xf2f200f2f2f200f2ULL, 0xfefe00fefefe00feULL,
60062306a36Sopenharmony_ci	0xcfcf00cfcfcf00cfULL, 0xc3c300c3c3c300c3ULL, 0x7a7a007a7a7a007aULL,
60162306a36Sopenharmony_ci	0x2424002424240024ULL, 0xe8e800e8e8e800e8ULL, 0x6060006060600060ULL,
60262306a36Sopenharmony_ci	0x6969006969690069ULL, 0xaaaa00aaaaaa00aaULL, 0xa0a000a0a0a000a0ULL,
60362306a36Sopenharmony_ci	0xa1a100a1a1a100a1ULL, 0x6262006262620062ULL, 0x5454005454540054ULL,
60462306a36Sopenharmony_ci	0x1e1e001e1e1e001eULL, 0xe0e000e0e0e000e0ULL, 0x6464006464640064ULL,
60562306a36Sopenharmony_ci	0x1010001010100010ULL, 0x0000000000000000ULL, 0xa3a300a3a3a300a3ULL,
60662306a36Sopenharmony_ci	0x7575007575750075ULL, 0x8a8a008a8a8a008aULL, 0xe6e600e6e6e600e6ULL,
60762306a36Sopenharmony_ci	0x0909000909090009ULL, 0xdddd00dddddd00ddULL, 0x8787008787870087ULL,
60862306a36Sopenharmony_ci	0x8383008383830083ULL, 0xcdcd00cdcdcd00cdULL, 0x9090009090900090ULL,
60962306a36Sopenharmony_ci	0x7373007373730073ULL, 0xf6f600f6f6f600f6ULL, 0x9d9d009d9d9d009dULL,
61062306a36Sopenharmony_ci	0xbfbf00bfbfbf00bfULL, 0x5252005252520052ULL, 0xd8d800d8d8d800d8ULL,
61162306a36Sopenharmony_ci	0xc8c800c8c8c800c8ULL, 0xc6c600c6c6c600c6ULL, 0x8181008181810081ULL,
61262306a36Sopenharmony_ci	0x6f6f006f6f6f006fULL, 0x1313001313130013ULL, 0x6363006363630063ULL,
61362306a36Sopenharmony_ci	0xe9e900e9e9e900e9ULL, 0xa7a700a7a7a700a7ULL, 0x9f9f009f9f9f009fULL,
61462306a36Sopenharmony_ci	0xbcbc00bcbcbc00bcULL, 0x2929002929290029ULL, 0xf9f900f9f9f900f9ULL,
61562306a36Sopenharmony_ci	0x2f2f002f2f2f002fULL, 0xb4b400b4b4b400b4ULL, 0x7878007878780078ULL,
61662306a36Sopenharmony_ci	0x0606000606060006ULL, 0xe7e700e7e7e700e7ULL, 0x7171007171710071ULL,
61762306a36Sopenharmony_ci	0xd4d400d4d4d400d4ULL, 0xabab00ababab00abULL, 0x8888008888880088ULL,
61862306a36Sopenharmony_ci	0x8d8d008d8d8d008dULL, 0x7272007272720072ULL, 0xb9b900b9b9b900b9ULL,
61962306a36Sopenharmony_ci	0xf8f800f8f8f800f8ULL, 0xacac00acacac00acULL, 0x3636003636360036ULL,
62062306a36Sopenharmony_ci	0x2a2a002a2a2a002aULL, 0x3c3c003c3c3c003cULL, 0xf1f100f1f1f100f1ULL,
62162306a36Sopenharmony_ci	0x4040004040400040ULL, 0xd3d300d3d3d300d3ULL, 0xbbbb00bbbbbb00bbULL,
62262306a36Sopenharmony_ci	0x4343004343430043ULL, 0x1515001515150015ULL, 0xadad00adadad00adULL,
62362306a36Sopenharmony_ci	0x7777007777770077ULL, 0x8080008080800080ULL, 0x8282008282820082ULL,
62462306a36Sopenharmony_ci	0xecec00ececec00ecULL, 0x2727002727270027ULL, 0xe5e500e5e5e500e5ULL,
62562306a36Sopenharmony_ci	0x8585008585850085ULL, 0x3535003535350035ULL, 0x0c0c000c0c0c000cULL,
62662306a36Sopenharmony_ci	0x4141004141410041ULL, 0xefef00efefef00efULL, 0x9393009393930093ULL,
62762306a36Sopenharmony_ci	0x1919001919190019ULL, 0x2121002121210021ULL, 0x0e0e000e0e0e000eULL,
62862306a36Sopenharmony_ci	0x4e4e004e4e4e004eULL, 0x6565006565650065ULL, 0xbdbd00bdbdbd00bdULL,
62962306a36Sopenharmony_ci	0xb8b800b8b8b800b8ULL, 0x8f8f008f8f8f008fULL, 0xebeb00ebebeb00ebULL,
63062306a36Sopenharmony_ci	0xcece00cecece00ceULL, 0x3030003030300030ULL, 0x5f5f005f5f5f005fULL,
63162306a36Sopenharmony_ci	0xc5c500c5c5c500c5ULL, 0x1a1a001a1a1a001aULL, 0xe1e100e1e1e100e1ULL,
63262306a36Sopenharmony_ci	0xcaca00cacaca00caULL, 0x4747004747470047ULL, 0x3d3d003d3d3d003dULL,
63362306a36Sopenharmony_ci	0x0101000101010001ULL, 0xd6d600d6d6d600d6ULL, 0x5656005656560056ULL,
63462306a36Sopenharmony_ci	0x4d4d004d4d4d004dULL, 0x0d0d000d0d0d000dULL, 0x6666006666660066ULL,
63562306a36Sopenharmony_ci	0xcccc00cccccc00ccULL, 0x2d2d002d2d2d002dULL, 0x1212001212120012ULL,
63662306a36Sopenharmony_ci	0x2020002020200020ULL, 0xb1b100b1b1b100b1ULL, 0x9999009999990099ULL,
63762306a36Sopenharmony_ci	0x4c4c004c4c4c004cULL, 0xc2c200c2c2c200c2ULL, 0x7e7e007e7e7e007eULL,
63862306a36Sopenharmony_ci	0x0505000505050005ULL, 0xb7b700b7b7b700b7ULL, 0x3131003131310031ULL,
63962306a36Sopenharmony_ci	0x1717001717170017ULL, 0xd7d700d7d7d700d7ULL, 0x5858005858580058ULL,
64062306a36Sopenharmony_ci	0x6161006161610061ULL, 0x1b1b001b1b1b001bULL, 0x1c1c001c1c1c001cULL,
64162306a36Sopenharmony_ci	0x0f0f000f0f0f000fULL, 0x1616001616160016ULL, 0x1818001818180018ULL,
64262306a36Sopenharmony_ci	0x2222002222220022ULL, 0x4444004444440044ULL, 0xb2b200b2b2b200b2ULL,
64362306a36Sopenharmony_ci	0xb5b500b5b5b500b5ULL, 0x9191009191910091ULL, 0x0808000808080008ULL,
64462306a36Sopenharmony_ci	0xa8a800a8a8a800a8ULL, 0xfcfc00fcfcfc00fcULL, 0x5050005050500050ULL,
64562306a36Sopenharmony_ci	0xd0d000d0d0d000d0ULL, 0x7d7d007d7d7d007dULL, 0x8989008989890089ULL,
64662306a36Sopenharmony_ci	0x9797009797970097ULL, 0x5b5b005b5b5b005bULL, 0x9595009595950095ULL,
64762306a36Sopenharmony_ci	0xffff00ffffff00ffULL, 0xd2d200d2d2d200d2ULL, 0xc4c400c4c4c400c4ULL,
64862306a36Sopenharmony_ci	0x4848004848480048ULL, 0xf7f700f7f7f700f7ULL, 0xdbdb00dbdbdb00dbULL,
64962306a36Sopenharmony_ci	0x0303000303030003ULL, 0xdada00dadada00daULL, 0x3f3f003f3f3f003fULL,
65062306a36Sopenharmony_ci	0x9494009494940094ULL, 0x5c5c005c5c5c005cULL, 0x0202000202020002ULL,
65162306a36Sopenharmony_ci	0x4a4a004a4a4a004aULL, 0x3333003333330033ULL, 0x6767006767670067ULL,
65262306a36Sopenharmony_ci	0xf3f300f3f3f300f3ULL, 0x7f7f007f7f7f007fULL, 0xe2e200e2e2e200e2ULL,
65362306a36Sopenharmony_ci	0x9b9b009b9b9b009bULL, 0x2626002626260026ULL, 0x3737003737370037ULL,
65462306a36Sopenharmony_ci	0x3b3b003b3b3b003bULL, 0x9696009696960096ULL, 0x4b4b004b4b4b004bULL,
65562306a36Sopenharmony_ci	0xbebe00bebebe00beULL, 0x2e2e002e2e2e002eULL, 0x7979007979790079ULL,
65662306a36Sopenharmony_ci	0x8c8c008c8c8c008cULL, 0x6e6e006e6e6e006eULL, 0x8e8e008e8e8e008eULL,
65762306a36Sopenharmony_ci	0xf5f500f5f5f500f5ULL, 0xb6b600b6b6b600b6ULL, 0xfdfd00fdfdfd00fdULL,
65862306a36Sopenharmony_ci	0x5959005959590059ULL, 0x9898009898980098ULL, 0x6a6a006a6a6a006aULL,
65962306a36Sopenharmony_ci	0x4646004646460046ULL, 0xbaba00bababa00baULL, 0x2525002525250025ULL,
66062306a36Sopenharmony_ci	0x4242004242420042ULL, 0xa2a200a2a2a200a2ULL, 0xfafa00fafafa00faULL,
66162306a36Sopenharmony_ci	0x0707000707070007ULL, 0x5555005555550055ULL, 0xeeee00eeeeee00eeULL,
66262306a36Sopenharmony_ci	0x0a0a000a0a0a000aULL, 0x4949004949490049ULL, 0x6868006868680068ULL,
66362306a36Sopenharmony_ci	0x3838003838380038ULL, 0xa4a400a4a4a400a4ULL, 0x2828002828280028ULL,
66462306a36Sopenharmony_ci	0x7b7b007b7b7b007bULL, 0xc9c900c9c9c900c9ULL, 0xc1c100c1c1c100c1ULL,
66562306a36Sopenharmony_ci	0xe3e300e3e3e300e3ULL, 0xf4f400f4f4f400f4ULL, 0xc7c700c7c7c700c7ULL,
66662306a36Sopenharmony_ci	0x9e9e009e9e9e009eULL,
66762306a36Sopenharmony_ci};
66862306a36Sopenharmony_ci
66962306a36Sopenharmony_ci__visible const u64 camellia_sp11101110[256] = {
67062306a36Sopenharmony_ci	0x7070700070707000ULL, 0x8282820082828200ULL, 0x2c2c2c002c2c2c00ULL,
67162306a36Sopenharmony_ci	0xececec00ececec00ULL, 0xb3b3b300b3b3b300ULL, 0x2727270027272700ULL,
67262306a36Sopenharmony_ci	0xc0c0c000c0c0c000ULL, 0xe5e5e500e5e5e500ULL, 0xe4e4e400e4e4e400ULL,
67362306a36Sopenharmony_ci	0x8585850085858500ULL, 0x5757570057575700ULL, 0x3535350035353500ULL,
67462306a36Sopenharmony_ci	0xeaeaea00eaeaea00ULL, 0x0c0c0c000c0c0c00ULL, 0xaeaeae00aeaeae00ULL,
67562306a36Sopenharmony_ci	0x4141410041414100ULL, 0x2323230023232300ULL, 0xefefef00efefef00ULL,
67662306a36Sopenharmony_ci	0x6b6b6b006b6b6b00ULL, 0x9393930093939300ULL, 0x4545450045454500ULL,
67762306a36Sopenharmony_ci	0x1919190019191900ULL, 0xa5a5a500a5a5a500ULL, 0x2121210021212100ULL,
67862306a36Sopenharmony_ci	0xededed00ededed00ULL, 0x0e0e0e000e0e0e00ULL, 0x4f4f4f004f4f4f00ULL,
67962306a36Sopenharmony_ci	0x4e4e4e004e4e4e00ULL, 0x1d1d1d001d1d1d00ULL, 0x6565650065656500ULL,
68062306a36Sopenharmony_ci	0x9292920092929200ULL, 0xbdbdbd00bdbdbd00ULL, 0x8686860086868600ULL,
68162306a36Sopenharmony_ci	0xb8b8b800b8b8b800ULL, 0xafafaf00afafaf00ULL, 0x8f8f8f008f8f8f00ULL,
68262306a36Sopenharmony_ci	0x7c7c7c007c7c7c00ULL, 0xebebeb00ebebeb00ULL, 0x1f1f1f001f1f1f00ULL,
68362306a36Sopenharmony_ci	0xcecece00cecece00ULL, 0x3e3e3e003e3e3e00ULL, 0x3030300030303000ULL,
68462306a36Sopenharmony_ci	0xdcdcdc00dcdcdc00ULL, 0x5f5f5f005f5f5f00ULL, 0x5e5e5e005e5e5e00ULL,
68562306a36Sopenharmony_ci	0xc5c5c500c5c5c500ULL, 0x0b0b0b000b0b0b00ULL, 0x1a1a1a001a1a1a00ULL,
68662306a36Sopenharmony_ci	0xa6a6a600a6a6a600ULL, 0xe1e1e100e1e1e100ULL, 0x3939390039393900ULL,
68762306a36Sopenharmony_ci	0xcacaca00cacaca00ULL, 0xd5d5d500d5d5d500ULL, 0x4747470047474700ULL,
68862306a36Sopenharmony_ci	0x5d5d5d005d5d5d00ULL, 0x3d3d3d003d3d3d00ULL, 0xd9d9d900d9d9d900ULL,
68962306a36Sopenharmony_ci	0x0101010001010100ULL, 0x5a5a5a005a5a5a00ULL, 0xd6d6d600d6d6d600ULL,
69062306a36Sopenharmony_ci	0x5151510051515100ULL, 0x5656560056565600ULL, 0x6c6c6c006c6c6c00ULL,
69162306a36Sopenharmony_ci	0x4d4d4d004d4d4d00ULL, 0x8b8b8b008b8b8b00ULL, 0x0d0d0d000d0d0d00ULL,
69262306a36Sopenharmony_ci	0x9a9a9a009a9a9a00ULL, 0x6666660066666600ULL, 0xfbfbfb00fbfbfb00ULL,
69362306a36Sopenharmony_ci	0xcccccc00cccccc00ULL, 0xb0b0b000b0b0b000ULL, 0x2d2d2d002d2d2d00ULL,
69462306a36Sopenharmony_ci	0x7474740074747400ULL, 0x1212120012121200ULL, 0x2b2b2b002b2b2b00ULL,
69562306a36Sopenharmony_ci	0x2020200020202000ULL, 0xf0f0f000f0f0f000ULL, 0xb1b1b100b1b1b100ULL,
69662306a36Sopenharmony_ci	0x8484840084848400ULL, 0x9999990099999900ULL, 0xdfdfdf00dfdfdf00ULL,
69762306a36Sopenharmony_ci	0x4c4c4c004c4c4c00ULL, 0xcbcbcb00cbcbcb00ULL, 0xc2c2c200c2c2c200ULL,
69862306a36Sopenharmony_ci	0x3434340034343400ULL, 0x7e7e7e007e7e7e00ULL, 0x7676760076767600ULL,
69962306a36Sopenharmony_ci	0x0505050005050500ULL, 0x6d6d6d006d6d6d00ULL, 0xb7b7b700b7b7b700ULL,
70062306a36Sopenharmony_ci	0xa9a9a900a9a9a900ULL, 0x3131310031313100ULL, 0xd1d1d100d1d1d100ULL,
70162306a36Sopenharmony_ci	0x1717170017171700ULL, 0x0404040004040400ULL, 0xd7d7d700d7d7d700ULL,
70262306a36Sopenharmony_ci	0x1414140014141400ULL, 0x5858580058585800ULL, 0x3a3a3a003a3a3a00ULL,
70362306a36Sopenharmony_ci	0x6161610061616100ULL, 0xdedede00dedede00ULL, 0x1b1b1b001b1b1b00ULL,
70462306a36Sopenharmony_ci	0x1111110011111100ULL, 0x1c1c1c001c1c1c00ULL, 0x3232320032323200ULL,
70562306a36Sopenharmony_ci	0x0f0f0f000f0f0f00ULL, 0x9c9c9c009c9c9c00ULL, 0x1616160016161600ULL,
70662306a36Sopenharmony_ci	0x5353530053535300ULL, 0x1818180018181800ULL, 0xf2f2f200f2f2f200ULL,
70762306a36Sopenharmony_ci	0x2222220022222200ULL, 0xfefefe00fefefe00ULL, 0x4444440044444400ULL,
70862306a36Sopenharmony_ci	0xcfcfcf00cfcfcf00ULL, 0xb2b2b200b2b2b200ULL, 0xc3c3c300c3c3c300ULL,
70962306a36Sopenharmony_ci	0xb5b5b500b5b5b500ULL, 0x7a7a7a007a7a7a00ULL, 0x9191910091919100ULL,
71062306a36Sopenharmony_ci	0x2424240024242400ULL, 0x0808080008080800ULL, 0xe8e8e800e8e8e800ULL,
71162306a36Sopenharmony_ci	0xa8a8a800a8a8a800ULL, 0x6060600060606000ULL, 0xfcfcfc00fcfcfc00ULL,
71262306a36Sopenharmony_ci	0x6969690069696900ULL, 0x5050500050505000ULL, 0xaaaaaa00aaaaaa00ULL,
71362306a36Sopenharmony_ci	0xd0d0d000d0d0d000ULL, 0xa0a0a000a0a0a000ULL, 0x7d7d7d007d7d7d00ULL,
71462306a36Sopenharmony_ci	0xa1a1a100a1a1a100ULL, 0x8989890089898900ULL, 0x6262620062626200ULL,
71562306a36Sopenharmony_ci	0x9797970097979700ULL, 0x5454540054545400ULL, 0x5b5b5b005b5b5b00ULL,
71662306a36Sopenharmony_ci	0x1e1e1e001e1e1e00ULL, 0x9595950095959500ULL, 0xe0e0e000e0e0e000ULL,
71762306a36Sopenharmony_ci	0xffffff00ffffff00ULL, 0x6464640064646400ULL, 0xd2d2d200d2d2d200ULL,
71862306a36Sopenharmony_ci	0x1010100010101000ULL, 0xc4c4c400c4c4c400ULL, 0x0000000000000000ULL,
71962306a36Sopenharmony_ci	0x4848480048484800ULL, 0xa3a3a300a3a3a300ULL, 0xf7f7f700f7f7f700ULL,
72062306a36Sopenharmony_ci	0x7575750075757500ULL, 0xdbdbdb00dbdbdb00ULL, 0x8a8a8a008a8a8a00ULL,
72162306a36Sopenharmony_ci	0x0303030003030300ULL, 0xe6e6e600e6e6e600ULL, 0xdadada00dadada00ULL,
72262306a36Sopenharmony_ci	0x0909090009090900ULL, 0x3f3f3f003f3f3f00ULL, 0xdddddd00dddddd00ULL,
72362306a36Sopenharmony_ci	0x9494940094949400ULL, 0x8787870087878700ULL, 0x5c5c5c005c5c5c00ULL,
72462306a36Sopenharmony_ci	0x8383830083838300ULL, 0x0202020002020200ULL, 0xcdcdcd00cdcdcd00ULL,
72562306a36Sopenharmony_ci	0x4a4a4a004a4a4a00ULL, 0x9090900090909000ULL, 0x3333330033333300ULL,
72662306a36Sopenharmony_ci	0x7373730073737300ULL, 0x6767670067676700ULL, 0xf6f6f600f6f6f600ULL,
72762306a36Sopenharmony_ci	0xf3f3f300f3f3f300ULL, 0x9d9d9d009d9d9d00ULL, 0x7f7f7f007f7f7f00ULL,
72862306a36Sopenharmony_ci	0xbfbfbf00bfbfbf00ULL, 0xe2e2e200e2e2e200ULL, 0x5252520052525200ULL,
72962306a36Sopenharmony_ci	0x9b9b9b009b9b9b00ULL, 0xd8d8d800d8d8d800ULL, 0x2626260026262600ULL,
73062306a36Sopenharmony_ci	0xc8c8c800c8c8c800ULL, 0x3737370037373700ULL, 0xc6c6c600c6c6c600ULL,
73162306a36Sopenharmony_ci	0x3b3b3b003b3b3b00ULL, 0x8181810081818100ULL, 0x9696960096969600ULL,
73262306a36Sopenharmony_ci	0x6f6f6f006f6f6f00ULL, 0x4b4b4b004b4b4b00ULL, 0x1313130013131300ULL,
73362306a36Sopenharmony_ci	0xbebebe00bebebe00ULL, 0x6363630063636300ULL, 0x2e2e2e002e2e2e00ULL,
73462306a36Sopenharmony_ci	0xe9e9e900e9e9e900ULL, 0x7979790079797900ULL, 0xa7a7a700a7a7a700ULL,
73562306a36Sopenharmony_ci	0x8c8c8c008c8c8c00ULL, 0x9f9f9f009f9f9f00ULL, 0x6e6e6e006e6e6e00ULL,
73662306a36Sopenharmony_ci	0xbcbcbc00bcbcbc00ULL, 0x8e8e8e008e8e8e00ULL, 0x2929290029292900ULL,
73762306a36Sopenharmony_ci	0xf5f5f500f5f5f500ULL, 0xf9f9f900f9f9f900ULL, 0xb6b6b600b6b6b600ULL,
73862306a36Sopenharmony_ci	0x2f2f2f002f2f2f00ULL, 0xfdfdfd00fdfdfd00ULL, 0xb4b4b400b4b4b400ULL,
73962306a36Sopenharmony_ci	0x5959590059595900ULL, 0x7878780078787800ULL, 0x9898980098989800ULL,
74062306a36Sopenharmony_ci	0x0606060006060600ULL, 0x6a6a6a006a6a6a00ULL, 0xe7e7e700e7e7e700ULL,
74162306a36Sopenharmony_ci	0x4646460046464600ULL, 0x7171710071717100ULL, 0xbababa00bababa00ULL,
74262306a36Sopenharmony_ci	0xd4d4d400d4d4d400ULL, 0x2525250025252500ULL, 0xababab00ababab00ULL,
74362306a36Sopenharmony_ci	0x4242420042424200ULL, 0x8888880088888800ULL, 0xa2a2a200a2a2a200ULL,
74462306a36Sopenharmony_ci	0x8d8d8d008d8d8d00ULL, 0xfafafa00fafafa00ULL, 0x7272720072727200ULL,
74562306a36Sopenharmony_ci	0x0707070007070700ULL, 0xb9b9b900b9b9b900ULL, 0x5555550055555500ULL,
74662306a36Sopenharmony_ci	0xf8f8f800f8f8f800ULL, 0xeeeeee00eeeeee00ULL, 0xacacac00acacac00ULL,
74762306a36Sopenharmony_ci	0x0a0a0a000a0a0a00ULL, 0x3636360036363600ULL, 0x4949490049494900ULL,
74862306a36Sopenharmony_ci	0x2a2a2a002a2a2a00ULL, 0x6868680068686800ULL, 0x3c3c3c003c3c3c00ULL,
74962306a36Sopenharmony_ci	0x3838380038383800ULL, 0xf1f1f100f1f1f100ULL, 0xa4a4a400a4a4a400ULL,
75062306a36Sopenharmony_ci	0x4040400040404000ULL, 0x2828280028282800ULL, 0xd3d3d300d3d3d300ULL,
75162306a36Sopenharmony_ci	0x7b7b7b007b7b7b00ULL, 0xbbbbbb00bbbbbb00ULL, 0xc9c9c900c9c9c900ULL,
75262306a36Sopenharmony_ci	0x4343430043434300ULL, 0xc1c1c100c1c1c100ULL, 0x1515150015151500ULL,
75362306a36Sopenharmony_ci	0xe3e3e300e3e3e300ULL, 0xadadad00adadad00ULL, 0xf4f4f400f4f4f400ULL,
75462306a36Sopenharmony_ci	0x7777770077777700ULL, 0xc7c7c700c7c7c700ULL, 0x8080800080808000ULL,
75562306a36Sopenharmony_ci	0x9e9e9e009e9e9e00ULL,
75662306a36Sopenharmony_ci};
75762306a36Sopenharmony_ci
75862306a36Sopenharmony_ci/* key constants */
75962306a36Sopenharmony_ci#define CAMELLIA_SIGMA1L (0xA09E667FL)
76062306a36Sopenharmony_ci#define CAMELLIA_SIGMA1R (0x3BCC908BL)
76162306a36Sopenharmony_ci#define CAMELLIA_SIGMA2L (0xB67AE858L)
76262306a36Sopenharmony_ci#define CAMELLIA_SIGMA2R (0x4CAA73B2L)
76362306a36Sopenharmony_ci#define CAMELLIA_SIGMA3L (0xC6EF372FL)
76462306a36Sopenharmony_ci#define CAMELLIA_SIGMA3R (0xE94F82BEL)
76562306a36Sopenharmony_ci#define CAMELLIA_SIGMA4L (0x54FF53A5L)
76662306a36Sopenharmony_ci#define CAMELLIA_SIGMA4R (0xF1D36F1CL)
76762306a36Sopenharmony_ci#define CAMELLIA_SIGMA5L (0x10E527FAL)
76862306a36Sopenharmony_ci#define CAMELLIA_SIGMA5R (0xDE682D1DL)
76962306a36Sopenharmony_ci#define CAMELLIA_SIGMA6L (0xB05688C2L)
77062306a36Sopenharmony_ci#define CAMELLIA_SIGMA6R (0xB3E6C1FDL)
77162306a36Sopenharmony_ci
77262306a36Sopenharmony_ci/* macros */
77362306a36Sopenharmony_ci#define ROLDQ(l, r, bits) ({ \
77462306a36Sopenharmony_ci	u64 t = l;					\
77562306a36Sopenharmony_ci	l = (l << bits) | (r >> (64 - bits));		\
77662306a36Sopenharmony_ci	r = (r << bits) | (t >> (64 - bits));		\
77762306a36Sopenharmony_ci})
77862306a36Sopenharmony_ci
77962306a36Sopenharmony_ci#define CAMELLIA_F(x, kl, kr, y) ({ \
78062306a36Sopenharmony_ci	u64 ii = x ^ (((u64)kl << 32) | kr);				\
78162306a36Sopenharmony_ci	y = camellia_sp11101110[(uint8_t)ii];				\
78262306a36Sopenharmony_ci	y ^= camellia_sp44044404[(uint8_t)(ii >> 8)];			\
78362306a36Sopenharmony_ci	ii >>= 16;							\
78462306a36Sopenharmony_ci	y ^= camellia_sp30333033[(uint8_t)ii];				\
78562306a36Sopenharmony_ci	y ^= camellia_sp02220222[(uint8_t)(ii >> 8)];			\
78662306a36Sopenharmony_ci	ii >>= 16;							\
78762306a36Sopenharmony_ci	y ^= camellia_sp00444404[(uint8_t)ii];				\
78862306a36Sopenharmony_ci	y ^= camellia_sp03303033[(uint8_t)(ii >> 8)];			\
78962306a36Sopenharmony_ci	ii >>= 16;							\
79062306a36Sopenharmony_ci	y ^= camellia_sp22000222[(uint8_t)ii];				\
79162306a36Sopenharmony_ci	y ^= camellia_sp10011110[(uint8_t)(ii >> 8)];			\
79262306a36Sopenharmony_ci	y = ror64(y, 32);						\
79362306a36Sopenharmony_ci})
79462306a36Sopenharmony_ci
79562306a36Sopenharmony_ci#define SET_SUBKEY_LR(INDEX, sRL) (subkey[(INDEX)] = ror64((sRL), 32))
79662306a36Sopenharmony_ci
79762306a36Sopenharmony_cistatic void camellia_setup_tail(u64 *subkey, u64 *subRL, int max)
79862306a36Sopenharmony_ci{
79962306a36Sopenharmony_ci	u64 kw4, tt;
80062306a36Sopenharmony_ci	u32 dw, tl, tr;
80162306a36Sopenharmony_ci
80262306a36Sopenharmony_ci	/* absorb kw2 to other subkeys */
80362306a36Sopenharmony_ci	/* round 2 */
80462306a36Sopenharmony_ci	subRL[3] ^= subRL[1];
80562306a36Sopenharmony_ci	/* round 4 */
80662306a36Sopenharmony_ci	subRL[5] ^= subRL[1];
80762306a36Sopenharmony_ci	/* round 6 */
80862306a36Sopenharmony_ci	subRL[7] ^= subRL[1];
80962306a36Sopenharmony_ci
81062306a36Sopenharmony_ci	subRL[1] ^= (subRL[1] & ~subRL[9]) << 32;
81162306a36Sopenharmony_ci	/* modified for FLinv(kl2) */
81262306a36Sopenharmony_ci	dw = (subRL[1] & subRL[9]) >> 32;
81362306a36Sopenharmony_ci	subRL[1] ^= rol32(dw, 1);
81462306a36Sopenharmony_ci
81562306a36Sopenharmony_ci	/* round 8 */
81662306a36Sopenharmony_ci	subRL[11] ^= subRL[1];
81762306a36Sopenharmony_ci	/* round 10 */
81862306a36Sopenharmony_ci	subRL[13] ^= subRL[1];
81962306a36Sopenharmony_ci	/* round 12 */
82062306a36Sopenharmony_ci	subRL[15] ^= subRL[1];
82162306a36Sopenharmony_ci
82262306a36Sopenharmony_ci	subRL[1] ^= (subRL[1] & ~subRL[17]) << 32;
82362306a36Sopenharmony_ci	/* modified for FLinv(kl4) */
82462306a36Sopenharmony_ci	dw = (subRL[1] & subRL[17]) >> 32;
82562306a36Sopenharmony_ci	subRL[1] ^= rol32(dw, 1);
82662306a36Sopenharmony_ci
82762306a36Sopenharmony_ci	/* round 14 */
82862306a36Sopenharmony_ci	subRL[19] ^= subRL[1];
82962306a36Sopenharmony_ci	/* round 16 */
83062306a36Sopenharmony_ci	subRL[21] ^= subRL[1];
83162306a36Sopenharmony_ci	/* round 18 */
83262306a36Sopenharmony_ci	subRL[23] ^= subRL[1];
83362306a36Sopenharmony_ci
83462306a36Sopenharmony_ci	if (max == 24) {
83562306a36Sopenharmony_ci		/* kw3 */
83662306a36Sopenharmony_ci		subRL[24] ^= subRL[1];
83762306a36Sopenharmony_ci
83862306a36Sopenharmony_ci		/* absorb kw4 to other subkeys */
83962306a36Sopenharmony_ci		kw4 = subRL[25];
84062306a36Sopenharmony_ci	} else {
84162306a36Sopenharmony_ci		subRL[1] ^= (subRL[1] & ~subRL[25]) << 32;
84262306a36Sopenharmony_ci		/* modified for FLinv(kl6) */
84362306a36Sopenharmony_ci		dw = (subRL[1] & subRL[25]) >> 32;
84462306a36Sopenharmony_ci		subRL[1] ^= rol32(dw, 1);
84562306a36Sopenharmony_ci
84662306a36Sopenharmony_ci		/* round 20 */
84762306a36Sopenharmony_ci		subRL[27] ^= subRL[1];
84862306a36Sopenharmony_ci		/* round 22 */
84962306a36Sopenharmony_ci		subRL[29] ^= subRL[1];
85062306a36Sopenharmony_ci		/* round 24 */
85162306a36Sopenharmony_ci		subRL[31] ^= subRL[1];
85262306a36Sopenharmony_ci		/* kw3 */
85362306a36Sopenharmony_ci		subRL[32] ^= subRL[1];
85462306a36Sopenharmony_ci
85562306a36Sopenharmony_ci		/* absorb kw4 to other subkeys */
85662306a36Sopenharmony_ci		kw4 = subRL[33];
85762306a36Sopenharmony_ci		/* round 23 */
85862306a36Sopenharmony_ci		subRL[30] ^= kw4;
85962306a36Sopenharmony_ci		/* round 21 */
86062306a36Sopenharmony_ci		subRL[28] ^= kw4;
86162306a36Sopenharmony_ci		/* round 19 */
86262306a36Sopenharmony_ci		subRL[26] ^= kw4;
86362306a36Sopenharmony_ci
86462306a36Sopenharmony_ci		kw4 ^= (kw4 & ~subRL[24]) << 32;
86562306a36Sopenharmony_ci		/* modified for FL(kl5) */
86662306a36Sopenharmony_ci		dw = (kw4 & subRL[24]) >> 32;
86762306a36Sopenharmony_ci		kw4 ^= rol32(dw, 1);
86862306a36Sopenharmony_ci	}
86962306a36Sopenharmony_ci
87062306a36Sopenharmony_ci	/* round 17 */
87162306a36Sopenharmony_ci	subRL[22] ^= kw4;
87262306a36Sopenharmony_ci	/* round 15 */
87362306a36Sopenharmony_ci	subRL[20] ^= kw4;
87462306a36Sopenharmony_ci	/* round 13 */
87562306a36Sopenharmony_ci	subRL[18] ^= kw4;
87662306a36Sopenharmony_ci
87762306a36Sopenharmony_ci	kw4 ^= (kw4 & ~subRL[16]) << 32;
87862306a36Sopenharmony_ci	/* modified for FL(kl3) */
87962306a36Sopenharmony_ci	dw = (kw4 & subRL[16]) >> 32;
88062306a36Sopenharmony_ci	kw4 ^= rol32(dw, 1);
88162306a36Sopenharmony_ci
88262306a36Sopenharmony_ci	/* round 11 */
88362306a36Sopenharmony_ci	subRL[14] ^= kw4;
88462306a36Sopenharmony_ci	/* round 9 */
88562306a36Sopenharmony_ci	subRL[12] ^= kw4;
88662306a36Sopenharmony_ci	/* round 7 */
88762306a36Sopenharmony_ci	subRL[10] ^= kw4;
88862306a36Sopenharmony_ci
88962306a36Sopenharmony_ci	kw4 ^= (kw4 & ~subRL[8]) << 32;
89062306a36Sopenharmony_ci	/* modified for FL(kl1) */
89162306a36Sopenharmony_ci	dw = (kw4 & subRL[8]) >> 32;
89262306a36Sopenharmony_ci	kw4 ^= rol32(dw, 1);
89362306a36Sopenharmony_ci
89462306a36Sopenharmony_ci	/* round 5 */
89562306a36Sopenharmony_ci	subRL[6] ^= kw4;
89662306a36Sopenharmony_ci	/* round 3 */
89762306a36Sopenharmony_ci	subRL[4] ^= kw4;
89862306a36Sopenharmony_ci	/* round 1 */
89962306a36Sopenharmony_ci	subRL[2] ^= kw4;
90062306a36Sopenharmony_ci	/* kw1 */
90162306a36Sopenharmony_ci	subRL[0] ^= kw4;
90262306a36Sopenharmony_ci
90362306a36Sopenharmony_ci	/* key XOR is end of F-function */
90462306a36Sopenharmony_ci	SET_SUBKEY_LR(0, subRL[0] ^ subRL[2]);			/* kw1 */
90562306a36Sopenharmony_ci	SET_SUBKEY_LR(2, subRL[3]);				/* round 1 */
90662306a36Sopenharmony_ci	SET_SUBKEY_LR(3, subRL[2] ^ subRL[4]);			/* round 2 */
90762306a36Sopenharmony_ci	SET_SUBKEY_LR(4, subRL[3] ^ subRL[5]);			/* round 3 */
90862306a36Sopenharmony_ci	SET_SUBKEY_LR(5, subRL[4] ^ subRL[6]);			/* round 4 */
90962306a36Sopenharmony_ci	SET_SUBKEY_LR(6, subRL[5] ^ subRL[7]);			/* round 5 */
91062306a36Sopenharmony_ci
91162306a36Sopenharmony_ci	tl = (subRL[10] >> 32) ^ (subRL[10] & ~subRL[8]);
91262306a36Sopenharmony_ci	dw = tl & (subRL[8] >> 32);				/* FL(kl1) */
91362306a36Sopenharmony_ci	tr = subRL[10] ^ rol32(dw, 1);
91462306a36Sopenharmony_ci	tt = (tr | ((u64)tl << 32));
91562306a36Sopenharmony_ci
91662306a36Sopenharmony_ci	SET_SUBKEY_LR(7, subRL[6] ^ tt);			/* round 6 */
91762306a36Sopenharmony_ci	SET_SUBKEY_LR(8, subRL[8]);				/* FL(kl1) */
91862306a36Sopenharmony_ci	SET_SUBKEY_LR(9, subRL[9]);				/* FLinv(kl2) */
91962306a36Sopenharmony_ci
92062306a36Sopenharmony_ci	tl = (subRL[7] >> 32) ^ (subRL[7] & ~subRL[9]);
92162306a36Sopenharmony_ci	dw = tl & (subRL[9] >> 32);				/* FLinv(kl2) */
92262306a36Sopenharmony_ci	tr = subRL[7] ^ rol32(dw, 1);
92362306a36Sopenharmony_ci	tt = (tr | ((u64)tl << 32));
92462306a36Sopenharmony_ci
92562306a36Sopenharmony_ci	SET_SUBKEY_LR(10, subRL[11] ^ tt);			/* round 7 */
92662306a36Sopenharmony_ci	SET_SUBKEY_LR(11, subRL[10] ^ subRL[12]);		/* round 8 */
92762306a36Sopenharmony_ci	SET_SUBKEY_LR(12, subRL[11] ^ subRL[13]);		/* round 9 */
92862306a36Sopenharmony_ci	SET_SUBKEY_LR(13, subRL[12] ^ subRL[14]);		/* round 10 */
92962306a36Sopenharmony_ci	SET_SUBKEY_LR(14, subRL[13] ^ subRL[15]);		/* round 11 */
93062306a36Sopenharmony_ci
93162306a36Sopenharmony_ci	tl = (subRL[18] >> 32) ^ (subRL[18] & ~subRL[16]);
93262306a36Sopenharmony_ci	dw = tl & (subRL[16] >> 32);				/* FL(kl3) */
93362306a36Sopenharmony_ci	tr = subRL[18] ^ rol32(dw, 1);
93462306a36Sopenharmony_ci	tt = (tr | ((u64)tl << 32));
93562306a36Sopenharmony_ci
93662306a36Sopenharmony_ci	SET_SUBKEY_LR(15, subRL[14] ^ tt);			/* round 12 */
93762306a36Sopenharmony_ci	SET_SUBKEY_LR(16, subRL[16]);				/* FL(kl3) */
93862306a36Sopenharmony_ci	SET_SUBKEY_LR(17, subRL[17]);				/* FLinv(kl4) */
93962306a36Sopenharmony_ci
94062306a36Sopenharmony_ci	tl = (subRL[15] >> 32) ^ (subRL[15] & ~subRL[17]);
94162306a36Sopenharmony_ci	dw = tl & (subRL[17] >> 32);				/* FLinv(kl4) */
94262306a36Sopenharmony_ci	tr = subRL[15] ^ rol32(dw, 1);
94362306a36Sopenharmony_ci	tt = (tr | ((u64)tl << 32));
94462306a36Sopenharmony_ci
94562306a36Sopenharmony_ci	SET_SUBKEY_LR(18, subRL[19] ^ tt);			/* round 13 */
94662306a36Sopenharmony_ci	SET_SUBKEY_LR(19, subRL[18] ^ subRL[20]);		/* round 14 */
94762306a36Sopenharmony_ci	SET_SUBKEY_LR(20, subRL[19] ^ subRL[21]);		/* round 15 */
94862306a36Sopenharmony_ci	SET_SUBKEY_LR(21, subRL[20] ^ subRL[22]);		/* round 16 */
94962306a36Sopenharmony_ci	SET_SUBKEY_LR(22, subRL[21] ^ subRL[23]);		/* round 17 */
95062306a36Sopenharmony_ci
95162306a36Sopenharmony_ci	if (max == 24) {
95262306a36Sopenharmony_ci		SET_SUBKEY_LR(23, subRL[22]);			/* round 18 */
95362306a36Sopenharmony_ci		SET_SUBKEY_LR(24, subRL[24] ^ subRL[23]);	/* kw3 */
95462306a36Sopenharmony_ci	} else {
95562306a36Sopenharmony_ci		tl = (subRL[26] >> 32) ^ (subRL[26] & ~subRL[24]);
95662306a36Sopenharmony_ci		dw = tl & (subRL[24] >> 32);			/* FL(kl5) */
95762306a36Sopenharmony_ci		tr = subRL[26] ^ rol32(dw, 1);
95862306a36Sopenharmony_ci		tt = (tr | ((u64)tl << 32));
95962306a36Sopenharmony_ci
96062306a36Sopenharmony_ci		SET_SUBKEY_LR(23, subRL[22] ^ tt);		/* round 18 */
96162306a36Sopenharmony_ci		SET_SUBKEY_LR(24, subRL[24]);			/* FL(kl5) */
96262306a36Sopenharmony_ci		SET_SUBKEY_LR(25, subRL[25]);			/* FLinv(kl6) */
96362306a36Sopenharmony_ci
96462306a36Sopenharmony_ci		tl = (subRL[23] >> 32) ^ (subRL[23] & ~subRL[25]);
96562306a36Sopenharmony_ci		dw = tl & (subRL[25] >> 32);			/* FLinv(kl6) */
96662306a36Sopenharmony_ci		tr = subRL[23] ^ rol32(dw, 1);
96762306a36Sopenharmony_ci		tt = (tr | ((u64)tl << 32));
96862306a36Sopenharmony_ci
96962306a36Sopenharmony_ci		SET_SUBKEY_LR(26, subRL[27] ^ tt);		/* round 19 */
97062306a36Sopenharmony_ci		SET_SUBKEY_LR(27, subRL[26] ^ subRL[28]);	/* round 20 */
97162306a36Sopenharmony_ci		SET_SUBKEY_LR(28, subRL[27] ^ subRL[29]);	/* round 21 */
97262306a36Sopenharmony_ci		SET_SUBKEY_LR(29, subRL[28] ^ subRL[30]);	/* round 22 */
97362306a36Sopenharmony_ci		SET_SUBKEY_LR(30, subRL[29] ^ subRL[31]);	/* round 23 */
97462306a36Sopenharmony_ci		SET_SUBKEY_LR(31, subRL[30]);			/* round 24 */
97562306a36Sopenharmony_ci		SET_SUBKEY_LR(32, subRL[32] ^ subRL[31]);	/* kw3 */
97662306a36Sopenharmony_ci	}
97762306a36Sopenharmony_ci}
97862306a36Sopenharmony_ci
97962306a36Sopenharmony_cistatic void camellia_setup128(const unsigned char *key, u64 *subkey)
98062306a36Sopenharmony_ci{
98162306a36Sopenharmony_ci	u64 kl, kr, ww;
98262306a36Sopenharmony_ci	u64 subRL[26];
98362306a36Sopenharmony_ci
98462306a36Sopenharmony_ci	/**
98562306a36Sopenharmony_ci	 *  k == kl || kr (|| is concatenation)
98662306a36Sopenharmony_ci	 */
98762306a36Sopenharmony_ci	kl = get_unaligned_be64(key);
98862306a36Sopenharmony_ci	kr = get_unaligned_be64(key + 8);
98962306a36Sopenharmony_ci
99062306a36Sopenharmony_ci	/* generate KL dependent subkeys */
99162306a36Sopenharmony_ci	/* kw1 */
99262306a36Sopenharmony_ci	subRL[0] = kl;
99362306a36Sopenharmony_ci	/* kw2 */
99462306a36Sopenharmony_ci	subRL[1] = kr;
99562306a36Sopenharmony_ci
99662306a36Sopenharmony_ci	/* rotation left shift 15bit */
99762306a36Sopenharmony_ci	ROLDQ(kl, kr, 15);
99862306a36Sopenharmony_ci
99962306a36Sopenharmony_ci	/* k3 */
100062306a36Sopenharmony_ci	subRL[4] = kl;
100162306a36Sopenharmony_ci	/* k4 */
100262306a36Sopenharmony_ci	subRL[5] = kr;
100362306a36Sopenharmony_ci
100462306a36Sopenharmony_ci	/* rotation left shift 15+30bit */
100562306a36Sopenharmony_ci	ROLDQ(kl, kr, 30);
100662306a36Sopenharmony_ci
100762306a36Sopenharmony_ci	/* k7 */
100862306a36Sopenharmony_ci	subRL[10] = kl;
100962306a36Sopenharmony_ci	/* k8 */
101062306a36Sopenharmony_ci	subRL[11] = kr;
101162306a36Sopenharmony_ci
101262306a36Sopenharmony_ci	/* rotation left shift 15+30+15bit */
101362306a36Sopenharmony_ci	ROLDQ(kl, kr, 15);
101462306a36Sopenharmony_ci
101562306a36Sopenharmony_ci	/* k10 */
101662306a36Sopenharmony_ci	subRL[13] = kr;
101762306a36Sopenharmony_ci	/* rotation left shift 15+30+15+17 bit */
101862306a36Sopenharmony_ci	ROLDQ(kl, kr, 17);
101962306a36Sopenharmony_ci
102062306a36Sopenharmony_ci	/* kl3 */
102162306a36Sopenharmony_ci	subRL[16] = kl;
102262306a36Sopenharmony_ci	/* kl4 */
102362306a36Sopenharmony_ci	subRL[17] = kr;
102462306a36Sopenharmony_ci
102562306a36Sopenharmony_ci	/* rotation left shift 15+30+15+17+17 bit */
102662306a36Sopenharmony_ci	ROLDQ(kl, kr, 17);
102762306a36Sopenharmony_ci
102862306a36Sopenharmony_ci	/* k13 */
102962306a36Sopenharmony_ci	subRL[18] = kl;
103062306a36Sopenharmony_ci	/* k14 */
103162306a36Sopenharmony_ci	subRL[19] = kr;
103262306a36Sopenharmony_ci
103362306a36Sopenharmony_ci	/* rotation left shift 15+30+15+17+17+17 bit */
103462306a36Sopenharmony_ci	ROLDQ(kl, kr, 17);
103562306a36Sopenharmony_ci
103662306a36Sopenharmony_ci	/* k17 */
103762306a36Sopenharmony_ci	subRL[22] = kl;
103862306a36Sopenharmony_ci	/* k18 */
103962306a36Sopenharmony_ci	subRL[23] = kr;
104062306a36Sopenharmony_ci
104162306a36Sopenharmony_ci	/* generate KA */
104262306a36Sopenharmony_ci	kl = subRL[0];
104362306a36Sopenharmony_ci	kr = subRL[1];
104462306a36Sopenharmony_ci	CAMELLIA_F(kl, CAMELLIA_SIGMA1L, CAMELLIA_SIGMA1R, ww);
104562306a36Sopenharmony_ci	kr ^= ww;
104662306a36Sopenharmony_ci	CAMELLIA_F(kr, CAMELLIA_SIGMA2L, CAMELLIA_SIGMA2R, kl);
104762306a36Sopenharmony_ci
104862306a36Sopenharmony_ci	/* current status == (kll, klr, w0, w1) */
104962306a36Sopenharmony_ci	CAMELLIA_F(kl, CAMELLIA_SIGMA3L, CAMELLIA_SIGMA3R, kr);
105062306a36Sopenharmony_ci	kr ^= ww;
105162306a36Sopenharmony_ci	CAMELLIA_F(kr, CAMELLIA_SIGMA4L, CAMELLIA_SIGMA4R, ww);
105262306a36Sopenharmony_ci	kl ^= ww;
105362306a36Sopenharmony_ci
105462306a36Sopenharmony_ci	/* generate KA dependent subkeys */
105562306a36Sopenharmony_ci	/* k1, k2 */
105662306a36Sopenharmony_ci	subRL[2] = kl;
105762306a36Sopenharmony_ci	subRL[3] = kr;
105862306a36Sopenharmony_ci	ROLDQ(kl, kr, 15);
105962306a36Sopenharmony_ci	/* k5,k6 */
106062306a36Sopenharmony_ci	subRL[6] = kl;
106162306a36Sopenharmony_ci	subRL[7] = kr;
106262306a36Sopenharmony_ci	ROLDQ(kl, kr, 15);
106362306a36Sopenharmony_ci	/* kl1, kl2 */
106462306a36Sopenharmony_ci	subRL[8] = kl;
106562306a36Sopenharmony_ci	subRL[9] = kr;
106662306a36Sopenharmony_ci	ROLDQ(kl, kr, 15);
106762306a36Sopenharmony_ci	/* k9 */
106862306a36Sopenharmony_ci	subRL[12] = kl;
106962306a36Sopenharmony_ci	ROLDQ(kl, kr, 15);
107062306a36Sopenharmony_ci	/* k11, k12 */
107162306a36Sopenharmony_ci	subRL[14] = kl;
107262306a36Sopenharmony_ci	subRL[15] = kr;
107362306a36Sopenharmony_ci	ROLDQ(kl, kr, 34);
107462306a36Sopenharmony_ci	/* k15, k16 */
107562306a36Sopenharmony_ci	subRL[20] = kl;
107662306a36Sopenharmony_ci	subRL[21] = kr;
107762306a36Sopenharmony_ci	ROLDQ(kl, kr, 17);
107862306a36Sopenharmony_ci	/* kw3, kw4 */
107962306a36Sopenharmony_ci	subRL[24] = kl;
108062306a36Sopenharmony_ci	subRL[25] = kr;
108162306a36Sopenharmony_ci
108262306a36Sopenharmony_ci	camellia_setup_tail(subkey, subRL, 24);
108362306a36Sopenharmony_ci}
108462306a36Sopenharmony_ci
108562306a36Sopenharmony_cistatic void camellia_setup256(const unsigned char *key, u64 *subkey)
108662306a36Sopenharmony_ci{
108762306a36Sopenharmony_ci	u64 kl, kr;			/* left half of key */
108862306a36Sopenharmony_ci	u64 krl, krr;			/* right half of key */
108962306a36Sopenharmony_ci	u64 ww;				/* temporary variables */
109062306a36Sopenharmony_ci	u64 subRL[34];
109162306a36Sopenharmony_ci
109262306a36Sopenharmony_ci	/**
109362306a36Sopenharmony_ci	 *  key = (kl || kr || krl || krr) (|| is concatenation)
109462306a36Sopenharmony_ci	 */
109562306a36Sopenharmony_ci	kl = get_unaligned_be64(key);
109662306a36Sopenharmony_ci	kr = get_unaligned_be64(key + 8);
109762306a36Sopenharmony_ci	krl = get_unaligned_be64(key + 16);
109862306a36Sopenharmony_ci	krr = get_unaligned_be64(key + 24);
109962306a36Sopenharmony_ci
110062306a36Sopenharmony_ci	/* generate KL dependent subkeys */
110162306a36Sopenharmony_ci	/* kw1 */
110262306a36Sopenharmony_ci	subRL[0] = kl;
110362306a36Sopenharmony_ci	/* kw2 */
110462306a36Sopenharmony_ci	subRL[1] = kr;
110562306a36Sopenharmony_ci	ROLDQ(kl, kr, 45);
110662306a36Sopenharmony_ci	/* k9 */
110762306a36Sopenharmony_ci	subRL[12] = kl;
110862306a36Sopenharmony_ci	/* k10 */
110962306a36Sopenharmony_ci	subRL[13] = kr;
111062306a36Sopenharmony_ci	ROLDQ(kl, kr, 15);
111162306a36Sopenharmony_ci	/* kl3 */
111262306a36Sopenharmony_ci	subRL[16] = kl;
111362306a36Sopenharmony_ci	/* kl4 */
111462306a36Sopenharmony_ci	subRL[17] = kr;
111562306a36Sopenharmony_ci	ROLDQ(kl, kr, 17);
111662306a36Sopenharmony_ci	/* k17 */
111762306a36Sopenharmony_ci	subRL[22] = kl;
111862306a36Sopenharmony_ci	/* k18 */
111962306a36Sopenharmony_ci	subRL[23] = kr;
112062306a36Sopenharmony_ci	ROLDQ(kl, kr, 34);
112162306a36Sopenharmony_ci	/* k23 */
112262306a36Sopenharmony_ci	subRL[30] = kl;
112362306a36Sopenharmony_ci	/* k24 */
112462306a36Sopenharmony_ci	subRL[31] = kr;
112562306a36Sopenharmony_ci
112662306a36Sopenharmony_ci	/* generate KR dependent subkeys */
112762306a36Sopenharmony_ci	ROLDQ(krl, krr, 15);
112862306a36Sopenharmony_ci	/* k3 */
112962306a36Sopenharmony_ci	subRL[4] = krl;
113062306a36Sopenharmony_ci	/* k4 */
113162306a36Sopenharmony_ci	subRL[5] = krr;
113262306a36Sopenharmony_ci	ROLDQ(krl, krr, 15);
113362306a36Sopenharmony_ci	/* kl1 */
113462306a36Sopenharmony_ci	subRL[8] = krl;
113562306a36Sopenharmony_ci	/* kl2 */
113662306a36Sopenharmony_ci	subRL[9] = krr;
113762306a36Sopenharmony_ci	ROLDQ(krl, krr, 30);
113862306a36Sopenharmony_ci	/* k13 */
113962306a36Sopenharmony_ci	subRL[18] = krl;
114062306a36Sopenharmony_ci	/* k14 */
114162306a36Sopenharmony_ci	subRL[19] = krr;
114262306a36Sopenharmony_ci	ROLDQ(krl, krr, 34);
114362306a36Sopenharmony_ci	/* k19 */
114462306a36Sopenharmony_ci	subRL[26] = krl;
114562306a36Sopenharmony_ci	/* k20 */
114662306a36Sopenharmony_ci	subRL[27] = krr;
114762306a36Sopenharmony_ci	ROLDQ(krl, krr, 34);
114862306a36Sopenharmony_ci
114962306a36Sopenharmony_ci	/* generate KA */
115062306a36Sopenharmony_ci	kl = subRL[0] ^ krl;
115162306a36Sopenharmony_ci	kr = subRL[1] ^ krr;
115262306a36Sopenharmony_ci
115362306a36Sopenharmony_ci	CAMELLIA_F(kl, CAMELLIA_SIGMA1L, CAMELLIA_SIGMA1R, ww);
115462306a36Sopenharmony_ci	kr ^= ww;
115562306a36Sopenharmony_ci	CAMELLIA_F(kr, CAMELLIA_SIGMA2L, CAMELLIA_SIGMA2R, kl);
115662306a36Sopenharmony_ci	kl ^= krl;
115762306a36Sopenharmony_ci	CAMELLIA_F(kl, CAMELLIA_SIGMA3L, CAMELLIA_SIGMA3R, kr);
115862306a36Sopenharmony_ci	kr ^= ww ^ krr;
115962306a36Sopenharmony_ci	CAMELLIA_F(kr, CAMELLIA_SIGMA4L, CAMELLIA_SIGMA4R, ww);
116062306a36Sopenharmony_ci	kl ^= ww;
116162306a36Sopenharmony_ci
116262306a36Sopenharmony_ci	/* generate KB */
116362306a36Sopenharmony_ci	krl ^= kl;
116462306a36Sopenharmony_ci	krr ^= kr;
116562306a36Sopenharmony_ci	CAMELLIA_F(krl, CAMELLIA_SIGMA5L, CAMELLIA_SIGMA5R, ww);
116662306a36Sopenharmony_ci	krr ^= ww;
116762306a36Sopenharmony_ci	CAMELLIA_F(krr, CAMELLIA_SIGMA6L, CAMELLIA_SIGMA6R, ww);
116862306a36Sopenharmony_ci	krl ^= ww;
116962306a36Sopenharmony_ci
117062306a36Sopenharmony_ci	/* generate KA dependent subkeys */
117162306a36Sopenharmony_ci	ROLDQ(kl, kr, 15);
117262306a36Sopenharmony_ci	/* k5 */
117362306a36Sopenharmony_ci	subRL[6] = kl;
117462306a36Sopenharmony_ci	/* k6 */
117562306a36Sopenharmony_ci	subRL[7] = kr;
117662306a36Sopenharmony_ci	ROLDQ(kl, kr, 30);
117762306a36Sopenharmony_ci	/* k11 */
117862306a36Sopenharmony_ci	subRL[14] = kl;
117962306a36Sopenharmony_ci	/* k12 */
118062306a36Sopenharmony_ci	subRL[15] = kr;
118162306a36Sopenharmony_ci	/* rotation left shift 32bit */
118262306a36Sopenharmony_ci	ROLDQ(kl, kr, 32);
118362306a36Sopenharmony_ci	/* kl5 */
118462306a36Sopenharmony_ci	subRL[24] = kl;
118562306a36Sopenharmony_ci	/* kl6 */
118662306a36Sopenharmony_ci	subRL[25] = kr;
118762306a36Sopenharmony_ci	/* rotation left shift 17 from k11,k12 -> k21,k22 */
118862306a36Sopenharmony_ci	ROLDQ(kl, kr, 17);
118962306a36Sopenharmony_ci	/* k21 */
119062306a36Sopenharmony_ci	subRL[28] = kl;
119162306a36Sopenharmony_ci	/* k22 */
119262306a36Sopenharmony_ci	subRL[29] = kr;
119362306a36Sopenharmony_ci
119462306a36Sopenharmony_ci	/* generate KB dependent subkeys */
119562306a36Sopenharmony_ci	/* k1 */
119662306a36Sopenharmony_ci	subRL[2] = krl;
119762306a36Sopenharmony_ci	/* k2 */
119862306a36Sopenharmony_ci	subRL[3] = krr;
119962306a36Sopenharmony_ci	ROLDQ(krl, krr, 30);
120062306a36Sopenharmony_ci	/* k7 */
120162306a36Sopenharmony_ci	subRL[10] = krl;
120262306a36Sopenharmony_ci	/* k8 */
120362306a36Sopenharmony_ci	subRL[11] = krr;
120462306a36Sopenharmony_ci	ROLDQ(krl, krr, 30);
120562306a36Sopenharmony_ci	/* k15 */
120662306a36Sopenharmony_ci	subRL[20] = krl;
120762306a36Sopenharmony_ci	/* k16 */
120862306a36Sopenharmony_ci	subRL[21] = krr;
120962306a36Sopenharmony_ci	ROLDQ(krl, krr, 51);
121062306a36Sopenharmony_ci	/* kw3 */
121162306a36Sopenharmony_ci	subRL[32] = krl;
121262306a36Sopenharmony_ci	/* kw4 */
121362306a36Sopenharmony_ci	subRL[33] = krr;
121462306a36Sopenharmony_ci
121562306a36Sopenharmony_ci	camellia_setup_tail(subkey, subRL, 32);
121662306a36Sopenharmony_ci}
121762306a36Sopenharmony_ci
121862306a36Sopenharmony_cistatic void camellia_setup192(const unsigned char *key, u64 *subkey)
121962306a36Sopenharmony_ci{
122062306a36Sopenharmony_ci	unsigned char kk[32];
122162306a36Sopenharmony_ci	u64 krl, krr;
122262306a36Sopenharmony_ci
122362306a36Sopenharmony_ci	memcpy(kk, key, 24);
122462306a36Sopenharmony_ci	memcpy((unsigned char *)&krl, key+16, 8);
122562306a36Sopenharmony_ci	krr = ~krl;
122662306a36Sopenharmony_ci	memcpy(kk+24, (unsigned char *)&krr, 8);
122762306a36Sopenharmony_ci	camellia_setup256(kk, subkey);
122862306a36Sopenharmony_ci}
122962306a36Sopenharmony_ci
123062306a36Sopenharmony_ciint __camellia_setkey(struct camellia_ctx *cctx, const unsigned char *key,
123162306a36Sopenharmony_ci		      unsigned int key_len)
123262306a36Sopenharmony_ci{
123362306a36Sopenharmony_ci	if (key_len != 16 && key_len != 24 && key_len != 32)
123462306a36Sopenharmony_ci		return -EINVAL;
123562306a36Sopenharmony_ci
123662306a36Sopenharmony_ci	cctx->key_length = key_len;
123762306a36Sopenharmony_ci
123862306a36Sopenharmony_ci	switch (key_len) {
123962306a36Sopenharmony_ci	case 16:
124062306a36Sopenharmony_ci		camellia_setup128(key, cctx->key_table);
124162306a36Sopenharmony_ci		break;
124262306a36Sopenharmony_ci	case 24:
124362306a36Sopenharmony_ci		camellia_setup192(key, cctx->key_table);
124462306a36Sopenharmony_ci		break;
124562306a36Sopenharmony_ci	case 32:
124662306a36Sopenharmony_ci		camellia_setup256(key, cctx->key_table);
124762306a36Sopenharmony_ci		break;
124862306a36Sopenharmony_ci	}
124962306a36Sopenharmony_ci
125062306a36Sopenharmony_ci	return 0;
125162306a36Sopenharmony_ci}
125262306a36Sopenharmony_ciEXPORT_SYMBOL_GPL(__camellia_setkey);
125362306a36Sopenharmony_ci
125462306a36Sopenharmony_cistatic int camellia_setkey(struct crypto_tfm *tfm, const u8 *key,
125562306a36Sopenharmony_ci			   unsigned int key_len)
125662306a36Sopenharmony_ci{
125762306a36Sopenharmony_ci	return __camellia_setkey(crypto_tfm_ctx(tfm), key, key_len);
125862306a36Sopenharmony_ci}
125962306a36Sopenharmony_ci
126062306a36Sopenharmony_cistatic int camellia_setkey_skcipher(struct crypto_skcipher *tfm, const u8 *key,
126162306a36Sopenharmony_ci				    unsigned int key_len)
126262306a36Sopenharmony_ci{
126362306a36Sopenharmony_ci	return camellia_setkey(&tfm->base, key, key_len);
126462306a36Sopenharmony_ci}
126562306a36Sopenharmony_ci
126662306a36Sopenharmony_civoid camellia_decrypt_cbc_2way(const void *ctx, u8 *dst, const u8 *src)
126762306a36Sopenharmony_ci{
126862306a36Sopenharmony_ci	u8 buf[CAMELLIA_BLOCK_SIZE];
126962306a36Sopenharmony_ci	const u8 *iv = src;
127062306a36Sopenharmony_ci
127162306a36Sopenharmony_ci	if (dst == src)
127262306a36Sopenharmony_ci		iv = memcpy(buf, iv, sizeof(buf));
127362306a36Sopenharmony_ci	camellia_dec_blk_2way(ctx, dst, src);
127462306a36Sopenharmony_ci	crypto_xor(dst + CAMELLIA_BLOCK_SIZE, iv, CAMELLIA_BLOCK_SIZE);
127562306a36Sopenharmony_ci}
127662306a36Sopenharmony_ciEXPORT_SYMBOL_GPL(camellia_decrypt_cbc_2way);
127762306a36Sopenharmony_ci
127862306a36Sopenharmony_cistatic int ecb_encrypt(struct skcipher_request *req)
127962306a36Sopenharmony_ci{
128062306a36Sopenharmony_ci	ECB_WALK_START(req, CAMELLIA_BLOCK_SIZE, -1);
128162306a36Sopenharmony_ci	ECB_BLOCK(2, camellia_enc_blk_2way);
128262306a36Sopenharmony_ci	ECB_BLOCK(1, camellia_enc_blk);
128362306a36Sopenharmony_ci	ECB_WALK_END();
128462306a36Sopenharmony_ci}
128562306a36Sopenharmony_ci
128662306a36Sopenharmony_cistatic int ecb_decrypt(struct skcipher_request *req)
128762306a36Sopenharmony_ci{
128862306a36Sopenharmony_ci	ECB_WALK_START(req, CAMELLIA_BLOCK_SIZE, -1);
128962306a36Sopenharmony_ci	ECB_BLOCK(2, camellia_dec_blk_2way);
129062306a36Sopenharmony_ci	ECB_BLOCK(1, camellia_dec_blk);
129162306a36Sopenharmony_ci	ECB_WALK_END();
129262306a36Sopenharmony_ci}
129362306a36Sopenharmony_ci
129462306a36Sopenharmony_cistatic int cbc_encrypt(struct skcipher_request *req)
129562306a36Sopenharmony_ci{
129662306a36Sopenharmony_ci	CBC_WALK_START(req, CAMELLIA_BLOCK_SIZE, -1);
129762306a36Sopenharmony_ci	CBC_ENC_BLOCK(camellia_enc_blk);
129862306a36Sopenharmony_ci	CBC_WALK_END();
129962306a36Sopenharmony_ci}
130062306a36Sopenharmony_ci
130162306a36Sopenharmony_cistatic int cbc_decrypt(struct skcipher_request *req)
130262306a36Sopenharmony_ci{
130362306a36Sopenharmony_ci	CBC_WALK_START(req, CAMELLIA_BLOCK_SIZE, -1);
130462306a36Sopenharmony_ci	CBC_DEC_BLOCK(2, camellia_decrypt_cbc_2way);
130562306a36Sopenharmony_ci	CBC_DEC_BLOCK(1, camellia_dec_blk);
130662306a36Sopenharmony_ci	CBC_WALK_END();
130762306a36Sopenharmony_ci}
130862306a36Sopenharmony_ci
130962306a36Sopenharmony_cistatic struct crypto_alg camellia_cipher_alg = {
131062306a36Sopenharmony_ci	.cra_name		= "camellia",
131162306a36Sopenharmony_ci	.cra_driver_name	= "camellia-asm",
131262306a36Sopenharmony_ci	.cra_priority		= 200,
131362306a36Sopenharmony_ci	.cra_flags		= CRYPTO_ALG_TYPE_CIPHER,
131462306a36Sopenharmony_ci	.cra_blocksize		= CAMELLIA_BLOCK_SIZE,
131562306a36Sopenharmony_ci	.cra_ctxsize		= sizeof(struct camellia_ctx),
131662306a36Sopenharmony_ci	.cra_alignmask		= 0,
131762306a36Sopenharmony_ci	.cra_module		= THIS_MODULE,
131862306a36Sopenharmony_ci	.cra_u			= {
131962306a36Sopenharmony_ci		.cipher = {
132062306a36Sopenharmony_ci			.cia_min_keysize = CAMELLIA_MIN_KEY_SIZE,
132162306a36Sopenharmony_ci			.cia_max_keysize = CAMELLIA_MAX_KEY_SIZE,
132262306a36Sopenharmony_ci			.cia_setkey	 = camellia_setkey,
132362306a36Sopenharmony_ci			.cia_encrypt	 = camellia_encrypt,
132462306a36Sopenharmony_ci			.cia_decrypt	 = camellia_decrypt
132562306a36Sopenharmony_ci		}
132662306a36Sopenharmony_ci	}
132762306a36Sopenharmony_ci};
132862306a36Sopenharmony_ci
132962306a36Sopenharmony_cistatic struct skcipher_alg camellia_skcipher_algs[] = {
133062306a36Sopenharmony_ci	{
133162306a36Sopenharmony_ci		.base.cra_name		= "ecb(camellia)",
133262306a36Sopenharmony_ci		.base.cra_driver_name	= "ecb-camellia-asm",
133362306a36Sopenharmony_ci		.base.cra_priority	= 300,
133462306a36Sopenharmony_ci		.base.cra_blocksize	= CAMELLIA_BLOCK_SIZE,
133562306a36Sopenharmony_ci		.base.cra_ctxsize	= sizeof(struct camellia_ctx),
133662306a36Sopenharmony_ci		.base.cra_module	= THIS_MODULE,
133762306a36Sopenharmony_ci		.min_keysize		= CAMELLIA_MIN_KEY_SIZE,
133862306a36Sopenharmony_ci		.max_keysize		= CAMELLIA_MAX_KEY_SIZE,
133962306a36Sopenharmony_ci		.setkey			= camellia_setkey_skcipher,
134062306a36Sopenharmony_ci		.encrypt		= ecb_encrypt,
134162306a36Sopenharmony_ci		.decrypt		= ecb_decrypt,
134262306a36Sopenharmony_ci	}, {
134362306a36Sopenharmony_ci		.base.cra_name		= "cbc(camellia)",
134462306a36Sopenharmony_ci		.base.cra_driver_name	= "cbc-camellia-asm",
134562306a36Sopenharmony_ci		.base.cra_priority	= 300,
134662306a36Sopenharmony_ci		.base.cra_blocksize	= CAMELLIA_BLOCK_SIZE,
134762306a36Sopenharmony_ci		.base.cra_ctxsize	= sizeof(struct camellia_ctx),
134862306a36Sopenharmony_ci		.base.cra_module	= THIS_MODULE,
134962306a36Sopenharmony_ci		.min_keysize		= CAMELLIA_MIN_KEY_SIZE,
135062306a36Sopenharmony_ci		.max_keysize		= CAMELLIA_MAX_KEY_SIZE,
135162306a36Sopenharmony_ci		.ivsize			= CAMELLIA_BLOCK_SIZE,
135262306a36Sopenharmony_ci		.setkey			= camellia_setkey_skcipher,
135362306a36Sopenharmony_ci		.encrypt		= cbc_encrypt,
135462306a36Sopenharmony_ci		.decrypt		= cbc_decrypt,
135562306a36Sopenharmony_ci	}
135662306a36Sopenharmony_ci};
135762306a36Sopenharmony_ci
135862306a36Sopenharmony_cistatic bool is_blacklisted_cpu(void)
135962306a36Sopenharmony_ci{
136062306a36Sopenharmony_ci	if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
136162306a36Sopenharmony_ci		return false;
136262306a36Sopenharmony_ci
136362306a36Sopenharmony_ci	if (boot_cpu_data.x86 == 0x0f) {
136462306a36Sopenharmony_ci		/*
136562306a36Sopenharmony_ci		 * On Pentium 4, camellia-asm is slower than original assembler
136662306a36Sopenharmony_ci		 * implementation because excessive uses of 64bit rotate and
136762306a36Sopenharmony_ci		 * left-shifts (which are really slow on P4) needed to store and
136862306a36Sopenharmony_ci		 * handle 128bit block in two 64bit registers.
136962306a36Sopenharmony_ci		 */
137062306a36Sopenharmony_ci		return true;
137162306a36Sopenharmony_ci	}
137262306a36Sopenharmony_ci
137362306a36Sopenharmony_ci	return false;
137462306a36Sopenharmony_ci}
137562306a36Sopenharmony_ci
137662306a36Sopenharmony_cistatic int force;
137762306a36Sopenharmony_cimodule_param(force, int, 0);
137862306a36Sopenharmony_ciMODULE_PARM_DESC(force, "Force module load, ignore CPU blacklist");
137962306a36Sopenharmony_ci
138062306a36Sopenharmony_cistatic int __init camellia_init(void)
138162306a36Sopenharmony_ci{
138262306a36Sopenharmony_ci	int err;
138362306a36Sopenharmony_ci
138462306a36Sopenharmony_ci	if (!force && is_blacklisted_cpu()) {
138562306a36Sopenharmony_ci		printk(KERN_INFO
138662306a36Sopenharmony_ci			"camellia-x86_64: performance on this CPU "
138762306a36Sopenharmony_ci			"would be suboptimal: disabling "
138862306a36Sopenharmony_ci			"camellia-x86_64.\n");
138962306a36Sopenharmony_ci		return -ENODEV;
139062306a36Sopenharmony_ci	}
139162306a36Sopenharmony_ci
139262306a36Sopenharmony_ci	err = crypto_register_alg(&camellia_cipher_alg);
139362306a36Sopenharmony_ci	if (err)
139462306a36Sopenharmony_ci		return err;
139562306a36Sopenharmony_ci
139662306a36Sopenharmony_ci	err = crypto_register_skciphers(camellia_skcipher_algs,
139762306a36Sopenharmony_ci					ARRAY_SIZE(camellia_skcipher_algs));
139862306a36Sopenharmony_ci	if (err)
139962306a36Sopenharmony_ci		crypto_unregister_alg(&camellia_cipher_alg);
140062306a36Sopenharmony_ci
140162306a36Sopenharmony_ci	return err;
140262306a36Sopenharmony_ci}
140362306a36Sopenharmony_ci
140462306a36Sopenharmony_cistatic void __exit camellia_fini(void)
140562306a36Sopenharmony_ci{
140662306a36Sopenharmony_ci	crypto_unregister_alg(&camellia_cipher_alg);
140762306a36Sopenharmony_ci	crypto_unregister_skciphers(camellia_skcipher_algs,
140862306a36Sopenharmony_ci				    ARRAY_SIZE(camellia_skcipher_algs));
140962306a36Sopenharmony_ci}
141062306a36Sopenharmony_ci
141162306a36Sopenharmony_cimodule_init(camellia_init);
141262306a36Sopenharmony_cimodule_exit(camellia_fini);
141362306a36Sopenharmony_ci
141462306a36Sopenharmony_ciMODULE_LICENSE("GPL");
141562306a36Sopenharmony_ciMODULE_DESCRIPTION("Camellia Cipher Algorithm, asm optimized");
141662306a36Sopenharmony_ciMODULE_ALIAS_CRYPTO("camellia");
141762306a36Sopenharmony_ciMODULE_ALIAS_CRYPTO("camellia-asm");
1418