| /openbmc/u-boot/arch/arm/mach-sunxi/ |
| H A D | dram_sun4i.c | 429 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 D | smbus_eeprom.c | 199 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 D | onenand_spl.c | 61 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 D | onenand_base.c | 311 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 D | mrc.c | 108 (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 D | dram.c | 101 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 D | spl.c | 247 .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 D | emif-common.c | 571 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 D | config.mk | 1 PLATFORM_CPPFLAGS += -mlittle-endian -mcode-density -mdiv-rem -mswap -mnorm -mmpy-option=6 -mbarrel…
|
| /openbmc/u-boot/board/sunxi/ |
| H A D | dram_sun4i_auto.c | 8 .density = 0,
|
| H A D | dram_sun5i_auto.c | 11 .density = 0,
|
| /openbmc/qemu/hw/mips/ |
| H A D | malta.c | 214 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 D | gw_ventana_spl.c | 151 .density = 1, 165 .density = 2, 179 .density = 4, 193 .density = 8,
|
| /openbmc/u-boot/arch/arm/mach-imx/mx6/ |
| H A D | opos6ul.c | 199 .density = 2, 244 mem_ddr.density = 4; in spl_dram_init()
|
| /openbmc/u-boot/board/liebherr/mccmon6/ |
| H A D | spl.c | 133 .density = 4, 147 .density = 2,
|
| /openbmc/u-boot/arch/arm/mach-omap2/omap4/ |
| H A D | sdram_elpida.c | 151 .density = LPDDR2_DENSITY_2Gb, 158 .density = LPDDR2_DENSITY_4Gb,
|
| /openbmc/u-boot/board/compulab/cm_fx6/ |
| H A D | spl.c | 111 .density = 4, 180 .density = 4,
|
| /openbmc/u-boot/include/linux/mtd/ |
| H A D | st_smi.h | 89 u32 density; member
|
| /openbmc/u-boot/board/bachmann/ot1200/ |
| H A D | ot1200_spl.c | 92 .density = 2,
|
| /openbmc/u-boot/board/ccv/xpress/ |
| H A D | spl.c | 68 .density = 4,
|
| /openbmc/u-boot/board/barco/platinum/ |
| H A D | spl_picon.c | 87 .density = 4, /* 4Gbit */
|
| H A D | spl_titanium.c | 87 .density = 2,
|
| /openbmc/u-boot/arch/x86/include/asm/arch-quark/ |
| H A D | mrc.h | 61 uint8_t density; member
|
| /openbmc/u-boot/board/phytec/pcl063/ |
| H A D | spl.c | 73 .density = 4,
|
| /openbmc/u-boot/arch/x86/dts/ |
| H A D | chromebook_samus.dts | 291 * 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
|