Searched refs:SLOT_POWER (Results 1 – 4 of 4) sorted by relevance
162 SLOT_POWER = offsetof(struct ctrl_reg, slot_power), enumerator637 slot_power = readb(ctrl->hpc_reg + SLOT_POWER); in enable_slot_power()639 writeb(slot_power, ctrl->hpc_reg + SLOT_POWER); in enable_slot_power()646 slot_power = readb(ctrl->hpc_reg + SLOT_POWER); in disable_slot_power()648 writeb(slot_power, ctrl->hpc_reg + SLOT_POWER); in disable_slot_power()
501 debug("SLOT_POWER = %x\n", SLOT_POWER(slot_cur->status)); in init_ops()1019 if ((SLOT_POWER(slot_cur->status)) && in enable_slot()1044 if (SLOT_POWER(slot_cur->status) && !(SLOT_PWRGD(slot_cur->status))) { in enable_slot()1048 if (SLOT_POWER(slot_cur->status) && (SLOT_BUS_SPEED(slot_cur->status))) { in enable_slot()1055 if (!(SLOT_POWER(slot_cur->status))) { in enable_slot()
1120 u8 slot_power = readb(ctrl->hpc_reg + SLOT_POWER); in set_controller_speed()1287 temp_byte = readb(ctrl->hpc_reg + SLOT_POWER); in board_replaced()1288 writeb(0x00, ctrl->hpc_reg + SLOT_POWER); in board_replaced()1289 writeb(temp_byte, ctrl->hpc_reg + SLOT_POWER); in board_replaced()1435 temp_byte = readb(ctrl->hpc_reg + SLOT_POWER); in board_added()1436 writeb(0x00, ctrl->hpc_reg + SLOT_POWER); in board_added()1437 writeb(temp_byte, ctrl->hpc_reg + SLOT_POWER); in board_added()
585 #define SLOT_POWER(s) ((u8) ((s & HPC_SLOT_POWER) \ macro