Lines Matching full:sei

639 		CIO_CRW_EVENT(2, "chsc: sei nt2 unhandled cc=%d\n",  in chsc_process_sei_nt2()
674 CIO_CRW_EVENT(2, "chsc: sei nt0 unhandled cc=%d\n", in chsc_process_sei_nt0()
686 static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm) in chsc_process_event_information() argument
691 memset(sei, 0, sizeof(*sei)); in chsc_process_event_information()
692 sei->request.length = 0x0010; in chsc_process_event_information()
693 sei->request.code = 0x000e; in chsc_process_event_information()
695 sei->ntsm = ntsm; in chsc_process_event_information()
697 if (chsc(sei)) in chsc_process_event_information()
700 if (sei->response.code != 0x0001) { in chsc_process_event_information()
701 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x, ntsm=%llx)\n", in chsc_process_event_information()
702 sei->response.code, sei->ntsm); in chsc_process_event_information()
704 if (sei->response.code == 3 && sei->ntsm) { in chsc_process_event_information()
712 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt); in chsc_process_event_information()
713 switch (sei->nt) { in chsc_process_event_information()
715 chsc_process_sei_nt0(&sei->u.nt0_area); in chsc_process_event_information()
718 chsc_process_sei_nt2(&sei->u.nt2_area); in chsc_process_event_information()
721 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt); in chsc_process_event_information()
725 if (!(sei->u.nt0_area.flags & 0x80)) in chsc_process_event_information()
739 struct chsc_sei *sei = sei_page; in chsc_process_crw() local
751 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2); in chsc_process_crw()