Lines Matching refs:sei
623 static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm) in chsc_process_event_information() argument
628 memset(sei, 0, sizeof(*sei)); in chsc_process_event_information()
629 sei->request.length = 0x0010; in chsc_process_event_information()
630 sei->request.code = 0x000e; in chsc_process_event_information()
632 sei->ntsm = ntsm; in chsc_process_event_information()
634 if (chsc(sei)) in chsc_process_event_information()
637 if (sei->response.code != 0x0001) { in chsc_process_event_information()
639 sei->response.code, sei->ntsm); in chsc_process_event_information()
641 if (sei->response.code == 3 && sei->ntsm) { in chsc_process_event_information()
649 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt); in chsc_process_event_information()
650 switch (sei->nt) { in chsc_process_event_information()
652 chsc_process_sei_nt0(&sei->u.nt0_area); in chsc_process_event_information()
655 chsc_process_sei_nt2(&sei->u.nt2_area); in chsc_process_event_information()
658 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt); in chsc_process_event_information()
662 if (!(sei->u.nt0_area.flags & 0x80)) in chsc_process_event_information()
676 struct chsc_sei *sei = sei_page; in chsc_process_crw() local
688 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2); in chsc_process_crw()