Lines Matching refs:col
55 printdec(cap_info->col); in sdram_print_ddr_info()
153 cap[0] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
157 cap[1] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap()
192 *p_os_reg2 |= SYS_REG_ENC_COL(cap_info->col, channel); in sdram_org_config()
201 *p_os_reg3 |= SYS_REG_ENC_CS1_COL(cap_info->col, channel); in sdram_org_config()
219 u32 col; in sdram_detect_col() local
222 for (col = coltmp; col >= 9; col -= 1) { in sdram_detect_col()
225 (1ul << (col + bw - 1ul))); in sdram_detect_col()
231 if (col == 8) { in sdram_detect_col()
236 cap_info->col = col; in sdram_detect_col()
289 u32 row, col, bk, bw, cs_cap, cs; in sdram_detect_dbw() local
296 col = cap_info->col; in sdram_detect_dbw()
300 cs_cap = (1 << (row + col + bk + bw - 20)); in sdram_detect_dbw()
303 die_bw_0 = (col < 9) ? 2 : 1; in sdram_detect_dbw()
305 die_bw_0 = (col < 10) ? 2 : 1; in sdram_detect_dbw()
307 die_bw_0 = (col < 11) ? 2 : 1; in sdram_detect_dbw()
309 die_bw_0 = (col < 12) ? 2 : 1; in sdram_detect_dbw()
312 cs_cap = (1 << (row + col + bk + bw - 20)); in sdram_detect_dbw()
314 die_bw_0 = (col < 9) ? 2 : 1; in sdram_detect_dbw()
316 die_bw_0 = (col < 10) ? 2 : 1; in sdram_detect_dbw()
318 die_bw_0 = (col < 11) ? 2 : 1; in sdram_detect_dbw()
320 die_bw_0 = (col < 12) ? 2 : 1; in sdram_detect_dbw()
409 coltmp = cap_info->col; in sdram_detect_cs1_row()