Home
last modified time | relevance | path

Searched +full:read +full:- +full:1 (Results 1 – 25 of 1120) sorted by relevance

12345678910>>...45

/openbmc/qemu/tests/qemu-iotests/tests/
H A Dimage-fleecing.out3 --- Setting up images ---
7 --- Launching VM ---
11 --- Setting up Fleecing Graph ---
16 --- Setting up NBD Export ---
21 --- Sanity Check ---
23 read -P0x5d 0 64k
24 read -P0xd5 1M 64k
25 read -P0xdc 32M 64k
26 read -P0xcd 0x3ff0000 64k
27 read -P0 0x00f8000 32k
[all …]
H A Dqcow2-internal-snapshots.out1 QA output created by qcow2-internal-snapshots
6 QEMU X.Y.Z monitor - type 'help' for more information
7 (qemu) qemu-io disk0 "write -P0x11 0 1M"
9 1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
11 (qemu) qemu-io disk0 "write -P0x22 0 512k"
18 1 snap0 SIZE yyyy-mm-dd hh:mm:ss 0000:00:00.000 --
23 QEMU X.Y.Z monitor - type 'help' for more information
24 (qemu) qemu-io disk0 "read -P0x11 0 1M"
25 read 1048576/1048576 bytes at offset 0
26 1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
[all …]
/openbmc/u-boot/board/micronas/vct/
H A Dscc.h1 /* SPDX-License-Identifier: GPL-2.0+ */
11 #define DMA_READ 0 /* SCC read DMA */
12 #define DMA_WRITE 1 /* SCC write DMA */
15 #define DMA_CYCLIC 1 /* DMA cyclic buffer access method */
17 #define DMA_START 0 /* DMA command - start DMA */
18 #define DMA_STOP 1 /* DMA command - stop DMA */
19 #define DMA_START_FH_RESET 2 /* DMA command - start DMA reset FH */
20 #define DMA_TAKEOVER 15 /* DMA command - commit the DMA conf */
23 #define AGU_BYPASS 1 /* set AGU to bypass mode */
26 #define USE_FH 1 /* order the DMA to work with FH*/
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D13128 status=1 # failure is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
57 echo == read empty image ==
58 { $QEMU_IO -c "read -P 0 $CLUSTER_HALF_SIZE $CLUSTER_SIZE" "$TEST_IMG"; } 2>&1 | _filter_qemu_io | …
59 echo == write more than 1 block in a row ==
60 { $QEMU_IO -c "write -P 0x11 $CLUSTER_HALF_SIZE $CLUSTER_DBL_SIZE" "$TEST_IMG"; } 2>&1 | _filter_qe…
61 echo == read less than block ==
62 { $QEMU_IO -c "read -P 0x11 $CLUSTER_HALF_SIZE $CLUSTER_HALF_SIZE" "$TEST_IMG"; } 2>&1 | _filter_qe…
63 echo == read exactly 1 block ==
64 { $QEMU_IO -c "read -P 0x11 $CLUSTER_SIZE $CLUSTER_SIZE" "$TEST_IMG"; } 2>&1 | _filter_qemu_io | _f…
[all …]
H A D04628 status=1 # failure is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
57 local offset=$1
63 for ((i=0;i<=$((sectors - 1));i++)); do
67 echo "$op -P $pattern $((cur_sec * 64))k 64k"
74 _make_test_img -b "$TEST_IMG.base" -F $IMGFMT 6G
81 # Allocate middle of cluster 1, then write to somewhere before and after it
84 aio_write -P 10 0x18000 0x2000
87 aio_write -P 11 0x12000 0x2000
88 aio_write -P 12 0x1c000 0x2000
[all …]
H A D1715 # (or can) read and write outside of the image size.
29 status=1 # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
50 if [ "$img_size" -ne -1 ] ; then
60 if [ "$img_size" -ge 0 ] ; then
63 test_size=$((size-img_offset))
68 $QEMU_IO -c "write -P 0x0a 0 $test_size" "$(img_json)" | _filter_qemu_io
71 echo "read the image"
72 $QEMU_IO -c "read -P 0x0a 0 $test_size" "$(img_json)" | _filter_qemu_io
76 $QEMU_IO -c "read -v $((img_offset-2)) 4" $TEST_IMG | _filter_qemu_io
[all …]
H A D1224 # Test some qemu-img convert cases
28 status=1 # failure is the default!
37 trap "_cleanup; exit \$status" 0 1 2 3 15
49 $QEMU_IO -c "write -P 0x11 0 64M" "$TEST_IMG".base 2>&1 | _filter_qemu_io | _filter_testdir
53 echo "=== Check allocation status regression with -B ==="
56 _make_test_img -b "$TEST_IMG".base -F $IMGFMT
57 $QEMU_IO -c "write -P 0x22 0 3M" "$TEST_IMG" 2>&1 | _filter_qemu_io | _filter_testdir
58 $QEMU_IMG convert -O $IMGFMT -B "$TEST_IMG".base \
59 -o backing_fmt=$IMGFMT "$TEST_IMG" "$TEST_IMG".orig
67 _make_test_img -b "$TEST_IMG".base -F $IMGFMT
[all …]
H A D1546 # Copyright (C) 2016-2017 Red Hat, Inc.
28 status=1 # failure is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
54 _make_test_img -b "$TEST_IMG.base" -F $IMGFMT
59 # X = non-zero data sector in backing file
60 # - = sector unallocated in whole backing chain
63 # 1. Tail unaligned: 00 00 -- --
64 # 2. Head unaligned: -- -- 00 00
65 # 3. Both unaligned: -- 00 00 --
66 # 4. Both, 2 clusters: -- -- -- 00 | 00 -- -- --
[all …]
H A D24428 status=1 # failure is the default!
36 trap "_cleanup; exit \$status" 0 1 2 3 15
55 _make_test_img -o "data_file=$TEST_IMG.data" 64M
58 $QEMU_IO -c "open $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
59 $QEMU_IO -c "open -odata-file.filename=$TEST_IMG.data $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filte…
60 $QEMU_IO -c "open -odata-file.filename=inexistent $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qe…
64 $QEMU_IMG amend -odata_file= $TEST_IMG
66 $QEMU_IO -c "open $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
67 $QEMU_IO -c "open -odata-file.filename=$TEST_IMG.data $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filte…
68 $QEMU_IO -c "open -odata-file.filename=inexistent $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qe…
[all …]
H A D131.out3 == read empty image ==
4 read 1048576/1048576 bytes at offset 524288
5 1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
6 == write more than 1 block in a row ==
9 == read less than block ==
10 read 524288/524288 bytes at offset 524288
12 == read exactly 1 block ==
13 read 1048576/1048576 bytes at offset 1048576
14 1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
15 == read more than 1 block ==
[all …]
H A D2154 # Test case for copy-on-read into qcow2, using the COR filter driver
25 status=1 # failure is the default!
37 *[^-_a-zA-Z0-9/]*)
45 rm -f "$BLKDBG_CONF"
47 trap "_cleanup; exit \$status" 0 1 2 3 15
57 echo '=== Copy-on-read ==='
66 $QEMU_IO -c "write -P 55 3G 1k" "$TEST_IMG" | _filter_qemu_io
68 _make_test_img --no-opts -F "$IMGFMT" -b "$TEST_IMG" | _filter_img_create
69 $QEMU_IO -f qcow2 -c "write -z -u 1M 64k" "$TEST_WRAP" | _filter_qemu_io
71 # Ensure that a read of two clusters, but where one is already allocated,
[all …]
H A D153.out2 == readonly=off,force-share=on should be rejected ==
3 QEMU_PROG: -drive if=none,file=null-co://,readonly=off,force-share=on: force-share=on can only be u…
14 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,if=none,: Failed to get "write" lock
17 == Launching another QEMU, opts: 'read-only=on' ==
18 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,if=none,read-only=on: Failed to get shared "write" lock
21 == Launching another QEMU, opts: 'read-only=on,force-share=on' ==
25 _qemu_io_wrapper -c read 0 512 TEST_DIR/t.qcow2
26 qemu-io: can't open device TEST_DIR/t.qcow2: Failed to get "write" lock
29 _qemu_io_wrapper -r -c read 0 512 TEST_DIR/t.qcow2
30 qemu-io: can't open device TEST_DIR/t.qcow2: Failed to get shared "write" lock
[all …]
H A D08028 status=1 # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
44 # - Internal snapshots are (currently) impossible with refcount_bits=1,
46 # - This is generally a test for compat=1.1 images
47 _unsupported_imgopts 'refcount_bits=1[^0-9]' data_file 'compat=0.10'
73 { $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
75 { $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
83 { $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
85 { $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
87 { $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
[all …]
/openbmc/openbmc/meta-ieisystem/meta-fp5280g3/recipes-phosphor/configuration/fp5280g3-yaml-config/
H A Dfp5280g3-ipmi-sensors.yaml12 mutability: Mutability::Write|Mutability::Read
18 sensorReadingType: 1
33 mutability: Mutability::Write|Mutability::Read
39 sensorReadingType: 1
54 mutability: Mutability::Write|Mutability::Read
60 sensorReadingType: 1
75 mutability: Mutability::Write|Mutability::Read
81 sensorReadingType: 1
95 multiplierM: 1
96 mutability: Mutability::Write|Mutability::Read
[all …]
/openbmc/openbmc/meta-ieisystem/meta-nf5280m7/recipes-phosphor/configuration/nf5280m7-yaml-config/
H A Dnf5280m7-ipmi-sensors.yaml1 1:
11 multiplierM: 1
12 mutability: Mutability::Read
19 sensorReadingType: 1
20 sensorType: 1
33 multiplierM: 1
34 mutability: Mutability::Read
41 sensorReadingType: 1
42 sensorType: 1
55 multiplierM: 1
[all …]
/openbmc/linux/arch/arm/mach-sa1100/include/mach/
H A DSA-1100.h1 /* SPDX-License-Identifier: GPL-2.0 */
3 * FILE SA-1100.h
9 * System StrongARM SA-1100
12 * SA-1100 microprocessor (Advanced RISC Machine (ARM)
14 * StrongARM SA-1100 data sheet version 2.2.
21 #error You must include hardware.h not SA-1100.h
52 #define PCMCIA1Sp PCMCIASp /* PCMCIA 1 Space [byte] */
53 #define PCMCIA1IOSp PCMCIAIOSp /* PCMCIA 1 I/O Space [byte] */
54 #define PCMCIA1AttrSp PCMCIAAttrSp /* PCMCIA 1 Attribute Space [byte] */
55 #define PCMCIA1MemSp PCMCIAMemSp /* PCMCIA 1 Memory Space [byte] */
[all …]
/openbmc/openbmc/meta-ibm/meta-romulus/recipes-phosphor/configuration/romulus-yaml-config/
H A Dromulus-ipmi-sensors.yaml3 entityInstance: 1
11 1:
26 mutability: Mutability::Write|Mutability::Read
35 entityInstance: 1
44 1:
48 mutability: Mutability::Write|Mutability::Read
66 1:
70 mutability: Mutability::Write|Mutability::Read
79 entityInstance: 1
100 mutability: Mutability::Write|Mutability::Read
[all …]
/openbmc/linux/Documentation/filesystems/spufs/
H A Dspufs.rst1 .. SPDX-License-Identifier: GPL-2.0
10 spufs - the SPU file system
26 logical SPU. Users can change permissions on those files, but not actu-
43 The files in spufs mostly follow the standard behavior for regular sys-
44 tem calls like read(2) or write(2), but often support only a subset of
49 All files that support the read(2) operation also support readv(2) and
55 All files support the chmod(2)/fchmod(2) and chown(2)/fchown(2) opera-
57 possible operations, e.g. read access on the wbox file.
68 read(2), pread(2), write(2), pwrite(2), lseek(2)
81 The first SPU to CPU communication mailbox. This file is read-only and
[all …]
/openbmc/linux/drivers/comedi/drivers/
H A Dpcl730.c1 // SPDX-License-Identifier: GPL-2.0
4 * Driver for Advantech PCL-730 and clones
10 * Description: Advantech PCL-730 (& compatibles)
11 * Devices: [Advantech] PCL-730 (pcl730), PCM-3730 (pcm3730), PCL-725 (pcl725),
12 * PCL-733 (pcl733), PCL-734 (pcl734),
13 * [ADLink] ACL-7130 (acl7130), ACL-7225b (acl7225b),
14 * [ICP] ISO-730 (iso730), P8R8-DIO (p8r8dio), P16R16-DIO (p16r16dio),
15 * [Diamond Systems] OPMM-1616-XT (opmm-1616-xt), PEARL-MM-P (pearl-mm-p),
16 * IR104-PBF (ir104-pbf),
21 * [0] - I/O port base
[all …]
/openbmc/u-boot/drivers/ddr/marvell/axp/
H A Dddr3_read_leveling.c1 // SPDX-License-Identifier: GPL-2.0
55 * Desc: Execute the Read leveling phase by HW
56 * Args: dram_info - main struct
57 * freq - current sequence frequency
65 /* Debug message - Start Read leveling procedure */ in ddr3_read_leveling_hw()
66 DEBUG_RL_S("DDR3 - Read Leveling - Starting HW RL procedure\n"); in ddr3_read_leveling_hw()
68 /* Start Auto Read Leveling procedure */ in ddr3_read_leveling_hw()
69 reg = 1 << REG_DRAM_TRAINING_RL_OFFS; in ddr3_read_leveling_hw()
74 reg |= (dram_info->cs_ena << REG_DRAM_TRAINING_CS_OFFS); in ddr3_read_leveling_hw()
76 reg_write(REG_DRAM_TRAINING_ADDR, reg); /* 0x15B0 - Training Register */ in ddr3_read_leveling_hw()
[all …]
/openbmc/u-boot/include/
H A DSA-1100.h2 * FILE SA-1100.h
8 * System StrongARM SA-1100
11 * SA-1100 microprocessor (Advanced RISC Machine (ARM)
13 * StrongARM SA-1100 data sheet version 2.2.
15 * Language-specific definitions are selected by the
33 #include <asm/arch-sa1100/bitfield.h>
36 #define Assembly 1
58 #define StMemBnk1Sp StMemBnkSp /* Static Memory Bank 1 Space */
67 #define DRAMBnk1Sp DRAMBnkSp /* DRAM Bank 1 Space [byte] */
76 #define _StMemBnk1 _StMemBnk (1) /* Static Memory Bank 1 */
[all …]
/openbmc/u-boot/include/linux/mtd/
H A Dspi-nor.h1 // SPDX-License-Identifier: GPL-2.0
23 #define SNOR_MFR_ST CFI_MFR_ST /* ST Micro <--> Micron */
24 #define SNOR_MFR_MICRON CFI_MFR_MICRON /* ST Micro <--> Micron */
37 * requires a 4-byte (32-bit) address.
42 #define SPINOR_OP_RDSR 0x05 /* Read status register */
43 #define SPINOR_OP_WRSR 0x01 /* Write status register 1 byte */
44 #define SPINOR_OP_RDSR2 0x3f /* Read status register 2 */
46 #define SPINOR_OP_READ 0x03 /* Read data bytes (low frequency) */
47 #define SPINOR_OP_READ_FAST 0x0b /* Read data bytes (high frequency) */
48 #define SPINOR_OP_READ_1_1_2 0x3b /* Read data bytes (Dual Output SPI) */
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/x86/icelakex/
H A Duncore-memory.json6 "PerPkg": "1",
7 …mmands are issued to open up a page on the DRAM devices so that it can be read or written to with …
15 "PerPkg": "1",
16 …mmands are issued to open up a page on the DRAM devices so that it can be read or written to with …
24 "PerPkg": "1",
30 "BriefDescription": "All DRAM read CAS commands issued (including underfills)",
33 "PerPkg": "1",
34 …"PublicDescription": "Counts the total number of DRAM Read CAS commands, w/ and w/o auto-pre, issu…
39 "BriefDescription": "DRAM RD_CAS and WR_CAS Commands. : DRAM RD_CAS commands w/auto-pre",
42 "PerPkg": "1",
[all …]
/openbmc/u-boot/include/usb/
H A Dulpi.h1 /* SPDX-License-Identifier: GPL-2.0 */
21 #define ULPI_ERROR (1 << 8) /* overflow from any register value */
40 * @ulpi_vp - structure containing ULPI viewport data
48 * @speed - ULPI_FC_HIGH_SPEED, ULPI_FC_FULL_SPEED (default),
56 * @ext_power - external VBUS supply is used (default is false)
57 * @ext_indicator - external VBUS over-current indicator is used
65 * @external - external VBUS over-current indicator is used
66 * @passthru - disables ANDing of internal VBUS comparator
68 * @complement - inverts the external VBUS input
74 * Enable/disable pull-down resistors on D+ and D- USB lines.
[all …]
/openbmc/openbmc/meta-ibm/meta-palmetto/recipes-phosphor/configuration/palmetto-yaml-config/
H A Dpalmetto-ipmi-sensors.yaml3 entityInstance: 1
11 1:
26 mutability: Mutability::Write|Mutability::Read
35 entityInstance: 1
44 1:
48 mutability: Mutability::Write|Mutability::Read
64 mutability: Mutability::Write|Mutability::Read
73 entityInstance: 1
94 mutability: Mutability::Write|Mutability::Read
124 mutability: Mutability::Write|Mutability::Read
[all …]

12345678910>>...45