public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v1 0/9] arm: ls102xa: Add Freescale LS102xA SoC and LS1021AQDS board support
@ 2014-05-30  7:22 Alison Wang
  2014-05-30  7:22 ` [U-Boot] [PATCH 1/9] arm: ls102xa: Add Freescale LS102xA SoC support Alison Wang
                   ` (9 more replies)
  0 siblings, 10 replies; 15+ messages in thread
From: Alison Wang @ 2014-05-30  7:22 UTC (permalink / raw)
  To: u-boot

This series contain the support for Freescale LS102xA SoC and LS1021AQDS board.

The QorIQ LS1 family is built on Layerscape architecture, the industry's first
software-aware, core-agnostic networking architecture to offer unprecedented
efficiency and scale.

Freescale LS102xA is a set of SoCs combines two ARM Cortex-A7 cores that have
been optimized for high reliability and pack the highest level of integration
available for sub-3 W embedded communications processors with Layerscape
architecture and with a comprehensive enablement model focused on ease of
programmability.

For the detail information about LS1021AQDS board, please refer to README in the patch.

----------------------------------------------------------------
Alison Wang (5):
      arm: ls102xa: Add Freescale LS102xA SoC support
      arm: ls102xa: Add i2c support for LS102xA
      arm: ls102xa: Add etsec support for LS102xA
      arm: ls102xa: Add esdhc support for LS102xA
      arm: ls102xa: Add basic support for LS1021AQDS board

Claudiu Manoil (1):
      net: Merge asm/fsl_enet.h into fsl_mdio.h

York Sun (3):
      driver/ddr/freescale: Add support of accumulate ECC
      driver/ddr/freescale: Fix DDR3 driver for ARM
      driver/ddr/fsl: Add support of overriding chip select write leveling

 arch/powerpc/include/asm/fsl_enet.h           |  24 --
 board/freescale/ls1021aqds/Makefile           |   8 +
 board/freescale/ls1021aqds/README             | 112 +++++++++
 board/freescale/ls1021aqds/ddr.c              | 169 +++++++++++++
 board/freescale/ls1021aqds/ddr.h              |  64 +++++
 board/freescale/ls1021aqds/ls1021aqds.c       | 208 ++++++++++++++++
 board/freescale/ls1021aqds/ls1021aqds_qixis.h |  35 +++
 board/freescale/mpc8360emds/mpc8360emds.c     |   2 +-
 board/freescale/mpc837xemds/mpc837xemds.c     |   1 -
 boards.cfg                                    |   1 +
 drivers/ddr/fsl/arm_ddr_gen3.c                |   2 +-
 drivers/ddr/fsl/ctrl_regs.c                   |   8 +
 drivers/ddr/fsl/interactive.c                 |   2 +
 drivers/i2c/mxc_i2c.c                         |   2 +-
 drivers/mmc/fsl_esdhc.c                       |   4 +-
 drivers/net/fm/dtsec.c                        |   1 -
 drivers/net/fm/fm.h                           |   2 +-
 drivers/net/fm/init.c                         |   1 +
 drivers/net/fm/memac.c                        |   1 -
 drivers/net/fm/tgec.c                         |   1 -
 drivers/net/fsl_mdio.c                        |  16 +-
 drivers/net/tsec.c                            |   7 +
 drivers/qe/uec.h                              |   1 -
 include/common.h                              |   5 +-
 include/configs/ls1021aqds.h                  | 418 ++++++++++++++++++++++++++++++++
 include/fm_eth.h                              |   2 +-
 include/fsl_ddr_sdram.h                       |   2 +
 include/fsl_esdhc.h                           |  14 +-
 include/fsl_mdio.h                            |  13 +-
 include/tsec.h                                |   7 +-
 30 files changed, 1087 insertions(+), 46 deletions(-)
 delete mode 100644 arch/powerpc/include/asm/fsl_enet.h
 create mode 100644 board/freescale/ls1021aqds/Makefile
 create mode 100644 board/freescale/ls1021aqds/README
 create mode 100644 board/freescale/ls1021aqds/ddr.c
 create mode 100644 board/freescale/ls1021aqds/ddr.h
 create mode 100644 board/freescale/ls1021aqds/ls1021aqds.c
 create mode 100644 board/freescale/ls1021aqds/ls1021aqds_qixis.h
 create mode 100644 include/configs/ls1021aqds.h

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

end of thread, other threads:[~2014-06-03 14:36 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-30  7:22 [U-Boot] [PATCH v1 0/9] arm: ls102xa: Add Freescale LS102xA SoC and LS1021AQDS board support Alison Wang
2014-05-30  7:22 ` [U-Boot] [PATCH 1/9] arm: ls102xa: Add Freescale LS102xA SoC support Alison Wang
2014-06-03 14:36   ` Diana Craciun
2014-05-30  7:22 ` [U-Boot] [PATCH 2/9] arm: ls102xa: Add i2c support for LS102xA Alison Wang
2014-05-30  7:22 ` [U-Boot] [PATCH 3/9] net: Merge asm/fsl_enet.h into fsl_mdio.h Alison Wang
2014-05-30  7:22 ` [U-Boot] [PATCH 4/9] arm: ls102xa: Add etsec support for LS102xA Alison Wang
2014-05-30  7:22 ` [U-Boot] [PATCH 5/9] arm: ls102xa: Add esdhc " Alison Wang
2014-05-30  7:22 ` [U-Boot] [PATCH 6/9] driver/ddr/freescale: Add support of accumulate ECC Alison Wang
2014-05-30  7:23 ` [U-Boot] [PATCH 7/9] driver/ddr/freescale: Fix DDR3 driver for ARM Alison Wang
2014-05-30  7:23 ` [U-Boot] [PATCH 8/9] driver/ddr/fsl: Add support of overriding chip select write leveling Alison Wang
2014-05-30  7:23 ` [U-Boot] [PATCH 9/9] arm: ls102xa: Add basic support for LS1021AQDS board Alison Wang
2014-05-30 18:28   ` Fabio Estevam
2014-05-30 20:48     ` Otavio Salvador
2014-06-02  6:45     ` Huan Wang
2014-05-30 13:07 ` [U-Boot] [PATCH v1 0/9] arm: ls102xa: Add Freescale LS102xA SoC and LS1021AQDS board support Andrew Dyer

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