From the data sheet.
1)
CCP2MX: CCP2 Mux bit
1 = CCP2 input/output is multiplexed with RC1
0 = CCP2 input/output is multiplexed with RB3
It selects which pin can be used for the CCP2 module.
2)
PWM duty cycle = (CCPR1L:CCP1CON<5:4>) • TOSC • (TMR2 prescale value)
PWMperiod = [(PR2)+1]•4•TOSC• (TMR2 prescale value)
Now
CCPR1L:CCP1CON<5:4>
means the 8 bits of CCPR1L followed by bits 5 and 4 of CCP1CON. If CCP1CON is not used, those two bits are 00. They are the least significant bits.
Ignoring the prescale,
If PR2 is 255, then the period is 256 x 4 x TOSC = 1024 * TOSC.
If CCPR1L is 255, the duty cycle is 255 x 4 x TOSC = 1020 * TOSC, or almost all the time hight.