| /OK3568_Linux_fs/kernel/drivers/soc/ixp4xx/ |
| H A D | ixp4xx-npe.c | 22 #include <linux/soc/ixp4xx/npe.h> 43 /* NPE exec status (read) and command (write) */ 83 #define ECS_INSTRUCT_REG 0x11 /* NPE Instruction Register */ 96 /* NPE watchpoint_fifo register bit */ 99 /* NPE messaging_status register bit definitions */ 109 /* NPE messaging_control register bit definitions */ 115 /* NPE mailbox_status value for reset */ 118 #define NPE_A_FIRMWARE "NPE-A" 119 #define NPE_B_FIRMWARE "NPE-B" 120 #define NPE_C_FIRMWARE "NPE-C" [all …]
|
| H A D | Makefile | 3 obj-$(CONFIG_IXP4XX_NPE) += ixp4xx-npe.o
|
| /OK3568_Linux_fs/kernel/include/linux/soc/ixp4xx/ |
| H A D | npe.h | 18 struct npe { struct 25 static inline const char *npe_name(struct npe *npe) in npe_name() argument 27 return npe_names[npe->id]; in npe_name() 30 int npe_running(struct npe *npe); 31 int npe_send_message(struct npe *npe, const void *msg, const char *what); 32 int npe_recv_message(struct npe *npe, void *msg, const char *what); 33 int npe_send_recv_message(struct npe *npe, void *msg, const char *what); 34 int npe_load_firmware(struct npe *npe, const char *name, struct device *dev); 35 struct npe *npe_request(unsigned id); 36 void npe_release(struct npe *npe);
|
| /OK3568_Linux_fs/kernel/arch/powerpc/platforms/powernv/ |
| H A D | npu-dma.c | 98 static struct pnv_ioda_pe *get_gpu_pci_dev_and_pe(struct pnv_ioda_pe *npe, in get_gpu_pci_dev_and_pe() argument 107 pdev = pnv_pci_get_gpu_dev(npe->pdev); in get_gpu_pci_dev_and_pe() 131 struct pnv_ioda_pe *npe = container_of(table_group, struct pnv_ioda_pe, in pnv_npu_set_window() local 133 struct pnv_phb *phb = npe->phb; in pnv_npu_set_window() 142 if (npe->table_group.tables[num2]) in pnv_npu_set_window() 143 pnv_npu_unset_window(&npe->table_group, num2); in pnv_npu_set_window() 145 pe_info(npe, "Setting up window %llx..%llx pg=%lx\n", in pnv_npu_set_window() 150 npe->pe_number, in pnv_npu_set_window() 151 npe->pe_number, in pnv_npu_set_window() 157 pe_err(npe, "Failed to configure TCE table, err %lld\n", rc); in pnv_npu_set_window() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/xscale/ |
| H A D | ixp4xx_eth.c | 10 * NPE 0 (NPE-A) 1 (NPE-B) 2 (NPE-C) 17 * bits 0 -> 1 - NPE ID (RX and TX-done) 37 #include <linux/soc/ixp4xx/npe.h> 103 #define CORE_MDC_EN 0x10 /* MDIO using NPE-B ETH-0 only */ 112 /* NPE message codes */ 170 struct npe *npe; member 184 /* NPE message structure */ 882 /* NPE firmware pads short frames with zeros internally */ in eth_xmit() 1166 struct npe *npe = port->npe; in eth_open() local 1170 if (!npe_running(npe)) { in eth_open() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wan/ |
| H A D | ixp4xx_hss.c | 23 #include <linux/soc/ixp4xx/npe.h> 42 #define RX_SIZE (HDLC_MAX_MRU + 4) /* NPE needs more space */ 110 /* Invert data between NPE and HSS FIFOs? (default = no) */ 212 /* NPE command codes */ 216 /* triggers the NPE to load the contents of the configuration table */ 219 /* triggers the NPE to return an HssErrorReadResponse message */ 222 /* triggers the NPE to reset internal status and enable the HssPacketized 256 struct npe *npe; member 270 /* NPE message structure */ 361 if (npe_send_message(port->npe, msg, what)) { in hss_npe_send() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/firmware/ |
| H A D | intel,ixp4xx-network-processing-engine.yaml | 14 On the IXP4xx SoCs, the Network Processing Engine (NPE) is a small 41 npe@c8006000 {
|
| /OK3568_Linux_fs/kernel/drivers/crypto/ |
| H A D | ixp4xx_crypto.c | 3 * Intel IXP4xx NPE-C crypto driver 30 #include <linux/soc/ixp4xx/npe.h> 74 #define NPE_ID 2 /* NPE C */ 136 u32 crypto_ctx; /* NPE Crypto Param structure address */ 220 static struct npe *npe_c; 790 /* NPE wants keylen set to DES3_EDE_KEY_SIZE even for single DES */ in setup_cipher()
|
| H A D | Kconfig | 333 Driver for the IXP4xx NPE crypto engine.
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | intel-ixp4xx.dtsi | 64 npe@c8006000 {
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/stmicro/stmmac/ |
| H A D | dwmac5.h | 55 #define NPE GENMASK(23, 16) macro
|
| H A D | dwmac5.c | 486 val = (nve << 16) & NPE; in dwmac5_rxp_config()
|
| /OK3568_Linux_fs/kernel/Documentation/arm/ |
| H A D | ixp4xx.rst | 107 small residential/office gateways. One NPE is connected to a 10/100
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-ixp4xx/ |
| H A D | common.c | 167 .name = "ixp4xx-npe",
|
| /OK3568_Linux_fs/kernel/drivers/edac/ |
| H A D | edac_pci_sysfs.c | 713 /* global NPE counter incremented by edac_pci_do_parity_check() */ in edac_pci_handle_npe()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/lib/gconv/ |
| HD | libGB.so | __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize __gb2312_from_ucs4_tab9 __gb2312_from_ucs4_tab8 __gb2312_from_ucs4_tab7 __gb2312_from_ucs4_tab6 __gb2312_from_ucs4_tab5 __gb2312_from_ucs4_tab4 __gb2312_from_ucs4_tab3 __gb2312_from_ucs4_tab2 __gb2312_from_ucs4_tab1 __gb2312_to_ucs libc.so.6 ... |
| HD | libISOIR165.so | __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize __isoir165_to_tab __isoir165_from_tab __isoir165_from_idx libc.so.6 libISOIR165.so GLIBC_2.4
: ... |
| /OK3568_Linux_fs/u-boot/ |
| H A D | README | 4008 npe_ucode - set load address for the NPE microcode
|
| /OK3568_Linux_fs/kernel/ |
| H A D | MAINTAINERS | 8967 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT 8972 F: drivers/soc/ixp4xx/ixp4xx-npe.c 8974 F: include/linux/soc/ixp4xx/npe.h
|
| /OK3568_Linux_fs/recovery/ |
| HD | rootfs.cpio.gz | 107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000binusr/bin07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ... |