HomeSort by: relevance | last modified time | path
    Searched defs:cca (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/arch/sh3/sh3/
cache_sh3.c 144 vaddr_t cca; local in function:cache_sh3_op_line_16_nway
152 cca = (SH3_CCA | way << sh_cache_way_shift | va);
153 _reg_bclr_4(cca, bits);
166 volatile uint32_t *cca; local in function:cache_sh3_op_8lines_16_nway
174 cca = (volatile uint32_t *)
176 cca[ 0] &= ~bits;
177 cca[ 4] &= ~bits;
178 cca[ 8] &= ~bits;
179 cca[12] &= ~bits;
180 cca[16] &= ~bits
218 vaddr_t cca; local in function:sh3_cache_wbinv_range
    [all...]
cache_sh4.c 206 vaddr_t cca; local in function:cache_sh4_op_line_32
208 cca = base | (va & mask);
209 _reg_bclr_4(cca, bits);
220 volatile uint32_t *cca = (volatile uint32_t *) local in function:cache_sh4_op_8lines_32
223 cca[ 0] &= ~bits;
224 cca[ 8] &= ~bits;
225 cca[16] &= ~bits;
226 cca[24] &= ~bits;
227 cca[32] &= ~bits;
228 cca[40] &= ~bits
380 vaddr_t cca; local in function:cache_sh4_emode_op_line_32
402 volatile uint32_t *cca; local in function:cache_sh4_emode_op_8lines_32
    [all...]
db_interface.c 495 vaddr_t va, va_end, cca; local in function:__db_cachedump_sh3
516 cca = SH3_CCA | entry;
519 r = _reg_read_4(cca | (way << sh_cache_way_shift));
  /src/sys/arch/vax/include/
cca.h 1 /* $NetBSD: cca.h,v 1.3 2017/05/22 17:12:11 ragge Exp $ */
28 * Console Communication Area (CCA) layout description.
33 struct cca { struct
34 struct cca *cca_base; /* Physical base address of block */
74 extern struct cca *cca;
  /src/sys/arch/mips/include/
pte.h 434 u_int cca = PMAP_CCA_FOR_PA(pa); local in function:pte_make_enter
437 cca = mips_options.mips3_cca_devmem;
439 pte = MIPS3_PG_IOPAGE(cca) & ~MIPS3_PG_G;
  /src/sys/arch/vax/vax/
ka6400.c 54 #include <machine/cca.h>
64 struct cca *cca; variable in typeref:struct:cca *
131 vp = (cca->cca_vecenab & (1 << xa->xa_nodenr));
162 mapaddr = (cca ? (int)cca : rpb.cca_addr);
163 cca = (void *)vax_map_physmem(mapaddr, vax_btoc(sizeof(struct cca)));
305 if (cca == 0)
306 cca = (void *)rpb.cca_addr
    [all...]
  /src/sys/arch/arm/acpi/
acpi_machdep.c 591 ACPI_INTEGER cca = 1; /* default cache coherent */ local in function:arm_acpi_dma_flags
598 rv = acpi_eval_integer(ad->ad_handle, "_CCA", &cca);
603 return cca ? _BUS_DMAMAP_COHERENT : 0;
  /src/sys/dev/ic/
rt2661.c 2820 * false CCA count. This function is called periodically (every seconds) when
2827 uint16_t cca; local in function:rt2661_rx_tune
2843 /* retrieve false CCA count since last call (clear on read) */
2844 cca = RAL_READ(sc, RT2661_STA_CSR1) & 0xffff;
2846 DPRINTFN(2, ("RSSI=%ddBm false CCA=%d\n", dbm, cca));
2849 /* very bad RSSI, tune using false CCA count */
2858 else if (cca > 512)
2860 else if (cca < 100)
  /src/sys/arch/mips/mips/
mips_machdep.c 539 /* The SB-1 CPU uses a CCA of 5 - "Cacheable Coherent Shareable" */
1286 uint32_t cca; local in function:mips_vector_init
1288 cca = (opts->mips_cpu_flags & CPU_MIPS_CACHED_CCA_MASK) >>
1290 opts->mips3_pg_cached = MIPS3_CCA_TO_PG(cca);
1292 opts->mips3_xkphys_cached = MIPS_PHYS_TO_XKPHYS(cca, 0);

Completed in 19 milliseconds