Home | History | Annotate | Download | only in ic

Lines Matching refs:mlx

312 mlx_inb(struct mlx_softc *mlx, int off)
315 bus_space_barrier(mlx->mlx_iot, mlx->mlx_ioh, off, 1,
317 return (bus_space_read_1(mlx->mlx_iot, mlx->mlx_ioh, off));
321 mlx_inw(struct mlx_softc *mlx, int off)
324 bus_space_barrier(mlx->mlx_iot, mlx->mlx_ioh, off, 2,
326 return (bus_space_read_2(mlx->mlx_iot, mlx->mlx_ioh, off));
330 mlx_inl(struct mlx_softc *mlx, int off)
333 bus_space_barrier(mlx->mlx_iot, mlx->mlx_ioh, off, 4,
335 return (bus_space_read_4(mlx->mlx_iot, mlx->mlx_ioh, off));
339 mlx_outb(struct mlx_softc *mlx, int off, u_int8_t val)
342 bus_space_write_1(mlx->mlx_iot, mlx->mlx_ioh, off, val);
343 bus_space_barrier(mlx->mlx_iot, mlx->mlx_ioh, off, 1,
348 mlx_outw(struct mlx_softc *mlx, int off, u_int16_t val)
351 bus_space_write_2(mlx->mlx_iot, mlx->mlx_ioh, off, val);
352 bus_space_barrier(mlx->mlx_iot, mlx->mlx_ioh, off, 2,
357 mlx_outl(struct mlx_softc *mlx, int off, u_int32_t val)
360 bus_space_write_4(mlx->mlx_iot, mlx->mlx_ioh, off, val);
361 bus_space_barrier(mlx->mlx_iot, mlx->mlx_ioh, off, 4,