Home | History | Annotate | Download | only in common

Lines Matching refs:Control

125         { "Control",
240 SysacePrintRegister(&Control_Names, Interface->Control);
263 uint32_t BusMode, Control;
266 Interface->Control = SAC_RST;
274 Control = Interface->Control;
280 Interface->Control = Control | SAC_BUS16;
281 Interface->Control = Interface->Control & ~SAC_BUS8;
285 Interface->Control = Control | SAC_BUS8;
286 Interface->Control = Interface->Control & ~SAC_BUS16;
291 Control = Interface->Control;
293 if (((BusMode & SAC_MODE16) == 0) && ((Control & SAC_BUS8) == 0)) return E_DISK_RESET_FAILED;
294 if (((BusMode & SAC_MODE16) > 0) && ((Control & SAC_BUS16) == 0)) return E_DISK_RESET_FAILED;
297 Interface->Control &= ~SAC_INTMASK;
299 Control = Interface->CONTROLREG;
300 Control = (Control & ~SAC_INTERRUPTS) | SAC_RESETIRQ | SAC_FORCECFGMODE;
301 Interface->CONTROLREG = Control;
302 Interface->CONTROLREG = Control & ~SAC_RESETIRQ;
310 /* Take control of the ACE datapath
344 /* Release control of the ACE datapath
394 (_i_)->Control |= SAC_INTMASK; \
401 (_i_)->Control &= ~SAC_INTMASK; \
455 uint32_t Control;
461 Control = Interface->CONTROLREG & (~(SAC_RESETIRQ|SAC_INTERRUPTS));
462 Interface->CONTROLREG = Control | SAC_RESETIRQ;
463 Interface->CONTROLREG = Control;