mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v2 00/14] Add support for Lenovo ix4-300d NAS
@ 2015-04-20 20:11 Sebastian Hesselbarth
  2015-04-20 20:11 ` [PATCH v2 01/14] net: phy: Support Marvell 88E1318S PHY Sebastian Hesselbarth
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Sebastian Hesselbarth @ 2015-04-20 20:11 UTC (permalink / raw)
  To: Sebastian Hesselbarth; +Cc: Thomas Petazzoni, barebox

This is v2 of the patch set adding support for the Lenovo ix4-300d
NAS based on Marvell Armada XP MV78230 SoC. Compared to v1 [1] there
have been the following changes:

- SPI GPIO bitbang driver now respects -EPROBE_DEFER
- Add ix4 and its drivers to mvebu_defconfig

[1] http://www.spinics.net/lists/u-boot-v2/msg23048.html

Sebastian Hesselbarth (14):
  net: phy: Support Marvell 88E1318S PHY
  gpio: Add driver for 74x164 compatible shift-registers
  spi: ath79: move spidelay from spi-bitbang-txrx
  spi: Add SPI GPIO bitbang driver
  bus: mvebu-mbus: Remove coherency attribute
  bus: mvebu-mbus: Drop device reference
  bus: mvebu-mbus: Convert mbus platform driver to direct driver
  ARM: mvebu: Move PCIe register defines to socid.h
  ARM: mvebu: armada-xp: Fixup broken MV78230-A0 SoC ID
  ARM: mvebu: armada-xp: Limit PUP access to Armada XP
  ARM: mvebu: armada-xp: Use MBUS_ERR_PROP_EN define
  ARM: mvebu: armada-xp: Sort boards and images alphabetically
  ARM: mvebu: armada-xp: Add Lenovo Iomega ix4-300d
  ARM: Add Lenovo ix4 and related drivers to mvebu_defconfig

 arch/arm/boards/Makefile                           |   1 +
 arch/arm/boards/lenovo-ix4-300d/Makefile           |   1 +
 arch/arm/boards/lenovo-ix4-300d/kwbimage.cfg       |   5 +
 arch/arm/boards/lenovo-ix4-300d/lowlevel.c         |  35 +++
 arch/arm/configs/mvebu_defconfig                   |   5 +-
 arch/arm/dts/Makefile                              |   1 +
 arch/arm/dts/armada-xp-lenovo-ix4-300d-bb.dts      |  14 ++
 arch/arm/mach-mvebu/Kconfig                        |   8 +-
 arch/arm/mach-mvebu/armada-370-xp.c                |  87 +++++++-
 arch/arm/mach-mvebu/common.c                       |   5 +-
 arch/arm/mach-mvebu/dove.c                         |   1 +
 .../mach-mvebu/include/mach/armada-370-xp-regs.h   |  31 ++-
 arch/arm/mach-mvebu/include/mach/socid.h           |   4 +
 arch/arm/mach-mvebu/kirkwood.c                     |   1 +
 drivers/bus/mvebu-mbus.c                           |  48 ++---
 drivers/gpio/Kconfig                               |   8 +
 drivers/gpio/Makefile                              |   1 +
 drivers/gpio/gpio-74164.c                          | 131 +++++++++++
 drivers/net/phy/marvell.c                          |  31 +++
 drivers/spi/Kconfig                                |   4 +
 drivers/spi/Makefile                               |   1 +
 drivers/spi/ath79_spi.c                            |   2 +
 drivers/spi/gpio_spi.c                             | 240 +++++++++++++++++++++
 drivers/spi/spi-bitbang-txrx.h                     |   2 -
 images/Makefile.mvebu                              |  31 ++-
 include/linux/mbus.h                               |   2 +
 include/spi/spi_gpio.h                             |  36 ++++
 27 files changed, 671 insertions(+), 65 deletions(-)
 create mode 100644 arch/arm/boards/lenovo-ix4-300d/Makefile
 create mode 100644 arch/arm/boards/lenovo-ix4-300d/kwbimage.cfg
 create mode 100644 arch/arm/boards/lenovo-ix4-300d/lowlevel.c
 create mode 100644 arch/arm/dts/armada-xp-lenovo-ix4-300d-bb.dts
 create mode 100644 drivers/gpio/gpio-74164.c
 create mode 100644 drivers/spi/gpio_spi.c
 create mode 100644 include/spi/spi_gpio.h

---
Cc: barebox@lists.infradead.org
Cc: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-- 
2.1.0


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

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

end of thread, other threads:[~2015-04-23  5:58 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-20 20:11 [PATCH v2 00/14] Add support for Lenovo ix4-300d NAS Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 01/14] net: phy: Support Marvell 88E1318S PHY Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 02/14] gpio: Add driver for 74x164 compatible shift-registers Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 03/14] spi: ath79: move spidelay from spi-bitbang-txrx Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 04/14] spi: Add SPI GPIO bitbang driver Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 05/14] bus: mvebu-mbus: Remove coherency attribute Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 06/14] bus: mvebu-mbus: Drop device reference Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 07/14] bus: mvebu-mbus: Convert mbus platform driver to direct driver Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 08/14] ARM: mvebu: Move PCIe register defines to socid.h Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 09/14] ARM: mvebu: armada-xp: Fixup broken MV78230-A0 SoC ID Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 10/14] ARM: mvebu: armada-xp: Limit PUP access to Armada XP Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 11/14] ARM: mvebu: armada-xp: Use MBUS_ERR_PROP_EN define Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 12/14] ARM: mvebu: armada-xp: Sort boards and images alphabetically Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 13/14] ARM: mvebu: armada-xp: Add Lenovo Iomega ix4-300d Sebastian Hesselbarth
2015-04-20 20:11 ` [PATCH v2 14/14] ARM: Add Lenovo ix4 and related drivers to mvebu_defconfig Sebastian Hesselbarth
2015-04-23  5:57 ` [PATCH v2 00/14] Add support for Lenovo ix4-300d NAS Sascha Hauer

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