Home
last modified time | relevance | path

Searched refs:pp (Results 1 – 25 of 60) sorted by relevance

123

/openbmc/u-boot/drivers/net/
H A Dmvneta.c419 static void mvreg_write(struct mvneta_port *pp, u32 offset, u32 data) in mvreg_write() argument
421 writel(data, pp->base + offset); in mvreg_write()
425 static u32 mvreg_read(struct mvneta_port *pp, u32 offset) in mvreg_read() argument
427 return readl(pp->base + offset); in mvreg_read()
431 static void mvneta_mib_counters_clear(struct mvneta_port *pp) in mvneta_mib_counters_clear() argument
437 mvreg_read(pp, (MVNETA_MIB_COUNTERS_BASE + i)); in mvneta_mib_counters_clear()
454 static void mvneta_rxq_non_occup_desc_add(struct mvneta_port *pp, in mvneta_rxq_non_occup_desc_add() argument
462 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id), in mvneta_rxq_non_occup_desc_add()
468 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id), in mvneta_rxq_non_occup_desc_add()
473 static int mvneta_rxq_busy_desc_num_get(struct mvneta_port *pp, in mvneta_rxq_busy_desc_num_get() argument
[all …]
/openbmc/u-boot/lib/
H A Dof_live.c48 struct property *pp, **prev_pp = NULL; in unflatten_dt_node() local
143 pp = unflatten_dt_alloc(&mem, sizeof(struct property), in unflatten_dt_node()
163 pp->name = (char *)pname; in unflatten_dt_node()
164 pp->length = sz; in unflatten_dt_node()
165 pp->value = (__be32 *)p; in unflatten_dt_node()
166 *prev_pp = pp; in unflatten_dt_node()
167 prev_pp = &pp->next; in unflatten_dt_node()
188 pp = unflatten_dt_alloc(&mem, sizeof(struct property) + sz, in unflatten_dt_node()
191 pp->name = "name"; in unflatten_dt_node()
192 pp->length = sz; in unflatten_dt_node()
[all …]
/openbmc/u-boot/drivers/core/
H A Dof_access.c125 struct property *pp; in of_find_property() local
130 for (pp = np->properties; pp; pp = pp->next) { in of_find_property()
131 if (strcmp(pp->name, name) == 0) { in of_find_property()
133 *lenp = pp->length; in of_find_property()
137 if (!pp && lenp) in of_find_property()
140 return pp; in of_find_property()
168 struct property *pp = of_find_property(np, name, lenp); in of_get_property() local
170 return pp ? pp->value : NULL; in of_get_property()
307 #define for_each_property_of_node(dn, pp) \ argument
308 for (pp = dn->properties; pp != NULL; pp = pp->next)
[all …]
H A Dofnode.c808 struct property *pp; in ofnode_write_prop() local
818 for (pp = np->properties; pp; pp = pp->next) { in ofnode_write_prop()
819 if (strcmp(pp->name, propname) == 0) { in ofnode_write_prop()
821 pp->value = (void *)value; in ofnode_write_prop()
822 pp->length = len; in ofnode_write_prop()
825 pp_last = pp; in ofnode_write_prop()
/openbmc/u-boot/drivers/ata/
H A Dahci.c98 static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp) in ahci_dcache_flush_sata_cmd() argument
100 ahci_dcache_flush_range((unsigned long)pp->cmd_slot, in ahci_dcache_flush_sata_cmd()
506 struct ahci_ioports *pp = &(uc_priv->port[port]); in ahci_fill_sg() local
507 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg; in ahci_fill_sg()
533 static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts) in ahci_fill_cmd_slot() argument
535 pp->cmd_slot->opts = cpu_to_le32(opts); in ahci_fill_cmd_slot()
536 pp->cmd_slot->status = 0; in ahci_fill_cmd_slot()
537 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff); in ahci_fill_cmd_slot()
539 pp->cmd_slot->tbl_addr_hi = in ahci_fill_cmd_slot()
540 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16)); in ahci_fill_cmd_slot()
[all …]
H A Ddwc_ahsata.c324 struct ahci_ioports *pp = &uc_priv->port[port]; in ahci_fill_sg() local
325 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg; in ahci_fill_sg()
351 static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 cmd_slot, u32 opts) in ahci_fill_cmd_slot() argument
353 struct ahci_cmd_hdr *cmd_hdr = (struct ahci_cmd_hdr *)(pp->cmd_slot + in ahci_fill_cmd_slot()
359 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff); in ahci_fill_cmd_slot()
361 pp->cmd_slot->tbl_addr_hi = in ahci_fill_cmd_slot()
362 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16)); in ahci_fill_cmd_slot()
372 struct ahci_ioports *pp = &uc_priv->port[port]; in ahci_exec_ata_cmd() local
373 struct sata_port_regs *port_mmio = pp->port_mmio; in ahci_exec_ata_cmd()
390 memcpy((u8 *)(pp->cmd_tbl), cfis, sizeof(struct sata_fis_h2d)); in ahci_exec_ata_cmd()
[all …]
/openbmc/qemu/target/ppc/
H A Dmmu-hash32.h116 static inline int ppc_hash32_prot(bool key, int pp, bool nx) in ppc_hash32_prot() argument
121 switch (pp) { in ppc_hash32_prot()
136 switch (pp) { in ppc_hash32_prot()
155 int pp = batl & BATL32_PP; in ppc_hash32_bat_prot() local
157 if (pp) { in ppc_hash32_bat_prot()
159 if (pp == 0x2) { in ppc_hash32_bat_prot()
/openbmc/qemu/include/qemu/
H A Dmemalign.h52 void **pp = (void **)p; in qemu_cleanup_generic_vfree() local
53 qemu_vfree(*pp); in qemu_cleanup_generic_vfree()
/openbmc/u-boot/lib/bzip2/
H A Dbzlib_decompress.c464 Int32 ii, jj, kk, pp, lno, off; in BZ2_decompress() local
470 pp = s->mtfbase[0]; in BZ2_decompress()
471 uc = s->mtfa[pp+nn]; in BZ2_decompress()
473 Int32 z = pp+nn; in BZ2_decompress()
481 s->mtfa[(pp+nn)] = s->mtfa[(pp+nn)-1]; nn--; in BZ2_decompress()
483 s->mtfa[pp] = uc; in BZ2_decompress()
488 pp = s->mtfbase[lno] + off; in BZ2_decompress()
489 uc = s->mtfa[pp]; in BZ2_decompress()
490 while (pp > s->mtfbase[lno]) { in BZ2_decompress()
491 s->mtfa[pp] = s->mtfa[pp-1]; pp--; in BZ2_decompress()
H A Dbzlib_huffman.c202 Int32 pp, i, j, vec; in BZ2_hbCreateDecodeTables() local
204 pp = 0; in BZ2_hbCreateDecodeTables()
207 if (length[j] == i) { perm[pp] = j; pp++; }; in BZ2_hbCreateDecodeTables()
/openbmc/ipmitool/src/plugins/serial/
H A Dserial_terminal.c162 char * pp; in ipmi_serial_term_open() local
168 if ((pp = strchr(p, ':'))) { in ipmi_serial_term_open()
170 *pp++ = '\0'; in ipmi_serial_term_open()
173 if (pp[0] == 'S' || pp[0] == 's') { in ipmi_serial_term_open()
363 char *p, *pp; in recv_response() local
387 pp = strchr(p, ']'); in recv_response()
388 if (!pp) { in recv_response()
392 *pp = 0; in recv_response()
H A Dserial_basic.c215 char * pp; in serial_bm_open() local
221 if ((pp = strchr(p, ':'))) { in serial_bm_open()
223 *pp++ = '\0'; in serial_bm_open()
226 if (pp[0] == 'S' || pp[0] == 's') { in serial_bm_open()
/openbmc/u-boot/drivers/video/
H A Dmx3fb.c342 struct chan_param_mem_planar pp; member
464 params->pp.fw = width - 1; in ipu_ch_param_set_size()
465 params->pp.fh_l = height - 1; in ipu_ch_param_set_size()
466 params->pp.fh_h = (height - 1) >> 8; in ipu_ch_param_set_size()
467 params->pp.sl = stride - 1; in ipu_ch_param_set_size()
502 params->pp.nsb = 1; in ipu_ch_param_set_size()
508 params->pp.eba0 = (u32)buf0; in ipu_ch_param_set_buffer()
509 params->pp.eba1 = (u32)buf1; in ipu_ch_param_set_buffer()
546 params.pp.bam = 0; in ipu_init_channel_buffer()
552 params.pp.npb = 16 - 1; in ipu_init_channel_buffer()
/openbmc/u-boot/drivers/pinctrl/rockchip/
H A Dpinctrl-rockchip-core.c575 struct property *pp; local
615 for (pp = np->properties; pp; pp = pp->next) {
616 prop_name = pp->name;
617 prop_len = pp->length;
618 value = pp->value;
/openbmc/qemu/monitor/
H A Dhmp.c77 static int get_str(char *buf, int buf_size, const char **pp) in get_str() argument
84 p = *pp; in get_str()
91 *pp = p; in get_str()
139 *pp = p; in get_str()
510 static int get_expr(Monitor *mon, int64_t *pval, const char **pp) in get_expr() argument
512 pch = *pp; in get_expr()
514 *pp = pch; in get_expr()
521 *pp = pch; in get_expr()
525 static int get_double(Monitor *mon, double *pval, const char **pp) in get_double() argument
527 const char *p = *pp; in get_double()
[all …]
/openbmc/u-boot/arch/arm/mach-tegra/tegra20/
H A Demc.c175 struct apb_misc_pp_ctlr *pp = in decode_emc() local
181 ram_code = (readl(&pp->strapping_opt_a) & RAM_CODE_MASK) in decode_emc()
/openbmc/libpldm/scripts/
H A Dapply-renames38 git ls-files -- ':/:*.[ch]'{,pp} |
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Ddata.py246 pp = bb.codeparser.PythonParser(func, logger)
247 pp.parse_python(d.getVar(func, False))
248 newdeps = pp.execs
258 pp = bb.codeparser.PythonParser(dep, logger)
259 pp.parse_python(d.getVar(dep, False))
260 newdeps |= pp.execs
/openbmc/libcper/
H A Dpyproject.toml29 skip = "*pp*"
/openbmc/u-boot/arch/powerpc/include/asm/
H A Dmmu.h33 unsigned long pp:2; /* Page protection */ member
61 unsigned long pp:2; /* Page access protections */ member
95 unsigned long pp:2; /* Page access protections */ member
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/sharutils/sharutils/
H A D0001-ISO-C23-Backport-stdbool.m4.patch189 + bool *pp = &p;
199 + *pp |= p;
200 + *pp |= ! p;
205 + + !l + !m + !n + !o + !p + !pp + !ps);
/openbmc/u-boot/arch/arm/dts/
H A Dmeson-gxl-mali.dtsi21 interrupt-names = "gp", "gpmmu", "pp", "pmu",
/openbmc/openbmc/poky/meta/classes-recipe/
H A Ddevicetree.bbclass110 ppargs += ["-o", "{0}.pp".format(dts), dtspath]
115 isoverlay = devicetree_source_is_overlay("{0}.pp".format(dts))
126 dtcargs += ["-I", "dts", "-O", "dtb", "{0}.pp".format(dts)]
/openbmc/openbmc-tools/dbus-vis/
H A Ddbus_timeline_vis.js104 preprocessed.forEach((pp) => {
105 const cxn = pp[IDXES["Sender"]];
/openbmc/qemu/accel/tcg/
H A Dtranslate-all.c69 static int64_t decode_sleb128(const uint8_t **pp) in decode_sleb128() argument
71 const uint8_t *p = *pp; in decode_sleb128()
84 *pp = p; in decode_sleb128()

123