Home
last modified time | relevance | path

Searched refs:density (Results 1 – 25 of 64) sorted by relevance

123

/openbmc/u-boot/arch/arm/mach-sunxi/
H A Ddram_sun4i.c429 static void dramc_set_autorefresh_cycle(u32 clk, u32 density) in dramc_set_autorefresh_cycle() argument
434 tRFC = (tRFC_DDR3_table[density] * clk + 999) / 1000; in dramc_set_autorefresh_cycle()
565 u32 density; in dramc_init_helper() local
598 if (para->density == 256) in dramc_init_helper()
599 density = DRAM_DCR_CHIP_DENSITY_256M; in dramc_init_helper()
600 else if (para->density == 512) in dramc_init_helper()
601 density = DRAM_DCR_CHIP_DENSITY_512M; in dramc_init_helper()
602 else if (para->density == 1024) in dramc_init_helper()
603 density = DRAM_DCR_CHIP_DENSITY_1024M; in dramc_init_helper()
604 else if (para->density == 2048) in dramc_init_helper()
[all …]
/openbmc/qemu/hw/i2c/
H A Dsmbus_eeprom.c199 uint16_t density; in spd_data_generate() local
240 density = 1ULL << (sz_log2 - 2); in spd_data_generate()
243 density = (density & 0xe0) | (density >> 8 & 0x1f); in spd_data_generate()
246 density = (density & 0xf8) | (density >> 8 & 0x07); in spd_data_generate()
250 density &= 0xff; in spd_data_generate()
286 spd[31] = density; in spd_data_generate()
/openbmc/u-boot/drivers/mtd/onenand/
H A Donenand_spl.c61 unsigned int dev_id, density, size; in onenand_spl_get_geometry() local
65 density = dev_id >> ONENAND_DEVICE_DENSITY_SHIFT; in onenand_spl_get_geometry()
66 density &= ONENAND_DEVICE_DENSITY_MASK; in onenand_spl_get_geometry()
68 if (density < ONENAND_DEVICE_DENSITY_4Gb) in onenand_spl_get_geometry()
73 density_mask = 1 << (18 + density - ffs(size)); in onenand_spl_get_geometry()
H A Donenand_base.c311 int density = dev_id >> ONENAND_DEVICE_DENSITY_SHIFT; in onenand_get_density() local
312 return (density & ONENAND_DEVICE_DENSITY_MASK); in onenand_get_density()
2143 unsigned int density, process; in onenand_check_features() local
2146 density = onenand_get_density(this->device_id); in onenand_check_features()
2150 switch (density) { in onenand_check_features()
2206 int vcc, demuxed, ddp, density, flexonenand; in onenand_print_device_info() local
2213 density = onenand_get_density(device); in onenand_print_device_info()
2219 (16 << density), vcc ? "2.65/3.3" : "1.8", device); in onenand_print_device_info()
2313 int die, i, eraseshift, density; in flexonenand_get_size() local
2317 density = onenand_get_density(this->device_id); in flexonenand_get_size()
[all …]
/openbmc/u-boot/arch/x86/cpu/quark/
H A Dmrc.c108 (dram_params[0].density == 4) && in mrc_adjust_params()
120 mrc_params->row_bits[0] = 12 + dram_params[0].density + in mrc_adjust_params()
121 (dram_params[0].density < 4) && in mrc_adjust_params()
140 mrc_params->channel_size[0] = 1 << dram_params[0].density; in mrc_adjust_params()
H A Ddram.c101 mrc_params->params.density = fdtdec_get_int(blob, node, in mrc_configure_params()
116 mrc_params->params.density, mrc_params->params.cl, in mrc_configure_params()
/openbmc/u-boot/board/freescale/mx6memcal/
H A Dspl.c247 .density = 8,
261 .density = 2,
275 .density = 4,
289 .density = 2,
303 .density = 4,
317 .density = 4,
/openbmc/u-boot/arch/arm/mach-omap2/
H A Demif-common.c571 s8 addressing_table_index(u8 type, u8 density, u8 width) in addressing_table_index() argument
574 if ((density > LPDDR2_DENSITY_8Gb) || (width == LPDDR2_IO_WIDTH_8)) in addressing_table_index()
584 if ((type == LPDDR2_TYPE_S2) && (density == LPDDR2_DENSITY_1Gb)) in addressing_table_index()
586 else if ((type == LPDDR2_TYPE_S2) && (density == LPDDR2_DENSITY_2Gb)) in addressing_table_index()
589 index = density; in addressing_table_index()
876 temp = dev_details.cs0_device_details->density; in get_emif_mem_size()
881 temp = dev_details.cs1_device_details->density; in get_emif_mem_size()
952 cs0_dev_details->density, in emif_calculate_regs()
1078 u32 density; in display_sdram_details() local
1090 density = lpddr2_density_2_size_in_mbytes[device->density]; in display_sdram_details()
[all …]
/openbmc/u-boot/board/synopsys/iot_devkit/
H A Dconfig.mk1 PLATFORM_CPPFLAGS += -mlittle-endian -mcode-density -mdiv-rem -mswap -mnorm -mmpy-option=6 -mbarrel…
/openbmc/u-boot/board/sunxi/
H A Ddram_sun4i_auto.c8 .density = 0,
H A Ddram_sun5i_auto.c11 .density = 0,
/openbmc/qemu/hw/mips/
H A Dmalta.c214 uint16_t density = 0; in generate_eeprom_spd() local
223 density |= 1 << (sz_log2 - 2); in generate_eeprom_spd()
228 if ((nbanks == 1) && (density > 1)) { in generate_eeprom_spd()
230 density >>= 1; in generate_eeprom_spd()
233 if (density & 0xff00) { in generate_eeprom_spd()
234 density = (density & 0xe0) | ((density >> 8) & 0x1f); in generate_eeprom_spd()
236 } else if (!(density & 0x1f)) { in generate_eeprom_spd()
250 spd[31] = density; in generate_eeprom_spd()
/openbmc/u-boot/board/gateworks/gw_ventana/
H A Dgw_ventana_spl.c151 .density = 1,
165 .density = 2,
179 .density = 4,
193 .density = 8,
/openbmc/u-boot/arch/arm/mach-imx/mx6/
H A Dopos6ul.c199 .density = 2,
244 mem_ddr.density = 4; in spl_dram_init()
/openbmc/u-boot/board/liebherr/mccmon6/
H A Dspl.c133 .density = 4,
147 .density = 2,
/openbmc/u-boot/arch/arm/mach-omap2/omap4/
H A Dsdram_elpida.c151 .density = LPDDR2_DENSITY_2Gb,
158 .density = LPDDR2_DENSITY_4Gb,
/openbmc/u-boot/board/compulab/cm_fx6/
H A Dspl.c111 .density = 4,
180 .density = 4,
/openbmc/u-boot/include/linux/mtd/
H A Dst_smi.h89 u32 density; member
/openbmc/u-boot/board/bachmann/ot1200/
H A Dot1200_spl.c92 .density = 2,
/openbmc/u-boot/board/ccv/xpress/
H A Dspl.c68 .density = 4,
/openbmc/u-boot/board/barco/platinum/
H A Dspl_picon.c87 .density = 4, /* 4Gbit */
H A Dspl_titanium.c87 .density = 2,
/openbmc/u-boot/arch/x86/include/asm/arch-quark/
H A Dmrc.h61 uint8_t density; member
/openbmc/u-boot/board/phytec/pcl063/
H A Dspl.c73 .density = 4,
/openbmc/u-boot/arch/x86/dts/
H A Dchromebook_samus.dts291 * columns 10, density 4096 mb, x32
365 * columns 11, density 4096 mb, x16
404 * columns 11, density 8192 mb, x16
443 * columns 11, density 8192 mb, x16

123