1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-25 18:27:32 +02:00

Add a dedicated function to query debug action to board_api

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.
This commit is contained in:
Paul Fertser 2009-01-19 01:37:09 +00:00 committed by Andy Green
parent f055e1e9a1
commit 6940235ae6
2 changed files with 3 additions and 2 deletions

View File

@ -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];

View File

@ -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));