Lines Matching refs:arml2cc_softc
52 struct arml2cc_softc { struct
64 __CTASSERT(offsetof(struct arml2cc_softc, sc_ev_inv.ev_count) % 8 == 0); argument
65 __CTASSERT(offsetof(struct arml2cc_softc, sc_ev_wb.ev_count) % 8 == 0);
66 __CTASSERT(offsetof(struct arml2cc_softc, sc_ev_wbinv.ev_count) % 8 == 0);
68 CFATTACH_DECL_NEW(arml2cc, sizeof(struct arml2cc_softc),
71 static inline void arml2cc_disable(struct arml2cc_softc *);
72 static inline void arml2cc_enable(struct arml2cc_softc *);
77 static struct arml2cc_softc *arml2cc_sc;
80 arml2cc_read_4(struct arml2cc_softc *sc, bus_size_t o) in arml2cc_read_4()
86 arml2cc_write_4(struct arml2cc_softc *sc, bus_size_t o, uint32_t v) in arml2cc_write_4()
135 struct arml2cc_softc * const sc = device_private(self); in arml2cc_attach()
209 arml2cc_cache_op(struct arml2cc_softc *sc, bus_size_t off, uint32_t val, in arml2cc_cache_op()
221 arml2cc_cache_way_op(struct arml2cc_softc *sc, bus_size_t off, uint32_t way_mask) in arml2cc_cache_way_op()
230 arml2cc_cache_sync(struct arml2cc_softc *sc) in arml2cc_cache_sync()
236 arml2cc_disable(struct arml2cc_softc *sc) in arml2cc_disable()
248 arml2cc_enable(struct arml2cc_softc *sc) in arml2cc_enable()
294 struct arml2cc_softc * const sc = arml2cc_sc; in arml2cc_cache_range_op()