From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Roese Date: Mon, 5 Dec 2016 14:01:08 +0100 Subject: [U-Boot] Please pull u-boot-marvell/master Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Tom, please pull the following patches introducing the basic Armada-8k support for MVEBU. If things go smooth I plan to push the additional patches from Kosta for A7/8k in a few days. Thanks, Stefan The following changes since commit 194eded14ccb40af18e1a9fb8ab85903ee0803ef: Merge git://git.denx.de/u-boot-mpc85xx (2016-12-04 13:55:15 -0500) are available in the git repository at: git://www.denx.de/git/u-boot-marvell.git for you to fetch changes up to 5102af4d2f53ec8d76ce60d103c65ae062b9c8fe: sata: sata_mv: Fix misaligned cache warnings (2016-12-05 13:53:42 +0100) ---------------------------------------------------------------- Shadi Ammouri (1): pci: mvebu: Add PCIe driver for Armada-8K Stefan Roese (15): arm64: mvebu: Rename db-88f7040 files to armada-8k arm64: mvebu: Add Armada-80x0 dts/dtsi files arm64: mvebu: armada-8k: Only configure xHCI power on DB-88F7040 board arm64: mvebu: Add slave CP area to the memory map arm64: mvebu: Add support for the DB-88F8040 Armada 8k devel board arm64: mvebu: armada-cp110-master.dtsi: Rename comphy DT node names arm64: mvebu: armada-cp110-slave.dtsi: Add COMPHY / UTMI device tree nodes arm64: mvebu: armada-8040-db.dts: Add COMPHY configuration arm64: mvebu: armada-8040-db.dts: Add I2C and SPI aliases arm64: mvebu: Init COMPHY from the slave-CP on the A8k drivers/phy: marvell: Add support for the slave CP COMPHY device arm64: mvebu: Add regions for PCI spaces to the memory map arm64: mvebu: Add PCI support to DB-88F8040 board arm64: mvebu: Restrict memory size to a usable maximum sata: sata_mv: Fix misaligned cache warnings arch/arm/dts/Makefile | 1 + arch/arm/dts/armada-7040-db.dts | 6 +- arch/arm/dts/armada-8020.dtsi | 56 +++ arch/arm/dts/armada-8040-db.dts | 239 +++++++++ arch/arm/dts/armada-8040.dtsi | 56 +++ arch/arm/dts/armada-cp110-master.dtsi | 6 +- arch/arm/dts/armada-cp110-slave.dtsi | 268 +++++++++++ arch/arm/mach-mvebu/Kconfig | 10 +- arch/arm/mach-mvebu/arm64-common.c | 37 +- arch/arm/mach-mvebu/armada8k/cpu.c | 18 +- board/Marvell/mvebu_armada-8k/MAINTAINERS | 7 + .../{mvebu_db-88f7040 => mvebu_armada-8k}/Makefile | 0 board/Marvell/mvebu_armada-8k/board.c | 162 +++++++ board/Marvell/mvebu_db-88f7040/MAINTAINERS | 6 - board/Marvell/mvebu_db-88f7040/board.c | 152 ------ configs/mvebu_db-88f7040_defconfig | 4 +- configs/mvebu_db-88f8040_defconfig | 55 +++ drivers/block/sata_mv.c | 12 +- drivers/pci/Kconfig | 10 + drivers/pci/Makefile | 1 + drivers/pci/pcie_dw_mvebu.c | 535 +++++++++++++++++++++ drivers/phy/marvell/comphy.h | 2 +- drivers/phy/marvell/comphy_core.c | 15 +- .../{mvebu_db-88f7040.h => mvebu_armada-8k.h} | 14 +- 24 files changed, 1486 insertions(+), 186 deletions(-) create mode 100644 arch/arm/dts/armada-8020.dtsi create mode 100644 arch/arm/dts/armada-8040-db.dts create mode 100644 arch/arm/dts/armada-8040.dtsi create mode 100644 arch/arm/dts/armada-cp110-slave.dtsi create mode 100644 board/Marvell/mvebu_armada-8k/MAINTAINERS rename board/Marvell/{mvebu_db-88f7040 => mvebu_armada-8k}/Makefile (100%) create mode 100644 board/Marvell/mvebu_armada-8k/board.c delete mode 100644 board/Marvell/mvebu_db-88f7040/MAINTAINERS delete mode 100644 board/Marvell/mvebu_db-88f7040/board.c create mode 100644 configs/mvebu_db-88f8040_defconfig create mode 100644 drivers/pci/pcie_dw_mvebu.c rename include/configs/{mvebu_db-88f7040.h => mvebu_armada-8k.h} (94%)