Lines Matching +full:func +full:- +full:uart +full:- +full:b

119 #define	MRSAS_VERSION					"07.709.04.00-fbsd"
133 #define STREAM_MASK ((1 << BITS_PER_INDEX_STREAM) - 1)
156 if (sc->mrsas_debug & level) \
157 device_printf(sc->mrsas_dev, msg, ##args); \
706 #define mrsas_atomic_read(v) atomic_load_acq_int(&(v)->val)
707 #define mrsas_atomic_set(v,i) atomic_store_rel_int(&(v)->val, i)
708 #define mrsas_atomic_dec(v) atomic_subtract_int(&(v)->val, 1)
709 #define mrsas_atomic_inc(v) atomic_add_int(&(v)->val, 1)
714 return 1 + atomic_fetchadd_int(&(v)->val, 1); in mrsas_atomic_inc_return()
783 #define MRSAS_DEFAULT_INIT_ID -1
921 u_int8_t reserved3[0x80 - 0x38];
1029 * created to sync with old raid. And it is mainly for code re-use purpose.
1035 MR_LD_SPAN_MAP ldSpanMap[MAX_LOGICAL_DRIVES_DYN - 1];
1070 MR_LD_SPAN_MAP ldSpanMap[MAX_LOGICAL_DRIVES - 1];
1356 * posted in 64-bit mode (??) CLR_HANDSHAKE: FW is waiting for HANDSHAKE from
1526 MR_EVT_CLASS_DEBUG = -2,
1527 MR_EVT_CLASS_PROGRESS = -1,
1669 * SCSI-CAM Related Defines
2086 u_int32_t uart:1; member
2198 * Define ECC single-bit-error bucket information
2439 u_int8_t pad[0x800 - 0x7FE]; /* 0x7FE */
2443 * When SCSI mid-layer calls driver's reset routine, driver waits for
2457 * MSI-x regsiters offset defines
2684 u_int8_t b[12]; member
2950 u_int8_t b[96]; member
3072 } range [PCI_TYPE2_ADDRESSES - 1];
3416 u_int8_t reserved1[512-428];
3431 * per-instance data
3621 /* Non dma-able memory. Driver local copy. */
3627 #define mrsas_kproc_create(func, farg, proc_ptr, flags, stackpgs, fmtstr, arg) \ argument
3628 kproc_create(func, farg, proc_ptr, flags, stackpgs, fmtstr, arg)
3632 mrsas_clear_bit(int b, volatile void *p) in mrsas_clear_bit() argument
3634 atomic_clear_int(((volatile int *)p) + (b >> 5), 1 << (b & 0x1f)); in mrsas_clear_bit()
3638 mrsas_set_bit(int b, volatile void *p) in mrsas_set_bit() argument
3640 atomic_set_int(((volatile int *)p) + (b >> 5), 1 << (b & 0x1f)); in mrsas_set_bit()
3644 mrsas_test_bit(int b, volatile void *p) in mrsas_test_bit() argument
3646 return ((volatile int *)p)[b >> 5] & (1 << (b & 0x1f)); in mrsas_test_bit()