Lines Matching refs:col

70 	printdec(cap_info->col);  in sdram_print_ddr_info()
143 cap[0] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
147 cap[1] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
153 cap[2] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
155 cap[3] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
191 *p_os_reg2 |= SYS_REG_ENC_COL(cap_info->col, channel); in sdram_org_config()
200 *p_os_reg3 |= SYS_REG_ENC_CS1_COL(cap_info->col, channel); in sdram_org_config()
221 *p_os_reg2 |= SYS_REG_ENC_COL_V3(cap_info->col, channel); in sdram_org_config_v3()
242 *p_os_reg3 |= SYS_REG_ENC_CS1_COL_V3(cap_info->col, channel); in sdram_org_config_v3()
260 u32 col; in sdram_detect_col() local
263 for (col = coltmp; col >= 9; col -= 1) { in sdram_detect_col()
266 (1ul << (col + bw - 1ul))); in sdram_detect_col()
272 if (col == 8) { in sdram_detect_col()
277 cap_info->col = col; in sdram_detect_col()
347 u32 row, col, bk, bw, cs_cap, cs; in sdram_detect_dbw() local
359 col = cap_info->col; in sdram_detect_dbw()
363 cs_cap = (1 << (row + col + bk + bw - 20)); in sdram_detect_dbw()
366 die_bw_0 = (col < 9) ? 2 : 1; in sdram_detect_dbw()
368 die_bw_0 = (col < 10) ? 2 : 1; in sdram_detect_dbw()
370 die_bw_0 = (col < 11) ? 2 : 1; in sdram_detect_dbw()
372 die_bw_0 = (col < 12) ? 2 : 1; in sdram_detect_dbw()
375 cs_cap = (1 << (row + col + bk + bw - 20)); in sdram_detect_dbw()
377 die_bw_0 = (col < 9) ? 2 : 1; in sdram_detect_dbw()
379 die_bw_0 = (col < 10) ? 2 : 1; in sdram_detect_dbw()
381 die_bw_0 = (col < 11) ? 2 : 1; in sdram_detect_dbw()
383 die_bw_0 = (col < 12) ? 2 : 1; in sdram_detect_dbw()
547 coltmp = cap_info->col; in sdram_detect_cs1_row()