Home
last modified time | relevance | path

Searched refs:layout (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/openbmc/u-boot/common/eeprom/
H A Deeprom_layout.c37 __weak void __eeprom_layout_assign(struct eeprom_layout *layout, in __eeprom_layout_assign() argument
40 layout->fields = layout_unknown; in __eeprom_layout_assign()
41 layout->num_of_fields = ARRAY_SIZE(layout_unknown); in __eeprom_layout_assign()
43 void eeprom_layout_assign(struct eeprom_layout *layout, int layout_version) \
50 static void eeprom_layout_print(const struct eeprom_layout *layout) in eeprom_layout_print() argument
53 struct eeprom_field *fields = layout->fields; in eeprom_layout_print()
55 for (i = 0; i < layout->num_of_fields; i++) in eeprom_layout_print()
67 static int eeprom_layout_update_field(struct eeprom_layout *layout, in eeprom_layout_update_field() argument
71 struct eeprom_field *fields = layout->fields; in eeprom_layout_update_field()
79 for (i = 0; i < layout->num_of_fields; i++) { in eeprom_layout_update_field()
[all …]
/openbmc/libmctp/
H A Dastlpc.c124 struct mctp_astlpc_layout layout; member
281 } layout; member
394 struct mctp_astlpc_layout *layout) in mctp_astlpc_layout_read() argument
405 layout->rx.offset = be32toh(hdr.layout.tx_offset); in mctp_astlpc_layout_read()
406 layout->rx.size = be32toh(hdr.layout.tx_size); in mctp_astlpc_layout_read()
407 layout->tx.offset = be32toh(hdr.layout.rx_offset); in mctp_astlpc_layout_read()
408 layout->tx.size = be32toh(hdr.layout.rx_size); in mctp_astlpc_layout_read()
412 layout->rx.offset = be32toh(hdr.layout.rx_offset); in mctp_astlpc_layout_read()
413 layout->rx.size = be32toh(hdr.layout.rx_size); in mctp_astlpc_layout_read()
414 layout->tx.offset = be32toh(hdr.layout.tx_offset); in mctp_astlpc_layout_read()
[all …]
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Dnand_bch.c114 struct nand_ecclayout *layout = nand->ecc.layout; in nand_bch_init() local
152 if (!layout) { in nand_bch_init()
161 layout = &nbc->ecclayout; in nand_bch_init()
162 layout->eccbytes = eccsteps*eccbytes; in nand_bch_init()
165 if (layout->eccbytes+2 > mtd->oobsize) { in nand_bch_init()
172 for (i = 0; i < layout->eccbytes; i++) in nand_bch_init()
173 layout->eccpos[i] = mtd->oobsize-layout->eccbytes+i; in nand_bch_init()
175 layout->oobfree[0].offset = 2; in nand_bch_init()
176 layout->oobfree[0].length = mtd->oobsize-2-layout->eccbytes; in nand_bch_init()
178 nand->ecc.layout = layout; in nand_bch_init()
[all …]
H A Ddavinci_nand.c373 saved_ecc_layout = chip->ecc.layout; in nand_davinci_write_page()
374 chip->ecc.layout = &nand_keystone_rbl_4bit_layout_oobfirst; in nand_davinci_write_page()
375 mtd->oobavail = chip->ecc.layout->oobavail; in nand_davinci_write_page()
404 chip->ecc.layout = saved_ecc_layout; in nand_davinci_write_page()
431 struct nand_ecclayout *saved_ecc_layout = chip->ecc.layout; in nand_davinci_read_page_hwecc()
435 chip->ecc.layout = &nand_keystone_rbl_4bit_layout_oobfirst; in nand_davinci_read_page_hwecc()
436 mtd->oobavail = chip->ecc.layout->oobavail; in nand_davinci_read_page_hwecc()
439 eccpos = chip->ecc.layout->eccpos; in nand_davinci_read_page_hwecc()
465 chip->ecc.layout = saved_ecc_layout; in nand_davinci_read_page_hwecc()
774 struct nand_ecclayout *layout; in davinci_nand_init() local
[all …]
H A Dsunxi_nand.c220 struct nand_ecclayout layout; member
1389 struct nand_ecclayout *layout; in sunxi_nand_hw_common_ecc_ctrl_init() local
1433 layout = &data->layout; in sunxi_nand_hw_common_ecc_ctrl_init()
1441 layout->eccbytes = (ecc->bytes * nsectors); in sunxi_nand_hw_common_ecc_ctrl_init()
1443 ecc->layout = layout; in sunxi_nand_hw_common_ecc_ctrl_init()
1464 struct nand_ecclayout *layout; in sunxi_nand_hw_ecc_ctrl_init() local
1477 layout = ecc->layout; in sunxi_nand_hw_ecc_ctrl_init()
1482 layout->oobfree[i].offset = in sunxi_nand_hw_ecc_ctrl_init()
1483 layout->oobfree[i - 1].offset + in sunxi_nand_hw_ecc_ctrl_init()
1484 layout->oobfree[i - 1].length + in sunxi_nand_hw_ecc_ctrl_init()
[all …]
/openbmc/qemu/docs/system/devices/
H A Dkeyboard.rst5 SUN Type 4, 5 and 5c keyboards have dip switches to choose the language layout
7 and uses that value to select keyboard layout. Also the SUN bios like the one
10 US keyboard layout.
12 With the escc.chnA-sunkbd-layout driver property it is possible to select
13 keyboard layout. Example:
15 -global escc.chnA-sunkbd-layout=de
18 select keyboard layout, giving up to 64 different layouts. Not all
24 -global escc.chnA-sunkbd-layout=0x2b
26 -global escc.chnA-sunkbd-layout=43
28 -global escc.chnA-sunkbd-layout=sv
[all …]
/openbmc/qemu/rust/qemu-api/src/
H A Dlib.rs123 unsafe fn alloc(&self, layout: Layout) -> *mut u8 { in alloc()
124 …if matches!(Self::DEFAULT_ALIGNMENT_BYTES, Some(default) if default.checked_rem(layout.align()) ==… in alloc()
127 unsafe { g_malloc0(layout.size().try_into().unwrap()).cast::<u8>() } in alloc()
134 layout.size().try_into().unwrap(), in alloc()
136 layout.align().try_into().unwrap(), in alloc()
144 unsafe { qemu_memalign(layout.align(), layout.size()).cast::<u8>() } in alloc()
149 unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) { in dealloc()
150 …if matches!(Self::DEFAULT_ALIGNMENT_BYTES, Some(default) if default.checked_rem(layout.align()) ==… in dealloc()
/openbmc/openbmc/meta-openpower/recipes-phosphor/vpd/
H A Dopenpower-fru-vpd-layout-native.bb1 SUMMARY = "VPD layout for openpower-fru-vpd"
9 SRC_URI += "file://layout.yaml"
11 PROVIDES += "virtual/openpower-fru-vpd-layout"
20 install layout.yaml ${DEST}
H A Dopenpower-fru-inventory-mrw-native.bb13 virtual/openpower-fru-vpd-layout \
28 -c ${vpdlayout_datadir}/layout.yaml \
/openbmc/openbmc/meta-yadro/meta-nicole/recipes-phosphor/vpd/
H A Dnicole-openpower-fru-vpd-layout-native.bb1 SUMMARY = "Nicole VPD layout for openpower-fru-vpd"
9 SRC_URI += "file://layout.yaml"
11 PROVIDES += "virtual/openpower-fru-vpd-layout"
19 install layout.yaml ${DEST}
/openbmc/u-boot/drivers/dfu/
H A Ddfu_mmc.c116 switch (dfu->layout) { in mmc_file_op()
125 dfu_get_layout(dfu->layout)); in mmc_file_op()
174 switch (dfu->layout) { in dfu_write_medium_mmc()
184 dfu_get_layout(dfu->layout)); in dfu_write_medium_mmc()
194 if (dfu->layout != DFU_RAW_ADDR) { in dfu_flush_medium_mmc()
210 switch (dfu->layout) { in dfu_get_medium_size_mmc()
225 dfu_get_layout(dfu->layout)); in dfu_get_medium_size_mmc()
256 switch (dfu->layout) { in dfu_read_medium_mmc()
266 dfu_get_layout(dfu->layout)); in dfu_read_medium_mmc()
336 dfu->layout = DFU_RAW_ADDR; in dfu_fill_entity_mmc()
[all …]
H A Ddfu_nand.c104 switch (dfu->layout) { in dfu_write_medium_nand()
110 dfu_get_layout(dfu->layout)); in dfu_write_medium_nand()
128 switch (dfu->layout) { in dfu_read_medium_nand()
134 dfu_get_layout(dfu->layout)); in dfu_read_medium_nand()
200 dfu->layout = DFU_RAW_ADDR; in dfu_fill_entity_nand()
210 dfu->layout = DFU_RAW_ADDR; in dfu_fill_entity_nand()
H A Ddfu_ram.c19 if (dfu->layout != DFU_RAM_ADDR) { in dfu_transfer_medium_ram()
20 pr_err("unsupported layout: %s\n", dfu_get_layout(dfu->layout)); in dfu_transfer_medium_ram()
75 dfu->layout = DFU_RAM_ADDR; in dfu_fill_entity_ram()
/openbmc/qemu/linux-user/aarch64/
H A Dsignal.c680 target_sigframe_layout layout = { in target_setup_frame() local
694 &layout); in target_setup_frame()
700 sve_ofs = alloc_sigframe_space(sve_size, &layout); in target_setup_frame()
704 tpidr2_ofs = alloc_sigframe_space(tpidr2_size, &layout); in target_setup_frame()
711 za_ofs = alloc_sigframe_space(za_size, &layout); in target_setup_frame()
717 zt_ofs = alloc_sigframe_space(zt_size, &layout); in target_setup_frame()
720 if (layout.extra_ofs) { in target_setup_frame()
724 layout.extra_end_ofs in target_setup_frame()
725 = alloc_sigframe_space(sizeof(struct target_aarch64_ctx), &layout); in target_setup_frame()
731 layout.std_end_ofs = layout.total_size; in target_setup_frame()
[all …]
/openbmc/u-boot/board/compulab/common/
H A Deeprom.c473 void eeprom_layout_assign(struct eeprom_layout *layout, int layout_version) in eeprom_layout_assign() argument
475 switch (layout->layout_version) { in eeprom_layout_assign()
477 layout->fields = layout_legacy; in eeprom_layout_assign()
478 layout->num_of_fields = ARRAY_SIZE(layout_legacy); in eeprom_layout_assign()
481 layout->fields = layout_v1; in eeprom_layout_assign()
482 layout->num_of_fields = ARRAY_SIZE(layout_v1); in eeprom_layout_assign()
485 layout->fields = layout_v2; in eeprom_layout_assign()
486 layout->num_of_fields = ARRAY_SIZE(layout_v2); in eeprom_layout_assign()
489 layout->fields = layout_v3; in eeprom_layout_assign()
490 layout->num_of_fields = ARRAY_SIZE(layout_v3); in eeprom_layout_assign()
[all …]
/openbmc/phosphor-ipmi-flash/tools/
H A Dupdater.cpp45 std::string layout = "/flash/" + layoutType; in updaterMain() local
47 bool goalSupported = updater->checkAvailable(layout); in updaterMain()
75 updater->sendFile(layout, imagePath); in updaterMain()
/openbmc/u-boot/test/dm/
H A Dregmap.c126 struct layout { in dm_test_regmap_getset() struct
137 regmap_set(map, struct layout, val0, 0xcacafafa); in dm_test_regmap_getset()
138 regmap_set(map, struct layout, val3, 0x55aa2211); in dm_test_regmap_getset()
140 ut_assertok(regmap_get(map, struct layout, val0, &reg)); in dm_test_regmap_getset()
141 ut_assertok(regmap_get(map, struct layout, val3, &reg)); in dm_test_regmap_getset()
/openbmc/openbmc/poky/meta/recipes-devtools/binutils/binutils/
H A D0001-binutils-crosssdk-Generate-relocatable-SDKs.patch18 gold/layout.cc | 2 +-
23 diff --git a/gold/layout.cc b/gold/layout.cc
25 --- a/gold/layout.cc
26 +++ b/gold/layout.cc
/openbmc/u-boot/include/
H A Deeprom_layout.h27 void eeprom_layout_setup(struct eeprom_layout *layout, unsigned char *buf,
29 __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
/openbmc/openbmc/poky/meta/recipes-graphics/harfbuzz/harfbuzz/
H A D0001-Use-Os-to-compile-hb-subset-plan-layout.cc.patch4 Subject: [PATCH] Use -Os to compile hb-subset-plan-layout.cc
27 - 'hb-subset-plan-layout.cc',
36 + 'hb-subset-plan-layout.cc',
47 + 'hb-subset-plan-layout.cc',
/openbmc/u-boot/cmd/
H A Deeprom.c306 struct eeprom_layout layout; in eeprom_execute_command() local
334 eeprom_layout_setup(&layout, eeprom_buf, CONFIG_SYS_EEPROM_SIZE, in eeprom_execute_command()
338 layout.print(&layout); in eeprom_execute_command()
342 layout.update(&layout, key, value); in eeprom_execute_command()
344 rcode = eeprom_write(i2c_addr, 0, layout.data, CONFIG_SYS_EEPROM_SIZE); in eeprom_execute_command()
/openbmc/webui-vue/src/assets/styles/bmc/custom/
H A D_bootstrap-grid.scss2 // Fluid layout container class sets 100%
6 // https://bootstrap-vue.org/docs/components/layout#fluid-width-container
/openbmc/u-boot/include/fsl-mc/
H A Dfsl_dpni.h140 #define DPNI_CMD_SET_BUFFER_LAYOUT(cmd, layout, queue) \ argument
143 MC_CMD_OP(cmd, 1, 0, 16, uint16_t, layout->private_data_size); \
144 MC_CMD_OP(cmd, 1, 16, 16, uint16_t, layout->data_align); \
145 MC_CMD_OP(cmd, 0, 32, 16, uint16_t, layout->options); \
146 MC_CMD_OP(cmd, 0, 48, 1, int, layout->pass_timestamp); \
147 MC_CMD_OP(cmd, 0, 49, 1, int, layout->pass_parser_result); \
148 MC_CMD_OP(cmd, 0, 50, 1, int, layout->pass_frame_status); \
149 MC_CMD_OP(cmd, 1, 32, 16, uint16_t, layout->data_head_room); \
150 MC_CMD_OP(cmd, 1, 48, 16, uint16_t, layout->data_tail_room); \
805 const struct dpni_buffer_layout *layout,
[all …]
/openbmc/qemu/
H A Dqemu-keymap.c21 .layout = "us",
137 names.model, names.layout, in usage()
172 names.layout = optarg; in main()
209 names.model, names.layout, in main()
/openbmc/openbmc/meta-openpower/recipes-phosphor/flash/
H A Dopenpower-software-manager_git.bb14 # Static configuration. This is the default if no other layout is specified.
20 # UBI layout
24 # eMMC layout

12345678910>>...12