/u-boot/drivers/net/ |
A D | mvneta.c | 749 memset(pp->mcast_count, 0, sizeof(pp->mcast_count)); in mvneta_set_other_mcast_table() 752 memset(pp->mcast_count, 1, sizeof(pp->mcast_count)); in mvneta_set_other_mcast_table() 1114 mvneta_txq_deinit(pp, &pp->txqs[queue]); in mvneta_cleanup_txqs() 1123 mvneta_rxq_deinit(pp, &pp->rxqs[queue]); in mvneta_cleanup_rxqs() 1133 int err = mvneta_rxq_init(pp, &pp->rxqs[queue]); in mvneta_setup_rxqs() 1151 int err = mvneta_txq_init(pp, &pp->txqs[queue]); in mvneta_setup_txqs() 1416 err = mvneta_port_power_up(pp, pp->phy_interface); in mvneta_init() 1547 mvneta_port_power_up(pp, pp->phy_interface); in mvneta_start() 1549 if (!pp->init || pp->link == 0) { in mvneta_start() 1574 mvreg_write(pp, MVNETA_PHY_ADDR, pp->phyaddr); in mvneta_start() [all …]
|
/u-boot/lib/ |
A D | of_live.c | 164 pp->name = (char *)pname; in unflatten_dt_node() 165 pp->length = sz; in unflatten_dt_node() 166 pp->value = (__be32 *)p; in unflatten_dt_node() 167 *prev_pp = pp; in unflatten_dt_node() 168 prev_pp = &pp->next; in unflatten_dt_node() 192 pp->name = "name"; in unflatten_dt_node() 193 pp->length = sz; in unflatten_dt_node() 194 pp->value = pp + 1; in unflatten_dt_node() 195 *prev_pp = pp; in unflatten_dt_node() 196 prev_pp = &pp->next; in unflatten_dt_node() [all …]
|
A D | bch.c | 434 int k, pp = -1; in compute_error_locator_polynomial() local 447 k = 2*i-pp; in compute_error_locator_polynomial() 463 pp = 2*i; in compute_error_locator_polynomial()
|
/u-boot/drivers/core/ |
A D | of_access.c | 129 struct property *pp; in of_find_property() local 134 for (pp = np->properties; pp; pp = pp->next) { in of_find_property() 137 *lenp = pp->length; in of_find_property() 141 if (!pp && lenp) in of_find_property() 144 return pp; in of_find_property() 174 return pp ? pp->value : NULL; in of_get_property() 344 for (pp = dn->properties; pp != NULL; pp = pp->next) 350 struct property *pp; in of_find_node_opts_by_path() local 373 if (strlen(pp->name) == len && !strncmp(pp->name, path, in of_find_node_opts_by_path() 781 struct property *pp; in of_alias_scan() local [all …]
|
A D | ofnode.c | 980 struct property *pp; in ofnode_write_prop() local 990 for (pp = np->properties; pp; pp = pp->next) { in ofnode_write_prop() 991 if (strcmp(pp->name, propname) == 0) { in ofnode_write_prop() 993 pp->value = (void *)value; in ofnode_write_prop() 994 pp->length = len; in ofnode_write_prop() 997 pp_last = pp; in ofnode_write_prop()
|
/u-boot/drivers/ata/ |
A D | ahci.c | 537 pp->cmd_slot->status = 0; in ahci_fill_cmd_slot() 538 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff); in ahci_fill_cmd_slot() 540 pp->cmd_slot->tbl_addr_hi = in ahci_fill_cmd_slot() 578 free(pp); in ahci_port_start() 588 pp->cmd_slot = in ahci_port_start() 607 pp->cmd_tbl_sg = in ahci_port_start() 610 dma_addr = (ulong)pp->cmd_slot; in ahci_port_start() 613 dma_addr = (ulong)pp->rx_fis; in ahci_port_start() 662 ahci_fill_cmd_slot(pp, opts); in ahci_device_data_io() 664 ahci_dcache_flush_sata_cmd(pp); in ahci_device_data_io() [all …]
|
A D | dwc_ahsata.c | 332 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg; in ahci_fill_sg() 366 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff); in ahci_fill_cmd_slot() 368 pp->cmd_slot->tbl_addr_hi = in ahci_fill_cmd_slot() 405 ahci_fill_cmd_slot(pp, cmd_slot, opts); in ahci_exec_ata_cmd() 415 invalidate_dcache_range((int)(pp->cmd_slot), in ahci_exec_ata_cmd() 418 pp->cmd_slot->status); in ahci_exec_ata_cmd() 469 pp->cmd_slot = (struct ahci_cmd_hdr *)mem; in ahci_port_start() 476 pp->rx_fis = mem; in ahci_port_start() 483 pp->cmd_tbl = mem; in ahci_port_start() 484 debug("cmd_tbl_dma = 0x%lx\n", pp->cmd_tbl); in ahci_port_start() [all …]
|
/u-boot/lib/bzip2/ |
A D | bzlib_decompress.c | 464 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()
|
A D | bzlib_huffman.c | 202 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()
|
/u-boot/drivers/pinctrl/rockchip/ |
A D | pinctrl-rockchip-core.c | 405 struct property *pp; local 445 for (pp = np->properties; pp; pp = pp->next) { 446 prop_name = pp->name; 447 prop_len = pp->length; 448 value = pp->value;
|
/u-boot/drivers/video/ |
A D | mx3fb.c | 345 struct chan_param_mem_planar pp; member 467 params->pp.fw = width - 1; in ipu_ch_param_set_size() 468 params->pp.fh_l = height - 1; in ipu_ch_param_set_size() 469 params->pp.fh_h = (height - 1) >> 8; in ipu_ch_param_set_size() 470 params->pp.sl = stride - 1; in ipu_ch_param_set_size() 505 params->pp.nsb = 1; in ipu_ch_param_set_size() 511 params->pp.eba0 = (u32)buf0; in ipu_ch_param_set_buffer() 512 params->pp.eba1 = (u32)buf1; in ipu_ch_param_set_buffer() 549 params.pp.bam = 0; in ipu_init_channel_buffer() 555 params.pp.npb = 16 - 1; in ipu_init_channel_buffer()
|
/u-boot/arch/arm/mach-tegra/tegra20/ |
A D | emc.c | 176 struct apb_misc_pp_ctlr *pp = in decode_emc() local 182 ram_code = (readl(&pp->strapping_opt_a) & RAM_CODE_MASK) in decode_emc()
|
/u-boot/arch/powerpc/include/asm/ |
A D | mmu.h | 34 unsigned long pp:2; /* Page protection */ member 62 unsigned long pp:2; /* Page access protections */ member 96 unsigned long pp:2; /* Page access protections */ member
|
/u-boot/arch/arm/dts/ |
A D | meson-gx-mali450.dtsi | 56 interrupt-names = "gp", "gpmmu", "pp", "pmu",
|
A D | stih410-clock.dtsi | 164 "clk-pp-dmu", 183 "clk-pp-hades",
|
A D | sun50i-h5.dtsi | 133 "pp",
|
A D | stih407-clock.dtsi | 163 "clk-pp-dmu",
|
A D | rk3328.dtsi | 615 "pp",
|
/u-boot/net/ |
A D | eth_legacy.c | 404 void *pp = push_packet; in eth_receive() local 410 push_packet = pp; in eth_receive()
|
/u-boot/scripts/dtc/ |
A D | checks.c | 529 struct property **pp, *prop = NULL; in check_name_properties() local 531 for (pp = &node->proplist; *pp; pp = &((*pp)->next)) in check_name_properties() 532 if (streq((*pp)->name, "name")) { in check_name_properties() 533 prop = *pp; in check_name_properties() 547 *pp = prop->next; in check_name_properties()
|
/u-boot/drivers/mtd/spi/ |
A D | spi-nor-core.c | 1533 spi_nor_set_pp_settings(struct spi_nor_pp_command *pp, in spi_nor_set_pp_settings() argument 1537 pp->opcode = opcode; in spi_nor_set_pp_settings() 1538 pp->proto = proto; in spi_nor_set_pp_settings() 2339 const struct spi_nor_pp_command *pp; in spi_nor_select_pp() local 2348 pp = ¶ms->page_programs[cmd]; in spi_nor_select_pp() 2349 nor->program_opcode = pp->opcode; in spi_nor_select_pp() 2350 nor->write_proto = pp->proto; in spi_nor_select_pp()
|
/u-boot/doc/device-tree-bindings/fsp/fsp2/apollolake/ |
A D | fsp-s.txt | 186 - fsps,dsp-pp-module-mask: Bitmask of supported DSP Post-Processing Modules
|