/external/u-boot/drivers/core/ |
D | root.c | 62 ((u32)entry->of_match + gd->reloc_off); in fix_drivers() 64 entry->bind += gd->reloc_off; in fix_drivers() 66 entry->probe += gd->reloc_off; in fix_drivers() 68 entry->remove += gd->reloc_off; in fix_drivers() 70 entry->unbind += gd->reloc_off; in fix_drivers() 72 entry->ofdata_to_platdata += gd->reloc_off; in fix_drivers() 74 entry->child_post_bind += gd->reloc_off; in fix_drivers() 76 entry->child_pre_probe += gd->reloc_off; in fix_drivers() 78 entry->child_post_remove += gd->reloc_off; in fix_drivers() 81 entry->ops += gd->reloc_off; in fix_drivers() [all …]
|
/external/u-boot/arch/x86/lib/ |
D | relocate.c | 38 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off; in clear_bss() 73 gd->reloc_off); in do_elf_reloc_fixups64() 78 *offset_ptr_ram = gd->reloc_off + in do_elf_reloc_fixups64() 121 gd->reloc_off); in do_elf_reloc_fixups32() 126 *offset_ptr_ram += gd->reloc_off; in do_elf_reloc_fixups32()
|
/external/u-boot/drivers/serial/ |
D | serial.c | 143 dev->start += gd->reloc_off; in serial_register() 145 dev->stop += gd->reloc_off; in serial_register() 147 dev->setbrg += gd->reloc_off; in serial_register() 149 dev->getc += gd->reloc_off; in serial_register() 151 dev->tstc += gd->reloc_off; in serial_register() 153 dev->putc += gd->reloc_off; in serial_register() 155 dev->puts += gd->reloc_off; in serial_register()
|
D | serial-uclass.c | 439 ops->setbrg += gd->reloc_off; in serial_post_probe() 441 ops->getc += gd->reloc_off; in serial_post_probe() 443 ops->putc += gd->reloc_off; in serial_post_probe() 445 ops->pending += gd->reloc_off; in serial_post_probe() 447 ops->clear += gd->reloc_off; in serial_post_probe() 449 ops->getconfig += gd->reloc_off; in serial_post_probe() 451 ops->setconfig += gd->reloc_off; in serial_post_probe() 454 ops->loop += gd->reloc_off; in serial_post_probe() 457 ops->getinfo += gd->reloc_off; in serial_post_probe()
|
/external/u-boot/arch/sh/lib/ |
D | board.c | 22 if (new_gd->reloc_off) { in relocate_code() 24 (void *)(new_gd->relocaddr - new_gd->reloc_off), in relocate_code() 27 reloc_board_init_r += new_gd->reloc_off; in relocate_code()
|
/external/u-boot/drivers/watchdog/ |
D | wdt-uclass.c | 100 ops->start += gd->reloc_off; in wdt_post_bind() 102 ops->stop += gd->reloc_off; in wdt_post_bind() 104 ops->reset += gd->reloc_off; in wdt_post_bind() 106 ops->expire_now += gd->reloc_off; in wdt_post_bind()
|
/external/u-boot/drivers/net/phy/ |
D | miiphybb.c | 115 BB_MII_RELOCATE(bb_miiphy_buses[i].init, gd->reloc_off); in bb_miiphy_init() 116 BB_MII_RELOCATE(bb_miiphy_buses[i].mdio_active, gd->reloc_off); in bb_miiphy_init() 117 BB_MII_RELOCATE(bb_miiphy_buses[i].mdio_tristate, gd->reloc_off); in bb_miiphy_init() 118 BB_MII_RELOCATE(bb_miiphy_buses[i].set_mdio, gd->reloc_off); in bb_miiphy_init() 119 BB_MII_RELOCATE(bb_miiphy_buses[i].get_mdio, gd->reloc_off); in bb_miiphy_init() 120 BB_MII_RELOCATE(bb_miiphy_buses[i].set_mdc, gd->reloc_off); in bb_miiphy_init() 121 BB_MII_RELOCATE(bb_miiphy_buses[i].delay, gd->reloc_off); in bb_miiphy_init()
|
D | phy.c | 478 head->next = (void *)head->next + gd->reloc_off; in phy_init() 479 head->prev = (void *)head->prev + gd->reloc_off; in phy_init() 563 drv->probe += gd->reloc_off; in phy_register() 565 drv->config += gd->reloc_off; in phy_register() 567 drv->startup += gd->reloc_off; in phy_register() 569 drv->shutdown += gd->reloc_off; in phy_register() 571 drv->readext += gd->reloc_off; in phy_register() 573 drv->writeext += gd->reloc_off; in phy_register() 575 drv->read_mmd += gd->reloc_off; in phy_register() 577 drv->write_mmd += gd->reloc_off; in phy_register()
|
/external/u-boot/env/ |
D | env.c | 23 entry->name += gd->reloc_off; in env_fix_drivers() 25 entry->load += gd->reloc_off; in env_fix_drivers() 27 entry->save += gd->reloc_off; in env_fix_drivers() 29 entry->erase += gd->reloc_off; in env_fix_drivers() 31 entry->init += gd->reloc_off; in env_fix_drivers()
|
D | callback.c | 72 var_entry->callback = clbkp->callback + gd->reloc_off; in env_callback_init() 113 ep->callback = clbkp->callback + gd->reloc_off; in set_callback()
|
/external/u-boot/net/ |
D | eth-uclass.c | 500 ops->start += gd->reloc_off; in eth_post_probe() 502 ops->send += gd->reloc_off; in eth_post_probe() 504 ops->recv += gd->reloc_off; in eth_post_probe() 506 ops->free_pkt += gd->reloc_off; in eth_post_probe() 508 ops->stop += gd->reloc_off; in eth_post_probe() 510 ops->mcast += gd->reloc_off; in eth_post_probe() 512 ops->write_hwaddr += gd->reloc_off; in eth_post_probe() 514 ops->read_rom_hwaddr += gd->reloc_off; in eth_post_probe()
|
/external/u-boot/arch/arc/lib/ |
D | relocate.c | 31 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off; in clear_bss() 66 gd->reloc_off); in do_elf_reloc_fixups() 125 val += gd->reloc_off; in do_elf_reloc_fixups()
|
/external/u-boot/common/ |
D | image-sig.c | 98 checksum_algos[i].name += gd->reloc_off; in image_get_checksum_algo() 100 checksum_algos[i].calculate_sign += gd->reloc_off; in image_get_checksum_algo() 102 checksum_algos[i].calculate += gd->reloc_off; in image_get_checksum_algo() 129 crypto_algos[i].name += gd->reloc_off; in image_get_crypto_algo() 130 crypto_algos[i].sign += gd->reloc_off; in image_get_crypto_algo() 131 crypto_algos[i].add_verify_data += gd->reloc_off; in image_get_crypto_algo() 132 crypto_algos[i].verify += gd->reloc_off; in image_get_crypto_algo()
|
D | command.c | 493 if (gd->reloc_off == 0) in fixup_cmdtable() 499 addr = (ulong)(cmdtp->cmd_rep) + gd->reloc_off; in fixup_cmdtable() 504 addr = (ulong)(cmdtp->cmd) + gd->reloc_off; in fixup_cmdtable() 511 addr = (ulong)(cmdtp->name) + gd->reloc_off; in fixup_cmdtable() 514 addr = (ulong)(cmdtp->usage) + gd->reloc_off; in fixup_cmdtable() 519 addr = (ulong)(cmdtp->help) + gd->reloc_off; in fixup_cmdtable() 525 addr = (ulong)(cmdtp->complete) + gd->reloc_off; in fixup_cmdtable()
|
D | hash.c | 234 hash_algo[i].name += gd->reloc_off; in reloc_update() 235 hash_algo[i].hash_func_ws += gd->reloc_off; in reloc_update() 236 hash_algo[i].hash_init += gd->reloc_off; in reloc_update() 237 hash_algo[i].hash_update += gd->reloc_off; in reloc_update() 238 hash_algo[i].hash_finish += gd->reloc_off; in reloc_update()
|
/external/u-boot/post/ |
D | post.c | 426 addr = (ulong)(test->name) + gd->reloc_off; in post_reloc() 431 addr = (ulong)(test->cmd) + gd->reloc_off; in post_reloc() 436 addr = (ulong)(test->desc) + gd->reloc_off; in post_reloc() 441 addr = (ulong)(test->test) + gd->reloc_off; in post_reloc() 446 addr = (ulong)(test->init_f) + gd->reloc_off; in post_reloc() 451 addr = (ulong)(test->reloc) + gd->reloc_off; in post_reloc()
|
/external/u-boot/drivers/mtd/spi/ |
D | sf-uclass.c | 94 ops->read += gd->reloc_off; in spi_flash_post_bind() 96 ops->write += gd->reloc_off; in spi_flash_post_bind() 98 ops->erase += gd->reloc_off; in spi_flash_post_bind()
|
/external/u-boot/drivers/spi/ |
D | spi-uclass.c | 172 ops->claim_bus += gd->reloc_off; in spi_post_probe() 174 ops->release_bus += gd->reloc_off; in spi_post_probe() 176 ops->set_wordlen += gd->reloc_off; in spi_post_probe() 178 ops->xfer += gd->reloc_off; in spi_post_probe() 180 ops->set_speed += gd->reloc_off; in spi_post_probe() 182 ops->set_mode += gd->reloc_off; in spi_post_probe() 184 ops->cs_info += gd->reloc_off; in spi_post_probe()
|
/external/u-boot/drivers/hwspinlock/ |
D | hwspinlock-uclass.c | 128 ops->lock += gd->reloc_off; in hwspinlock_post_bind() 130 ops->unlock += gd->reloc_off; in hwspinlock_post_bind() 132 ops->relax += gd->reloc_off; in hwspinlock_post_bind()
|
/external/u-boot/drivers/gpio/ |
D | gpio-uclass.c | 1045 ops->request += gd->reloc_off; in gpio_post_bind() 1047 ops->free += gd->reloc_off; in gpio_post_bind() 1049 ops->direction_input += gd->reloc_off; in gpio_post_bind() 1051 ops->direction_output += gd->reloc_off; in gpio_post_bind() 1053 ops->get_value += gd->reloc_off; in gpio_post_bind() 1055 ops->set_value += gd->reloc_off; in gpio_post_bind() 1057 ops->get_open_drain += gd->reloc_off; in gpio_post_bind() 1059 ops->set_open_drain += gd->reloc_off; in gpio_post_bind() 1061 ops->get_function += gd->reloc_off; in gpio_post_bind() 1063 ops->xlate += gd->reloc_off; in gpio_post_bind()
|
/external/u-boot/cmd/ |
D | bdinfo.c | 251 print_num("reloc off", gd->reloc_off); in do_bdinfo() 296 print_num("reloc off", gd->reloc_off); in do_bdinfo() 330 print_num("reloc off", gd->reloc_off); in do_bdinfo() 382 print_num("reloc off", gd->reloc_off); in do_bdinfo() 432 print_num("reloc off", gd->reloc_off); in do_bdinfo()
|
/external/u-boot/arch/mips/lib/ |
D | traps.c | 54 field, regs->cp0_epc - gd->reloc_off); in show_regs() 56 field, regs->regs[31] - gd->reloc_off); in show_regs()
|
/external/u-boot/arch/arm/lib/ |
D | interrupts_64.c | 51 regs->elr - gd->reloc_off, in show_regs() 52 regs->regs[30] - gd->reloc_off); in show_regs()
|
D | interrupts.c | 103 instruction_pointer(regs) - gd->reloc_off, in show_regs() 104 regs->ARM_lr - gd->reloc_off); in show_regs()
|
/external/u-boot/fs/ |
D | fs.c | 346 info->name += gd->reloc_off; in fs_set_blk_dev() 347 info->probe += gd->reloc_off; in fs_set_blk_dev() 348 info->close += gd->reloc_off; in fs_set_blk_dev() 349 info->ls += gd->reloc_off; in fs_set_blk_dev() 350 info->read += gd->reloc_off; in fs_set_blk_dev() 351 info->write += gd->reloc_off; in fs_set_blk_dev()
|