[U-Boot] [PATCH v2 0/7] ARM: stm32: add network and qspi driver support to stm32f746-disco board

Michael Kurz michi.kurz at gmail.com
Fri Nov 4 20:21:05 CET 2016


This series adds support for the network and the qspi devices found on
the stm32f746 controller and enables those devices on the
stm32f746-disco board.

Changes in v2:
- add cleanup patch
- Replaced bit shifts and masks with BIT() and GENMASK() macro
- Moved STM32_SYSCFG_BASE into stm32.h header
- Add Acked-by tag to 'net: phy: add SMSC LAN8742 phy'
- Replaced bit shifts and masks with BIT() and GENMASK() macro

Michael Kurz (7):
  ARM: DTS: stm32: add stm32f746-disco device tree files
  ARM: stm32: cleanup stm32f7 files
  net: stm32: add designware mac glue code for stm32
  net: phy: add SMSC LAN8742 phy
  ARM: stm32: enable support for smsc phy on stm32f746-disco board
  ARM: SPI: stm32: add stm32f746 qspi driver
  SPI: add missing flag to micron/stm N25Q128 flash chips

 arch/arm/dts/Makefile                            |    2 +
 arch/arm/dts/armv7-m.dtsi                        |   24 +
 arch/arm/dts/stm32f746-disco.dts                 |  154 +++
 arch/arm/dts/stm32f746.dtsi                      |  397 +++++++
 arch/arm/include/asm/arch-stm32f4/stm32.h        |    2 +-
 arch/arm/include/asm/arch-stm32f7/fmc.h          |    7 +-
 arch/arm/include/asm/arch-stm32f7/gpt.h          |    9 +-
 arch/arm/include/asm/arch-stm32f7/rcc.h          |   64 --
 arch/arm/include/asm/arch-stm32f7/stm32.h        |  119 +-
 arch/arm/include/asm/arch-stm32f7/stm32_periph.h |   10 +-
 arch/arm/include/asm/arch-stm32f7/syscfg.h       |   38 +
 arch/arm/mach-stm32/stm32f7/clock.c              |  236 ++--
 arch/arm/mach-stm32/stm32f7/timer.c              |    4 +-
 board/st/stm32f746-disco/stm32f746-disco.c       |  126 +-
 configs/stm32f746-disco_defconfig                |   23 +-
 drivers/mtd/spi/sf_params.c                      |    4 +-
 drivers/mtd/stm32_flash.c                        |    2 +-
 drivers/net/designware.c                         |    1 +
 drivers/net/phy/smsc.c                           |   12 +
 drivers/serial/serial_stm32x7.c                  |    4 +-
 drivers/spi/Kconfig                              |    8 +
 drivers/spi/Makefile                             |    1 +
 drivers/spi/stm32_qspi.c                         |  628 ++++++++++
 include/configs/stm32f746-disco.h                |   10 +-
 include/dt-bindings/pinctrl/stm32f746-pinfunc.h  | 1324 ++++++++++++++++++++++
 25 files changed, 2954 insertions(+), 255 deletions(-)
 create mode 100644 arch/arm/dts/armv7-m.dtsi
 create mode 100644 arch/arm/dts/stm32f746-disco.dts
 create mode 100644 arch/arm/dts/stm32f746.dtsi
 delete mode 100644 arch/arm/include/asm/arch-stm32f7/rcc.h
 create mode 100644 arch/arm/include/asm/arch-stm32f7/syscfg.h
 create mode 100644 drivers/spi/stm32_qspi.c
 create mode 100644 include/dt-bindings/pinctrl/stm32f746-pinfunc.h

-- 
2.1.4



More information about the U-Boot mailing list