mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v1 00/12] ARM: stm32mp: add drivers for GPIO, pinctrl
@ 2019-06-17 15:07 Ahmad Fatoum
  2019-06-17 15:07 ` [PATCH v1 01/12] ARM: dts: stm32mp157a-dk1.dts: include upstream dts before barebox' Ahmad Fatoum
                   ` (12 more replies)
  0 siblings, 13 replies; 19+ messages in thread
From: Ahmad Fatoum @ 2019-06-17 15:07 UTC (permalink / raw)
  To: barebox

Feedback welcome.

I still have a patch that ports designware_qos from U-Boot to barebox
sitting on my branch. It works fine, but it needs refactoring, so it
can reuse existing functionality in the generic designware MAC driver
that's already in barebox. That will take a while, but if there's interest
in it, I can push the current state somwhere till then.

Cheers,
Ahmad Fatoum (12):
  ARM: dts: stm32mp157a-dk1.dts: include upstream dts before barebox'
  ARM: dts: stm32mp: factor out common DK nodes into dtsi
  gpiolib: add gpio_get_chip helper
  driver: add stubs for hardware spinlocks
  pinctrl: add driver for STM32 GPIO and pin multiplexer
  ARM: dts: stm32mp157a-dk1: enable heartbeat and error LEDs
  ARM: stm32mp: turn on GPIO related options
  ARM: stm32mp157c-dk2: add board-specific sysconf fixups
  ARM: psci: fix erroneous call of ->system_reset on system_off
  ARM: sm: move get_gicd_base_address to header for reuse
  ARM: stm32mp: implement PSCI support
  ARM: stm32mp157c-dk2: boot kernel in nonsecure mode

 arch/arm/Kconfig                              |   1 +
 arch/arm/boards/stm32mp157c-dk2/Makefile      |   1 +
 arch/arm/boards/stm32mp157c-dk2/board.c       | 106 +++++
 .../defaultenv-dk2/nv/bootm.secure_state      |   1 +
 arch/arm/configs/stm32mp_defconfig            |   8 +-
 arch/arm/cpu/psci.c                           |   6 +-
 arch/arm/cpu/sm.c                             |  29 +-
 arch/arm/dts/stm32mp157a-dk1.dts              |  58 +--
 arch/arm/dts/stm32mp157a-dk1.dtsi             |  36 ++
 arch/arm/dts/stm32mp157c-dk2.dts              |  10 +-
 arch/arm/dts/stm32mp157c.dtsi                 |  15 +
 arch/arm/include/asm/gic.h                    |  29 ++
 arch/arm/mach-stm32mp/Kconfig                 |   2 +
 arch/arm/mach-stm32mp/Makefile                |   2 +-
 arch/arm/mach-stm32mp/include/mach/stm32.h    |  16 +
 arch/arm/mach-stm32mp/psci.c                  | 166 +++++++
 drivers/gpio/gpiolib.c                        |   7 +
 drivers/pinctrl/Kconfig                       |   6 +
 drivers/pinctrl/Makefile                      |   1 +
 drivers/pinctrl/pinctrl-stm32.c               | 425 ++++++++++++++++++
 include/gpio.h                                |   1 +
 include/hwspinlock.h                          |  31 ++
 include/soc/stm32/gpio.h                      | 120 +++++
 23 files changed, 980 insertions(+), 97 deletions(-)
 create mode 100644 arch/arm/boards/stm32mp157c-dk2/defaultenv-dk2/nv/bootm.secure_state
 create mode 100644 arch/arm/dts/stm32mp157a-dk1.dtsi
 create mode 100644 arch/arm/mach-stm32mp/psci.c
 create mode 100644 drivers/pinctrl/pinctrl-stm32.c
 create mode 100644 include/hwspinlock.h
 create mode 100644 include/soc/stm32/gpio.h

-- 
2.20.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2019-07-04  7:01 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-17 15:07 [PATCH v1 00/12] ARM: stm32mp: add drivers for GPIO, pinctrl Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 01/12] ARM: dts: stm32mp157a-dk1.dts: include upstream dts before barebox' Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 02/12] ARM: dts: stm32mp: factor out common DK nodes into dtsi Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 03/12] gpiolib: add gpio_get_chip helper Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 04/12] driver: add stubs for hardware spinlocks Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 05/12] pinctrl: add driver for STM32 GPIO and pin multiplexer Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 06/12] ARM: dts: stm32mp157a-dk1: enable heartbeat and error LEDs Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 07/12] ARM: stm32mp: turn on GPIO related options Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 08/12] ARM: stm32mp157c-dk2: add board-specific sysconf fixups Ahmad Fatoum
2019-06-17 15:14   ` Ahmad Fatoum
2019-06-18  5:43     ` Rouven Czerwinski
2019-06-17 15:07 ` [PATCH v1 09/12] ARM: psci: fix erroneous call of ->system_reset on system_off Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 10/12] ARM: sm: move get_gicd_base_address to header for reuse Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 11/12] ARM: stm32mp: implement PSCI support Ahmad Fatoum
2019-06-17 15:07 ` [PATCH v1 12/12] ARM: stm32mp157c-dk2: boot kernel in nonsecure mode Ahmad Fatoum
2019-06-20 14:32 ` [PATCH v1 00/12] ARM: stm32mp: add drivers for GPIO, pinctrl Sascha Hauer
2019-07-03 16:51   ` Ahmad Fatoum
2019-07-04  5:39     ` Ahmad Fatoum
2019-07-04  7:01       ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox