12. General-purpose I/Os (GPIO)

12.1 Introduction

Each general-purpose I/O port has four 32-bit configuration registers (GPIOx_MODER, GPIOx_OTYPER, GPIOx_OSPEEDR and GPIOx_PUPDR), two 32-bit data registers (GPIOx_IDR and GPIOx_ODR) and a 32-bit set/reset register (GPIOx_BSRR). In addition all GPIOs have a 32-bit locking register (GPIOx_LCKR) and two 32-bit alternate function selection registers (GPIOx_AFRH and GPIOx_AFRL).

12.2 GPIO main features

12.3 GPIO functional description

Subject to the specific hardware characteristics of each I/O port listed in the datasheet, each port bit of the general-purpose I/O (GPIO) ports can be individually configured by software in several modes:

Each I/O port bit is freely programmable, however the I/O port registers have to be accessed as 32-bit words, half-words or bytes. The purpose of the GPIOx_BSRR register is to allow atomic read/modify accesses to any of the GPIOx_ODR registers. In this way, there is no risk of an IRQ occurring between the read and the modify access.

Figure 76 and Figure 77 show the basic structures of a standard and a 5-Volt tolerant I/O port bit, respectively. Table 97 gives the possible port bit configurations.

Figure 76. Basic structure of an I/O port bit

Figure 76: Basic structure of an I/O port bit. This block diagram shows the internal architecture of a standard I/O port bit. On the left, external connections include 'To on-chip peripheral' (Analog), 'Alternate function input', 'Read' (from Input data register), 'Write' (to Bit set/reset registers), 'Read/write' (to Output data register), and 'From on-chip peripheral' (Alternate function output). The internal components include an 'Input data register', 'Bit set/reset registers', 'Output data register', 'Input driver' (containing a trigger), 'Output driver' (containing an 'Output control' block), and a 'Push-pull, open-drain or disabled' output stage using P-MOS and N-MOS transistors. The output stage is connected to the 'I/O pin' via 'Pull up' and 'Pull down' resistors and 'Protection diode' structures. Power connections for V_DD and V_SS are shown for the various blocks. The diagram is labeled 'ai15938' in the bottom right corner.
Figure 76: Basic structure of an I/O port bit. This block diagram shows the internal architecture of a standard I/O port bit. On the left, external connections include 'To on-chip peripheral' (Analog), 'Alternate function input', 'Read' (from Input data register), 'Write' (to Bit set/reset registers), 'Read/write' (to Output data register), and 'From on-chip peripheral' (Alternate function output). The internal components include an 'Input data register', 'Bit set/reset registers', 'Output data register', 'Input driver' (containing a trigger), 'Output driver' (containing an 'Output control' block), and a 'Push-pull, open-drain or disabled' output stage using P-MOS and N-MOS transistors. The output stage is connected to the 'I/O pin' via 'Pull up' and 'Pull down' resistors and 'Protection diode' structures. Power connections for V_DD and V_SS are shown for the various blocks. The diagram is labeled 'ai15938' in the bottom right corner.

Figure 77. Basic structure of a 5-Volt tolerant I/O port bit

Figure 77: Basic structure of a 5-Volt tolerant I/O port bit. This block diagram shows the internal architecture of a 5-Volt tolerant I/O port bit. It is similar to Figure 76 but features a 'TTL Schmitt trigger' in the input driver instead of a standard trigger. The output stage includes a 'Protection diode' connected to V_DD_FT (labeled with a superscript 1). The 'Pull up' resistor is connected to V_DD and the 'Pull down' resistor is connected to V_SS. The diagram is labeled 'ai15939b' in the bottom right corner.
Figure 77: Basic structure of a 5-Volt tolerant I/O port bit. This block diagram shows the internal architecture of a 5-Volt tolerant I/O port bit. It is similar to Figure 76 but features a 'TTL Schmitt trigger' in the input driver instead of a standard trigger. The output stage includes a 'Protection diode' connected to V_DD_FT (labeled with a superscript 1). The 'Pull up' resistor is connected to V_DD and the 'Pull down' resistor is connected to V_SS. The diagram is labeled 'ai15939b' in the bottom right corner.
  1. 1. \( V_{DD\_FT} \) is a potential specific to 5-Volt tolerant I/Os and different from \( V_{DD} \) .
Table 97. Port bit configuration table (1)
MODE(i)
[1:0]
OTYPER(i)OSPEED(i)
[1:0]
PUPD(i)I/O configuration
[1:0][1:0]
010SPEED
[1:0]
00GP outputPP
001GP outputPP + PU
010GP outputPP + PD
011Reserved
100GP outputOD
101GP outputOD + PU
110GP outputOD + PD
111Reserved (GP output OD)
100SPEED
[1:0]
00AFPP
001AFPP + PU
010AFPP + PD
011Reserved
100AFOD
101AFOD + PU
110AFOD + PD
111Reserved
00xxx00InputFloating
xxx01InputPU
xxx10InputPD
xxx11Reserved (input floating)
11xxx00Input/outputAnalog
xxx01Reserved
xxx10
xxx11
  1. 1. GP = general-purpose, PP = push-pull, PU = pull-up, PD = pull-down, OD = open-drain, AF = alternate function.

12.3.1 General-purpose I/O (GPIO)

During and just after reset, the alternate functions are not active and most of the I/O ports are configured in analog mode.

The debug pins are in AF pull-up/pull-down after reset:

When the pin is configured as output, the value written to the output data register (GPIOx_ODR) is output on the I/O pin. It is possible to use the output driver in push-pull mode or open-drain mode (only the low level is driven, high level is HI-Z).

The input data register (GPIOx_IDR) captures the data present on the I/O pin at every AHB clock cycle.

All GPIO pins have weak internal pull-up and pull-down resistors, which can be activated or not depending on the value in the GPIOx_PUPDR register.

12.3.2 I/O pin alternate function multiplexer and mapping

The device I/O pins are connected to on-board peripherals/modules through a multiplexer that allows only one peripheral alternate function (AF) connected to an I/O pin at a time. In this way, there can be no conflict between peripherals available on the same I/O pin.

Each I/O pin has a multiplexer with up to sixteen alternate function inputs (AF0 to AF15) that can be configured through the GPIOx_AFRL (for pin 0 to 7) and GPIOx_AFRH (for pin 8 to 15) registers:

In addition to this flexible I/O multiplexing architecture, each peripheral has alternate functions mapped onto different I/O pins to optimize the number of peripherals available in smaller packages.

To use an I/O in a given configuration, the user has to proceed as follows:

Refer to the “Alternate function mapping” table in the device datasheet for the detailed mapping of the alternate function I/O pins.

12.3.3 I/O port control registers

Each of the GPIO ports has four 32-bit memory-mapped control registers (GPIOx_MODER, GPIOx_OTYPER, GPIOx_OSPEEDR, GPIOx_PUPDR) to configure up to 16 I/Os. The GPIOx_MODER register is used to select the I/O mode (input, output, AF, analog). The GPIOx_OTYPER and GPIOx_OSPEEDR registers are used to select the output type (push-pull or open-drain) and speed. The GPIOx_PUPDR register is used to select the pull-up/pull-down whatever the I/O direction.

12.3.4 I/O port data registers

Each GPIO has two 16-bit memory-mapped data registers: input and output data registers (GPIOx_IDR and GPIOx_ODR). GPIOx_ODR stores the data to be output, it is read/write accessible. The data input through the I/O are stored into the input data register (GPIOx_IDR), a read-only register.

See Section 12.4.5: GPIO port input data register (GPIOx_IDR) (x = A to K) and Section 12.4.6: GPIO port output data register (GPIOx_ODR) (x = A to K) for the register descriptions.

12.3.5 I/O data bitwise handling

The bit set reset register (GPIOx_BSRR) is a 32-bit register which allows the application to set and reset each individual bit in the output data register (GPIOx_ODR). The bit set reset register has twice the size of GPIOx_ODR.

To each bit in GPIOx_ODR, correspond two control bits in GPIOx_BSRR: BS(i) and BR(i). When written to 1, bit BS(i) sets the corresponding ODR(i) bit. When written to 1, bit BR(i) resets the ODR(i) corresponding bit.

Writing any bit to 0 in GPIOx_BSRR does not have any effect on the corresponding bit in GPIOx_ODR. If there is an attempt to both set and reset a bit in GPIOx_BSRR, the set action takes priority.

Using the GPIOx_BSRR register to change the values of individual bits in GPIOx_ODR is a “one-shot” effect that does not lock the GPIOx_ODR bits. The GPIOx_ODR bits can always

be accessed directly. The GPIOx_BSRR register provides a way of performing atomic bitwise handling.

There is no need for the software to disable interrupts when programming the GPIOx_ODR at bit level: it is possible to modify one or more bits in a single atomic AHB write access.

12.3.6 GPIO locking mechanism

It is possible to freeze the GPIO control registers by applying a specific write sequence to the GPIOx_LCKR register. The frozen registers are GPIOx_MODER, GPIOx_OTYPER, GPIOx_OSPEEDR, GPIOx_PUPDR, GPIOx_AFR and GPIOx_AFRH.

To write the GPIOx_LCKR register, a specific write / read sequence has to be applied. When the right LOCK sequence is applied to bit 16 in this register, the value of LCKR[15:0] is used to lock the configuration of the I/Os (during the write sequence the LCKR[15:0] value must be the same). When the LOCK sequence has been applied to a port bit, the value of the port bit can no longer be modified until the next MCU reset or peripheral reset. Each GPIOx_LCKR bit freezes the corresponding bit in the control registers (GPIOx_MODER, GPIOx_OTYPER, GPIOx_OSPEEDR, GPIOx_PUPDR, GPIOx_AFR and GPIOx_AFRH).

The LOCK sequence (refer to Section 12.4.8: GPIO port configuration lock register (GPIOx_LCKR) (x = A to K) ) can only be performed using a word (32-bit long) access to the GPIOx_LCKR register due to the fact that GPIOx_LCKR bit 16 has to be set at the same time as the [15:0] bits.

For more details refer to LCKR register description in Section 12.4.8: GPIO port configuration lock register (GPIOx_LCKR) (x = A to K) .

12.3.7 I/O alternate function input/output

Two registers are provided to select one of the alternate function inputs/outputs available for each I/O. With these registers, the user can connect an alternate function to some other pin as required by the application.

This means that a number of possible peripheral functions are multiplexed on each GPIO using the GPIOx_AFR and GPIOx_AFRH alternate function registers. The application can thus select any one of the possible functions for each I/O. The AF selection signal being common to the alternate function input and alternate function output, a single channel is selected for the alternate function input/output of a given I/O.

To know which functions are multiplexed on each GPIO pin refer to the device datasheet.

12.3.8 External interrupt/wake-up lines

All ports have external interrupt capability. To use external interrupt lines, the port must not be configured in analog mode.

Refer to Section 21: Extended interrupt and event controller (EXTI) and to Section 21.3: EXTI functional description .

12.3.9 Input configuration

When the I/O port is programmed as input:

Figure 78 shows the input configuration of the I/O port bit.

Figure 78. Input floating / pull up / pull down configurations

Figure 78: Input floating / pull up / pull down configurations. This schematic diagram illustrates the internal circuitry of a GPIO pin configured for input. On the left, external signals 'Read', 'Write', and 'Read/write' are shown. 'Read' connects to the 'Input data register'. 'Write' connects to the 'Bit set/reset registers'. 'Read/write' connects to the 'Output data register'. The 'Input data register' is connected to a 'TTL Schmitt trigger' (labeled 'on'). The 'Bit set/reset registers' and 'Output data register' are connected to an 'input driver' and an 'output driver' (both labeled 'on/off'). The 'input driver' is connected to the 'TTL Schmitt trigger'. The 'output driver' is connected to the 'I/O pin'. The 'I/O pin' is connected to 'VDD' and 'VSS' through 'pull up' and 'pull down' resistors (labeled 'on/off'). Protection diodes are also shown between the 'I/O pin' and 'VDD' and 'VSS'. The diagram is labeled 'ai15940b' in the bottom right corner.
Figure 78: Input floating / pull up / pull down configurations. This schematic diagram illustrates the internal circuitry of a GPIO pin configured for input. On the left, external signals 'Read', 'Write', and 'Read/write' are shown. 'Read' connects to the 'Input data register'. 'Write' connects to the 'Bit set/reset registers'. 'Read/write' connects to the 'Output data register'. The 'Input data register' is connected to a 'TTL Schmitt trigger' (labeled 'on'). The 'Bit set/reset registers' and 'Output data register' are connected to an 'input driver' and an 'output driver' (both labeled 'on/off'). The 'input driver' is connected to the 'TTL Schmitt trigger'. The 'output driver' is connected to the 'I/O pin'. The 'I/O pin' is connected to 'VDD' and 'VSS' through 'pull up' and 'pull down' resistors (labeled 'on/off'). Protection diodes are also shown between the 'I/O pin' and 'VDD' and 'VSS'. The diagram is labeled 'ai15940b' in the bottom right corner.

12.3.10 Output configuration

When the I/O port is programmed as output:

Figure 79 shows the output configuration of the I/O port bit.

Figure 79. Output configuration diagram showing the internal circuitry of an I/O port bit. It includes a Bit set/reset registers block, an Output data register, an Input data register, a TTL Schmitt trigger, an Input driver, an Output driver, an Output control block, P-MOS and N-MOS transistors, pull-up and pull-down resistors, and protection diodes connected to the I/O pin.

Figure 79. Output configuration

The diagram illustrates the internal architecture of an I/O port bit. On the left, external signals 'Read' and 'Write' are shown. 'Write' goes to 'Bit set/reset registers', which in turn connect to an 'Output data register'. 'Read' comes from an 'Input data register'. Both registers connect to an 'Output control' block. This block drives a pair of transistors: a P-MOS connected to \( V_{DD} \) and an N-MOS connected to \( V_{SS} \) . These transistors form an 'Output driver' (labeled 'Push-pull or Open-drain'). Above the transistors is a 'TTL Schmitt trigger' with an 'on' input, part of the 'Input driver'. To the right of the transistors are two resistors: a pull-up resistor connected to \( V_{DD} \) and a pull-down resistor connected to \( V_{SS} \) , both with 'on/off' switches. Protection diodes are connected between the I/O pin and \( V_{DD} \) and \( V_{SS} \) . The I/O pin is shown on the far right. The identifier 'ai15941b' is in the bottom right corner.

Figure 79. Output configuration diagram showing the internal circuitry of an I/O port bit. It includes a Bit set/reset registers block, an Output data register, an Input data register, a TTL Schmitt trigger, an Input driver, an Output driver, an Output control block, P-MOS and N-MOS transistors, pull-up and pull-down resistors, and protection diodes connected to the I/O pin.

12.3.11 I/O compensation cell

This cell is used to control the I/O commutation slew rate ( \( t_{fall} / t_{rise} \) ) to reduce the I/O noise on power supply.

The cell is split into two blocks:

The I/O compensation cell features 2 voltage ranges: 1.62 to 2.0 V and 2.7 to 3.6 V.

12.3.12 Alternate function configuration

When the I/O port is programmed as alternate function:

Figure 80 shows the alternate function configuration of the I/O port bit.

Figure 80: Alternate function configuration diagram. This block diagram shows the internal architecture of an I/O port bit in alternate function mode. On the left, an 'Alternate function input' from an on-chip peripheral connects to an 'Input data register'. A 'Read' signal is associated with this register. Below it, 'Bit set/reset registers' are shown with 'Write' and 'Read/write' signals. An 'Alternate function output' from an on-chip peripheral connects to an 'Output data register'. The 'Input data register' and 'Output data register' both connect to a 'TTL Schmitt trigger'. The 'TTL Schmitt trigger' output is connected to an 'Input driver' and an 'Output control' block. The 'Output control' block is connected to a 'P-MOS' and an 'N-MOS' transistor, which form a 'push-pull or open-drain' output stage. The 'I/O pin' is connected to the output stage and has two 'protection diode' structures: one to VDD and one to VSS. Weak pull-up and pull-down resistors are also connected to the I/O pin, with 'on/off' control signals. The diagram is labeled 'ai15942b'.

Figure 80. Alternate function configuration

Figure 80: Alternate function configuration diagram. This block diagram shows the internal architecture of an I/O port bit in alternate function mode. On the left, an 'Alternate function input' from an on-chip peripheral connects to an 'Input data register'. A 'Read' signal is associated with this register. Below it, 'Bit set/reset registers' are shown with 'Write' and 'Read/write' signals. An 'Alternate function output' from an on-chip peripheral connects to an 'Output data register'. The 'Input data register' and 'Output data register' both connect to a 'TTL Schmitt trigger'. The 'TTL Schmitt trigger' output is connected to an 'Input driver' and an 'Output control' block. The 'Output control' block is connected to a 'P-MOS' and an 'N-MOS' transistor, which form a 'push-pull or open-drain' output stage. The 'I/O pin' is connected to the output stage and has two 'protection diode' structures: one to VDD and one to VSS. Weak pull-up and pull-down resistors are also connected to the I/O pin, with 'on/off' control signals. The diagram is labeled 'ai15942b'.

12.3.13 Analog configuration

When the I/O port is programmed as analog configuration:

Figure 81 shows the high-impedance, analog-input configuration of the I/O port bits.

Figure 81: High impedance-analog configuration diagram. This block diagram shows the internal architecture of an I/O port bit in analog configuration. On the left, an 'Analog' input from an on-chip peripheral connects to the 'I/O pin'. A 'Read' signal is associated with the 'Input data register', which shows a constant value of '0'. Below it, 'Bit set/reset registers' are shown with 'Write' and 'Read/write' signals. An 'Analog' output from an on-chip peripheral connects to the 'Output data register'. The 'Input data register' and 'Output data register' both connect to a 'TTL Schmitt trigger' which is forced to a constant value of '0'. The 'TTL Schmitt trigger' output is connected to an 'Input driver' and an 'Output control' block. The 'Output control' block is connected to a 'P-MOS' and an 'N-MOS' transistor, which form a 'push-pull or open-drain' output stage. The 'I/O pin' is connected to the output stage and has two 'protection diode' structures: one to VDD and one to VSS. The diagram is labeled 'ai15943'.

Figure 81. High impedance-analog configuration

Figure 81: High impedance-analog configuration diagram. This block diagram shows the internal architecture of an I/O port bit in analog configuration. On the left, an 'Analog' input from an on-chip peripheral connects to the 'I/O pin'. A 'Read' signal is associated with the 'Input data register', which shows a constant value of '0'. Below it, 'Bit set/reset registers' are shown with 'Write' and 'Read/write' signals. An 'Analog' output from an on-chip peripheral connects to the 'Output data register'. The 'Input data register' and 'Output data register' both connect to a 'TTL Schmitt trigger' which is forced to a constant value of '0'. The 'TTL Schmitt trigger' output is connected to an 'Input driver' and an 'Output control' block. The 'Output control' block is connected to a 'P-MOS' and an 'N-MOS' transistor, which form a 'push-pull or open-drain' output stage. The 'I/O pin' is connected to the output stage and has two 'protection diode' structures: one to VDD and one to VSS. The diagram is labeled 'ai15943'.

Some pins/balls are directly connected to PA0_C, PA1_C, PC2_C and PC3_C ADC analog inputs (see Figure 82 ): there is a direct path between Pxy_C and Pxy pins/balls, through an analog switch (refer to Section 13.3.1: SYSCFG peripheral mode configuration register (SYSCFG_PMCR) for details on how to configure analog switches).

Figure 82. Analog inputs connected to ADC inputs

Figure 82: Analog inputs connected to ADC inputs. This block diagram illustrates the internal architecture of a GPIO pin. On the left, various signal sources are shown: 'To ADC', 'To on-chip peripherals' (via 'Alternate Function Input'), 'Read' (from 'Input data register'), 'Write' (to 'Bit Set/Reset register'), 'From on-chip peripherals' (via 'Alternate Function Output'), and 'From analog peripherals' (via 'Analog'). These signals pass through a central 'GPIO' block containing an 'Input Driver' with a 'Schmitt Trigger' and an 'Output Driver' with 'OUTPUT CONTROL'. The 'Input Driver' is connected to an 'Input data register'. The 'Output Driver' is connected to an 'Output data register' and a 'Bit Set/Reset register'. A control signal 'MODERy [1:0] in GPIOx_MODER (reset state: open)' is shown. On the right, the pin is connected to external pins PA0_C, PA1_C, PC2_C, PC3_C (ADC inputs) and PA0, PA1, PC2, PC3 (general pins). An analog switch connects the internal pin to the ADC inputs. A note indicates: 'The switch default state depends on PxySO bit Reset value in SYSCFG_PMCR'. Below the pin, there are pull-up and pull-down resistors connected to VDD and VSS respectively, with 'On/off' switches. A note indicates: 'Push-Pull Open Drain Disabled'. The diagram is labeled MSV41921V3.
Figure 82: Analog inputs connected to ADC inputs. This block diagram illustrates the internal architecture of a GPIO pin. On the left, various signal sources are shown: 'To ADC', 'To on-chip peripherals' (via 'Alternate Function Input'), 'Read' (from 'Input data register'), 'Write' (to 'Bit Set/Reset register'), 'From on-chip peripherals' (via 'Alternate Function Output'), and 'From analog peripherals' (via 'Analog'). These signals pass through a central 'GPIO' block containing an 'Input Driver' with a 'Schmitt Trigger' and an 'Output Driver' with 'OUTPUT CONTROL'. The 'Input Driver' is connected to an 'Input data register'. The 'Output Driver' is connected to an 'Output data register' and a 'Bit Set/Reset register'. A control signal 'MODERy [1:0] in GPIOx_MODER (reset state: open)' is shown. On the right, the pin is connected to external pins PA0_C, PA1_C, PC2_C, PC3_C (ADC inputs) and PA0, PA1, PC2, PC3 (general pins). An analog switch connects the internal pin to the ADC inputs. A note indicates: 'The switch default state depends on PxySO bit Reset value in SYSCFG_PMCR'. Below the pin, there are pull-up and pull-down resistors connected to VDD and VSS respectively, with 'On/off' switches. A note indicates: 'Push-Pull Open Drain Disabled'. The diagram is labeled MSV41921V3.

1. VDD_FT is a potential specific to 5V tolerant I/Os. It is distinct from VDD.

12.3.14 Using the HSE or LSE oscillator pins as GPIOs

When the HSE or LSE oscillator is switched OFF (default state after reset), the related oscillator pins can be used as normal GPIOs.

When the HSE or LSE oscillator is switched ON (by setting the HSEON or LSEON bit in the RCC_CSR register) the oscillator takes control of its associated pins and the GPIO configuration of these pins has no effect.

When the oscillator is configured in a user external clock mode, only the OSC_IN or OSC32_IN pin is reserved for clock input and the OSC_OUT or OSC32_OUT pin can still be used as normal GPIO.

12.3.15 Using the GPIO pins in the backup supply domain

The PC13/PC14/PC15/PI8 GPIO functionality is lost when the core supply domain is powered off (when the device enters Standby mode). In this case, if their GPIO configuration is not bypassed by the RTC configuration, these pins are set in an analog input mode.

12.4 GPIO registers

For a summary of register bits, register address offsets and reset values, refer to Table 98 .

The peripheral registers can be written in word, half word or byte mode.

12.4.1 GPIO port mode register (GPIOx_MODER)
(x = A to K)

Address offset: 0x00

Reset value: 0xABFF FFFF for port A

Reset value: 0xFFFF FEBF for port B

Reset value: 0xFFFF FFFF for other ports

31302928272625242322212019181716
MODER15[1:0]MODER14[1:0]MODER13[1:0]MODER12[1:0]MODER11[1:0]MODER10[1:0]MODER9[1:0]MODER8[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
MODER7[1:0]MODER6[1:0]MODER5[1:0]MODER4[1:0]MODER3[1:0]MODER2[1:0]MODER1[1:0]MODER0[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 MODER[15:0][1:0] : Port x configuration I/O pin y (y = 15 to 0)

These bits are written by software to configure the I/O mode.

00: Input mode

01: General purpose output mode

10: Alternate function mode

11: Analog mode (reset state)

12.4.2 GPIO port output type register (GPIOx_OTYPER)
(x = A to K)

Address offset: 0x04

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
OT15OT14OT13OT12OT11OT10OT9OT8OT7OT6OT5OT4OT3OT2OT1OT0
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:0 OT[15:0] : Port x configuration I/O pin y (y = 15 to 0)

These bits are written by software to configure the I/O output type.

0: Output push-pull (reset state)

1: Output open-drain

12.4.3 GPIO port output speed register (GPIOx_OSPEEDR)
(x = A to K)

Address offset: 0x08

Reset value: 0x0C00 0000 (for port A)

Reset value: 0x0000 00C0 (for port B)

Reset value: 0x0000 0000 (for other ports)

31302928272625242322212019181716
OSPEEDR15
[1:0]
OSPEEDR14
[1:0]
OSPEEDR13
[1:0]
OSPEEDR12
[1:0]
OSPEEDR11
[1:0]
OSPEEDR10
[1:0]
OSPEEDR9
[1:0]
OSPEEDR8
[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
OSPEEDR7
[1:0]
OSPEEDR6
[1:0]
OSPEEDR5
[1:0]
OSPEEDR4
[1:0]
OSPEEDR3
[1:0]
OSPEEDR2
[1:0]
OSPEEDR1
[1:0]
OSPEEDR0
[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 OSPEEDR[15:0][1:0] : Port x configuration I/O pin y (y = 15 to 0)

These bits are written by software to configure the I/O output speed.

00: Low speed

01: Medium speed

10: High speed

11: Very high speed

Note: Refer to the product datasheets for the values of OSPEEDRy bits versus V DD range and external load.

12.4.4 GPIO port pull-up/pull-down register (GPIOx_PUPDR)
(x = A to K)

Address offset: 0x0C

Reset value: 0x6400 0000 (for port A)

Reset value: 0x0000 0100 (for port B)

Reset value: 0x0000 0000 (for other ports)

31302928272625242322212019181716
PUPDR15[1:0]PUPDR14[1:0]PUPDR13[1:0]PUPDR12[1:0]PUPDR11[1:0]PUPDR10[1:0]PUPDR9[1:0]PUPDR8[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
PUPDR7[1:0]PUPDR6[1:0]PUPDR5[1:0]PUPDR4[1:0]PUPDR3[1:0]PUPDR2[1:0]PUPDR1[1:0]PUPDR0[1:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 PUPDR[15:0][1:0] : Port x configuration I/O pin y (y = 15 to 0)

These bits are written by software to configure the I/O pull-up or pull-down

00: No pull-up, pull-down

01: Pull-up

10: Pull-down

11: Reserved

12.4.5 GPIO port input data register (GPIOx_IDR)
(x = A to K)

Address offset: 0x10

Reset value: 0x0000 XXXX

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
IDR15IDR14IDR13IDR12IDR11IDR10IDR9IDR8IDR7IDR6IDR5IDR4IDR3IDR2IDR1IDR0
rrrrrrrrrrrrrrrr

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:0 IDR[15:0] : Port x input data I/O pin y (y = 15 to 0)

These bits are read-only. They contain the input value of the corresponding I/O port.

12.4.6 GPIO port output data register (GPIOx_ODR)
(x = A to K)

Address offset: 0x14

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.
1514131211109876543210
ODR15ODR14ODR13ODR12ODR11ODR10ODR9ODR8ODR7ODR6ODR5ODR4ODR3ODR2ODR1ODR0
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:16 Reserved, must be kept at reset value.

Bits 15:0 ODR[15:0] : Port output data I/O pin y (y = 15 to 0)

These bits can be read and written by software.

Note: For atomic bit set/reset, the ODR bits can be individually set and/or reset by writing to the GPIOx_BSR register (x = A..F).

12.4.7 GPIO port bit set/reset register (GPIOx_BSRR)
(x = A to K)

Address offset: 0x18

Reset value: 0x0000 0000

31302928272625242322212019181716
BR15BR14BR13BR12BR11BR10BR9BR8BR7BR6BR5BR4BR3BR2BR1BR0
wwwwwwwwwwwwwwww
1514131211109876543210
BS15BS14BS13BS12BS11BS10BS9BS8BS7BS6BS5BS4BS3BS2BS1BS0
wwwwwwwwwwwwwwww

Bits 31:16 BR[15:0] : Port x reset I/O pin y (y = 15 to 0)

These bits are write-only. A read to these bits returns the value 0x0000.

0: No action on the corresponding ODRx bit

1: Resets the corresponding ODRx bit

Note: If both BSx and BRx are set, BSx has priority.

Bits 15:0 BS[15:0] : Port x set I/O pin y (y = 15 to 0)

These bits are write-only. A read to these bits returns the value 0x0000.

0: No action on the corresponding ODRx bit

1: Sets the corresponding ODRx bit

12.4.8 GPIO port configuration lock register (GPIOx_LCKR)
(x = A to K)

This register is used to lock the configuration of the port bits when a correct write sequence is applied to bit 16 (LCKK). The value of bits [15:0] is used to lock the configuration of the GPIO. During the write sequence, the value of LCKR[15:0] must not change. When the LOCK sequence has been applied on a port bit, the value of this port bit can no longer be modified until the next MCU reset or peripheral reset.

Note: A specific write sequence is used to write to the GPIOx_LCKR register. Only word access (32-bit long) is allowed during this locking sequence.

Each lock bit freezes a specific configuration register (control and alternate function registers).

Address offset: 0x1C

Reset value: 0x0000 0000

31302928272625242322212019181716
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.LCKK
rw
1514131211109876543210
LCK15LCK14LCK13LCK12LCK11LCK10LCK9LCK8LCK7LCK6LCK5LCK4LCK3LCK2LCK1LCK0
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:17 Reserved, must be kept at reset value.

Bit 16 LCKK : Lock key

This bit can be read any time. It can only be modified using the lock key write sequence.

0: Port configuration lock key not active

1: Port configuration lock key active. The GPIOx_LCKR register is locked until the next MCU reset or peripheral reset.

LOCK key write sequence:

WR LCKR[16] = 1 + LCKR[15:0]

WR LCKR[16] = 0 + LCKR[15:0]

WR LCKR[16] = 1 + LCKR[15:0]

RD LCKR

RD LCKR[16] = 1 (this read operation is optional but it confirms that the lock is active)

Note: During the LOCK key write sequence, the value of LCK[15:0] must not change.

Any error in the lock sequence aborts the lock.

After the first lock sequence on any bit of the port, any read access on the LCKK bit returns 1 until the next MCU reset or peripheral reset.

Bits 15:0 LCK[15:0] : Port x lock I/O pin y (y = 15 to 0)

These bits are read/write but can only be written when the LCKK bit is 0.

0: Port configuration not locked

1: Port configuration locked

12.4.9 GPIO alternate function low register (GPIOx_AFRL)
(x = A to K)

Address offset: 0x20

Reset value: 0x0000 0000

31302928272625242322212019181716
AFR7[3:0]AFR6[3:0]AFR5[3:0]AFR4[3:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
AFR3[3:0]AFR2[3:0]AFR1[3:0]AFR0[3:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 AFR[7:0][3:0] : Alternate function selection for port x I/O pin y (y = 7 to 0)

These bits are written by software to configure alternate function I/Os.

0000: AF0
0001: AF1
0010: AF2
0011: AF3
0100: AF4
0101: AF5
0110: AF6
0111: AF7
1000: AF8
1001: AF9
1010: AF10
1011: AF11
1100: AF12
1101: AF13
1110: AF14
1111: AF15

12.4.10 GPIO alternate function high register (GPIOx_AFRH)
(x = A to J)

Address offset: 0x24

Reset value: 0x0000 0000

31302928272625242322212019181716
AFR15[3:0]AFR14[3:0]AFR13[3:0]AFR12[3:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw
1514131211109876543210
AFR11[3:0]AFR10[3:0]AFR9[3:0]AFR8[3:0]
rwrwrwrwrwrwrwrwrwrwrwrwrwrwrwrw

Bits 31:0 AFR[15:8][3:0] : Alternate function selection for port x I/O pin y (y = 15 to 8)

These bits are written by software to configure alternate function I/Os.

0000: AF0
0001: AF1
0010: AF2
0011: AF3
0100: AF4
0101: AF5
0110: AF6
0111: AF7
1000: AF8
1001: AF9
1010: AF10
1011: AF11
1100: AF12
1101: AF13
1110: AF14
1111: AF15

12.4.11 GPIO register map

The following table gives the GPIO register map and reset values.

Table 98. GPIO register map and reset values

OffsetRegister name313029282726252423222120191817161514131211109876543210
0x00GPIOA_MODERMODER15[1:0]MODER14[1:0]MODER13[1:0]MODER12[1:0]MODER11[1:0]MODER10[1:0]MODER9[1:0]MODER8[1:0]MODER7[1:0]MODER6[1:0]MODER5[1:0]MODER4[1:0]MODER3[1:0]MODER2[1:0]MODER1[1:0]MODER0[1:0]
Reset value10101011111111111111111111111111
0x00GPIOB_MODERMODER15[1:0]MODER14[1:0]MODER13[1:0]MODER12[1:0]MODER11[1:0]MODER10[1:0]MODER9[1:0]MODER8[1:0]MODER7[1:0]MODER6[1:0]MODER5[1:0]MODER4[1:0]MODER3[1:0]MODER2[1:0]MODER1[1:0]MODER0[1:0]
Reset value11111111111111111111111110101111
0x00GPIOx_MODER
(where x = C..K)
MODER15[1:0]MODER14[1:0]MODER13[1:0]MODER12[1:0]MODER11[1:0]MODER10[1:0]MODER9[1:0]MODER8[1:0]MODER7[1:0]MODER6[1:0]MODER5[1:0]MODER4[1:0]MODER3[1:0]MODER2[1:0]MODER1[1:0]MODER0[1:0]
Reset value11111111111111111111111111111111
0x04GPIOx_OTYPER
(where x = A to K)
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.OT15OT14OT13OT12OT11OT10OT9OT8OT7OT6OT5OT4OT3OT2OT1OT0
Reset value0000000000000000
0x08GPIOA_OSPEEDROSPEEDR15[1:0]OSPEEDR14[1:0]OSPEEDR13[1:0]OSPEEDR12[1:0]OSPEEDR11[1:0]OSPEEDR10[1:0]OSPEEDR9[1:0]OSPEEDR8[1:0]OSPEEDR7[1:0]OSPEEDR6[1:0]OSPEEDR5[1:0]OSPEEDR4[1:0]OSPEEDR3[1:0]OSPEEDR2[1:0]OSPEEDR1[1:0]OSPEEDR0[1:0]
Reset value00000011000000000000000000000000
0x08GPIOB_OSPEEDROSPEEDR15[1:0]OSPEEDR14[1:0]OSPEEDR13[1:0]OSPEEDR12[1:0]OSPEEDR11[1:0]OSPEEDR10[1:0]OSPEEDR9[1:0]OSPEEDR8[1:0]OSPEEDR7[1:0]OSPEEDR6[1:0]OSPEEDR5[1:0]OSPEEDR4[1:0]OSPEEDR3[1:0]OSPEEDR2[1:0]OSPEEDR1[1:0]OSPEEDR0[1:0]
Reset value00000000000000000000000000110000
0x08GPIOx_OSPEEDR
(where x = C..K)
OSPEEDR15[1:0]OSPEEDR14[1:0]OSPEEDR13[1:0]OSPEEDR12[1:0]OSPEEDR11[1:0]OSPEEDR10[1:0]OSPEEDR9[1:0]OSPEEDR8[1:0]OSPEEDR7[1:0]OSPEEDR6[1:0]OSPEEDR5[1:0]OSPEEDR4[1:0]OSPEEDR3[1:0]OSPEEDR2[1:0]OSPEEDR1[1:0]OSPEEDR0[1:0]
Reset value00000000000000000000000000000000
0x0CGPIOA_PUPDRPUPDR15[1:0]PUPDR14[1:0]PUPDR13[1:0]PUPDR12[1:0]PUPDR11[1:0]PUPDR10[1:0]PUPDR9[1:0]PUPDR8[1:0]PUPDR7[1:0]PUPDR6[1:0]PUPDR5[1:0]PUPDR4[1:0]PUPDR3[1:0]PUPDR2[1:0]PUPDR1[1:0]PUPDR0[1:0]
Reset value01100100000000000000000000000000

Table 98. GPIO register map and reset values (continued)

OffsetRegister name313029282726252423222120191817161514131211109876543210
0x0CGPIOB_PUPDRPUPDR15[1:0]PUPDR14[1:0]PUPDR13[1:0]PUPDR12[1:0]PUPDR11[1:0]PUPDR10[1:0]PUPDR9[1:0]PUPDR8[1:0]PUPDR7[1:0]PUPDR6[1:0]PUPDR5[1:0]PUPDR4[1:0]PUPDR3[1:0]PUPDR2[1:0]PUPDR1[1:0]PUPDR0[1:0]
Reset value00000000000000000000000100000000
0x0CGPIOx_PUPDR
(where x = C..K)
PUPDR15[1:0]PUPDR14[1:0]PUPDR13[1:0]PUPDR12[1:0]PUPDR11[1:0]PUPDR10[1:0]PUPDR9[1:0]PUPDR8[1:0]PUPDR7[1:0]PUPDR6[1:0]PUPDR5[1:0]PUPDR4[1:0]PUPDR3[1:0]PUPDR2[1:0]PUPDR1[1:0]PUPDR0[1:0]
Reset value00000000000000000000000000000000
0x10GPIOx_IDR
(where x = A..I/J/K)
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.IDR15IDR14IDR13IDR12IDR11IDR10IDR9IDR8IDR7IDR6IDR5IDR4IDR3IDR2IDR1IDR0
Reset valuexxxxxxxxxxxxxxx
0x14GPIOx_ODR
(where x = A to K)
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.ODR15ODR14ODR13ODR12ODR11ODR10ODR9ODR8ODR7ODR6ODR5ODR4ODR3ODR2ODR1ODR0
Reset value000000000000000
0x18GPIOx_BSRR
(where x = A..I/J/K)
BR15BR14BR13BR12BR11BR10BR9BR8BR7BR6BR5BR4BR3BR2BR1BR0BS15BS14BS13BS12BS11BS10BS9BS8BS7BS6BS5BS4BS3BS2BS1BS0
Reset value00000000000000000000000000000000
0x1CGPIOx_LCKR
(where x = A to K)
Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.Res.LCK15LCK14LCK13LCK12LCK11LCK10LCK9LCK8LCK7LCK6LCK5LCK4LCK3LCK2LCK1LCK0
Reset value000000000000000
0x20GPIOx_AFR
(where x = A to K)
AFR7[3:0]AFR6[3:0]AFR5[3:0]AFR4[3:0]AFR3[3:0]AFR2[3:0]AFR1[3:0]AFR0[3:0]
Reset value00000000000000000000000000000000
0x24GPIOx_AFRH
(where x = A to K)
AFR15[3:0]AFR14[3:0]AFR13[3:0]AFR12[3:0]AFR11[3:0]AFR10[3:0]AFR9[3:0]AFR8[3:0]
Reset value00000000000000000000000000000000
Refer to Section 2.3 on page 134 for the register boundary addresses.