How many timers on the Arduino 101/Genuino 101

I believe that I have access to at least two timers on my Arduino 101 - timer0 which is used for millis() and micros(), etc. and now with the release of the CurieTimerOne library - timer1 which can be used to respond to a custom ISR or generate a PWM wave.

I would really like to understand if timer2 exists on the Arduino 101 and how to use it if it exists. Ideally I would like to get the somewhat old ServoTimer2 working on my Arduino 101. I have tried and failed so far.

Any information on the capabilities of the Arduino 101 or experience using ServoTimer2 would be much appreciated.

If I don't say womething wrong, according to the datasheet, the Intel quark C1000 (mean the processor inside arduino 101) got 4 timers. But be careful by using them ! For exemple timer 0 is used for millis().

May the other timer are use for something else (I don't know but pretty dure for PWM). You can still use them by using their register (see datasheet) but something can go wrong after.