Lines Matching refs:_bte
100 #define BTE_LNSTAT_LOAD(_bte) \ argument
101 HUB_L(_bte->bte_base_addr)
102 #define BTE_LNSTAT_STORE(_bte, _x) \ argument
103 HUB_S(_bte->bte_base_addr, (_x))
104 #define BTE_SRC_STORE(_bte, _x) \ argument
109 HUB_S(_bte->bte_source_addr, __addr); \
111 #define BTE_DEST_STORE(_bte, _x) \ argument
116 HUB_S(_bte->bte_destination_addr, __addr); \
118 #define BTE_CTRL_STORE(_bte, _x) \ argument
119 HUB_S(_bte->bte_control_addr, (_x))
120 #define BTE_NOTIF_STORE(_bte, _x) \ argument
125 HUB_S(_bte->bte_notify_addr, __addr); \
128 #define BTE_START_TRANSFER(_bte, _len, _mode) \ argument
129 is_shub2() ? BTE_CTRL_STORE(_bte, IBLS_BUSY | (_mode << 24) | _len) \
130 : BTE_LNSTAT_STORE(_bte, _len); \
131 BTE_CTRL_STORE(_bte, _mode)