aboutsummaryrefslogtreecommitdiff
path: root/arch/powerpc/include/asm/arch-mpc8xx/gpio.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-02-12 15:25:09 -0500
committerTom Rini <trini@konsulko.com>2023-02-12 15:25:09 -0500
commit386e77cda8b690dbf5b2b7c828b3313205e5078c (patch)
tree50308d557caee50e8decc77f4be5ddfdeabcc9cb /arch/powerpc/include/asm/arch-mpc8xx/gpio.h
parent0d91c88230fe8bd9f8d39ca2ab69cd6282e9f949 (diff)
parent6a8c36b936ab69a7521ec1ecfd20f7b85f7f59c5 (diff)
Merge branch 'for-2023.04' of https://source.denx.de/u-boot/custodians/u-boot-mpc8xx
- A fix for a long standing bug that has been exposed by commit 50128aeb0f8 ("cyclic: get rid of cyclic_init()") preventing 8xx boards from booting since u-boot 2023.01 - A GPIO driver for powerpc 8xx chip - Fixup for powerpc 8xx SPI driver - A new powerpc 8xx board - The two devices having that board.
Diffstat (limited to 'arch/powerpc/include/asm/arch-mpc8xx/gpio.h')
-rw-r--r--arch/powerpc/include/asm/arch-mpc8xx/gpio.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/arch-mpc8xx/gpio.h b/arch/powerpc/include/asm/arch-mpc8xx/gpio.h
new file mode 100644
index 0000000000..6b73acbaee
--- /dev/null
+++ b/arch/powerpc/include/asm/arch-mpc8xx/gpio.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+
+#ifndef _MPC8XX_GPIO_H_
+#define _MPC8XX_GPIO_H_
+
+struct mpc8xx_gpio_plat {
+ ulong addr;
+ unsigned long size;
+ uint ngpios;
+};
+
+#endif /* MPC8XX_GPIO_H_ */