Home
last modified time | relevance | path

Searched refs:cdat (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/hw/cxl/
H A Dcxl-cdat.c47 static bool ct3_build_cdat(CDATObject *cdat, Error **errp) in ct3_build_cdat() argument
56 assert(cdat->build_cdat_table); in ct3_build_cdat()
64 cdat->built_buf_len = cdat->build_cdat_table(&cdat->built_buf, in ct3_build_cdat()
65 cdat->private); in ct3_build_cdat()
67 if (cdat->built_buf_len <= 0) { in ct3_build_cdat()
69 cdat->to_update = true; in ct3_build_cdat()
72 cdat->to_update = false; in ct3_build_cdat()
74 cdat_st = g_malloc0(sizeof(*cdat_st) * (cdat->built_buf_len + 1)); in ct3_build_cdat()
81 for (ent = 1; ent < cdat->built_buf_len + 1; ent++) { in ct3_build_cdat()
82 CDATSubHeader *hdr = cdat->built_buf[ent - 1]; in ct3_build_cdat()
[all …]
H A Dmeson.build7 'cxl-cdat.c',
/openbmc/qemu/hw/pci-bridge/
H A Dcxl_upstream.c142 CDATObject *cdat = &CXL_USP(doe_cap->pdev)->cxl_cstate.cdat; in cxl_doe_cdat_rsp() local
150 assert(cdat->entry_len); in cxl_doe_cdat_rsp()
159 base = cdat->entry[ent].base; in cxl_doe_cdat_rsp()
160 len = cdat->entry[ent].length; in cxl_doe_cdat_rsp()
171 .entry_handle = (ent < cdat->entry_len - 1) ? in cxl_doe_cdat_rsp()
340 cxl_cstate->cdat.build_cdat_table = build_cdat_table; in cxl_usp_realize()
341 cxl_cstate->cdat.free_cdat_table = free_default_cdat_table; in cxl_usp_realize()
342 cxl_cstate->cdat.private = d; in cxl_usp_realize()
367 DEFINE_PROP_STRING("cdat", CXLUpstreamPort, cxl_cstate.cdat.filename),
/openbmc/u-boot/drivers/video/
H A Dcfb_console.c320 u8 *cdat, *dest, *dest0; in video_drawchars() local
331 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; in video_drawchars()
334 u8 bits = *cdat++; in video_drawchars()
355 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; in video_drawchars()
358 u8 bits = *cdat++; in video_drawchars()
389 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; in video_drawchars()
392 u8 bits = *cdat++; in video_drawchars()
423 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; in video_drawchars()
426 u8 bits = *cdat++; in video_drawchars()
466 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; in video_drawchars()
[all …]
/openbmc/qemu/hw/mem/
H A Dcxl_type3.c265 CDATObject *cdat = &CXL_TYPE3(doe_cap->pdev)->cxl_cstate.cdat; in cxl_doe_cdat_rsp() local
272 assert(cdat->entry_len); in cxl_doe_cdat_rsp()
281 base = cdat->entry[ent].base; in cxl_doe_cdat_rsp()
282 len = cdat->entry[ent].length; in cxl_doe_cdat_rsp()
293 .entry_handle = (ent < cdat->entry_len - 1) ? in cxl_doe_cdat_rsp()
930 cxl_cstate->cdat.build_cdat_table = ct3_build_cdat_table; in ct3_realize()
931 cxl_cstate->cdat.free_cdat_table = ct3_free_cdat_table; in ct3_realize()
932 cxl_cstate->cdat.private = ct3d; in ct3_realize()
1279 DEFINE_PROP_STRING("cdat", CXLType3Dev, cxl_cstate.cdat.filename),
/openbmc/qemu/include/hw/cxl/
H A Dcxl_component.h250 CDATObject cdat; member