Home
last modified time | relevance | path

Searched refs:jt (Results 1 – 7 of 7) sorted by relevance

/rk3399_rockchip-uboot/examples/standalone/
H A Dstubs.c15 static struct jt_funcs *jt; variable
39 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r11");
53 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "x9");
65 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "ip");
83 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t9");
99 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t9");
115 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "gp");
131 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "a0");
143 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r5");
161 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r1", "r2");
[all …]
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/
H A Deth_ls2080rdb.c108 gd->jt->strcpy = strcpy; in board_eth_init()
109 gd->jt->mdelay = mdelay; in board_eth_init()
110 gd->jt->mdio_get_current_dev = mdio_get_current_dev; in board_eth_init()
111 gd->jt->phy_find_by_mask = phy_find_by_mask; in board_eth_init()
112 gd->jt->mdio_phydev_for_ethname = mdio_phydev_for_ethname; in board_eth_init()
113 gd->jt->miiphy_set_current_dev = miiphy_set_current_dev; in board_eth_init()
/rk3399_rockchip-uboot/common/
H A Dexports.c17 #define EXPORT_FUNC(f, a, x, ...) gd->jt->x = f;
28 gd->jt = malloc(sizeof(struct jt_funcs)); in jumptable_init()
H A Dconsole.c140 gd->jt->getc = getc; in console_setfile()
141 gd->jt->tstc = tstc; in console_setfile()
144 gd->jt->putc = putc; in console_setfile()
145 gd->jt->puts = puts; in console_setfile()
146 gd->jt->printf = printf; in console_setfile()
862 gd->jt->getc = serial_getc; in console_init_r()
863 gd->jt->tstc = serial_tstc; in console_init_r()
864 gd->jt->putc = serial_putc; in console_init_r()
865 gd->jt->puts = serial_puts; in console_init_r()
866 gd->jt->printf = serial_printf; in console_init_r()
/rk3399_rockchip-uboot/doc/
H A DREADME.standalone7 however. The jump table can be accessed as the 'jt' field of the
15 gd->jt->malloc = my_malloc;
16 gd->jt->free = my_free;
92 gd->jt->foobar = another_foobar;
/rk3399_rockchip-uboot/include/asm-generic/
H A Dglobal_data.h96 struct jt_funcs *jt; /* jump table */ member
/rk3399_rockchip-uboot/cmd/
H A Dload.c228 if (gd->jt->getc != getc) { in read_record()