Lines Matching refs:sei
671 static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm) in chsc_process_event_information() argument
676 memset(sei, 0, sizeof(*sei)); in chsc_process_event_information()
677 sei->request.length = 0x0010; in chsc_process_event_information()
678 sei->request.code = 0x000e; in chsc_process_event_information()
680 sei->ntsm = ntsm; in chsc_process_event_information()
682 if (chsc(sei)) in chsc_process_event_information()
685 if (sei->response.code != 0x0001) { in chsc_process_event_information()
687 sei->response.code, sei->ntsm); in chsc_process_event_information()
689 if (sei->response.code == 3 && sei->ntsm) { in chsc_process_event_information()
697 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt); in chsc_process_event_information()
698 switch (sei->nt) { in chsc_process_event_information()
700 chsc_process_sei_nt0(&sei->u.nt0_area); in chsc_process_event_information()
703 chsc_process_sei_nt2(&sei->u.nt2_area); in chsc_process_event_information()
706 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt); in chsc_process_event_information()
710 if (!(sei->u.nt0_area.flags & 0x80)) in chsc_process_event_information()
724 struct chsc_sei *sei = sei_page; in chsc_process_crw() local
736 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2); in chsc_process_crw()