18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Copyright (C) 2006
48c2ecf20Sopenharmony_ci * NTT (Nippon Telegraph and Telephone Corporation).
58c2ecf20Sopenharmony_ci */
68c2ecf20Sopenharmony_ci
78c2ecf20Sopenharmony_ci/*
88c2ecf20Sopenharmony_ci * Algorithm Specification
98c2ecf20Sopenharmony_ci *  https://info.isl.ntt.co.jp/crypt/eng/camellia/specifications.html
108c2ecf20Sopenharmony_ci */
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci/*
138c2ecf20Sopenharmony_ci *
148c2ecf20Sopenharmony_ci * NOTE --- NOTE --- NOTE --- NOTE
158c2ecf20Sopenharmony_ci * This implementation assumes that all memory addresses passed
168c2ecf20Sopenharmony_ci * as parameters are four-byte aligned.
178c2ecf20Sopenharmony_ci *
188c2ecf20Sopenharmony_ci */
198c2ecf20Sopenharmony_ci
208c2ecf20Sopenharmony_ci#include <linux/crypto.h>
218c2ecf20Sopenharmony_ci#include <linux/errno.h>
228c2ecf20Sopenharmony_ci#include <linux/init.h>
238c2ecf20Sopenharmony_ci#include <linux/kernel.h>
248c2ecf20Sopenharmony_ci#include <linux/module.h>
258c2ecf20Sopenharmony_ci#include <linux/bitops.h>
268c2ecf20Sopenharmony_ci#include <asm/unaligned.h>
278c2ecf20Sopenharmony_ci
288c2ecf20Sopenharmony_cistatic const u32 camellia_sp1110[256] = {
298c2ecf20Sopenharmony_ci	0x70707000, 0x82828200, 0x2c2c2c00, 0xececec00,
308c2ecf20Sopenharmony_ci	0xb3b3b300, 0x27272700, 0xc0c0c000, 0xe5e5e500,
318c2ecf20Sopenharmony_ci	0xe4e4e400, 0x85858500, 0x57575700, 0x35353500,
328c2ecf20Sopenharmony_ci	0xeaeaea00, 0x0c0c0c00, 0xaeaeae00, 0x41414100,
338c2ecf20Sopenharmony_ci	0x23232300, 0xefefef00, 0x6b6b6b00, 0x93939300,
348c2ecf20Sopenharmony_ci	0x45454500, 0x19191900, 0xa5a5a500, 0x21212100,
358c2ecf20Sopenharmony_ci	0xededed00, 0x0e0e0e00, 0x4f4f4f00, 0x4e4e4e00,
368c2ecf20Sopenharmony_ci	0x1d1d1d00, 0x65656500, 0x92929200, 0xbdbdbd00,
378c2ecf20Sopenharmony_ci	0x86868600, 0xb8b8b800, 0xafafaf00, 0x8f8f8f00,
388c2ecf20Sopenharmony_ci	0x7c7c7c00, 0xebebeb00, 0x1f1f1f00, 0xcecece00,
398c2ecf20Sopenharmony_ci	0x3e3e3e00, 0x30303000, 0xdcdcdc00, 0x5f5f5f00,
408c2ecf20Sopenharmony_ci	0x5e5e5e00, 0xc5c5c500, 0x0b0b0b00, 0x1a1a1a00,
418c2ecf20Sopenharmony_ci	0xa6a6a600, 0xe1e1e100, 0x39393900, 0xcacaca00,
428c2ecf20Sopenharmony_ci	0xd5d5d500, 0x47474700, 0x5d5d5d00, 0x3d3d3d00,
438c2ecf20Sopenharmony_ci	0xd9d9d900, 0x01010100, 0x5a5a5a00, 0xd6d6d600,
448c2ecf20Sopenharmony_ci	0x51515100, 0x56565600, 0x6c6c6c00, 0x4d4d4d00,
458c2ecf20Sopenharmony_ci	0x8b8b8b00, 0x0d0d0d00, 0x9a9a9a00, 0x66666600,
468c2ecf20Sopenharmony_ci	0xfbfbfb00, 0xcccccc00, 0xb0b0b000, 0x2d2d2d00,
478c2ecf20Sopenharmony_ci	0x74747400, 0x12121200, 0x2b2b2b00, 0x20202000,
488c2ecf20Sopenharmony_ci	0xf0f0f000, 0xb1b1b100, 0x84848400, 0x99999900,
498c2ecf20Sopenharmony_ci	0xdfdfdf00, 0x4c4c4c00, 0xcbcbcb00, 0xc2c2c200,
508c2ecf20Sopenharmony_ci	0x34343400, 0x7e7e7e00, 0x76767600, 0x05050500,
518c2ecf20Sopenharmony_ci	0x6d6d6d00, 0xb7b7b700, 0xa9a9a900, 0x31313100,
528c2ecf20Sopenharmony_ci	0xd1d1d100, 0x17171700, 0x04040400, 0xd7d7d700,
538c2ecf20Sopenharmony_ci	0x14141400, 0x58585800, 0x3a3a3a00, 0x61616100,
548c2ecf20Sopenharmony_ci	0xdedede00, 0x1b1b1b00, 0x11111100, 0x1c1c1c00,
558c2ecf20Sopenharmony_ci	0x32323200, 0x0f0f0f00, 0x9c9c9c00, 0x16161600,
568c2ecf20Sopenharmony_ci	0x53535300, 0x18181800, 0xf2f2f200, 0x22222200,
578c2ecf20Sopenharmony_ci	0xfefefe00, 0x44444400, 0xcfcfcf00, 0xb2b2b200,
588c2ecf20Sopenharmony_ci	0xc3c3c300, 0xb5b5b500, 0x7a7a7a00, 0x91919100,
598c2ecf20Sopenharmony_ci	0x24242400, 0x08080800, 0xe8e8e800, 0xa8a8a800,
608c2ecf20Sopenharmony_ci	0x60606000, 0xfcfcfc00, 0x69696900, 0x50505000,
618c2ecf20Sopenharmony_ci	0xaaaaaa00, 0xd0d0d000, 0xa0a0a000, 0x7d7d7d00,
628c2ecf20Sopenharmony_ci	0xa1a1a100, 0x89898900, 0x62626200, 0x97979700,
638c2ecf20Sopenharmony_ci	0x54545400, 0x5b5b5b00, 0x1e1e1e00, 0x95959500,
648c2ecf20Sopenharmony_ci	0xe0e0e000, 0xffffff00, 0x64646400, 0xd2d2d200,
658c2ecf20Sopenharmony_ci	0x10101000, 0xc4c4c400, 0x00000000, 0x48484800,
668c2ecf20Sopenharmony_ci	0xa3a3a300, 0xf7f7f700, 0x75757500, 0xdbdbdb00,
678c2ecf20Sopenharmony_ci	0x8a8a8a00, 0x03030300, 0xe6e6e600, 0xdadada00,
688c2ecf20Sopenharmony_ci	0x09090900, 0x3f3f3f00, 0xdddddd00, 0x94949400,
698c2ecf20Sopenharmony_ci	0x87878700, 0x5c5c5c00, 0x83838300, 0x02020200,
708c2ecf20Sopenharmony_ci	0xcdcdcd00, 0x4a4a4a00, 0x90909000, 0x33333300,
718c2ecf20Sopenharmony_ci	0x73737300, 0x67676700, 0xf6f6f600, 0xf3f3f300,
728c2ecf20Sopenharmony_ci	0x9d9d9d00, 0x7f7f7f00, 0xbfbfbf00, 0xe2e2e200,
738c2ecf20Sopenharmony_ci	0x52525200, 0x9b9b9b00, 0xd8d8d800, 0x26262600,
748c2ecf20Sopenharmony_ci	0xc8c8c800, 0x37373700, 0xc6c6c600, 0x3b3b3b00,
758c2ecf20Sopenharmony_ci	0x81818100, 0x96969600, 0x6f6f6f00, 0x4b4b4b00,
768c2ecf20Sopenharmony_ci	0x13131300, 0xbebebe00, 0x63636300, 0x2e2e2e00,
778c2ecf20Sopenharmony_ci	0xe9e9e900, 0x79797900, 0xa7a7a700, 0x8c8c8c00,
788c2ecf20Sopenharmony_ci	0x9f9f9f00, 0x6e6e6e00, 0xbcbcbc00, 0x8e8e8e00,
798c2ecf20Sopenharmony_ci	0x29292900, 0xf5f5f500, 0xf9f9f900, 0xb6b6b600,
808c2ecf20Sopenharmony_ci	0x2f2f2f00, 0xfdfdfd00, 0xb4b4b400, 0x59595900,
818c2ecf20Sopenharmony_ci	0x78787800, 0x98989800, 0x06060600, 0x6a6a6a00,
828c2ecf20Sopenharmony_ci	0xe7e7e700, 0x46464600, 0x71717100, 0xbababa00,
838c2ecf20Sopenharmony_ci	0xd4d4d400, 0x25252500, 0xababab00, 0x42424200,
848c2ecf20Sopenharmony_ci	0x88888800, 0xa2a2a200, 0x8d8d8d00, 0xfafafa00,
858c2ecf20Sopenharmony_ci	0x72727200, 0x07070700, 0xb9b9b900, 0x55555500,
868c2ecf20Sopenharmony_ci	0xf8f8f800, 0xeeeeee00, 0xacacac00, 0x0a0a0a00,
878c2ecf20Sopenharmony_ci	0x36363600, 0x49494900, 0x2a2a2a00, 0x68686800,
888c2ecf20Sopenharmony_ci	0x3c3c3c00, 0x38383800, 0xf1f1f100, 0xa4a4a400,
898c2ecf20Sopenharmony_ci	0x40404000, 0x28282800, 0xd3d3d300, 0x7b7b7b00,
908c2ecf20Sopenharmony_ci	0xbbbbbb00, 0xc9c9c900, 0x43434300, 0xc1c1c100,
918c2ecf20Sopenharmony_ci	0x15151500, 0xe3e3e300, 0xadadad00, 0xf4f4f400,
928c2ecf20Sopenharmony_ci	0x77777700, 0xc7c7c700, 0x80808000, 0x9e9e9e00,
938c2ecf20Sopenharmony_ci};
948c2ecf20Sopenharmony_ci
958c2ecf20Sopenharmony_cistatic const u32 camellia_sp0222[256] = {
968c2ecf20Sopenharmony_ci	0x00e0e0e0, 0x00050505, 0x00585858, 0x00d9d9d9,
978c2ecf20Sopenharmony_ci	0x00676767, 0x004e4e4e, 0x00818181, 0x00cbcbcb,
988c2ecf20Sopenharmony_ci	0x00c9c9c9, 0x000b0b0b, 0x00aeaeae, 0x006a6a6a,
998c2ecf20Sopenharmony_ci	0x00d5d5d5, 0x00181818, 0x005d5d5d, 0x00828282,
1008c2ecf20Sopenharmony_ci	0x00464646, 0x00dfdfdf, 0x00d6d6d6, 0x00272727,
1018c2ecf20Sopenharmony_ci	0x008a8a8a, 0x00323232, 0x004b4b4b, 0x00424242,
1028c2ecf20Sopenharmony_ci	0x00dbdbdb, 0x001c1c1c, 0x009e9e9e, 0x009c9c9c,
1038c2ecf20Sopenharmony_ci	0x003a3a3a, 0x00cacaca, 0x00252525, 0x007b7b7b,
1048c2ecf20Sopenharmony_ci	0x000d0d0d, 0x00717171, 0x005f5f5f, 0x001f1f1f,
1058c2ecf20Sopenharmony_ci	0x00f8f8f8, 0x00d7d7d7, 0x003e3e3e, 0x009d9d9d,
1068c2ecf20Sopenharmony_ci	0x007c7c7c, 0x00606060, 0x00b9b9b9, 0x00bebebe,
1078c2ecf20Sopenharmony_ci	0x00bcbcbc, 0x008b8b8b, 0x00161616, 0x00343434,
1088c2ecf20Sopenharmony_ci	0x004d4d4d, 0x00c3c3c3, 0x00727272, 0x00959595,
1098c2ecf20Sopenharmony_ci	0x00ababab, 0x008e8e8e, 0x00bababa, 0x007a7a7a,
1108c2ecf20Sopenharmony_ci	0x00b3b3b3, 0x00020202, 0x00b4b4b4, 0x00adadad,
1118c2ecf20Sopenharmony_ci	0x00a2a2a2, 0x00acacac, 0x00d8d8d8, 0x009a9a9a,
1128c2ecf20Sopenharmony_ci	0x00171717, 0x001a1a1a, 0x00353535, 0x00cccccc,
1138c2ecf20Sopenharmony_ci	0x00f7f7f7, 0x00999999, 0x00616161, 0x005a5a5a,
1148c2ecf20Sopenharmony_ci	0x00e8e8e8, 0x00242424, 0x00565656, 0x00404040,
1158c2ecf20Sopenharmony_ci	0x00e1e1e1, 0x00636363, 0x00090909, 0x00333333,
1168c2ecf20Sopenharmony_ci	0x00bfbfbf, 0x00989898, 0x00979797, 0x00858585,
1178c2ecf20Sopenharmony_ci	0x00686868, 0x00fcfcfc, 0x00ececec, 0x000a0a0a,
1188c2ecf20Sopenharmony_ci	0x00dadada, 0x006f6f6f, 0x00535353, 0x00626262,
1198c2ecf20Sopenharmony_ci	0x00a3a3a3, 0x002e2e2e, 0x00080808, 0x00afafaf,
1208c2ecf20Sopenharmony_ci	0x00282828, 0x00b0b0b0, 0x00747474, 0x00c2c2c2,
1218c2ecf20Sopenharmony_ci	0x00bdbdbd, 0x00363636, 0x00222222, 0x00383838,
1228c2ecf20Sopenharmony_ci	0x00646464, 0x001e1e1e, 0x00393939, 0x002c2c2c,
1238c2ecf20Sopenharmony_ci	0x00a6a6a6, 0x00303030, 0x00e5e5e5, 0x00444444,
1248c2ecf20Sopenharmony_ci	0x00fdfdfd, 0x00888888, 0x009f9f9f, 0x00656565,
1258c2ecf20Sopenharmony_ci	0x00878787, 0x006b6b6b, 0x00f4f4f4, 0x00232323,
1268c2ecf20Sopenharmony_ci	0x00484848, 0x00101010, 0x00d1d1d1, 0x00515151,
1278c2ecf20Sopenharmony_ci	0x00c0c0c0, 0x00f9f9f9, 0x00d2d2d2, 0x00a0a0a0,
1288c2ecf20Sopenharmony_ci	0x00555555, 0x00a1a1a1, 0x00414141, 0x00fafafa,
1298c2ecf20Sopenharmony_ci	0x00434343, 0x00131313, 0x00c4c4c4, 0x002f2f2f,
1308c2ecf20Sopenharmony_ci	0x00a8a8a8, 0x00b6b6b6, 0x003c3c3c, 0x002b2b2b,
1318c2ecf20Sopenharmony_ci	0x00c1c1c1, 0x00ffffff, 0x00c8c8c8, 0x00a5a5a5,
1328c2ecf20Sopenharmony_ci	0x00202020, 0x00898989, 0x00000000, 0x00909090,
1338c2ecf20Sopenharmony_ci	0x00474747, 0x00efefef, 0x00eaeaea, 0x00b7b7b7,
1348c2ecf20Sopenharmony_ci	0x00151515, 0x00060606, 0x00cdcdcd, 0x00b5b5b5,
1358c2ecf20Sopenharmony_ci	0x00121212, 0x007e7e7e, 0x00bbbbbb, 0x00292929,
1368c2ecf20Sopenharmony_ci	0x000f0f0f, 0x00b8b8b8, 0x00070707, 0x00040404,
1378c2ecf20Sopenharmony_ci	0x009b9b9b, 0x00949494, 0x00212121, 0x00666666,
1388c2ecf20Sopenharmony_ci	0x00e6e6e6, 0x00cecece, 0x00ededed, 0x00e7e7e7,
1398c2ecf20Sopenharmony_ci	0x003b3b3b, 0x00fefefe, 0x007f7f7f, 0x00c5c5c5,
1408c2ecf20Sopenharmony_ci	0x00a4a4a4, 0x00373737, 0x00b1b1b1, 0x004c4c4c,
1418c2ecf20Sopenharmony_ci	0x00919191, 0x006e6e6e, 0x008d8d8d, 0x00767676,
1428c2ecf20Sopenharmony_ci	0x00030303, 0x002d2d2d, 0x00dedede, 0x00969696,
1438c2ecf20Sopenharmony_ci	0x00262626, 0x007d7d7d, 0x00c6c6c6, 0x005c5c5c,
1448c2ecf20Sopenharmony_ci	0x00d3d3d3, 0x00f2f2f2, 0x004f4f4f, 0x00191919,
1458c2ecf20Sopenharmony_ci	0x003f3f3f, 0x00dcdcdc, 0x00797979, 0x001d1d1d,
1468c2ecf20Sopenharmony_ci	0x00525252, 0x00ebebeb, 0x00f3f3f3, 0x006d6d6d,
1478c2ecf20Sopenharmony_ci	0x005e5e5e, 0x00fbfbfb, 0x00696969, 0x00b2b2b2,
1488c2ecf20Sopenharmony_ci	0x00f0f0f0, 0x00313131, 0x000c0c0c, 0x00d4d4d4,
1498c2ecf20Sopenharmony_ci	0x00cfcfcf, 0x008c8c8c, 0x00e2e2e2, 0x00757575,
1508c2ecf20Sopenharmony_ci	0x00a9a9a9, 0x004a4a4a, 0x00575757, 0x00848484,
1518c2ecf20Sopenharmony_ci	0x00111111, 0x00454545, 0x001b1b1b, 0x00f5f5f5,
1528c2ecf20Sopenharmony_ci	0x00e4e4e4, 0x000e0e0e, 0x00737373, 0x00aaaaaa,
1538c2ecf20Sopenharmony_ci	0x00f1f1f1, 0x00dddddd, 0x00595959, 0x00141414,
1548c2ecf20Sopenharmony_ci	0x006c6c6c, 0x00929292, 0x00545454, 0x00d0d0d0,
1558c2ecf20Sopenharmony_ci	0x00787878, 0x00707070, 0x00e3e3e3, 0x00494949,
1568c2ecf20Sopenharmony_ci	0x00808080, 0x00505050, 0x00a7a7a7, 0x00f6f6f6,
1578c2ecf20Sopenharmony_ci	0x00777777, 0x00939393, 0x00868686, 0x00838383,
1588c2ecf20Sopenharmony_ci	0x002a2a2a, 0x00c7c7c7, 0x005b5b5b, 0x00e9e9e9,
1598c2ecf20Sopenharmony_ci	0x00eeeeee, 0x008f8f8f, 0x00010101, 0x003d3d3d,
1608c2ecf20Sopenharmony_ci};
1618c2ecf20Sopenharmony_ci
1628c2ecf20Sopenharmony_cistatic const u32 camellia_sp3033[256] = {
1638c2ecf20Sopenharmony_ci	0x38003838, 0x41004141, 0x16001616, 0x76007676,
1648c2ecf20Sopenharmony_ci	0xd900d9d9, 0x93009393, 0x60006060, 0xf200f2f2,
1658c2ecf20Sopenharmony_ci	0x72007272, 0xc200c2c2, 0xab00abab, 0x9a009a9a,
1668c2ecf20Sopenharmony_ci	0x75007575, 0x06000606, 0x57005757, 0xa000a0a0,
1678c2ecf20Sopenharmony_ci	0x91009191, 0xf700f7f7, 0xb500b5b5, 0xc900c9c9,
1688c2ecf20Sopenharmony_ci	0xa200a2a2, 0x8c008c8c, 0xd200d2d2, 0x90009090,
1698c2ecf20Sopenharmony_ci	0xf600f6f6, 0x07000707, 0xa700a7a7, 0x27002727,
1708c2ecf20Sopenharmony_ci	0x8e008e8e, 0xb200b2b2, 0x49004949, 0xde00dede,
1718c2ecf20Sopenharmony_ci	0x43004343, 0x5c005c5c, 0xd700d7d7, 0xc700c7c7,
1728c2ecf20Sopenharmony_ci	0x3e003e3e, 0xf500f5f5, 0x8f008f8f, 0x67006767,
1738c2ecf20Sopenharmony_ci	0x1f001f1f, 0x18001818, 0x6e006e6e, 0xaf00afaf,
1748c2ecf20Sopenharmony_ci	0x2f002f2f, 0xe200e2e2, 0x85008585, 0x0d000d0d,
1758c2ecf20Sopenharmony_ci	0x53005353, 0xf000f0f0, 0x9c009c9c, 0x65006565,
1768c2ecf20Sopenharmony_ci	0xea00eaea, 0xa300a3a3, 0xae00aeae, 0x9e009e9e,
1778c2ecf20Sopenharmony_ci	0xec00ecec, 0x80008080, 0x2d002d2d, 0x6b006b6b,
1788c2ecf20Sopenharmony_ci	0xa800a8a8, 0x2b002b2b, 0x36003636, 0xa600a6a6,
1798c2ecf20Sopenharmony_ci	0xc500c5c5, 0x86008686, 0x4d004d4d, 0x33003333,
1808c2ecf20Sopenharmony_ci	0xfd00fdfd, 0x66006666, 0x58005858, 0x96009696,
1818c2ecf20Sopenharmony_ci	0x3a003a3a, 0x09000909, 0x95009595, 0x10001010,
1828c2ecf20Sopenharmony_ci	0x78007878, 0xd800d8d8, 0x42004242, 0xcc00cccc,
1838c2ecf20Sopenharmony_ci	0xef00efef, 0x26002626, 0xe500e5e5, 0x61006161,
1848c2ecf20Sopenharmony_ci	0x1a001a1a, 0x3f003f3f, 0x3b003b3b, 0x82008282,
1858c2ecf20Sopenharmony_ci	0xb600b6b6, 0xdb00dbdb, 0xd400d4d4, 0x98009898,
1868c2ecf20Sopenharmony_ci	0xe800e8e8, 0x8b008b8b, 0x02000202, 0xeb00ebeb,
1878c2ecf20Sopenharmony_ci	0x0a000a0a, 0x2c002c2c, 0x1d001d1d, 0xb000b0b0,
1888c2ecf20Sopenharmony_ci	0x6f006f6f, 0x8d008d8d, 0x88008888, 0x0e000e0e,
1898c2ecf20Sopenharmony_ci	0x19001919, 0x87008787, 0x4e004e4e, 0x0b000b0b,
1908c2ecf20Sopenharmony_ci	0xa900a9a9, 0x0c000c0c, 0x79007979, 0x11001111,
1918c2ecf20Sopenharmony_ci	0x7f007f7f, 0x22002222, 0xe700e7e7, 0x59005959,
1928c2ecf20Sopenharmony_ci	0xe100e1e1, 0xda00dada, 0x3d003d3d, 0xc800c8c8,
1938c2ecf20Sopenharmony_ci	0x12001212, 0x04000404, 0x74007474, 0x54005454,
1948c2ecf20Sopenharmony_ci	0x30003030, 0x7e007e7e, 0xb400b4b4, 0x28002828,
1958c2ecf20Sopenharmony_ci	0x55005555, 0x68006868, 0x50005050, 0xbe00bebe,
1968c2ecf20Sopenharmony_ci	0xd000d0d0, 0xc400c4c4, 0x31003131, 0xcb00cbcb,
1978c2ecf20Sopenharmony_ci	0x2a002a2a, 0xad00adad, 0x0f000f0f, 0xca00caca,
1988c2ecf20Sopenharmony_ci	0x70007070, 0xff00ffff, 0x32003232, 0x69006969,
1998c2ecf20Sopenharmony_ci	0x08000808, 0x62006262, 0x00000000, 0x24002424,
2008c2ecf20Sopenharmony_ci	0xd100d1d1, 0xfb00fbfb, 0xba00baba, 0xed00eded,
2018c2ecf20Sopenharmony_ci	0x45004545, 0x81008181, 0x73007373, 0x6d006d6d,
2028c2ecf20Sopenharmony_ci	0x84008484, 0x9f009f9f, 0xee00eeee, 0x4a004a4a,
2038c2ecf20Sopenharmony_ci	0xc300c3c3, 0x2e002e2e, 0xc100c1c1, 0x01000101,
2048c2ecf20Sopenharmony_ci	0xe600e6e6, 0x25002525, 0x48004848, 0x99009999,
2058c2ecf20Sopenharmony_ci	0xb900b9b9, 0xb300b3b3, 0x7b007b7b, 0xf900f9f9,
2068c2ecf20Sopenharmony_ci	0xce00cece, 0xbf00bfbf, 0xdf00dfdf, 0x71007171,
2078c2ecf20Sopenharmony_ci	0x29002929, 0xcd00cdcd, 0x6c006c6c, 0x13001313,
2088c2ecf20Sopenharmony_ci	0x64006464, 0x9b009b9b, 0x63006363, 0x9d009d9d,
2098c2ecf20Sopenharmony_ci	0xc000c0c0, 0x4b004b4b, 0xb700b7b7, 0xa500a5a5,
2108c2ecf20Sopenharmony_ci	0x89008989, 0x5f005f5f, 0xb100b1b1, 0x17001717,
2118c2ecf20Sopenharmony_ci	0xf400f4f4, 0xbc00bcbc, 0xd300d3d3, 0x46004646,
2128c2ecf20Sopenharmony_ci	0xcf00cfcf, 0x37003737, 0x5e005e5e, 0x47004747,
2138c2ecf20Sopenharmony_ci	0x94009494, 0xfa00fafa, 0xfc00fcfc, 0x5b005b5b,
2148c2ecf20Sopenharmony_ci	0x97009797, 0xfe00fefe, 0x5a005a5a, 0xac00acac,
2158c2ecf20Sopenharmony_ci	0x3c003c3c, 0x4c004c4c, 0x03000303, 0x35003535,
2168c2ecf20Sopenharmony_ci	0xf300f3f3, 0x23002323, 0xb800b8b8, 0x5d005d5d,
2178c2ecf20Sopenharmony_ci	0x6a006a6a, 0x92009292, 0xd500d5d5, 0x21002121,
2188c2ecf20Sopenharmony_ci	0x44004444, 0x51005151, 0xc600c6c6, 0x7d007d7d,
2198c2ecf20Sopenharmony_ci	0x39003939, 0x83008383, 0xdc00dcdc, 0xaa00aaaa,
2208c2ecf20Sopenharmony_ci	0x7c007c7c, 0x77007777, 0x56005656, 0x05000505,
2218c2ecf20Sopenharmony_ci	0x1b001b1b, 0xa400a4a4, 0x15001515, 0x34003434,
2228c2ecf20Sopenharmony_ci	0x1e001e1e, 0x1c001c1c, 0xf800f8f8, 0x52005252,
2238c2ecf20Sopenharmony_ci	0x20002020, 0x14001414, 0xe900e9e9, 0xbd00bdbd,
2248c2ecf20Sopenharmony_ci	0xdd00dddd, 0xe400e4e4, 0xa100a1a1, 0xe000e0e0,
2258c2ecf20Sopenharmony_ci	0x8a008a8a, 0xf100f1f1, 0xd600d6d6, 0x7a007a7a,
2268c2ecf20Sopenharmony_ci	0xbb00bbbb, 0xe300e3e3, 0x40004040, 0x4f004f4f,
2278c2ecf20Sopenharmony_ci};
2288c2ecf20Sopenharmony_ci
2298c2ecf20Sopenharmony_cistatic const u32 camellia_sp4404[256] = {
2308c2ecf20Sopenharmony_ci	0x70700070, 0x2c2c002c, 0xb3b300b3, 0xc0c000c0,
2318c2ecf20Sopenharmony_ci	0xe4e400e4, 0x57570057, 0xeaea00ea, 0xaeae00ae,
2328c2ecf20Sopenharmony_ci	0x23230023, 0x6b6b006b, 0x45450045, 0xa5a500a5,
2338c2ecf20Sopenharmony_ci	0xeded00ed, 0x4f4f004f, 0x1d1d001d, 0x92920092,
2348c2ecf20Sopenharmony_ci	0x86860086, 0xafaf00af, 0x7c7c007c, 0x1f1f001f,
2358c2ecf20Sopenharmony_ci	0x3e3e003e, 0xdcdc00dc, 0x5e5e005e, 0x0b0b000b,
2368c2ecf20Sopenharmony_ci	0xa6a600a6, 0x39390039, 0xd5d500d5, 0x5d5d005d,
2378c2ecf20Sopenharmony_ci	0xd9d900d9, 0x5a5a005a, 0x51510051, 0x6c6c006c,
2388c2ecf20Sopenharmony_ci	0x8b8b008b, 0x9a9a009a, 0xfbfb00fb, 0xb0b000b0,
2398c2ecf20Sopenharmony_ci	0x74740074, 0x2b2b002b, 0xf0f000f0, 0x84840084,
2408c2ecf20Sopenharmony_ci	0xdfdf00df, 0xcbcb00cb, 0x34340034, 0x76760076,
2418c2ecf20Sopenharmony_ci	0x6d6d006d, 0xa9a900a9, 0xd1d100d1, 0x04040004,
2428c2ecf20Sopenharmony_ci	0x14140014, 0x3a3a003a, 0xdede00de, 0x11110011,
2438c2ecf20Sopenharmony_ci	0x32320032, 0x9c9c009c, 0x53530053, 0xf2f200f2,
2448c2ecf20Sopenharmony_ci	0xfefe00fe, 0xcfcf00cf, 0xc3c300c3, 0x7a7a007a,
2458c2ecf20Sopenharmony_ci	0x24240024, 0xe8e800e8, 0x60600060, 0x69690069,
2468c2ecf20Sopenharmony_ci	0xaaaa00aa, 0xa0a000a0, 0xa1a100a1, 0x62620062,
2478c2ecf20Sopenharmony_ci	0x54540054, 0x1e1e001e, 0xe0e000e0, 0x64640064,
2488c2ecf20Sopenharmony_ci	0x10100010, 0x00000000, 0xa3a300a3, 0x75750075,
2498c2ecf20Sopenharmony_ci	0x8a8a008a, 0xe6e600e6, 0x09090009, 0xdddd00dd,
2508c2ecf20Sopenharmony_ci	0x87870087, 0x83830083, 0xcdcd00cd, 0x90900090,
2518c2ecf20Sopenharmony_ci	0x73730073, 0xf6f600f6, 0x9d9d009d, 0xbfbf00bf,
2528c2ecf20Sopenharmony_ci	0x52520052, 0xd8d800d8, 0xc8c800c8, 0xc6c600c6,
2538c2ecf20Sopenharmony_ci	0x81810081, 0x6f6f006f, 0x13130013, 0x63630063,
2548c2ecf20Sopenharmony_ci	0xe9e900e9, 0xa7a700a7, 0x9f9f009f, 0xbcbc00bc,
2558c2ecf20Sopenharmony_ci	0x29290029, 0xf9f900f9, 0x2f2f002f, 0xb4b400b4,
2568c2ecf20Sopenharmony_ci	0x78780078, 0x06060006, 0xe7e700e7, 0x71710071,
2578c2ecf20Sopenharmony_ci	0xd4d400d4, 0xabab00ab, 0x88880088, 0x8d8d008d,
2588c2ecf20Sopenharmony_ci	0x72720072, 0xb9b900b9, 0xf8f800f8, 0xacac00ac,
2598c2ecf20Sopenharmony_ci	0x36360036, 0x2a2a002a, 0x3c3c003c, 0xf1f100f1,
2608c2ecf20Sopenharmony_ci	0x40400040, 0xd3d300d3, 0xbbbb00bb, 0x43430043,
2618c2ecf20Sopenharmony_ci	0x15150015, 0xadad00ad, 0x77770077, 0x80800080,
2628c2ecf20Sopenharmony_ci	0x82820082, 0xecec00ec, 0x27270027, 0xe5e500e5,
2638c2ecf20Sopenharmony_ci	0x85850085, 0x35350035, 0x0c0c000c, 0x41410041,
2648c2ecf20Sopenharmony_ci	0xefef00ef, 0x93930093, 0x19190019, 0x21210021,
2658c2ecf20Sopenharmony_ci	0x0e0e000e, 0x4e4e004e, 0x65650065, 0xbdbd00bd,
2668c2ecf20Sopenharmony_ci	0xb8b800b8, 0x8f8f008f, 0xebeb00eb, 0xcece00ce,
2678c2ecf20Sopenharmony_ci	0x30300030, 0x5f5f005f, 0xc5c500c5, 0x1a1a001a,
2688c2ecf20Sopenharmony_ci	0xe1e100e1, 0xcaca00ca, 0x47470047, 0x3d3d003d,
2698c2ecf20Sopenharmony_ci	0x01010001, 0xd6d600d6, 0x56560056, 0x4d4d004d,
2708c2ecf20Sopenharmony_ci	0x0d0d000d, 0x66660066, 0xcccc00cc, 0x2d2d002d,
2718c2ecf20Sopenharmony_ci	0x12120012, 0x20200020, 0xb1b100b1, 0x99990099,
2728c2ecf20Sopenharmony_ci	0x4c4c004c, 0xc2c200c2, 0x7e7e007e, 0x05050005,
2738c2ecf20Sopenharmony_ci	0xb7b700b7, 0x31310031, 0x17170017, 0xd7d700d7,
2748c2ecf20Sopenharmony_ci	0x58580058, 0x61610061, 0x1b1b001b, 0x1c1c001c,
2758c2ecf20Sopenharmony_ci	0x0f0f000f, 0x16160016, 0x18180018, 0x22220022,
2768c2ecf20Sopenharmony_ci	0x44440044, 0xb2b200b2, 0xb5b500b5, 0x91910091,
2778c2ecf20Sopenharmony_ci	0x08080008, 0xa8a800a8, 0xfcfc00fc, 0x50500050,
2788c2ecf20Sopenharmony_ci	0xd0d000d0, 0x7d7d007d, 0x89890089, 0x97970097,
2798c2ecf20Sopenharmony_ci	0x5b5b005b, 0x95950095, 0xffff00ff, 0xd2d200d2,
2808c2ecf20Sopenharmony_ci	0xc4c400c4, 0x48480048, 0xf7f700f7, 0xdbdb00db,
2818c2ecf20Sopenharmony_ci	0x03030003, 0xdada00da, 0x3f3f003f, 0x94940094,
2828c2ecf20Sopenharmony_ci	0x5c5c005c, 0x02020002, 0x4a4a004a, 0x33330033,
2838c2ecf20Sopenharmony_ci	0x67670067, 0xf3f300f3, 0x7f7f007f, 0xe2e200e2,
2848c2ecf20Sopenharmony_ci	0x9b9b009b, 0x26260026, 0x37370037, 0x3b3b003b,
2858c2ecf20Sopenharmony_ci	0x96960096, 0x4b4b004b, 0xbebe00be, 0x2e2e002e,
2868c2ecf20Sopenharmony_ci	0x79790079, 0x8c8c008c, 0x6e6e006e, 0x8e8e008e,
2878c2ecf20Sopenharmony_ci	0xf5f500f5, 0xb6b600b6, 0xfdfd00fd, 0x59590059,
2888c2ecf20Sopenharmony_ci	0x98980098, 0x6a6a006a, 0x46460046, 0xbaba00ba,
2898c2ecf20Sopenharmony_ci	0x25250025, 0x42420042, 0xa2a200a2, 0xfafa00fa,
2908c2ecf20Sopenharmony_ci	0x07070007, 0x55550055, 0xeeee00ee, 0x0a0a000a,
2918c2ecf20Sopenharmony_ci	0x49490049, 0x68680068, 0x38380038, 0xa4a400a4,
2928c2ecf20Sopenharmony_ci	0x28280028, 0x7b7b007b, 0xc9c900c9, 0xc1c100c1,
2938c2ecf20Sopenharmony_ci	0xe3e300e3, 0xf4f400f4, 0xc7c700c7, 0x9e9e009e,
2948c2ecf20Sopenharmony_ci};
2958c2ecf20Sopenharmony_ci
2968c2ecf20Sopenharmony_ci
2978c2ecf20Sopenharmony_ci#define CAMELLIA_MIN_KEY_SIZE        16
2988c2ecf20Sopenharmony_ci#define CAMELLIA_MAX_KEY_SIZE        32
2998c2ecf20Sopenharmony_ci#define CAMELLIA_BLOCK_SIZE          16
3008c2ecf20Sopenharmony_ci#define CAMELLIA_TABLE_BYTE_LEN     272
3018c2ecf20Sopenharmony_ci
3028c2ecf20Sopenharmony_ci/*
3038c2ecf20Sopenharmony_ci * NB: L and R below stand for 'left' and 'right' as in written numbers.
3048c2ecf20Sopenharmony_ci * That is, in (xxxL,xxxR) pair xxxL holds most significant digits,
3058c2ecf20Sopenharmony_ci * _not_ least significant ones!
3068c2ecf20Sopenharmony_ci */
3078c2ecf20Sopenharmony_ci
3088c2ecf20Sopenharmony_ci
3098c2ecf20Sopenharmony_ci/* key constants */
3108c2ecf20Sopenharmony_ci
3118c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA1L (0xA09E667FL)
3128c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA1R (0x3BCC908BL)
3138c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA2L (0xB67AE858L)
3148c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA2R (0x4CAA73B2L)
3158c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA3L (0xC6EF372FL)
3168c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA3R (0xE94F82BEL)
3178c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA4L (0x54FF53A5L)
3188c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA4R (0xF1D36F1CL)
3198c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA5L (0x10E527FAL)
3208c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA5R (0xDE682D1DL)
3218c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA6L (0xB05688C2L)
3228c2ecf20Sopenharmony_ci#define CAMELLIA_SIGMA6R (0xB3E6C1FDL)
3238c2ecf20Sopenharmony_ci
3248c2ecf20Sopenharmony_ci/*
3258c2ecf20Sopenharmony_ci *  macros
3268c2ecf20Sopenharmony_ci */
3278c2ecf20Sopenharmony_ci#define ROLDQ(ll, lr, rl, rr, w0, w1, bits) ({		\
3288c2ecf20Sopenharmony_ci	w0 = ll;					\
3298c2ecf20Sopenharmony_ci	ll = (ll << bits) + (lr >> (32 - bits));	\
3308c2ecf20Sopenharmony_ci	lr = (lr << bits) + (rl >> (32 - bits));	\
3318c2ecf20Sopenharmony_ci	rl = (rl << bits) + (rr >> (32 - bits));	\
3328c2ecf20Sopenharmony_ci	rr = (rr << bits) + (w0 >> (32 - bits));	\
3338c2ecf20Sopenharmony_ci})
3348c2ecf20Sopenharmony_ci
3358c2ecf20Sopenharmony_ci#define ROLDQo32(ll, lr, rl, rr, w0, w1, bits) ({	\
3368c2ecf20Sopenharmony_ci	w0 = ll;					\
3378c2ecf20Sopenharmony_ci	w1 = lr;					\
3388c2ecf20Sopenharmony_ci	ll = (lr << (bits - 32)) + (rl >> (64 - bits));	\
3398c2ecf20Sopenharmony_ci	lr = (rl << (bits - 32)) + (rr >> (64 - bits));	\
3408c2ecf20Sopenharmony_ci	rl = (rr << (bits - 32)) + (w0 >> (64 - bits));	\
3418c2ecf20Sopenharmony_ci	rr = (w0 << (bits - 32)) + (w1 >> (64 - bits));	\
3428c2ecf20Sopenharmony_ci})
3438c2ecf20Sopenharmony_ci
3448c2ecf20Sopenharmony_ci#define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) ({	\
3458c2ecf20Sopenharmony_ci	il = xl ^ kl;						\
3468c2ecf20Sopenharmony_ci	ir = xr ^ kr;						\
3478c2ecf20Sopenharmony_ci	t0 = il >> 16;						\
3488c2ecf20Sopenharmony_ci	t1 = ir >> 16;						\
3498c2ecf20Sopenharmony_ci	yl = camellia_sp1110[(u8)(ir)]				\
3508c2ecf20Sopenharmony_ci	   ^ camellia_sp0222[(u8)(t1 >> 8)]			\
3518c2ecf20Sopenharmony_ci	   ^ camellia_sp3033[(u8)(t1)]				\
3528c2ecf20Sopenharmony_ci	   ^ camellia_sp4404[(u8)(ir >> 8)];			\
3538c2ecf20Sopenharmony_ci	yr = camellia_sp1110[(u8)(t0 >> 8)]			\
3548c2ecf20Sopenharmony_ci	   ^ camellia_sp0222[(u8)(t0)]				\
3558c2ecf20Sopenharmony_ci	   ^ camellia_sp3033[(u8)(il >> 8)]			\
3568c2ecf20Sopenharmony_ci	   ^ camellia_sp4404[(u8)(il)];				\
3578c2ecf20Sopenharmony_ci	yl ^= yr;						\
3588c2ecf20Sopenharmony_ci	yr = ror32(yr, 8);					\
3598c2ecf20Sopenharmony_ci	yr ^= yl;						\
3608c2ecf20Sopenharmony_ci})
3618c2ecf20Sopenharmony_ci
3628c2ecf20Sopenharmony_ci#define SUBKEY_L(INDEX) (subkey[(INDEX)*2])
3638c2ecf20Sopenharmony_ci#define SUBKEY_R(INDEX) (subkey[(INDEX)*2 + 1])
3648c2ecf20Sopenharmony_ci
3658c2ecf20Sopenharmony_cistatic void camellia_setup_tail(u32 *subkey, u32 *subL, u32 *subR, int max)
3668c2ecf20Sopenharmony_ci{
3678c2ecf20Sopenharmony_ci	u32 dw, tl, tr;
3688c2ecf20Sopenharmony_ci	u32 kw4l, kw4r;
3698c2ecf20Sopenharmony_ci
3708c2ecf20Sopenharmony_ci	/* absorb kw2 to other subkeys */
3718c2ecf20Sopenharmony_ci	/* round 2 */
3728c2ecf20Sopenharmony_ci	subL[3] ^= subL[1]; subR[3] ^= subR[1];
3738c2ecf20Sopenharmony_ci	/* round 4 */
3748c2ecf20Sopenharmony_ci	subL[5] ^= subL[1]; subR[5] ^= subR[1];
3758c2ecf20Sopenharmony_ci	/* round 6 */
3768c2ecf20Sopenharmony_ci	subL[7] ^= subL[1]; subR[7] ^= subR[1];
3778c2ecf20Sopenharmony_ci	subL[1] ^= subR[1] & ~subR[9];
3788c2ecf20Sopenharmony_ci	dw = subL[1] & subL[9];
3798c2ecf20Sopenharmony_ci	subR[1] ^= rol32(dw, 1); /* modified for FLinv(kl2) */
3808c2ecf20Sopenharmony_ci	/* round 8 */
3818c2ecf20Sopenharmony_ci	subL[11] ^= subL[1]; subR[11] ^= subR[1];
3828c2ecf20Sopenharmony_ci	/* round 10 */
3838c2ecf20Sopenharmony_ci	subL[13] ^= subL[1]; subR[13] ^= subR[1];
3848c2ecf20Sopenharmony_ci	/* round 12 */
3858c2ecf20Sopenharmony_ci	subL[15] ^= subL[1]; subR[15] ^= subR[1];
3868c2ecf20Sopenharmony_ci	subL[1] ^= subR[1] & ~subR[17];
3878c2ecf20Sopenharmony_ci	dw = subL[1] & subL[17];
3888c2ecf20Sopenharmony_ci	subR[1] ^= rol32(dw, 1); /* modified for FLinv(kl4) */
3898c2ecf20Sopenharmony_ci	/* round 14 */
3908c2ecf20Sopenharmony_ci	subL[19] ^= subL[1]; subR[19] ^= subR[1];
3918c2ecf20Sopenharmony_ci	/* round 16 */
3928c2ecf20Sopenharmony_ci	subL[21] ^= subL[1]; subR[21] ^= subR[1];
3938c2ecf20Sopenharmony_ci	/* round 18 */
3948c2ecf20Sopenharmony_ci	subL[23] ^= subL[1]; subR[23] ^= subR[1];
3958c2ecf20Sopenharmony_ci	if (max == 24) {
3968c2ecf20Sopenharmony_ci		/* kw3 */
3978c2ecf20Sopenharmony_ci		subL[24] ^= subL[1]; subR[24] ^= subR[1];
3988c2ecf20Sopenharmony_ci
3998c2ecf20Sopenharmony_ci	/* absorb kw4 to other subkeys */
4008c2ecf20Sopenharmony_ci		kw4l = subL[25]; kw4r = subR[25];
4018c2ecf20Sopenharmony_ci	} else {
4028c2ecf20Sopenharmony_ci		subL[1] ^= subR[1] & ~subR[25];
4038c2ecf20Sopenharmony_ci		dw = subL[1] & subL[25];
4048c2ecf20Sopenharmony_ci		subR[1] ^= rol32(dw, 1); /* modified for FLinv(kl6) */
4058c2ecf20Sopenharmony_ci		/* round 20 */
4068c2ecf20Sopenharmony_ci		subL[27] ^= subL[1]; subR[27] ^= subR[1];
4078c2ecf20Sopenharmony_ci		/* round 22 */
4088c2ecf20Sopenharmony_ci		subL[29] ^= subL[1]; subR[29] ^= subR[1];
4098c2ecf20Sopenharmony_ci		/* round 24 */
4108c2ecf20Sopenharmony_ci		subL[31] ^= subL[1]; subR[31] ^= subR[1];
4118c2ecf20Sopenharmony_ci		/* kw3 */
4128c2ecf20Sopenharmony_ci		subL[32] ^= subL[1]; subR[32] ^= subR[1];
4138c2ecf20Sopenharmony_ci
4148c2ecf20Sopenharmony_ci	/* absorb kw4 to other subkeys */
4158c2ecf20Sopenharmony_ci		kw4l = subL[33]; kw4r = subR[33];
4168c2ecf20Sopenharmony_ci		/* round 23 */
4178c2ecf20Sopenharmony_ci		subL[30] ^= kw4l; subR[30] ^= kw4r;
4188c2ecf20Sopenharmony_ci		/* round 21 */
4198c2ecf20Sopenharmony_ci		subL[28] ^= kw4l; subR[28] ^= kw4r;
4208c2ecf20Sopenharmony_ci		/* round 19 */
4218c2ecf20Sopenharmony_ci		subL[26] ^= kw4l; subR[26] ^= kw4r;
4228c2ecf20Sopenharmony_ci		kw4l ^= kw4r & ~subR[24];
4238c2ecf20Sopenharmony_ci		dw = kw4l & subL[24];
4248c2ecf20Sopenharmony_ci		kw4r ^= rol32(dw, 1); /* modified for FL(kl5) */
4258c2ecf20Sopenharmony_ci	}
4268c2ecf20Sopenharmony_ci	/* round 17 */
4278c2ecf20Sopenharmony_ci	subL[22] ^= kw4l; subR[22] ^= kw4r;
4288c2ecf20Sopenharmony_ci	/* round 15 */
4298c2ecf20Sopenharmony_ci	subL[20] ^= kw4l; subR[20] ^= kw4r;
4308c2ecf20Sopenharmony_ci	/* round 13 */
4318c2ecf20Sopenharmony_ci	subL[18] ^= kw4l; subR[18] ^= kw4r;
4328c2ecf20Sopenharmony_ci	kw4l ^= kw4r & ~subR[16];
4338c2ecf20Sopenharmony_ci	dw = kw4l & subL[16];
4348c2ecf20Sopenharmony_ci	kw4r ^= rol32(dw, 1); /* modified for FL(kl3) */
4358c2ecf20Sopenharmony_ci	/* round 11 */
4368c2ecf20Sopenharmony_ci	subL[14] ^= kw4l; subR[14] ^= kw4r;
4378c2ecf20Sopenharmony_ci	/* round 9 */
4388c2ecf20Sopenharmony_ci	subL[12] ^= kw4l; subR[12] ^= kw4r;
4398c2ecf20Sopenharmony_ci	/* round 7 */
4408c2ecf20Sopenharmony_ci	subL[10] ^= kw4l; subR[10] ^= kw4r;
4418c2ecf20Sopenharmony_ci	kw4l ^= kw4r & ~subR[8];
4428c2ecf20Sopenharmony_ci	dw = kw4l & subL[8];
4438c2ecf20Sopenharmony_ci	kw4r ^= rol32(dw, 1); /* modified for FL(kl1) */
4448c2ecf20Sopenharmony_ci	/* round 5 */
4458c2ecf20Sopenharmony_ci	subL[6] ^= kw4l; subR[6] ^= kw4r;
4468c2ecf20Sopenharmony_ci	/* round 3 */
4478c2ecf20Sopenharmony_ci	subL[4] ^= kw4l; subR[4] ^= kw4r;
4488c2ecf20Sopenharmony_ci	/* round 1 */
4498c2ecf20Sopenharmony_ci	subL[2] ^= kw4l; subR[2] ^= kw4r;
4508c2ecf20Sopenharmony_ci	/* kw1 */
4518c2ecf20Sopenharmony_ci	subL[0] ^= kw4l; subR[0] ^= kw4r;
4528c2ecf20Sopenharmony_ci
4538c2ecf20Sopenharmony_ci	/* key XOR is end of F-function */
4548c2ecf20Sopenharmony_ci	SUBKEY_L(0) = subL[0] ^ subL[2];/* kw1 */
4558c2ecf20Sopenharmony_ci	SUBKEY_R(0) = subR[0] ^ subR[2];
4568c2ecf20Sopenharmony_ci	SUBKEY_L(2) = subL[3];       /* round 1 */
4578c2ecf20Sopenharmony_ci	SUBKEY_R(2) = subR[3];
4588c2ecf20Sopenharmony_ci	SUBKEY_L(3) = subL[2] ^ subL[4]; /* round 2 */
4598c2ecf20Sopenharmony_ci	SUBKEY_R(3) = subR[2] ^ subR[4];
4608c2ecf20Sopenharmony_ci	SUBKEY_L(4) = subL[3] ^ subL[5]; /* round 3 */
4618c2ecf20Sopenharmony_ci	SUBKEY_R(4) = subR[3] ^ subR[5];
4628c2ecf20Sopenharmony_ci	SUBKEY_L(5) = subL[4] ^ subL[6]; /* round 4 */
4638c2ecf20Sopenharmony_ci	SUBKEY_R(5) = subR[4] ^ subR[6];
4648c2ecf20Sopenharmony_ci	SUBKEY_L(6) = subL[5] ^ subL[7]; /* round 5 */
4658c2ecf20Sopenharmony_ci	SUBKEY_R(6) = subR[5] ^ subR[7];
4668c2ecf20Sopenharmony_ci	tl = subL[10] ^ (subR[10] & ~subR[8]);
4678c2ecf20Sopenharmony_ci	dw = tl & subL[8];  /* FL(kl1) */
4688c2ecf20Sopenharmony_ci	tr = subR[10] ^ rol32(dw, 1);
4698c2ecf20Sopenharmony_ci	SUBKEY_L(7) = subL[6] ^ tl; /* round 6 */
4708c2ecf20Sopenharmony_ci	SUBKEY_R(7) = subR[6] ^ tr;
4718c2ecf20Sopenharmony_ci	SUBKEY_L(8) = subL[8];       /* FL(kl1) */
4728c2ecf20Sopenharmony_ci	SUBKEY_R(8) = subR[8];
4738c2ecf20Sopenharmony_ci	SUBKEY_L(9) = subL[9];       /* FLinv(kl2) */
4748c2ecf20Sopenharmony_ci	SUBKEY_R(9) = subR[9];
4758c2ecf20Sopenharmony_ci	tl = subL[7] ^ (subR[7] & ~subR[9]);
4768c2ecf20Sopenharmony_ci	dw = tl & subL[9];  /* FLinv(kl2) */
4778c2ecf20Sopenharmony_ci	tr = subR[7] ^ rol32(dw, 1);
4788c2ecf20Sopenharmony_ci	SUBKEY_L(10) = tl ^ subL[11]; /* round 7 */
4798c2ecf20Sopenharmony_ci	SUBKEY_R(10) = tr ^ subR[11];
4808c2ecf20Sopenharmony_ci	SUBKEY_L(11) = subL[10] ^ subL[12]; /* round 8 */
4818c2ecf20Sopenharmony_ci	SUBKEY_R(11) = subR[10] ^ subR[12];
4828c2ecf20Sopenharmony_ci	SUBKEY_L(12) = subL[11] ^ subL[13]; /* round 9 */
4838c2ecf20Sopenharmony_ci	SUBKEY_R(12) = subR[11] ^ subR[13];
4848c2ecf20Sopenharmony_ci	SUBKEY_L(13) = subL[12] ^ subL[14]; /* round 10 */
4858c2ecf20Sopenharmony_ci	SUBKEY_R(13) = subR[12] ^ subR[14];
4868c2ecf20Sopenharmony_ci	SUBKEY_L(14) = subL[13] ^ subL[15]; /* round 11 */
4878c2ecf20Sopenharmony_ci	SUBKEY_R(14) = subR[13] ^ subR[15];
4888c2ecf20Sopenharmony_ci	tl = subL[18] ^ (subR[18] & ~subR[16]);
4898c2ecf20Sopenharmony_ci	dw = tl & subL[16]; /* FL(kl3) */
4908c2ecf20Sopenharmony_ci	tr = subR[18] ^ rol32(dw, 1);
4918c2ecf20Sopenharmony_ci	SUBKEY_L(15) = subL[14] ^ tl; /* round 12 */
4928c2ecf20Sopenharmony_ci	SUBKEY_R(15) = subR[14] ^ tr;
4938c2ecf20Sopenharmony_ci	SUBKEY_L(16) = subL[16];     /* FL(kl3) */
4948c2ecf20Sopenharmony_ci	SUBKEY_R(16) = subR[16];
4958c2ecf20Sopenharmony_ci	SUBKEY_L(17) = subL[17];     /* FLinv(kl4) */
4968c2ecf20Sopenharmony_ci	SUBKEY_R(17) = subR[17];
4978c2ecf20Sopenharmony_ci	tl = subL[15] ^ (subR[15] & ~subR[17]);
4988c2ecf20Sopenharmony_ci	dw = tl & subL[17]; /* FLinv(kl4) */
4998c2ecf20Sopenharmony_ci	tr = subR[15] ^ rol32(dw, 1);
5008c2ecf20Sopenharmony_ci	SUBKEY_L(18) = tl ^ subL[19]; /* round 13 */
5018c2ecf20Sopenharmony_ci	SUBKEY_R(18) = tr ^ subR[19];
5028c2ecf20Sopenharmony_ci	SUBKEY_L(19) = subL[18] ^ subL[20]; /* round 14 */
5038c2ecf20Sopenharmony_ci	SUBKEY_R(19) = subR[18] ^ subR[20];
5048c2ecf20Sopenharmony_ci	SUBKEY_L(20) = subL[19] ^ subL[21]; /* round 15 */
5058c2ecf20Sopenharmony_ci	SUBKEY_R(20) = subR[19] ^ subR[21];
5068c2ecf20Sopenharmony_ci	SUBKEY_L(21) = subL[20] ^ subL[22]; /* round 16 */
5078c2ecf20Sopenharmony_ci	SUBKEY_R(21) = subR[20] ^ subR[22];
5088c2ecf20Sopenharmony_ci	SUBKEY_L(22) = subL[21] ^ subL[23]; /* round 17 */
5098c2ecf20Sopenharmony_ci	SUBKEY_R(22) = subR[21] ^ subR[23];
5108c2ecf20Sopenharmony_ci	if (max == 24) {
5118c2ecf20Sopenharmony_ci		SUBKEY_L(23) = subL[22];     /* round 18 */
5128c2ecf20Sopenharmony_ci		SUBKEY_R(23) = subR[22];
5138c2ecf20Sopenharmony_ci		SUBKEY_L(24) = subL[24] ^ subL[23]; /* kw3 */
5148c2ecf20Sopenharmony_ci		SUBKEY_R(24) = subR[24] ^ subR[23];
5158c2ecf20Sopenharmony_ci	} else {
5168c2ecf20Sopenharmony_ci		tl = subL[26] ^ (subR[26] & ~subR[24]);
5178c2ecf20Sopenharmony_ci		dw = tl & subL[24]; /* FL(kl5) */
5188c2ecf20Sopenharmony_ci		tr = subR[26] ^ rol32(dw, 1);
5198c2ecf20Sopenharmony_ci		SUBKEY_L(23) = subL[22] ^ tl; /* round 18 */
5208c2ecf20Sopenharmony_ci		SUBKEY_R(23) = subR[22] ^ tr;
5218c2ecf20Sopenharmony_ci		SUBKEY_L(24) = subL[24];     /* FL(kl5) */
5228c2ecf20Sopenharmony_ci		SUBKEY_R(24) = subR[24];
5238c2ecf20Sopenharmony_ci		SUBKEY_L(25) = subL[25];     /* FLinv(kl6) */
5248c2ecf20Sopenharmony_ci		SUBKEY_R(25) = subR[25];
5258c2ecf20Sopenharmony_ci		tl = subL[23] ^ (subR[23] & ~subR[25]);
5268c2ecf20Sopenharmony_ci		dw = tl & subL[25]; /* FLinv(kl6) */
5278c2ecf20Sopenharmony_ci		tr = subR[23] ^ rol32(dw, 1);
5288c2ecf20Sopenharmony_ci		SUBKEY_L(26) = tl ^ subL[27]; /* round 19 */
5298c2ecf20Sopenharmony_ci		SUBKEY_R(26) = tr ^ subR[27];
5308c2ecf20Sopenharmony_ci		SUBKEY_L(27) = subL[26] ^ subL[28]; /* round 20 */
5318c2ecf20Sopenharmony_ci		SUBKEY_R(27) = subR[26] ^ subR[28];
5328c2ecf20Sopenharmony_ci		SUBKEY_L(28) = subL[27] ^ subL[29]; /* round 21 */
5338c2ecf20Sopenharmony_ci		SUBKEY_R(28) = subR[27] ^ subR[29];
5348c2ecf20Sopenharmony_ci		SUBKEY_L(29) = subL[28] ^ subL[30]; /* round 22 */
5358c2ecf20Sopenharmony_ci		SUBKEY_R(29) = subR[28] ^ subR[30];
5368c2ecf20Sopenharmony_ci		SUBKEY_L(30) = subL[29] ^ subL[31]; /* round 23 */
5378c2ecf20Sopenharmony_ci		SUBKEY_R(30) = subR[29] ^ subR[31];
5388c2ecf20Sopenharmony_ci		SUBKEY_L(31) = subL[30];     /* round 24 */
5398c2ecf20Sopenharmony_ci		SUBKEY_R(31) = subR[30];
5408c2ecf20Sopenharmony_ci		SUBKEY_L(32) = subL[32] ^ subL[31]; /* kw3 */
5418c2ecf20Sopenharmony_ci		SUBKEY_R(32) = subR[32] ^ subR[31];
5428c2ecf20Sopenharmony_ci	}
5438c2ecf20Sopenharmony_ci}
5448c2ecf20Sopenharmony_ci
5458c2ecf20Sopenharmony_cistatic void camellia_setup128(const unsigned char *key, u32 *subkey)
5468c2ecf20Sopenharmony_ci{
5478c2ecf20Sopenharmony_ci	u32 kll, klr, krl, krr;
5488c2ecf20Sopenharmony_ci	u32 il, ir, t0, t1, w0, w1;
5498c2ecf20Sopenharmony_ci	u32 subL[26];
5508c2ecf20Sopenharmony_ci	u32 subR[26];
5518c2ecf20Sopenharmony_ci
5528c2ecf20Sopenharmony_ci	/**
5538c2ecf20Sopenharmony_ci	 *  k == kll || klr || krl || krr (|| is concatenation)
5548c2ecf20Sopenharmony_ci	 */
5558c2ecf20Sopenharmony_ci	kll = get_unaligned_be32(key);
5568c2ecf20Sopenharmony_ci	klr = get_unaligned_be32(key + 4);
5578c2ecf20Sopenharmony_ci	krl = get_unaligned_be32(key + 8);
5588c2ecf20Sopenharmony_ci	krr = get_unaligned_be32(key + 12);
5598c2ecf20Sopenharmony_ci
5608c2ecf20Sopenharmony_ci	/* generate KL dependent subkeys */
5618c2ecf20Sopenharmony_ci	/* kw1 */
5628c2ecf20Sopenharmony_ci	subL[0] = kll; subR[0] = klr;
5638c2ecf20Sopenharmony_ci	/* kw2 */
5648c2ecf20Sopenharmony_ci	subL[1] = krl; subR[1] = krr;
5658c2ecf20Sopenharmony_ci	/* rotation left shift 15bit */
5668c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 15);
5678c2ecf20Sopenharmony_ci	/* k3 */
5688c2ecf20Sopenharmony_ci	subL[4] = kll; subR[4] = klr;
5698c2ecf20Sopenharmony_ci	/* k4 */
5708c2ecf20Sopenharmony_ci	subL[5] = krl; subR[5] = krr;
5718c2ecf20Sopenharmony_ci	/* rotation left shift 15+30bit */
5728c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 30);
5738c2ecf20Sopenharmony_ci	/* k7 */
5748c2ecf20Sopenharmony_ci	subL[10] = kll; subR[10] = klr;
5758c2ecf20Sopenharmony_ci	/* k8 */
5768c2ecf20Sopenharmony_ci	subL[11] = krl; subR[11] = krr;
5778c2ecf20Sopenharmony_ci	/* rotation left shift 15+30+15bit */
5788c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 15);
5798c2ecf20Sopenharmony_ci	/* k10 */
5808c2ecf20Sopenharmony_ci	subL[13] = krl; subR[13] = krr;
5818c2ecf20Sopenharmony_ci	/* rotation left shift 15+30+15+17 bit */
5828c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 17);
5838c2ecf20Sopenharmony_ci	/* kl3 */
5848c2ecf20Sopenharmony_ci	subL[16] = kll; subR[16] = klr;
5858c2ecf20Sopenharmony_ci	/* kl4 */
5868c2ecf20Sopenharmony_ci	subL[17] = krl; subR[17] = krr;
5878c2ecf20Sopenharmony_ci	/* rotation left shift 15+30+15+17+17 bit */
5888c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 17);
5898c2ecf20Sopenharmony_ci	/* k13 */
5908c2ecf20Sopenharmony_ci	subL[18] = kll; subR[18] = klr;
5918c2ecf20Sopenharmony_ci	/* k14 */
5928c2ecf20Sopenharmony_ci	subL[19] = krl; subR[19] = krr;
5938c2ecf20Sopenharmony_ci	/* rotation left shift 15+30+15+17+17+17 bit */
5948c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 17);
5958c2ecf20Sopenharmony_ci	/* k17 */
5968c2ecf20Sopenharmony_ci	subL[22] = kll; subR[22] = klr;
5978c2ecf20Sopenharmony_ci	/* k18 */
5988c2ecf20Sopenharmony_ci	subL[23] = krl; subR[23] = krr;
5998c2ecf20Sopenharmony_ci
6008c2ecf20Sopenharmony_ci	/* generate KA */
6018c2ecf20Sopenharmony_ci	kll = subL[0]; klr = subR[0];
6028c2ecf20Sopenharmony_ci	krl = subL[1]; krr = subR[1];
6038c2ecf20Sopenharmony_ci	CAMELLIA_F(kll, klr,
6048c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA1L, CAMELLIA_SIGMA1R,
6058c2ecf20Sopenharmony_ci		   w0, w1, il, ir, t0, t1);
6068c2ecf20Sopenharmony_ci	krl ^= w0; krr ^= w1;
6078c2ecf20Sopenharmony_ci	CAMELLIA_F(krl, krr,
6088c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA2L, CAMELLIA_SIGMA2R,
6098c2ecf20Sopenharmony_ci		   kll, klr, il, ir, t0, t1);
6108c2ecf20Sopenharmony_ci	/* current status == (kll, klr, w0, w1) */
6118c2ecf20Sopenharmony_ci	CAMELLIA_F(kll, klr,
6128c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA3L, CAMELLIA_SIGMA3R,
6138c2ecf20Sopenharmony_ci		   krl, krr, il, ir, t0, t1);
6148c2ecf20Sopenharmony_ci	krl ^= w0; krr ^= w1;
6158c2ecf20Sopenharmony_ci	CAMELLIA_F(krl, krr,
6168c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA4L, CAMELLIA_SIGMA4R,
6178c2ecf20Sopenharmony_ci		   w0, w1, il, ir, t0, t1);
6188c2ecf20Sopenharmony_ci	kll ^= w0; klr ^= w1;
6198c2ecf20Sopenharmony_ci
6208c2ecf20Sopenharmony_ci	/* generate KA dependent subkeys */
6218c2ecf20Sopenharmony_ci	/* k1, k2 */
6228c2ecf20Sopenharmony_ci	subL[2] = kll; subR[2] = klr;
6238c2ecf20Sopenharmony_ci	subL[3] = krl; subR[3] = krr;
6248c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 15);
6258c2ecf20Sopenharmony_ci	/* k5,k6 */
6268c2ecf20Sopenharmony_ci	subL[6] = kll; subR[6] = klr;
6278c2ecf20Sopenharmony_ci	subL[7] = krl; subR[7] = krr;
6288c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 15);
6298c2ecf20Sopenharmony_ci	/* kl1, kl2 */
6308c2ecf20Sopenharmony_ci	subL[8] = kll; subR[8] = klr;
6318c2ecf20Sopenharmony_ci	subL[9] = krl; subR[9] = krr;
6328c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 15);
6338c2ecf20Sopenharmony_ci	/* k9 */
6348c2ecf20Sopenharmony_ci	subL[12] = kll; subR[12] = klr;
6358c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 15);
6368c2ecf20Sopenharmony_ci	/* k11, k12 */
6378c2ecf20Sopenharmony_ci	subL[14] = kll; subR[14] = klr;
6388c2ecf20Sopenharmony_ci	subL[15] = krl; subR[15] = krr;
6398c2ecf20Sopenharmony_ci	ROLDQo32(kll, klr, krl, krr, w0, w1, 34);
6408c2ecf20Sopenharmony_ci	/* k15, k16 */
6418c2ecf20Sopenharmony_ci	subL[20] = kll; subR[20] = klr;
6428c2ecf20Sopenharmony_ci	subL[21] = krl; subR[21] = krr;
6438c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 17);
6448c2ecf20Sopenharmony_ci	/* kw3, kw4 */
6458c2ecf20Sopenharmony_ci	subL[24] = kll; subR[24] = klr;
6468c2ecf20Sopenharmony_ci	subL[25] = krl; subR[25] = krr;
6478c2ecf20Sopenharmony_ci
6488c2ecf20Sopenharmony_ci	camellia_setup_tail(subkey, subL, subR, 24);
6498c2ecf20Sopenharmony_ci}
6508c2ecf20Sopenharmony_ci
6518c2ecf20Sopenharmony_cistatic void camellia_setup256(const unsigned char *key, u32 *subkey)
6528c2ecf20Sopenharmony_ci{
6538c2ecf20Sopenharmony_ci	u32 kll, klr, krl, krr;        /* left half of key */
6548c2ecf20Sopenharmony_ci	u32 krll, krlr, krrl, krrr;    /* right half of key */
6558c2ecf20Sopenharmony_ci	u32 il, ir, t0, t1, w0, w1;    /* temporary variables */
6568c2ecf20Sopenharmony_ci	u32 subL[34];
6578c2ecf20Sopenharmony_ci	u32 subR[34];
6588c2ecf20Sopenharmony_ci
6598c2ecf20Sopenharmony_ci	/**
6608c2ecf20Sopenharmony_ci	 *  key = (kll || klr || krl || krr || krll || krlr || krrl || krrr)
6618c2ecf20Sopenharmony_ci	 *  (|| is concatenation)
6628c2ecf20Sopenharmony_ci	 */
6638c2ecf20Sopenharmony_ci	kll = get_unaligned_be32(key);
6648c2ecf20Sopenharmony_ci	klr = get_unaligned_be32(key + 4);
6658c2ecf20Sopenharmony_ci	krl = get_unaligned_be32(key + 8);
6668c2ecf20Sopenharmony_ci	krr = get_unaligned_be32(key + 12);
6678c2ecf20Sopenharmony_ci	krll = get_unaligned_be32(key + 16);
6688c2ecf20Sopenharmony_ci	krlr = get_unaligned_be32(key + 20);
6698c2ecf20Sopenharmony_ci	krrl = get_unaligned_be32(key + 24);
6708c2ecf20Sopenharmony_ci	krrr = get_unaligned_be32(key + 28);
6718c2ecf20Sopenharmony_ci
6728c2ecf20Sopenharmony_ci	/* generate KL dependent subkeys */
6738c2ecf20Sopenharmony_ci	/* kw1 */
6748c2ecf20Sopenharmony_ci	subL[0] = kll; subR[0] = klr;
6758c2ecf20Sopenharmony_ci	/* kw2 */
6768c2ecf20Sopenharmony_ci	subL[1] = krl; subR[1] = krr;
6778c2ecf20Sopenharmony_ci	ROLDQo32(kll, klr, krl, krr, w0, w1, 45);
6788c2ecf20Sopenharmony_ci	/* k9 */
6798c2ecf20Sopenharmony_ci	subL[12] = kll; subR[12] = klr;
6808c2ecf20Sopenharmony_ci	/* k10 */
6818c2ecf20Sopenharmony_ci	subL[13] = krl; subR[13] = krr;
6828c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 15);
6838c2ecf20Sopenharmony_ci	/* kl3 */
6848c2ecf20Sopenharmony_ci	subL[16] = kll; subR[16] = klr;
6858c2ecf20Sopenharmony_ci	/* kl4 */
6868c2ecf20Sopenharmony_ci	subL[17] = krl; subR[17] = krr;
6878c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 17);
6888c2ecf20Sopenharmony_ci	/* k17 */
6898c2ecf20Sopenharmony_ci	subL[22] = kll; subR[22] = klr;
6908c2ecf20Sopenharmony_ci	/* k18 */
6918c2ecf20Sopenharmony_ci	subL[23] = krl; subR[23] = krr;
6928c2ecf20Sopenharmony_ci	ROLDQo32(kll, klr, krl, krr, w0, w1, 34);
6938c2ecf20Sopenharmony_ci	/* k23 */
6948c2ecf20Sopenharmony_ci	subL[30] = kll; subR[30] = klr;
6958c2ecf20Sopenharmony_ci	/* k24 */
6968c2ecf20Sopenharmony_ci	subL[31] = krl; subR[31] = krr;
6978c2ecf20Sopenharmony_ci
6988c2ecf20Sopenharmony_ci	/* generate KR dependent subkeys */
6998c2ecf20Sopenharmony_ci	ROLDQ(krll, krlr, krrl, krrr, w0, w1, 15);
7008c2ecf20Sopenharmony_ci	/* k3 */
7018c2ecf20Sopenharmony_ci	subL[4] = krll; subR[4] = krlr;
7028c2ecf20Sopenharmony_ci	/* k4 */
7038c2ecf20Sopenharmony_ci	subL[5] = krrl; subR[5] = krrr;
7048c2ecf20Sopenharmony_ci	ROLDQ(krll, krlr, krrl, krrr, w0, w1, 15);
7058c2ecf20Sopenharmony_ci	/* kl1 */
7068c2ecf20Sopenharmony_ci	subL[8] = krll; subR[8] = krlr;
7078c2ecf20Sopenharmony_ci	/* kl2 */
7088c2ecf20Sopenharmony_ci	subL[9] = krrl; subR[9] = krrr;
7098c2ecf20Sopenharmony_ci	ROLDQ(krll, krlr, krrl, krrr, w0, w1, 30);
7108c2ecf20Sopenharmony_ci	/* k13 */
7118c2ecf20Sopenharmony_ci	subL[18] = krll; subR[18] = krlr;
7128c2ecf20Sopenharmony_ci	/* k14 */
7138c2ecf20Sopenharmony_ci	subL[19] = krrl; subR[19] = krrr;
7148c2ecf20Sopenharmony_ci	ROLDQo32(krll, krlr, krrl, krrr, w0, w1, 34);
7158c2ecf20Sopenharmony_ci	/* k19 */
7168c2ecf20Sopenharmony_ci	subL[26] = krll; subR[26] = krlr;
7178c2ecf20Sopenharmony_ci	/* k20 */
7188c2ecf20Sopenharmony_ci	subL[27] = krrl; subR[27] = krrr;
7198c2ecf20Sopenharmony_ci	ROLDQo32(krll, krlr, krrl, krrr, w0, w1, 34);
7208c2ecf20Sopenharmony_ci
7218c2ecf20Sopenharmony_ci	/* generate KA */
7228c2ecf20Sopenharmony_ci	kll = subL[0] ^ krll; klr = subR[0] ^ krlr;
7238c2ecf20Sopenharmony_ci	krl = subL[1] ^ krrl; krr = subR[1] ^ krrr;
7248c2ecf20Sopenharmony_ci	CAMELLIA_F(kll, klr,
7258c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA1L, CAMELLIA_SIGMA1R,
7268c2ecf20Sopenharmony_ci		   w0, w1, il, ir, t0, t1);
7278c2ecf20Sopenharmony_ci	krl ^= w0; krr ^= w1;
7288c2ecf20Sopenharmony_ci	CAMELLIA_F(krl, krr,
7298c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA2L, CAMELLIA_SIGMA2R,
7308c2ecf20Sopenharmony_ci		   kll, klr, il, ir, t0, t1);
7318c2ecf20Sopenharmony_ci	kll ^= krll; klr ^= krlr;
7328c2ecf20Sopenharmony_ci	CAMELLIA_F(kll, klr,
7338c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA3L, CAMELLIA_SIGMA3R,
7348c2ecf20Sopenharmony_ci		   krl, krr, il, ir, t0, t1);
7358c2ecf20Sopenharmony_ci	krl ^= w0 ^ krrl; krr ^= w1 ^ krrr;
7368c2ecf20Sopenharmony_ci	CAMELLIA_F(krl, krr,
7378c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA4L, CAMELLIA_SIGMA4R,
7388c2ecf20Sopenharmony_ci		   w0, w1, il, ir, t0, t1);
7398c2ecf20Sopenharmony_ci	kll ^= w0; klr ^= w1;
7408c2ecf20Sopenharmony_ci
7418c2ecf20Sopenharmony_ci	/* generate KB */
7428c2ecf20Sopenharmony_ci	krll ^= kll; krlr ^= klr;
7438c2ecf20Sopenharmony_ci	krrl ^= krl; krrr ^= krr;
7448c2ecf20Sopenharmony_ci	CAMELLIA_F(krll, krlr,
7458c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA5L, CAMELLIA_SIGMA5R,
7468c2ecf20Sopenharmony_ci		   w0, w1, il, ir, t0, t1);
7478c2ecf20Sopenharmony_ci	krrl ^= w0; krrr ^= w1;
7488c2ecf20Sopenharmony_ci	CAMELLIA_F(krrl, krrr,
7498c2ecf20Sopenharmony_ci		   CAMELLIA_SIGMA6L, CAMELLIA_SIGMA6R,
7508c2ecf20Sopenharmony_ci		   w0, w1, il, ir, t0, t1);
7518c2ecf20Sopenharmony_ci	krll ^= w0; krlr ^= w1;
7528c2ecf20Sopenharmony_ci
7538c2ecf20Sopenharmony_ci	/* generate KA dependent subkeys */
7548c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 15);
7558c2ecf20Sopenharmony_ci	/* k5 */
7568c2ecf20Sopenharmony_ci	subL[6] = kll; subR[6] = klr;
7578c2ecf20Sopenharmony_ci	/* k6 */
7588c2ecf20Sopenharmony_ci	subL[7] = krl; subR[7] = krr;
7598c2ecf20Sopenharmony_ci	ROLDQ(kll, klr, krl, krr, w0, w1, 30);
7608c2ecf20Sopenharmony_ci	/* k11 */
7618c2ecf20Sopenharmony_ci	subL[14] = kll; subR[14] = klr;
7628c2ecf20Sopenharmony_ci	/* k12 */
7638c2ecf20Sopenharmony_ci	subL[15] = krl; subR[15] = krr;
7648c2ecf20Sopenharmony_ci	/* rotation left shift 32bit */
7658c2ecf20Sopenharmony_ci	/* kl5 */
7668c2ecf20Sopenharmony_ci	subL[24] = klr; subR[24] = krl;
7678c2ecf20Sopenharmony_ci	/* kl6 */
7688c2ecf20Sopenharmony_ci	subL[25] = krr; subR[25] = kll;
7698c2ecf20Sopenharmony_ci	/* rotation left shift 49 from k11,k12 -> k21,k22 */
7708c2ecf20Sopenharmony_ci	ROLDQo32(kll, klr, krl, krr, w0, w1, 49);
7718c2ecf20Sopenharmony_ci	/* k21 */
7728c2ecf20Sopenharmony_ci	subL[28] = kll; subR[28] = klr;
7738c2ecf20Sopenharmony_ci	/* k22 */
7748c2ecf20Sopenharmony_ci	subL[29] = krl; subR[29] = krr;
7758c2ecf20Sopenharmony_ci
7768c2ecf20Sopenharmony_ci	/* generate KB dependent subkeys */
7778c2ecf20Sopenharmony_ci	/* k1 */
7788c2ecf20Sopenharmony_ci	subL[2] = krll; subR[2] = krlr;
7798c2ecf20Sopenharmony_ci	/* k2 */
7808c2ecf20Sopenharmony_ci	subL[3] = krrl; subR[3] = krrr;
7818c2ecf20Sopenharmony_ci	ROLDQ(krll, krlr, krrl, krrr, w0, w1, 30);
7828c2ecf20Sopenharmony_ci	/* k7 */
7838c2ecf20Sopenharmony_ci	subL[10] = krll; subR[10] = krlr;
7848c2ecf20Sopenharmony_ci	/* k8 */
7858c2ecf20Sopenharmony_ci	subL[11] = krrl; subR[11] = krrr;
7868c2ecf20Sopenharmony_ci	ROLDQ(krll, krlr, krrl, krrr, w0, w1, 30);
7878c2ecf20Sopenharmony_ci	/* k15 */
7888c2ecf20Sopenharmony_ci	subL[20] = krll; subR[20] = krlr;
7898c2ecf20Sopenharmony_ci	/* k16 */
7908c2ecf20Sopenharmony_ci	subL[21] = krrl; subR[21] = krrr;
7918c2ecf20Sopenharmony_ci	ROLDQo32(krll, krlr, krrl, krrr, w0, w1, 51);
7928c2ecf20Sopenharmony_ci	/* kw3 */
7938c2ecf20Sopenharmony_ci	subL[32] = krll; subR[32] = krlr;
7948c2ecf20Sopenharmony_ci	/* kw4 */
7958c2ecf20Sopenharmony_ci	subL[33] = krrl; subR[33] = krrr;
7968c2ecf20Sopenharmony_ci
7978c2ecf20Sopenharmony_ci	camellia_setup_tail(subkey, subL, subR, 32);
7988c2ecf20Sopenharmony_ci}
7998c2ecf20Sopenharmony_ci
8008c2ecf20Sopenharmony_cistatic void camellia_setup192(const unsigned char *key, u32 *subkey)
8018c2ecf20Sopenharmony_ci{
8028c2ecf20Sopenharmony_ci	unsigned char kk[32];
8038c2ecf20Sopenharmony_ci	u32 krll, krlr, krrl, krrr;
8048c2ecf20Sopenharmony_ci
8058c2ecf20Sopenharmony_ci	memcpy(kk, key, 24);
8068c2ecf20Sopenharmony_ci	memcpy((unsigned char *)&krll, key+16, 4);
8078c2ecf20Sopenharmony_ci	memcpy((unsigned char *)&krlr, key+20, 4);
8088c2ecf20Sopenharmony_ci	krrl = ~krll;
8098c2ecf20Sopenharmony_ci	krrr = ~krlr;
8108c2ecf20Sopenharmony_ci	memcpy(kk+24, (unsigned char *)&krrl, 4);
8118c2ecf20Sopenharmony_ci	memcpy(kk+28, (unsigned char *)&krrr, 4);
8128c2ecf20Sopenharmony_ci	camellia_setup256(kk, subkey);
8138c2ecf20Sopenharmony_ci}
8148c2ecf20Sopenharmony_ci
8158c2ecf20Sopenharmony_ci
8168c2ecf20Sopenharmony_ci/*
8178c2ecf20Sopenharmony_ci * Encrypt/decrypt
8188c2ecf20Sopenharmony_ci */
8198c2ecf20Sopenharmony_ci#define CAMELLIA_FLS(ll, lr, rl, rr, kll, klr, krl, krr, t0, t1, t2, t3) ({ \
8208c2ecf20Sopenharmony_ci	t0 = kll;							\
8218c2ecf20Sopenharmony_ci	t2 = krr;							\
8228c2ecf20Sopenharmony_ci	t0 &= ll;							\
8238c2ecf20Sopenharmony_ci	t2 |= rr;							\
8248c2ecf20Sopenharmony_ci	rl ^= t2;							\
8258c2ecf20Sopenharmony_ci	lr ^= rol32(t0, 1);						\
8268c2ecf20Sopenharmony_ci	t3 = krl;							\
8278c2ecf20Sopenharmony_ci	t1 = klr;							\
8288c2ecf20Sopenharmony_ci	t3 &= rl;							\
8298c2ecf20Sopenharmony_ci	t1 |= lr;							\
8308c2ecf20Sopenharmony_ci	ll ^= t1;							\
8318c2ecf20Sopenharmony_ci	rr ^= rol32(t3, 1);						\
8328c2ecf20Sopenharmony_ci})
8338c2ecf20Sopenharmony_ci
8348c2ecf20Sopenharmony_ci#define CAMELLIA_ROUNDSM(xl, xr, kl, kr, yl, yr, il, ir) ({		\
8358c2ecf20Sopenharmony_ci	yl ^= kl;							\
8368c2ecf20Sopenharmony_ci	yr ^= kr;							\
8378c2ecf20Sopenharmony_ci	ir =  camellia_sp1110[(u8)xr];					\
8388c2ecf20Sopenharmony_ci	il =  camellia_sp1110[(u8)(xl >> 24)];				\
8398c2ecf20Sopenharmony_ci	ir ^= camellia_sp0222[(u8)(xr >> 24)];				\
8408c2ecf20Sopenharmony_ci	il ^= camellia_sp0222[(u8)(xl >> 16)];				\
8418c2ecf20Sopenharmony_ci	ir ^= camellia_sp3033[(u8)(xr >> 16)];				\
8428c2ecf20Sopenharmony_ci	il ^= camellia_sp3033[(u8)(xl >> 8)];				\
8438c2ecf20Sopenharmony_ci	ir ^= camellia_sp4404[(u8)(xr >> 8)];				\
8448c2ecf20Sopenharmony_ci	il ^= camellia_sp4404[(u8)xl];					\
8458c2ecf20Sopenharmony_ci	ir ^= il;							\
8468c2ecf20Sopenharmony_ci	yl ^= ir;							\
8478c2ecf20Sopenharmony_ci	yr ^= ror32(il, 8) ^ ir;					\
8488c2ecf20Sopenharmony_ci})
8498c2ecf20Sopenharmony_ci
8508c2ecf20Sopenharmony_ci/* max = 24: 128bit encrypt, max = 32: 256bit encrypt */
8518c2ecf20Sopenharmony_cistatic void camellia_do_encrypt(const u32 *subkey, u32 *io, unsigned max)
8528c2ecf20Sopenharmony_ci{
8538c2ecf20Sopenharmony_ci	u32 il, ir, t0, t1;            /* temporary variables */
8548c2ecf20Sopenharmony_ci
8558c2ecf20Sopenharmony_ci	/* pre whitening but absorb kw2 */
8568c2ecf20Sopenharmony_ci	io[0] ^= SUBKEY_L(0);
8578c2ecf20Sopenharmony_ci	io[1] ^= SUBKEY_R(0);
8588c2ecf20Sopenharmony_ci
8598c2ecf20Sopenharmony_ci	/* main iteration */
8608c2ecf20Sopenharmony_ci#define ROUNDS(i) ({ \
8618c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[0], io[1], \
8628c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 2), SUBKEY_R(i + 2), \
8638c2ecf20Sopenharmony_ci			 io[2], io[3], il, ir); \
8648c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[2], io[3], \
8658c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 3), SUBKEY_R(i + 3), \
8668c2ecf20Sopenharmony_ci			 io[0], io[1], il, ir); \
8678c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[0], io[1], \
8688c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 4), SUBKEY_R(i + 4), \
8698c2ecf20Sopenharmony_ci			 io[2], io[3], il, ir); \
8708c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[2], io[3], \
8718c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 5), SUBKEY_R(i + 5), \
8728c2ecf20Sopenharmony_ci			 io[0], io[1], il, ir); \
8738c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[0], io[1], \
8748c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 6), SUBKEY_R(i + 6), \
8758c2ecf20Sopenharmony_ci			 io[2], io[3], il, ir); \
8768c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[2], io[3], \
8778c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 7), SUBKEY_R(i + 7), \
8788c2ecf20Sopenharmony_ci			 io[0], io[1], il, ir); \
8798c2ecf20Sopenharmony_ci})
8808c2ecf20Sopenharmony_ci#define FLS(i) ({ \
8818c2ecf20Sopenharmony_ci	CAMELLIA_FLS(io[0], io[1], io[2], io[3], \
8828c2ecf20Sopenharmony_ci		     SUBKEY_L(i + 0), SUBKEY_R(i + 0), \
8838c2ecf20Sopenharmony_ci		     SUBKEY_L(i + 1), SUBKEY_R(i + 1), \
8848c2ecf20Sopenharmony_ci		     t0, t1, il, ir); \
8858c2ecf20Sopenharmony_ci})
8868c2ecf20Sopenharmony_ci
8878c2ecf20Sopenharmony_ci	ROUNDS(0);
8888c2ecf20Sopenharmony_ci	FLS(8);
8898c2ecf20Sopenharmony_ci	ROUNDS(8);
8908c2ecf20Sopenharmony_ci	FLS(16);
8918c2ecf20Sopenharmony_ci	ROUNDS(16);
8928c2ecf20Sopenharmony_ci	if (max == 32) {
8938c2ecf20Sopenharmony_ci		FLS(24);
8948c2ecf20Sopenharmony_ci		ROUNDS(24);
8958c2ecf20Sopenharmony_ci	}
8968c2ecf20Sopenharmony_ci
8978c2ecf20Sopenharmony_ci#undef ROUNDS
8988c2ecf20Sopenharmony_ci#undef FLS
8998c2ecf20Sopenharmony_ci
9008c2ecf20Sopenharmony_ci	/* post whitening but kw4 */
9018c2ecf20Sopenharmony_ci	io[2] ^= SUBKEY_L(max);
9028c2ecf20Sopenharmony_ci	io[3] ^= SUBKEY_R(max);
9038c2ecf20Sopenharmony_ci	/* NB: io[0],[1] should be swapped with [2],[3] by caller! */
9048c2ecf20Sopenharmony_ci}
9058c2ecf20Sopenharmony_ci
9068c2ecf20Sopenharmony_cistatic void camellia_do_decrypt(const u32 *subkey, u32 *io, unsigned i)
9078c2ecf20Sopenharmony_ci{
9088c2ecf20Sopenharmony_ci	u32 il, ir, t0, t1;            /* temporary variables */
9098c2ecf20Sopenharmony_ci
9108c2ecf20Sopenharmony_ci	/* pre whitening but absorb kw2 */
9118c2ecf20Sopenharmony_ci	io[0] ^= SUBKEY_L(i);
9128c2ecf20Sopenharmony_ci	io[1] ^= SUBKEY_R(i);
9138c2ecf20Sopenharmony_ci
9148c2ecf20Sopenharmony_ci	/* main iteration */
9158c2ecf20Sopenharmony_ci#define ROUNDS(i) ({ \
9168c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[0], io[1], \
9178c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 7), SUBKEY_R(i + 7), \
9188c2ecf20Sopenharmony_ci			 io[2], io[3], il, ir); \
9198c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[2], io[3], \
9208c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 6), SUBKEY_R(i + 6), \
9218c2ecf20Sopenharmony_ci			 io[0], io[1], il, ir); \
9228c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[0], io[1], \
9238c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 5), SUBKEY_R(i + 5), \
9248c2ecf20Sopenharmony_ci			 io[2], io[3], il, ir); \
9258c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[2], io[3], \
9268c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 4), SUBKEY_R(i + 4), \
9278c2ecf20Sopenharmony_ci			 io[0], io[1], il, ir); \
9288c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[0], io[1], \
9298c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 3), SUBKEY_R(i + 3), \
9308c2ecf20Sopenharmony_ci			 io[2], io[3], il, ir); \
9318c2ecf20Sopenharmony_ci	CAMELLIA_ROUNDSM(io[2], io[3], \
9328c2ecf20Sopenharmony_ci			 SUBKEY_L(i + 2), SUBKEY_R(i + 2), \
9338c2ecf20Sopenharmony_ci			 io[0], io[1], il, ir); \
9348c2ecf20Sopenharmony_ci})
9358c2ecf20Sopenharmony_ci#define FLS(i) ({ \
9368c2ecf20Sopenharmony_ci	CAMELLIA_FLS(io[0], io[1], io[2], io[3], \
9378c2ecf20Sopenharmony_ci		     SUBKEY_L(i + 1), SUBKEY_R(i + 1), \
9388c2ecf20Sopenharmony_ci		     SUBKEY_L(i + 0), SUBKEY_R(i + 0), \
9398c2ecf20Sopenharmony_ci		     t0, t1, il, ir); \
9408c2ecf20Sopenharmony_ci})
9418c2ecf20Sopenharmony_ci
9428c2ecf20Sopenharmony_ci	if (i == 32) {
9438c2ecf20Sopenharmony_ci		ROUNDS(24);
9448c2ecf20Sopenharmony_ci		FLS(24);
9458c2ecf20Sopenharmony_ci	}
9468c2ecf20Sopenharmony_ci	ROUNDS(16);
9478c2ecf20Sopenharmony_ci	FLS(16);
9488c2ecf20Sopenharmony_ci	ROUNDS(8);
9498c2ecf20Sopenharmony_ci	FLS(8);
9508c2ecf20Sopenharmony_ci	ROUNDS(0);
9518c2ecf20Sopenharmony_ci
9528c2ecf20Sopenharmony_ci#undef ROUNDS
9538c2ecf20Sopenharmony_ci#undef FLS
9548c2ecf20Sopenharmony_ci
9558c2ecf20Sopenharmony_ci	/* post whitening but kw4 */
9568c2ecf20Sopenharmony_ci	io[2] ^= SUBKEY_L(0);
9578c2ecf20Sopenharmony_ci	io[3] ^= SUBKEY_R(0);
9588c2ecf20Sopenharmony_ci	/* NB: 0,1 should be swapped with 2,3 by caller! */
9598c2ecf20Sopenharmony_ci}
9608c2ecf20Sopenharmony_ci
9618c2ecf20Sopenharmony_ci
9628c2ecf20Sopenharmony_cistruct camellia_ctx {
9638c2ecf20Sopenharmony_ci	int key_length;
9648c2ecf20Sopenharmony_ci	u32 key_table[CAMELLIA_TABLE_BYTE_LEN / sizeof(u32)];
9658c2ecf20Sopenharmony_ci};
9668c2ecf20Sopenharmony_ci
9678c2ecf20Sopenharmony_cistatic int
9688c2ecf20Sopenharmony_cicamellia_set_key(struct crypto_tfm *tfm, const u8 *in_key,
9698c2ecf20Sopenharmony_ci		 unsigned int key_len)
9708c2ecf20Sopenharmony_ci{
9718c2ecf20Sopenharmony_ci	struct camellia_ctx *cctx = crypto_tfm_ctx(tfm);
9728c2ecf20Sopenharmony_ci	const unsigned char *key = (const unsigned char *)in_key;
9738c2ecf20Sopenharmony_ci
9748c2ecf20Sopenharmony_ci	if (key_len != 16 && key_len != 24 && key_len != 32)
9758c2ecf20Sopenharmony_ci		return -EINVAL;
9768c2ecf20Sopenharmony_ci
9778c2ecf20Sopenharmony_ci	cctx->key_length = key_len;
9788c2ecf20Sopenharmony_ci
9798c2ecf20Sopenharmony_ci	switch (key_len) {
9808c2ecf20Sopenharmony_ci	case 16:
9818c2ecf20Sopenharmony_ci		camellia_setup128(key, cctx->key_table);
9828c2ecf20Sopenharmony_ci		break;
9838c2ecf20Sopenharmony_ci	case 24:
9848c2ecf20Sopenharmony_ci		camellia_setup192(key, cctx->key_table);
9858c2ecf20Sopenharmony_ci		break;
9868c2ecf20Sopenharmony_ci	case 32:
9878c2ecf20Sopenharmony_ci		camellia_setup256(key, cctx->key_table);
9888c2ecf20Sopenharmony_ci		break;
9898c2ecf20Sopenharmony_ci	}
9908c2ecf20Sopenharmony_ci
9918c2ecf20Sopenharmony_ci	return 0;
9928c2ecf20Sopenharmony_ci}
9938c2ecf20Sopenharmony_ci
9948c2ecf20Sopenharmony_cistatic void camellia_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
9958c2ecf20Sopenharmony_ci{
9968c2ecf20Sopenharmony_ci	const struct camellia_ctx *cctx = crypto_tfm_ctx(tfm);
9978c2ecf20Sopenharmony_ci	const __be32 *src = (const __be32 *)in;
9988c2ecf20Sopenharmony_ci	__be32 *dst = (__be32 *)out;
9998c2ecf20Sopenharmony_ci	unsigned int max;
10008c2ecf20Sopenharmony_ci
10018c2ecf20Sopenharmony_ci	u32 tmp[4];
10028c2ecf20Sopenharmony_ci
10038c2ecf20Sopenharmony_ci	tmp[0] = be32_to_cpu(src[0]);
10048c2ecf20Sopenharmony_ci	tmp[1] = be32_to_cpu(src[1]);
10058c2ecf20Sopenharmony_ci	tmp[2] = be32_to_cpu(src[2]);
10068c2ecf20Sopenharmony_ci	tmp[3] = be32_to_cpu(src[3]);
10078c2ecf20Sopenharmony_ci
10088c2ecf20Sopenharmony_ci	if (cctx->key_length == 16)
10098c2ecf20Sopenharmony_ci		max = 24;
10108c2ecf20Sopenharmony_ci	else
10118c2ecf20Sopenharmony_ci		max = 32; /* for key lengths of 24 and 32 */
10128c2ecf20Sopenharmony_ci
10138c2ecf20Sopenharmony_ci	camellia_do_encrypt(cctx->key_table, tmp, max);
10148c2ecf20Sopenharmony_ci
10158c2ecf20Sopenharmony_ci	/* do_encrypt returns 0,1 swapped with 2,3 */
10168c2ecf20Sopenharmony_ci	dst[0] = cpu_to_be32(tmp[2]);
10178c2ecf20Sopenharmony_ci	dst[1] = cpu_to_be32(tmp[3]);
10188c2ecf20Sopenharmony_ci	dst[2] = cpu_to_be32(tmp[0]);
10198c2ecf20Sopenharmony_ci	dst[3] = cpu_to_be32(tmp[1]);
10208c2ecf20Sopenharmony_ci}
10218c2ecf20Sopenharmony_ci
10228c2ecf20Sopenharmony_cistatic void camellia_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
10238c2ecf20Sopenharmony_ci{
10248c2ecf20Sopenharmony_ci	const struct camellia_ctx *cctx = crypto_tfm_ctx(tfm);
10258c2ecf20Sopenharmony_ci	const __be32 *src = (const __be32 *)in;
10268c2ecf20Sopenharmony_ci	__be32 *dst = (__be32 *)out;
10278c2ecf20Sopenharmony_ci	unsigned int max;
10288c2ecf20Sopenharmony_ci
10298c2ecf20Sopenharmony_ci	u32 tmp[4];
10308c2ecf20Sopenharmony_ci
10318c2ecf20Sopenharmony_ci	tmp[0] = be32_to_cpu(src[0]);
10328c2ecf20Sopenharmony_ci	tmp[1] = be32_to_cpu(src[1]);
10338c2ecf20Sopenharmony_ci	tmp[2] = be32_to_cpu(src[2]);
10348c2ecf20Sopenharmony_ci	tmp[3] = be32_to_cpu(src[3]);
10358c2ecf20Sopenharmony_ci
10368c2ecf20Sopenharmony_ci	if (cctx->key_length == 16)
10378c2ecf20Sopenharmony_ci		max = 24;
10388c2ecf20Sopenharmony_ci	else
10398c2ecf20Sopenharmony_ci		max = 32; /* for key lengths of 24 and 32 */
10408c2ecf20Sopenharmony_ci
10418c2ecf20Sopenharmony_ci	camellia_do_decrypt(cctx->key_table, tmp, max);
10428c2ecf20Sopenharmony_ci
10438c2ecf20Sopenharmony_ci	/* do_decrypt returns 0,1 swapped with 2,3 */
10448c2ecf20Sopenharmony_ci	dst[0] = cpu_to_be32(tmp[2]);
10458c2ecf20Sopenharmony_ci	dst[1] = cpu_to_be32(tmp[3]);
10468c2ecf20Sopenharmony_ci	dst[2] = cpu_to_be32(tmp[0]);
10478c2ecf20Sopenharmony_ci	dst[3] = cpu_to_be32(tmp[1]);
10488c2ecf20Sopenharmony_ci}
10498c2ecf20Sopenharmony_ci
10508c2ecf20Sopenharmony_cistatic struct crypto_alg camellia_alg = {
10518c2ecf20Sopenharmony_ci	.cra_name		=	"camellia",
10528c2ecf20Sopenharmony_ci	.cra_driver_name	=	"camellia-generic",
10538c2ecf20Sopenharmony_ci	.cra_priority		=	100,
10548c2ecf20Sopenharmony_ci	.cra_flags		=	CRYPTO_ALG_TYPE_CIPHER,
10558c2ecf20Sopenharmony_ci	.cra_blocksize		=	CAMELLIA_BLOCK_SIZE,
10568c2ecf20Sopenharmony_ci	.cra_ctxsize		=	sizeof(struct camellia_ctx),
10578c2ecf20Sopenharmony_ci	.cra_alignmask		=	3,
10588c2ecf20Sopenharmony_ci	.cra_module		=	THIS_MODULE,
10598c2ecf20Sopenharmony_ci	.cra_u			=	{
10608c2ecf20Sopenharmony_ci		.cipher = {
10618c2ecf20Sopenharmony_ci			.cia_min_keysize	=	CAMELLIA_MIN_KEY_SIZE,
10628c2ecf20Sopenharmony_ci			.cia_max_keysize	=	CAMELLIA_MAX_KEY_SIZE,
10638c2ecf20Sopenharmony_ci			.cia_setkey		=	camellia_set_key,
10648c2ecf20Sopenharmony_ci			.cia_encrypt		=	camellia_encrypt,
10658c2ecf20Sopenharmony_ci			.cia_decrypt		=	camellia_decrypt
10668c2ecf20Sopenharmony_ci		}
10678c2ecf20Sopenharmony_ci	}
10688c2ecf20Sopenharmony_ci};
10698c2ecf20Sopenharmony_ci
10708c2ecf20Sopenharmony_cistatic int __init camellia_init(void)
10718c2ecf20Sopenharmony_ci{
10728c2ecf20Sopenharmony_ci	return crypto_register_alg(&camellia_alg);
10738c2ecf20Sopenharmony_ci}
10748c2ecf20Sopenharmony_ci
10758c2ecf20Sopenharmony_cistatic void __exit camellia_fini(void)
10768c2ecf20Sopenharmony_ci{
10778c2ecf20Sopenharmony_ci	crypto_unregister_alg(&camellia_alg);
10788c2ecf20Sopenharmony_ci}
10798c2ecf20Sopenharmony_ci
10808c2ecf20Sopenharmony_cisubsys_initcall(camellia_init);
10818c2ecf20Sopenharmony_cimodule_exit(camellia_fini);
10828c2ecf20Sopenharmony_ci
10838c2ecf20Sopenharmony_ciMODULE_DESCRIPTION("Camellia Cipher Algorithm");
10848c2ecf20Sopenharmony_ciMODULE_LICENSE("GPL");
10858c2ecf20Sopenharmony_ciMODULE_ALIAS_CRYPTO("camellia");
10868c2ecf20Sopenharmony_ciMODULE_ALIAS_CRYPTO("camellia-generic");
1087