Lines Matching refs:sei
685 static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm) in chsc_process_event_information() argument
690 memset(sei, 0, sizeof(*sei)); in chsc_process_event_information()
691 sei->request.length = 0x0010; in chsc_process_event_information()
692 sei->request.code = 0x000e; in chsc_process_event_information()
694 sei->ntsm = ntsm; in chsc_process_event_information()
696 if (chsc(sei)) in chsc_process_event_information()
699 if (sei->response.code != 0x0001) { in chsc_process_event_information()
701 sei->response.code, sei->ntsm); in chsc_process_event_information()
703 if (sei->response.code == 3 && sei->ntsm) { in chsc_process_event_information()
711 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt); in chsc_process_event_information()
712 switch (sei->nt) { in chsc_process_event_information()
714 chsc_process_sei_nt0(&sei->u.nt0_area); in chsc_process_event_information()
717 chsc_process_sei_nt2(&sei->u.nt2_area); in chsc_process_event_information()
720 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt); in chsc_process_event_information()
724 if (!(sei->u.nt0_area.flags & 0x80)) in chsc_process_event_information()
738 struct chsc_sei *sei = sei_page; in chsc_process_crw() local
750 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2); in chsc_process_crw()