Lines Matching refs:uint
77 uint vcons_in;
78 uint vcons_out;
94 uint cbuf_idx;
320 static uint prio2prec(u32 prio) in prio2prec()
329 uint count; /* Poll interval msec counter */
330 uint log_addr; /* Log struct address (fixed) */
332 uint bufsize; /* Size of log buffer */
334 uint last; /* Last buffer read index */
401 uint intrcount; /* Count of device interrupt callbacks */
402 uint lastintrs; /* Count as of last watchdog timer */
403 uint pollcnt; /* Count of active polls */
404 uint regfails; /* Count of R_REG failures */
405 uint tx_sderrs; /* Count of tx attempts with sd errors */
406 uint fcqueued; /* Tx packets that got queued */
407 uint rxrtx; /* Count of rtx requests (NAK to dongle) */
408 uint rx_toolong; /* Receive frames too long to receive */
409 uint rxc_errors; /* SDIO errors when reading control frames */
410 uint rx_hdrfail; /* SDIO errors on header reads */
411 uint rx_badhdr; /* Bad received headers (roosync?) */
412 uint rx_badseq; /* Mismatched rx sequence number */
413 uint fc_rcvd; /* Number of flow-control events received */
414 uint fc_xoff; /* Number which turned on flow-control */
415 uint fc_xon; /* Number which turned off flow-control */
416 uint rxglomfail; /* Failed deglom attempts */
417 uint rxglomframes; /* Number of glom frames (superframes) */
418 uint rxglompkts; /* Number of packets from glom frames */
419 uint f2rxhdrs; /* Number of header reads */
420 uint f2rxdata; /* Number of frame data reads */
421 uint f2txdata; /* Number of f2 frame writes */
422 uint f1regdata; /* Number of f1 register accesses */
423 uint tickcnt; /* Number of watchdog been schedule */
441 uint blocksize; /* Block size of SDIO transfers */
442 uint roundup; /* Max roundup limit */
457 uint rxbound; /* Rx frames to read before resched */
458 uint txbound; /* Tx frames to send before resched */
459 uint txminmax;
463 uint glomerr; /* Glom packet read errors */
466 uint rxblen; /* Allocated length of rxbuf */
469 uint rxlen; /* Length of valid data in buffer */
477 uint spurious; /* Count of spurious interrupts */
478 uint pollrate; /* Ticks between device polls */
479 uint polltick; /* Tick counter */
482 uint console_interval;
484 uint console_addr; /* Console address from shared struct */
487 uint clkstate; /* State of sd and backplane clock(s) */
508 uint save_ms;
541 static const uint retry_limit = 2;
544 static const uint max_roundup = 512;
732 uint datalign; in pkt_align()
968 static int brcmf_sdio_clkctl(struct brcmf_sdio *bus, uint target, bool pendok) in brcmf_sdio_clkctl()
971 uint oldstate = bus->clkstate; in brcmf_sdio_clkctl()
1243 uint retries = 0; in brcmf_sdio_rxfail()
1319 static uint brcmf_sdio_glom_len(struct brcmf_sdio *bus) in brcmf_sdio_glom_len()
1322 uint total; in brcmf_sdio_glom_len()
1766 static int brcmf_sdio_dcmd_resp_wait(struct brcmf_sdio *bus, uint *condition, in brcmf_sdio_dcmd_resp_wait()
1796 brcmf_sdio_read_control(struct brcmf_sdio *bus, u8 *hdr, uint len, uint doff) in brcmf_sdio_read_control()
1798 uint rdlen, pad; in brcmf_sdio_read_control()
1896 static uint brcmf_sdio_readframes(struct brcmf_sdio *bus, uint maxframes) in brcmf_sdio_readframes()
1900 uint rxleft = 0; /* Remaining number of frames allowed */ in brcmf_sdio_readframes()
1902 uint rxcount = 0; /* Total frames read */ in brcmf_sdio_readframes()
2222 uint chan) in brcmf_sdio_txpkt_prep()
2332 uint chan) in brcmf_sdio_txpkt()
2363 static uint brcmf_sdio_sendfromq(struct brcmf_sdio *bus, uint maxframes) in brcmf_sdio_sendfromq()
2369 uint cnt = 0; in brcmf_sdio_sendfromq()
2431 uint retries = 0; in brcmf_sdio_tx_ctrlframe()
2601 uint txlimit = bus->txbound; /* Tx frames to send before resched */ in brcmf_sdio_dpc()
2602 uint framecnt; /* Temporary counter of tx/rx frames */ in brcmf_sdio_dpc()
2810 uint prec; in brcmf_sdio_bus_txdata()
2938 brcmf_sdio_bus_txctl(struct device *dev, unsigned char *msg, uint msglen) in brcmf_sdio_bus_txctl()
3229 brcmf_sdio_bus_rxctl(struct device *dev, unsigned char *msg, uint msglen) in brcmf_sdio_bus_rxctl()
3232 uint rxlen = 0; in brcmf_sdio_bus_rxctl()
3281 u8 *ram_data, uint ram_sz) in brcmf_sdio_verifymemory()
3326 u8 *ram_data, uint ram_sz) in brcmf_sdio_verifymemory()
3494 uint pad_size; in brcmf_sdio_bus_preinit()
4328 void brcmf_sdio_wd_timer(struct brcmf_sdio *bus, uint wdtick) in brcmf_sdio_wd_timer()