Searched refs:TI_WINLEN (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/dev/ti/ |
H A D | if_ti.c | 430 if (cnt < TI_WINLEN) in ti_mem_read() 433 segsize = TI_WINLEN - (segptr % TI_WINLEN); in ti_mem_read() 434 CSR_WRITE_4(sc, TI_WINBASE, rounddown2(segptr, TI_WINLEN)); in ti_mem_read() 436 TI_WINDOW + (segptr & (TI_WINLEN - 1)), (uint32_t *)ptr, in ti_mem_read() 459 if (cnt < TI_WINLEN) in ti_mem_write() 462 segsize = TI_WINLEN - (segptr % TI_WINLEN); in ti_mem_write() 463 CSR_WRITE_4(sc, TI_WINBASE, rounddown2(segptr, TI_WINLEN)); in ti_mem_write() 465 TI_WINDOW + (segptr & (TI_WINLEN - 1)), (uint32_t *)ptr, in ti_mem_write() 486 if (cnt < TI_WINLEN) in ti_mem_zero() 489 segsize = TI_WINLEN - (segptr % TI_WINLEN); in ti_mem_zero() [all …]
|
H A D | if_tireg.h | 331 #define TI_WINLEN 0x800 macro
|