Lines Matching defs:fq_opts

930     struct qm_mcc_initfq    fq_opts;
968 memset(&fq_opts,0,sizeof(fq_opts));
969 fq_opts.fqid = fqid;
970 fq_opts.count = (uint16_t)(count-1);
971 fq_opts.we_mask |= QM_INITFQ_WE_DESTWQ;
972 fq_opts.fqd.dest.channel = channel;
973 fq_opts.fqd.dest.wq = wqid;
974 fq_opts.we_mask |= QM_INITFQ_WE_FQCTRL;
975 fq_opts.fqd.fq_ctrl = (uint16_t)flags;
986 fq_opts.fqd.cgid = QmCgGetCgId(p_CgParams->h_QmCg);
987 fq_opts.we_mask |= QM_INITFQ_WE_CGID;
990 fq_opts.we_mask |= QM_INITFQ_WE_OAC;
991 fq_opts.we_mask &= ~QM_INITFQ_WE_TDTHRESH;
992 fq_opts.fqd.td_thresh = (uint16_t)(QM_FQD_TD_THRESH_OAC_EN | p_CgParams->overheadAccountingLength);
999 fq_opts.we_mask |= QM_INITFQ_WE_TDTHRESH;
1014 fq_opts.fqd.td.exp = tn;
1015 fq_opts.fqd.td.mant = ta;
1020 fq_opts.we_mask |= QM_INITFQ_WE_CONTEXTA;
1021 memcpy((void*)&fq_opts.fqd.context_a, p_ContextA, sizeof(t_QmContextA));
1024 if (fq_opts.fqd.dest.channel < e_QM_FQ_CHANNEL_FMAN0_SP0)
1026 if (sizeof(p_Fqs[0]) <= sizeof(fq_opts.fqd.context_b))
1028 fq_opts.we_mask |= QM_INITFQ_WE_CONTEXTB;
1029 fq_opts.fqd.context_b = (uint32_t)PTR_TO_UINT(p_Fqs[0]);
1036 fq_opts.we_mask |= QM_INITFQ_WE_CONTEXTB;
1037 memcpy((void*)&fq_opts.fqd.context_b, p_ContextB, sizeof(t_QmContextB));
1045 if ((err = qman_init_fq(p_QmPortal, p_Fqs[0], initFqFlag, &fq_opts)) != E_OK)
1061 fq_opts.we_mask = QM_INITFQ_WE_TDTHRESH;
1076 fq_opts.fqd.td.exp = tn;
1077 fq_opts.fqd.td.mant = ta;
1078 if ((err = qman_init_fq(p_QmPortal, p_Fqs[0], (uint32_t)(initParked?0:QMAN_INITFQ_FLAG_SCHED), &fq_opts)) != E_OK)