[PATCH 1/3] Add a dedicated function to query debug action to board_api

Paul Fertser fercerpav at gmail.com
Sat Jan 17 13:07:28 CET 2009


On the devices where we have only 2 physical buttons, one of those buttons
(i.e. POWER) is connected directly to PMU. The other button (AUX) is
connected directly to S3C pin and we can get its state immediately, it is
currently used to skip a boot possibility. To allow user to debug boot
problems we can use the POWER button, but we cannot poll for it too many
times as it slows down the boot considerably, therefore a dedicated
function is needed.
---
 include/qi.h |    1 +
 src/phase2.c |    4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/qi.h b/include/qi.h
index 2592cd4..be25626 100644
--- a/include/qi.h
+++ b/include/qi.h
@@ -104,6 +104,7 @@ struct board_api {
 	void (*putc)(char);
 	void (*close)(void);
 	u8 (*get_ui_keys)(void);
+	u8 (*get_ui_debug)(void);
 	void (*set_ui_indication)(enum ui_indication);
 
 	struct kernel_source kernel_source[8];
diff --git a/src/phase2.c b/src/phase2.c
index ab9802d..b733444 100644
--- a/src/phase2.c
+++ b/src/phase2.c
@@ -234,8 +234,8 @@ static void do_params(unsigned initramfs_len,
 	 * to have the debugging options added to the commandline
 	 */
 
-	if (this_board->commandline_board_debug && this_board->get_ui_keys)
-		if ((this_board->get_ui_keys)() & UI_ACTION_SKIPKERNEL)
+	if (this_board->commandline_board_debug && this_board->get_ui_debug)
+		if ((this_board->get_ui_debug)())
 			cmdline += strlen(strcpy(cmdline, this_board->
 					      commandline_board_debug));
 
-- 
1.5.2.2




More information about the openmoko-kernel mailing list