Lines Matching refs:window
100 void __iomem *window; member
185 void __iomem *window = priv->window; in i3200_get_and_clear_error_info() local
198 info->eccerrlog[0] = readq(window + I3200_C0ECCERRLOG); in i3200_get_and_clear_error_info()
200 info->eccerrlog[1] = readq(window + I3200_C1ECCERRLOG); in i3200_get_and_clear_error_info()
211 info->eccerrlog[0] = readq(window + I3200_C0ECCERRLOG); in i3200_get_and_clear_error_info()
213 info->eccerrlog[1] = readq(window + I3200_C1ECCERRLOG); in i3200_get_and_clear_error_info()
269 void __iomem *window; in i3200_map_mchbar() local
282 window = ioremap(u.mchbar, I3200_MMR_WINDOW_SIZE); in i3200_map_mchbar()
283 if (!window) in i3200_map_mchbar()
287 return window; in i3200_map_mchbar()
291 static void i3200_get_drbs(void __iomem *window, in i3200_get_drbs() argument
297 drbs[0][i] = readw(window + I3200_C0DRB + 2*i) & I3200_DRB_MASK; in i3200_get_drbs()
298 drbs[1][i] = readw(window + I3200_C1DRB + 2*i) & I3200_DRB_MASK; in i3200_get_drbs()
343 void __iomem *window; in i3200_probe1() local
348 window = i3200_map_mchbar(pdev); in i3200_probe1()
349 if (!window) in i3200_probe1()
352 i3200_get_drbs(window, drbs); in i3200_probe1()
380 priv->window = window; in i3200_probe1()
424 iounmap(window); in i3200_probe1()
459 iounmap(priv->window); in i3200_remove_one()