Home
last modified time | relevance | path

Searched refs:global_data (Results 1 – 25 of 664) sorted by relevance

12345678910>>...27

/OK3568_Linux_fs/u-boot/lib/
H A Dasm-offsets.c23 (sizeof(struct global_data) + 15) & ~15); in main()
28 DEFINE(GD_SIZE, sizeof(struct global_data)); in main()
30 DEFINE(GD_BD, offsetof(struct global_data, bd)); in main()
32 DEFINE(GD_MALLOC_BASE, offsetof(struct global_data, malloc_base)); in main()
35 DEFINE(GD_RELOCADDR, offsetof(struct global_data, relocaddr)); in main()
37 DEFINE(GD_RELOC_OFF, offsetof(struct global_data, reloc_off)); in main()
39 DEFINE(GD_START_ADDR_SP, offsetof(struct global_data, start_addr_sp)); in main()
42 DEFINE(PM_CTX_PHYS, offsetof(struct global_data, pm_ctx_phys)); in main()
44 DEFINE(GD_NEW_GD, offsetof(struct global_data, new_gd)); in main()
H A D.of_live.o.cmd
/OK3568_Linux_fs/u-boot/common/init/
H A Dboard_init.c16 __weak void arch_setup_gd(struct global_data *gd_ptr) in arch_setup_gd()
53 top = rounddown(top-sizeof(struct global_data), 16); in board_init_f_alloc_reserve()
102 struct global_data *gd_ptr; in board_init_f_init_reserve()
109 gd_ptr = (struct global_data *)base; in board_init_f_init_reserve()
117 base += roundup(sizeof(struct global_data), 16); in board_init_f_init_reserve()
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dkfree_skb.c65 struct bpf_map *perf_buf_map, *global_data; in test_kfree_skb() local
95 global_data = bpf_object__find_map_by_name(obj2, "kfree_sk.bss"); in test_kfree_skb()
96 if (CHECK(!global_data, "find global data", "not found\n")) in test_kfree_skb()
139 err = bpf_map_lookup_elem(bpf_map__fd(global_data), &zero, test_ok); in test_kfree_skb()
/OK3568_Linux_fs/u-boot/arch/m68k/include/asm/
H A Dglobal_data.h27 extern gd_t *global_data;
28 #define DECLARE_GLOBAL_DATA_PTR gd_t *gd = global_data
/OK3568_Linux_fs/u-boot/include/dm/
H A Droot.h24 struct global_data;
32 void dm_fixup_for_gd_move(struct global_data *new_gd);
/OK3568_Linux_fs/u-boot/examples/standalone/
H A Dstubs.c16 gd_t *global_data; variable
269 global_data = (gd_t *)argv[-1]; in app_startup()
270 jt = global_data->jt; in app_startup()
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.standalone8 'global_data' structure. The struct members for the jump table are
24 'global_data' structure: r2 on PowerPC, r9 on ARM, k0 on MIPS,
26 use such a register; instead, the pointer to the 'global_data'
29 The application can access the 'global_data' structure in the same
114 passing the 'global_data' pointer (like x86 does), one should add
H A DREADME.generic-board27 Related to this, the global_data and bd_t structures now have a core set of
97 A generic global_data structure is also required. This might upset a few
99 architectures include and need it, most global_data.h files already have
106 be accessing it. I have done this in the same way as global_data and the
H A DREADME.m54418twr34 - arch/m68k/include/asm/global_data.h Global data structure
/OK3568_Linux_fs/u-boot/arch/x86/include/asm/
H A Du-boot-x86.h11 struct global_data;
19 void setup_gdt(struct global_data *id, u64 *gdt_addr);
H A Dglobal_data.h73 struct global_data *gd_addr; /* Location of Global Data */
118 #define DECLARE_GLOBAL_DATA_PTR extern struct global_data *global_data_ptr
/OK3568_Linux_fs/u-boot/include/asm-generic/
H A Dglobal_data.h42 typedef struct global_data { struct
77 struct global_data *new_gd; /* relocated global data */ argument
/OK3568_Linux_fs/u-boot/arch/x86/cpu/x86_64/
H A Dcpu.c14 struct global_data *global_data_ptr;
/OK3568_Linux_fs/u-boot/include/
H A Dautoconf.mk.dep
H A Dexports.h62 extern gd_t *global_data;
/OK3568_Linux_fs/u-boot/arch/x86/lib/
H A Dspl.c75 gd->new_gd = (struct global_data *)ptr; in x86_spl_init()
/OK3568_Linux_fs/u-boot/lib/efi/
H A Defi_app.c46 global_data_ptr = efi_malloc(priv, sizeof(struct global_data), &ret); in setup_memory()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_cmn.c3510 pbd->global_data |= in bnx2x_set_pbd_gso()
3608 pbd->global_data = in bnx2x_set_pbd_csum()
3652 u16 *global_data, in bnx2x_update_pbds_gso_enc() argument
3708 *global_data |= in bnx2x_update_pbds_gso_enc()
3716 SET_FLAG(*global_data, ETH_TX_PARSE_2ND_BD_TUNNEL_UDP_EXIST, 1); in bnx2x_update_pbds_gso_enc()
3944 u16 global_data = 0; in bnx2x_start_xmit() local
3964 &global_data, in bnx2x_start_xmit()
3967 pbd2->global_data = cpu_to_le16(global_data); in bnx2x_start_xmit()
4022 u16 global_data = 0; in bnx2x_start_xmit() local
4029 SET_FLAG(global_data, in bnx2x_start_xmit()
[all …]
H A Dbnx2x_ethtool.c2600 u16 global_data = 0; in bnx2x_run_loopback() local
2604 SET_FLAG(global_data, in bnx2x_run_loopback()
2606 pbd_e1x->global_data = cpu_to_le16(global_data); in bnx2x_run_loopback()
/OK3568_Linux_fs/kernel/tools/perf/bench/
H A Dnuma.c1117 u8 *global_data; in worker_thread() local
1130 global_data = g->data; in worker_thread()
1146 process_nr, thread_nr, global_data, process_data, thread_data); in worker_thread()
1179 val += do_work(global_data, g->p.bytes_global, process_nr, g->p.nr_proc, l, val); in worker_thread()
/OK3568_Linux_fs/u-boot/drivers/core/
H A Droot.c47 void dm_fixup_for_gd_move(struct global_data *new_gd) in dm_fixup_for_gd_move()
/OK3568_Linux_fs/u-boot/board/freescale/m53017evb/
H A DREADME37 - include/asm-m68k/global_data.h Global data structure
/OK3568_Linux_fs/u-boot/board/freescale/m52277evb/
H A DREADME37 - include/asm-m68k/global_data.h Global data structure
/OK3568_Linux_fs/u-boot/arch/arm/lib/
H A D.cache.o.cmd

12345678910>>...27