Lines Matching refs:_bte
98 #define BTE_LNSTAT_LOAD(_bte) \ argument
99 HUB_L(_bte->bte_base_addr)
100 #define BTE_LNSTAT_STORE(_bte, _x) \ argument
101 HUB_S(_bte->bte_base_addr, (_x))
102 #define BTE_SRC_STORE(_bte, _x) \ argument
107 HUB_S(_bte->bte_source_addr, __addr); \
109 #define BTE_DEST_STORE(_bte, _x) \ argument
114 HUB_S(_bte->bte_destination_addr, __addr); \
116 #define BTE_CTRL_STORE(_bte, _x) \ argument
117 HUB_S(_bte->bte_control_addr, (_x))
118 #define BTE_NOTIF_STORE(_bte, _x) \ argument
123 HUB_S(_bte->bte_notify_addr, __addr); \
126 #define BTE_START_TRANSFER(_bte, _len, _mode) \ argument
127 is_shub2() ? BTE_CTRL_STORE(_bte, IBLS_BUSY | (_mode << 24) | _len) \
128 : BTE_LNSTAT_STORE(_bte, _len); \
129 BTE_CTRL_STORE(_bte, _mode)