Home
last modified time | relevance | path

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

/openbmc/webui-vue/src/store/modules/HardwareStatus/
H A DMemoryStore.js7 dimms: [], property in MemoryStore.state
10 dimms: (state) => state.dimms,
14 state.dimms = data.map(({ data }) => {
/openbmc/u-boot/board/freescale/mpc8641hpcn/
H A Dddr.c48 const struct board_specific_parameters *dimms[] = { variable
72 pbsp = dimms[ctrl_num]; in fsl_ddr_board_options()
/openbmc/webui-vue/src/views/HardwareStatus/Inventory/
H A DInventory.vue35 <table-dimm-slot ref="dimms" />
113 id: 'dimms',
114 dataRef: 'dimms',
115 href: '#dimms',
H A DInventoryTableDimmSlot.vue13 :total-number-of-cells="dimms.length"
25 :items="dimms"
276 : this.dimms.length;
278 dimms() {
279 return this.$store.getters['memory/dimms'];
/openbmc/openbmc/poky/meta/recipes-devtools/i2c-tools/
H A Di2c-tools_4.4.bb28 ${bindir}/decode-dimms \
/openbmc/smbios-mdr/src/
H A Dmdrv2.cpp555 if (*num < dimms.size()) in systemInfoUpdate()
557 dimms.resize(*num); in systemInfoUpdate()
564 if (index + 1 > dimms.size()) in systemInfoUpdate()
566 dimms.emplace_back(std::make_unique<phosphor::smbios::Dimm>( in systemInfoUpdate()
572 dimms[index]->memoryInfoUpdate( in systemInfoUpdate()
/openbmc/smbios-mdr/include/
H A Dmdrv2.hpp194 std::vector<std::unique_ptr<Dimm>> dimms; member in phosphor::smbios::MDRV2