Lines Matching refs:sei
640 static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm) in chsc_process_event_information() argument
645 memset(sei, 0, sizeof(*sei)); in chsc_process_event_information()
646 sei->request.length = 0x0010; in chsc_process_event_information()
647 sei->request.code = 0x000e; in chsc_process_event_information()
649 sei->ntsm = ntsm; in chsc_process_event_information()
651 if (chsc(sei)) in chsc_process_event_information()
654 if (sei->response.code != 0x0001) { in chsc_process_event_information()
656 sei->response.code, sei->ntsm); in chsc_process_event_information()
658 if (sei->response.code == 3 && sei->ntsm) { in chsc_process_event_information()
666 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt); in chsc_process_event_information()
667 switch (sei->nt) { in chsc_process_event_information()
669 chsc_process_sei_nt0(&sei->u.nt0_area); in chsc_process_event_information()
672 chsc_process_sei_nt2(&sei->u.nt2_area); in chsc_process_event_information()
675 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt); in chsc_process_event_information()
679 if (!(sei->u.nt0_area.flags & 0x80)) in chsc_process_event_information()
693 struct chsc_sei *sei = sei_page; in chsc_process_crw() local
705 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2); in chsc_process_crw()