Home
last modified time | relevance | path

Searched refs:bps (Results 1 – 25 of 53) sorted by relevance

123

/openbmc/qemu/tests/qemu-iotests/
H A D184.out57 "bps": 0,
87 "bps": 0,
134 "bps-read-max-length": 1,
136 "bps-read-max": 0,
137 "bps-total": 0,
141 "bps-write": 0,
142 "bps-total-max": 0,
143 "bps-write-max": 0,
148 "bps-total-max-length": 1,
150 "bps-read": 0,
[all …]
H A D051290 run_qemu -drive file="$TEST_IMG",bps=1234,throttling.bps-total=5678
291 run_qemu -drive file="$TEST_IMG",bps_rd=1234,throttling.bps-read=5678
292 run_qemu -drive file="$TEST_IMG",bps_wr=1234,throttling.bps-write=5678
298 run_qemu -drive file="$TEST_IMG",bps_max=1234,throttling.bps-total-max=5678
299 run_qemu -drive file="$TEST_IMG",bps_rd_max=1234,throttling.bps-read-max=5678
300 run_qemu -drive file="$TEST_IMG",bps_wr_max=1234,throttling.bps-write-max=5678
310 run_qemu -drive file="$TEST_IMG",bps=-2
314 run_qemu -drive file="$TEST_IMG",throttling.bps-total=-5
316 run_qemu -drive file="$TEST_IMG",bps=0
317 run_qemu -drive file="$TEST_IMG",bps=1
[all …]
H A D051.out284 Testing: -drive file=TEST_DIR/t.qcow2,bps=1234,throttling.bps-total=5678
285 …MU_PROG: -drive file=TEST_DIR/t.qcow2,bps=1234,throttling.bps-total=5678: 'throttling.bps-total' a…
287 Testing: -drive file=TEST_DIR/t.qcow2,bps_rd=1234,throttling.bps-read=5678
288 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_rd=1234,throttling.bps-read=5678: 'throttling.bps-read'…
290 Testing: -drive file=TEST_DIR/t.qcow2,bps_wr=1234,throttling.bps-write=5678
291 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_wr=1234,throttling.bps-write=5678: 'throttling.bps-writ…
302 Testing: -drive file=TEST_DIR/t.qcow2,bps_max=1234,throttling.bps-total-max=5678
303 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_max=1234,throttling.bps-total-max=5678: 'throttling.bps
305 Testing: -drive file=TEST_DIR/t.qcow2,bps_rd_max=1234,throttling.bps-read-max=5678
306 …G: -drive file=TEST_DIR/t.qcow2,bps_rd_max=1234,throttling.bps-read-max=5678: 'throttling.bps-read…
[all …]
H A D191.out147 "bps": 0,
176 "bps": 0,
218 "bps": 0,
247 "bps": 0,
289 "bps": 0,
318 "bps": 0,
348 "bps": 0,
377 "bps": 0,
562 "bps": 0,
591 "bps": 0,
[all …]
H A D051.pc.out364 Testing: -drive file=TEST_DIR/t.qcow2,bps=1234,throttling.bps-total=5678
365 …MU_PROG: -drive file=TEST_DIR/t.qcow2,bps=1234,throttling.bps-total=5678: 'throttling.bps-total' a…
367 Testing: -drive file=TEST_DIR/t.qcow2,bps_rd=1234,throttling.bps-read=5678
368 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_rd=1234,throttling.bps-read=5678: 'throttling.bps-read'…
370 Testing: -drive file=TEST_DIR/t.qcow2,bps_wr=1234,throttling.bps-write=5678
371 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_wr=1234,throttling.bps-write=5678: 'throttling.bps-writ…
382 Testing: -drive file=TEST_DIR/t.qcow2,bps_max=1234,throttling.bps-total-max=5678
383 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_max=1234,throttling.bps-total-max=5678: 'throttling.bps
385 Testing: -drive file=TEST_DIR/t.qcow2,bps_rd_max=1234,throttling.bps-read-max=5678
386 …G: -drive file=TEST_DIR/t.qcow2,bps_rd_max=1234,throttling.bps-read-max=5678: 'throttling.bps-read…
[all …]
H A D273.out66 "bps": 0,
95 "bps": 0,
136 "bps": 0,
165 "bps": 0,
194 "bps": 0,
H A D23836 log(vm.qmp('block_set_io_throttle', id='scsi-hd0', bps=0, bps_rd=0, bps_wr=0,
/openbmc/u-boot/drivers/serial/
H A Dserial_sh.h740 #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1) argument
749 #define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1) argument
752 static inline int scbrr_calc(struct uart_port *port, int bps, int clk) in scbrr_calc() argument
755 return (clk+16*bps)/(32*bps)-1; in scbrr_calc()
757 return ((clk*2)+16*bps)/(16*bps)-1; in scbrr_calc()
759 #define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk) argument
761 #define SCBRR_VALUE(bps, clk) (((clk*1000/32)/bps)-1) argument
763 #define DL_VALUE(bps, clk) (clk / bps / 16) /* External Clock */ argument
765 #define SCBRR_VALUE(bps, clk) (clk / bps / 16 - 1) /* Internal Clock */ argument
767 #define SCBRR_VALUE(bps, clk) (clk / bps / 32 - 1) /* Internal Clock */ argument
[all …]
H A Dserial_sti_asc.c47 #define BAUDRATE_VAL_M0(bps) (PCLK / (16 * (bps))) argument
48 #define BAUDRATE_VAL_M1(bps) ((bps * (1 << 14)) + (1<<13)) / (PCLK/(1 << 6)) argument
/openbmc/qemu/docs/
H A Dthrottle.txt37 | throttling.bps-total | bps |
38 | throttling.bps-read | bps_rd |
39 | throttling.bps-write | bps_wr |
42 It is possible to set limits for both IOPS and bps at the same time,
45 iops-read nor iops-write can be set. The same applies to bps-total and
46 bps-read/write.
64 "bps": 0,
104 "bps": 0,
133 | throttling.bps-total-max | bps_max |
134 | throttling.bps-total-max-length | bps_max_length |
[all …]
/openbmc/u-boot/drivers/sound/
H A Drockchip_i2s.c52 u32 bps = priv->bitspersample; in rockchip_i2s_init() local
71 mode |= (lrf / (bps * chn) - 1) << I2S_MCLK_DIV_SHIFT; in rockchip_i2s_init()
/openbmc/u-boot/cmd/
H A Dsf.c409 int bps; /* Bits per second */ in show_time() local
414 bps = speed * 8; in show_time()
418 (int)speed, bps / 1000, bps % 1000); in show_time()
/openbmc/u-boot/arch/x86/cpu/baytrail/
H A DKconfig34 A maximum baud rate of 115200 bps is supported. For this
/openbmc/u-boot/board/freescale/c29xpcie/
H A DREADME23 - DUART interface: supports two UARTs up to 115200 bps for
44 -Data rate: 115200 bps
/openbmc/qemu/hw/block/
H A Dfdc-internal.h84 uint16_t bps; /* Bytes per sector */ member
/openbmc/qemu/qapi/
H A Dblock.json473 # "bps": 0,
493 # "bps": 1000000,
/openbmc/u-boot/board/freescale/mpc8323erdb/
H A DREADME71 The console baudrate for MPC8323ERDB is 115200bps.
/openbmc/openbmc-tools/dbus-vis/
H A Dipmi_capture.js394 let bps = sz / 10;
395 console.log('dbus-monitor generates ' + bps + 'B per second');
/openbmc/u-boot/board/freescale/mpc837xerdb/
H A DREADME97 baudrate for MPC837XE-RDB is 115200bps.
/openbmc/u-boot/board/keymile/km83xx/
H A DREADME.kmeter191 1) The console baudrate for kmeter1 is 115200bps.
/openbmc/qemu/audio/
H A Dsndioaudio.c410 if (self->par.bits != req.bits || self->par.bps != req.bits / 8 || in sndio_init()
421 self->buf_size = self->par.round * self->par.bps * nch; in sndio_init()
/openbmc/u-boot/board/freescale/mpc8315erdb/
H A DREADME105 The console baudrate for MPC8315ERDB is 115200bps.
/openbmc/u-boot/examples/standalone/
H A DREADME.smc91111_eeprom58 ## Ready for binary (kermit) download to 0x01000000 at 57600 bps...
106 ## Ready for binary (kermit) download to 0x00001000 at 57600 bps...
/openbmc/u-boot/board/freescale/mpc8313erdb/
H A DREADME111 The console baudrate for MPC8313ERDB is 115200bps.
/openbmc/qemu/block/monitor/
H A Dblock-hmp-cmds.c518 .bps = qdict_get_int(qdict, "bps"), in hmp_block_set_io_throttle()
687 if (inserted->bps || inserted->bps_rd || inserted->bps_wr || in print_block_info()
702 inserted->bps, in print_block_info()

123