/openbmc/linux/drivers/crypto/caam/ |
H A D | pkc_desc.c | 14 void init_rsa_pub_desc(u32 *desc, struct rsa_pub_pdb *pdb) in init_rsa_pub_desc() argument 17 append_cmd(desc, pdb->sgf); in init_rsa_pub_desc() 18 append_ptr(desc, pdb->f_dma); in init_rsa_pub_desc() 19 append_ptr(desc, pdb->g_dma); in init_rsa_pub_desc() 20 append_ptr(desc, pdb->n_dma); in init_rsa_pub_desc() 21 append_ptr(desc, pdb->e_dma); in init_rsa_pub_desc() 22 append_cmd(desc, pdb->f_len); in init_rsa_pub_desc() 27 void init_rsa_priv_f1_desc(u32 *desc, struct rsa_priv_f1_pdb *pdb) in init_rsa_priv_f1_desc() argument 30 append_cmd(desc, pdb->sgf); in init_rsa_priv_f1_desc() 31 append_ptr(desc, pdb->g_dma); in init_rsa_priv_f1_desc() [all …]
|
H A D | caampkc.c | 68 struct rsa_pub_pdb *pdb = &edesc->pdb.pub; in rsa_pub_unmap() local 70 dma_unmap_single(dev, pdb->n_dma, key->n_sz, DMA_TO_DEVICE); in rsa_pub_unmap() 71 dma_unmap_single(dev, pdb->e_dma, key->e_sz, DMA_TO_DEVICE); in rsa_pub_unmap() 80 struct rsa_priv_f1_pdb *pdb = &edesc->pdb.priv_f1; in rsa_priv_f1_unmap() local 82 dma_unmap_single(dev, pdb->n_dma, key->n_sz, DMA_TO_DEVICE); in rsa_priv_f1_unmap() 83 dma_unmap_single(dev, pdb->d_dma, key->d_sz, DMA_TO_DEVICE); in rsa_priv_f1_unmap() 92 struct rsa_priv_f2_pdb *pdb = &edesc->pdb.priv_f2; in rsa_priv_f2_unmap() local 96 dma_unmap_single(dev, pdb->d_dma, key->d_sz, DMA_TO_DEVICE); in rsa_priv_f2_unmap() 97 dma_unmap_single(dev, pdb->p_dma, p_sz, DMA_TO_DEVICE); in rsa_priv_f2_unmap() 98 dma_unmap_single(dev, pdb->q_dma, q_sz, DMA_TO_DEVICE); in rsa_priv_f2_unmap() [all …]
|
H A D | pdb.h | 3 * CAAM Protocol Data Block (PDB) definition header file 14 * PDB- IPSec ESP Header Modification Options 33 * the PDB, copy the DF bit from the inner IP header to the outer IP header. 47 * PDB - IPSec ESP Encap/Decap Options 57 #define PDBOPTS_ESP_IPHDRSRC 0x08 /* IP header comes from PDB (encap) */ 68 * General IPSec encap/decap PDB definitions 72 * ipsec_encap_cbc - PDB part for IPsec CBC encapsulation 80 * ipsec_encap_ctr - PDB part for IPsec CTR encapsulation 92 * ipsec_encap_ccm - PDB part for IPsec CCM encapsulation 108 * ipsec_encap_gcm - PDB part for IPsec GCM encapsulation [all …]
|
H A D | caampkc.h | 14 #include "pdb.h" 128 * @pdb : specific RSA Protocol Data Block (PDB) 145 } pdb; member 150 void init_rsa_pub_desc(u32 *desc, struct rsa_pub_pdb *pdb); 151 void init_rsa_priv_f1_desc(u32 *desc, struct rsa_priv_f1_pdb *pdb); 152 void init_rsa_priv_f2_desc(u32 *desc, struct rsa_priv_f2_pdb *pdb); 153 void init_rsa_priv_f3_desc(u32 *desc, struct rsa_priv_f3_pdb *pdb);
|
H A D | error.c | 103 { 0x82, "invalid setting in PDB" }, 110 …l has seen an error in size. When running RSA, pdb size N < (size of F) when no formatting is used…
|
/openbmc/openbmc/meta-facebook/meta-catalina/recipes-phosphor/initrdscripts/phosphor-static-norootfs-init/ |
H A D | 99-platform-init | 29 echo "invalid pdb leak config: ${LEAK_CONFIG}" 53 # Set PDB CPLD leak event config 57 echo "PDB CPLD version: $PDB_CPLD_VER" 61 echo "PDB CPLD version not support leak event configuration..." 67 echo "Get PDB leak config setting = ${PDB_LEAK_CONFIG}" 71 echo "No PDB leak config available, use default config ${PDB_LEAK_CONFIG}" 77 echo "Unable to get PDB CPLD version..."
|
/openbmc/openbmc/meta-facebook/meta-catalina/recipes-phosphor/gpio/phosphor-gpio-monitor/ |
H A D | catalina-gpio-monitor | 114 # PDB CPLD IOEXP, 14-0010, Port 0 132 # PDB CPLD IOEXP, 14-0010, Port 1 150 # PDB CPLD IOEXP 14-0011, Port 0 168 # PDB CPLD IOEXP 14-0011, Port 1 176 # PDB CPLD IOEXP 14-0012, Port 0 194 # PDB CPLD IOEXP 14-0012, Port 1 220 # PDB CPLD IOEXP, 14-0010, Port 0 238 # PDB CPLD IOEXP, 14-0010, Port 1 256 # PDB CPLD IOEXP 14-0011, Port 0 274 # PDB CPLD IOEXP 14-0011, Port 1 [all …]
|
/openbmc/qemu/contrib/elf2dmp/ |
H A D | main.c | 14 #include "pdb.h" 20 #define PDB_NAME "ntkrnlmp.pdb" 69 static KDDEBUGGER_DATA64 *get_kdbg(uint64_t KernBase, struct pdb_reader *pdb, in get_kdbg() argument 90 if (!SYM_RESOLVE(KernBase, pdb, KiWaitNever) || in get_kdbg() 91 !SYM_RESOLVE(KernBase, pdb, KiWaitAlways) || in get_kdbg() 92 !SYM_RESOLVE(KernBase, pdb, KdpDataBlockEncoded)) { in get_kdbg() 481 eprintf("PDB name size doesn't match\n"); in pe_check_pdb_name() 488 eprintf("Failed to resolve PDB name\n"); in pe_check_pdb_name() 492 printf("PDB name is \'%s\', \'%s\' expected\n", pdb_name, PDB_NAME); in pe_check_pdb_name() 523 struct pdb_reader pdb; in main() local [all …]
|
H A D | meson.build | 2 executable('elf2dmp', files('main.c', 'addrspace.c', 'download.c', 'pdb.c', 'qemu_elf.c'), genh,
|
H A D | pdb.c | 24 #include "pdb.h" 280 eprintf("Failed to map PDB file \'%s\'\n", name); in pdb_init_from_file()
|
/openbmc/linux/drivers/net/ethernet/amd/ |
H A D | au1000_eth.c | 565 struct db_dest *pDB; in au1000_GetFreeDB() local 566 pDB = aup->pDBfree; in au1000_GetFreeDB() 568 if (pDB) in au1000_GetFreeDB() 569 aup->pDBfree = pDB->pnext; in au1000_GetFreeDB() 571 return pDB; in au1000_GetFreeDB() 574 void au1000_ReleaseDB(struct au1000_private *aup, struct db_dest *pDB) in au1000_ReleaseDB() argument 578 pDBfree->pnext = pDB; in au1000_ReleaseDB() 579 aup->pDBfree = pDB; in au1000_ReleaseDB() 772 struct db_dest *pDB; in au1000_rx() local 781 pDB = aup->rx_db_inuse[aup->rx_head]; in au1000_rx() [all …]
|
/openbmc/openbmc/poky/meta/recipes-support/serf/serf/ |
H A D | norpath.patch | 17 - PDB='${TARGET.filebase}.pdb') 18 +env.Append(PDB='${TARGET.filebase}.pdb')
|
/openbmc/openbmc/meta-facebook/meta-catalina/recipes-phosphor/state/phosphor-state-manager/ |
H A D | power-cmd | 53 # unable to get pdb cpld version 55 echo "[DEBUG] unable to get pdb cpld version" 60 # unable to check rmc main power state with pdb cpld version less than 0x10000 62 echo "[DEBUG] pdb cpld version less than 0x10000" 126 # There are two HSCs on the PDB board, and the BMC uses the i2cset command
|
/openbmc/entity-manager/configurations/meta/ |
H A D | minerva_pdb.json | 208 "Name": "Minerva PDB", 210 "xyz.openbmc_project.FruDevice({'BOARD_PRODUCT_NAME': 'Minerva PDB EVT'})", 212 …"xyz.openbmc_project.FruDevice({'BOARD_PRODUCT_NAME': 'Minerva PDB', 'BOARD_INFO_AM4': 'hsc-ltc'})"
|
H A D | minerva_pdb_hsc_xdp.json | 204 "Name": "Minerva PDB", 205 …"Probe": "xyz.openbmc_project.FruDevice({'BOARD_PRODUCT_NAME': 'Minerva PDB', 'BOARD_INFO_AM4': 'h…
|
/openbmc/openbmc/meta-facebook/meta-catalina/recipes-catalina/plat-svc/files/ |
H A D | catalina-early-sys-init | 79 # rebind PDB i2c mux 81 # rebind PDB Fan IC 84 # rebind PDB FRU
|
/openbmc/openbmc/poky/meta/recipes-devtools/binutils/binutils/ |
H A D | 0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch | 28 - targ_extra_ofiles="deffilep.o pdb.o pep-dll.o pe-dll.o" 29 + targ_extra_ofiles="deffilep.o pdb.o pe-dll.o"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/freerdp/freerdp/ |
H A D | 0002-Do-not-install-tools-a-CMake-targets.patch | 29 …install(FILES ${CMAKE_BINARY_DIR}/${MODULE_NAME}.pdb DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT… 41 …install(FILES ${CMAKE_PDB_BINARY_DIR}/${MODULE_NAME}.pdb DESTINATION ${CMAKE_INSTALL_BINDIR} COMPO…
|
/openbmc/linux/arch/arm/boot/dts/aspeed/ |
H A D | aspeed-bmc-facebook-catalina.dts | 572 // PDB FRU EEPROM 578 // PDB TEMP SENSOR 589 // PDB IOEXP 866 // PDB CPLD IOEXP 0x10 876 // PDB CPLD IOEXP 0x11 886 // PDB CPLD IOEXP 0x12 896 // PDB CPLD IOEXP 0x13 906 // PDB CPLD IOEXP 0x14 916 // PDB CPLD IOEXP 0x15
|
/openbmc/linux/security/apparmor/ |
H A D | policy_unpack.c | 1214 static bool verify_perms(struct aa_policydb *pdb) in verify_perms() argument 1218 for (i = 0; i < pdb->size; i++) { in verify_perms() 1219 if (!verify_perm(&pdb->perms[i])) in verify_perms() 1222 if ((pdb->perms[i].xindex & AA_X_TYPE_MASK) == AA_X_TABLE && in verify_perms() 1223 (pdb->perms[i].xindex & AA_X_INDEX_MASK) >= pdb->trans.size) in verify_perms() 1225 if (pdb->perms[i].tag && pdb->perms[i].tag >= pdb->trans.size) in verify_perms() 1227 if (pdb->perms[i].label && in verify_perms() 1228 pdb->perms[i].label >= pdb->trans.size) in verify_perms()
|
/openbmc/openbmc/meta-quanta/meta-q71l/recipes-phosphor/ipmi/ |
H A D | phosphor-ipmi-fru_%.bbappend | 5 EEPROM_NAMES = "motherboard pdb fp bmc"
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | highmem.h | 9 * Gerhard.Wichert@pdb.siemens.de
|
/openbmc/linux/arch/sparc/include/asm/ |
H A D | highmem.h | 9 * Gerhard.Wichert@pdb.siemens.de
|
/openbmc/linux/arch/microblaze/include/asm/ |
H A D | highmem.h | 9 * Gerhard.Wichert@pdb.siemens.de
|
/openbmc/linux/arch/x86/include/asm/ |
H A D | highmem.h | 9 * Gerhard.Wichert@pdb.siemens.de
|