Home
last modified time | relevance | path

Searched full:fallback (Results 1 – 25 of 1614) sorted by relevance

12345678910>>...65

/OK3568_Linux_fs/buildroot/package/log4cxx/
H A D0001-boost-fallback-only-check-for-boost-if-really-needed.patch4 Subject: [PATCH] boost-fallback: only check for boost if really needed
10 src/cmake/boost-fallback/boost-fallback.cmake | 3 +++
13 diff --git a/src/cmake/boost-fallback/boost-fallback.cmake b/src/cmake/boost-fallback/boost-fallbac…
15 --- a/src/cmake/boost-fallback/boost-fallback.cmake
16 +++ b/src/cmake/boost-fallback/boost-fallback.cmake
17 @@ -55,6 +55,8 @@ try_compile(STD_SHARED_PTR_FOUND "${CMAKE_BINARY_DIR}/boost-fallback-compile-tes
18 try_compile(STD_ATOMIC_FOUND "${CMAKE_BINARY_DIR}/boost-fallback-compile-tests"
25 try_compile(Boost_SHARED_PTR_FOUND "${CMAKE_BINARY_DIR}/boost-fallback-compile-tests"
27 try_compile(Boost_ATOMIC_FOUND "${CMAKE_BINARY_DIR}/boost-fallback-compile-tests"
/OK3568_Linux_fs/kernel/Documentation/driver-api/firmware/
H A Dfallback-mechanisms.rst2 Fallback mechanisms
5 A fallback mechanism is supported to allow to overcome failures to do a direct
8 configuration options related to supporting the firmware fallback mechanism are:
10 * CONFIG_FW_LOADER_USER_HELPER: enables building the firmware fallback
12 CONFIG_FW_LOADER_USER_HELPER_FALLBACK is disabled, only the custom fallback
15 enable the kobject uevent fallback mechanism on all firmware API calls
18 fallback mechanism: if this kconfig option is enabled and your second
20 informing the kernel that you have a custom fallback mechanism and it will
28 the kobject uevent fallback mechanism will never take effect even
31 Justifying the firmware fallback mechanism
[all …]
/OK3568_Linux_fs/kernel/drivers/crypto/vmx/
H A Daes.c23 struct crypto_cipher *fallback; member
31 struct crypto_cipher *fallback; in p8_aes_init() local
34 fallback = crypto_alloc_cipher(alg, 0, CRYPTO_ALG_NEED_FALLBACK); in p8_aes_init()
35 if (IS_ERR(fallback)) { in p8_aes_init()
38 alg, PTR_ERR(fallback)); in p8_aes_init()
39 return PTR_ERR(fallback); in p8_aes_init()
42 crypto_cipher_set_flags(fallback, in p8_aes_init()
46 ctx->fallback = fallback; in p8_aes_init()
55 if (ctx->fallback) { in p8_aes_exit()
56 crypto_free_cipher(ctx->fallback); in p8_aes_exit()
[all …]
H A Daes_cbc.c19 struct crypto_skcipher *fallback; member
27 struct crypto_skcipher *fallback; in p8_aes_cbc_init() local
29 fallback = crypto_alloc_skcipher("cbc(aes)", 0, in p8_aes_cbc_init()
32 if (IS_ERR(fallback)) { in p8_aes_cbc_init()
33 pr_err("Failed to allocate cbc(aes) fallback: %ld\n", in p8_aes_cbc_init()
34 PTR_ERR(fallback)); in p8_aes_cbc_init()
35 return PTR_ERR(fallback); in p8_aes_cbc_init()
39 crypto_skcipher_reqsize(fallback)); in p8_aes_cbc_init()
40 ctx->fallback = fallback; in p8_aes_cbc_init()
48 crypto_free_skcipher(ctx->fallback); in p8_aes_cbc_exit()
[all …]
H A Daes_ctr.c19 struct crypto_skcipher *fallback; member
26 struct crypto_skcipher *fallback; in p8_aes_ctr_init() local
28 fallback = crypto_alloc_skcipher("ctr(aes)", 0, in p8_aes_ctr_init()
31 if (IS_ERR(fallback)) { in p8_aes_ctr_init()
32 pr_err("Failed to allocate ctr(aes) fallback: %ld\n", in p8_aes_ctr_init()
33 PTR_ERR(fallback)); in p8_aes_ctr_init()
34 return PTR_ERR(fallback); in p8_aes_ctr_init()
38 crypto_skcipher_reqsize(fallback)); in p8_aes_ctr_init()
39 ctx->fallback = fallback; in p8_aes_ctr_init()
47 crypto_free_skcipher(ctx->fallback); in p8_aes_ctr_exit()
[all …]
H A Daes_xts.c20 struct crypto_skcipher *fallback; member
29 struct crypto_skcipher *fallback; in p8_aes_xts_init() local
31 fallback = crypto_alloc_skcipher("xts(aes)", 0, in p8_aes_xts_init()
34 if (IS_ERR(fallback)) { in p8_aes_xts_init()
35 pr_err("Failed to allocate xts(aes) fallback: %ld\n", in p8_aes_xts_init()
36 PTR_ERR(fallback)); in p8_aes_xts_init()
37 return PTR_ERR(fallback); in p8_aes_xts_init()
41 crypto_skcipher_reqsize(fallback)); in p8_aes_xts_init()
42 ctx->fallback = fallback; in p8_aes_xts_init()
50 crypto_free_skcipher(ctx->fallback); in p8_aes_xts_exit()
[all …]
/OK3568_Linux_fs/kernel/drivers/firmware/broadcom/
H A Dbcm47xx_sprom.c50 const char *name, char *buf, int len, bool fallback) in get_nvram_var() argument
58 if (fallback && err == -ENOENT && prefix) { in get_nvram_var()
68 type *val, type allset, bool fallback) \
75 fallback); \
97 u16 *val_lo, u16 *val_hi, bool fallback) in NVRAM_READ_VAL()
103 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); in NVRAM_READ_VAL()
118 bool fallback) in nvram_read_leddc() argument
124 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); in nvram_read_leddc()
142 u8 val[6], bool fallback) in nvram_read_macaddr() argument
147 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); in nvram_read_macaddr()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5virtualkeyboard/
HDqtvirtualkeyboard-e8ae4757dd32e8dbf69a7c57f2bc5c1e238416db.tar.bz2pax_global_header qtvirtualkeyboard-e8ae4757dd32e8dbf69a7c57f2bc5c1e238416db/ qtvirtualkeyboard-e8ae4757dd32e8dbf69a7c57f2bc5c1e238416db/.qmake.conf qtvirtualkeyboard-e8ae4757dd32e8dbf69a7c57f2bc5c1e238416db/.tag ...
/OK3568_Linux_fs/kernel/drivers/base/firmware_loader/
H A DKconfig72 bool "Enable the firmware sysfs fallback mechanism"
76 loading to the kernel through userspace as a fallback mechanism
81 built-in. For details on how to work with the sysfs fallback mechanism
82 refer to Documentation/driver-api/firmware/fallback-mechanisms.rst.
87 the requested firmware a sysfs fallback loading facility is made
90 this is known as the driver using the custom fallback mechanism.
91 If the custom fallback mechanism is used userspace must always
92 acknowledge failure to find firmware as the timeout for the fallback
98 can no longer be relied upon as a fallback mechanism. Linux no longer
99 relies on or uses a fallback mechanism in userspace. If you need to
[all …]
H A Dfirmware.h17 * @FW_OPT_UEVENT: Enables the fallback mechanism to send a kobject uevent
21 * @FW_OPT_USERHELPER: Enable the fallback mechanism, in case the direct
30 * @FW_OPT_NOFALLBACK_SYSFS: Disable the sysfs fallback mechanism. Takes
32 * @FW_OPT_FALLBACK_PLATFORM: Enable fallback to device fw copy embedded in
33 * the platform's main firmware. If both this fallback and the sysfs
34 * fallback are enabled, then this fallback will be tried first.
H A Dfallback.h11 * struct firmware_fallback_config - firmware fallback configuration settings
13 * Helps describe and fine tune the fallback mechanism.
15 * @force_sysfs_fallback: force the sysfs fallback mechanism to be used
19 * @ignore_sysfs_fallback: force to disable the sysfs fallback mechanism.
23 * @loading_timeout: the timeout to wait for the fallback mechanism before
/OK3568_Linux_fs/kernel/drivers/crypto/
H A Dgeode-aes.c127 * The requested key size is not supported by HW, do a fallback in geode_setkey_cip()
129 tctx->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK; in geode_setkey_cip()
130 tctx->fallback.cip->base.crt_flags |= in geode_setkey_cip()
133 return crypto_cipher_setkey(tctx->fallback.cip, key, len); in geode_setkey_cip()
153 * The requested key size is not supported by HW, do a fallback in geode_setkey_skcipher()
155 crypto_skcipher_clear_flags(tctx->fallback.skcipher, in geode_setkey_skcipher()
157 crypto_skcipher_set_flags(tctx->fallback.skcipher, in geode_setkey_skcipher()
160 return crypto_skcipher_setkey(tctx->fallback.skcipher, key, len); in geode_setkey_skcipher()
169 crypto_cipher_encrypt_one(tctx->fallback.cip, out, in); in geode_encrypt()
184 crypto_cipher_decrypt_one(tctx->fallback.cip, out, in); in geode_decrypt()
[all …]
H A Datmel-ecc.c31 * @fallback : used for unsupported curves or when user wants to use its own
43 struct crypto_kpp *fallback; member
109 /* fallback to ecdh software implementation */ in atmel_ecdh_set_secret()
111 return crypto_kpp_set_secret(ctx->fallback, buf, len); in atmel_ecdh_set_secret()
158 kpp_request_set_tfm(req, ctx->fallback); in atmel_ecdh_generate_public_key()
187 kpp_request_set_tfm(req, ctx->fallback); in atmel_ecdh_compute_shared_secret()
263 struct crypto_kpp *fallback; in atmel_ecdh_init_tfm() local
272 fallback = crypto_alloc_kpp(alg, 0, CRYPTO_ALG_NEED_FALLBACK); in atmel_ecdh_init_tfm()
273 if (IS_ERR(fallback)) { in atmel_ecdh_init_tfm()
275 alg, PTR_ERR(fallback)); in atmel_ecdh_init_tfm()
[all …]
H A Dpadlock-sha.c24 struct shash_desc fallback; member
28 struct crypto_shash *fallback; member
36 dctx->fallback.tfm = ctx->fallback; in padlock_sha_init()
37 return crypto_shash_init(&dctx->fallback); in padlock_sha_init()
45 return crypto_shash_update(&dctx->fallback, data, length); in padlock_sha_update()
52 return crypto_shash_export(&dctx->fallback, out); in padlock_sha_export()
60 dctx->fallback.tfm = ctx->fallback; in padlock_sha_import()
61 return crypto_shash_import(&dctx->fallback, in); in padlock_sha_import()
86 err = crypto_shash_export(&dctx->fallback, &state); in padlock_sha1_finup()
91 return crypto_shash_finup(&dctx->fallback, in, count, out); in padlock_sha1_finup()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/parallel/
H A Dalgo.h65 // Sequential fallback in _GLIBCXX_VISIBILITY()
72 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
123 // Sequential fallback in _GLIBCXX_VISIBILITY()
130 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
169 // Sequential fallback in _GLIBCXX_VISIBILITY()
176 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
206 // Sequential fallback in _GLIBCXX_VISIBILITY()
216 // Sequential fallback in _GLIBCXX_VISIBILITY()
226 // Sequential fallback for input iterator type in _GLIBCXX_VISIBILITY()
252 // Sequential fallback for input iterator type in _GLIBCXX_VISIBILITY()
[all …]
H A Dalgobase.h51 // Sequential fallback in _GLIBCXX_VISIBILITY()
58 // Sequential fallback in _GLIBCXX_VISIBILITY()
65 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
118 // Sequential fallback. in _GLIBCXX_VISIBILITY()
126 // Sequential fallback. in _GLIBCXX_VISIBILITY()
139 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
201 // Sequential fallback in _GLIBCXX_VISIBILITY()
208 // Sequential fallback in _GLIBCXX_VISIBILITY()
247 // Sequential fallback in _GLIBCXX_VISIBILITY()
256 // Sequential fallback in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/parallel/
H A Dalgo.h65 // Sequential fallback in _GLIBCXX_VISIBILITY()
72 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
123 // Sequential fallback in _GLIBCXX_VISIBILITY()
130 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
169 // Sequential fallback in _GLIBCXX_VISIBILITY()
176 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
206 // Sequential fallback in _GLIBCXX_VISIBILITY()
216 // Sequential fallback in _GLIBCXX_VISIBILITY()
226 // Sequential fallback for input iterator type in _GLIBCXX_VISIBILITY()
252 // Sequential fallback for input iterator type in _GLIBCXX_VISIBILITY()
[all …]
H A Dalgobase.h51 // Sequential fallback in _GLIBCXX_VISIBILITY()
58 // Sequential fallback in _GLIBCXX_VISIBILITY()
65 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
118 // Sequential fallback. in _GLIBCXX_VISIBILITY()
126 // Sequential fallback. in _GLIBCXX_VISIBILITY()
139 // Sequential fallback for input iterator case in _GLIBCXX_VISIBILITY()
201 // Sequential fallback in _GLIBCXX_VISIBILITY()
208 // Sequential fallback in _GLIBCXX_VISIBILITY()
247 // Sequential fallback in _GLIBCXX_VISIBILITY()
256 // Sequential fallback in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/kernel/Documentation/block/
H A Dinline-encryption.rst27 To allow for testing, we also want a crypto API fallback when actual
84 blk-mq changes, other block layer changes and blk-crypto-fallback
93 We introduce ``block/blk-crypto-fallback.c``, which allows upper layers to remain
97 en/decrypt the bio with the blk-crypto-fallback.
102 concerned). ``blk-crypto-fallback`` sets the bounce bio's ``bi_end_io`` to an
106 is saved and overwritten by ``blk-crypto-fallback`` to
114 blk-crypto-fallback is used, the ciphertext written to disk (and hence the
120 ``blk-crypto-fallback``. We will eventually reach a point in blk-mq when a
154 blk-crypto-fallback, if hardware support isn't available for the desired
160 (either by real inline encryption hardware, or by the blk-crypto-fallback).
[all …]
/OK3568_Linux_fs/kernel/arch/s390/crypto/
H A Daes_s390.c10 * Sebastian Siewior (sebastian@breakpoint.cc> SW-Fallback
50 } fallback; member
58 struct crypto_skcipher *fallback; member
77 sctx->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK; in setkey_fallback_cip()
78 sctx->fallback.cip->base.crt_flags |= (tfm->crt_flags & in setkey_fallback_cip()
81 return crypto_cipher_setkey(sctx->fallback.cip, in_key, key_len); in setkey_fallback_cip()
110 crypto_cipher_encrypt_one(sctx->fallback.cip, out, in); in crypto_aes_encrypt()
121 crypto_cipher_decrypt_one(sctx->fallback.cip, out, in); in crypto_aes_decrypt()
133 sctx->fallback.cip = crypto_alloc_cipher(name, 0, in fallback_init_cip()
136 if (IS_ERR(sctx->fallback.cip)) { in fallback_init_cip()
[all …]
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.20/
H A D0037-kmssink-Improve-monitor-and-plane-selection.patch10 4/ Fallback to the first usable overlay plane.
54 + int i, pipe, plane_type, num_primary, fallback;
57 + fallback = 0;
75 + } else if (!fallback && plane_type == DRM_PLANE_TYPE_OVERLAY) {
76 + /* Use first overlay plane as fallback */
77 + fallback = plane->plane_id;
83 + /* Fallback to the first overlay plane */
84 + if (fallback)
85 + return drmModeGetPlane (fd, fallback);
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22/
H A D0038-kmssink-Improve-monitor-and-plane-selection.patch10 4/ Fallback to the first usable overlay plane.
54 + int i, pipe, plane_type, num_primary, fallback;
57 + fallback = 0;
75 + } else if (!fallback && plane_type == DRM_PLANE_TYPE_OVERLAY) {
76 + /* Use first overlay plane as fallback */
77 + fallback = plane->plane_id;
83 + /* Fallback to the first overlay plane */
84 + if (fallback)
85 + return drmModeGetPlane (fd, fallback);
/OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-bad/
H A D0038-kmssink-Improve-monitor-and-plane-selection.patch10 4/ Fallback to the first usable overlay plane.
54 + int i, pipe, plane_type, num_primary, fallback;
57 + fallback = 0;
75 + } else if (!fallback && plane_type == DRM_PLANE_TYPE_OVERLAY) {
76 + /* Use first overlay plane as fallback */
77 + fallback = plane->plane_id;
83 + /* Fallback to the first overlay plane */
84 + if (fallback)
85 + return drmModeGetPlane (fd, fallback);
/OK3568_Linux_fs/kernel/tools/testing/selftests/firmware/
H A Dfw_fallback.sh3 # This validates that the kernel will fall back to using the fallback mechanism
76 echo "$0: custom fallback trigger not present, ignoring test" >&2
109 echo "$0: canceling custom fallback trigger not present, ignoring test" >&2
170 echo "$0: fallback mechanism immediately cancelled"
175 echo "to immediately cancel all fallback requests, this must be"
217 echo "$0: fallback mechanism works"
225 echo "$0: cancelling fallback mechanism works"
248 echo "$0: custom fallback loading mechanism works"
259 echo "$0: custom fallback loading mechanism works"
272 echo "$0: cancelling custom fallback mechanism works"
/OK3568_Linux_fs/kernel/drivers/net/wireless/broadcom/b43/
H A Dxmit.h31 __le16 phy_ctl1_fb; /* PHY TX control word 1 for fallback rates */
33 __le16 phy_ctl1_rts_fb; /* PHY TX control word 1 RTS for fallback rates */
40 __le16 tx_fes_time_fb; /* TX FES Time Fallback */
41 struct b43_plcp_hdr6 rts_plcp_fb; /* RTS fallback PLCP header */
42 __le16 rts_dur_fb; /* RTS fallback duration */
43 struct b43_plcp_hdr6 plcp_fb; /* Fallback PLCP header */
44 __le16 dur_fb; /* Fallback duration */
46 __le16 mimo_ratelen_fb; /* MIMO fallback rate length */
101 #define B43_TXH_MAC_RTS_FB_SHORTPRMBL 0x80000000 /* RTS fallback preamble */
103 #define B43_TXH_MAC_FB_SHORTPRMBL 0x20000000 /* Main fallback preamble */
[all …]

12345678910>>...65