All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH for next 00/15] New Phytec i.MX6 Patches
@ 2016-04-27 10:04 Stefan Christ
  2016-04-27 10:04 ` [PATCH for next 01/15] ARM: imx_v7_defconfig: enable NANDTEST command Stefan Christ
                   ` (14 more replies)
  0 siblings, 15 replies; 23+ messages in thread
From: Stefan Christ @ 2016-04-27 10:04 UTC (permalink / raw)
  To: barebox

Hi,

a new round of barebox patches for the i.MX6 Phytec boards. New variants, two
fixes for phyBOARD-SUBRA/ALCOR and phyFLEX-i.MX6 and industrial/automotive RAM
calibration values for phyCORE-i.MX6 Solo/DualLite.

These patches are based on the next branch and the current changes in patches

    ARM: i.MX: increase barebox partition sizes
    ARM: dts: Fix partition names

are already integrated.

Kind reagards,
	Stefan Christ


Christian Hemp (1):
  ARM: phytec-som-imx6: add phyCORE-i.MX6 Quad 2GiB RAM

Jan Remmet (1):
  imx6qdl-phytec-pfla02.dtsi: add i2c eeprom

Stefan Christ (13):
  ARM: imx_v7_defconfig: enable NANDTEST command
  ARM: imx_v7_defconfig: add command mmc_extcsd
  ARM: imx6q: add support for phyBOARD-SUBRA-i.MX6 Quad
  ARM: dts: imx6: phyboards: reduce clock speed for usdhc3
  ARM: dts: pfla02: use long enough reset for ethernet phy
  ARM: phytec-som-imx6: add barebox partitions for MMC
  ARM: phytec-som-imx6: add boot device emmc and automount
  ARM: phytec-som-imx6: fix bootsource for phyCORE-i.MX6
  ARM: phytec-som-imx6: add phyCORE-i.MX6 DualLite
  ARM: phytec-som-imx6: update RAM calibration for phycore-imx6dl
  ARM: phytec-som-imx6: rename environment folder
  ARM: phytec-som-imx6: adapt main update handler for eMMC
  ARM: phytec-som-imx6: add NOR for phycore-imx6 emmc

 arch/arm/boards/phytec-som-imx6/Makefile           |  2 +-
 arch/arm/boards/phytec-som-imx6/board.c            | 17 +++--
 .../defaultenv-physom-imx6-mira/init/automount     | 14 -----
 .../defaultenv-physom-imx6-phycore/boot/emmc       |  5 ++
 .../defaultenv-physom-imx6-phycore/init/automount  | 17 +++++
 .../defaultenv-physom-imx6-phycore/init/bootsource | 19 ++++++
 .../flash-header-phytec-pcm058-2gib.imxcfg         |  8 +++
 .../flash-header-phytec-pcm058dl-1gib.imxcfg       |  8 +++
 .../phytec-som-imx6/flash-header-phytec-pcm058dl.h | 24 ++++----
 arch/arm/boards/phytec-som-imx6/lowlevel.c         |  3 +
 arch/arm/configs/imx_v7_defconfig                  |  2 +
 arch/arm/dts/Makefile                              |  4 +-
 arch/arm/dts/imx6dl-phytec-phyboard-subra.dts      | 17 +----
 arch/arm/dts/imx6dl-phytec-phycore-som-emmc.dts    | 72 ++++++++++++++++++++++
 arch/arm/dts/imx6q-phytec-phyboard-alcor.dts       |  1 +
 arch/arm/dts/imx6q-phytec-phyboard-subra.dts       | 20 ++++++
 arch/arm/dts/imx6q-phytec-phycore-som-emmc.dts     | 21 +++++++
 arch/arm/dts/imx6qdl-phytec-pfla02.dtsi            | 13 ++++
 arch/arm/dts/imx6qdl-phytec-phyboard-subra.dtsi    | 30 +++++++++
 arch/arm/dts/imx6qdl-phytec-phycore-som.dtsi       |  1 +
 images/Makefile.imx                                | 15 +++++
 21 files changed, 265 insertions(+), 48 deletions(-)
 delete mode 100644 arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6-mira/init/automount
 create mode 100644 arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6-phycore/boot/emmc
 create mode 100644 arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6-phycore/init/automount
 create mode 100644 arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6-phycore/init/bootsource
 create mode 100644 arch/arm/boards/phytec-som-imx6/flash-header-phytec-pcm058-2gib.imxcfg
 create mode 100644 arch/arm/boards/phytec-som-imx6/flash-header-phytec-pcm058dl-1gib.imxcfg
 create mode 100644 arch/arm/dts/imx6dl-phytec-phycore-som-emmc.dts
 create mode 100644 arch/arm/dts/imx6q-phytec-phyboard-subra.dts
 create mode 100644 arch/arm/dts/imx6qdl-phytec-phyboard-subra.dtsi

-- 
1.9.1


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

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

end of thread, other threads:[~2016-05-03  7:12 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-27 10:04 [PATCH for next 00/15] New Phytec i.MX6 Patches Stefan Christ
2016-04-27 10:04 ` [PATCH for next 01/15] ARM: imx_v7_defconfig: enable NANDTEST command Stefan Christ
2016-04-27 10:04 ` [PATCH for next 02/15] ARM: imx_v7_defconfig: add command mmc_extcsd Stefan Christ
2016-04-27 10:04 ` [PATCH for next 03/15] ARM: imx6q: add support for phyBOARD-SUBRA-i.MX6 Quad Stefan Christ
2016-04-27 10:04 ` [PATCH for next 04/15] imx6qdl-phytec-pfla02.dtsi: add i2c eeprom Stefan Christ
2016-04-27 10:04 ` [PATCH for next 05/15] ARM: dts: imx6: phyboards: reduce clock speed for usdhc3 Stefan Christ
2016-04-27 10:04 ` [PATCH for next 06/15] ARM: dts: pfla02: use long enough reset for ethernet phy Stefan Christ
2016-04-27 10:04 ` [PATCH for next 07/15] ARM: phytec-som-imx6: add barebox partitions for MMC Stefan Christ
2016-04-27 10:04 ` [PATCH for next 08/15] ARM: phytec-som-imx6: add boot device emmc and automount Stefan Christ
2016-04-28  8:34   ` Sascha Hauer
2016-04-28 11:56     ` Holger Schurig
2016-04-28 20:31       ` Trent Piepho
2016-04-29  7:25     ` Stefan Christ
2016-05-02  7:51       ` Sascha Hauer
2016-05-02  9:03         ` Stefan Christ
2016-05-03  7:12           ` Sascha Hauer
2016-04-27 10:04 ` [PATCH for next 09/15] ARM: phytec-som-imx6: fix bootsource for phyCORE-i.MX6 Stefan Christ
2016-04-27 10:04 ` [PATCH for next 10/15] ARM: phytec-som-imx6: add phyCORE-i.MX6 Quad 2GiB RAM Stefan Christ
2016-04-27 10:04 ` [PATCH for next 11/15] ARM: phytec-som-imx6: add phyCORE-i.MX6 DualLite Stefan Christ
2016-04-27 10:04 ` [PATCH for next 12/15] ARM: phytec-som-imx6: update RAM calibration for phycore-imx6dl Stefan Christ
2016-04-27 10:04 ` [PATCH for next 13/15] ARM: phytec-som-imx6: rename environment folder Stefan Christ
2016-04-27 10:04 ` [PATCH for next 14/15] ARM: phytec-som-imx6: adapt main update handler for eMMC Stefan Christ
2016-04-27 10:04 ` [PATCH for next 15/15] ARM: phytec-som-imx6: add NOR for phycore-imx6 emmc Stefan Christ

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.