Hi,
a 0.1Hz will not be possible if having 120MHz eMIOS module clock.
eMIOS is clocked from CORE_CLK (up to 120Mhz on S32K312). eMIOS divides this clock by the global prescaler (MCR[GPRE] + 1, Clock Divider Value in Mcl component) and routes the resulting prescaled clock output to the channel internal prescaler (Cn[UCPRE] + 1, Clock prescaler in Pwm component). Thus channel internal counter counts (CORE_CLK/global prescaler/internal prescaler) clock.
Finally assuming channel running in e.g. OPWFMB mode, its PWM frequency is calculated as
PWM frequency = CORE_CLK / global prescaler / internal prescaler / B1
B1 is a value written to channel B register (Period set in PWM component).
Using max values for global prescaler / internal prescaler / Period you got
PWM frequency = 120MHz / 256 / 16 / 65535 = 0.447 Hz
So you will need to divide module clock as well to get lower freq PWMs.
BR, Petr