public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH 00/10] [ARM] TQMA31: new board
@ 2008-07-04 14:50 Jens Gehrlein
  2008-07-04 14:50 ` [U-Boot-Users] [PATCH 01/10] [ARM] MXC: insert bus busy check in i2c_probe Jens Gehrlein
                   ` (11 more replies)
  0 siblings, 12 replies; 34+ messages in thread
From: Jens Gehrlein @ 2008-07-04 14:50 UTC (permalink / raw)
  To: u-boot

Hi,

the following patches introduce the i.MX31 (ARM1136) based board TQMA31.
Used toolchain was ELDK 4.1.

The first three patches fix some bugs in mxc/mx31 common parts. I compiled
the im31_phycore, the imx31_litekit and the mx31ads U-Boots for this.
But I don't have boards to test them.

Patch 04/10 cannot successfully be compiled without having Patch 03/10 applied.

Patch 03/10 has been on the mailing list in a similar form, but it seems that
nobody picked it up. So I want give it a chance with my patch series.

Who will pick up this patch series (if there are no complaints)? Peter?

Kind regards,
Jens

---

Jens Gehrlein (10):
      [ARM] TQMA31: new kernel param. to pass the eth MAC addr to the Linux eth chip driver
      [ARM] TQMA31: add FPGA configuration flash
      [ARM] TQMA31: adjust pad property of IPU pin FPSHIFT for the display
      [ARM] TQMA31: adjust voltage regulators in PMIC MC13738
      [ARM] TQMA31: add support for SPI and SPI device MC13783-RTC
      [ARM] TQMA31: add support for I2C, I2C temperature sensor and I2C-EEPROM
      [ARM] TQMA31: add new board with i.MX31 processor
      [ARM] MX31: fix typos in defines for UART and SPI IO multiplexer pins
      [ARM] MX31: fix bit masks in function mx31_decode_pll()
      [ARM] MXC: insert bus busy check in i2c_probe


 MAINTAINERS                           |    4 
 MAKEALL                               |    1 
 Makefile                              |    3 
 board/imx31_litekit/imx31_litekit.c   |    2 
 board/imx31_phycore/imx31_phycore.c   |    4 
 board/mx31ads/mx31ads.c               |    2 
 board/tqc/tqma31/Makefile             |   48 ++++
 board/tqc/tqma31/config.mk            |    2 
 board/tqc/tqma31/lowlevel_init.S      |  375 +++++++++++++++++++++++++++++++++
 board/tqc/tqma31/tqma31.c             |  269 ++++++++++++++++++++++++
 board/tqc/tqma31/u-boot.lds           |   72 ++++++
 cpu/arm1136/mx31/generic.c            |   21 ++
 drivers/i2c/mxc_i2c.c                 |   23 ++
 include/asm-arm/arch-mx31/mx31-regs.h |   92 ++++++++
 include/asm-arm/arch-mx31/mx31.h      |    1 
 include/configs/TQMA31.h              |  337 ++++++++++++++++++++++++++++++
 16 files changed, 1248 insertions(+), 8 deletions(-)
 create mode 100644 board/tqc/tqma31/Makefile
 create mode 100644 board/tqc/tqma31/config.mk
 create mode 100644 board/tqc/tqma31/lowlevel_init.S
 create mode 100644 board/tqc/tqma31/tqma31.c
 create mode 100644 board/tqc/tqma31/u-boot.lds
 create mode 100644 include/configs/TQMA31.h

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

end of thread, other threads:[~2008-07-09 16:31 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-04 14:50 [U-Boot-Users] [PATCH 00/10] [ARM] TQMA31: new board Jens Gehrlein
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 01/10] [ARM] MXC: insert bus busy check in i2c_probe Jens Gehrlein
2008-07-05 15:59   ` Jean-Christophe PLAGNIOL-VILLARD
2008-07-07 12:21     ` Jens Gehrlein
2008-07-07 14:55       ` Wolfgang Denk
2008-07-07 15:24         ` Jens Gehrlein
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 02/10] [ARM] MX31: fix bit masks in function mx31_decode_pll() Jens Gehrlein
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 03/10] [ARM] MX31: fix typos in defines for UART and SPI IO multiplexer pins Jens Gehrlein
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 04/10] [ARM] TQMA31: add new board with i.MX31 processor Jens Gehrlein
2008-07-04 18:28   ` Magnus Lilja
2008-07-06 12:04   ` Magnus Lilja
2008-07-07 10:27   ` Detlev Zundel
2008-07-07 11:26     ` Jens Gehrlein
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 05/10] [ARM] TQMA31: add support for I2C, I2C temperature sensor and I2C-EEPROM Jens Gehrlein
2008-07-08 10:36   ` Jean-Christophe PLAGNIOL-VILLARD
2008-07-08 11:30     ` Jens Gehrlein
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 06/10] [ARM] TQMA31: add support for SPI and SPI device MC13783-RTC Jens Gehrlein
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 07/10] [ARM] TQMA31: adjust voltage regulators in PMIC MC13738 Jens Gehrlein
2008-07-04 18:28   ` Magnus Lilja
2008-07-08  8:55     ` Jens Gehrlein
2008-07-09 16:01       ` Magnus Lilja
2008-07-09 16:11         ` Detlev Zundel
2008-07-09 16:31           ` Jean-Christophe PLAGNIOL-VILLARD
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 08/10] [ARM] TQMA31: adjust pad property of IPU pin FPSHIFT for the display Jens Gehrlein
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 09/10] [ARM] TQMA31: add FPGA configuration flash Jens Gehrlein
2008-07-08 10:37   ` Jean-Christophe PLAGNIOL-VILLARD
2008-07-04 14:50 ` [U-Boot-Users] [PATCH 10/10] [ARM] TQMA31: new kernel param. to pass the eth MAC addr to the Linux eth chip driver Jens Gehrlein
2008-07-05 16:18   ` Jean-Christophe PLAGNIOL-VILLARD
2008-07-07  7:38     ` Jens Gehrlein
2008-07-04 15:01 ` [U-Boot-Users] [PATCH 00/10] [ARM] TQMA31: new board Jens Gehrlein
2008-07-04 16:43   ` Peter Pearse
2008-07-06 22:38     ` Wolfgang Denk
2008-07-06 22:38   ` Wolfgang Denk
2008-07-04 18:28 ` Magnus Lilja

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