Lines Matching refs:col

57 	printdec(cap_info->col);  in sdram_print_ddr_info()
130 cap[0] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
134 cap[1] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
140 cap[2] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
142 cap[3] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
178 *p_os_reg2 |= SYS_REG_ENC_COL(cap_info->col, channel); in sdram_org_config()
187 *p_os_reg3 |= SYS_REG_ENC_CS1_COL(cap_info->col, channel); in sdram_org_config()
208 *p_os_reg2 |= SYS_REG_ENC_COL_V3(cap_info->col, channel); in sdram_org_config_v3()
229 *p_os_reg3 |= SYS_REG_ENC_CS1_COL_V3(cap_info->col, channel); in sdram_org_config_v3()
247 u32 col; in sdram_detect_col() local
250 for (col = coltmp; col >= 9; col -= 1) { in sdram_detect_col()
253 (1ul << (col + bw - 1ul))); in sdram_detect_col()
259 if (col == 8) { in sdram_detect_col()
264 cap_info->col = col; in sdram_detect_col()
317 u32 row, col, bk, bw, cs_cap, cs; in sdram_detect_dbw() local
329 col = cap_info->col; in sdram_detect_dbw()
333 cs_cap = (1 << (row + col + bk + bw - 20)); in sdram_detect_dbw()
336 die_bw_0 = (col < 9) ? 2 : 1; in sdram_detect_dbw()
338 die_bw_0 = (col < 10) ? 2 : 1; in sdram_detect_dbw()
340 die_bw_0 = (col < 11) ? 2 : 1; in sdram_detect_dbw()
342 die_bw_0 = (col < 12) ? 2 : 1; in sdram_detect_dbw()
345 cs_cap = (1 << (row + col + bk + bw - 20)); in sdram_detect_dbw()
347 die_bw_0 = (col < 9) ? 2 : 1; in sdram_detect_dbw()
349 die_bw_0 = (col < 10) ? 2 : 1; in sdram_detect_dbw()
351 die_bw_0 = (col < 11) ? 2 : 1; in sdram_detect_dbw()
353 die_bw_0 = (col < 12) ? 2 : 1; in sdram_detect_dbw()
517 coltmp = cap_info->col; in sdram_detect_cs1_row()