Home
last modified time | relevance | path

Searched refs:wp (Results 1 – 25 of 156) sorted by relevance

1234567

/openbmc/qemu/accel/tcg/
H A Dwatchpoint.c38 static inline bool watchpoint_address_matches(CPUWatchpoint *wp, in watchpoint_address_matches() argument
47 vaddr wpend = wp->vaddr + wp->len - 1; in watchpoint_address_matches()
50 return !(addr > wpend || wp->vaddr > addrend); in watchpoint_address_matches()
56 CPUWatchpoint *wp; in cpu_watchpoint_address_matches() local
59 QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) { in cpu_watchpoint_address_matches()
60 if (watchpoint_address_matches(wp, addr, len)) { in cpu_watchpoint_address_matches()
61 ret |= wp->flags; in cpu_watchpoint_address_matches()
71 CPUWatchpoint *wp; in cpu_check_watchpoint() local
92 QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) { in cpu_check_watchpoint()
93 int hit_flags = wp->flags & flags; in cpu_check_watchpoint()
[all …]
/openbmc/qemu/system/
H A Dwatchpoint.c31 CPUWatchpoint *wp; in cpu_watchpoint_insert() local
40 wp = g_malloc(sizeof(*wp)); in cpu_watchpoint_insert()
42 wp->vaddr = addr; in cpu_watchpoint_insert()
43 wp->len = len; in cpu_watchpoint_insert()
44 wp->flags = flags; in cpu_watchpoint_insert()
48 QTAILQ_INSERT_HEAD(&cpu->watchpoints, wp, entry); in cpu_watchpoint_insert()
50 QTAILQ_INSERT_TAIL(&cpu->watchpoints, wp, entry); in cpu_watchpoint_insert()
61 *watchpoint = wp; in cpu_watchpoint_insert()
70 CPUWatchpoint *wp; in cpu_watchpoint_remove() local
72 QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) { in cpu_watchpoint_remove()
[all …]
/openbmc/qemu/target/arm/
H A Dhyp_gdbstub.c130 HWWatchpoint wp = { in insert_hw_watchpoint() local
144 wp.wcr = FIELD_DP64(wp.wcr, DBGWCR, PAC, 3); in insert_hw_watchpoint()
148 wp.wcr = FIELD_DP64(wp.wcr, DBGWCR, LSC, 1); in insert_hw_watchpoint()
149 wp.details.flags = BP_MEM_READ; in insert_hw_watchpoint()
152 wp.wcr = FIELD_DP64(wp.wcr, DBGWCR, LSC, 2); in insert_hw_watchpoint()
153 wp.details.flags = BP_MEM_WRITE; in insert_hw_watchpoint()
156 wp.wcr = FIELD_DP64(wp.wcr, DBGWCR, LSC, 3); in insert_hw_watchpoint()
157 wp.details.flags = BP_MEM_ACCESS; in insert_hw_watchpoint()
167 wp.wcr = deposit32(wp.wcr, 5 + off, 8 - off, bas); in insert_hw_watchpoint()
173 wp.wvr &= ~((1 << bits) - 1); in insert_hw_watchpoint()
[all …]
/openbmc/openbmc/meta-google/classes/
H A Dimage_types_hoth.bbclass42 def convertPart(name, startKb, endKb, static=False, wp=False, persist=False):
47 if wp:
73 wp=True),
79 wp=True),
85 wp=True),
91 wp=True),
111 wp=True),
117 wp=True),
127 wp=True),
133 wp=True),
[all …]
/openbmc/u-boot/board/freescale/m5253demo/
H A Dflash.c320 ulong wp, count; in write_buff() local
328 wp = addr; in write_buff()
331 if (wp & 1) { in write_buff()
332 data = *((FPWV *) wp); in write_buff()
335 if ((rc = write_word(info, (FPWV *) wp, data)) != 0) in write_buff()
338 wp++; in write_buff()
350 if ((rc = write_word(info, (FPWV *) wp, data)) != 0) in write_buff()
353 wp += 2; in write_buff()
366 data = *((FPWV *) wp); in write_buff()
370 if ((rc = write_word(info, (FPWV *) wp, data)) != 0) in write_buff()
[all …]
/openbmc/u-boot/board/cobra5272/
H A Dflash.c314 ulong wp, data; in write_buff() local
329 wp = addr; in write_buff()
334 if ((rc = write_word (info, wp - 1, data)) != 0) { in write_buff()
338 wp += 1; in write_buff()
344 if ((rc = write_word (info, wp, data)) != 0) { in write_buff()
348 wp += 2; in write_buff()
354 *((volatile u8 *) (wp + 1)); in write_buff()
355 if ((rc = write_word (info, wp, data)) != 0) { in write_buff()
359 wp += 1; in write_buff()
/openbmc/qemu/tests/tcg/multiarch/gdbstub/
H A Dmemory.py47 wp = gdb.Breakpoint(sym, gdb.BP_WATCHPOINT, wtype)
51 if wp.hit_count > 0:
53 wp.delete()
/openbmc/qemu/include/block/
H A Dblock-common.h123 uint64_t wp; member
133 uint64_t wp[]; member
270 #define BDRV_ZT_IS_CONV(wp) (wp & (1ULL << 63)) argument
/openbmc/qemu/hw/ppc/
H A Dppc_booke.c126 uint8_t wp = (env->spr[SPR_BOOKE_TCR] & TCR_WP_MASK) >> TCR_WP_SHIFT; in booke_get_wdt_target() local
132 wp = 63 - (wp | wpext << 2); in booke_get_wdt_target()
134 wp = env->wdt_period[wp]; in booke_get_wdt_target()
137 return wp; in booke_get_wdt_target()
/openbmc/u-boot/board/gdsys/common/
H A Dosd.c412 u16 *wp = buffer; in osd_write() local
429 *wp = simple_strtoul(substr, NULL, 16); in osd_write()
432 wp++; in osd_write()
433 if (wp - buffer > base_width) in osd_write()
439 y * base_width + x + k * (wp - buffer); in osd_write()
441 wp - buffer); in osd_write()
/openbmc/qemu/io/
H A Dchannel-command.c296 pid_t wp; in qio_channel_command_close() local
315 wp = waitpid(cioc->pid, NULL, 0); in qio_channel_command_close()
316 } while (wp == (pid_t)-1 && errno == EINTR); in qio_channel_command_close()
317 if (wp == (pid_t)-1) { in qio_channel_command_close()
/openbmc/qemu/util/
H A Duserfaultfd.c214 bool wp, bool dont_wake) in uffd_change_protection() argument
220 if (!wp && dont_wake) { in uffd_change_protection()
224 uffd_writeprotect.mode = (wp ? UFFDIO_WRITEPROTECT_MODE_WP : 0); in uffd_change_protection()
/openbmc/u-boot/doc/device-tree-bindings/nand/
H A Dnvidia,tegra20-nand.txt24 nvidia,wp-gpios : GPIO of write-protect line, three cells in the format:
46 nvidia,wp-gpios = <&gpio 59 0>; /* PH3 */
/openbmc/u-boot/arch/arm/dts/
H A Dmeson-gxl-s905x-p212.dtsi120 disable-wp;
138 disable-wp;
158 disable-wp;
H A Drv1108-elgin-r1.dts29 disable-wp;
H A Dtegra186-p2771-0000.dtsi51 wp-gpios = <&gpio_main TEGRA_MAIN_GPIO(P, 4) GPIO_ACTIVE_HIGH>;
H A Dbitmain-antminer-s9.dts67 disable-wp;
H A Dtegra30-tamonten.dtsi59 wp-gpios = <&gpio TEGRA_GPIO(I, 3) GPIO_ACTIVE_HIGH>;
H A Drk3288-evb.dtsi148 disable-wp;
381 disable-wp;
395 disable-wp;
H A Drk3328-evb.dts71 disable-wp;
82 disable-wp;
/openbmc/qemu/include/qemu/
H A Duserfaultfd.h36 bool wp, bool dont_wake);
/openbmc/u-boot/arch/arm/include/asm/arch-mxs/
H A Dsys_proto.h14 int mxsmmc_initialize(bd_t *bis, int id, int (*wp)(int), int (*cd)(int));
/openbmc/qemu/include/exec/
H A Dwatchpoint.h25 CPUWatchpoint *wp) in cpu_watchpoint_remove_by_ref() argument
/openbmc/u-boot/drivers/mtd/
H A Dcfi_flash.c1319 ulong wp; in write_buff() local
1342 wp = (addr & ~(info->portwidth - 1)); in write_buff()
1345 aln = addr - wp; in write_buff()
1348 p = (uchar *)wp; in write_buff()
1359 rc = flash_write_cfiword(info, wp, cword); in write_buff()
1363 wp += i; in write_buff()
1377 rc = flash_write_cfiword(info, wp, cword); in write_buff()
1380 wp += info->portwidth; in write_buff()
1386 i = buffered_size - (wp % buffered_size); in write_buff()
1389 rc = flash_write_cfibuffer(info, wp, src, i); in write_buff()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/ttf-fonts/
H A Dttf-ipa_003.03.01.bb9 SRC_URI = "https://moji.or.jp/wp-content/ipafont/IPAfont/IPAfont00303.zip "

1234567