xref: /openbmc/qemu/include/hw/gpio/stm32l4x5_gpio.h (revision 1cdcfb6e)
1*1cdcfb6eSInès Varhol /*
2*1cdcfb6eSInès Varhol  * STM32L4x5 GPIO (General Purpose Input/Ouput)
3*1cdcfb6eSInès Varhol  *
4*1cdcfb6eSInès Varhol  * Copyright (c) 2024 Arnaud Minier <arnaud.minier@telecom-paris.fr>
5*1cdcfb6eSInès Varhol  * Copyright (c) 2024 Inès Varhol <ines.varhol@telecom-paris.fr>
6*1cdcfb6eSInès Varhol  *
7*1cdcfb6eSInès Varhol  * SPDX-License-Identifier: GPL-2.0-or-later
8*1cdcfb6eSInès Varhol  *
9*1cdcfb6eSInès Varhol  * This work is licensed under the terms of the GNU GPL, version 2 or later.
10*1cdcfb6eSInès Varhol  * See the COPYING file in the top-level directory.
11*1cdcfb6eSInès Varhol  */
12*1cdcfb6eSInès Varhol 
13*1cdcfb6eSInès Varhol /*
14*1cdcfb6eSInès Varhol  * The reference used is the STMicroElectronics RM0351 Reference manual
15*1cdcfb6eSInès Varhol  * for STM32L4x5 and STM32L4x6 advanced Arm ® -based 32-bit MCUs.
16*1cdcfb6eSInès Varhol  * https://www.st.com/en/microcontrollers-microprocessors/stm32l4x5/documentation.html
17*1cdcfb6eSInès Varhol  */
18*1cdcfb6eSInès Varhol 
19*1cdcfb6eSInès Varhol #ifndef HW_STM32L4X5_GPIO_H
20*1cdcfb6eSInès Varhol #define HW_STM32L4X5_GPIO_H
21*1cdcfb6eSInès Varhol 
22*1cdcfb6eSInès Varhol #include "hw/sysbus.h"
23*1cdcfb6eSInès Varhol #include "qom/object.h"
24*1cdcfb6eSInès Varhol 
25*1cdcfb6eSInès Varhol #define TYPE_STM32L4X5_GPIO "stm32l4x5-gpio"
26*1cdcfb6eSInès Varhol OBJECT_DECLARE_SIMPLE_TYPE(Stm32l4x5GpioState, STM32L4X5_GPIO)
27*1cdcfb6eSInès Varhol 
28*1cdcfb6eSInès Varhol #define GPIO_NUM_PINS 16
29*1cdcfb6eSInès Varhol 
30*1cdcfb6eSInès Varhol struct Stm32l4x5GpioState {
31*1cdcfb6eSInès Varhol     SysBusDevice parent_obj;
32*1cdcfb6eSInès Varhol 
33*1cdcfb6eSInès Varhol     MemoryRegion mmio;
34*1cdcfb6eSInès Varhol 
35*1cdcfb6eSInès Varhol     /* GPIO registers */
36*1cdcfb6eSInès Varhol     uint32_t moder;
37*1cdcfb6eSInès Varhol     uint32_t otyper;
38*1cdcfb6eSInès Varhol     uint32_t ospeedr;
39*1cdcfb6eSInès Varhol     uint32_t pupdr;
40*1cdcfb6eSInès Varhol     uint32_t idr;
41*1cdcfb6eSInès Varhol     uint32_t odr;
42*1cdcfb6eSInès Varhol     uint32_t lckr;
43*1cdcfb6eSInès Varhol     uint32_t afrl;
44*1cdcfb6eSInès Varhol     uint32_t afrh;
45*1cdcfb6eSInès Varhol     uint32_t ascr;
46*1cdcfb6eSInès Varhol 
47*1cdcfb6eSInès Varhol     /* GPIO registers reset values */
48*1cdcfb6eSInès Varhol     uint32_t moder_reset;
49*1cdcfb6eSInès Varhol     uint32_t ospeedr_reset;
50*1cdcfb6eSInès Varhol     uint32_t pupdr_reset;
51*1cdcfb6eSInès Varhol 
52*1cdcfb6eSInès Varhol     /*
53*1cdcfb6eSInès Varhol      * External driving of pins.
54*1cdcfb6eSInès Varhol      * The pins can be set externally through the device
55*1cdcfb6eSInès Varhol      * anonymous input GPIOs lines under certain conditions.
56*1cdcfb6eSInès Varhol      * The pin must not be in push-pull output mode,
57*1cdcfb6eSInès Varhol      * and can't be set high in open-drain mode.
58*1cdcfb6eSInès Varhol      * Pins driven externally and configured to
59*1cdcfb6eSInès Varhol      * output mode will in general be "disconnected"
60*1cdcfb6eSInès Varhol      * (see `get_gpio_pinmask_to_disconnect()`)
61*1cdcfb6eSInès Varhol      */
62*1cdcfb6eSInès Varhol     uint16_t disconnected_pins;
63*1cdcfb6eSInès Varhol     uint16_t pins_connected_high;
64*1cdcfb6eSInès Varhol 
65*1cdcfb6eSInès Varhol     char *name;
66*1cdcfb6eSInès Varhol     Clock *clk;
67*1cdcfb6eSInès Varhol     qemu_irq pin[GPIO_NUM_PINS];
68*1cdcfb6eSInès Varhol };
69*1cdcfb6eSInès Varhol 
70*1cdcfb6eSInès Varhol #endif
71