Overclock STM32F4 device up to 250MHz

Let’s test what STM32F4xx devices can do. I have all “4 speedĀ families” at home so why not to try it how fast we can go. By default, for those who don’t know max frequencies for STM32F4xx devices, they are in list below:

  • 84MHz: STM32F401 MCUs, including Nucleo-F401 board
  • 100MHz: STM32F411 MCUs, including Nucleo F411 board
  • 168MHz: STM32F405/7 and STM32F415/17 MCUs, including STM32F4-Discovery board
  • 180MHz: STM32F427/29 and STM32F437/39 MCUs, including STM32F429-Discovery board

Ok, we have everything provided, let’s test how far we can go with PLL settings. First we have to go through, how to set PLL parameters to even get any clock. Step by step on how PLL works.

About PLL settings

  1. You gave him some input frequency, let’s say HSE_VALUE = 8MHz. Then, he divide this by PLL_M factor, that we get 1MHz in the first stage output. This means
  2. Then, PLL multiplies output (1MHz) with a large number, factor is called PLL_N. This number depends on STM32F4xx family. By default, for normal clocks (specified in datasheet) values are:
    1. 84MHz: PLL_N =Ā 336
    2. 100MHz:Ā PLL_N = 400
    3. 168MHz:Ā PLL_N =Ā 336
    4. 180MHz: PLL_N = 360

    Probably your question is why so strange values. Simple answer, STM32F4xx have different peripherals (SDIO, USB, etc) and some specific peripherals needs exact clock. If you want to have 168MHz core clock and then for USB 48MHz, this is not possible, because you cannot set a prescaler of 168/48 = 3.5. This is “no go”. For that purpose, least common value for (in this case) 168MHz and 48MHz is used,Ā 336.

    Note: PLL_N parameter canĀ be set between 192 and 432. At least datasheet says that but we will see that we can go more that this.

  3. Ok, we have 336MHz somewhere inside PLL now. Now become 2 new PLL parameters.
    1. PLL_P: This parameter is used to set system core clock for MCU. If you want 168MHz clock, and you have 336MHz on the input of this divider, you set parameter PLL_P = 2. Equation is

      1. 84MHz: PLL_P =Ā 4
      2. 100MHz:Ā PLL_P =Ā 4
      3. 168MHz:Ā PLL_P =Ā 2
      4. 180MHz: PLL_P =Ā 2
    2. PLL_Q: This parameter is used to set clock for special peripheral (SDIO, USB, RNG) to be at least about 48MHz. But this is not always possible. It divides the input frequency for special peripherals like PLL_P does for system core clock.

      By default this parameter is set to 7. If we take a look at what happens if we have 180MHz clock and PLL_N set to 360, the our PLL_VCO is 360MHz and our “48MHz” clock becomes:

      It’s not a big problem but yeah, if we want perfect, then if we use USB/SDIO/RNG we can not have 180MHz for our MCU. We have to slow it down to 168MHz by setting PLL_N to 336. Someone will probably say that we can increase PLL_N to 384 and then PLL_Q to 8 and we will get

      This is true, but if we set PLL_N to 384, then on divide by 2 for PLL_P we have higher frequency than 180MHz for Core clock (384MHz / 2 = 192MHz) and this is not good now. Terrible šŸ˜€ If you have 100MHz core clock, then you have PLL_N set to 400 and PLL_Q to 7, wow, that more than 55MHz for peripheral, not good at all. Even PLL_Q = 8 is too small. You need then about 8.3 prescaler but floating points in prescalers = no go.
  4. If we now make a full equatons for system core clock, we will get something like this:
  5. All these settings are set in system_stm32f4xx.c file if you use Standard Peripheral Drivers like I do.

Overclocking STM32F4xx device

To test how far I can go, I used my PWM library hich automatically sets timer period and prescaler according to the timer’s frequency and pwm frequency you choose. This values are stored in my working struct for PWM library. I used this PWM output to measure actual frequency with oscilloscope.

First, I tried overclock STM32F429-Discovery board. For first test, it was just good if I set PLL_N to higher value. I set it to PLL_N = 400, and if we calculate this, we will get SYSCLK = 200MHz. This is more than 180MHz so we can expect any problems. I’ve also set variable

to be sure my settings are OK in file. Then I’ve started my program in debug mode and set timer settings and PWM output. I’ve measured real 10kHz PWM output like I set. I was still not sure if this is ok. In debug window, you can look at variables. Like I previously said, my PWM struct stores information about timer prescaler and period. I read from debug windows values below:

  • Period: 10000
    • Absolute value how much ticks timer has to make. Value stored in TIM’s register is Period – 1
  • Prescaler: 1
    • Absolute value to use with calculations. Value stored in TIM’s register is Prescaler – 1

It was strange for me first time, because this was not so nice result. Then I realized, that TIM2 for PWM is connected to APB1 bus, which clock frequency is on F429 APB1 = SYSCLK / 4 but TIM has internal PLL which increases frequency by 2, so you get TIM2_TICK_DEFAULT = SYSCLK / 4 * 2 = SYSCLK / 2 = 100MHz.

This result is better now. because you get:

So I was doing this a lot of times, trying different frequencies. To 250MHz on STM32F429-Discovery I got frequency on my oscilloscope 10kHz and parameters for timer were valid. So clock was really 250MHz.

For other boards, I got maximum clocks of:

  • STM32F429-Discovery; 250MHz
    • APB1 = SYSCLK / 4; TIM2 default frequency = SYSCLK / 4 * 2 = 125MHz
  • STM32F4-Discovery: 250MHz
    • APB1 = SYSCLK / 4; TIM2 default frequency = SYSCLK / 4 * 2 = 125MHz
  • Nucleo F401: 125MHz
    • APB1 = SYSCLK / 2; TIM2 default frequency = SYSCLK / 2Ā * 2 = 125MHz
  • Nucleo F411: 125MHz
    • APB1 = SYSCLK / 2; TIM2 default frequency = SYSCLK / 2Ā * 2 = 125MHz

Important notes:

  • There is no guarantee that every MCU in the series will go to the value like my did, because they are not designed for so high speed,
    • I do not suggest you that you use this in production
  • When frequency is higher than expected, MCU can become unstable and can crash or some hardfault error can happen,
    • Also, temperature rises with frequency.
  • You can blow your MCU
    • I’m not responsible for that. You are doing this onĀ your own risk.

PLL Settings

These settings are set in system_stm32f4xx.c file

Main

Main program

Project below has settings in system_stm32f4xx.c set to maximum frequency like I said above, so 250 and 125MHz. Before you debug in Keil uVision, you have to rebuild. All libs are included in project.

tilz0R

Owner of this site. Application engineer, currently employed by STMicroelectronics. Exploring latest technologies and owner of different libraries posted on Github.

You may also like...