Lines Matching defs:pd

604 		    cistpl_cftable_entry_pd_t *pd = &ce->pd;
610 pd->flags |= CISTPL_CFTABLE_TPCE_FS_PWR_VPP2;
613 pd->flags |= CISTPL_CFTABLE_TPCE_FS_PWR_VPP1;
616 pd->flags |= CISTPL_CFTABLE_TPCE_FS_PWR_VCC;
630 cistpl_cftable_entry_pd_t *pd = &ce->pd;
635 if (pd->flags & CISTPL_CFTABLE_TPCE_FS_PWR_VCC) {
636 pwr = &pd->pd_vcc;
642 if (pd->flags & CISTPL_CFTABLE_TPCE_FS_PWR_VPP1) {
643 pwr = &pd->pd_vpp1;
649 if (pd->flags & CISTPL_CFTABLE_TPCE_FS_PWR_VPP2) {
650 pwr = &pd->pd_vpp2;
1022 * cistpl_cftable_entry_pwr_t *pd - pointer to local power description
1026 cistpl_pd_parse(cistpl_t *tp, cistpl_cftable_entry_pwr_t *pd)
1034 pd->nomV = cistpl_expd_parse(tp, &pd->nomV_flags) / 100;
1035 pd->nomV_flags |= (pdesc | CISTPL_CFTABLE_PD_EXISTS);
1040 pd->minV = cistpl_expd_parse(tp, &pd->minV_flags) / 100;
1041 pd->minV_flags |= (pdesc | CISTPL_CFTABLE_PD_EXISTS);
1046 pd->maxV = cistpl_expd_parse(tp, &pd->maxV_flags) / 100;
1047 pd->maxV_flags |= (pdesc | CISTPL_CFTABLE_PD_EXISTS);
1052 pd->staticI_flags |= CISTPL_CFTABLE_PD_MUL10;
1053 pd->staticI = cistpl_expd_parse(tp, &pd->staticI_flags);
1054 pd->staticI_flags |= (pdesc | CISTPL_CFTABLE_PD_EXISTS);
1059 pd->avgI_flags |= CISTPL_CFTABLE_PD_MUL10;
1060 pd->avgI = cistpl_expd_parse(tp, &pd->avgI_flags);
1061 pd->avgI_flags |= (pdesc | CISTPL_CFTABLE_PD_EXISTS);
1066 pd->peakI_flags |= CISTPL_CFTABLE_PD_MUL10;
1067 pd->peakI = cistpl_expd_parse(tp, &pd->peakI_flags);
1068 pd->peakI_flags |= (pdesc | CISTPL_CFTABLE_PD_EXISTS);
1073 pd->pdownI_flags |= CISTPL_CFTABLE_PD_MUL10;
1074 pd->pdownI = cistpl_expd_parse(tp, &pd->pdownI_flags);
1075 pd->pdownI_flags |= (pdesc | CISTPL_CFTABLE_PD_EXISTS);