diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/arch/arm/include/asm/arch-stm32h7 | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/arch/arm/include/asm/arch-stm32h7')
-rw-r--r-- | roms/u-boot/arch/arm/include/asm/arch-stm32h7/gpio.h | 12 | ||||
-rw-r--r-- | roms/u-boot/arch/arm/include/asm/arch-stm32h7/stm32.h | 20 |
2 files changed, 32 insertions, 0 deletions
diff --git a/roms/u-boot/arch/arm/include/asm/arch-stm32h7/gpio.h b/roms/u-boot/arch/arm/include/asm/arch-stm32h7/gpio.h new file mode 100644 index 000000000..4f57f175f --- /dev/null +++ b/roms/u-boot/arch/arm/include/asm/arch-stm32h7/gpio.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2017, STMicroelectronics - All Rights Reserved + * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics. + */ + +#ifndef _STM32_GPIO_H_ +#define _STM32_GPIO_H_ + +#include <asm/arch-stm32/gpio.h> + +#endif /* _STM32_GPIO_H_ */ diff --git a/roms/u-boot/arch/arm/include/asm/arch-stm32h7/stm32.h b/roms/u-boot/arch/arm/include/asm/arch-stm32h7/stm32.h new file mode 100644 index 000000000..2b0a67000 --- /dev/null +++ b/roms/u-boot/arch/arm/include/asm/arch-stm32h7/stm32.h @@ -0,0 +1,20 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2017, STMicroelectronics - All Rights Reserved + * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics. + */ + +#ifndef _ASM_ARCH_HARDWARE_H +#define _ASM_ARCH_HARDWARE_H + +/* + * This empty files is needed to not break compilation + * Some common drivers to STM32F4/F7 and H7 include a stm32.h file + * Some cleanup need to be done to communalize all the following + * stm32.h files: + * + * arch/arm/include/asm/arch-stm32f1/stm32.h + * arch/arm/include/asm/arch-stm32f4/stm32.h + * arch/arm/include/asm/arch-stm32f7/stm32.h + */ +#endif /* _ASM_ARCH_HARDWARE_H */ |