| /openbmc/qemu/include/system/ |
| H A D | dma.h | 43 AddressSpace *as; member 46 static inline void dma_barrier(AddressSpace *as, DMADirection dir) in dma_barrier() argument 72 static inline bool dma_memory_valid(AddressSpace *as, in dma_memory_valid() argument 76 return address_space_access_valid(as, addr, len, in dma_memory_valid() 81 static inline MemTxResult dma_memory_rw_relaxed(AddressSpace *as, in dma_memory_rw_relaxed() argument 87 return address_space_rw(as, addr, attrs, in dma_memory_rw_relaxed() 91 static inline MemTxResult dma_memory_read_relaxed(AddressSpace *as, in dma_memory_read_relaxed() argument 95 return dma_memory_rw_relaxed(as, addr, buf, len, in dma_memory_read_relaxed() 100 static inline MemTxResult dma_memory_write_relaxed(AddressSpace *as, in dma_memory_write_relaxed() argument 105 return dma_memory_rw_relaxed(as, addr, (void *)buf, len, in dma_memory_write_relaxed() [all …]
|
| /openbmc/u-boot/arch/xtensa/include/asm/ |
| H A D | asmmacro.h | 63 .macro __loops ar, as, at, incr_log2, mask_log2, cond, ncond 65 addi \at, \as, (1 << \incr_log2) - 1 76 .macro __loopt ar, as, at, incr_log2 77 sub \at, \as, \ar 86 .macro __loop as 87 loop \as, 99f 91 .macro __endl ar, as 105 .macro __loops ar, as, at, incr_log2, mask_log2, cond, ncond 107 extui \at, \as, \incr_log2, \mask_log2 110 srli \at, \as, \incr_log2 [all …]
|
| H A D | cacheasm.h | 55 .macro __loop_cache_range ar as at insn line_width 58 add \as, \as, \at 60 __loops \ar, \as, \at, \line_width 138 .macro ___flush_invalidate_dcache_range ar as at 141 __loop_cache_range \ar \as \at dhwbi XCHAL_DCACHE_LINEWIDTH 147 .macro ___flush_dcache_range ar as at 150 __loop_cache_range \ar \as \at dhwb XCHAL_DCACHE_LINEWIDTH 156 .macro ___invalidate_dcache_range ar as at 159 __loop_cache_range \ar \as \at dhi XCHAL_DCACHE_LINEWIDTH 165 .macro ___invalidate_icache_range ar as at [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/python/python3-maturin/ |
| H A D | 0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch | 44 +pub const FICLONE: Ioctl = _IOW::<c_int>(0x94, 9) as Ioctl; 45 +pub const FICLONERANGE: Ioctl = _IOW::<crate::file_clone_range>(0x94, 13) as Ioctl; 96 +pub const FS_IOC_GETFLAGS: Ioctl = _IOR::<c_long>('f' as u32, 1) as Ioctl; 97 +pub const FS_IOC_SETFLAGS: Ioctl = _IOW::<c_long>('f' as u32, 2) as Ioctl; 98 +pub const FS_IOC_GETVERSION: Ioctl = _IOR::<c_long>('v' as u32, 1) as Ioctl; 99 +pub const FS_IOC_SETVERSION: Ioctl = _IOW::<c_long>('v' as u32, 2) as Ioctl; 100 +pub const FS_IOC32_GETFLAGS: Ioctl = _IOR::<c_int>('f' as u32, 1) as Ioctl; 101 +pub const FS_IOC32_SETFLAGS: Ioctl = _IOW::<c_int>('f' as u32, 2) as Ioctl; 102 +pub const FS_IOC32_GETVERSION: Ioctl = _IOR::<c_int>('v' as u32, 1) as Ioctl; 103 +pub const FS_IOC32_SETVERSION: Ioctl = _IOW::<c_int>('v' as u32, 2) as Ioctl; [all …]
|
| /openbmc/phosphor-logging/test/openpower-pels/ |
| H A D | ascii_string_test.cpp | 19 src::AsciiString as{entry}; in TEST() local 21 auto data = as.get(); in TEST() 29 as.flatten(stream); in TEST() 45 src::AsciiString as{entry}; in TEST() local 46 auto data = as.get(); in TEST() 61 src::AsciiString as{stream}; in TEST() local 63 auto data = as.get(); in TEST() 73 EXPECT_THROW(src::AsciiString as{stream}, std::out_of_range); in TEST() 82 src::AsciiString as{entry}; in TEST() local 83 auto data = as.get(); in TEST()
|
| /openbmc/u-boot/include/zfs/ |
| H A D | uberblock_impl.h | 38 #define VDEV_UBERBLOCK_SHIFT(as) UBMAX(as, UBERBLOCK_SHIFT) argument 39 #define UBERBLOCK_SIZE(as) (1ULL << VDEV_UBERBLOCK_SHIFT(as)) argument 42 #define UBERBLOCK_COUNT(as) (VDEV_UBERBLOCK_RING >> VDEV_UBERBLOCK_SHIFT(as)) argument
|
| /openbmc/qemu/include/accel/ |
| H A D | accel-ops.h | 25 int (*init_machine)(AccelState *as, MachineState *ms); 29 void (*get_stats)(AccelState *as, GString *buf); 32 void (*setup_post)(AccelState *as); 33 void (*pre_resume_vm)(AccelState *as, bool step_pending); 34 bool (*has_memory)(AccelState *accel, AddressSpace *as, 38 int (*gdbstub_supported_sstep_flags)(AccelState *as);
|
| /openbmc/u-boot/drivers/spi/ |
| H A D | atmel_spi.c | 40 struct atmel_spi_slave *as; in spi_setup_slave() local 86 as = spi_alloc_slave(struct atmel_spi_slave, bus, cs); in spi_setup_slave() 87 if (!as) in spi_setup_slave() 90 as->regs = regs; in spi_setup_slave() 91 as->mr = ATMEL_SPI_MR_MSTR | ATMEL_SPI_MR_MODFDIS in spi_setup_slave() 93 if (spi_has_wdrbt(as)) in spi_setup_slave() 94 as->mr |= ATMEL_SPI_MR_WDRBT; in spi_setup_slave() 96 spi_writel(as, CSR(cs), csrx); in spi_setup_slave() 98 return &as->slave; in spi_setup_slave() 103 struct atmel_spi_slave *as = to_atmel_spi(slave); in spi_free_slave() local [all …]
|
| /openbmc/qemu/include/hw/ppc/ |
| H A D | spapr_vio.h | 65 AddressSpace as; member 94 return dma_memory_valid(&dev->as, taddr, size, dir, MEMTXATTRS_UNSPECIFIED); in spapr_vio_dma_valid() 100 return (dma_memory_read(&dev->as, taddr, in spapr_vio_dma_read() 108 return (dma_memory_write(&dev->as, taddr, in spapr_vio_dma_write() 116 return (dma_memory_set(&dev->as, taddr, in spapr_vio_dma_set() 122 (stb_dma(&(_dev)->as, (_addr), (_val), MEMTXATTRS_UNSPECIFIED)) 124 (stw_be_dma(&(_dev)->as, (_addr), (_val), MEMTXATTRS_UNSPECIFIED)) 126 (stl_be_dma(&(_dev)->as, (_addr), (_val), MEMTXATTRS_UNSPECIFIED)) 128 (stq_be_dma(&(_dev)->as, (_addr), (_val), MEMTXATTRS_UNSPECIFIED)) 132 ldq_be_dma(&(_dev)->as, (_addr), &_val, MEMTXATTRS_UNSPECIFIED); \
|
| /openbmc/qemu/hw/remote/ |
| H A D | iommu.c | 57 address_space_init(&elem->as, elem->mr, NULL); in remote_iommu_find_add_as() 62 return &elem->as; in remote_iommu_find_add_as() 67 AddressSpace *as = pci_device_iommu_address_space(pci_dev); in remote_iommu_unplug_dev() local 70 if (as == &address_space_memory) { in remote_iommu_unplug_dev() 74 elem = container_of(as, RemoteIommuElem, as); in remote_iommu_unplug_dev() 76 address_space_destroy(&elem->as); in remote_iommu_unplug_dev()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/lmbench/lmbench/ |
| H A D | 0001-doc-Fix-typos-in-lat_unix_connect-manual-page.patch | 22 -has three forms of usage: as a server (-s), as a client (lat_connect), 23 -and as a shutdown (lat_connect -S). 25 +has three forms of usage: as a server (-s), as a client (lat_unix_connect), 26 +and as a shutdown (lat_unix_connect -S).
|
| /openbmc/openbmc/poky/documentation/dev-manual/ |
| H A D | development-shell.rst | 13 environment variables are still defined so you can use commands such as 14 ``configure`` and ``make``. The commands execute just as if the 35 - The ``configure`` command finds the Yocto Project site files as well 36 as any other necessary files. 38 Within this environment, you can run configure or compile commands as if 57 the task just as it would be run using the ``bitbake -c`` command. 63 into the BitBake task execution environment. And as such, all commands 64 must be called just as BitBake would call them. That means you need to 65 provide the appropriate options for cross-compilation and so forth as 74 use the full compiler name such as ``arm-poky-linux-gnueabi-gcc`` [all …]
|
| /openbmc/qemu/tests/qtest/fuzz/ |
| H A D | qtest_wrappers.c | 110 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, in __wrap_qtest_readb() 122 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, in __wrap_qtest_readw() 134 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, in __wrap_qtest_readl() 146 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, in __wrap_qtest_readq() 157 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, in __wrap_qtest_writeb() 167 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, in __wrap_qtest_writew() 177 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, in __wrap_qtest_writel() 187 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, in __wrap_qtest_writeq() 197 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, data, in __wrap_qtest_memread() 207 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, data, in __wrap_qtest_bufread() [all …]
|
| /openbmc/u-boot/arch/arm/lib/ |
| H A D | vectors_m.S | 13 mov r0, sp @ pass auto-saved registers as argument 18 mov r0, sp @ pass auto-saved registers as argument 23 mov r0, sp @ pass auto-saved registers as argument 28 mov r0, sp @ pass auto-saved registers as argument 33 mov r0, sp @ pass auto-saved registers as argument
|
| /openbmc/u-boot/doc/ |
| H A D | README.fsl_iim | 14 A fuse word contains 8 fuse bit slots, as explained in 30.4.2.2.1. 16 A bank contains 256 fuse word slots, as shown by the memory map in 30.3.1. 28 Read operations are implemented as read accesses to the shadow registers, 33 Sense operations are implemented as explained in 30.4.5.2. 36 Program operations are implemented as explained in 30.4.5.3. Following 42 Override operations are implemented as write accesses to the shadow 43 registers, as explained in 30.4.5.4.
|
| H A D | README.mxc_ocotp | 16 A fuse word contains 32 fuse bit slots, as explained in 46.2.1. 18 A bank contains 8 fuse word slots, as explained in 46.2.1 and shown by the 31 Read operations are implemented as read accesses to the shadow registers, 36 Sense operations are implemented as the direct fusebox read explained by 40 Program operations are implemented as explained by the steps in 46.2.1.3. 45 Override operations are implemented as write accesses to the shadow 46 registers, as explained by the first paragraph in 46.2.1.3.
|
| /openbmc/qemu/target/mips/tcg/system/ |
| H A D | lcsr_helper.c | 18 return address_space_ldl(&env->iocsr.as, r_addr, in helper_lcsr_rdcsr() 24 return address_space_ldq(&env->iocsr.as, r_addr, in helper_lcsr_drdcsr() 31 address_space_stl(&env->iocsr.as, w_addr, in helper_lcsr_wrcsr() 38 address_space_stq(&env->iocsr.as, w_addr, in helper_lcsr_dwrcsr()
|
| /openbmc/qemu/tests/multiboot/ |
| H A D | modules.out | 13 Content: 'This is a test file that is used as a multiboot module.' 20 Content: 'This is a test file that is used as a multiboot module.' 27 Content: 'This is a test file that is used as a multiboot module.' 34 Content: 'This is a test file that is used as a multiboot module.' 36 Content: 'This is a test file that is used as a multiboot module.' 38 Content: 'This is a test file that is used as a multiboot module.'
|
| /openbmc/qemu/docs/system/arm/ |
| H A D | mps2.rst | 7 bigger FPGA but is otherwise the same as the 2; the 3 has a bigger 11 details of the board as seen by the guest depend significantly on the 19 Cortex-M3 as documented in Arm Application Note AN385 21 Cortex-M4 as documented in Arm Application Note AN386 23 Cortex-M7 as documented in Arm Application Note AN500 25 Cortex-M33 as documented in Arm Application Note AN505 27 Cortex-M3 'DesignStart' as documented in Arm Application Note AN511 29 Dual Cortex-M33 as documented in Arm Application Note AN521 31 Dual Cortex-M33 on an MPS3, as documented in Arm Application Note AN524 33 Cortex-M55 on an MPS3, as documented in Arm Application Note AN547 [all …]
|
| /openbmc/u-boot/doc/device-tree-bindings/spi/ |
| H A D | spi-ath79.txt | 4 - compatible: has to be "qca,<soc-type>-spi", "qca,ar7100-spi" as fallback. 6 - #address-cells: <1>, as required by generic SPI binding. 7 - #size-cells: <0>, also as required by generic SPI binding. 9 Child nodes as per the generic SPI binding.
|
| /openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Inventory/Item/ |
| H A D | README.md | 6 accessed, such as a board, a chassis and a drive. Some objects are embedded in 7 other objects, such as a BMC embedded in a board, or a core in a CPU. The DBus 9 objects. A graph consisting of Inventory objects as vertices and Association as 11 parts (such as chassis, drive, sensors, etc) of the system. 19 Document ObjectMapper association forward and reverse names as follows:
|
| /openbmc/qemu/hw/misc/ |
| H A D | tz-msc.c | 128 AddressSpace *as = &s->downstream_as; in tz_msc_read() local 150 data = address_space_ldub(as, addr, attrs, &res); in tz_msc_read() 153 data = address_space_lduw_le(as, addr, attrs, &res); in tz_msc_read() 156 data = address_space_ldl_le(as, addr, attrs, &res); in tz_msc_read() 159 data = address_space_ldq_le(as, addr, attrs, &res); in tz_msc_read() 172 AddressSpace *as = &s->downstream_as; in tz_msc_write() local 192 address_space_stb(as, addr, val, attrs, &res); in tz_msc_write() 195 address_space_stw_le(as, addr, val, attrs, &res); in tz_msc_write() 198 address_space_stl_le(as, addr, val, attrs, &res); in tz_msc_write() 201 address_space_stq_le(as, addr, val, attrs, &res); in tz_msc_write()
|
| /openbmc/openbmc/poky/meta/files/common-licenses/ |
| H A D | Glulxe | 3 …as long as the code and documentation is not changed. You may also incorporate this code into your…
|
| /openbmc/qemu/hw/fsi/ |
| H A D | aspeed_apb2opb.c | 112 static MemTxResult fsi_aspeed_apb2opb_rw(AddressSpace *as, hwaddr addr, in fsi_aspeed_apb2opb_rw() argument 121 address_space_stl_le(as, addr, *data, attrs, &res); in fsi_aspeed_apb2opb_rw() 124 address_space_stw_le(as, addr, *data, attrs, &res); in fsi_aspeed_apb2opb_rw() 127 address_space_stb(as, addr, *data, attrs, &res); in fsi_aspeed_apb2opb_rw() 135 *data = address_space_ldl_le(as, addr, attrs, &res); in fsi_aspeed_apb2opb_rw() 138 *data = address_space_lduw_le(as, addr, attrs, &res); in fsi_aspeed_apb2opb_rw() 141 *data = address_space_ldub(as, addr, attrs, &res); in fsi_aspeed_apb2opb_rw() 201 AddressSpace *as; in fsi_aspeed_apb2opb_write() local 235 as = &s->opb[opb].as; in fsi_aspeed_apb2opb_write() 237 result = fsi_aspeed_apb2opb_rw(as, op_addr, MEMTXATTRS_UNSPECIFIED, in fsi_aspeed_apb2opb_write() [all …]
|
| /openbmc/openbmc/poky/meta/recipes-multimedia/libtiff/ |
| H A D | tiff_4.7.0.bb | 19 CVE_STATUS[CVE-2023-52356] = "fixed-version: Fixed since 4.7.0, NVD tracks this as version-less vul… 20 CVE_STATUS[CVE-2023-6228] = "fixed-version: Fixed since 4.7.0, NVD tracks this as version-less vuln… 21 CVE_STATUS[CVE-2023-6277] = "fixed-version: Fixed since 4.7.0, NVD tracks this as version-less vuln… 28 strip-chopping extrasample-as-alpha check-ycbcr-subsampling" 43 # Treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA 44 PACKAGECONFIG[extrasample-as-alpha] = "--enable-extrasample-as-alpha,--disable-extrasample-as-alpha…
|