diff options
author | Tom Rini <trini@ti.com> | 2015-01-31 12:40:48 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-01-31 12:40:48 -0500 |
commit | 358b8bc204f365be28fed94f23e53e04183a8c7f (patch) | |
tree | cbfbd51db0081424ad7f09c2fb47571c615bc35f /arch/sandbox | |
parent | 6a608f20b987122a658e26978d76d2753654f5f2 (diff) | |
parent | 3d4de98696d2d906c968008219bb9a65960e7c10 (diff) | |
download | u-boot-imx-358b8bc204f365be28fed94f23e53e04183a8c7f.zip u-boot-imx-358b8bc204f365be28fed94f23e53e04183a8c7f.tar.gz u-boot-imx-358b8bc204f365be28fed94f23e53e04183a8c7f.tar.bz2 |
Merge branch 'patman' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'arch/sandbox')
-rw-r--r-- | arch/sandbox/cpu/start.c | 20 | ||||
-rw-r--r-- | arch/sandbox/dts/sandbox.dts | 6 |
2 files changed, 22 insertions, 4 deletions
diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c index 42353d8..097f29a 100644 --- a/arch/sandbox/cpu/start.c +++ b/arch/sandbox/cpu/start.c @@ -6,6 +6,7 @@ #include <common.h> #include <os.h> #include <cli.h> +#include <malloc.h> #include <asm/getopt.h> #include <asm/io.h> #include <asm/sections.h> @@ -102,6 +103,25 @@ static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg) } SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT"); +static int sandbox_cmdline_cb_default_fdt(struct sandbox_state *state, + const char *arg) +{ + const char *fmt = "%s.dtb"; + char *fname; + int len; + + len = strlen(state->argv[0]) + strlen(fmt) + 1; + fname = os_malloc(len); + if (!fname) + return -ENOMEM; + snprintf(fname, len, fmt, state->argv[0]); + state->fdt_fname = fname; + + return 0; +} +SANDBOX_CMDLINE_OPT_SHORT(default_fdt, 'D', 0, + "Use the default u-boot.dtb control FDT in U-Boot directory"); + static int sandbox_cmdline_cb_interactive(struct sandbox_state *state, const char *arg) { diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.dts index 4c63e4f..9ce31bf 100644 --- a/arch/sandbox/dts/sandbox.dts +++ b/arch/sandbox/dts/sandbox.dts @@ -74,10 +74,8 @@ cros-ec-keyb { compatible = "google,cros-ec-keyb"; - google,key-rows = <8>; - google,key-columns = <13>; - google,repeat-delay-ms = <240>; - google,repeat-rate-ms = <30>; + keypad,num-rows = <8>; + keypad,num-columns = <13>; google,ghost-filter; /* * Keymap entries take the form of 0xRRCCKKKK where |