Home
last modified time | relevance | path

Searched +full:avb +full:- +full:algorithm (Results 1 – 21 of 21) sorted by relevance

/OK3568_Linux_fs/u-boot/lib/
H A DKconfig6 Enables software based BCH ECC algorithm present in lib/bch.c
7 This is used by SoC platforms which do not have built-in ELM
13 Enabling this option will pass "-O2" to gcc when compiling
26 This option allows you to use the built-in libgcc implementation
27 of U-Boot instead of the one provided by the compiler.
68 If this variable is defined, U-Boot is linked against the
74 bool "Pseudo-random library support "
76 This library provides pseudo-random number generator functions.
82 The faster memset() is the arch-specific one (if available) enabled
85 size-constrained envrionments even this may be too big. Enable this
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/
H A Dsnps,dwmac.yaml1 # SPDX-License-Identifier: GPL-2.0
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Alexandre Torgue <alexandre.torgue@st.com>
11 - Giuseppe Cavallaro <peppe.cavallaro@st.com>
12 - Jose Abreu <joabreu@synopsys.com>
23 - snps,dwmac
24 - snps,dwmac-3.50a
25 - snps,dwmac-3.610
26 - snps,dwmac-3.70a
[all …]
/OK3568_Linux_fs/tools/linux/Linux_SecurityAVB/
H A Davb_user_tool.sh3 set -e
12 echo "$0 [ -n/f/s/d/l/u/h or --su_pswd]"
14 echo " Generate new AVB keys"
17 echo " Must generated keys [-n] firstly"
19 echo " [ -b < /path/to/boot.img > ]: Sign boot.img"
20 echo " [ -r < /path/to/recovery.img > ]: Sign recovery.img"
25 echo " --su_pswd Set super user password for fastboot"
32 echo -n $PRODUCT_ID > $KEYS/product_id.bin
34 …openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -outform PEM -out $KEYS/testkey_prk.p…
35 …openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -outform PEM -out $KEYS/testkey_psk.p…
[all …]
/OK3568_Linux_fs/u-boot/scripts/
H A Davbtool.py25 """Command-line tool for working with Android Verified Boot images."""
56 """Application-specific errors.
58 These errors represent issues for which a stack-trace should not be
69 class Algorithm(object): class
70 """Contains details about an algorithm.
74 The constant |ALGORITHMS| is a dictionary from human-readable
98 # The PKC1-v1.5 padding is a blob of binary DER of ASN.1 and is
101 'NONE': Algorithm(
108 'SHA256_RSA2048': Algorithm(
115 # PKCS1-v1_5 padding
[all …]
/OK3568_Linux_fs/tools/linux/Linux_SecurityAVB/scripts/
H A Davbtool25 """Command-line tool for working with Android Verified Boot images."""
52 """Application-specific errors.
54 These errors represent issues for which a stack-trace should not be
65 class Algorithm(object): class
66 """Contains details about an algorithm.
71 The constant |ALGORITHMS| is a dictionary from human-readable
95 # The PKC1-v1.5 padding is a blob of binary DER of ASN.1 and is
98 'NONE': Algorithm(
105 'SHA256_RSA2048': Algorithm(
112 # PKCS1-v1_5 padding
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_platform.c1 // SPDX-License-Identifier: GPL-2.0-only
5 Copyright (C) 2007-2011 STMicroelectronics Ltd
26 * dwmac1000_validate_mcast_bins - validates the number of Multicast filter bins
35 * invalid and will cause the filtering algorithm to use Multicast
57 * dwmac1000_validate_ucast_entries - validate the Unicast address entries
88 * stmmac_axi_setup - parse DT parameters for programming the AXI register
91 * if required, from device-tree the AXI internal register can be tuned
99 np = of_parse_phandle(pdev->dev.of_node, "snps,axi-config", 0); in stmmac_axi_setup()
103 axi = devm_kzalloc(&pdev->dev, sizeof(*axi), GFP_KERNEL); in stmmac_axi_setup()
106 return ERR_PTR(-ENOMEM); in stmmac_axi_setup()
[all …]
H A Ddwmac4_core.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * This is the driver for the GMAC on-chip Ethernet controller for ST SoCs.
26 void __iomem *ioaddr = hw->pcsr; in dwmac4_core_init()
31 if (hw->ps) { in dwmac4_core_init()
34 value &= hw->link.speed_mask; in dwmac4_core_init()
35 switch (hw->ps) { in dwmac4_core_init()
37 value |= hw->link.speed1000; in dwmac4_core_init()
40 value |= hw->link.speed100; in dwmac4_core_init()
43 value |= hw->link.speed10; in dwmac4_core_init()
53 if (hw->pcs) in dwmac4_core_init()
[all …]
/OK3568_Linux_fs/kernel/Documentation/networking/device_drivers/ethernet/stmicro/
H A Dstmmac.rst1 .. SPDX-License-Identifier: GPL-2.0+
13 - In This Release
14 - Feature List
15 - Kernel Configuration
16 - Command Line Parameters
17 - Driver Information and Notes
18 - Debug Information
19 - Support
33 (and older) and DesignWare(R) Cores Ethernet Quality-of-Service version 4.0
35 DesignWare(R) Cores XGMAC - 10G Ethernet MAC and DesignWare(R) Cores
[all …]
/OK3568_Linux_fs/kernel/sound/pci/asihpi/
H A Dhpi.h1 /* SPDX-License-Identifier: GPL-2.0-only */
5 Copyright (C) 1997-2011 AudioScience Inc. <support@audioscience.com>
14 The HPI is a low-level hardware abstraction layer to all
17 (C) Copyright AudioScience Inc. 1998-2010
37 /** 8-bit unsigned PCM. Windows equivalent is WAVE_FORMAT_PCM. */
39 /** 16-bit signed PCM. Windows equivalent is WAVE_FORMAT_PCM. */
41 /** MPEG-1 Layer-1. */
43 /** MPEG-1 Layer-2.
67 <tr><td>256<td>-<td>X
68 <tr><td>320<td>-<td>X
[all …]
H A Dasihpi.c1 // SPDX-License-Identifier: GPL-2.0-only
41 * snd_printddd - very verbose debug printk
54 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* index 0-MAX */
291 #define INVALID_FORMAT (__force snd_pcm_format_t)(-1)
310 /* ALSA can't handle 3 byte sample size together with power-of-2
336 return -EINVAL; in snd_card_asihpi_format_alsa2hpi()
350 if (asihpi->support_mrx) { in snd_card_asihpi_pcm_samplerates()
358 err = hpi_mixer_get_control(asihpi->h_mixer, in snd_card_asihpi_pcm_samplerates()
362 dev_err(&asihpi->pci->dev, in snd_card_asihpi_pcm_samplerates()
366 for (idx = -1; idx < 100; idx++) { in snd_card_asihpi_pcm_samplerates()
[all …]
/OK3568_Linux_fs/u-boot/lib/avb/libavb/
H A Davb_slot_verify.c45 /* Maximum size of a vbmeta image - 64 KiB. */
100 if (ops->get_preloaded_partition != NULL) { in load_full_partition()
101 io_ret = ops->get_preloaded_partition( in load_full_partition()
127 io_ret = ops->read_from_partition(ops, in load_full_partition()
151 * it can be initialized by providing a non-NULL |initial_digest| of length
173 if (ops->read_persistent_value == NULL) { in read_persistent_digest()
183 io_ret = ops->read_persistent_value(ops, in read_persistent_digest()
240 io_ret = ops->read_is_device_unlocked(ops, &is_device_unlocked); in initialize_persistent_digest()
260 io_ret = ops->write_persistent_value( in initialize_persistent_digest()
269 // To ensure that the digest value was written successfully - and avoid a in initialize_persistent_digest()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/
H A Dd11.h2 * Chip-specific hardware definitions for
14 * <<Broadcom-WL-IPTag/Proprietary:>>
70 #define TX_AC_BE_FIFO 1 /**< Access Category Best-Effort TX FIFO */
82 #define TX_TRIG_BE_FIFO 7 /**< Access Category Best-Effort TX FIFO */
239 #define MI_ATIMWINEND (1 << 5) /**< end of ATIM-window (IBSS) */
242 #define MI_NSPECGEN_1 (1 << 8) /**< non-specific gen-stat bits that are set by PSM */
247 #define MI_GP0 (1 << 13) /**< General-purpose timer0 */
248 #define MI_GP1 (1 << 14) /**< General-purpose timer1 */
249 #define MI_DMAINT (1 << 15) /**< (ORed) DMA-interrupts */
255 #define MI_HEB (1 << 21) /**< HEB (Hardware Event Block) interrupt - 11ax cores */
[all …]
H A Dwlioctl.h26 * <<Broadcom-WL-IPTag/Dual:>>
62 * BCME_.. error codes are extended by various features - e.g. FTM, NAN, SAE etc.
69 * The error codes -4096 ... -5119 are reserved for firmware signing.
71 * Next available (inclusive) range: [-8*1024 + 1, -7*1024]
76 /* 11ax trigger frame format - versioning info */
122 (sizeof(wl_dfs_forced_t) + (((n) < 1) ? (0) : (((n) - 1)* sizeof(chanspec_t))))
142 #define DFS_SCAN_S_IDLE -1
227 * will see OBSS, [means that, we false detected that OBSS-is-gone
537 #define WL_GSCAN_INFO_FIXED_FIELD_SIZE (sizeof(wl_gscan_bss_info_t) - sizeof(wl_bss_info_t))
595 uint8 bsscolor_index; /**< bsscolor index 0-1 */
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/
H A Dhndpmu.c3 * of the SiliconBackplane-based Broadcom chips.
22 * <<Broadcom-WL-IPTag/Dual:>>
341 switch (CHIPID(sih->chip)) { in BCMRAMFN()
434 if (PMUREV(sih->pmurev) >= 5) { in BCMATTACHFN()
435 pll_ctrlcnt = (sih->pmucaps & PCAP5_PC_MASK) >> PCAP5_PC_SHIFT; in BCMATTACHFN()
437 pll_ctrlcnt = (sih->pmucaps & PCAP_PC_MASK) >> PCAP_PC_SHIFT; in BCMATTACHFN()
467 if (PMUREV(sih->pmurev) >= 5) { in BCMATTACHFN()
468 vreg_ctrlcnt = (sih->pmucaps & PCAP5_VC_MASK) >> PCAP5_VC_SHIFT; in BCMATTACHFN()
470 vreg_ctrlcnt = (sih->pmucaps & PCAP_VC_MASK) >> PCAP_VC_SHIFT; in BCMATTACHFN()
497 if (PMUREV(sih->pmurev) >= 5) { in BCMATTACHFN()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/
H A Dhndpmu.c3 * of the SiliconBackplane-based Broadcom chips.
22 * <<Broadcom-WL-IPTag/Dual:>>
341 switch (CHIPID(sih->chip)) { in BCMRAMFN()
434 if (PMUREV(sih->pmurev) >= 5) { in BCMATTACHFN()
435 pll_ctrlcnt = (sih->pmucaps & PCAP5_PC_MASK) >> PCAP5_PC_SHIFT; in BCMATTACHFN()
437 pll_ctrlcnt = (sih->pmucaps & PCAP_PC_MASK) >> PCAP_PC_SHIFT; in BCMATTACHFN()
467 if (PMUREV(sih->pmurev) >= 5) { in BCMATTACHFN()
468 vreg_ctrlcnt = (sih->pmucaps & PCAP5_VC_MASK) >> PCAP5_VC_SHIFT; in BCMATTACHFN()
470 vreg_ctrlcnt = (sih->pmucaps & PCAP_VC_MASK) >> PCAP_VC_SHIFT; in BCMATTACHFN()
497 if (PMUREV(sih->pmurev) >= 5) { in BCMATTACHFN()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/include/
H A Dwlioctl.h26 * <<Broadcom-WL-IPTag/Dual:>>
62 * BCME_.. error codes are extended by various features - e.g. FTM, NAN, SAE etc.
69 * The error codes -4096 ... -5119 are reserved for firmware signing.
71 * Next available (inclusive) range: [-8*1024 + 1, -7*1024]
76 /* 11ax trigger frame format - versioning info */
122 (sizeof(wl_dfs_forced_t) + (((n) < 1) ? (0) : (((n) - 1)* sizeof(chanspec_t))))
142 #define DFS_SCAN_S_IDLE -1
227 * will see OBSS, [means that, we false detected that OBSS-is-gone
537 #define WL_GSCAN_INFO_FIXED_FIELD_SIZE (sizeof(wl_gscan_bss_info_t) - sizeof(wl_bss_info_t))
595 uint8 bsscolor_index; /**< bsscolor index 0-1 */
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_indep_power/include/
H A Dwlioctl.h1 /* SPDX-License-Identifier: GPL-2.0 */
10 * Copyright (C) 1999-2017, Broadcom Corporation
29 * <<Broadcom-WL-IPTag/Open:>>
31 * $Id: wlioctl.h 677952 2017-01-05 23:25:28Z $
91 (sizeof(wl_dfs_forced_t) + (((n) < 1) ? (0) : (((n) - 1)* sizeof(chanspec_t))))
107 #define DFS_SCAN_S_IDLE -1
193 * will see OBSS, [means that, we false detected that OBSS-is-gone
294 * Per-BSS information structure.
396 #define WL_GSCAN_INFO_FIXED_FIELD_SIZE (sizeof(wl_gscan_bss_info_t) - sizeof(wl_bss_info_t))
546 #define WL_EXTDSCAN_PARAMS_FIXED_SIZE (sizeof(wl_extdscan_params_t) - sizeof(chan_scandata_t))
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/include/
H A Dwlioctl.h11 * Copyright (C) 1999-2017, Broadcom Corporation
32 * <<Broadcom-WL-IPTag/Open:>>
61 * BCME_.. error codes are extended by various features - e.g. FTM, NAN, SAE etc.
68 * The error codes -4096 ... -5119 are reserved for firmware signing.
70 * Next available (inclusive) range: [-6*1024 + 1, -5*1024]
75 /* 11ax trigger frame format - versioning info */
122 (sizeof(wl_dfs_forced_t) + (((n) < 1) ? (0) : (((n) - 1)* sizeof(chanspec_t))))
138 #define DFS_SCAN_S_IDLE -1
253 * will see OBSS, [means that, we false detected that OBSS-is-gone
353 * Per-BSS information structure.
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/include/
H A Dwlioctl.h11 * Copyright (C) 1999-2017, Broadcom Corporation
32 * <<Broadcom-WL-IPTag/Open:>>
61 * BCME_.. error codes are extended by various features - e.g. FTM, NAN, SAE etc.
68 * The error codes -4096 ... -5119 are reserved for firmware signing.
70 * Next available (inclusive) range: [-6*1024 + 1, -5*1024]
75 /* 11ax trigger frame format - versioning info */
122 (sizeof(wl_dfs_forced_t) + (((n) < 1) ? (0) : (((n) - 1)* sizeof(chanspec_t))))
138 #define DFS_SCAN_S_IDLE -1
253 * will see OBSS, [means that, we false detected that OBSS-is-gone
353 * Per-BSS information structure.
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/infineon/include/
H A Dwlioctl.h11 * Copyright (C) 1999-2017, Broadcom Corporation
32 * <<Broadcom-WL-IPTag/Open:>>
61 * BCME_.. error codes are extended by various features - e.g. FTM, NAN, SAE etc.
68 * The error codes -4096 ... -5119 are reserved for firmware signing.
70 * Next available (inclusive) range: [-6*1024 + 1, -5*1024]
75 /* 11ax trigger frame format - versioning info */
122 (sizeof(wl_dfs_forced_t) + (((n) < 1) ? (0) : (((n) - 1)* sizeof(chanspec_t))))
138 #define DFS_SCAN_S_IDLE -1
264 * will see OBSS, [means that, we false detected that OBSS-is-gone
364 * Per-BSS information structure.
[all …]
/OK3568_Linux_fs/recovery/
HDrootfs.cpio.gz ... then 81 /usr/share/command-not-found/command-not-found -- "$ ...