Home
last modified time | relevance | path

Searched refs:flash_offset (Results 1 – 9 of 9) sorted by relevance

/openbmc/phosphor-mboxd/
H A Dmboxd_windows.c44 window->flash_offset = FLASH_OFFSET_UNINIT; in init_window_state()
161 uint32_t flash_offset; in write_from_window_v1() local
165 flash_offset = context->current->flash_offset + offset_bytes; in write_from_window_v1()
175 low_mem.flash_offset = align_down(flash_offset, in write_from_window_v1()
177 low_mem.size = flash_offset - low_mem.flash_offset; in write_from_window_v1()
178 high_mem.flash_offset = flash_offset + count_bytes; in write_from_window_v1()
179 high_mem.size = align_up(high_mem.flash_offset, in write_from_window_v1()
181 high_mem.flash_offset; in write_from_window_v1()
187 if (low_mem.flash_offset < context->current->flash_offset) { in write_from_window_v1()
194 rc = copy_flash(context, low_mem.flash_offset, in write_from_window_v1()
[all …]
H A Dmboxd_msg.c317 uint32_t flash_offset; in mbox_handle_read_window() local
334 flash_offset = get_u16(&req->msg.args[0]) << context->block_size_shift; in mbox_handle_read_window()
335 MSG_INFO("Host requested flash @ 0x%.8x\n", flash_offset); in mbox_handle_read_window()
337 context->current = search_windows(context, flash_offset, in mbox_handle_read_window()
342 rc = create_map_window(context, &context->current, flash_offset, in mbox_handle_read_window()
346 , flash_offset); in mbox_handle_read_window()
353 context->current->flash_offset); in mbox_handle_read_window()
359 put_u16(&resp->args[4], context->current->flash_offset >> in mbox_handle_read_window()
439 off = offset - ((context->current->flash_offset) >> in mbox_handle_dirty_window()
445 context->current->flash_offset); in mbox_handle_dirty_window()
[all …]
H A Dmbox.h108 uint32_t flash_offset; /* Flash area the window maps (bytes) */ member
/openbmc/hiomapd/
H A Dwindows.c47 window->flash_offset = FLASH_OFFSET_UNINIT; in init_window_state()
164 uint32_t flash_offset; in window_flush_v1() local
168 flash_offset = context->current->flash_offset + offset_bytes; in window_flush_v1()
178 low_mem.flash_offset = align_down(flash_offset, in window_flush_v1()
180 low_mem.size = flash_offset - low_mem.flash_offset; in window_flush_v1()
181 high_mem.flash_offset = flash_offset + count_bytes; in window_flush_v1()
182 high_mem.size = align_up(high_mem.flash_offset, in window_flush_v1()
184 high_mem.flash_offset; in window_flush_v1()
190 if (low_mem.flash_offset < context->current->flash_offset) { in window_flush_v1()
197 rc = backend_copy(&context->backend, low_mem.flash_offset, in window_flush_v1()
[all …]
H A Dprotocol.c190 trace->sector = context->current->flash_offset / 512; in blktrace_flush_start()
251 trace->sector = context->current->flash_offset / 512; in blktrace_window_done()
326 context->current->flash_offset); in protocol_v1_create_window()
346 off = offset - ((context->current->flash_offset) >> in protocol_v1_mark_dirty()
352 context->current->flash_offset); in protocol_v1_mark_dirty()
384 context->current->flash_offset); in generic_flush()
573 io->resp.offset = context->current->flash_offset >> in protocol_v2_create_window()
H A Dwindows.h23 uint32_t flash_offset; /* Flash area the window maps (bytes) */ member
/openbmc/u-boot/board/freescale/s32v234evb/
H A Ds32v234evb.cfg21 * qspi: flash_offset: 0x1000
22 * sd/mmc: flash_offset: 0x1000
/openbmc/u-boot/tools/
H A Dimximage.c300 uint32_t entry_point, uint32_t flash_offset) in set_imx_hdr_v1() argument
312 hdr_base = entry_point - imximage_init_loadsize + flash_offset; in set_imx_hdr_v1()
313 fhdr_v1->app_dest_ptr = hdr_base - flash_offset; in set_imx_hdr_v1()
326 uint32_t entry_point, uint32_t flash_offset) in set_imx_hdr_v2() argument
342 flash_offset; in set_imx_hdr_v2()
367 flash_offset + sizeof(flash_header_v2_t) + in set_imx_hdr_v2()
372 fhdr_v2->self = imximage_iram_free_start + flash_offset; in set_imx_hdr_v2()
417 next_hdr_v2->boot_data.start = hdr_base - flash_offset; in set_imx_hdr_v2()
/openbmc/u-boot/include/
H A Dimximage.h216 uint32_t entry_point, uint32_t flash_offset);