Lines Matching refs:moduleid
233 static int bist_rd(adapter_t *adapter, int moduleid, int address) in bist_rd() argument
246 ((moduleid & 0xff) << 0)); in bist_rd()
260 static int bist_wr(adapter_t *adapter, int moduleid, int address, int value) in bist_wr() argument
276 ((moduleid & 0xff) << 0)); in bist_wr()
290 static int run_bist(adapter_t *adapter, int moduleid) in run_bist() argument
293 (void) bist_wr(adapter,moduleid, 0x00, 0x02); in run_bist()
294 (void) bist_wr(adapter,moduleid, 0x01, 0x01); in run_bist()
299 static int check_bist(adapter_t *adapter, int moduleid) in check_bist() argument
304 result = bist_rd(adapter,moduleid, 0x02); in check_bist()
305 column = ((bist_rd(adapter,moduleid, 0x0e)<<8) + in check_bist()
306 (bist_rd(adapter,moduleid, 0x0d))); in check_bist()
309 result, moduleid, column); in check_bist()
313 static int enable_mem(adapter_t *adapter, int moduleid) in enable_mem() argument
316 (void) bist_wr(adapter,moduleid, 0x00, 0x00); in enable_mem()