MCPcopy Create free account
hub / github.com/F-Stack/f-stack / pl310_read4

Function pl310_read4

freebsd/arm/include/pl310.h:168–173  ·  view source on GitHub ↗

* pl310_read4 - read a 32-bit value from the PL310 registers * pl310_write4 - write a 32-bit value from the PL310 registers * @off: byte offset within the register set to read from * @val: the value to write into the register * * * LOCKING: * None * * RETURNS: * nothing in case of write function, if read function returns the value read. */

Source from the content-addressed store, hash-verified

166 * nothing in case of write function, if read function returns the value read.
167 */
168static __inline uint32_t
169pl310_read4(struct pl310_softc *sc, bus_size_t off)
170{
171
172 return bus_read_4(sc->sc_mem_res, off);
173}
174
175static __inline void
176pl310_write4(struct pl310_softc *sc, bus_size_t off, uint32_t val)

Callers 9

omap4_pl310_initFunction · 0.85
pl310_print_configFunction · 0.85
pl310_set_ram_latencyFunction · 0.85
pl310_filterFunction · 0.85
pl310_wait_background_opFunction · 0.85
pl310_set_way_sizesFunction · 0.85
pl310_attachFunction · 0.85
imx6_pl310_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected