24 Jul, 2013

1 commit


20 Oct, 2012

1 commit

  • To support Non-ASCII keys (ex, Fn, PgUp/Dn, arrow keys, ...), we need to
    translate key code into escape sequence.

    (Updated by sjg@chromium.org to move away from a function to store
    keycodes, so we can easily record how many were sent. We now need to
    return this from input_send_keycodes() so we know whether keys were
    generated.)

    Signed-off-by: Hung-Te Lin
    Signed-off-by: Simon Glass
    Signed-off-by: Tom Rini

    Hung-Te Lin
     

16 Oct, 2012

1 commit


15 May, 2012

1 commit

  • Add a module which understands converting key codes (or scan codes)
    to ASCII characters. It includes FIFO support and can call back to
    drivers to read new characters when its FIFO is empty.

    Keycode maps are provided for un-modified, shift and ctrl keys.

    The plan is to use this module where such mapping is required.

    Signed-off-by: Simon Glass
    Signed-off-by: Tom Warren

    Simon Glass