public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/6] i.mx: add the initial i.mx6q core/board support
@ 2011-11-12 10:36 Jason Liu
  2011-11-12 10:36 ` [U-Boot] [PATCH 1/6] i.mx: i.mx5: Move some files to imx-common folder Jason Liu
                   ` (7 more replies)
  0 siblings, 8 replies; 42+ messages in thread
From: Jason Liu @ 2011-11-12 10:36 UTC (permalink / raw)
  To: u-boot

This patch-set add the initial support for freescale i.mx6q support.
freescale i.mx6q is a quad core built on arm cortex_a9 complex.

The patch-set has been tested ok on freescale i.mx6q Armadillo2 board and also
make sure it does not break i.mx5 support

Jason Liu (6):
  i.mx: i.mx5: Move some files to imx-common folder
  i.mx: Add the initial support for freescale i.MX6Q processor
  i.mx: mxc_gpio: add the i.mx6q support
  i.mx: serial_mxc: add the i.mx6q support
  i.mx: fsl_esdhc: add the i.mx6q support
  i.mx: i.mx6q: Add the initial support for i.mx6q ARM2 board

 MAINTAINERS                                        |    1 +
 Makefile                                           |    7 +
 arch/arm/cpu/armv7/imx-common/Makefile             |   47 +
 arch/arm/cpu/armv7/imx-common/cpu_info.c           |  108 ++
 arch/arm/cpu/armv7/{mx5 => imx-common}/speed.c     |    0
 arch/arm/cpu/armv7/{mx5 => imx-common}/timer.c     |   17 +-
 arch/arm/cpu/armv7/mx5/Makefile                    |    2 +-
 arch/arm/cpu/armv7/mx5/soc.c                       |   77 -
 arch/arm/cpu/armv7/mx6/Makefile                    |   48 +
 arch/arm/cpu/armv7/mx6/clock.c                     |  388 +++++
 arch/arm/cpu/armv7/mx6/iomux-v3.c                  |   76 +
 arch/arm/cpu/armv7/mx6/lowlevel_init.S             |   60 +
 arch/arm/cpu/armv7/{mx5/speed.c => mx6/soc.c}      |   40 +-
 arch/arm/include/asm/arch-mx6/ccm_regs.h           |  894 +++++++++++
 .../mx5/speed.c => include/asm/arch-mx6/clock.h}   |   45 +-
 .../mx5/speed.c => include/asm/arch-mx6/gpio.h}    |   28 +-
 arch/arm/include/asm/arch-mx6/imx-regs.h           |  233 +++
 arch/arm/include/asm/arch-mx6/iomux-v3.h           |  104 ++
 arch/arm/include/asm/arch-mx6/mx6x_pins.h          | 1683 ++++++++++++++++++++
 .../speed.c => include/asm/arch-mx6/sys_proto.h}   |   31 +-
 board/freescale/mx6qarm2/Makefile                  |   48 +
 board/freescale/mx6qarm2/imximage.cfg              |  167 ++
 board/freescale/mx6qarm2/mx6qarm2.c                |  163 ++
 boards.cfg                                         |    1 +
 drivers/gpio/mxc_gpio.c                            |    4 +-
 drivers/mmc/fsl_esdhc.c                            |   14 +-
 drivers/serial/serial_mxc.c                        |   10 +-
 include/configs/mx6qarm2.h                         |  163 ++
 28 files changed, 4303 insertions(+), 156 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/imx-common/Makefile
 create mode 100644 arch/arm/cpu/armv7/imx-common/cpu_info.c
 copy arch/arm/cpu/armv7/{mx5 => imx-common}/speed.c (100%)
 rename arch/arm/cpu/armv7/{mx5 => imx-common}/timer.c (84%)
 mode change 100644 => 100755
 create mode 100644 arch/arm/cpu/armv7/mx6/Makefile
 create mode 100644 arch/arm/cpu/armv7/mx6/clock.c
 create mode 100644 arch/arm/cpu/armv7/mx6/iomux-v3.c
 create mode 100644 arch/arm/cpu/armv7/mx6/lowlevel_init.S
 copy arch/arm/cpu/armv7/{mx5/speed.c => mx6/soc.c} (57%)
 create mode 100644 arch/arm/include/asm/arch-mx6/ccm_regs.h
 copy arch/arm/{cpu/armv7/mx5/speed.c => include/asm/arch-mx6/clock.h} (59%)
 copy arch/arm/{cpu/armv7/mx5/speed.c => include/asm/arch-mx6/gpio.h} (65%)
 create mode 100644 arch/arm/include/asm/arch-mx6/imx-regs.h
 create mode 100644 arch/arm/include/asm/arch-mx6/iomux-v3.h
 create mode 100644 arch/arm/include/asm/arch-mx6/mx6x_pins.h
 rename arch/arm/{cpu/armv7/mx5/speed.c => include/asm/arch-mx6/sys_proto.h} (65%)
 create mode 100644 board/freescale/mx6qarm2/Makefile
 create mode 100644 board/freescale/mx6qarm2/imximage.cfg
 create mode 100644 board/freescale/mx6qarm2/mx6qarm2.c
 create mode 100644 include/configs/mx6qarm2.h

-- 
1.7.4.1

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

end of thread, other threads:[~2011-11-16 12:15 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-12 10:36 [U-Boot] [PATCH 0/6] i.mx: add the initial i.mx6q core/board support Jason Liu
2011-11-12 10:36 ` [U-Boot] [PATCH 1/6] i.mx: i.mx5: Move some files to imx-common folder Jason Liu
2011-11-14  8:34   ` Stefano Babic
2011-11-14  8:57     ` Jason Hui
2011-11-14 11:28       ` Stefano Babic
2011-11-12 10:36 ` [U-Boot] [PATCH 2/6] i.mx: Add the initial support for freescale i.MX6Q processor Jason Liu
2011-11-13 23:11   ` Marek Vasut
2011-11-14  8:47     ` Jason Hui
2011-11-14 10:45       ` Marek Vasut
2011-11-15 10:10         ` Jason Hui
2011-11-15 11:08           ` Stefano Babic
2011-11-14  9:03   ` Stefano Babic
2011-11-14  9:42     ` Jason Hui
2011-11-14 11:49       ` Stefano Babic
2011-11-15 10:18         ` Jason Hui
2011-11-12 10:36 ` [U-Boot] [PATCH 3/6] i.mx: mxc_gpio: add the i.mx6q support Jason Liu
2011-11-14  9:04   ` Stefano Babic
2011-11-12 10:36 ` [U-Boot] [PATCH 4/6] i.mx: serial_mxc: " Jason Liu
2011-11-12 10:36 ` [U-Boot] [PATCH 5/6] i.mx: fsl_esdhc: " Jason Liu
2011-11-12 16:35   ` Marek Vasut
2011-11-14  8:37     ` Jason Hui
2011-11-14 10:42       ` Marek Vasut
2011-11-15  9:46         ` Jason Hui
2011-11-15 11:56           ` Stefano Babic
2011-11-16  1:36             ` Jason Hui
2011-11-16  2:24               ` Marek Vasut
2011-11-14  9:06   ` Stefano Babic
2011-11-12 10:36 ` [U-Boot] [PATCH 6/6] i.mx: i.mx6q: Add the initial support for i.mx6q ARM2 board Jason Liu
2011-11-12 19:42   ` Fabio Estevam
2011-11-14  8:59     ` Jason Hui
2011-11-12 20:13   ` Fabio Estevam
2011-11-14  9:10     ` Jason Hui
2011-11-13  7:04   ` Igor Grinberg
2011-11-14  9:13     ` Jason Hui
2011-11-14  9:25   ` Stefano Babic
2011-11-14  9:55     ` Jason Hui
2011-11-14 11:36       ` Stefano Babic
2011-11-16 11:34   ` Dirk Behme
2011-11-16 12:15     ` Jason Hui
2011-11-12 16:10 ` [U-Boot] [PATCH 0/6] i.mx: add the initial i.mx6q core/board support Dirk Behme
2011-11-14  8:11   ` Jason Hui
2011-11-16 11:56 ` Dirk Behme

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