From: Tom <Tom.Rix@windriver.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [GIT PULL] Pull request: u-boot-imx
Date: Thu, 04 Mar 2010 10:03:56 -0600 [thread overview]
Message-ID: <4B8FD9EC.5030405@windriver.com> (raw)
In-Reply-To: <4B8D5CCC.6010401@denx.de>
There are some compiler warnings.
These should be resolved.
mx51evk.ERR
soc.c: In function 'print_cpuinfo':
soc.c:68: warning: implicit declaration of function 'get_mcu_main_clk'
soc.c: In function 'cpu_mmc_init':
soc.c:99: warning: implicit declaration of function 'fsl_esdhc_mmc_init'
clock.c:45: warning: initialization makes pointer from integer without a cast
speed.c: In function 'get_clocks':
speed.c:35: warning: implicit declaration of function 'mxc_get_clock'
mx51evk.c: In function 'board_init':
mx51evk.c:354: warning: implicit declaration of function 'get_cpu_rev'
Tom
Stefano Babic wrote:
> Hi Tom,
>
> The following changes since commit f3651764e57e353251695691677bd95ba5a420bc:
> Frans Meulenbroeks (1):
> cmd_itest.c: fix pointer dereferencing
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-imx master
>
> John Rigby (5):
> mxc_serial replace platform specific clock
> Add support for Freescale MX25 SOC
> fec_mxc: cleanup and factor out MX27 dependencies
> fec_mxc: add MX25 support
> Add support for KARO TX25 board
>
> Stefano Babic (9):
> MX51: Add initial support for the Freescale MX51
> MX51: Add register definitions
> MX51: Add pin and multiplexer definitions.
> serial_mxc: add support for MX51 processor
> mmc: check correctness of the voltage mask in ocr
> MMC: add weak function to detect MMC/SD card
> ARM: add accessors functions
> fsl_esdhc: add support for mx51 processor
> Add initial support for Freescale mx51evk board
>
> MAINTAINERS | 8 +
> MAKEALL | 1 +
> Makefile | 8 +
> board/freescale/mx51evk/Makefile | 48 ++++
> board/freescale/mx51evk/config.mk | 25 ++
> board/freescale/mx51evk/imximage.cfg | 119 +++++++++
> board/freescale/mx51evk/mx51evk.c | 406
> ++++++++++++++++++++++++++++
> board/freescale/mx51evk/mx51evk.h | 51 ++++
> board/karo/tx25/Makefile | 51 ++++
> board/karo/tx25/config.mk | 5 +
> board/karo/tx25/lowlevel_init.S | 131 +++++++++
> board/karo/tx25/tx25.c | 176 +++++++++++++
> cpu/arm926ejs/mx25/Makefile | 46 ++++
> cpu/arm926ejs/mx25/generic.c | 263 +++++++++++++++++++
> cpu/arm926ejs/mx25/reset.c | 56 ++++
> cpu/arm926ejs/mx25/timer.c | 187 +++++++++++++
> cpu/arm926ejs/mx27/generic.c | 5 +
> cpu/arm_cortexa8/mx51/Makefile | 48 ++++
> cpu/arm_cortexa8/mx51/clock.c | 293 +++++++++++++++++++++
> cpu/arm_cortexa8/mx51/iomux.c | 165 ++++++++++++
> cpu/arm_cortexa8/mx51/lowlevel_init.S | 289 ++++++++++++++++++++
> cpu/arm_cortexa8/mx51/soc.c | 109 ++++++++
> cpu/arm_cortexa8/mx51/speed.c | 38 +++
> cpu/arm_cortexa8/mx51/timer.c | 119 +++++++++
> cpu/arm_cortexa8/mx51/u-boot.lds | 61 +++++
> drivers/mmc/fsl_esdhc.c | 149 +++++++----
> drivers/mmc/mmc.c | 17 ++-
> drivers/net/fec_mxc.c | 44 +++-
> drivers/net/fec_mxc.h | 32 +++-
> drivers/serial/serial_mxc.c | 28 ++-
> include/asm-arm/arch-mx25/clock.h | 36 +++
> include/asm-arm/arch-mx25/imx-regs.h | 316 ++++++++++++++++++++++
> include/asm-arm/arch-mx25/imx25-pinmux.h | 421
> ++++++++++++++++++++++++++++++
> include/asm-arm/arch-mx27/clock.h | 3 +
> include/asm-arm/arch-mx31/mx31.h | 1 +
> include/asm-arm/arch-mx51/asm-offsets.h | 50 ++++
> include/asm-arm/arch-mx51/clock.h | 31 +++
> include/asm-arm/arch-mx51/crm_regs.h | 192 ++++++++++++++
> include/asm-arm/arch-mx51/imx-regs.h | 282 ++++++++++++++++++++
> include/asm-arm/arch-mx51/iomux.h | 193 ++++++++++++++
> include/asm-arm/arch-mx51/mx51_pins.h | 374 ++++++++++++++++++++++++++
> include/asm-arm/global_data.h | 3 +
> include/asm-arm/io.h | 55 ++++
> include/configs/mx51evk.h | 172 ++++++++++++
> include/configs/tx25.h | 179 +++++++++++++
> include/fsl_esdhc.h | 27 ++
> include/mmc.h | 1 +
> lib_arm/board.c | 3 +
> nand_spl/board/karo/tx25/Makefile | 78 ++++++
> nand_spl/board/karo/tx25/config.mk | 1 +
> nand_spl/board/karo/tx25/u-boot.lds | 58 ++++
> 51 files changed, 5386 insertions(+), 68 deletions(-)
> create mode 100644 board/freescale/mx51evk/Makefile
> create mode 100644 board/freescale/mx51evk/config.mk
> create mode 100644 board/freescale/mx51evk/imximage.cfg
> create mode 100644 board/freescale/mx51evk/mx51evk.c
> create mode 100644 board/freescale/mx51evk/mx51evk.h
> create mode 100644 board/karo/tx25/Makefile
> create mode 100644 board/karo/tx25/config.mk
> create mode 100644 board/karo/tx25/lowlevel_init.S
> create mode 100644 board/karo/tx25/tx25.c
> create mode 100644 cpu/arm926ejs/mx25/Makefile
> create mode 100644 cpu/arm926ejs/mx25/generic.c
> create mode 100644 cpu/arm926ejs/mx25/reset.c
> create mode 100644 cpu/arm926ejs/mx25/timer.c
> create mode 100644 cpu/arm_cortexa8/mx51/Makefile
> create mode 100644 cpu/arm_cortexa8/mx51/clock.c
> create mode 100644 cpu/arm_cortexa8/mx51/iomux.c
> create mode 100644 cpu/arm_cortexa8/mx51/lowlevel_init.S
> create mode 100644 cpu/arm_cortexa8/mx51/soc.c
> create mode 100644 cpu/arm_cortexa8/mx51/speed.c
> create mode 100644 cpu/arm_cortexa8/mx51/timer.c
> create mode 100644 cpu/arm_cortexa8/mx51/u-boot.lds
> create mode 100644 include/asm-arm/arch-mx25/clock.h
> create mode 100644 include/asm-arm/arch-mx25/imx-regs.h
> create mode 100644 include/asm-arm/arch-mx25/imx25-pinmux.h
> create mode 100644 include/asm-arm/arch-mx51/asm-offsets.h
> create mode 100644 include/asm-arm/arch-mx51/clock.h
> create mode 100644 include/asm-arm/arch-mx51/crm_regs.h
> create mode 100644 include/asm-arm/arch-mx51/imx-regs.h
> create mode 100644 include/asm-arm/arch-mx51/iomux.h
> create mode 100644 include/asm-arm/arch-mx51/mx51_pins.h
> create mode 100644 include/configs/mx51evk.h
> create mode 100644 include/configs/tx25.h
> create mode 100644 nand_spl/board/karo/tx25/Makefile
> create mode 100644 nand_spl/board/karo/tx25/config.mk
> create mode 100644 nand_spl/board/karo/tx25/u-boot.lds
>
next prev parent reply other threads:[~2010-03-04 16:03 UTC|newest]
Thread overview: 116+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-02 18:45 [U-Boot] [GIT PULL] Pull request: u-boot-imx Stefano Babic
2010-03-04 16:03 ` Tom [this message]
2010-03-05 14:54 ` Stefano Babic
2010-03-05 17:24 ` Stefano Babic
2010-03-05 14:00 ` Tom
2010-03-05 14:16 ` Stefano Babic
2010-03-05 14:40 ` Tom
2010-03-05 14:48 ` Stefano Babic
-- strict thread matches above, loose matches on Subject: below --
2010-04-06 9:38 Stefano Babic
2010-04-18 11:45 ` Tom Rix
2010-04-19 13:52 Stefano Babic
2010-05-05 8:15 Stefano Babic
[not found] <4BE12AA5.8020605@denx.de>
2010-05-11 15:04 ` Tom Rix
2010-10-07 8:28 Stefano Babic
2010-10-11 8:23 ` Wolfgang Denk
2010-10-14 8:42 Stefano Babic
2010-10-17 17:57 ` Wolfgang Denk
2010-10-19 14:09 Stefano Babic
2010-10-19 18:58 ` Wolfgang Denk
2010-10-28 11:25 Stefano Babic
2010-10-29 19:50 ` Wolfgang Denk
2010-12-09 10:05 stefano babic
2010-12-09 19:54 ` Wolfgang Denk
2011-01-13 6:40 Stefano Babic
2011-01-13 7:20 ` Albert ARIBAUD
2011-01-13 7:23 ` Stefano Babic
2011-01-13 21:30 ` Albert ARIBAUD
2011-01-17 19:10 ` Wolfgang Denk
2011-01-17 19:30 ` Stefano Babic
2011-01-21 9:24 Stefano Babic
2011-01-21 17:33 ` Albert ARIBAUD
2011-02-01 18:13 Stefano Babic
2011-02-01 23:58 ` Albert ARIBAUD
2011-02-13 9:56 Stefano Babic
2011-02-13 11:25 ` Albert ARIBAUD
2011-02-13 11:57 ` Albert ARIBAUD
2011-04-05 13:29 Stefano Babic
2011-04-05 17:13 ` Albert ARIBAUD
2011-04-22 12:50 Stefano Babic
2011-05-09 11:49 Stefano Babic
2011-05-10 21:55 ` Albert ARIBAUD
2011-05-11 5:50 ` Stefano Babic
2011-05-11 20:56 ` Albert ARIBAUD
2011-05-11 20:58 ` Albert ARIBAUD
2011-05-20 15:58 Stefano Babic
2011-05-20 18:35 ` Albert ARIBAUD
2011-06-08 11:36 Stefano Babic
2011-06-08 20:08 ` Albert ARIBAUD
2011-06-15 9:28 Stefano Babic
2011-06-17 19:24 ` Albert ARIBAUD
2011-06-17 19:37 ` Albert ARIBAUD
2011-06-18 9:59 ` Stefano Babic
2011-06-18 11:11 ` Albert ARIBAUD
2011-06-30 9:38 Stefano Babic
2011-06-30 10:52 ` Albert ARIBAUD
2011-07-13 14:25 Stefano Babic
2011-07-14 13:42 ` Albert ARIBAUD
2011-07-18 12:45 Stefano Babic
2011-07-18 13:38 ` Albert ARIBAUD
2011-08-12 14:08 Stefano Babic
2011-08-12 17:53 ` Albert ARIBAUD
2011-08-26 9:31 Stefano Babic
2011-08-26 9:38 ` Stefano Babic
2011-08-26 14:23 Stefano Babic
2011-08-30 9:18 ` Albert ARIBAUD
2011-09-08 14:34 Stefano Babic
2011-09-08 14:59 ` Albert ARIBAUD
2011-10-17 8:05 Stefano Babic
2011-10-18 18:12 ` Albert ARIBAUD
2011-10-19 9:30 ` Stefano Babic
2011-10-19 11:25 ` Albert ARIBAUD
2011-10-28 12:37 Stefano Babic
2011-10-28 15:20 ` Albert ARIBAUD
2011-11-04 6:47 Stefano Babic
2011-11-04 21:11 ` Albert ARIBAUD
2011-11-11 10:40 Stefano Babic
2011-11-15 21:24 ` Albert ARIBAUD
2011-12-01 16:14 Stefano Babic
2011-12-05 16:57 ` Albert ARIBAUD
2011-12-05 17:19 ` Stefano Babic
2011-12-05 17:22 Stefano Babic
2011-12-05 17:27 ` Albert ARIBAUD
2011-12-09 14:34 Stefano Babic
2011-12-09 16:40 ` Albert ARIBAUD
2011-12-19 7:45 Stefano Babic
2011-12-19 8:39 ` Albert ARIBAUD
2012-01-04 16:57 Stefano Babic
2012-01-04 17:41 ` Fabio Estevam
2012-01-04 17:56 ` Stefano Babic
2012-01-12 22:01 ` Albert ARIBAUD
2012-01-22 13:06 Stefano Babic
2012-02-04 16:57 ` Albert ARIBAUD
2012-02-05 13:32 ` Stefano Babic
2012-02-12 16:06 Stefano Babic
2012-02-13 8:03 ` Albert ARIBAUD
2012-02-20 7:10 Stefano Babic
2012-02-20 7:54 ` Albert ARIBAUD
2012-03-03 11:38 Stefano Babic
2012-03-05 12:37 ` Albert ARIBAUD
2012-03-08 7:52 Stefano Babic
2012-03-26 20:45 ` Albert ARIBAUD
2012-03-26 21:08 ` Albert ARIBAUD
2012-03-27 7:39 ` Stefano Babic
2012-04-11 14:22 Stefano Babic
2012-04-16 13:04 ` Albert ARIBAUD
2012-05-09 16:38 Stefano Babic
2012-05-15 6:24 ` Albert ARIBAUD
2012-07-02 18:03 Stefano Babic
2012-07-05 8:23 ` Albert ARIBAUD
2012-08-07 16:00 Stefano Babic
2012-08-27 6:41 Stefano Babic
2012-09-01 12:57 ` Albert ARIBAUD
2012-09-17 13:53 Stefano Babic
2012-09-20 22:46 ` Albert ARIBAUD
2012-09-28 15:39 Stefano Babic
2012-09-29 9:48 ` Albert ARIBAUD
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B8FD9EC.5030405@windriver.com \
--to=tom.rix@windriver.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox