From: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [GIT PULL] MIPS updates
Date: Fri, 23 May 2008 00:29:55 +0900 [thread overview]
Message-ID: <48359173.8070406@ruby.dti.ne.jp> (raw)
Dear Wolfgang,
please pull MIPS updates. nand_init and spi_init will be added.
---
The following changes since commit 2c8d41969b47eb0b973912830c58689b2ba0e50a:
Wolfgang Denk (1):
Merge branch 'master' of git://git.denx.de/u-boot-testing
are available in the git repository at:
git://git.denx.de/u-boot-mips.git master
Jason McMullan (2):
[MIPS] lib_mips/board.c: Add nand_init
mips: If CONFIG_CMD_SPI is defined, call spi_init()
lib_mips/board.c | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/lib_mips/board.c b/lib_mips/board.c
index 1645f2c..532550b 100644
--- a/lib_mips/board.c
+++ b/lib_mips/board.c
@@ -28,6 +28,8 @@
#include <version.h>
#include <net.h>
#include <environment.h>
+#include <nand.h>
+#include <spi.h>
DECLARE_GLOBAL_DATA_PTR;
@@ -416,6 +418,17 @@ void board_init_r (gd_t *id, ulong dest_addr)
}
#endif
+#ifdef CONFIG_CMD_NAND
+ puts ("NAND: ");
+ nand_init (); /* go init the NAND */
+#endif
+
+#ifdef CONFIG_CMD_SPI
+ puts ("SPI: ");
+ spi_init (); /* go init the SPI */
+ puts ("ready\n");
+#endif
+
#if defined(CONFIG_MISC_INIT_R)
/* miscellaneous platform dependent initialisations */
misc_init_r ();
next reply other threads:[~2008-05-22 15:29 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-22 15:29 Shinya Kuribayashi [this message]
2008-05-31 15:05 ` [U-Boot-Users] [GIT PULL] MIPS updates (updated) Shinya Kuribayashi
2008-06-04 22:05 ` Wolfgang Denk
-- strict thread matches above, loose matches on Subject: below --
2008-07-29 16:00 [U-Boot-Users] [GIT PULL] MIPS updates Shinya Kuribayashi
2008-07-29 23:24 ` Wolfgang Denk
2008-07-08 14:04 Shinya Kuribayashi
2008-07-09 21:24 ` Wolfgang Denk
2008-06-07 1:19 Shinya Kuribayashi
2008-06-11 20:51 ` Wolfgang Denk
2008-05-06 4:34 Shinya Kuribayashi
2008-05-09 20:20 ` Wolfgang Denk
2008-05-02 3:33 Shinya Kuribayashi
2008-05-03 22:10 ` Wolfgang Denk
2008-03-25 13:04 Shinya Kuribayashi
2008-01-16 23:42 Shinya Kuribayashi
2008-01-23 13:38 ` Wolfgang Denk
2007-11-17 12:15 Shinya Kuribayashi
2007-11-18 0:28 ` Wolfgang Denk
2007-10-21 14:31 Shinya Kuribayashi
2007-11-01 21:54 ` Wolfgang Denk
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=48359173.8070406@ruby.dti.ne.jp \
--to=skuribay@ruby.dti.ne.jp \
--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 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.