aboutsummaryrefslogtreecommitdiff
path: root/include/hw/gpio/stm32l4x5_gpio.h
blob: 878bd19fc9b6c2b18ef1e1997316a71cb7aec081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * STM32L4x5 GPIO (General Purpose Input/Ouput)
 *
 * Copyright (c) 2024 Arnaud Minier <arnaud.minier@telecom-paris.fr>
 * Copyright (c) 2024 Inès Varhol <ines.varhol@telecom-paris.fr>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

/*
 * The reference used is the STMicroElectronics RM0351 Reference manual
 * for STM32L4x5 and STM32L4x6 advanced Arm ® -based 32-bit MCUs.
 * https://www.st.com/en/microcontrollers-microprocessors/stm32l4x5/documentation.html
 */

#ifndef HW_STM32L4X5_GPIO_H
#define HW_STM32L4X5_GPIO_H

#include "hw/sysbus.h"
#include "qom/object.h"

#define TYPE_STM32L4X5_GPIO "stm32l4x5-gpio"
OBJECT_DECLARE_SIMPLE_TYPE(Stm32l4x5GpioState, STM32L4X5_GPIO)

#define NUM_GPIOS 8
#define GPIO_NUM_PINS 16

struct Stm32l4x5GpioState {
    SysBusDevice parent_obj;

    MemoryRegion mmio;

    /* GPIO registers */
    uint32_t moder;
    uint32_t otyper;
    uint32_t ospeedr;
    uint32_t pupdr;
    uint32_t idr;
    uint32_t odr;
    uint32_t lckr;
    uint32_t afrl;
    uint32_t afrh;
    uint32_t ascr;

    /* GPIO registers reset values */
    uint32_t moder_reset;
    uint32_t ospeedr_reset;
    uint32_t pupdr_reset;

    /*
     * External driving of pins.
     * The pins can be set externally through the device
     * anonymous input GPIOs lines under certain conditions.
     * The pin must not be in push-pull output mode,
     * and can't be set high in open-drain mode.
     * Pins driven externally and configured to
     * output mode will in general be "disconnected"
     * (see `get_gpio_pinmask_to_disconnect()`)
     */
    uint16_t disconnected_pins;
    uint16_t pins_connected_high;

    char *name;
    Clock *clk;
    qemu_irq pin[GPIO_NUM_PINS];
};

#endif