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

Function idma_bare_write

freebsd/arm/mv/mv_common.c:1840–1849  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1838}
1839
1840static void
1841idma_bare_write(u_long base, int i, int val)
1842{
1843 uint32_t v;
1844
1845 v = win_idma_bare_read(base);
1846 v &= ~(1 << i);
1847 v |= (val << i);
1848 win_idma_bare_write(base, v);
1849}
1850
1851/*
1852 * Sets channel protection 'val' for window 'w' on channel 'c'

Callers 1

decode_win_idma_setupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected