From: Ian Campbell <ijc@hellion.org.uk>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 1/4] ahci-plat: Provide a weak scsi_init hook
Date: Fri, 7 Mar 2014 01:20:56 +0000 [thread overview]
Message-ID: <1394155259-21897-1-git-send-email-ijc@hellion.org.uk> (raw)
In-Reply-To: <1394155172.13270.18.camel@hastur.hellion.org.uk>
This allow the platform to register the platform ahci device.
Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
---
In theory this could perhaps be used by highbank. I have access to a
Midway system (close enough for testing purposes, I think) but since
Calxeda has folded I'm not sure it is worth it, and I am not entirely
keen on reflashing firmware on the system I have access too (no safety
net)...
---
arch/arm/lib/board.c | 6 ++++++
drivers/block/ahci.c | 5 +++++
2 files changed, 11 insertions(+)
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
index 34f50b0..fe381a3 100644
--- a/arch/arm/lib/board.c
+++ b/arch/arm/lib/board.c
@@ -33,6 +33,7 @@
#include <nand.h>
#include <onenand_uboot.h>
#include <mmc.h>
+#include <scsi.h>
#include <libfdt.h>
#include <fdtdec.h>
#include <post.h>
@@ -593,6 +594,11 @@ void board_init_r(gd_t *id, ulong dest_addr)
mmc_initialize(gd->bd);
#endif
+#ifdef CONFIG_CMD_SCSI
+ puts("SCSI: ");
+ scsi_init();
+#endif
+
#ifdef CONFIG_HAS_DATAFLASH
AT91F_DataflashInit();
dataflash_print_info();
diff --git a/drivers/block/ahci.c b/drivers/block/ahci.c
index 0daad36..d5370fa 100644
--- a/drivers/block/ahci.c
+++ b/drivers/block/ahci.c
@@ -924,6 +924,11 @@ int ahci_init(u32 base)
err_out:
return rc;
}
+
+void __weak scsi_init(void)
+{
+}
+
#endif
/*
--
1.8.5.3
next prev parent reply other threads:[~2014-03-07 1:20 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-07 1:19 [U-Boot] [PATCH v3 0/4] uboot sata support for sunxi platform Ian Campbell
2014-03-07 1:20 ` Ian Campbell [this message]
2014-03-10 21:27 ` [U-Boot] [U-Boot, v3, 1/4] ahci-plat: Provide a weak scsi_init hook Tom Rini
2014-03-07 1:20 ` [U-Boot] [PATCH v3 2/4] highbank: use " Ian Campbell
2014-03-07 2:43 ` Rob Herring
2014-03-10 21:28 ` [U-Boot] [U-Boot,v3,2/4] " Tom Rini
2014-03-07 1:20 ` [U-Boot] [PATCH v3 3/4] ahci: wait longer for link Ian Campbell
2014-03-10 21:28 ` [U-Boot] [U-Boot,v3,3/4] " Tom Rini
2014-03-07 1:20 ` [U-Boot] [PATCH v3 4/4] ahci: provide sunxi SATA driver using AHCI platform framework Ian Campbell
2014-03-07 1:24 ` [U-Boot] [linux-sunxi] [PATCH v3 0/4] uboot sata support for sunxi platform Ian Campbell
2014-03-07 16:44 ` Ezaul Zillmer
2014-03-08 4:16 ` Ian Campbell
2014-03-12 12:43 ` Ezaul Zillmer
2014-03-12 12:56 ` Ian Campbell
2014-03-12 13:17 ` Koen Kooi
2014-03-12 15:04 ` Ian Campbell
2014-03-12 13:53 ` Ezaul Zillmer
2014-03-12 15:57 ` Ian Campbell
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=1394155259-21897-1-git-send-email-ijc@hellion.org.uk \
--to=ijc@hellion.org.uk \
--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